我想要的是:
向密件抄送工具添加网络名称空间选项以execsnoop
仅跟踪具有指定网络名称空间的日志,就像我们在许多其他密件抄送工具中具有过滤器 PID 选项一样。例如:execsnoop -N "ns_id"
我尝试了什么:
int syscall__execve(struct pt_regs *ctx,
const char __user *filename,
const char __user *const __user *__argv,
const char __user *const __user *__envp)
{
// create data here and pass to submit_arg to save stack space (#555)
struct data_t data = {};
struct task_struct *task;
data.pid = bpf_get_current_pid_tgid() >> 32;
task = (struct task_struct *)bpf_get_current_task();
// Some kernels, like Ubuntu 4.13.0-generic, return 0
// as the real_parent->tgid.
// We use the get_ppid function as a fallback in those cases. (#1883)
data.ppid = task->real_parent->tgid;
data.netns = task->nsproxy->mnt_ns->ns.inum; // I tried to mount namespace here
bpf_get_current_comm(&data.comm, sizeof(data.comm));
data.type = EVENT_ARG;
__submit_arg(ctx, (void *)filename, &data);
// skip first arg, as we submitted filename
#pragma unroll
for (int i = 1; i < MAXARG; i++) {
if (submit_arg(ctx, (void *)&__argv[i], &data) == 0)
goto out;
}
// handle truncated argument list
char ellipsis[] = "...";
__submit_arg(ctx, (void *)ellipsis, &data);
out:
return 0;
}
收到错误:
/virtual/main.c:98:39: error: incomplete definition of type 'struct mnt_namespace'
data.netns = task->nsproxy->mnt_ns->ns.inum;
~~~~~~~~~~~~~~~~~~~~~^
include/linux/nsproxy.h:8:8: note: forward declaration of 'struct mnt_namespace'
struct mnt_namespace;
^
1 error generated.
Traceback (most recent call last):
File "./execsnoop", line 230, in <module>
b = BPF(text=bpf_text)
File "/usr/lib/python2.7/dist-packages/bcc/__init__.py", line 325, in __init__
raise Exception("Failed to compile BPF text")
Exception: Failed to compile BPF text
我也尝试包含 mnt_namespace.h 头文件,但没有解决。