blob: e04fe09d7c2efc397a8ba6435c44d72ecc3c11cc [file] [log] [blame]
Alexei Starovoitov249b8122014-12-01 15:06:37 -08001#include <stdio.h>
2#include <sys/types.h>
3#include <sys/stat.h>
4#include <fcntl.h>
5#include <libelf.h>
6#include <gelf.h>
7#include <errno.h>
8#include <unistd.h>
9#include <string.h>
10#include <stdbool.h>
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070011#include <stdlib.h>
Alexei Starovoitov249b8122014-12-01 15:06:37 -080012#include <linux/bpf.h>
13#include <linux/filter.h>
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070014#include <linux/perf_event.h>
Martin KaFai Lau12d8bb62016-12-07 15:53:14 -080015#include <linux/netlink.h>
16#include <linux/rtnetlink.h>
17#include <sys/types.h>
18#include <sys/socket.h>
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070019#include <sys/syscall.h>
20#include <sys/ioctl.h>
21#include <sys/mman.h>
22#include <poll.h>
Alexei Starovoitov5bacd782015-05-19 16:59:05 -070023#include <ctype.h>
Alexei Starovoitov249b8122014-12-01 15:06:37 -080024#include "libbpf.h"
Alexei Starovoitov249b8122014-12-01 15:06:37 -080025#include "bpf_load.h"
Joe Stringer205c8ad2016-12-08 18:46:19 -080026#include "perf-sys.h"
Alexei Starovoitov249b8122014-12-01 15:06:37 -080027
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070028#define DEBUGFS "/sys/kernel/debug/tracing/"
29
Alexei Starovoitov249b8122014-12-01 15:06:37 -080030static char license[128];
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070031static int kern_version;
Alexei Starovoitov249b8122014-12-01 15:06:37 -080032static bool processed_sec[128];
Joe Stringerd40fc182016-12-14 14:43:38 -080033char bpf_log_buf[BPF_LOG_BUF_SIZE];
Alexei Starovoitov249b8122014-12-01 15:06:37 -080034int map_fd[MAX_MAPS];
35int prog_fd[MAX_PROGS];
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070036int event_fd[MAX_PROGS];
Alexei Starovoitov249b8122014-12-01 15:06:37 -080037int prog_cnt;
Alexei Starovoitov5bacd782015-05-19 16:59:05 -070038int prog_array_fd = -1;
39
Joe Stringerd40fc182016-12-14 14:43:38 -080040struct bpf_map_def {
41 unsigned int type;
42 unsigned int key_size;
43 unsigned int value_size;
44 unsigned int max_entries;
45 unsigned int map_flags;
46};
47
Alexei Starovoitov5bacd782015-05-19 16:59:05 -070048static int populate_prog_array(const char *event, int prog_fd)
49{
50 int ind = atoi(event), err;
51
Joe Stringerd40fc182016-12-14 14:43:38 -080052 err = bpf_map_update_elem(prog_array_fd, &ind, &prog_fd, BPF_ANY);
Alexei Starovoitov5bacd782015-05-19 16:59:05 -070053 if (err < 0) {
54 printf("failed to store prog_fd in prog_array\n");
55 return -1;
56 }
57 return 0;
58}
Alexei Starovoitov249b8122014-12-01 15:06:37 -080059
60static int load_and_attach(const char *event, struct bpf_insn *prog, int size)
61{
Alexei Starovoitov249b8122014-12-01 15:06:37 -080062 bool is_socket = strncmp(event, "socket", 6) == 0;
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070063 bool is_kprobe = strncmp(event, "kprobe/", 7) == 0;
64 bool is_kretprobe = strncmp(event, "kretprobe/", 10) == 0;
Alexei Starovoitovc0766042016-04-06 18:43:29 -070065 bool is_tracepoint = strncmp(event, "tracepoint/", 11) == 0;
Brenden Blanco86af8b42016-07-19 12:16:51 -070066 bool is_xdp = strncmp(event, "xdp", 3) == 0;
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -070067 bool is_perf_event = strncmp(event, "perf_event", 10) == 0;
David Ahern4f2e7ae2016-12-01 08:48:07 -080068 bool is_cgroup_skb = strncmp(event, "cgroup/skb", 10) == 0;
69 bool is_cgroup_sk = strncmp(event, "cgroup/sock", 11) == 0;
Joe Stringer43371c82016-12-14 14:43:39 -080070 size_t insns_cnt = size / sizeof(struct bpf_insn);
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070071 enum bpf_prog_type prog_type;
72 char buf[256];
73 int fd, efd, err, id;
74 struct perf_event_attr attr = {};
Alexei Starovoitov249b8122014-12-01 15:06:37 -080075
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070076 attr.type = PERF_TYPE_TRACEPOINT;
77 attr.sample_type = PERF_SAMPLE_RAW;
78 attr.sample_period = 1;
79 attr.wakeup_events = 1;
80
81 if (is_socket) {
82 prog_type = BPF_PROG_TYPE_SOCKET_FILTER;
83 } else if (is_kprobe || is_kretprobe) {
84 prog_type = BPF_PROG_TYPE_KPROBE;
Alexei Starovoitovc0766042016-04-06 18:43:29 -070085 } else if (is_tracepoint) {
86 prog_type = BPF_PROG_TYPE_TRACEPOINT;
Brenden Blanco86af8b42016-07-19 12:16:51 -070087 } else if (is_xdp) {
88 prog_type = BPF_PROG_TYPE_XDP;
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -070089 } else if (is_perf_event) {
90 prog_type = BPF_PROG_TYPE_PERF_EVENT;
David Ahern4f2e7ae2016-12-01 08:48:07 -080091 } else if (is_cgroup_skb) {
92 prog_type = BPF_PROG_TYPE_CGROUP_SKB;
93 } else if (is_cgroup_sk) {
94 prog_type = BPF_PROG_TYPE_CGROUP_SOCK;
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070095 } else {
96 printf("Unknown event '%s'\n", event);
Alexei Starovoitov249b8122014-12-01 15:06:37 -080097 return -1;
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070098 }
Alexei Starovoitov249b8122014-12-01 15:06:37 -080099
Joe Stringer43371c82016-12-14 14:43:39 -0800100 fd = bpf_load_program(prog_type, prog, insns_cnt, license, kern_version,
Joe Stringerd40fc182016-12-14 14:43:38 -0800101 bpf_log_buf, BPF_LOG_BUF_SIZE);
Alexei Starovoitov5bacd782015-05-19 16:59:05 -0700102 if (fd < 0) {
Joe Stringerd40fc182016-12-14 14:43:38 -0800103 printf("bpf_load_program() err=%d\n%s", errno, bpf_log_buf);
Alexei Starovoitov5bacd782015-05-19 16:59:05 -0700104 return -1;
105 }
106
107 prog_fd[prog_cnt++] = fd;
108
David Ahern4f2e7ae2016-12-01 08:48:07 -0800109 if (is_xdp || is_perf_event || is_cgroup_skb || is_cgroup_sk)
Brenden Blanco86af8b42016-07-19 12:16:51 -0700110 return 0;
111
Alexei Starovoitov5bacd782015-05-19 16:59:05 -0700112 if (is_socket) {
113 event += 6;
114 if (*event != '/')
115 return 0;
116 event++;
117 if (!isdigit(*event)) {
118 printf("invalid prog number\n");
119 return -1;
120 }
121 return populate_prog_array(event, fd);
122 }
123
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700124 if (is_kprobe || is_kretprobe) {
125 if (is_kprobe)
126 event += 7;
127 else
128 event += 10;
129
Alexei Starovoitov5bacd782015-05-19 16:59:05 -0700130 if (*event == 0) {
131 printf("event name cannot be empty\n");
132 return -1;
133 }
134
135 if (isdigit(*event))
136 return populate_prog_array(event, fd);
137
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700138 snprintf(buf, sizeof(buf),
139 "echo '%c:%s %s' >> /sys/kernel/debug/tracing/kprobe_events",
140 is_kprobe ? 'p' : 'r', event, event);
141 err = system(buf);
142 if (err < 0) {
143 printf("failed to create kprobe '%s' error '%s'\n",
144 event, strerror(errno));
145 return -1;
146 }
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700147
Alexei Starovoitovc0766042016-04-06 18:43:29 -0700148 strcpy(buf, DEBUGFS);
149 strcat(buf, "events/kprobes/");
150 strcat(buf, event);
151 strcat(buf, "/id");
152 } else if (is_tracepoint) {
153 event += 11;
154
155 if (*event == 0) {
156 printf("event name cannot be empty\n");
157 return -1;
158 }
159 strcpy(buf, DEBUGFS);
160 strcat(buf, "events/");
161 strcat(buf, event);
162 strcat(buf, "/id");
163 }
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700164
165 efd = open(buf, O_RDONLY, 0);
166 if (efd < 0) {
167 printf("failed to open event %s\n", event);
168 return -1;
169 }
170
171 err = read(efd, buf, sizeof(buf));
172 if (err < 0 || err >= sizeof(buf)) {
173 printf("read from '%s' failed '%s'\n", event, strerror(errno));
174 return -1;
175 }
176
177 close(efd);
178
179 buf[err] = 0;
180 id = atoi(buf);
181 attr.config = id;
182
Joe Stringer205c8ad2016-12-08 18:46:19 -0800183 efd = sys_perf_event_open(&attr, -1/*pid*/, 0/*cpu*/, -1/*group_fd*/, 0);
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700184 if (efd < 0) {
185 printf("event %d fd %d err %s\n", id, efd, strerror(errno));
186 return -1;
187 }
188 event_fd[prog_cnt - 1] = efd;
189 ioctl(efd, PERF_EVENT_IOC_ENABLE, 0);
190 ioctl(efd, PERF_EVENT_IOC_SET_BPF, fd);
191
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800192 return 0;
193}
194
195static int load_maps(struct bpf_map_def *maps, int len)
196{
197 int i;
198
199 for (i = 0; i < len / sizeof(struct bpf_map_def); i++) {
200
201 map_fd[i] = bpf_create_map(maps[i].type,
202 maps[i].key_size,
203 maps[i].value_size,
Alexei Starovoitov89b97602016-03-07 21:57:20 -0800204 maps[i].max_entries,
205 maps[i].map_flags);
Alexei Starovoitov618ec9a72016-03-07 21:57:18 -0800206 if (map_fd[i] < 0) {
207 printf("failed to create a map: %d %s\n",
208 errno, strerror(errno));
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800209 return 1;
Alexei Starovoitov618ec9a72016-03-07 21:57:18 -0800210 }
Alexei Starovoitov5bacd782015-05-19 16:59:05 -0700211
212 if (maps[i].type == BPF_MAP_TYPE_PROG_ARRAY)
213 prog_array_fd = map_fd[i];
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800214 }
215 return 0;
216}
217
218static int get_sec(Elf *elf, int i, GElf_Ehdr *ehdr, char **shname,
219 GElf_Shdr *shdr, Elf_Data **data)
220{
221 Elf_Scn *scn;
222
223 scn = elf_getscn(elf, i);
224 if (!scn)
225 return 1;
226
227 if (gelf_getshdr(scn, shdr) != shdr)
228 return 2;
229
230 *shname = elf_strptr(elf, ehdr->e_shstrndx, shdr->sh_name);
231 if (!*shname || !shdr->sh_size)
232 return 3;
233
234 *data = elf_getdata(scn, 0);
235 if (!*data || elf_getdata(scn, *data) != NULL)
236 return 4;
237
238 return 0;
239}
240
241static int parse_relo_and_apply(Elf_Data *data, Elf_Data *symbols,
242 GElf_Shdr *shdr, struct bpf_insn *insn)
243{
244 int i, nrels;
245
246 nrels = shdr->sh_size / shdr->sh_entsize;
247
248 for (i = 0; i < nrels; i++) {
249 GElf_Sym sym;
250 GElf_Rel rel;
251 unsigned int insn_idx;
252
253 gelf_getrel(data, i, &rel);
254
255 insn_idx = rel.r_offset / sizeof(struct bpf_insn);
256
257 gelf_getsym(symbols, GELF_R_SYM(rel.r_info), &sym);
258
259 if (insn[insn_idx].code != (BPF_LD | BPF_IMM | BPF_DW)) {
260 printf("invalid relo for insn[%d].code 0x%x\n",
261 insn_idx, insn[insn_idx].code);
262 return 1;
263 }
264 insn[insn_idx].src_reg = BPF_PSEUDO_MAP_FD;
265 insn[insn_idx].imm = map_fd[sym.st_value / sizeof(struct bpf_map_def)];
266 }
267
268 return 0;
269}
270
271int load_bpf_file(char *path)
272{
273 int fd, i;
274 Elf *elf;
275 GElf_Ehdr ehdr;
276 GElf_Shdr shdr, shdr_prog;
277 Elf_Data *data, *data_prog, *symbols = NULL;
278 char *shname, *shname_prog;
279
280 if (elf_version(EV_CURRENT) == EV_NONE)
281 return 1;
282
283 fd = open(path, O_RDONLY, 0);
284 if (fd < 0)
285 return 1;
286
287 elf = elf_begin(fd, ELF_C_READ, NULL);
288
289 if (!elf)
290 return 1;
291
292 if (gelf_getehdr(elf, &ehdr) != &ehdr)
293 return 1;
294
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700295 /* clear all kprobes */
296 i = system("echo \"\" > /sys/kernel/debug/tracing/kprobe_events");
297
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800298 /* scan over all elf sections to get license and map info */
299 for (i = 1; i < ehdr.e_shnum; i++) {
300
301 if (get_sec(elf, i, &ehdr, &shname, &shdr, &data))
302 continue;
303
304 if (0) /* helpful for llvm debugging */
305 printf("section %d:%s data %p size %zd link %d flags %d\n",
306 i, shname, data->d_buf, data->d_size,
307 shdr.sh_link, (int) shdr.sh_flags);
308
309 if (strcmp(shname, "license") == 0) {
310 processed_sec[i] = true;
311 memcpy(license, data->d_buf, data->d_size);
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700312 } else if (strcmp(shname, "version") == 0) {
313 processed_sec[i] = true;
314 if (data->d_size != sizeof(int)) {
315 printf("invalid size of version section %zd\n",
316 data->d_size);
317 return 1;
318 }
319 memcpy(&kern_version, data->d_buf, sizeof(int));
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800320 } else if (strcmp(shname, "maps") == 0) {
321 processed_sec[i] = true;
322 if (load_maps(data->d_buf, data->d_size))
323 return 1;
324 } else if (shdr.sh_type == SHT_SYMTAB) {
325 symbols = data;
326 }
327 }
328
329 /* load programs that need map fixup (relocations) */
330 for (i = 1; i < ehdr.e_shnum; i++) {
Mickaël Salaün16ad1322017-02-08 21:27:42 +0100331 if (processed_sec[i])
332 continue;
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800333
334 if (get_sec(elf, i, &ehdr, &shname, &shdr, &data))
335 continue;
336 if (shdr.sh_type == SHT_REL) {
337 struct bpf_insn *insns;
338
339 if (get_sec(elf, shdr.sh_info, &ehdr, &shname_prog,
340 &shdr_prog, &data_prog))
341 continue;
342
Alexei Starovoitovdb6a71d2016-11-22 16:52:09 -0800343 if (shdr_prog.sh_type != SHT_PROGBITS ||
344 !(shdr_prog.sh_flags & SHF_EXECINSTR))
345 continue;
346
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800347 insns = (struct bpf_insn *) data_prog->d_buf;
348
349 processed_sec[shdr.sh_info] = true;
350 processed_sec[i] = true;
351
352 if (parse_relo_and_apply(data, symbols, &shdr, insns))
353 continue;
354
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700355 if (memcmp(shname_prog, "kprobe/", 7) == 0 ||
356 memcmp(shname_prog, "kretprobe/", 10) == 0 ||
Alexei Starovoitovc0766042016-04-06 18:43:29 -0700357 memcmp(shname_prog, "tracepoint/", 11) == 0 ||
Brenden Blanco86af8b42016-07-19 12:16:51 -0700358 memcmp(shname_prog, "xdp", 3) == 0 ||
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -0700359 memcmp(shname_prog, "perf_event", 10) == 0 ||
David Ahern4f2e7ae2016-12-01 08:48:07 -0800360 memcmp(shname_prog, "socket", 6) == 0 ||
361 memcmp(shname_prog, "cgroup/", 7) == 0)
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800362 load_and_attach(shname_prog, insns, data_prog->d_size);
363 }
364 }
365
366 /* load programs that don't use maps */
367 for (i = 1; i < ehdr.e_shnum; i++) {
368
369 if (processed_sec[i])
370 continue;
371
372 if (get_sec(elf, i, &ehdr, &shname, &shdr, &data))
373 continue;
374
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700375 if (memcmp(shname, "kprobe/", 7) == 0 ||
376 memcmp(shname, "kretprobe/", 10) == 0 ||
Alexei Starovoitovc0766042016-04-06 18:43:29 -0700377 memcmp(shname, "tracepoint/", 11) == 0 ||
Brenden Blanco86af8b42016-07-19 12:16:51 -0700378 memcmp(shname, "xdp", 3) == 0 ||
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -0700379 memcmp(shname, "perf_event", 10) == 0 ||
David Ahern4f2e7ae2016-12-01 08:48:07 -0800380 memcmp(shname, "socket", 6) == 0 ||
381 memcmp(shname, "cgroup/", 7) == 0)
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800382 load_and_attach(shname, data->d_buf, data->d_size);
383 }
384
385 close(fd);
386 return 0;
387}
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700388
389void read_trace_pipe(void)
390{
391 int trace_fd;
392
393 trace_fd = open(DEBUGFS "trace_pipe", O_RDONLY, 0);
394 if (trace_fd < 0)
395 return;
396
397 while (1) {
398 static char buf[4096];
399 ssize_t sz;
400
401 sz = read(trace_fd, buf, sizeof(buf));
402 if (sz > 0) {
403 buf[sz] = 0;
404 puts(buf);
405 }
406 }
407}
Alexei Starovoitov3622e7e2016-03-07 21:57:19 -0800408
409#define MAX_SYMS 300000
410static struct ksym syms[MAX_SYMS];
411static int sym_cnt;
412
413static int ksym_cmp(const void *p1, const void *p2)
414{
415 return ((struct ksym *)p1)->addr - ((struct ksym *)p2)->addr;
416}
417
418int load_kallsyms(void)
419{
420 FILE *f = fopen("/proc/kallsyms", "r");
421 char func[256], buf[256];
422 char symbol;
423 void *addr;
424 int i = 0;
425
426 if (!f)
427 return -ENOENT;
428
429 while (!feof(f)) {
430 if (!fgets(buf, sizeof(buf), f))
431 break;
432 if (sscanf(buf, "%p %c %s", &addr, &symbol, func) != 3)
433 break;
434 if (!addr)
435 continue;
436 syms[i].addr = (long) addr;
437 syms[i].name = strdup(func);
438 i++;
439 }
440 sym_cnt = i;
441 qsort(syms, sym_cnt, sizeof(struct ksym), ksym_cmp);
442 return 0;
443}
444
445struct ksym *ksym_search(long key)
446{
447 int start = 0, end = sym_cnt;
448 int result;
449
450 while (start < end) {
451 size_t mid = start + (end - start) / 2;
452
453 result = key - syms[mid].addr;
454 if (result < 0)
455 end = mid;
456 else if (result > 0)
457 start = mid + 1;
458 else
459 return &syms[mid];
460 }
461
462 if (start >= 1 && syms[start - 1].addr < key &&
463 key < syms[start].addr)
464 /* valid ksym */
465 return &syms[start - 1];
466
467 /* out of range. return _stext */
468 return &syms[0];
469}
Martin KaFai Lau12d8bb62016-12-07 15:53:14 -0800470
471int set_link_xdp_fd(int ifindex, int fd)
472{
473 struct sockaddr_nl sa;
474 int sock, seq = 0, len, ret = -1;
475 char buf[4096];
476 struct nlattr *nla, *nla_xdp;
477 struct {
478 struct nlmsghdr nh;
479 struct ifinfomsg ifinfo;
480 char attrbuf[64];
481 } req;
482 struct nlmsghdr *nh;
483 struct nlmsgerr *err;
484
485 memset(&sa, 0, sizeof(sa));
486 sa.nl_family = AF_NETLINK;
487
488 sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
489 if (sock < 0) {
490 printf("open netlink socket: %s\n", strerror(errno));
491 return -1;
492 }
493
494 if (bind(sock, (struct sockaddr *)&sa, sizeof(sa)) < 0) {
495 printf("bind to netlink: %s\n", strerror(errno));
496 goto cleanup;
497 }
498
499 memset(&req, 0, sizeof(req));
500 req.nh.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
501 req.nh.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
502 req.nh.nlmsg_type = RTM_SETLINK;
503 req.nh.nlmsg_pid = 0;
504 req.nh.nlmsg_seq = ++seq;
505 req.ifinfo.ifi_family = AF_UNSPEC;
506 req.ifinfo.ifi_index = ifindex;
507 nla = (struct nlattr *)(((char *)&req)
508 + NLMSG_ALIGN(req.nh.nlmsg_len));
509 nla->nla_type = NLA_F_NESTED | 43/*IFLA_XDP*/;
510
511 nla_xdp = (struct nlattr *)((char *)nla + NLA_HDRLEN);
512 nla_xdp->nla_type = 1/*IFLA_XDP_FD*/;
513 nla_xdp->nla_len = NLA_HDRLEN + sizeof(int);
514 memcpy((char *)nla_xdp + NLA_HDRLEN, &fd, sizeof(fd));
515 nla->nla_len = NLA_HDRLEN + nla_xdp->nla_len;
516
517 req.nh.nlmsg_len += NLA_ALIGN(nla->nla_len);
518
519 if (send(sock, &req, req.nh.nlmsg_len, 0) < 0) {
520 printf("send to netlink: %s\n", strerror(errno));
521 goto cleanup;
522 }
523
524 len = recv(sock, buf, sizeof(buf), 0);
525 if (len < 0) {
526 printf("recv from netlink: %s\n", strerror(errno));
527 goto cleanup;
528 }
529
530 for (nh = (struct nlmsghdr *)buf; NLMSG_OK(nh, len);
531 nh = NLMSG_NEXT(nh, len)) {
532 if (nh->nlmsg_pid != getpid()) {
533 printf("Wrong pid %d, expected %d\n",
534 nh->nlmsg_pid, getpid());
535 goto cleanup;
536 }
537 if (nh->nlmsg_seq != seq) {
538 printf("Wrong seq %d, expected %d\n",
539 nh->nlmsg_seq, seq);
540 goto cleanup;
541 }
542 switch (nh->nlmsg_type) {
543 case NLMSG_ERROR:
544 err = (struct nlmsgerr *)NLMSG_DATA(nh);
545 if (!err->error)
546 continue;
547 printf("nlmsg error %s\n", strerror(-err->error));
548 goto cleanup;
549 case NLMSG_DONE:
550 break;
551 }
552 }
553
554 ret = 0;
555
556cleanup:
557 close(sock);
558 return ret;
559}