1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 // Copyright (C) 2018 Facebook
11 #include <bpf/libbpf.h>
14 #include <linux/rtnetlink.h>
15 #include <linux/tc_act/tc_bpf.h>
16 #include <sys/socket.h>
18 #include <sys/types.h>
20 #include "bpf/nlattr.h"
21 #include "bpf/libbpf_internal.h"
23 #include "netlink_dumper.h"
25 struct ip_devname_ifindex
{
31 struct ip_devname_ifindex
*devices
;
37 struct tc_kind_handle
{
43 struct tc_kind_handle
*handle_array
;
55 struct bpf_attach_info
{
56 __u32 flow_dissector_id
;
59 enum net_attach_type
{
61 NET_ATTACH_TYPE_XDP_GENERIC
,
62 NET_ATTACH_TYPE_XDP_DRIVER
,
63 NET_ATTACH_TYPE_XDP_OFFLOAD
,
66 static const char * const attach_type_strings
[] = {
67 [NET_ATTACH_TYPE_XDP
] = "xdp",
68 [NET_ATTACH_TYPE_XDP_GENERIC
] = "xdpgeneric",
69 [NET_ATTACH_TYPE_XDP_DRIVER
] = "xdpdrv",
70 [NET_ATTACH_TYPE_XDP_OFFLOAD
] = "xdpoffload",
73 const size_t net_attach_type_size
= ARRAY_SIZE(attach_type_strings
);
75 static enum net_attach_type
parse_attach_type(const char *str
)
77 enum net_attach_type type
;
79 for (type
= 0; type
< net_attach_type_size
; type
++) {
80 if (attach_type_strings
[type
] &&
81 is_prefix(str
, attach_type_strings
[type
]))
85 return net_attach_type_size
;
88 static int dump_link_nlmsg(void *cookie
, void *msg
, struct nlattr
**tb
)
90 struct bpf_netdev_t
*netinfo
= cookie
;
91 struct ifinfomsg
*ifinfo
= msg
;
93 if (netinfo
->filter_idx
> 0 && netinfo
->filter_idx
!= ifinfo
->ifi_index
)
96 if (netinfo
->used_len
== netinfo
->array_len
) {
97 netinfo
->devices
= realloc(netinfo
->devices
,
98 (netinfo
->array_len
+ 16) *
99 sizeof(struct ip_devname_ifindex
));
100 if (!netinfo
->devices
)
103 netinfo
->array_len
+= 16;
105 netinfo
->devices
[netinfo
->used_len
].ifindex
= ifinfo
->ifi_index
;
106 snprintf(netinfo
->devices
[netinfo
->used_len
].devname
,
107 sizeof(netinfo
->devices
[netinfo
->used_len
].devname
),
110 ? libbpf_nla_getattr_str(tb
[IFLA_IFNAME
])
114 return do_xdp_dump(ifinfo
, tb
);
117 static int dump_class_qdisc_nlmsg(void *cookie
, void *msg
, struct nlattr
**tb
)
119 struct bpf_tcinfo_t
*tcinfo
= cookie
;
120 struct tcmsg
*info
= msg
;
122 if (tcinfo
->is_qdisc
) {
123 /* skip clsact qdisc */
125 strcmp(libbpf_nla_data(tb
[TCA_KIND
]), "clsact") == 0)
127 if (info
->tcm_handle
== 0)
131 if (tcinfo
->used_len
== tcinfo
->array_len
) {
132 tcinfo
->handle_array
= realloc(tcinfo
->handle_array
,
133 (tcinfo
->array_len
+ 16) * sizeof(struct tc_kind_handle
));
134 if (!tcinfo
->handle_array
)
137 tcinfo
->array_len
+= 16;
139 tcinfo
->handle_array
[tcinfo
->used_len
].handle
= info
->tcm_handle
;
140 snprintf(tcinfo
->handle_array
[tcinfo
->used_len
].kind
,
141 sizeof(tcinfo
->handle_array
[tcinfo
->used_len
].kind
),
144 ? libbpf_nla_getattr_str(tb
[TCA_KIND
])
151 static int dump_filter_nlmsg(void *cookie
, void *msg
, struct nlattr
**tb
)
153 const struct bpf_filter_t
*filter_info
= cookie
;
155 return do_filter_dump((struct tcmsg
*)msg
, tb
, filter_info
->kind
,
156 filter_info
->devname
, filter_info
->ifindex
);
159 static int show_dev_tc_bpf(int sock
, unsigned int nl_pid
,
160 struct ip_devname_ifindex
*dev
)
162 struct bpf_filter_t filter_info
;
163 struct bpf_tcinfo_t tcinfo
;
164 int i
, handle
, ret
= 0;
166 tcinfo
.handle_array
= NULL
;
168 tcinfo
.array_len
= 0;
170 tcinfo
.is_qdisc
= false;
171 ret
= libbpf_nl_get_class(sock
, nl_pid
, dev
->ifindex
,
172 dump_class_qdisc_nlmsg
, &tcinfo
);
176 tcinfo
.is_qdisc
= true;
177 ret
= libbpf_nl_get_qdisc(sock
, nl_pid
, dev
->ifindex
,
178 dump_class_qdisc_nlmsg
, &tcinfo
);
182 filter_info
.devname
= dev
->devname
;
183 filter_info
.ifindex
= dev
->ifindex
;
184 for (i
= 0; i
< tcinfo
.used_len
; i
++) {
185 filter_info
.kind
= tcinfo
.handle_array
[i
].kind
;
186 ret
= libbpf_nl_get_filter(sock
, nl_pid
, dev
->ifindex
,
187 tcinfo
.handle_array
[i
].handle
,
188 dump_filter_nlmsg
, &filter_info
);
193 /* root, ingress and egress handle */
195 filter_info
.kind
= "root";
196 ret
= libbpf_nl_get_filter(sock
, nl_pid
, dev
->ifindex
, handle
,
197 dump_filter_nlmsg
, &filter_info
);
201 handle
= TC_H_MAKE(TC_H_CLSACT
, TC_H_MIN_INGRESS
);
202 filter_info
.kind
= "clsact/ingress";
203 ret
= libbpf_nl_get_filter(sock
, nl_pid
, dev
->ifindex
, handle
,
204 dump_filter_nlmsg
, &filter_info
);
208 handle
= TC_H_MAKE(TC_H_CLSACT
, TC_H_MIN_EGRESS
);
209 filter_info
.kind
= "clsact/egress";
210 ret
= libbpf_nl_get_filter(sock
, nl_pid
, dev
->ifindex
, handle
,
211 dump_filter_nlmsg
, &filter_info
);
216 free(tcinfo
.handle_array
);
220 static int query_flow_dissector(struct bpf_attach_info
*attach_info
)
228 fd
= open("/proc/self/ns/net", O_RDONLY
);
230 p_err("can't open /proc/self/ns/net: %s",
234 prog_cnt
= ARRAY_SIZE(prog_ids
);
235 err
= bpf_prog_query(fd
, BPF_FLOW_DISSECTOR
, 0,
236 &attach_flags
, prog_ids
, &prog_cnt
);
239 if (errno
== EINVAL
) {
240 /* Older kernel's don't support querying
241 * flow dissector programs.
246 p_err("can't query prog: %s", strerror(errno
));
251 attach_info
->flow_dissector_id
= prog_ids
[0];
256 static int net_parse_dev(int *argc
, char ***argv
)
260 if (is_prefix(**argv
, "dev")) {
263 ifindex
= if_nametoindex(**argv
);
265 p_err("invalid devname %s", **argv
);
269 p_err("expected 'dev', got: '%s'?", **argv
);
276 static int do_attach_detach_xdp(int progfd
, enum net_attach_type attach_type
,
277 int ifindex
, bool overwrite
)
282 flags
= XDP_FLAGS_UPDATE_IF_NOEXIST
;
283 if (attach_type
== NET_ATTACH_TYPE_XDP_GENERIC
)
284 flags
|= XDP_FLAGS_SKB_MODE
;
285 if (attach_type
== NET_ATTACH_TYPE_XDP_DRIVER
)
286 flags
|= XDP_FLAGS_DRV_MODE
;
287 if (attach_type
== NET_ATTACH_TYPE_XDP_OFFLOAD
)
288 flags
|= XDP_FLAGS_HW_MODE
;
290 return bpf_set_link_xdp_fd(ifindex
, progfd
, flags
);
293 static int do_attach(int argc
, char **argv
)
295 enum net_attach_type attach_type
;
296 int progfd
, ifindex
, err
= 0;
297 bool overwrite
= false;
299 /* parse attach args */
303 attach_type
= parse_attach_type(*argv
);
304 if (attach_type
== net_attach_type_size
) {
305 p_err("invalid net attach/detach type: %s", *argv
);
310 progfd
= prog_parse_fd(&argc
, &argv
);
314 ifindex
= net_parse_dev(&argc
, &argv
);
321 if (is_prefix(*argv
, "overwrite")) {
324 p_err("expected 'overwrite', got: '%s'?", *argv
);
330 /* attach xdp prog */
331 if (is_prefix("xdp", attach_type_strings
[attach_type
]))
332 err
= do_attach_detach_xdp(progfd
, attach_type
, ifindex
,
336 p_err("interface %s attach failed: %s",
337 attach_type_strings
[attach_type
], strerror(-err
));
342 jsonw_null(json_wtr
);
347 static int do_detach(int argc
, char **argv
)
349 enum net_attach_type attach_type
;
350 int progfd
, ifindex
, err
= 0;
352 /* parse detach args */
356 attach_type
= parse_attach_type(*argv
);
357 if (attach_type
== net_attach_type_size
) {
358 p_err("invalid net attach/detach type: %s", *argv
);
363 ifindex
= net_parse_dev(&argc
, &argv
);
367 /* detach xdp prog */
369 if (is_prefix("xdp", attach_type_strings
[attach_type
]))
370 err
= do_attach_detach_xdp(progfd
, attach_type
, ifindex
, NULL
);
373 p_err("interface %s detach failed: %s",
374 attach_type_strings
[attach_type
], strerror(-err
));
379 jsonw_null(json_wtr
);
384 static int do_show(int argc
, char **argv
)
386 struct bpf_attach_info attach_info
= {};
387 int i
, sock
, ret
, filter_idx
= -1;
388 struct bpf_netdev_t dev_array
;
393 filter_idx
= net_parse_dev(&argc
, &argv
);
396 } else if (argc
!= 0) {
400 ret
= query_flow_dissector(&attach_info
);
404 sock
= libbpf_netlink_open(&nl_pid
);
406 fprintf(stderr
, "failed to open netlink sock\n");
410 dev_array
.devices
= NULL
;
411 dev_array
.used_len
= 0;
412 dev_array
.array_len
= 0;
413 dev_array
.filter_idx
= filter_idx
;
416 jsonw_start_array(json_wtr
);
418 NET_START_ARRAY("xdp", "%s:\n");
419 ret
= libbpf_nl_get_link(sock
, nl_pid
, dump_link_nlmsg
, &dev_array
);
423 NET_START_ARRAY("tc", "%s:\n");
424 for (i
= 0; i
< dev_array
.used_len
; i
++) {
425 ret
= show_dev_tc_bpf(sock
, nl_pid
,
426 &dev_array
.devices
[i
]);
433 NET_START_ARRAY("flow_dissector", "%s:\n");
434 if (attach_info
.flow_dissector_id
> 0)
435 NET_DUMP_UINT("id", "id %u", attach_info
.flow_dissector_id
);
440 jsonw_end_array(json_wtr
);
444 jsonw_null(json_wtr
);
445 libbpf_strerror(ret
, err_buf
, sizeof(err_buf
));
446 fprintf(stderr
, "Error: %s\n", err_buf
);
448 free(dev_array
.devices
);
453 static int do_help(int argc
, char **argv
)
456 jsonw_null(json_wtr
);
461 "Usage: %s %s { show | list } [dev <devname>]\n"
462 " %s %s attach ATTACH_TYPE PROG dev <devname> [ overwrite ]\n"
463 " %s %s detach ATTACH_TYPE dev <devname>\n"
466 " " HELP_SPEC_PROGRAM
"\n"
467 " ATTACH_TYPE := { xdp | xdpgeneric | xdpdrv | xdpoffload }\n"
469 "Note: Only xdp and tc attachments are supported now.\n"
470 " For progs attached to cgroups, use \"bpftool cgroup\"\n"
471 " to dump program attachments. For program types\n"
472 " sk_{filter,skb,msg,reuseport} and lwt/seg6, please\n"
473 " consult iproute2.\n",
474 bin_name
, argv
[-2], bin_name
, argv
[-2], bin_name
, argv
[-2],
480 static const struct cmd cmds
[] = {
483 { "attach", do_attach
},
484 { "detach", do_detach
},
489 int do_net(int argc
, char **argv
)
491 return cmd_select(cmds
, argc
, argv
, do_help
);