Server IP : 184.154.167.98 / Your IP : 3.129.70.153 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/pcp/pmdas/bcc/modules/ |
Upload File : |
// Copyright (C) 2018 Marko Myllynen <myllynen@redhat.com> // Licensed under the Apache License, Version 2.0 (the "License") #include <linux/sched.h> struct key_t { char comm[TASK_COMM_LEN]; }; BPF_HASH(stats, struct key_t, u64, 16384); int trace_execve(struct pt_regs *ctx) { u64 zero = 0, *val; struct key_t key = {}; bpf_get_current_comm(&key.comm, sizeof(key.comm)); val = stats.lookup_or_init(&key, &zero); if (val) { (*val)++; } return 0; }