net.c 6.2 KB
Newer Older
1 2 3 4
// SPDX-License-Identifier: GPL-2.0+
// Copyright (C) 2018 Facebook

#define _GNU_SOURCE
5
#include <errno.h>
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <libbpf.h>
#include <net/if.h>
#include <linux/if.h>
#include <linux/rtnetlink.h>
#include <linux/tc_act/tc_bpf.h>
#include <sys/socket.h>

#include <bpf.h>
#include <nlattr.h>
#include "main.h"
#include "netlink_dumper.h"

21 22 23 24 25
struct ip_devname_ifindex {
	char	devname[64];
	int	ifindex;
};

26
struct bpf_netdev_t {
27
	struct ip_devname_ifindex *devices;
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
	int	used_len;
	int	array_len;
	int	filter_idx;
};

struct tc_kind_handle {
	char	kind[64];
	int	handle;
};

struct bpf_tcinfo_t {
	struct tc_kind_handle	*handle_array;
	int			used_len;
	int			array_len;
	bool			is_qdisc;
};

45 46 47 48 49 50
struct bpf_filter_t {
	const char	*kind;
	const char	*devname;
	int		ifindex;
};

51 52 53 54 55 56 57 58 59
static int dump_link_nlmsg(void *cookie, void *msg, struct nlattr **tb)
{
	struct bpf_netdev_t *netinfo = cookie;
	struct ifinfomsg *ifinfo = msg;

	if (netinfo->filter_idx > 0 && netinfo->filter_idx != ifinfo->ifi_index)
		return 0;

	if (netinfo->used_len == netinfo->array_len) {
60 61 62 63 64 65
		netinfo->devices = realloc(netinfo->devices,
			(netinfo->array_len + 16) *
			sizeof(struct ip_devname_ifindex));
		if (!netinfo->devices)
			return -ENOMEM;

66 67
		netinfo->array_len += 16;
	}
68 69 70 71 72 73
	netinfo->devices[netinfo->used_len].ifindex = ifinfo->ifi_index;
	snprintf(netinfo->devices[netinfo->used_len].devname,
		 sizeof(netinfo->devices[netinfo->used_len].devname),
		 "%s",
		 tb[IFLA_IFNAME] ? nla_getattr_str(tb[IFLA_IFNAME]) : "");
	netinfo->used_len++;
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94

	return do_xdp_dump(ifinfo, tb);
}

static int dump_class_qdisc_nlmsg(void *cookie, void *msg, struct nlattr **tb)
{
	struct bpf_tcinfo_t *tcinfo = cookie;
	struct tcmsg *info = msg;

	if (tcinfo->is_qdisc) {
		/* skip clsact qdisc */
		if (tb[TCA_KIND] &&
		    strcmp(nla_data(tb[TCA_KIND]), "clsact") == 0)
			return 0;
		if (info->tcm_handle == 0)
			return 0;
	}

	if (tcinfo->used_len == tcinfo->array_len) {
		tcinfo->handle_array = realloc(tcinfo->handle_array,
			(tcinfo->array_len + 16) * sizeof(struct tc_kind_handle));
95 96 97
		if (!tcinfo->handle_array)
			return -ENOMEM;

98 99 100 101 102
		tcinfo->array_len += 16;
	}
	tcinfo->handle_array[tcinfo->used_len].handle = info->tcm_handle;
	snprintf(tcinfo->handle_array[tcinfo->used_len].kind,
		 sizeof(tcinfo->handle_array[tcinfo->used_len].kind),
103
		 "%s",
104 105 106 107 108 109 110 111
		 tb[TCA_KIND] ? nla_getattr_str(tb[TCA_KIND]) : "unknown");
	tcinfo->used_len++;

	return 0;
}

static int dump_filter_nlmsg(void *cookie, void *msg, struct nlattr **tb)
{
112
	const struct bpf_filter_t *filter_info = cookie;
113

114 115
	return do_filter_dump((struct tcmsg *)msg, tb, filter_info->kind,
			      filter_info->devname, filter_info->ifindex);
116 117
}

118 119
static int show_dev_tc_bpf(int sock, unsigned int nl_pid,
			   struct ip_devname_ifindex *dev)
120
{
121
	struct bpf_filter_t filter_info;
122
	struct bpf_tcinfo_t tcinfo;
123
	int i, handle, ret = 0;
124 125 126 127 128 129

	tcinfo.handle_array = NULL;
	tcinfo.used_len = 0;
	tcinfo.array_len = 0;

	tcinfo.is_qdisc = false;
130 131
	ret = libbpf_nl_get_class(sock, nl_pid, dev->ifindex,
				  dump_class_qdisc_nlmsg, &tcinfo);
132
	if (ret)
133
		goto out;
134 135

	tcinfo.is_qdisc = true;
136 137
	ret = libbpf_nl_get_qdisc(sock, nl_pid, dev->ifindex,
				  dump_class_qdisc_nlmsg, &tcinfo);
138
	if (ret)
139
		goto out;
140

141 142
	filter_info.devname = dev->devname;
	filter_info.ifindex = dev->ifindex;
143
	for (i = 0; i < tcinfo.used_len; i++) {
144
		filter_info.kind = tcinfo.handle_array[i].kind;
145 146 147
		ret = libbpf_nl_get_filter(sock, nl_pid, dev->ifindex,
					   tcinfo.handle_array[i].handle,
					   dump_filter_nlmsg, &filter_info);
148
		if (ret)
149
			goto out;
150 151 152 153
	}

	/* root, ingress and egress handle */
	handle = TC_H_ROOT;
154
	filter_info.kind = "root";
155 156
	ret = libbpf_nl_get_filter(sock, nl_pid, dev->ifindex, handle,
				   dump_filter_nlmsg, &filter_info);
157
	if (ret)
158
		goto out;
159 160

	handle = TC_H_MAKE(TC_H_CLSACT, TC_H_MIN_INGRESS);
161
	filter_info.kind = "clsact/ingress";
162 163
	ret = libbpf_nl_get_filter(sock, nl_pid, dev->ifindex, handle,
				   dump_filter_nlmsg, &filter_info);
164
	if (ret)
165
		goto out;
166 167

	handle = TC_H_MAKE(TC_H_CLSACT, TC_H_MIN_EGRESS);
168
	filter_info.kind = "clsact/egress";
169 170
	ret = libbpf_nl_get_filter(sock, nl_pid, dev->ifindex, handle,
				   dump_filter_nlmsg, &filter_info);
171
	if (ret)
172
		goto out;
173

174 175
out:
	free(tcinfo.handle_array);
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
	return 0;
}

static int do_show(int argc, char **argv)
{
	int i, sock, ret, filter_idx = -1;
	struct bpf_netdev_t dev_array;
	unsigned int nl_pid;
	char err_buf[256];

	if (argc == 2) {
		if (strcmp(argv[0], "dev") != 0)
			usage();
		filter_idx = if_nametoindex(argv[1]);
		if (filter_idx == 0) {
			fprintf(stderr, "invalid dev name %s\n", argv[1]);
			return -1;
		}
	} else if (argc != 0) {
		usage();
	}

198
	sock = libbpf_netlink_open(&nl_pid);
199 200 201 202 203
	if (sock < 0) {
		fprintf(stderr, "failed to open netlink sock\n");
		return -1;
	}

204
	dev_array.devices = NULL;
205 206 207 208 209 210 211
	dev_array.used_len = 0;
	dev_array.array_len = 0;
	dev_array.filter_idx = filter_idx;

	if (json_output)
		jsonw_start_array(json_wtr);
	NET_START_OBJECT;
212
	NET_START_ARRAY("xdp", "%s:\n");
213
	ret = libbpf_nl_get_link(sock, nl_pid, dump_link_nlmsg, &dev_array);
214 215 216
	NET_END_ARRAY("\n");

	if (!ret) {
217
		NET_START_ARRAY("tc", "%s:\n");
218 219
		for (i = 0; i < dev_array.used_len; i++) {
			ret = show_dev_tc_bpf(sock, nl_pid,
220
					      &dev_array.devices[i]);
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
			if (ret)
				break;
		}
		NET_END_ARRAY("\n");
	}
	NET_END_OBJECT;
	if (json_output)
		jsonw_end_array(json_wtr);

	if (ret) {
		if (json_output)
			jsonw_null(json_wtr);
		libbpf_strerror(ret, err_buf, sizeof(err_buf));
		fprintf(stderr, "Error: %s\n", err_buf);
	}
236
	free(dev_array.devices);
237 238 239 240 241 242 243 244 245 246 247 248 249
	close(sock);
	return ret;
}

static int do_help(int argc, char **argv)
{
	if (json_output) {
		jsonw_null(json_wtr);
		return 0;
	}

	fprintf(stderr,
		"Usage: %s %s { show | list } [dev <devname>]\n"
250 251 252 253 254 255
		"       %s %s help\n"
		"Note: Only xdp and tc attachments are supported now.\n"
		"      For progs attached to cgroups, use \"bpftool cgroup\"\n"
		"      to dump program attachments. For program types\n"
		"      sk_{filter,skb,msg,reuseport} and lwt/seg6, please\n"
		"      consult iproute2.\n",
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
		bin_name, argv[-2], bin_name, argv[-2]);

	return 0;
}

static const struct cmd cmds[] = {
	{ "show",	do_show },
	{ "list",	do_show },
	{ "help",	do_help },
	{ 0 }
};

int do_net(int argc, char **argv)
{
	return cmd_select(cmds, argc, argv, do_help);
}