mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2025-12-31 21:06:25 +00:00
42 lines
807 B
Python
42 lines
807 B
Python
from pythonbpf import bpf, map, struct, section, bpfglobal, compile
|
|
from pythonbpf.helper import ktime, pid
|
|
from pythonbpf.maps import PerfEventArray
|
|
|
|
from ctypes import c_void_p, c_int32, c_uint64
|
|
|
|
|
|
@bpf
|
|
@struct
|
|
class data_t:
|
|
pid: c_uint64
|
|
ts: c_uint64
|
|
comm: str(16)
|
|
|
|
|
|
@bpf
|
|
@map
|
|
def events() -> PerfEventArray:
|
|
return PerfEventArray(key_size=c_int32, value_size=c_int32)
|
|
|
|
|
|
@bpf
|
|
@section("tracepoint/syscalls/sys_enter_clone")
|
|
def hello(ctx: c_void_p) -> c_int32:
|
|
dataobj = data_t()
|
|
strobj = "hellohellohello"
|
|
dataobj.pid = pid()
|
|
dataobj.ts = ktime()
|
|
# dataobj.comm = strobj
|
|
print(f"clone called at {dataobj.ts} by pid{dataobj.pid}, comm {strobj}")
|
|
events.output(dataobj)
|
|
return c_int32(0)
|
|
|
|
|
|
@bpf
|
|
@bpfglobal
|
|
def LICENSE() -> str:
|
|
return "GPL"
|
|
|
|
|
|
compile()
|