blob: 06973900629d2f7d96bb65ac5ff1023d0918dbf9 [file] [log] [blame]
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00001/* vi: set sw=4 ts=4: */
Eric Andersenec455952001-02-14 08:11:27 +00002/* route
3 *
4 * Similar to the standard Unix route, but with only the necessary
Eric Andersen51b8bd62002-07-03 11:46:38 +00005 * parts for AF_INET and AF_INET6
Eric Andersenec455952001-02-14 08:11:27 +00006 *
7 * Bjorn Wesen, Axis Communications AB
8 *
Eric Andersenb9408502001-09-05 19:32:00 +00009 * Author of the original route:
Eric Andersenec455952001-02-14 08:11:27 +000010 * Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
11 * (derived from FvK's 'route.c 1.70 01/04/94')
12 *
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +000013 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersenec455952001-02-14 08:11:27 +000014 *
Eric Andersenec455952001-02-14 08:11:27 +000015 *
Eric Andersen68be2ab2001-02-14 19:26:39 +000016 * displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru>
Eric Andersen26d53eb2001-03-07 06:33:01 +000017 * adjustments by Larry Doolittle <LRDoolittle@lbl.gov>
Eric Andersen51b8bd62002-07-03 11:46:38 +000018 *
19 * IPV6 support added by Bart Visscher <magick@linux-fan.com>
Eric Andersenec455952001-02-14 08:11:27 +000020 */
21
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000022/* 2004/03/09 Manuel Novoa III <mjn3@codepoet.org>
23 *
24 * Rewritten to fix several bugs, add additional error checking, and
25 * remove ridiculous amounts of bloat.
26 */
27
Eric Andersencbe31da2001-02-20 06:14:08 +000028#include "busybox.h"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000029#include "inet_common.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000030#include <getopt.h>
31#include <net/route.h>
32#include <net/if.h>
33
Eric Andersen51b8bd62002-07-03 11:46:38 +000034
Eric Andersen863a3e12001-08-27 17:57:27 +000035#ifndef RTF_UP
36/* Keep this in sync with /usr/src/linux/include/linux/route.h */
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000037#define RTF_UP 0x0001 /* route usable */
38#define RTF_GATEWAY 0x0002 /* destination is a gateway */
39#define RTF_HOST 0x0004 /* host entry (net otherwise) */
40#define RTF_REINSTATE 0x0008 /* reinstate route after tmout */
41#define RTF_DYNAMIC 0x0010 /* created dyn. (by redirect) */
42#define RTF_MODIFIED 0x0020 /* modified dyn. (by redirect) */
43#define RTF_MTU 0x0040 /* specific MTU for this route */
Eric Andersen863a3e12001-08-27 17:57:27 +000044#ifndef RTF_MSS
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000045#define RTF_MSS RTF_MTU /* Compatibility :-( */
Eric Andersen863a3e12001-08-27 17:57:27 +000046#endif
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000047#define RTF_WINDOW 0x0080 /* per route window clamping */
48#define RTF_IRTT 0x0100 /* Initial round trip time */
49#define RTF_REJECT 0x0200 /* Reject route */
Eric Andersen863a3e12001-08-27 17:57:27 +000050#endif
51
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000052#if defined (SIOCADDRTOLD) || defined (RTF_IRTT) /* route */
53#define HAVE_NEW_ADDRT 1
54#endif
55
56#if HAVE_NEW_ADDRT
57#define mask_in_addr(x) (((struct sockaddr_in *)&((x).rt_genmask))->sin_addr.s_addr)
58#define full_mask(x) (x)
59#else
60#define mask_in_addr(x) ((x).rt_genmask)
61#define full_mask(x) (((struct sockaddr_in *)&(x))->sin_addr.s_addr)
62#endif
63
64/* The RTACTION entries must agree with tbl_verb[] below! */
Denis Vlasenko703e2022007-01-22 14:12:08 +000065#define RTACTION_ADD 1
66#define RTACTION_DEL 2
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000067
68/* For the various tbl_*[] arrays, the 1st byte is the offset to
69 * the next entry and the 2nd byte is return value. */
70
Denis Vlasenko703e2022007-01-22 14:12:08 +000071#define NET_FLAG 1
72#define HOST_FLAG 2
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000073
74/* We remap '-' to '#' to avoid problems with getopt. */
75static const char tbl_hash_net_host[] =
76 "\007\001#net\0"
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000077/* "\010\002#host\0" */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000078 "\007\002#host" /* Since last, we can save a byte. */
79;
80
Denis Vlasenko703e2022007-01-22 14:12:08 +000081#define KW_TAKES_ARG 020
82#define KW_SETS_FLAG 040
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000083
Denis Vlasenko703e2022007-01-22 14:12:08 +000084#define KW_IPVx_METRIC 020
85#define KW_IPVx_NETMASK 021
86#define KW_IPVx_GATEWAY 022
87#define KW_IPVx_MSS 023
88#define KW_IPVx_WINDOW 024
89#define KW_IPVx_IRTT 025
90#define KW_IPVx_DEVICE 026
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000091
Denis Vlasenko703e2022007-01-22 14:12:08 +000092#define KW_IPVx_FLAG_ONLY 040
93#define KW_IPVx_REJECT 040
94#define KW_IPVx_MOD 041
95#define KW_IPVx_DYN 042
96#define KW_IPVx_REINSTATE 043
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000097
Eric Andersenc7bda1c2004-03-15 08:29:22 +000098static const char tbl_ipvx[] =
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000099 /* 020 is the "takes an arg" bit */
100#if HAVE_NEW_ADDRT
101 "\011\020metric\0"
102#endif
103 "\012\021netmask\0"
104 "\005\022gw\0"
105 "\012\022gateway\0"
106 "\006\023mss\0"
107 "\011\024window\0"
108#ifdef RTF_IRTT
109 "\007\025irtt\0"
110#endif
111 "\006\026dev\0"
112 "\011\026device\0"
113 /* 040 is the "sets a flag" bit - MUST match flags_ipvx[] values below. */
114#ifdef RTF_REJECT
115 "\011\040reject\0"
116#endif
117 "\006\041mod\0"
118 "\006\042dyn\0"
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000119/* "\014\043reinstate\0" */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000120 "\013\043reinstate" /* Since last, we can save a byte. */
121;
122
123static const int flags_ipvx[] = { /* MUST match tbl_ipvx[] values above. */
124#ifdef RTF_REJECT
125 RTF_REJECT,
126#endif
127 RTF_MODIFIED,
128 RTF_DYNAMIC,
129 RTF_REINSTATE
130};
131
132static int kw_lookup(const char *kwtbl, char ***pargs)
133{
134 if (**pargs) {
135 do {
136 if (strcmp(kwtbl+2, **pargs) == 0) { /* Found a match. */
137 *pargs += 1;
138 if (kwtbl[1] & KW_TAKES_ARG) {
139 if (!**pargs) { /* No more args! */
140 bb_show_usage();
141 }
142 *pargs += 1; /* Calling routine will use args[-1]. */
143 }
144 return kwtbl[1];
145 }
146 kwtbl += *kwtbl;
147 } while (*kwtbl);
148 }
149 return 0;
150}
151
152/* Add or delete a route, depending on action. */
153
154static void INET_setroute(int action, char **args)
155{
156 struct rtentry rt;
Eric Andersen0cb6f352006-01-30 22:30:41 +0000157 const char *netmask = NULL;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000158 int skfd, isnet, xflag;
159
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000160 /* Grab the -net or -host options. Remember they were transformed. */
161 xflag = kw_lookup(tbl_hash_net_host, &args);
162
163 /* If we did grab -net or -host, make sure we still have an arg left. */
164 if (*args == NULL) {
165 bb_show_usage();
166 }
167
168 /* Clean out the RTREQ structure. */
Denis Vlasenko703e2022007-01-22 14:12:08 +0000169 memset(&rt, 0, sizeof(rt));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000170
171 {
172 const char *target = *args++;
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000173 char *prefix;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000174
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000175 /* recognize x.x.x.x/mask format. */
176 prefix = strchr(target, '/');
177 if(prefix) {
178 int prefix_len;
179
Denis Vlasenko13858992006-10-08 12:49:22 +0000180 prefix_len = xatoul_range(prefix+1, 0, 32);
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000181 mask_in_addr(rt) = htonl( ~ (0xffffffffUL >> prefix_len));
182 *prefix = '\0';
183#if HAVE_NEW_ADDRT
184 rt.rt_genmask.sa_family = AF_INET;
185#endif
186 } else {
187 /* Default netmask. */
Denis Vlasenko7ca39212006-11-21 20:34:21 +0000188 netmask = bb_str_default;
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000189 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000190 /* Prefer hostname lookup is -host flag (xflag==1) was given. */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000191 isnet = INET_resolve(target, (struct sockaddr_in *) &rt.rt_dst,
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000192 (xflag & HOST_FLAG));
193 if (isnet < 0) {
194 bb_error_msg_and_die("resolving %s", target);
195 }
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000196 if(prefix) {
197 /* do not destroy prefix for process args */
198 *prefix = '/';
199 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000200 }
201
202 if (xflag) { /* Reinit isnet if -net or -host was specified. */
203 isnet = (xflag & NET_FLAG);
204 }
205
206 /* Fill in the other fields. */
207 rt.rt_flags = ((isnet) ? RTF_UP : (RTF_UP | RTF_HOST));
208
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000209 while (*args) {
210 int k = kw_lookup(tbl_ipvx, &args);
211 const char *args_m1 = args[-1];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000212
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000213 if (k & KW_IPVx_FLAG_ONLY) {
214 rt.rt_flags |= flags_ipvx[k & 3];
215 continue;
216 }
217
218#if HAVE_NEW_ADDRT
219 if (k == KW_IPVx_METRIC) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000220 rt.rt_metric = xatoul(args_m1) + 1;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000221 continue;
222 }
223#endif
224
225 if (k == KW_IPVx_NETMASK) {
226 struct sockaddr mask;
227
228 if (mask_in_addr(rt)) {
229 bb_show_usage();
230 }
231
232 netmask = args_m1;
233 isnet = INET_resolve(netmask, (struct sockaddr_in *) &mask, 0);
234 if (isnet < 0) {
235 bb_error_msg_and_die("resolving %s", netmask);
236 }
237 rt.rt_genmask = full_mask(mask);
238 continue;
239 }
240
241 if (k == KW_IPVx_GATEWAY) {
242 if (rt.rt_flags & RTF_GATEWAY) {
243 bb_show_usage();
244 }
245
246 isnet = INET_resolve(args_m1,
247 (struct sockaddr_in *) &rt.rt_gateway, 1);
248 rt.rt_flags |= RTF_GATEWAY;
249
250 if (isnet) {
251 if (isnet < 0) {
252 bb_error_msg_and_die("resolving %s", args_m1);
253 }
254 bb_error_msg_and_die("gateway %s is a NETWORK", args_m1);
255 }
256 continue;
257 }
258
259 if (k == KW_IPVx_MSS) { /* Check valid MSS bounds. */
260 rt.rt_flags |= RTF_MSS;
Denis Vlasenko13858992006-10-08 12:49:22 +0000261 rt.rt_mss = xatoul_range(args_m1, 64, 32768);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000262 continue;
263 }
264
265 if (k == KW_IPVx_WINDOW) { /* Check valid window bounds. */
266 rt.rt_flags |= RTF_WINDOW;
Denis Vlasenko13858992006-10-08 12:49:22 +0000267 rt.rt_window = xatoul_range(args_m1, 128, INT_MAX);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000268 continue;
269 }
270
271#ifdef RTF_IRTT
272 if (k == KW_IPVx_IRTT) {
273 rt.rt_flags |= RTF_IRTT;
Denis Vlasenko13858992006-10-08 12:49:22 +0000274 rt.rt_irtt = xatoul(args_m1);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000275 rt.rt_irtt *= (sysconf(_SC_CLK_TCK) / 100); /* FIXME */
276#if 0 /* FIXME: do we need to check anything of this? */
277 if (rt.rt_irtt < 1 || rt.rt_irtt > (120 * HZ)) {
278 bb_error_msg_and_die("bad irtt");
279 }
280#endif
281 continue;
282 }
283#endif
284
285 /* Device is special in that it can be the last arg specified
286 * and doesn't requre the dev/device keyword in that case. */
287 if (!rt.rt_dev && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) {
Manuel Novoa III 539fa952004-03-19 23:27:08 +0000288 /* Don't use args_m1 here since args may have changed! */
289 rt.rt_dev = args[-1];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000290 continue;
291 }
292
293 /* Nothing matched. */
294 bb_show_usage();
295 }
296
297#ifdef RTF_REJECT
298 if ((rt.rt_flags & RTF_REJECT) && !rt.rt_dev) {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000299 rt.rt_dev = (char*)"lo";
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000300 }
301#endif
302
303 /* sanity checks.. */
304 if (mask_in_addr(rt)) {
305 unsigned long mask = mask_in_addr(rt);
306
307 mask = ~ntohl(mask);
308 if ((rt.rt_flags & RTF_HOST) && mask != 0xffffffff) {
309 bb_error_msg_and_die("netmask %.8x and host route conflict",
310 (unsigned int) mask);
311 }
312 if (mask & (mask + 1)) {
313 bb_error_msg_and_die("bogus netmask %s", netmask);
314 }
315 mask = ((struct sockaddr_in *) &rt.rt_dst)->sin_addr.s_addr;
316 if (mask & ~mask_in_addr(rt)) {
317 bb_error_msg_and_die("netmask and route address conflict");
318 }
319 }
320
321 /* Fill out netmask if still unset */
322 if ((action == RTACTION_ADD) && (rt.rt_flags & RTF_HOST)) {
323 mask_in_addr(rt) = 0xffffffff;
324 }
325
326 /* Create a socket to the INET kernel. */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000327 skfd = xsocket(AF_INET, SOCK_DGRAM, 0);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000328
329 if (ioctl(skfd, ((action==RTACTION_ADD) ? SIOCADDRT : SIOCDELRT), &rt)<0) {
330 bb_perror_msg_and_die("SIOC[ADD|DEL]RT");
331 }
332
Rob Landley64175642005-08-22 15:57:50 +0000333 if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000334}
335
Denis Vlasenko703e2022007-01-22 14:12:08 +0000336#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000337
338static void INET6_setroute(int action, char **args)
339{
340 struct sockaddr_in6 sa6;
341 struct in6_rtmsg rt;
342 int prefix_len, skfd;
343 const char *devname;
344
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000345 /* We know args isn't NULL from the check in route_main. */
346 const char *target = *args++;
347
Denis Vlasenko7ca39212006-11-21 20:34:21 +0000348 if (strcmp(target, bb_str_default) == 0) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000349 prefix_len = 0;
350 memset(&sa6, 0, sizeof(sa6));
351 } else {
352 char *cp;
353 if ((cp = strchr(target, '/'))) { /* Yes... const to non is ok. */
354 *cp = 0;
Denis Vlasenko13858992006-10-08 12:49:22 +0000355 prefix_len = xatoul_range(cp+1, 0, 128);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000356 } else {
357 prefix_len = 128;
358 }
359 if (INET6_resolve(target, (struct sockaddr_in6 *) &sa6) < 0) {
360 bb_error_msg_and_die("resolving %s", target);
361 }
362 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000363
364 /* Clean out the RTREQ structure. */
Denis Vlasenko703e2022007-01-22 14:12:08 +0000365 memset(&rt, 0, sizeof(rt));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000366
367 memcpy(&rt.rtmsg_dst, sa6.sin6_addr.s6_addr, sizeof(struct in6_addr));
368
369 /* Fill in the other fields. */
370 rt.rtmsg_dst_len = prefix_len;
371 rt.rtmsg_flags = ((prefix_len == 128) ? (RTF_UP|RTF_HOST) : RTF_UP);
372 rt.rtmsg_metric = 1;
373
374 devname = NULL;
375
376 while (*args) {
377 int k = kw_lookup(tbl_ipvx, &args);
378 const char *args_m1 = args[-1];
379
380 if ((k == KW_IPVx_MOD) || (k == KW_IPVx_DYN)) {
381 rt.rtmsg_flags |= flags_ipvx[k & 3];
382 continue;
383 }
384
385 if (k == KW_IPVx_METRIC) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000386 rt.rtmsg_metric = xatoul(args_m1);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000387 continue;
388 }
389
390 if (k == KW_IPVx_GATEWAY) {
391 if (rt.rtmsg_flags & RTF_GATEWAY) {
392 bb_show_usage();
393 }
394
395 if (INET6_resolve(args_m1, (struct sockaddr_in6 *) &sa6) < 0) {
396 bb_error_msg_and_die("resolving %s", args_m1);
397 }
398 memcpy(&rt.rtmsg_gateway, sa6.sin6_addr.s6_addr,
399 sizeof(struct in6_addr));
400 rt.rtmsg_flags |= RTF_GATEWAY;
401 continue;
402 }
403
404 /* Device is special in that it can be the last arg specified
405 * and doesn't requre the dev/device keyword in that case. */
406 if (!devname && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) {
Manuel Novoa III 539fa952004-03-19 23:27:08 +0000407 /* Don't use args_m1 here since args may have changed! */
408 devname = args[-1];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000409 continue;
410 }
411
412 /* Nothing matched. */
413 bb_show_usage();
414 }
415
416 /* Create a socket to the INET6 kernel. */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000417 skfd = xsocket(AF_INET6, SOCK_DGRAM, 0);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000418
419 rt.rtmsg_ifindex = 0;
420
421 if (devname) {
422 struct ifreq ifr;
423 memset(&ifr, 0, sizeof(ifr));
Denis Vlasenko229b3d22006-11-27 23:44:57 +0000424 strncpy(ifr.ifr_name, devname, sizeof(ifr.ifr_name));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000425
426 if (ioctl(skfd, SIOGIFINDEX, &ifr) < 0) {
427 bb_perror_msg_and_die("SIOGIFINDEX");
428 }
429 rt.rtmsg_ifindex = ifr.ifr_ifindex;
430 }
431
432 /* Tell the kernel to accept this route. */
433 if (ioctl(skfd, ((action==RTACTION_ADD) ? SIOCADDRT : SIOCDELRT), &rt)<0) {
434 bb_perror_msg_and_die("SIOC[ADD|DEL]RT");
435 }
436
Rob Landley64175642005-08-22 15:57:50 +0000437 if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000438}
439#endif
440
441static const unsigned int flagvals[] = { /* Must agree with flagchars[]. */
442 RTF_GATEWAY,
443 RTF_HOST,
444 RTF_REINSTATE,
445 RTF_DYNAMIC,
446 RTF_MODIFIED,
Denis Vlasenko703e2022007-01-22 14:12:08 +0000447#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000448 RTF_DEFAULT,
449 RTF_ADDRCONF,
450 RTF_CACHE
451#endif
452};
453
454#define IPV4_MASK (RTF_GATEWAY|RTF_HOST|RTF_REINSTATE|RTF_DYNAMIC|RTF_MODIFIED)
455#define IPV6_MASK (RTF_GATEWAY|RTF_HOST|RTF_DEFAULT|RTF_ADDRCONF|RTF_CACHE)
456
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000457static const char flagchars[] = /* Must agree with flagvals[]. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000458 "GHRDM"
Denis Vlasenko703e2022007-01-22 14:12:08 +0000459#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000460 "DAC"
461#endif
462;
463
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000464static void set_flags(char *flagstr, int flags)
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000465{
466 int i;
467
468 *flagstr++ = 'U';
469
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000470 for (i = 0; (*flagstr = flagchars[i]) != 0; i++) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000471 if (flags & flagvals[i]) {
472 ++flagstr;
473 }
474 }
475}
476
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000477/* also used in netstat */
Denis Vlasenko703e2022007-01-22 14:12:08 +0000478void bb_displayroutes(int noresolve, int netstatfmt)
Eric Andersen68be2ab2001-02-14 19:26:39 +0000479{
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000480 char devname[64], flags[16], sdest[16], sgw[16];
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000481 unsigned long int d, g, m;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000482 int flgs, ref, use, metric, mtu, win, ir;
483 struct sockaddr_in s_addr;
484 struct in_addr mask;
Eric Andersen68be2ab2001-02-14 19:26:39 +0000485
Rob Landleyd921b2e2006-08-03 15:41:12 +0000486 FILE *fp = xfopen("/proc/net/route", "r");
Eric Andersen68be2ab2001-02-14 19:26:39 +0000487
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000488 printf("Kernel IP routing table\n"
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000489 "Destination Gateway Genmask Flags %s Iface\n",
490 netstatfmt ? " MSS Window irtt" : "Metric Ref Use");
Eric Andersencd8c4362001-11-10 11:22:46 +0000491
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000492 if (fscanf(fp, "%*[^\n]\n") < 0) { /* Skip the first line. */
493 goto ERROR; /* Empty or missing line, or read error. */
494 }
495 while (1) {
496 int r;
497 r = fscanf(fp, "%63s%lx%lx%X%d%d%d%lx%d%d%d\n",
498 devname, &d, &g, &flgs, &ref, &use, &metric, &m,
499 &mtu, &win, &ir);
500 if (r != 11) {
501 if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
502 break;
Eric Andersen68be2ab2001-02-14 19:26:39 +0000503 }
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000504 ERROR:
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000505 bb_error_msg_and_die("fscanf");
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000506 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000507
508 if (!(flgs & RTF_UP)) { /* Skip interfaces that are down. */
509 continue;
510 }
511
512 set_flags(flags, (flgs & IPV4_MASK));
513#ifdef RTF_REJECT
514 if (flgs & RTF_REJECT) {
515 flags[0] = '!';
516 }
517#endif
518
519 memset(&s_addr, 0, sizeof(struct sockaddr_in));
520 s_addr.sin_family = AF_INET;
521 s_addr.sin_addr.s_addr = d;
522 INET_rresolve(sdest, sizeof(sdest), &s_addr,
523 (noresolve | 0x8000), m); /* Default instead of *. */
524
525 s_addr.sin_addr.s_addr = g;
526 INET_rresolve(sgw, sizeof(sgw), &s_addr,
527 (noresolve | 0x4000), m); /* Host instead of net. */
528
529 mask.s_addr = m;
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000530 printf("%-16s%-16s%-16s%-6s", sdest, sgw, inet_ntoa(mask), flags);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000531 if (netstatfmt) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000532 printf("%5d %-5d %6d %s\n", mtu, win, ir, devname);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000533 } else {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000534 printf("%-6d %-2d %7d %s\n", metric, ref, use, devname);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000535 }
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000536 }
Eric Andersen68be2ab2001-02-14 19:26:39 +0000537}
538
Denis Vlasenko703e2022007-01-22 14:12:08 +0000539#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000540
Eric Andersen51b8bd62002-07-03 11:46:38 +0000541static void INET6_displayroutes(int noresolve)
542{
Eric Andersen51b8bd62002-07-03 11:46:38 +0000543 char addr6[128], naddr6[128];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000544 /* In addr6x, we store both 40-byte ':'-delimited ipv6 addresses.
545 * We read the non-delimited strings into the tail of the buffer
546 * using fscanf and then modify the buffer by shifting forward
547 * while inserting ':'s and the nul terminator for the first string.
548 * Hence the strings are at addr6x and addr6x+40. This generates
549 * _much_ less code than the previous (upstream) approach. */
550 char addr6x[80];
551 char iface[16], flags[16];
Eric Andersen51b8bd62002-07-03 11:46:38 +0000552 int iflags, metric, refcnt, use, prefix_len, slen;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000553 struct sockaddr_in6 snaddr6;
Eric Andersen51b8bd62002-07-03 11:46:38 +0000554
Rob Landleyd921b2e2006-08-03 15:41:12 +0000555 FILE *fp = xfopen("/proc/net/ipv6_route", "r");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000556
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000557 printf("Kernel IPv6 routing table\n%-44s%-40s"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000558 "Flags Metric Ref Use Iface\n",
559 "Destination", "Next Hop");
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000560
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000561 while (1) {
562 int r;
563 r = fscanf(fp, "%32s%x%*s%x%32s%x%x%x%x%s\n",
564 addr6x+14, &prefix_len, &slen, addr6x+40+7,
565 &metric, &use, &refcnt, &iflags, iface);
566 if (r != 9) {
567 if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
568 break;
569 }
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000570 ERROR:
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000571 bb_error_msg_and_die("fscanf");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000572 }
573
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000574 /* Do the addr6x shift-and-insert changes to ':'-delimit addresses.
575 * For now, always do this to validate the proc route format, even
576 * if the interface is down. */
577 {
578 int i = 0;
579 char *p = addr6x+14;
580
581 do {
582 if (!*p) {
583 if (i==40) { /* nul terminator for 1st address? */
584 addr6x[39] = 0; /* Fixup... need 0 instead of ':'. */
585 ++p; /* Skip and continue. */
586 continue;
587 }
588 goto ERROR;
589 }
590 addr6x[i++] = *p++;
Denis Vlasenko703e2022007-01-22 14:12:08 +0000591 if (!((i+1) % 5)) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000592 addr6x[i++] = ':';
593 }
594 } while (i < 40+28+7);
595 }
596
597 if (!(iflags & RTF_UP)) { /* Skip interfaces that are down. */
Eric Andersen51b8bd62002-07-03 11:46:38 +0000598 continue;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000599 }
Eric Andersen51b8bd62002-07-03 11:46:38 +0000600
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000601 set_flags(flags, (iflags & IPV6_MASK));
Eric Andersen51b8bd62002-07-03 11:46:38 +0000602
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000603 r = 0;
604 do {
605 inet_pton(AF_INET6, addr6x + r,
606 (struct sockaddr *) &snaddr6.sin6_addr);
607 snaddr6.sin6_family = AF_INET6;
608 INET6_rresolve(naddr6, sizeof(naddr6),
609 (struct sockaddr_in6 *) &snaddr6,
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000610 0x0fff /* Apparently, upstream never resolves. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000611 );
Eric Andersen51b8bd62002-07-03 11:46:38 +0000612
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000613 if (!r) { /* 1st pass */
614 snprintf(addr6, sizeof(addr6), "%s/%d", naddr6, prefix_len);
615 r += 40;
616 } else { /* 2nd pass */
617 /* Print the info. */
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000618 printf("%-43s %-39s %-5s %-6d %-2d %7d %-8s\n",
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000619 addr6, naddr6, flags, metric, refcnt, use, iface);
620 break;
621 }
622 } while (1);
Eric Andersen51b8bd62002-07-03 11:46:38 +0000623 }
624}
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000625
Eric Andersen51b8bd62002-07-03 11:46:38 +0000626#endif
627
Denis Vlasenko703e2022007-01-22 14:12:08 +0000628#define ROUTE_OPT_A 0x01
629#define ROUTE_OPT_n 0x02
630#define ROUTE_OPT_e 0x04
631#define ROUTE_OPT_INET6 0x08 /* Not an actual option. See below. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000632
633/* 1st byte is offset to next entry offset. 2nd byte is return value. */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000634static const char tbl_verb[] = /* 2nd byte matches RTACTION_* code */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000635 "\006\001add\0"
636 "\006\002del\0"
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000637/* "\011\002delete\0" */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000638 "\010\002delete" /* Since last, we can save a byte. */
639;
640
Denis Vlasenko06af2162007-02-03 17:28:39 +0000641int route_main(int argc, char **argv);
Eric Andersenec455952001-02-14 08:11:27 +0000642int route_main(int argc, char **argv)
643{
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000644 unsigned opt;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000645 int what;
646 char *family;
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000647 char **p;
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000648
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000649 /* First, remap '-net' and '-host' to avoid getopt problems. */
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000650 p = argv;
651 while (*++p) {
Denis Vlasenko703e2022007-01-22 14:12:08 +0000652 if (strcmp(*p, "-net") == 0 || strcmp(*p, "-host") == 0) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000653 p[0][0] = '#';
Robert Griebl820098f2002-05-14 23:03:23 +0000654 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000655 }
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000656
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000657 opt = getopt32(argc, argv, "A:ne", &family);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000658
Denis Vlasenko703e2022007-01-22 14:12:08 +0000659 if ((opt & ROUTE_OPT_A) && strcmp(family, "inet") != 0) {
660#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000661 if (strcmp(family, "inet6") == 0) {
662 opt |= ROUTE_OPT_INET6; /* Set flag for ipv6. */
663 } else
664#endif
665 bb_show_usage();
666 }
667
668 argv += optind;
669
670 /* No more args means display the routing table. */
671 if (!*argv) {
672 int noresolve = (opt & ROUTE_OPT_n) ? 0x0fff : 0;
Denis Vlasenko703e2022007-01-22 14:12:08 +0000673#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000674 if (opt & ROUTE_OPT_INET6)
675 INET6_displayroutes(noresolve);
Eric Andersen51b8bd62002-07-03 11:46:38 +0000676 else
677#endif
Denis Vlasenko703e2022007-01-22 14:12:08 +0000678 bb_displayroutes(noresolve, opt & ROUTE_OPT_e);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000679
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000680 fflush_stdout_and_exit(EXIT_SUCCESS);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000681 }
682
683 /* Check verb. At the moment, must be add, del, or delete. */
684 what = kw_lookup(tbl_verb, &argv);
685 if (!what || !*argv) { /* Unknown verb or no more args. */
686 bb_show_usage();
Eric Andersenec455952001-02-14 08:11:27 +0000687 }
688
Denis Vlasenko703e2022007-01-22 14:12:08 +0000689#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000690 if (opt & ROUTE_OPT_INET6)
691 INET6_setroute(what, argv);
692 else
Eric Andersen51b8bd62002-07-03 11:46:38 +0000693#endif
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000694 INET_setroute(what, argv);
695
696 return EXIT_SUCCESS;
Eric Andersenec455952001-02-14 08:11:27 +0000697}