From b7c1e92f0501cafa427e17c69ea814f10767e471 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Sun, 2 Nov 2025 03:29:02 +0530 Subject: [PATCH] Add BPF_GET_CURRENT_UID_GID to HelperIDs --- pythonbpf/helper/bpf_helper_handler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pythonbpf/helper/bpf_helper_handler.py b/pythonbpf/helper/bpf_helper_handler.py index f755ce9..c434f34 100644 --- a/pythonbpf/helper/bpf_helper_handler.py +++ b/pythonbpf/helper/bpf_helper_handler.py @@ -30,6 +30,7 @@ class BPFHelperID(Enum): BPF_GET_PRANDOM_U32 = 7 BPF_GET_SMP_PROCESSOR_ID = 8 BPF_GET_CURRENT_PID_TGID = 14 + BPF_GET_CURRENT_UID_GID = 15 BPF_GET_CURRENT_COMM = 16 BPF_PERF_EVENT_OUTPUT = 25 BPF_PROBE_READ_KERNEL_STR = 115