blob: 207b069aad612df4d127c38fe5cac0146470cc31 [file] [log] [blame]
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Small implementation of brctl for busybox.
4 *
Bernhard Reutner-Fischer6c4dade2008-09-25 12:13:34 +00005 * Copyright (C) 2008 by Bernhard Reutner-Fischer
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +00006 *
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +00007 * Some helper functions from bridge-utils are
8 * Copyright (C) 2000 Lennert Buytenhek
9 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020010 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +000011 */
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000012/* This applet currently uses only the ioctl interface and no sysfs at all.
13 * At the time of this writing this was considered a feature.
14 */
Pere Orga5bc8c002011-04-11 03:29:49 +020015
16//usage:#define brctl_trivial_usage
17//usage: "COMMAND [BRIDGE [INTERFACE]]"
18//usage:#define brctl_full_usage "\n\n"
19//usage: "Manage ethernet bridges\n"
20//usage: "\nCommands:"
21//usage: IF_FEATURE_BRCTL_SHOW(
22//usage: "\n show Show a list of bridges"
23//usage: )
24//usage: "\n addbr BRIDGE Create BRIDGE"
25//usage: "\n delbr BRIDGE Delete BRIDGE"
26//usage: "\n addif BRIDGE IFACE Add IFACE to BRIDGE"
27//usage: "\n delif BRIDGE IFACE Delete IFACE from BRIDGE"
28//usage: IF_FEATURE_BRCTL_FANCY(
29//usage: "\n setageing BRIDGE TIME Set ageing time"
30//usage: "\n setfd BRIDGE TIME Set bridge forward delay"
31//usage: "\n sethello BRIDGE TIME Set hello time"
32//usage: "\n setmaxage BRIDGE TIME Set max message age"
33//usage: "\n setpathcost BRIDGE COST Set path cost"
34//usage: "\n setportprio BRIDGE PRIO Set port priority"
35//usage: "\n setbridgeprio BRIDGE PRIO Set bridge priority"
36//usage: "\n stp BRIDGE [1/yes/on|0/no/off] STP on/off"
37//usage: )
38
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +000039#include "libbb.h"
40#include <linux/sockios.h>
41#include <net/if.h>
42
Denis Vlasenko802cab12009-01-31 20:08:21 +000043#ifndef SIOCBRADDBR
44# define SIOCBRADDBR BRCTL_ADD_BRIDGE
45#endif
46#ifndef SIOCBRDELBR
47# define SIOCBRDELBR BRCTL_DEL_BRIDGE
48#endif
49#ifndef SIOCBRADDIF
50# define SIOCBRADDIF BRCTL_ADD_IF
51#endif
52#ifndef SIOCBRDELIF
53# define SIOCBRDELIF BRCTL_DEL_IF
54#endif
55
56
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +000057/* Maximum number of ports supported per bridge interface. */
58#ifndef MAX_PORTS
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010059# define MAX_PORTS 32
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +000060#endif
61
62/* Use internal number parsing and not the "exact" conversion. */
63/* #define BRCTL_USE_INTERNAL 0 */ /* use exact conversion */
64#define BRCTL_USE_INTERNAL 1
65
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000066#if ENABLE_FEATURE_BRCTL_FANCY
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010067# include <linux/if_bridge.h>
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000068
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000069/* FIXME: These 4 funcs are not really clean and could be improved */
Denys Vlasenko49b8e722012-06-10 14:16:16 +020070static ALWAYS_INLINE void bb_strtotimeval(struct timeval *tv,
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000071 const char *time_str)
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000072{
73 double secs;
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010074# if BRCTL_USE_INTERNAL
Maciek Borzecki46abfc02010-03-16 12:41:29 +010075 char *endptr;
76 secs = /*bb_*/strtod(time_str, &endptr);
77 if (endptr == time_str)
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010078# else
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000079 if (sscanf(time_str, "%lf", &secs) != 1)
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010080# endif
81 bb_error_msg_and_die(bb_msg_invalid_arg, time_str, "timespec");
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000082 tv->tv_sec = secs;
83 tv->tv_usec = 1000000 * (secs - tv->tv_sec);
84}
85
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010086static ALWAYS_INLINE unsigned long tv_to_jiffies(const struct timeval *tv)
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000087{
88 unsigned long long jif;
89
90 jif = 1000000ULL * tv->tv_sec + tv->tv_usec;
91
92 return jif/10000;
93}
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000094# if 0
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010095static void jiffies_to_tv(struct timeval *tv, unsigned long jiffies)
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000096{
97 unsigned long long tvusec;
98
99 tvusec = 10000ULL*jiffies;
100 tv->tv_sec = tvusec/1000000;
101 tv->tv_usec = tvusec - 1000000 * tv->tv_sec;
102}
103# endif
104static unsigned long str_to_jiffies(const char *time_str)
105{
106 struct timeval tv;
Denys Vlasenko49b8e722012-06-10 14:16:16 +0200107 bb_strtotimeval(&tv, time_str);
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +0100108 return tv_to_jiffies(&tv);
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000109}
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000110
111static void arm_ioctl(unsigned long *args,
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000112 unsigned long arg0, unsigned long arg1, unsigned long arg2)
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000113{
114 args[0] = arg0;
115 args[1] = arg1;
116 args[2] = arg2;
117 args[3] = 0;
118}
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000119#endif
120
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000121
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000122int brctl_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000123int brctl_main(int argc UNUSED_PARAM, char **argv)
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000124{
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000125 static const char keywords[] ALIGN1 =
126 "addbr\0" "delbr\0" "addif\0" "delif\0"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000127 IF_FEATURE_BRCTL_FANCY(
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000128 "stp\0"
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000129 "setageing\0" "setfd\0" "sethello\0" "setmaxage\0"
130 "setpathcost\0" "setportprio\0" "setbridgeprio\0"
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000131 )
Nicolas Thillf47ce072012-09-25 14:06:01 +0200132 IF_FEATURE_BRCTL_SHOW("show\0");
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000133
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000134 enum { ARG_addbr = 0, ARG_delbr, ARG_addif, ARG_delif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000135 IF_FEATURE_BRCTL_FANCY(,
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100136 ARG_stp,
137 ARG_setageing, ARG_setfd, ARG_sethello, ARG_setmaxage,
138 ARG_setpathcost, ARG_setportprio, ARG_setbridgeprio
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000139 )
Nicolas Thillf47ce072012-09-25 14:06:01 +0200140 IF_FEATURE_BRCTL_SHOW(, ARG_show)
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000141 };
142
143 int fd;
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000144 smallint key;
145 struct ifreq ifr;
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000146 char *br, *brif;
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000147
148 argv++;
149 while (*argv) {
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000150#if ENABLE_FEATURE_BRCTL_FANCY
151 int ifidx[MAX_PORTS];
152 unsigned long args[4];
153 ifr.ifr_data = (char *) &args;
154#endif
155
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000156 key = index_in_strings(keywords, *argv);
157 if (key == -1) /* no match found in keywords array, bail out. */
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000158 bb_error_msg_and_die(bb_msg_invalid_arg, *argv, applet_name);
159 argv++;
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000160 fd = xsocket(AF_INET, SOCK_STREAM, 0);
161
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000162#if ENABLE_FEATURE_BRCTL_SHOW
163 if (key == ARG_show) { /* show */
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000164 char brname[IFNAMSIZ];
165 int bridx[MAX_PORTS];
166 int i, num;
167 arm_ioctl(args, BRCTL_GET_BRIDGES,
168 (unsigned long) bridx, MAX_PORTS);
169 num = xioctl(fd, SIOCGIFBR, args);
170 printf("bridge name\tbridge id\t\tSTP enabled\tinterfaces\n");
171 for (i = 0; i < num; i++) {
172 char ifname[IFNAMSIZ];
173 int j, tabs;
174 struct __bridge_info bi;
175 unsigned char *x;
176
177 if (!if_indextoname(bridx[i], brname))
178 bb_perror_msg_and_die("can't get bridge name for index %d", i);
Denis Vlasenko360d9662008-12-02 18:18:50 +0000179 strncpy_IFNAMSIZ(ifr.ifr_name, brname);
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000180
181 arm_ioctl(args, BRCTL_GET_BRIDGE_INFO,
182 (unsigned long) &bi, 0);
183 xioctl(fd, SIOCDEVPRIVATE, &ifr);
184 printf("%s\t\t", brname);
185
186 /* print bridge id */
187 x = (unsigned char *) &bi.bridge_id;
188 for (j = 0; j < 8; j++) {
189 printf("%.2x", x[j]);
190 if (j == 1)
191 bb_putchar('.');
192 }
193 printf(bi.stp_enabled ? "\tyes" : "\tno");
194
195 /* print interface list */
196 arm_ioctl(args, BRCTL_GET_PORT_LIST,
197 (unsigned long) ifidx, MAX_PORTS);
198 xioctl(fd, SIOCDEVPRIVATE, &ifr);
199 tabs = 0;
200 for (j = 0; j < MAX_PORTS; j++) {
201 if (!ifidx[j])
202 continue;
203 if (!if_indextoname(ifidx[j], ifname))
204 bb_perror_msg_and_die("can't get interface name for index %d", j);
205 if (tabs)
206 printf("\t\t\t\t\t");
207 else
208 tabs = 1;
209 printf("\t\t%s\n", ifname);
210 }
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200211 if (!tabs) /* bridge has no interfaces */
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000212 bb_putchar('\n');
213 }
214 goto done;
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000215 }
216#endif
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000217
218 if (!*argv) /* all but 'show' need at least one argument */
219 bb_show_usage();
220
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000221 br = *argv++;
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000222
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000223 if (key == ARG_addbr || key == ARG_delbr) { /* addbr or delbr */
224 ioctl_or_perror_and_die(fd,
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000225 key == ARG_addbr ? SIOCBRADDBR : SIOCBRDELBR,
226 br, "bridge %s", br);
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000227 goto done;
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000228 }
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000229
Bernhard Reutner-Fischer0c0f1762010-03-17 11:23:04 +0100230 if (!*argv) /* all but 'addbr/delbr' need at least two arguments */
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000231 bb_show_usage();
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000232
Denis Vlasenko360d9662008-12-02 18:18:50 +0000233 strncpy_IFNAMSIZ(ifr.ifr_name, br);
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000234 if (key == ARG_addif || key == ARG_delif) { /* addif or delif */
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000235 brif = *argv;
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000236 ifr.ifr_ifindex = if_nametoindex(brif);
237 if (!ifr.ifr_ifindex) {
238 bb_perror_msg_and_die("iface %s", brif);
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000239 }
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000240 ioctl_or_perror_and_die(fd,
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000241 key == ARG_addif ? SIOCBRADDIF : SIOCBRDELIF,
242 &ifr, "bridge %s", br);
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000243 goto done_next_argv;
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000244 }
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000245#if ENABLE_FEATURE_BRCTL_FANCY
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000246 if (key == ARG_stp) { /* stp */
Denys Vlasenko8a659f62010-04-03 00:52:16 +0200247 static const char no_yes[] ALIGN1 =
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +0100248 "0\0" "off\0" "n\0" "no\0" /* 0 .. 3 */
249 "1\0" "on\0" "y\0" "yes\0"; /* 4 .. 7 */
Denys Vlasenko8a659f62010-04-03 00:52:16 +0200250 int onoff = index_in_strings(no_yes, *argv);
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +0100251 if (onoff < 0)
252 bb_error_msg_and_die(bb_msg_invalid_arg, *argv, applet_name);
253 onoff = (unsigned)onoff / 4;
254 arm_ioctl(args, BRCTL_SET_BRIDGE_STP_STATE, onoff, 0);
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000255 goto fire;
256 }
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000257 if ((unsigned)(key - ARG_setageing) < 4) { /* time related ops */
258 static const uint8_t ops[] ALIGN1 = {
259 BRCTL_SET_AGEING_TIME, /* ARG_setageing */
260 BRCTL_SET_BRIDGE_FORWARD_DELAY, /* ARG_setfd */
261 BRCTL_SET_BRIDGE_HELLO_TIME, /* ARG_sethello */
262 BRCTL_SET_BRIDGE_MAX_AGE /* ARG_setmaxage */
263 };
264 arm_ioctl(args, ops[key - ARG_setageing], str_to_jiffies(*argv), 0);
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000265 goto fire;
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000266 }
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000267 if (key == ARG_setpathcost
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000268 || key == ARG_setportprio
269 || key == ARG_setbridgeprio
270 ) {
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000271 static const uint8_t ops[] ALIGN1 = {
272 BRCTL_SET_PATH_COST, /* ARG_setpathcost */
273 BRCTL_SET_PORT_PRIORITY, /* ARG_setportprio */
274 BRCTL_SET_BRIDGE_PRIORITY /* ARG_setbridgeprio */
275 };
276 int port = -1;
277 unsigned arg1, arg2;
278
279 if (key != ARG_setbridgeprio) {
280 /* get portnum */
281 unsigned i;
282
283 port = if_nametoindex(*argv++);
284 if (!port)
285 bb_error_msg_and_die(bb_msg_invalid_arg, *argv, "port");
286 memset(ifidx, 0, sizeof ifidx);
287 arm_ioctl(args, BRCTL_GET_PORT_LIST, (unsigned long)ifidx,
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100288 MAX_PORTS);
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000289 xioctl(fd, SIOCDEVPRIVATE, &ifr);
290 for (i = 0; i < MAX_PORTS; i++) {
291 if (ifidx[i] == port) {
292 port = i;
293 break;
294 }
295 }
296 }
297 arg1 = port;
Denys Vlasenko77832482010-08-12 14:14:45 +0200298 arg2 = xatoi_positive(*argv);
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000299 if (key == ARG_setbridgeprio) {
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000300 arg1 = arg2;
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000301 arg2 = 0;
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000302 }
303 arm_ioctl(args, ops[key - ARG_setpathcost], arg1, arg2);
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000304 }
305 fire:
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000306 /* Execute the previously set command */
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000307 xioctl(fd, SIOCDEVPRIVATE, &ifr);
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000308#endif
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000309 done_next_argv:
310 argv++;
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000311 done:
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000312 close(fd);
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000313 }
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000314
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000315 return EXIT_SUCCESS;
316}