1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2021 Hengqi Chen */
5 #include <bpf/bpf_helpers.h>
6 #include <bpf/bpf_tracing.h>
7 #include "bpf_tracing_net.h"
9 const volatile pid_t my_pid = 0;
12 SEC("fentry/unix_listen")
13 int BPF_PROG(unix_listen, struct socket *sock, int backlog)
15 pid_t pid = bpf_get_current_pid_tgid() >> 32;
16 struct unix_sock *unix_sk;
22 unix_sk = (struct unix_sock *)bpf_skc_to_unix_sock(sock->sk);
26 if (unix_sk->addr->name->sun_path[0])
29 len = unix_sk->addr->len - sizeof(short);
31 for (i = 1; i < len; i++) {
32 if (i >= (int)sizeof(struct sockaddr_un))
35 path[i] = unix_sk->addr->name->sun_path[i];
40 char _license[] SEC("license") = "GPL";