blob: a7bd85f9d3b57463943856e81ef949d47474c294 [file] [log] [blame]
Stephen Hemmingerd04bc302012-08-01 15:23:49 -07001
2#include <stdio.h>
3#include <stdlib.h>
4#include <unistd.h>
5#include <time.h>
6#include <sys/socket.h>
7#include <sys/time.h>
8#include <netinet/in.h>
9#include <linux/if.h>
10#include <linux/if_bridge.h>
11#include <string.h>
Vlad Yasevich64108902013-03-15 10:01:28 -070012#include <stdbool.h>
Stephen Hemmingerd04bc302012-08-01 15:23:49 -070013
Vlad Yasevich64108902013-03-15 10:01:28 -070014#include "libnetlink.h"
Stephen Hemmingerd04bc302012-08-01 15:23:49 -070015#include "utils.h"
16#include "br_common.h"
17
Andreas Henriksson9dca8992014-06-04 19:40:37 +020018static unsigned int filter_index;
Vlad Yasevich64108902013-03-15 10:01:28 -070019
Stephen Hemmingerd04bc302012-08-01 15:23:49 -070020static const char *port_states[] = {
21 [BR_STATE_DISABLED] = "disabled",
22 [BR_STATE_LISTENING] = "listening",
23 [BR_STATE_LEARNING] = "learning",
24 [BR_STATE_FORWARDING] = "forwarding",
25 [BR_STATE_BLOCKING] = "blocking",
26};
27
28extern char *if_indextoname (unsigned int __ifindex, char *__ifname);
29
30static void print_link_flags(FILE *fp, unsigned flags)
31{
32 fprintf(fp, "<");
33 if (flags & IFF_UP && !(flags & IFF_RUNNING))
34 fprintf(fp, "NO-CARRIER%s", flags ? "," : "");
35 flags &= ~IFF_RUNNING;
36#define _PF(f) if (flags&IFF_##f) { \
37 flags &= ~IFF_##f ; \
38 fprintf(fp, #f "%s", flags ? "," : ""); }
39 _PF(LOOPBACK);
40 _PF(BROADCAST);
41 _PF(POINTOPOINT);
42 _PF(MULTICAST);
43 _PF(NOARP);
44 _PF(ALLMULTI);
45 _PF(PROMISC);
46 _PF(MASTER);
47 _PF(SLAVE);
48 _PF(DEBUG);
49 _PF(DYNAMIC);
50 _PF(AUTOMEDIA);
51 _PF(PORTSEL);
52 _PF(NOTRAILERS);
53 _PF(UP);
54 _PF(LOWER_UP);
55 _PF(DORMANT);
56 _PF(ECHO);
57#undef _PF
58 if (flags)
59 fprintf(fp, "%x", flags);
60 fprintf(fp, "> ");
61}
62
63static const char *oper_states[] = {
Stephen Hemminger38df7ac2012-10-29 17:48:55 -070064 "UNKNOWN", "NOTPRESENT", "DOWN", "LOWERLAYERDOWN",
Stephen Hemmingerd04bc302012-08-01 15:23:49 -070065 "TESTING", "DORMANT", "UP"
66};
67
Vlad Yasevichb1b7ce02013-03-15 10:01:28 -070068static const char *hw_mode[] = {"VEB", "VEPA"};
69
Stephen Hemmingerd04bc302012-08-01 15:23:49 -070070static void print_operstate(FILE *f, __u8 state)
71{
72 if (state >= sizeof(oper_states)/sizeof(oper_states[0]))
73 fprintf(f, "state %#x ", state);
74 else
75 fprintf(f, "state %s ", oper_states[state]);
76}
77
Vlad Yasevichb1b7ce02013-03-15 10:01:28 -070078static void print_portstate(FILE *f, __u8 state)
79{
80 if (state <= BR_STATE_BLOCKING)
81 fprintf(f, "state %s ", port_states[state]);
82 else
83 fprintf(f, "state (%d) ", state);
84}
85
86static void print_onoff(FILE *f, char *flag, __u8 val)
87{
88 fprintf(f, "%s %s ", flag, val ? "on" : "off");
89}
90
91static void print_hwmode(FILE *f, __u16 mode)
92{
93 if (mode >= sizeof(hw_mode)/sizeof(hw_mode[0]))
94 fprintf(f, "hwmode %#hx ", mode);
95 else
96 fprintf(f, "hwmode %s ", hw_mode[mode]);
97}
98
Stephen Hemmingerd04bc302012-08-01 15:23:49 -070099int print_linkinfo(const struct sockaddr_nl *who,
100 struct nlmsghdr *n, void *arg)
101{
102 FILE *fp = arg;
103 int len = n->nlmsg_len;
104 struct ifinfomsg *ifi = NLMSG_DATA(n);
105 struct rtattr * tb[IFLA_MAX+1];
106 char b1[IFNAMSIZ];
107
108 len -= NLMSG_LENGTH(sizeof(*ifi));
109 if (len < 0) {
110 fprintf(stderr, "Message too short!\n");
111 return -1;
112 }
113
114 if (!(ifi->ifi_family == AF_BRIDGE || ifi->ifi_family == AF_UNSPEC))
115 return 0;
116
Vlad Yasevich64108902013-03-15 10:01:28 -0700117 if (filter_index && filter_index != ifi->ifi_index)
118 return 0;
119
Vlad Yasevichb1b7ce02013-03-15 10:01:28 -0700120 parse_rtattr_flags(tb, IFLA_MAX, IFLA_RTA(ifi), len, NLA_F_NESTED);
Stephen Hemmingerd04bc302012-08-01 15:23:49 -0700121
122 if (tb[IFLA_IFNAME] == NULL) {
123 fprintf(stderr, "BUG: nil ifname\n");
124 return -1;
125 }
126
127 if (n->nlmsg_type == RTM_DELLINK)
128 fprintf(fp, "Deleted ");
129
130 fprintf(fp, "%d: %s ", ifi->ifi_index,
Stephen Hemminger1465db12012-10-29 17:52:45 -0700131 tb[IFLA_IFNAME] ? rta_getattr_str(tb[IFLA_IFNAME]) : "<nil>");
Stephen Hemmingerd04bc302012-08-01 15:23:49 -0700132
Stephen Hemminger38df7ac2012-10-29 17:48:55 -0700133 if (tb[IFLA_OPERSTATE])
Stephen Hemminger1465db12012-10-29 17:52:45 -0700134 print_operstate(fp, rta_getattr_u8(tb[IFLA_OPERSTATE]));
Stephen Hemminger38df7ac2012-10-29 17:48:55 -0700135
Stephen Hemmingerd04bc302012-08-01 15:23:49 -0700136 if (tb[IFLA_LINK]) {
137 SPRINT_BUF(b1);
Stephen Hemminger1465db12012-10-29 17:52:45 -0700138 int iflink = rta_getattr_u32(tb[IFLA_LINK]);
Stephen Hemmingerd04bc302012-08-01 15:23:49 -0700139 if (iflink == 0)
140 fprintf(fp, "@NONE: ");
Stephen Hemminger1465db12012-10-29 17:52:45 -0700141 else
Stephen Hemminger38df7ac2012-10-29 17:48:55 -0700142 fprintf(fp, "@%s: ",
Stephen Hemmingerd04bc302012-08-01 15:23:49 -0700143 if_indextoname(iflink, b1));
Stephen Hemminger1465db12012-10-29 17:52:45 -0700144 } else
Stephen Hemmingerd04bc302012-08-01 15:23:49 -0700145 fprintf(fp, ": ");
Stephen Hemmingerd04bc302012-08-01 15:23:49 -0700146
147 print_link_flags(fp, ifi->ifi_flags);
148
149 if (tb[IFLA_MTU])
Stephen Hemminger1465db12012-10-29 17:52:45 -0700150 fprintf(fp, "mtu %u ", rta_getattr_u32(tb[IFLA_MTU]));
Stephen Hemmingerd04bc302012-08-01 15:23:49 -0700151
Stephen Hemminger1465db12012-10-29 17:52:45 -0700152 if (tb[IFLA_MASTER])
Stephen Hemminger38df7ac2012-10-29 17:48:55 -0700153 fprintf(fp, "master %s ",
Stephen Hemminger1465db12012-10-29 17:52:45 -0700154 if_indextoname(rta_getattr_u32(tb[IFLA_MASTER]), b1));
Stephen Hemmingerd04bc302012-08-01 15:23:49 -0700155
156 if (tb[IFLA_PROTINFO]) {
Vlad Yasevichb1b7ce02013-03-15 10:01:28 -0700157 if (tb[IFLA_PROTINFO]->rta_type & NLA_F_NESTED) {
158 struct rtattr *prtb[IFLA_BRPORT_MAX+1];
159
160 parse_rtattr_nested(prtb, IFLA_BRPORT_MAX,
161 tb[IFLA_PROTINFO]);
162
163 if (prtb[IFLA_BRPORT_STATE])
164 print_portstate(fp,
165 rta_getattr_u8(prtb[IFLA_BRPORT_STATE]));
166 if (prtb[IFLA_BRPORT_PRIORITY])
167 fprintf(fp, "priority %hu ",
168 rta_getattr_u16(prtb[IFLA_BRPORT_PRIORITY]));
169 if (prtb[IFLA_BRPORT_COST])
170 fprintf(fp, "cost %u ",
171 rta_getattr_u32(prtb[IFLA_BRPORT_COST]));
Stephen Hemminger4cd20da2013-03-16 10:18:50 -0700172
173 if (show_details) {
174 fprintf(fp, "%s ", _SL_);
175
176 if (prtb[IFLA_BRPORT_MODE])
177 print_onoff(fp, "hairpin",
178 rta_getattr_u8(prtb[IFLA_BRPORT_MODE]));
179 if (prtb[IFLA_BRPORT_GUARD])
180 print_onoff(fp, "guard",
181 rta_getattr_u8(prtb[IFLA_BRPORT_GUARD]));
182 if (prtb[IFLA_BRPORT_PROTECT])
183 print_onoff(fp, "root_block",
184 rta_getattr_u8(prtb[IFLA_BRPORT_PROTECT]));
185 if (prtb[IFLA_BRPORT_FAST_LEAVE])
186 print_onoff(fp, "fastleave",
187 rta_getattr_u8(prtb[IFLA_BRPORT_FAST_LEAVE]));
Vlad Yasevichf0f4ab62014-05-21 09:53:43 -0400188 if (prtb[IFLA_BRPORT_LEARNING])
189 print_onoff(fp, "learning",
190 rta_getattr_u8(prtb[IFLA_BRPORT_LEARNING]));
Scott Feldman674bb432014-12-29 12:20:07 -0800191 if (prtb[IFLA_BRPORT_LEARNING_SYNC])
192 print_onoff(fp, "learning_sync",
193 rta_getattr_u8(prtb[IFLA_BRPORT_LEARNING_SYNC]));
Vlad Yasevichf0f4ab62014-05-21 09:53:43 -0400194 if (prtb[IFLA_BRPORT_UNICAST_FLOOD])
195 print_onoff(fp, "flood",
196 rta_getattr_u8(prtb[IFLA_BRPORT_UNICAST_FLOOD]));
Stephen Hemminger4cd20da2013-03-16 10:18:50 -0700197 }
Vlad Yasevichb1b7ce02013-03-15 10:01:28 -0700198 } else
199 print_portstate(fp, rta_getattr_u8(tb[IFLA_PROTINFO]));
Stephen Hemmingerd04bc302012-08-01 15:23:49 -0700200 }
201
Vlad Yasevichb1b7ce02013-03-15 10:01:28 -0700202 if (tb[IFLA_AF_SPEC]) {
203 /* This is reported by HW devices that have some bridging
204 * capabilities.
205 */
206 struct rtattr *aftb[IFLA_BRIDGE_MAX+1];
207
208 parse_rtattr_nested(aftb, IFLA_BRIDGE_MAX, tb[IFLA_AF_SPEC]);
209
John Fastabenda40d0822013-05-29 06:20:53 +0000210 if (aftb[IFLA_BRIDGE_MODE])
211 print_hwmode(fp, rta_getattr_u16(aftb[IFLA_BRIDGE_MODE]));
Vlad Yasevichb1b7ce02013-03-15 10:01:28 -0700212 }
Stephen Hemmingerd04bc302012-08-01 15:23:49 -0700213
214 fprintf(fp, "\n");
215 fflush(fp);
216 return 0;
217}
Vlad Yasevich64108902013-03-15 10:01:28 -0700218
219static void usage(void)
220{
221 fprintf(stderr, "Usage: bridge link set dev DEV [ cost COST ] [ priority PRIO ] [ state STATE ]\n");
222 fprintf(stderr, " [ guard {on | off} ]\n");
223 fprintf(stderr, " [ hairpin {on | off} ] \n");
224 fprintf(stderr, " [ fastleave {on | off} ]\n");
225 fprintf(stderr, " [ root_block {on | off} ]\n");
Vlad Yasevichf0f4ab62014-05-21 09:53:43 -0400226 fprintf(stderr, " [ learning {on | off} ]\n");
Scott Feldman674bb432014-12-29 12:20:07 -0800227 fprintf(stderr, " [ learning_sync {on | off} ]\n");
Vlad Yasevichf0f4ab62014-05-21 09:53:43 -0400228 fprintf(stderr, " [ flood {on | off} ]\n");
Vlad Yasevich64108902013-03-15 10:01:28 -0700229 fprintf(stderr, " [ hwmode {vepa | veb} ]\n");
230 fprintf(stderr, " bridge link show [dev DEV]\n");
231 exit(-1);
232}
233
234static bool on_off(char *arg, __s8 *attr, char *val)
235{
236 if (strcmp(val, "on") == 0)
237 *attr = 1;
238 else if (strcmp(val, "off") == 0)
239 *attr = 0;
240 else {
241 fprintf(stderr,
242 "Error: argument of \"%s\" must be \"on\" or \"off\"\n",
243 arg);
244 return false;
245 }
246
247 return true;
248}
249
250static int brlink_modify(int argc, char **argv)
251{
252 struct {
253 struct nlmsghdr n;
254 struct ifinfomsg ifm;
255 char buf[512];
256 } req;
257 char *d = NULL;
Vlad Yasevichf0f4ab62014-05-21 09:53:43 -0400258 __s8 learning = -1;
Scott Feldman674bb432014-12-29 12:20:07 -0800259 __s8 learning_sync = -1;
Vlad Yasevichf0f4ab62014-05-21 09:53:43 -0400260 __s8 flood = -1;
Vlad Yasevich64108902013-03-15 10:01:28 -0700261 __s8 hairpin = -1;
262 __s8 bpdu_guard = -1;
263 __s8 fast_leave = -1;
Vlad Yasevichb1b7ce02013-03-15 10:01:28 -0700264 __s8 root_block = -1;
Vlad Yasevich64108902013-03-15 10:01:28 -0700265 __u32 cost = 0;
266 __s16 priority = -1;
267 __s8 state = -1;
268 __s16 mode = -1;
Roopa Prabhu6fdb4652014-12-06 00:21:01 -0800269 __u16 flags = 0;
Vlad Yasevich64108902013-03-15 10:01:28 -0700270 struct rtattr *nest;
271
272 memset(&req, 0, sizeof(req));
273
274 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
275 req.n.nlmsg_flags = NLM_F_REQUEST;
276 req.n.nlmsg_type = RTM_SETLINK;
277 req.ifm.ifi_family = PF_BRIDGE;
278
279 while (argc > 0) {
280 if (strcmp(*argv, "dev") == 0) {
281 NEXT_ARG();
282 d = *argv;
283 } else if (strcmp(*argv, "guard") == 0) {
284 NEXT_ARG();
285 if (!on_off("guard", &bpdu_guard, *argv))
286 exit(-1);
287 } else if (strcmp(*argv, "hairpin") == 0) {
288 NEXT_ARG();
289 if (!on_off("hairping", &hairpin, *argv))
290 exit(-1);
291 } else if (strcmp(*argv, "fastleave") == 0) {
292 NEXT_ARG();
293 if (!on_off("fastleave", &fast_leave, *argv))
294 exit(-1);
Vlad Yasevichb1b7ce02013-03-15 10:01:28 -0700295 } else if (strcmp(*argv, "root_block") == 0) {
296 NEXT_ARG();
297 if (!on_off("root_block", &root_block, *argv))
298 exit(-1);
Vlad Yasevichf0f4ab62014-05-21 09:53:43 -0400299 } else if (strcmp(*argv, "learning") == 0) {
300 NEXT_ARG();
301 if (!on_off("learning", &learning, *argv))
302 exit(-1);
Scott Feldman674bb432014-12-29 12:20:07 -0800303 } else if (strcmp(*argv, "learning_sync") == 0) {
304 NEXT_ARG();
305 if (!on_off("learning_sync", &learning_sync, *argv))
306 exit(-1);
Vlad Yasevichf0f4ab62014-05-21 09:53:43 -0400307 } else if (strcmp(*argv, "flood") == 0) {
308 NEXT_ARG();
309 if (!on_off("flood", &flood, *argv))
310 exit(-1);
John Fastabenda40d0822013-05-29 06:20:53 +0000311 } else if (strcmp(*argv, "cost") == 0) {
Vlad Yasevich64108902013-03-15 10:01:28 -0700312 NEXT_ARG();
313 cost = atoi(*argv);
John Fastabenda40d0822013-05-29 06:20:53 +0000314 } else if (strcmp(*argv, "priority") == 0) {
Vlad Yasevich64108902013-03-15 10:01:28 -0700315 NEXT_ARG();
316 priority = atoi(*argv);
John Fastabenda40d0822013-05-29 06:20:53 +0000317 } else if (strcmp(*argv, "state") == 0) {
Vlad Yasevich64108902013-03-15 10:01:28 -0700318 NEXT_ARG();
Alex Pilon6b8c8712015-02-19 14:27:46 -0500319 char *endptr;
320 size_t nstates = sizeof(port_states) / sizeof(*port_states);
321 state = strtol(*argv, &endptr, 10);
322 if (!(**argv != '\0' && *endptr == '\0')) {
323 for (state = 0; state < nstates; state++)
324 if (strcmp(port_states[state], *argv) == 0)
325 break;
326 if (state == nstates) {
327 fprintf(stderr,
328 "Error: invalid STP port state\n");
329 exit(-1);
330 }
331 }
John Fastabenda40d0822013-05-29 06:20:53 +0000332 } else if (strcmp(*argv, "hwmode") == 0) {
Vlad Yasevich64108902013-03-15 10:01:28 -0700333 NEXT_ARG();
John Fastabenda40d0822013-05-29 06:20:53 +0000334 flags = BRIDGE_FLAGS_SELF;
Vlad Yasevich64108902013-03-15 10:01:28 -0700335 if (strcmp(*argv, "vepa") == 0)
336 mode = BRIDGE_MODE_VEPA;
337 else if (strcmp(*argv, "veb") == 0)
338 mode = BRIDGE_MODE_VEB;
339 else {
340 fprintf(stderr,
341 "Mode argument must be \"vepa\" or "
342 "\"veb\".\n");
343 exit(-1);
344 }
Roopa Prabhu6fdb4652014-12-06 00:21:01 -0800345 } else if (strcmp(*argv, "self") == 0) {
346 flags = BRIDGE_FLAGS_SELF;
Vlad Yasevich64108902013-03-15 10:01:28 -0700347 } else {
348 usage();
349 }
350 argc--; argv++;
351 }
352 if (d == NULL) {
353 fprintf(stderr, "Device is a required argument.\n");
354 exit(-1);
355 }
356
357
358 req.ifm.ifi_index = ll_name_to_index(d);
359 if (req.ifm.ifi_index == 0) {
360 fprintf(stderr, "Cannot find bridge device \"%s\"\n", d);
361 exit(-1);
362 }
363
364 /* Nested PROTINFO attribute. Contains: port flags, cost, priority and
365 * state.
366 */
367 nest = addattr_nest(&req.n, sizeof(req),
368 IFLA_PROTINFO | NLA_F_NESTED);
369 /* Flags first */
370 if (bpdu_guard >= 0)
371 addattr8(&req.n, sizeof(req), IFLA_BRPORT_GUARD, bpdu_guard);
372 if (hairpin >= 0)
373 addattr8(&req.n, sizeof(req), IFLA_BRPORT_MODE, hairpin);
374 if (fast_leave >= 0)
375 addattr8(&req.n, sizeof(req), IFLA_BRPORT_FAST_LEAVE,
376 fast_leave);
Vlad Yasevichb1b7ce02013-03-15 10:01:28 -0700377 if (root_block >= 0)
378 addattr8(&req.n, sizeof(req), IFLA_BRPORT_PROTECT, root_block);
Vlad Yasevichf0f4ab62014-05-21 09:53:43 -0400379 if (flood >= 0)
380 addattr8(&req.n, sizeof(req), IFLA_BRPORT_UNICAST_FLOOD, flood);
381 if (learning >= 0)
382 addattr8(&req.n, sizeof(req), IFLA_BRPORT_LEARNING, learning);
Scott Feldman674bb432014-12-29 12:20:07 -0800383 if (learning_sync >= 0)
384 addattr8(&req.n, sizeof(req), IFLA_BRPORT_LEARNING_SYNC,
385 learning_sync);
Vlad Yasevich64108902013-03-15 10:01:28 -0700386
387 if (cost > 0)
388 addattr32(&req.n, sizeof(req), IFLA_BRPORT_COST, cost);
389
390 if (priority >= 0)
391 addattr16(&req.n, sizeof(req), IFLA_BRPORT_PRIORITY, priority);
392
393 if (state >= 0)
394 addattr8(&req.n, sizeof(req), IFLA_BRPORT_STATE, state);
395
396 addattr_nest_end(&req.n, nest);
397
Roopa Prabhu6fdb4652014-12-06 00:21:01 -0800398 /* IFLA_AF_SPEC nested attribute. Contains IFLA_BRIDGE_FLAGS that
399 * designates master or self operation and IFLA_BRIDGE_MODE
400 * for hw 'vepa' or 'veb' operation modes. The hwmodes are
401 * only valid in 'self' mode on some devices so far.
Vlad Yasevich64108902013-03-15 10:01:28 -0700402 */
Roopa Prabhu6fdb4652014-12-06 00:21:01 -0800403 if (mode >= 0 || flags > 0) {
Vlad Yasevich64108902013-03-15 10:01:28 -0700404 nest = addattr_nest(&req.n, sizeof(req), IFLA_AF_SPEC);
405
Roopa Prabhu6fdb4652014-12-06 00:21:01 -0800406 if (flags > 0)
407 addattr16(&req.n, sizeof(req), IFLA_BRIDGE_FLAGS, flags);
Vlad Yasevich64108902013-03-15 10:01:28 -0700408
409 if (mode >= 0)
410 addattr16(&req.n, sizeof(req), IFLA_BRIDGE_MODE, mode);
411
412 addattr_nest_end(&req.n, nest);
413 }
414
415 if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0)
416 exit(2);
417
418 return 0;
419}
420
421static int brlink_show(int argc, char **argv)
422{
423 char *filter_dev = NULL;
424
425 while (argc > 0) {
426 if (strcmp(*argv, "dev") == 0) {
427 NEXT_ARG();
428 if (filter_dev)
429 duparg("dev", *argv);
430 filter_dev = *argv;
431 }
432 argc--; argv++;
433 }
434
435 if (filter_dev) {
436 if ((filter_index = ll_name_to_index(filter_dev)) == 0) {
437 fprintf(stderr, "Cannot find device \"%s\"\n",
438 filter_dev);
439 return -1;
440 }
441 }
442
443 if (rtnl_wilddump_request(&rth, PF_BRIDGE, RTM_GETLINK) < 0) {
444 perror("Cannon send dump request");
445 exit(1);
446 }
447
448 if (rtnl_dump_filter(&rth, print_linkinfo, stdout) < 0) {
449 fprintf(stderr, "Dump terminated\n");
450 exit(1);
451 }
452 return 0;
453}
454
455int do_link(int argc, char **argv)
456{
457 ll_init_map(&rth);
458 if (argc > 0) {
459 if (matches(*argv, "set") == 0 ||
460 matches(*argv, "change") == 0)
461 return brlink_modify(argc-1, argv+1);
462 if (matches(*argv, "show") == 0 ||
463 matches(*argv, "lst") == 0 ||
464 matches(*argv, "list") == 0)
465 return brlink_show(argc-1, argv+1);
466 if (matches(*argv, "help") == 0)
467 usage();
468 } else
469 return brlink_show(0, NULL);
470
471 fprintf(stderr, "Command \"%s\" is unknown, try \"bridge link help\".\n", *argv);
472 exit(-1);
473}