blob: 396e204888b34f342bd8f01afc4e0d1a3d52f823 [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++) {
331
332 if (get_sec(elf, i, &ehdr, &shname, &shdr, &data))
333 continue;
334 if (shdr.sh_type == SHT_REL) {
335 struct bpf_insn *insns;
336
337 if (get_sec(elf, shdr.sh_info, &ehdr, &shname_prog,
338 &shdr_prog, &data_prog))
339 continue;
340
Alexei Starovoitovdb6a71d2016-11-22 16:52:09 -0800341 if (shdr_prog.sh_type != SHT_PROGBITS ||
342 !(shdr_prog.sh_flags & SHF_EXECINSTR))
343 continue;
344
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800345 insns = (struct bpf_insn *) data_prog->d_buf;
346
347 processed_sec[shdr.sh_info] = true;
348 processed_sec[i] = true;
349
350 if (parse_relo_and_apply(data, symbols, &shdr, insns))
351 continue;
352
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700353 if (memcmp(shname_prog, "kprobe/", 7) == 0 ||
354 memcmp(shname_prog, "kretprobe/", 10) == 0 ||
Alexei Starovoitovc0766042016-04-06 18:43:29 -0700355 memcmp(shname_prog, "tracepoint/", 11) == 0 ||
Brenden Blanco86af8b42016-07-19 12:16:51 -0700356 memcmp(shname_prog, "xdp", 3) == 0 ||
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -0700357 memcmp(shname_prog, "perf_event", 10) == 0 ||
David Ahern4f2e7ae2016-12-01 08:48:07 -0800358 memcmp(shname_prog, "socket", 6) == 0 ||
359 memcmp(shname_prog, "cgroup/", 7) == 0)
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800360 load_and_attach(shname_prog, insns, data_prog->d_size);
361 }
362 }
363
364 /* load programs that don't use maps */
365 for (i = 1; i < ehdr.e_shnum; i++) {
366
367 if (processed_sec[i])
368 continue;
369
370 if (get_sec(elf, i, &ehdr, &shname, &shdr, &data))
371 continue;
372
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700373 if (memcmp(shname, "kprobe/", 7) == 0 ||
374 memcmp(shname, "kretprobe/", 10) == 0 ||
Alexei Starovoitovc0766042016-04-06 18:43:29 -0700375 memcmp(shname, "tracepoint/", 11) == 0 ||
Brenden Blanco86af8b42016-07-19 12:16:51 -0700376 memcmp(shname, "xdp", 3) == 0 ||
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -0700377 memcmp(shname, "perf_event", 10) == 0 ||
David Ahern4f2e7ae2016-12-01 08:48:07 -0800378 memcmp(shname, "socket", 6) == 0 ||
379 memcmp(shname, "cgroup/", 7) == 0)
Alexei Starovoitov249b8122014-12-01 15:06:37 -0800380 load_and_attach(shname, data->d_buf, data->d_size);
381 }
382
383 close(fd);
384 return 0;
385}
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -0700386
387void read_trace_pipe(void)
388{
389 int trace_fd;
390
391 trace_fd = open(DEBUGFS "trace_pipe", O_RDONLY, 0);
392 if (trace_fd < 0)
393 return;
394
395 while (1) {
396 static char buf[4096];
397 ssize_t sz;
398
399 sz = read(trace_fd, buf, sizeof(buf));
400 if (sz > 0) {
401 buf[sz] = 0;
402 puts(buf);
403 }
404 }
405}
Alexei Starovoitov3622e7e2016-03-07 21:57:19 -0800406
407#define MAX_SYMS 300000
408static struct ksym syms[MAX_SYMS];
409static int sym_cnt;
410
411static int ksym_cmp(const void *p1, const void *p2)
412{
413 return ((struct ksym *)p1)->addr - ((struct ksym *)p2)->addr;
414}
415
416int load_kallsyms(void)
417{
418 FILE *f = fopen("/proc/kallsyms", "r");
419 char func[256], buf[256];
420 char symbol;
421 void *addr;
422 int i = 0;
423
424 if (!f)
425 return -ENOENT;
426
427 while (!feof(f)) {
428 if (!fgets(buf, sizeof(buf), f))
429 break;
430 if (sscanf(buf, "%p %c %s", &addr, &symbol, func) != 3)
431 break;
432 if (!addr)
433 continue;
434 syms[i].addr = (long) addr;
435 syms[i].name = strdup(func);
436 i++;
437 }
438 sym_cnt = i;
439 qsort(syms, sym_cnt, sizeof(struct ksym), ksym_cmp);
440 return 0;
441}
442
443struct ksym *ksym_search(long key)
444{
445 int start = 0, end = sym_cnt;
446 int result;
447
448 while (start < end) {
449 size_t mid = start + (end - start) / 2;
450
451 result = key - syms[mid].addr;
452 if (result < 0)
453 end = mid;
454 else if (result > 0)
455 start = mid + 1;
456 else
457 return &syms[mid];
458 }
459
460 if (start >= 1 && syms[start - 1].addr < key &&
461 key < syms[start].addr)
462 /* valid ksym */
463 return &syms[start - 1];
464
465 /* out of range. return _stext */
466 return &syms[0];
467}
Martin KaFai Lau12d8bb62016-12-07 15:53:14 -0800468
469int set_link_xdp_fd(int ifindex, int fd)
470{
471 struct sockaddr_nl sa;
472 int sock, seq = 0, len, ret = -1;
473 char buf[4096];
474 struct nlattr *nla, *nla_xdp;
475 struct {
476 struct nlmsghdr nh;
477 struct ifinfomsg ifinfo;
478 char attrbuf[64];
479 } req;
480 struct nlmsghdr *nh;
481 struct nlmsgerr *err;
482
483 memset(&sa, 0, sizeof(sa));
484 sa.nl_family = AF_NETLINK;
485
486 sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
487 if (sock < 0) {
488 printf("open netlink socket: %s\n", strerror(errno));
489 return -1;
490 }
491
492 if (bind(sock, (struct sockaddr *)&sa, sizeof(sa)) < 0) {
493 printf("bind to netlink: %s\n", strerror(errno));
494 goto cleanup;
495 }
496
497 memset(&req, 0, sizeof(req));
498 req.nh.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
499 req.nh.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
500 req.nh.nlmsg_type = RTM_SETLINK;
501 req.nh.nlmsg_pid = 0;
502 req.nh.nlmsg_seq = ++seq;
503 req.ifinfo.ifi_family = AF_UNSPEC;
504 req.ifinfo.ifi_index = ifindex;
505 nla = (struct nlattr *)(((char *)&req)
506 + NLMSG_ALIGN(req.nh.nlmsg_len));
507 nla->nla_type = NLA_F_NESTED | 43/*IFLA_XDP*/;
508
509 nla_xdp = (struct nlattr *)((char *)nla + NLA_HDRLEN);
510 nla_xdp->nla_type = 1/*IFLA_XDP_FD*/;
511 nla_xdp->nla_len = NLA_HDRLEN + sizeof(int);
512 memcpy((char *)nla_xdp + NLA_HDRLEN, &fd, sizeof(fd));
513 nla->nla_len = NLA_HDRLEN + nla_xdp->nla_len;
514
515 req.nh.nlmsg_len += NLA_ALIGN(nla->nla_len);
516
517 if (send(sock, &req, req.nh.nlmsg_len, 0) < 0) {
518 printf("send to netlink: %s\n", strerror(errno));
519 goto cleanup;
520 }
521
522 len = recv(sock, buf, sizeof(buf), 0);
523 if (len < 0) {
524 printf("recv from netlink: %s\n", strerror(errno));
525 goto cleanup;
526 }
527
528 for (nh = (struct nlmsghdr *)buf; NLMSG_OK(nh, len);
529 nh = NLMSG_NEXT(nh, len)) {
530 if (nh->nlmsg_pid != getpid()) {
531 printf("Wrong pid %d, expected %d\n",
532 nh->nlmsg_pid, getpid());
533 goto cleanup;
534 }
535 if (nh->nlmsg_seq != seq) {
536 printf("Wrong seq %d, expected %d\n",
537 nh->nlmsg_seq, seq);
538 goto cleanup;
539 }
540 switch (nh->nlmsg_type) {
541 case NLMSG_ERROR:
542 err = (struct nlmsgerr *)NLMSG_DATA(nh);
543 if (!err->error)
544 continue;
545 printf("nlmsg error %s\n", strerror(-err->error));
546 goto cleanup;
547 case NLMSG_DONE:
548 break;
549 }
550 }
551
552 ret = 0;
553
554cleanup:
555 close(sock);
556 return ret;
557}