blob: 0defce46a4610deb7f6b0d2e325fb8a8307f25c8 [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 */
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +000015#include "libbb.h"
16#include <linux/sockios.h>
17#include <net/if.h>
18
Denis Vlasenko802cab12009-01-31 20:08:21 +000019#ifndef SIOCBRADDBR
20# define SIOCBRADDBR BRCTL_ADD_BRIDGE
21#endif
22#ifndef SIOCBRDELBR
23# define SIOCBRDELBR BRCTL_DEL_BRIDGE
24#endif
25#ifndef SIOCBRADDIF
26# define SIOCBRADDIF BRCTL_ADD_IF
27#endif
28#ifndef SIOCBRDELIF
29# define SIOCBRDELIF BRCTL_DEL_IF
30#endif
31
32
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +000033/* Maximum number of ports supported per bridge interface. */
34#ifndef MAX_PORTS
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010035# define MAX_PORTS 32
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +000036#endif
37
38/* Use internal number parsing and not the "exact" conversion. */
39/* #define BRCTL_USE_INTERNAL 0 */ /* use exact conversion */
40#define BRCTL_USE_INTERNAL 1
41
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000042#if ENABLE_FEATURE_BRCTL_FANCY
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010043# include <linux/if_bridge.h>
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000044
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000045/* FIXME: These 4 funcs are not really clean and could be improved */
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000046static ALWAYS_INLINE void strtotimeval(struct timeval *tv,
47 const char *time_str)
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000048{
49 double secs;
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010050# if BRCTL_USE_INTERNAL
Maciek Borzecki46abfc02010-03-16 12:41:29 +010051 char *endptr;
52 secs = /*bb_*/strtod(time_str, &endptr);
53 if (endptr == time_str)
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010054# else
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000055 if (sscanf(time_str, "%lf", &secs) != 1)
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010056# endif
57 bb_error_msg_and_die(bb_msg_invalid_arg, time_str, "timespec");
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000058 tv->tv_sec = secs;
59 tv->tv_usec = 1000000 * (secs - tv->tv_sec);
60}
61
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010062static ALWAYS_INLINE unsigned long tv_to_jiffies(const struct timeval *tv)
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000063{
64 unsigned long long jif;
65
66 jif = 1000000ULL * tv->tv_sec + tv->tv_usec;
67
68 return jif/10000;
69}
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000070# if 0
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010071static void jiffies_to_tv(struct timeval *tv, unsigned long jiffies)
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000072{
73 unsigned long long tvusec;
74
75 tvusec = 10000ULL*jiffies;
76 tv->tv_sec = tvusec/1000000;
77 tv->tv_usec = tvusec - 1000000 * tv->tv_sec;
78}
79# endif
80static unsigned long str_to_jiffies(const char *time_str)
81{
82 struct timeval tv;
83 strtotimeval(&tv, time_str);
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +010084 return tv_to_jiffies(&tv);
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000085}
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +000086
87static void arm_ioctl(unsigned long *args,
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000088 unsigned long arg0, unsigned long arg1, unsigned long arg2)
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +000089{
90 args[0] = arg0;
91 args[1] = arg1;
92 args[2] = arg2;
93 args[3] = 0;
94}
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +000095#endif
96
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000097
Denis Vlasenkod0a071a2008-03-17 09:33:45 +000098int brctl_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000099int brctl_main(int argc UNUSED_PARAM, char **argv)
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000100{
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000101 static const char keywords[] ALIGN1 =
102 "addbr\0" "delbr\0" "addif\0" "delif\0"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000103 IF_FEATURE_BRCTL_FANCY(
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000104 "stp\0"
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000105 "setageing\0" "setfd\0" "sethello\0" "setmaxage\0"
106 "setpathcost\0" "setportprio\0" "setbridgeprio\0"
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000107 )
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000108 IF_FEATURE_BRCTL_SHOW("showmacs\0" "show\0");
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000109
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000110 enum { ARG_addbr = 0, ARG_delbr, ARG_addif, ARG_delif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000111 IF_FEATURE_BRCTL_FANCY(,
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000112 ARG_stp,
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000113 ARG_setageing, ARG_setfd, ARG_sethello, ARG_setmaxage,
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000114 ARG_setpathcost, ARG_setportprio, ARG_setbridgeprio
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000115 )
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000116 IF_FEATURE_BRCTL_SHOW(, ARG_showmacs, ARG_show)
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000117 };
118
119 int fd;
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000120 smallint key;
121 struct ifreq ifr;
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000122 char *br, *brif;
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000123
124 argv++;
125 while (*argv) {
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000126#if ENABLE_FEATURE_BRCTL_FANCY
127 int ifidx[MAX_PORTS];
128 unsigned long args[4];
129 ifr.ifr_data = (char *) &args;
130#endif
131
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000132 key = index_in_strings(keywords, *argv);
133 if (key == -1) /* no match found in keywords array, bail out. */
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000134 bb_error_msg_and_die(bb_msg_invalid_arg, *argv, applet_name);
135 argv++;
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000136 fd = xsocket(AF_INET, SOCK_STREAM, 0);
137
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000138#if ENABLE_FEATURE_BRCTL_SHOW
139 if (key == ARG_show) { /* show */
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000140 char brname[IFNAMSIZ];
141 int bridx[MAX_PORTS];
142 int i, num;
143 arm_ioctl(args, BRCTL_GET_BRIDGES,
144 (unsigned long) bridx, MAX_PORTS);
145 num = xioctl(fd, SIOCGIFBR, args);
146 printf("bridge name\tbridge id\t\tSTP enabled\tinterfaces\n");
147 for (i = 0; i < num; i++) {
148 char ifname[IFNAMSIZ];
149 int j, tabs;
150 struct __bridge_info bi;
151 unsigned char *x;
152
153 if (!if_indextoname(bridx[i], brname))
154 bb_perror_msg_and_die("can't get bridge name for index %d", i);
Denis Vlasenko360d9662008-12-02 18:18:50 +0000155 strncpy_IFNAMSIZ(ifr.ifr_name, brname);
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000156
157 arm_ioctl(args, BRCTL_GET_BRIDGE_INFO,
158 (unsigned long) &bi, 0);
159 xioctl(fd, SIOCDEVPRIVATE, &ifr);
160 printf("%s\t\t", brname);
161
162 /* print bridge id */
163 x = (unsigned char *) &bi.bridge_id;
164 for (j = 0; j < 8; j++) {
165 printf("%.2x", x[j]);
166 if (j == 1)
167 bb_putchar('.');
168 }
169 printf(bi.stp_enabled ? "\tyes" : "\tno");
170
171 /* print interface list */
172 arm_ioctl(args, BRCTL_GET_PORT_LIST,
173 (unsigned long) ifidx, MAX_PORTS);
174 xioctl(fd, SIOCDEVPRIVATE, &ifr);
175 tabs = 0;
176 for (j = 0; j < MAX_PORTS; j++) {
177 if (!ifidx[j])
178 continue;
179 if (!if_indextoname(ifidx[j], ifname))
180 bb_perror_msg_and_die("can't get interface name for index %d", j);
181 if (tabs)
182 printf("\t\t\t\t\t");
183 else
184 tabs = 1;
185 printf("\t\t%s\n", ifname);
186 }
187 if (!tabs) /* bridge has no interfaces */
188 bb_putchar('\n');
189 }
190 goto done;
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000191 }
192#endif
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000193
194 if (!*argv) /* all but 'show' need at least one argument */
195 bb_show_usage();
196
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000197 br = *argv++;
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000198
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000199 if (key == ARG_addbr || key == ARG_delbr) { /* addbr or delbr */
200 ioctl_or_perror_and_die(fd,
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000201 key == ARG_addbr ? SIOCBRADDBR : SIOCBRDELBR,
202 br, "bridge %s", br);
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000203 goto done;
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000204 }
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000205
Bernhard Reutner-Fischer0c0f1762010-03-17 11:23:04 +0100206 if (!*argv) /* all but 'addbr/delbr' need at least two arguments */
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000207 bb_show_usage();
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000208
Denis Vlasenko360d9662008-12-02 18:18:50 +0000209 strncpy_IFNAMSIZ(ifr.ifr_name, br);
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000210 if (key == ARG_addif || key == ARG_delif) { /* addif or delif */
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000211 brif = *argv;
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000212 ifr.ifr_ifindex = if_nametoindex(brif);
213 if (!ifr.ifr_ifindex) {
214 bb_perror_msg_and_die("iface %s", brif);
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000215 }
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000216 ioctl_or_perror_and_die(fd,
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000217 key == ARG_addif ? SIOCBRADDIF : SIOCBRDELIF,
218 &ifr, "bridge %s", br);
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000219 goto done_next_argv;
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000220 }
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000221#if ENABLE_FEATURE_BRCTL_FANCY
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000222 if (key == ARG_stp) { /* stp */
Denys Vlasenko8a659f62010-04-03 00:52:16 +0200223 static const char no_yes[] ALIGN1 =
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +0100224 "0\0" "off\0" "n\0" "no\0" /* 0 .. 3 */
225 "1\0" "on\0" "y\0" "yes\0"; /* 4 .. 7 */
Denys Vlasenko8a659f62010-04-03 00:52:16 +0200226 int onoff = index_in_strings(no_yes, *argv);
Maciek Borzecki30ebd7b2010-03-23 05:18:38 +0100227 if (onoff < 0)
228 bb_error_msg_and_die(bb_msg_invalid_arg, *argv, applet_name);
229 onoff = (unsigned)onoff / 4;
230 arm_ioctl(args, BRCTL_SET_BRIDGE_STP_STATE, onoff, 0);
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000231 goto fire;
232 }
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000233 if ((unsigned)(key - ARG_setageing) < 4) { /* time related ops */
234 static const uint8_t ops[] ALIGN1 = {
235 BRCTL_SET_AGEING_TIME, /* ARG_setageing */
236 BRCTL_SET_BRIDGE_FORWARD_DELAY, /* ARG_setfd */
237 BRCTL_SET_BRIDGE_HELLO_TIME, /* ARG_sethello */
238 BRCTL_SET_BRIDGE_MAX_AGE /* ARG_setmaxage */
239 };
240 arm_ioctl(args, ops[key - ARG_setageing], str_to_jiffies(*argv), 0);
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000241 goto fire;
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000242 }
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000243 if (key == ARG_setpathcost
Denis Vlasenkod0a071a2008-03-17 09:33:45 +0000244 || key == ARG_setportprio
245 || key == ARG_setbridgeprio
246 ) {
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000247 static const uint8_t ops[] ALIGN1 = {
248 BRCTL_SET_PATH_COST, /* ARG_setpathcost */
249 BRCTL_SET_PORT_PRIORITY, /* ARG_setportprio */
250 BRCTL_SET_BRIDGE_PRIORITY /* ARG_setbridgeprio */
251 };
252 int port = -1;
253 unsigned arg1, arg2;
254
255 if (key != ARG_setbridgeprio) {
256 /* get portnum */
257 unsigned i;
258
259 port = if_nametoindex(*argv++);
260 if (!port)
261 bb_error_msg_and_die(bb_msg_invalid_arg, *argv, "port");
262 memset(ifidx, 0, sizeof ifidx);
263 arm_ioctl(args, BRCTL_GET_PORT_LIST, (unsigned long)ifidx,
264 MAX_PORTS);
265 xioctl(fd, SIOCDEVPRIVATE, &ifr);
266 for (i = 0; i < MAX_PORTS; i++) {
267 if (ifidx[i] == port) {
268 port = i;
269 break;
270 }
271 }
272 }
273 arg1 = port;
Denys Vlasenko77832482010-08-12 14:14:45 +0200274 arg2 = xatoi_positive(*argv);
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000275 if (key == ARG_setbridgeprio) {
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000276 arg1 = arg2;
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000277 arg2 = 0;
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000278 }
279 arm_ioctl(args, ops[key - ARG_setpathcost], arg1, arg2);
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000280 }
281 fire:
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000282 /* Execute the previously set command */
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +0000283 xioctl(fd, SIOCDEVPRIVATE, &ifr);
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000284#endif
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000285 done_next_argv:
286 argv++;
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +0000287 done:
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000288 close(fd);
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000289 }
Denis Vlasenko278a1c22008-04-06 07:17:02 +0000290
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +0000291 return EXIT_SUCCESS;
292}