xref: /openbmc/linux/tools/net/ynl/samples/netdev.c (revision 5ad1ab30)
1 // SPDX-License-Identifier: GPL-2.0
2 #include <stdio.h>
3 #include <string.h>
4 
5 #include <ynl.h>
6 
7 #include <net/if.h>
8 
9 #include "netdev-user.h"
10 
11 /* netdev genetlink family code sample
12  * This sample shows off basics of the netdev family but also notification
13  * handling, hence the somewhat odd UI. We subscribe to notifications first
14  * then wait for ifc selection, so the socket may already accumulate
15  * notifications as we wait. This allows us to test that YNL can handle
16  * requests and notifications getting interleaved.
17  */
18 
19 static void netdev_print_device(struct netdev_dev_get_rsp *d, unsigned int op)
20 {
21 	char ifname[IF_NAMESIZE];
22 	const char *name;
23 
24 	if (!d->_present.ifindex)
25 		return;
26 
27 	name = if_indextoname(d->ifindex, ifname);
28 	if (name)
29 		printf("%8s", name);
30 	printf("[%d]\t", d->ifindex);
31 
32 	if (!d->_present.xdp_features)
33 		return;
34 
35 	printf("%llx:", d->xdp_features);
36 	for (int i = 0; d->xdp_features > 1U << i; i++) {
37 		if (d->xdp_features & (1U << i))
38 			printf(" %s", netdev_xdp_act_str(1 << i));
39 	}
40 
41 	name = netdev_op_str(op);
42 	if (name)
43 		printf(" (ntf: %s)", name);
44 	printf("\n");
45 }
46 
47 int main(int argc, char **argv)
48 {
49 	struct netdev_dev_get_list *devs;
50 	struct ynl_ntf_base_type *ntf;
51 	struct ynl_error yerr;
52 	struct ynl_sock *ys;
53 	int ifindex = 0;
54 
55 	if (argc > 1)
56 		ifindex = strtol(argv[1], NULL, 0);
57 
58 	ys = ynl_sock_create(&ynl_netdev_family, &yerr);
59 	if (!ys) {
60 		fprintf(stderr, "YNL: %s\n", yerr.msg);
61 		return 1;
62 	}
63 
64 	if (ynl_subscribe(ys, "mgmt"))
65 		goto err_close;
66 
67 	printf("Select ifc ($ifindex; or 0 = dump; or -2 ntf check): ");
68 	scanf("%d", &ifindex);
69 
70 	if (ifindex > 0) {
71 		struct netdev_dev_get_req *req;
72 		struct netdev_dev_get_rsp *d;
73 
74 		req = netdev_dev_get_req_alloc();
75 		netdev_dev_get_req_set_ifindex(req, ifindex);
76 
77 		d = netdev_dev_get(ys, req);
78 		netdev_dev_get_req_free(req);
79 		if (!d)
80 			goto err_close;
81 
82 		netdev_print_device(d, 0);
83 		netdev_dev_get_rsp_free(d);
84 	} else if (!ifindex) {
85 		devs = netdev_dev_get_dump(ys);
86 		if (!devs)
87 			goto err_close;
88 
89 		ynl_dump_foreach(devs, d)
90 			netdev_print_device(d, 0);
91 		netdev_dev_get_list_free(devs);
92 	} else if (ifindex == -2) {
93 		ynl_ntf_check(ys);
94 	}
95 	while ((ntf = ynl_ntf_dequeue(ys))) {
96 		netdev_print_device((struct netdev_dev_get_rsp *)&ntf->data,
97 				    ntf->cmd);
98 		ynl_ntf_free(ntf);
99 	}
100 
101 	ynl_sock_destroy(ys);
102 	return 0;
103 
104 err_close:
105 	fprintf(stderr, "YNL: %s\n", ys->err.msg);
106 	ynl_sock_destroy(ys);
107 	return 2;
108 }
109