1 #include <linux/unistd.h>
12 #include <sys/types.h>
13 #include <sys/socket.h>
18 #define BPF_F_PIN (1 << 0)
19 #define BPF_F_GET (1 << 1)
20 #define BPF_F_PIN_GET (BPF_F_PIN | BPF_F_GET)
22 #define BPF_F_KEY (1 << 2)
23 #define BPF_F_VAL (1 << 3)
24 #define BPF_F_KEY_VAL (BPF_F_KEY | BPF_F_VAL)
26 #define BPF_M_UNSPEC 0
30 static void usage(void)
32 printf("Usage: fds_example [...]\n");
33 printf(" -F <file> File to pin/get object\n");
34 printf(" -P |- pin object\n");
35 printf(" -G `- get object\n");
36 printf(" -m eBPF map mode\n");
37 printf(" -k <key> |- map key\n");
38 printf(" -v <value> `- map value\n");
39 printf(" -p eBPF prog mode\n");
40 printf(" -o <object> `- object file\n");
41 printf(" -h Display this help.\n");
44 static int bpf_map_create(void)
46 return bpf_create_map(BPF_MAP_TYPE_ARRAY
, sizeof(uint32_t),
47 sizeof(uint32_t), 1024, 0);
50 static int bpf_prog_create(const char *object
)
52 static const struct bpf_insn insns
[] = {
53 BPF_MOV64_IMM(BPF_REG_0
, 1),
58 assert(!load_bpf_file((char *)object
));
61 return bpf_prog_load(BPF_PROG_TYPE_SOCKET_FILTER
,
62 insns
, sizeof(insns
), "GPL", 0);
66 static int bpf_do_map(const char *file
, uint32_t flags
, uint32_t key
,
71 if (flags
& BPF_F_PIN
) {
72 fd
= bpf_map_create();
73 printf("bpf: map fd:%d (%s)\n", fd
, strerror(errno
));
76 ret
= bpf_obj_pin(fd
, file
);
77 printf("bpf: pin ret:(%d,%s)\n", ret
, strerror(errno
));
80 fd
= bpf_obj_get(file
);
81 printf("bpf: get fd:%d (%s)\n", fd
, strerror(errno
));
85 if ((flags
& BPF_F_KEY_VAL
) == BPF_F_KEY_VAL
) {
86 ret
= bpf_update_elem(fd
, &key
, &value
, 0);
87 printf("bpf: fd:%d u->(%u:%u) ret:(%d,%s)\n", fd
, key
, value
,
88 ret
, strerror(errno
));
90 } else if (flags
& BPF_F_KEY
) {
91 ret
= bpf_lookup_elem(fd
, &key
, &value
);
92 printf("bpf: fd:%d l->(%u):%u ret:(%d,%s)\n", fd
, key
, value
,
93 ret
, strerror(errno
));
100 static int bpf_do_prog(const char *file
, uint32_t flags
, const char *object
)
104 if (flags
& BPF_F_PIN
) {
105 fd
= bpf_prog_create(object
);
106 printf("bpf: prog fd:%d (%s)\n", fd
, strerror(errno
));
109 ret
= bpf_obj_pin(fd
, file
);
110 printf("bpf: pin ret:(%d,%s)\n", ret
, strerror(errno
));
113 fd
= bpf_obj_get(file
);
114 printf("bpf: get fd:%d (%s)\n", fd
, strerror(errno
));
118 sock
= open_raw_sock("lo");
121 ret
= setsockopt(sock
, SOL_SOCKET
, SO_ATTACH_BPF
, &fd
, sizeof(fd
));
122 printf("bpf: sock:%d <- fd:%d attached ret:(%d,%s)\n", sock
, fd
,
123 ret
, strerror(errno
));
129 int main(int argc
, char **argv
)
131 const char *file
= NULL
, *object
= NULL
;
132 uint32_t key
= 0, value
= 0, flags
= 0;
133 int opt
, mode
= BPF_M_UNSPEC
;
135 while ((opt
= getopt(argc
, argv
, "F:PGmk:v:po:")) != -1) {
147 /* Map-related args */
152 key
= strtoul(optarg
, NULL
, 0);
156 value
= strtoul(optarg
, NULL
, 0);
159 /* Prog-related args */
171 if (!(flags
& BPF_F_PIN_GET
) || !file
)
176 return bpf_do_map(file
, flags
, key
, value
);
178 return bpf_do_prog(file
, flags
, object
);