blob: e7e8f1c020ad6776823be7d4b6f2e9b1b9e14f22 [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 *
Manuel Novoa III 539fa952004-03-19 23:27:08 +000015 * $Id: route.c,v 1.26 2004/03/19 23:27:08 mjn3 Exp $
Eric Andersenec455952001-02-14 08:11:27 +000016 *
Eric Andersen68be2ab2001-02-14 19:26:39 +000017 * displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru>
Eric Andersen26d53eb2001-03-07 06:33:01 +000018 * adjustments by Larry Doolittle <LRDoolittle@lbl.gov>
Eric Andersen51b8bd62002-07-03 11:46:38 +000019 *
20 * IPV6 support added by Bart Visscher <magick@linux-fan.com>
Eric Andersenec455952001-02-14 08:11:27 +000021 */
22
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000023/* 2004/03/09 Manuel Novoa III <mjn3@codepoet.org>
24 *
25 * Rewritten to fix several bugs, add additional error checking, and
26 * remove ridiculous amounts of bloat.
27 */
28
Eric Andersenec455952001-02-14 08:11:27 +000029#include <stdio.h>
Eric Andersenec455952001-02-14 08:11:27 +000030#include <stdlib.h>
31#include <string.h>
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000032#include <errno.h>
33#include <assert.h>
Eric Andersenec455952001-02-14 08:11:27 +000034#include <unistd.h>
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000035#include <fcntl.h>
36#include <getopt.h>
37#include <sys/types.h>
38#include <sys/ioctl.h>
39#include <net/route.h>
40#include <net/if.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000041#include "busybox.h"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000042#include "inet_common.h"
Eric Andersen51b8bd62002-07-03 11:46:38 +000043
Eric Andersen863a3e12001-08-27 17:57:27 +000044#ifndef RTF_UP
45/* Keep this in sync with /usr/src/linux/include/linux/route.h */
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000046#define RTF_UP 0x0001 /* route usable */
47#define RTF_GATEWAY 0x0002 /* destination is a gateway */
48#define RTF_HOST 0x0004 /* host entry (net otherwise) */
49#define RTF_REINSTATE 0x0008 /* reinstate route after tmout */
50#define RTF_DYNAMIC 0x0010 /* created dyn. (by redirect) */
51#define RTF_MODIFIED 0x0020 /* modified dyn. (by redirect) */
52#define RTF_MTU 0x0040 /* specific MTU for this route */
Eric Andersen863a3e12001-08-27 17:57:27 +000053#ifndef RTF_MSS
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000054#define RTF_MSS RTF_MTU /* Compatibility :-( */
Eric Andersen863a3e12001-08-27 17:57:27 +000055#endif
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000056#define RTF_WINDOW 0x0080 /* per route window clamping */
57#define RTF_IRTT 0x0100 /* Initial round trip time */
58#define RTF_REJECT 0x0200 /* Reject route */
Eric Andersen863a3e12001-08-27 17:57:27 +000059#endif
60
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000061#if defined (SIOCADDRTOLD) || defined (RTF_IRTT) /* route */
62#define HAVE_NEW_ADDRT 1
63#endif
64
65#if HAVE_NEW_ADDRT
66#define mask_in_addr(x) (((struct sockaddr_in *)&((x).rt_genmask))->sin_addr.s_addr)
67#define full_mask(x) (x)
68#else
69#define mask_in_addr(x) ((x).rt_genmask)
70#define full_mask(x) (((struct sockaddr_in *)&(x))->sin_addr.s_addr)
71#endif
72
73/* The RTACTION entries must agree with tbl_verb[] below! */
74#define RTACTION_ADD 1
75#define RTACTION_DEL 2
76
77/* For the various tbl_*[] arrays, the 1st byte is the offset to
78 * the next entry and the 2nd byte is return value. */
79
80#define NET_FLAG 1
81#define HOST_FLAG 2
82
83/* We remap '-' to '#' to avoid problems with getopt. */
84static const char tbl_hash_net_host[] =
85 "\007\001#net\0"
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000086/* "\010\002#host\0" */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000087 "\007\002#host" /* Since last, we can save a byte. */
88;
89
90#define KW_TAKES_ARG 020
91#define KW_SETS_FLAG 040
92
93#define KW_IPVx_METRIC 020
94#define KW_IPVx_NETMASK 021
95#define KW_IPVx_GATEWAY 022
96#define KW_IPVx_MSS 023
97#define KW_IPVx_WINDOW 024
98#define KW_IPVx_IRTT 025
99#define KW_IPVx_DEVICE 026
100
101#define KW_IPVx_FLAG_ONLY 040
102#define KW_IPVx_REJECT 040
103#define KW_IPVx_MOD 041
104#define KW_IPVx_DYN 042
105#define KW_IPVx_REINSTATE 043
106
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000107static const char tbl_ipvx[] =
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000108 /* 020 is the "takes an arg" bit */
109#if HAVE_NEW_ADDRT
110 "\011\020metric\0"
111#endif
112 "\012\021netmask\0"
113 "\005\022gw\0"
114 "\012\022gateway\0"
115 "\006\023mss\0"
116 "\011\024window\0"
117#ifdef RTF_IRTT
118 "\007\025irtt\0"
119#endif
120 "\006\026dev\0"
121 "\011\026device\0"
122 /* 040 is the "sets a flag" bit - MUST match flags_ipvx[] values below. */
123#ifdef RTF_REJECT
124 "\011\040reject\0"
125#endif
126 "\006\041mod\0"
127 "\006\042dyn\0"
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000128/* "\014\043reinstate\0" */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000129 "\013\043reinstate" /* Since last, we can save a byte. */
130;
131
132static const int flags_ipvx[] = { /* MUST match tbl_ipvx[] values above. */
133#ifdef RTF_REJECT
134 RTF_REJECT,
135#endif
136 RTF_MODIFIED,
137 RTF_DYNAMIC,
138 RTF_REINSTATE
139};
140
141static int kw_lookup(const char *kwtbl, char ***pargs)
142{
143 if (**pargs) {
144 do {
145 if (strcmp(kwtbl+2, **pargs) == 0) { /* Found a match. */
146 *pargs += 1;
147 if (kwtbl[1] & KW_TAKES_ARG) {
148 if (!**pargs) { /* No more args! */
149 bb_show_usage();
150 }
151 *pargs += 1; /* Calling routine will use args[-1]. */
152 }
153 return kwtbl[1];
154 }
155 kwtbl += *kwtbl;
156 } while (*kwtbl);
157 }
158 return 0;
159}
160
161/* Add or delete a route, depending on action. */
162
163static void INET_setroute(int action, char **args)
164{
165 struct rtentry rt;
Eric Andersen0cb6f352006-01-30 22:30:41 +0000166 const char *netmask = NULL;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000167 int skfd, isnet, xflag;
168
169 assert((action == RTACTION_ADD) || (action == RTACTION_DEL));
170
171 /* Grab the -net or -host options. Remember they were transformed. */
172 xflag = kw_lookup(tbl_hash_net_host, &args);
173
174 /* If we did grab -net or -host, make sure we still have an arg left. */
175 if (*args == NULL) {
176 bb_show_usage();
177 }
178
179 /* Clean out the RTREQ structure. */
180 memset((char *) &rt, 0, sizeof(struct rtentry));
181
182 {
183 const char *target = *args++;
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000184 char *prefix;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000185
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000186 /* recognize x.x.x.x/mask format. */
187 prefix = strchr(target, '/');
188 if(prefix) {
189 int prefix_len;
190
191 prefix_len = bb_xgetularg10_bnd(prefix+1, 0, 32);
192 mask_in_addr(rt) = htonl( ~ (0xffffffffUL >> prefix_len));
193 *prefix = '\0';
194#if HAVE_NEW_ADDRT
195 rt.rt_genmask.sa_family = AF_INET;
196#endif
197 } else {
198 /* Default netmask. */
199 netmask = bb_INET_default;
200 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000201 /* Prefer hostname lookup is -host flag (xflag==1) was given. */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000202 isnet = INET_resolve(target, (struct sockaddr_in *) &rt.rt_dst,
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000203 (xflag & HOST_FLAG));
204 if (isnet < 0) {
205 bb_error_msg_and_die("resolving %s", target);
206 }
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000207 if(prefix) {
208 /* do not destroy prefix for process args */
209 *prefix = '/';
210 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000211 }
212
213 if (xflag) { /* Reinit isnet if -net or -host was specified. */
214 isnet = (xflag & NET_FLAG);
215 }
216
217 /* Fill in the other fields. */
218 rt.rt_flags = ((isnet) ? RTF_UP : (RTF_UP | RTF_HOST));
219
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000220 while (*args) {
221 int k = kw_lookup(tbl_ipvx, &args);
222 const char *args_m1 = args[-1];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000223
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000224 if (k & KW_IPVx_FLAG_ONLY) {
225 rt.rt_flags |= flags_ipvx[k & 3];
226 continue;
227 }
228
229#if HAVE_NEW_ADDRT
230 if (k == KW_IPVx_METRIC) {
231 rt.rt_metric = bb_xgetularg10(args_m1) + 1;
232 continue;
233 }
234#endif
235
236 if (k == KW_IPVx_NETMASK) {
237 struct sockaddr mask;
238
239 if (mask_in_addr(rt)) {
240 bb_show_usage();
241 }
242
243 netmask = args_m1;
244 isnet = INET_resolve(netmask, (struct sockaddr_in *) &mask, 0);
245 if (isnet < 0) {
246 bb_error_msg_and_die("resolving %s", netmask);
247 }
248 rt.rt_genmask = full_mask(mask);
249 continue;
250 }
251
252 if (k == KW_IPVx_GATEWAY) {
253 if (rt.rt_flags & RTF_GATEWAY) {
254 bb_show_usage();
255 }
256
257 isnet = INET_resolve(args_m1,
258 (struct sockaddr_in *) &rt.rt_gateway, 1);
259 rt.rt_flags |= RTF_GATEWAY;
260
261 if (isnet) {
262 if (isnet < 0) {
263 bb_error_msg_and_die("resolving %s", args_m1);
264 }
265 bb_error_msg_and_die("gateway %s is a NETWORK", args_m1);
266 }
267 continue;
268 }
269
270 if (k == KW_IPVx_MSS) { /* Check valid MSS bounds. */
271 rt.rt_flags |= RTF_MSS;
272 rt.rt_mss = bb_xgetularg10_bnd(args_m1, 64, 32768);
273 continue;
274 }
275
276 if (k == KW_IPVx_WINDOW) { /* Check valid window bounds. */
277 rt.rt_flags |= RTF_WINDOW;
278 rt.rt_window = bb_xgetularg10_bnd(args_m1, 128, INT_MAX);
279 continue;
280 }
281
282#ifdef RTF_IRTT
283 if (k == KW_IPVx_IRTT) {
284 rt.rt_flags |= RTF_IRTT;
285 rt.rt_irtt = bb_xgetularg10(args_m1);
286 rt.rt_irtt *= (sysconf(_SC_CLK_TCK) / 100); /* FIXME */
287#if 0 /* FIXME: do we need to check anything of this? */
288 if (rt.rt_irtt < 1 || rt.rt_irtt > (120 * HZ)) {
289 bb_error_msg_and_die("bad irtt");
290 }
291#endif
292 continue;
293 }
294#endif
295
296 /* Device is special in that it can be the last arg specified
297 * and doesn't requre the dev/device keyword in that case. */
298 if (!rt.rt_dev && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) {
Manuel Novoa III 539fa952004-03-19 23:27:08 +0000299 /* Don't use args_m1 here since args may have changed! */
300 rt.rt_dev = args[-1];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000301 continue;
302 }
303
304 /* Nothing matched. */
305 bb_show_usage();
306 }
307
308#ifdef RTF_REJECT
309 if ((rt.rt_flags & RTF_REJECT) && !rt.rt_dev) {
310 rt.rt_dev = "lo";
311 }
312#endif
313
314 /* sanity checks.. */
315 if (mask_in_addr(rt)) {
316 unsigned long mask = mask_in_addr(rt);
317
318 mask = ~ntohl(mask);
319 if ((rt.rt_flags & RTF_HOST) && mask != 0xffffffff) {
320 bb_error_msg_and_die("netmask %.8x and host route conflict",
321 (unsigned int) mask);
322 }
323 if (mask & (mask + 1)) {
324 bb_error_msg_and_die("bogus netmask %s", netmask);
325 }
326 mask = ((struct sockaddr_in *) &rt.rt_dst)->sin_addr.s_addr;
327 if (mask & ~mask_in_addr(rt)) {
328 bb_error_msg_and_die("netmask and route address conflict");
329 }
330 }
331
332 /* Fill out netmask if still unset */
333 if ((action == RTACTION_ADD) && (rt.rt_flags & RTF_HOST)) {
334 mask_in_addr(rt) = 0xffffffff;
335 }
336
337 /* Create a socket to the INET kernel. */
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +0000338 skfd = bb_xsocket(AF_INET, SOCK_DGRAM, 0);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000339
340 if (ioctl(skfd, ((action==RTACTION_ADD) ? SIOCADDRT : SIOCDELRT), &rt)<0) {
341 bb_perror_msg_and_die("SIOC[ADD|DEL]RT");
342 }
343
Rob Landley64175642005-08-22 15:57:50 +0000344 if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000345}
346
347#ifdef CONFIG_FEATURE_IPV6
348
349static void INET6_setroute(int action, char **args)
350{
351 struct sockaddr_in6 sa6;
352 struct in6_rtmsg rt;
353 int prefix_len, skfd;
354 const char *devname;
355
356 assert((action == RTACTION_ADD) || (action == RTACTION_DEL));
357
358 {
359 /* We know args isn't NULL from the check in route_main. */
360 const char *target = *args++;
361
"Vladimir N. Oleynik"007a0112005-09-22 11:11:11 +0000362 if (strcmp(target, bb_INET_default) == 0) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000363 prefix_len = 0;
364 memset(&sa6, 0, sizeof(sa6));
365 } else {
366 char *cp;
367 if ((cp = strchr(target, '/'))) { /* Yes... const to non is ok. */
368 *cp = 0;
369 prefix_len = bb_xgetularg10_bnd(cp+1, 0, 128);
370 } else {
371 prefix_len = 128;
372 }
373 if (INET6_resolve(target, (struct sockaddr_in6 *) &sa6) < 0) {
374 bb_error_msg_and_die("resolving %s", target);
375 }
376 }
377 }
378
379 /* Clean out the RTREQ structure. */
380 memset((char *) &rt, 0, sizeof(struct in6_rtmsg));
381
382 memcpy(&rt.rtmsg_dst, sa6.sin6_addr.s6_addr, sizeof(struct in6_addr));
383
384 /* Fill in the other fields. */
385 rt.rtmsg_dst_len = prefix_len;
386 rt.rtmsg_flags = ((prefix_len == 128) ? (RTF_UP|RTF_HOST) : RTF_UP);
387 rt.rtmsg_metric = 1;
388
389 devname = NULL;
390
391 while (*args) {
392 int k = kw_lookup(tbl_ipvx, &args);
393 const char *args_m1 = args[-1];
394
395 if ((k == KW_IPVx_MOD) || (k == KW_IPVx_DYN)) {
396 rt.rtmsg_flags |= flags_ipvx[k & 3];
397 continue;
398 }
399
400 if (k == KW_IPVx_METRIC) {
401 rt.rtmsg_metric = bb_xgetularg10(args_m1);
402 continue;
403 }
404
405 if (k == KW_IPVx_GATEWAY) {
406 if (rt.rtmsg_flags & RTF_GATEWAY) {
407 bb_show_usage();
408 }
409
410 if (INET6_resolve(args_m1, (struct sockaddr_in6 *) &sa6) < 0) {
411 bb_error_msg_and_die("resolving %s", args_m1);
412 }
413 memcpy(&rt.rtmsg_gateway, sa6.sin6_addr.s6_addr,
414 sizeof(struct in6_addr));
415 rt.rtmsg_flags |= RTF_GATEWAY;
416 continue;
417 }
418
419 /* Device is special in that it can be the last arg specified
420 * and doesn't requre the dev/device keyword in that case. */
421 if (!devname && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) {
Manuel Novoa III 539fa952004-03-19 23:27:08 +0000422 /* Don't use args_m1 here since args may have changed! */
423 devname = args[-1];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000424 continue;
425 }
426
427 /* Nothing matched. */
428 bb_show_usage();
429 }
430
431 /* Create a socket to the INET6 kernel. */
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +0000432 skfd = bb_xsocket(AF_INET6, SOCK_DGRAM, 0);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000433
434 rt.rtmsg_ifindex = 0;
435
436 if (devname) {
437 struct ifreq ifr;
438 memset(&ifr, 0, sizeof(ifr));
439 strcpy(ifr.ifr_name, devname);
440
441 if (ioctl(skfd, SIOGIFINDEX, &ifr) < 0) {
442 bb_perror_msg_and_die("SIOGIFINDEX");
443 }
444 rt.rtmsg_ifindex = ifr.ifr_ifindex;
445 }
446
447 /* Tell the kernel to accept this route. */
448 if (ioctl(skfd, ((action==RTACTION_ADD) ? SIOCADDRT : SIOCDELRT), &rt)<0) {
449 bb_perror_msg_and_die("SIOC[ADD|DEL]RT");
450 }
451
Rob Landley64175642005-08-22 15:57:50 +0000452 if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000453}
454#endif
455
456static const unsigned int flagvals[] = { /* Must agree with flagchars[]. */
457 RTF_GATEWAY,
458 RTF_HOST,
459 RTF_REINSTATE,
460 RTF_DYNAMIC,
461 RTF_MODIFIED,
462#ifdef CONFIG_FEATURE_IPV6
463 RTF_DEFAULT,
464 RTF_ADDRCONF,
465 RTF_CACHE
466#endif
467};
468
469#define IPV4_MASK (RTF_GATEWAY|RTF_HOST|RTF_REINSTATE|RTF_DYNAMIC|RTF_MODIFIED)
470#define IPV6_MASK (RTF_GATEWAY|RTF_HOST|RTF_DEFAULT|RTF_ADDRCONF|RTF_CACHE)
471
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000472static const char flagchars[] = /* Must agree with flagvals[]. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000473 "GHRDM"
474#ifdef CONFIG_FEATURE_IPV6
475 "DAC"
476#endif
477;
478
479static
480#ifndef CONFIG_FEATURE_IPV6
481__inline
482#endif
483void set_flags(char *flagstr, int flags)
484{
485 int i;
486
487 *flagstr++ = 'U';
488
489 for (i=0 ; (*flagstr = flagchars[i]) != 0 ; i++) {
490 if (flags & flagvals[i]) {
491 ++flagstr;
492 }
493 }
494}
495
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000496/* also used in netstat */
Robert Griebl820098f2002-05-14 23:03:23 +0000497void displayroutes(int noresolve, int netstatfmt)
Eric Andersen68be2ab2001-02-14 19:26:39 +0000498{
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000499 char devname[64], flags[16], sdest[16], sgw[16];
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000500 unsigned long int d, g, m;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000501 int flgs, ref, use, metric, mtu, win, ir;
502 struct sockaddr_in s_addr;
503 struct in_addr mask;
Eric Andersen68be2ab2001-02-14 19:26:39 +0000504
Manuel Novoa III cad53642003-03-19 09:13:01 +0000505 FILE *fp = bb_xfopen("/proc/net/route", "r");
Eric Andersen68be2ab2001-02-14 19:26:39 +0000506
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000507 bb_printf("Kernel IP routing table\n"
508 "Destination Gateway Genmask"
509 " Flags %s Iface\n",
510 netstatfmt ? " MSS Window irtt" : "Metric Ref Use");
Eric Andersencd8c4362001-11-10 11:22:46 +0000511
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000512 if (fscanf(fp, "%*[^\n]\n") < 0) { /* Skip the first line. */
513 goto ERROR; /* Empty or missing line, or read error. */
514 }
515 while (1) {
516 int r;
517 r = fscanf(fp, "%63s%lx%lx%X%d%d%d%lx%d%d%d\n",
518 devname, &d, &g, &flgs, &ref, &use, &metric, &m,
519 &mtu, &win, &ir);
520 if (r != 11) {
521 if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
522 break;
Eric Andersen68be2ab2001-02-14 19:26:39 +0000523 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000524 ERROR:
525 bb_error_msg_and_die("fscanf");
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000526 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000527
528 if (!(flgs & RTF_UP)) { /* Skip interfaces that are down. */
529 continue;
530 }
531
532 set_flags(flags, (flgs & IPV4_MASK));
533#ifdef RTF_REJECT
534 if (flgs & RTF_REJECT) {
535 flags[0] = '!';
536 }
537#endif
538
539 memset(&s_addr, 0, sizeof(struct sockaddr_in));
540 s_addr.sin_family = AF_INET;
541 s_addr.sin_addr.s_addr = d;
542 INET_rresolve(sdest, sizeof(sdest), &s_addr,
543 (noresolve | 0x8000), m); /* Default instead of *. */
544
545 s_addr.sin_addr.s_addr = g;
546 INET_rresolve(sgw, sizeof(sgw), &s_addr,
547 (noresolve | 0x4000), m); /* Host instead of net. */
548
549 mask.s_addr = m;
550 bb_printf("%-16s%-16s%-16s%-6s", sdest, sgw, inet_ntoa(mask), flags);
551 if (netstatfmt) {
552 bb_printf("%5d %-5d %6d %s\n", mtu, win, ir, devname);
553 } else {
554 bb_printf("%-6d %-2d %7d %s\n", metric, ref, use, devname);
555 }
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000556 }
Eric Andersen68be2ab2001-02-14 19:26:39 +0000557}
558
Glenn L McGrath8ae4cab2002-11-26 09:02:06 +0000559#ifdef CONFIG_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000560
Eric Andersen51b8bd62002-07-03 11:46:38 +0000561static void INET6_displayroutes(int noresolve)
562{
Eric Andersen51b8bd62002-07-03 11:46:38 +0000563 char addr6[128], naddr6[128];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000564 /* In addr6x, we store both 40-byte ':'-delimited ipv6 addresses.
565 * We read the non-delimited strings into the tail of the buffer
566 * using fscanf and then modify the buffer by shifting forward
567 * while inserting ':'s and the nul terminator for the first string.
568 * Hence the strings are at addr6x and addr6x+40. This generates
569 * _much_ less code than the previous (upstream) approach. */
570 char addr6x[80];
571 char iface[16], flags[16];
Eric Andersen51b8bd62002-07-03 11:46:38 +0000572 int iflags, metric, refcnt, use, prefix_len, slen;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000573 struct sockaddr_in6 snaddr6;
Eric Andersen51b8bd62002-07-03 11:46:38 +0000574
Manuel Novoa III cad53642003-03-19 09:13:01 +0000575 FILE *fp = bb_xfopen("/proc/net/ipv6_route", "r");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000576
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000577 bb_printf("Kernel IPv6 routing table\n%-44s%-40s"
578 "Flags Metric Ref Use Iface\n",
579 "Destination", "Next Hop");
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000580
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000581 while (1) {
582 int r;
583 r = fscanf(fp, "%32s%x%*s%x%32s%x%x%x%x%s\n",
584 addr6x+14, &prefix_len, &slen, addr6x+40+7,
585 &metric, &use, &refcnt, &iflags, iface);
586 if (r != 9) {
587 if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
588 break;
589 }
590 ERROR:
591 bb_error_msg_and_die("fscanf");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000592 }
593
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000594 /* Do the addr6x shift-and-insert changes to ':'-delimit addresses.
595 * For now, always do this to validate the proc route format, even
596 * if the interface is down. */
597 {
598 int i = 0;
599 char *p = addr6x+14;
600
601 do {
602 if (!*p) {
603 if (i==40) { /* nul terminator for 1st address? */
604 addr6x[39] = 0; /* Fixup... need 0 instead of ':'. */
605 ++p; /* Skip and continue. */
606 continue;
607 }
608 goto ERROR;
609 }
610 addr6x[i++] = *p++;
611 if (!((i+1)%5)) {
612 addr6x[i++] = ':';
613 }
614 } while (i < 40+28+7);
615 }
616
617 if (!(iflags & RTF_UP)) { /* Skip interfaces that are down. */
Eric Andersen51b8bd62002-07-03 11:46:38 +0000618 continue;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000619 }
Eric Andersen51b8bd62002-07-03 11:46:38 +0000620
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000621 set_flags(flags, (iflags & IPV6_MASK));
Eric Andersen51b8bd62002-07-03 11:46:38 +0000622
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000623 r = 0;
624 do {
625 inet_pton(AF_INET6, addr6x + r,
626 (struct sockaddr *) &snaddr6.sin6_addr);
627 snaddr6.sin6_family = AF_INET6;
628 INET6_rresolve(naddr6, sizeof(naddr6),
629 (struct sockaddr_in6 *) &snaddr6,
630#if 0
631 (noresolve | 0x8000) /* Default instead of *. */
632#else
633 0x0fff /* Apparently, upstream never resolves. */
634#endif
635 );
Eric Andersen51b8bd62002-07-03 11:46:38 +0000636
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000637 if (!r) { /* 1st pass */
638 snprintf(addr6, sizeof(addr6), "%s/%d", naddr6, prefix_len);
639 r += 40;
640 } else { /* 2nd pass */
641 /* Print the info. */
642 bb_printf("%-43s %-39s %-5s %-6d %-2d %7d %-8s\n",
643 addr6, naddr6, flags, metric, refcnt, use, iface);
644 break;
645 }
646 } while (1);
Eric Andersen51b8bd62002-07-03 11:46:38 +0000647 }
648}
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000649
Eric Andersen51b8bd62002-07-03 11:46:38 +0000650#endif
651
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000652#define ROUTE_OPT_A 0x01
653#define ROUTE_OPT_n 0x02
654#define ROUTE_OPT_e 0x04
655#define ROUTE_OPT_INET6 0x08 /* Not an actual option. See below. */
656
657/* 1st byte is offset to next entry offset. 2nd byte is return value. */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000658static const char tbl_verb[] = /* 2nd byte matches RTACTION_* code */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000659 "\006\001add\0"
660 "\006\002del\0"
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000661/* "\011\002delete\0" */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000662 "\010\002delete" /* Since last, we can save a byte. */
663;
664
Eric Andersenec455952001-02-14 08:11:27 +0000665int route_main(int argc, char **argv)
666{
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000667 unsigned long opt;
668 int what;
669 char *family;
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000670
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000671 /* First, remap '-net' and '-host' to avoid getopt problems. */
672 {
673 char **p = argv;
Eric Andersenec455952001-02-14 08:11:27 +0000674
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000675 while (*++p) {
676 if ((strcmp(*p, "-net") == 0) || (strcmp(*p, "-host") == 0)) {
677 p[0][0] = '#';
Robert Griebl820098f2002-05-14 23:03:23 +0000678 }
679 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000680 }
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000681
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000682 opt = bb_getopt_ulflags(argc, argv, "A:ne", &family);
683
684 if ((opt & ROUTE_OPT_A) && strcmp(family, "inet")) {
Glenn L McGrath8ae4cab2002-11-26 09:02:06 +0000685#ifdef CONFIG_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000686 if (strcmp(family, "inet6") == 0) {
687 opt |= ROUTE_OPT_INET6; /* Set flag for ipv6. */
688 } else
689#endif
690 bb_show_usage();
691 }
692
693 argv += optind;
694
695 /* No more args means display the routing table. */
696 if (!*argv) {
697 int noresolve = (opt & ROUTE_OPT_n) ? 0x0fff : 0;
698#ifdef CONFIG_FEATURE_IPV6
699 if (opt & ROUTE_OPT_INET6)
700 INET6_displayroutes(noresolve);
Eric Andersen51b8bd62002-07-03 11:46:38 +0000701 else
702#endif
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000703 displayroutes(noresolve, opt & ROUTE_OPT_e);
704
705 bb_xferror_stdout();
706 bb_fflush_stdout_and_exit(EXIT_SUCCESS);
707 }
708
709 /* Check verb. At the moment, must be add, del, or delete. */
710 what = kw_lookup(tbl_verb, &argv);
711 if (!what || !*argv) { /* Unknown verb or no more args. */
712 bb_show_usage();
Eric Andersenec455952001-02-14 08:11:27 +0000713 }
714
Glenn L McGrath8ae4cab2002-11-26 09:02:06 +0000715#ifdef CONFIG_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000716 if (opt & ROUTE_OPT_INET6)
717 INET6_setroute(what, argv);
718 else
Eric Andersen51b8bd62002-07-03 11:46:38 +0000719#endif
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000720 INET_setroute(what, argv);
721
722 return EXIT_SUCCESS;
Eric Andersenec455952001-02-14 08:11:27 +0000723}