blob: 6165728140fba0a7f19f764f8e4c5125dec74c13 [file] [log] [blame]
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenkoa02a4e92017-10-05 15:19:25 +02002/*
3 * route
Eric Andersenec455952001-02-14 08:11:27 +00004 *
5 * Similar to the standard Unix route, but with only the necessary
Eric Andersen51b8bd62002-07-03 11:46:38 +00006 * parts for AF_INET and AF_INET6
Eric Andersenec455952001-02-14 08:11:27 +00007 *
8 * Bjorn Wesen, Axis Communications AB
9 *
Eric Andersenb9408502001-09-05 19:32:00 +000010 * Author of the original route:
Eric Andersenec455952001-02-14 08:11:27 +000011 * Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
12 * (derived from FvK's 'route.c 1.70 01/04/94')
13 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020014 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenec455952001-02-14 08:11:27 +000015 *
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 */
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 */
Denys Vlasenko47367e12016-11-23 09:05:14 +010027//config:config ROUTE
Denys Vlasenkob097a842018-12-28 03:20:17 +010028//config: bool "route (8.7 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +010029//config: default y
Samuel Thibault77216c32022-10-16 02:04:59 +020030//config: select PLATFORM_LINUX
Denys Vlasenko47367e12016-11-23 09:05:14 +010031//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020032//config: Route displays or manipulates the kernel's IP routing tables.
Denys Vlasenko47367e12016-11-23 09:05:14 +010033
34//applet:IF_ROUTE(APPLET(route, BB_DIR_SBIN, BB_SUID_DROP))
35
36//kbuild:lib-$(CONFIG_ROUTE) += route.o
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000037
Rob Landleyd921b2e2006-08-03 15:41:12 +000038#include <net/route.h>
39#include <net/if.h>
40
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000041#include "libbb.h"
42#include "inet_common.h"
43
Eric Andersen51b8bd62002-07-03 11:46:38 +000044
Eric Andersen863a3e12001-08-27 17:57:27 +000045#ifndef RTF_UP
46/* Keep this in sync with /usr/src/linux/include/linux/route.h */
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000047#define RTF_UP 0x0001 /* route usable */
48#define RTF_GATEWAY 0x0002 /* destination is a gateway */
49#define RTF_HOST 0x0004 /* host entry (net otherwise) */
50#define RTF_REINSTATE 0x0008 /* reinstate route after tmout */
51#define RTF_DYNAMIC 0x0010 /* created dyn. (by redirect) */
52#define RTF_MODIFIED 0x0020 /* modified dyn. (by redirect) */
53#define RTF_MTU 0x0040 /* specific MTU for this route */
Eric Andersen863a3e12001-08-27 17:57:27 +000054#ifndef RTF_MSS
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000055#define RTF_MSS RTF_MTU /* Compatibility :-( */
Eric Andersen863a3e12001-08-27 17:57:27 +000056#endif
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000057#define RTF_WINDOW 0x0080 /* per route window clamping */
58#define RTF_IRTT 0x0100 /* Initial round trip time */
59#define RTF_REJECT 0x0200 /* Reject route */
Denys Vlasenko09020b12015-02-03 19:32:44 +010060#define RTF_NONEXTHOP 0x00200000 /* route with no nexthop */
Eric Andersen863a3e12001-08-27 17:57:27 +000061#endif
62
Denis Vlasenkoff131b92007-04-10 15:42:06 +000063#if defined(SIOCADDRTOLD) || defined(RTF_IRTT) /* route */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000064#define HAVE_NEW_ADDRT 1
65#endif
66
67#if HAVE_NEW_ADDRT
68#define mask_in_addr(x) (((struct sockaddr_in *)&((x).rt_genmask))->sin_addr.s_addr)
69#define full_mask(x) (x)
70#else
71#define mask_in_addr(x) ((x).rt_genmask)
72#define full_mask(x) (((struct sockaddr_in *)&(x))->sin_addr.s_addr)
73#endif
74
75/* The RTACTION entries must agree with tbl_verb[] below! */
Denis Vlasenko703e2022007-01-22 14:12:08 +000076#define RTACTION_ADD 1
77#define RTACTION_DEL 2
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000078
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +010079/* For the various tbl_*[] arrays, the 1st byte is return value. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000080
Denis Vlasenko703e2022007-01-22 14:12:08 +000081#define NET_FLAG 1
82#define HOST_FLAG 2
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000083
84/* We remap '-' to '#' to avoid problems with getopt. */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000085static const char tbl_hash_net_host[] ALIGN1 =
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +010086 "\001#net\0"
87 "\002#host\0"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000088;
89
Denis Vlasenko703e2022007-01-22 14:12:08 +000090#define KW_TAKES_ARG 020
91#define KW_SETS_FLAG 040
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000092
Denis Vlasenko703e2022007-01-22 14:12:08 +000093#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
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000100
Denis Vlasenko703e2022007-01-22 14:12:08 +0000101#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
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000106
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000107static const char tbl_ipvx[] ALIGN1 =
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000108 /* 020 is the "takes an arg" bit */
109#if HAVE_NEW_ADDRT
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100110 "\020metric\0"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000111#endif
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100112 "\021netmask\0"
113 "\022gw\0"
114 "\022gateway\0"
115 "\023mss\0"
116 "\024window\0"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000117#ifdef RTF_IRTT
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100118 "\025irtt\0"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000119#endif
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100120 "\026dev\0"
121 "\026device\0"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000122 /* 040 is the "sets a flag" bit - MUST match flags_ipvx[] values below. */
123#ifdef RTF_REJECT
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100124 "\040reject\0"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000125#endif
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100126 "\041mod\0"
127 "\042dyn\0"
128 "\043reinstate\0"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000129;
130
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100131static const uint16_t flags_ipvx[] ALIGN2 = { /* MUST match tbl_ipvx[] values above. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000132#ifdef RTF_REJECT
133 RTF_REJECT,
134#endif
135 RTF_MODIFIED,
136 RTF_DYNAMIC,
137 RTF_REINSTATE
138};
139
140static int kw_lookup(const char *kwtbl, char ***pargs)
141{
142 if (**pargs) {
143 do {
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100144 if (strcmp(kwtbl + 1, **pargs) == 0) { /* Found a match. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000145 *pargs += 1;
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100146 if (kwtbl[0] & KW_TAKES_ARG) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000147 if (!**pargs) { /* No more args! */
148 bb_show_usage();
149 }
150 *pargs += 1; /* Calling routine will use args[-1]. */
151 }
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100152 return kwtbl[0];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000153 }
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100154 kwtbl += strlen(kwtbl) + 1;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000155 } while (*kwtbl);
156 }
157 return 0;
158}
159
160/* Add or delete a route, depending on action. */
161
Denys Vlasenkoadf922e2009-10-08 14:35:37 +0200162static NOINLINE void INET_setroute(int action, char **args)
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000163{
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100164 /* char buffer instead of bona-fide struct avoids aliasing warning */
165 char rt_buf[sizeof(struct rtentry)];
166 struct rtentry *const rt = (void *)rt_buf;
167
Eric Andersen0cb6f352006-01-30 22:30:41 +0000168 const char *netmask = NULL;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000169 int skfd, isnet, xflag;
170
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000171 /* 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. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100180 memset(rt, 0, sizeof(*rt));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000181
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, '/');
Denis Vlasenko51742f42007-04-12 00:32:05 +0000188 if (prefix) {
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000189 int prefix_len;
190
Denis Vlasenko13858992006-10-08 12:49:22 +0000191 prefix_len = xatoul_range(prefix+1, 0, 32);
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100192 mask_in_addr(*rt) = htonl( ~(0xffffffffUL >> prefix_len));
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000193 *prefix = '\0';
194#if HAVE_NEW_ADDRT
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100195 rt->rt_genmask.sa_family = AF_INET;
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000196#endif
197 } else {
198 /* Default netmask. */
Denys Vlasenko0004e992010-09-01 12:01:17 +0200199 netmask = "default";
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000200 }
Denys Vlasenkob164cdb2020-12-18 23:33:19 +0100201 /* Prefer hostname lookup if -host flag (xflag==1) was given. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100202 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 }
Denis Vlasenko51742f42007-04-12 00:32:05 +0000207 if (prefix) {
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000208 /* 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. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100218 rt->rt_flags = ((isnet) ? RTF_UP : (RTF_UP | RTF_HOST));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000219
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) {
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100225 rt->rt_flags |= flags_ipvx[k & 3];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000226 continue;
227 }
228
229#if HAVE_NEW_ADDRT
230 if (k == KW_IPVx_METRIC) {
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100231 rt->rt_metric = xatoul(args_m1) + 1;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000232 continue;
233 }
234#endif
235
236 if (k == KW_IPVx_NETMASK) {
237 struct sockaddr mask;
238
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100239 if (mask_in_addr(*rt)) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000240 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 }
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100248 rt->rt_genmask = full_mask(mask);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000249 continue;
250 }
251
252 if (k == KW_IPVx_GATEWAY) {
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100253 if (rt->rt_flags & RTF_GATEWAY) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000254 bb_show_usage();
255 }
256
257 isnet = INET_resolve(args_m1,
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100258 (struct sockaddr_in *) &rt->rt_gateway, 1);
259 rt->rt_flags |= RTF_GATEWAY;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000260
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. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100271 rt->rt_flags |= RTF_MSS;
272 rt->rt_mss = xatoul_range(args_m1, 64, 32768);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000273 continue;
274 }
275
276 if (k == KW_IPVx_WINDOW) { /* Check valid window bounds. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100277 rt->rt_flags |= RTF_WINDOW;
278 rt->rt_window = xatoul_range(args_m1, 128, INT_MAX);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000279 continue;
280 }
281
282#ifdef RTF_IRTT
283 if (k == KW_IPVx_IRTT) {
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100284 rt->rt_flags |= RTF_IRTT;
285 rt->rt_irtt = xatoul(args_m1);
Bartosz Golaszewski5d2e4092014-06-22 14:01:13 +0200286 rt->rt_irtt *= (bb_clk_tck() / 100); /* FIXME */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000287#if 0 /* FIXME: do we need to check anything of this? */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100288 if (rt->rt_irtt < 1 || rt->rt_irtt > (120 * HZ)) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000289 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
Denys Vlasenkoe695ac92016-07-19 17:48:55 +0200297 * and doesn't require the dev/device keyword in that case. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100298 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! */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100300 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
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100309 if ((rt->rt_flags & RTF_REJECT) && !rt->rt_dev) {
310 rt->rt_dev = (char*)"lo";
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000311 }
312#endif
313
314 /* sanity checks.. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100315 if (mask_in_addr(*rt)) {
316 uint32_t mask = mask_in_addr(*rt);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000317
318 mask = ~ntohl(mask);
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100319 if ((rt->rt_flags & RTF_HOST) && mask != 0xffffffff) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000320 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 }
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100326 mask = ((struct sockaddr_in *) &rt->rt_dst)->sin_addr.s_addr;
327 if (mask & ~(uint32_t)mask_in_addr(*rt)) {
James Byrne69374872019-07-02 11:35:03 +0200328 bb_simple_error_msg_and_die("netmask and route address conflict");
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000329 }
330 }
331
332 /* Fill out netmask if still unset */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100333 if ((action == RTACTION_ADD) && (rt->rt_flags & RTF_HOST)) {
334 mask_in_addr(*rt) = 0xffffffff;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000335 }
336
337 /* Create a socket to the INET kernel. */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000338 skfd = xsocket(AF_INET, SOCK_DGRAM, 0);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000339
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000340 if (action == RTACTION_ADD)
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100341 xioctl(skfd, SIOCADDRT, rt);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000342 else
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100343 xioctl(skfd, SIOCDELRT, rt);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000344
Rob Landley64175642005-08-22 15:57:50 +0000345 if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000346}
347
Denis Vlasenko703e2022007-01-22 14:12:08 +0000348#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000349
Denys Vlasenkoadf922e2009-10-08 14:35:37 +0200350static NOINLINE void INET6_setroute(int action, char **args)
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000351{
352 struct sockaddr_in6 sa6;
353 struct in6_rtmsg rt;
354 int prefix_len, skfd;
355 const char *devname;
356
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000357 /* We know args isn't NULL from the check in route_main. */
358 const char *target = *args++;
359
Denys Vlasenko0004e992010-09-01 12:01:17 +0200360 if (strcmp(target, "default") == 0) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000361 prefix_len = 0;
362 memset(&sa6, 0, sizeof(sa6));
363 } else {
364 char *cp;
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000365 cp = strchr(target, '/'); /* Yes... const to non is ok. */
366 if (cp) {
367 *cp = '\0';
368 prefix_len = xatoul_range(cp + 1, 0, 128);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000369 } else {
370 prefix_len = 128;
371 }
372 if (INET6_resolve(target, (struct sockaddr_in6 *) &sa6) < 0) {
373 bb_error_msg_and_die("resolving %s", target);
374 }
375 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000376
377 /* Clean out the RTREQ structure. */
Denis Vlasenko703e2022007-01-22 14:12:08 +0000378 memset(&rt, 0, sizeof(rt));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000379
380 memcpy(&rt.rtmsg_dst, sa6.sin6_addr.s6_addr, sizeof(struct in6_addr));
381
382 /* Fill in the other fields. */
383 rt.rtmsg_dst_len = prefix_len;
384 rt.rtmsg_flags = ((prefix_len == 128) ? (RTF_UP|RTF_HOST) : RTF_UP);
385 rt.rtmsg_metric = 1;
386
387 devname = NULL;
388
389 while (*args) {
390 int k = kw_lookup(tbl_ipvx, &args);
391 const char *args_m1 = args[-1];
392
393 if ((k == KW_IPVx_MOD) || (k == KW_IPVx_DYN)) {
394 rt.rtmsg_flags |= flags_ipvx[k & 3];
395 continue;
396 }
397
398 if (k == KW_IPVx_METRIC) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000399 rt.rtmsg_metric = xatoul(args_m1);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000400 continue;
401 }
402
403 if (k == KW_IPVx_GATEWAY) {
404 if (rt.rtmsg_flags & RTF_GATEWAY) {
405 bb_show_usage();
406 }
407
408 if (INET6_resolve(args_m1, (struct sockaddr_in6 *) &sa6) < 0) {
409 bb_error_msg_and_die("resolving %s", args_m1);
410 }
411 memcpy(&rt.rtmsg_gateway, sa6.sin6_addr.s6_addr,
Denys Vlasenko69675782013-01-14 01:34:48 +0100412 sizeof(struct in6_addr));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000413 rt.rtmsg_flags |= RTF_GATEWAY;
414 continue;
415 }
416
417 /* Device is special in that it can be the last arg specified
Denys Vlasenkoe695ac92016-07-19 17:48:55 +0200418 * and doesn't require the dev/device keyword in that case. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000419 if (!devname && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) {
Manuel Novoa III 539fa952004-03-19 23:27:08 +0000420 /* Don't use args_m1 here since args may have changed! */
421 devname = args[-1];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000422 continue;
423 }
424
425 /* Nothing matched. */
426 bb_show_usage();
427 }
428
429 /* Create a socket to the INET6 kernel. */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000430 skfd = xsocket(AF_INET6, SOCK_DGRAM, 0);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000431
432 rt.rtmsg_ifindex = 0;
433
434 if (devname) {
435 struct ifreq ifr;
Denys Vlasenko46ba2462018-03-27 23:54:54 +0200436 /*memset(&ifr, 0, sizeof(ifr)); - SIOCGIFINDEX does not need to clear all */
Denis Vlasenko360d9662008-12-02 18:18:50 +0000437 strncpy_IFNAMSIZ(ifr.ifr_name, devname);
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100438 xioctl(skfd, SIOCGIFINDEX, &ifr);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000439 rt.rtmsg_ifindex = ifr.ifr_ifindex;
440 }
441
442 /* Tell the kernel to accept this route. */
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000443 if (action == RTACTION_ADD)
444 xioctl(skfd, SIOCADDRT, &rt);
445 else
446 xioctl(skfd, SIOCDELRT, &rt);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000447
Rob Landley64175642005-08-22 15:57:50 +0000448 if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000449}
450#endif
451
Denys Vlasenko09020b12015-02-03 19:32:44 +0100452static const
Denys Vlasenko965b7952020-11-30 13:03:03 +0100453IF_NOT_FEATURE_IPV6(uint16_t flagvals[] ALIGN2 = )
454IF_FEATURE_IPV6(uint32_t flagvals[] ALIGN4 = )
455{ /* Must agree with flagchars[]. */
Denys Vlasenko09020b12015-02-03 19:32:44 +0100456 RTF_UP,
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000457 RTF_GATEWAY,
458 RTF_HOST,
459 RTF_REINSTATE,
460 RTF_DYNAMIC,
461 RTF_MODIFIED,
Denis Vlasenko703e2022007-01-22 14:12:08 +0000462#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000463 RTF_DEFAULT,
464 RTF_ADDRCONF,
Denys Vlasenko09020b12015-02-03 19:32:44 +0100465 RTF_CACHE,
466 RTF_REJECT,
467 RTF_NONEXTHOP, /* this one doesn't fit into 16 bits */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000468#endif
469};
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000470/* Must agree with flagvals[]. */
471static const char flagchars[] ALIGN1 =
Denys Vlasenko09020b12015-02-03 19:32:44 +0100472 "UGHRDM"
Denis Vlasenko703e2022007-01-22 14:12:08 +0000473#if ENABLE_FEATURE_IPV6
Denys Vlasenko09020b12015-02-03 19:32:44 +0100474 "DAC!n"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000475#endif
476;
Denys Vlasenko09020b12015-02-03 19:32:44 +0100477#define IPV4_MASK (RTF_UP|RTF_GATEWAY|RTF_HOST|RTF_REINSTATE|RTF_DYNAMIC|RTF_MODIFIED)
478#define IPV6_MASK (RTF_UP|RTF_GATEWAY|RTF_HOST|RTF_DEFAULT|RTF_ADDRCONF|RTF_CACHE|RTF_REJECT|RTF_NONEXTHOP)
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000479
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000480static void set_flags(char *flagstr, int flags)
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000481{
482 int i;
483
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000484 for (i = 0; (*flagstr = flagchars[i]) != 0; i++) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000485 if (flags & flagvals[i]) {
486 ++flagstr;
487 }
488 }
489}
490
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000491/* also used in netstat */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000492void FAST_FUNC bb_displayroutes(int noresolve, int netstatfmt)
Eric Andersen68be2ab2001-02-14 19:26:39 +0000493{
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000494 char devname[64], flags[16], *sdest, *sgw;
Denis Vlasenko87468852007-04-13 23:22:00 +0000495 unsigned long d, g, m;
Denys Vlasenkoa75dcd42015-02-03 19:42:28 +0100496 int r;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000497 int flgs, ref, use, metric, mtu, win, ir;
498 struct sockaddr_in s_addr;
499 struct in_addr mask;
Eric Andersen68be2ab2001-02-14 19:26:39 +0000500
Denis Vlasenko5415c852008-07-21 23:05:26 +0000501 FILE *fp = xfopen_for_read("/proc/net/route");
Eric Andersen68be2ab2001-02-14 19:26:39 +0000502
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000503 printf("Kernel IP routing table\n"
Denys Vlasenko69675782013-01-14 01:34:48 +0100504 "Destination Gateway Genmask Flags %s Iface\n",
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000505 netstatfmt ? " MSS Window irtt" : "Metric Ref Use");
Eric Andersencd8c4362001-11-10 11:22:46 +0000506
Denys Vlasenkoa75dcd42015-02-03 19:42:28 +0100507 /* Skip the first line. */
508 r = fscanf(fp, "%*[^\n]\n");
509 if (r < 0) {
510 /* Empty line, read error, or EOF. Yes, if routing table
511 * is completely empty, /proc/net/route has no header.
512 */
513 goto ERROR;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000514 }
515 while (1) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000516 r = fscanf(fp, "%63s%lx%lx%X%d%d%d%lx%d%d%d\n",
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100517 devname, &d, &g, &flgs, &ref, &use, &metric, &m,
518 &mtu, &win, &ir);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000519 if (r != 11) {
Denys Vlasenkoa75dcd42015-02-03 19:42:28 +0100520 ERROR:
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000521 if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
522 break;
Eric Andersen68be2ab2001-02-14 19:26:39 +0000523 }
James Byrne69374872019-07-02 11:35:03 +0200524 bb_simple_perror_msg_and_die(bb_msg_read_error);
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000525 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000526
527 if (!(flgs & RTF_UP)) { /* Skip interfaces that are down. */
528 continue;
529 }
530
531 set_flags(flags, (flgs & IPV4_MASK));
532#ifdef RTF_REJECT
533 if (flgs & RTF_REJECT) {
534 flags[0] = '!';
535 }
536#endif
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000537 memset(&s_addr, 0, sizeof(struct sockaddr_in));
538 s_addr.sin_family = AF_INET;
539 s_addr.sin_addr.s_addr = d;
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000540 sdest = INET_rresolve(&s_addr, (noresolve | 0x8000), m); /* 'default' instead of '*' */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000541 s_addr.sin_addr.s_addr = g;
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000542 sgw = INET_rresolve(&s_addr, (noresolve | 0x4000), m); /* Host instead of net */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000543 mask.s_addr = m;
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000544 /* "%15.15s" truncates hostnames, do we really want that? */
545 printf("%-15.15s %-15.15s %-16s%-6s", sdest, sgw, inet_ntoa(mask), flags);
546 free(sdest);
547 free(sgw);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000548 if (netstatfmt) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000549 printf("%5d %-5d %6d %s\n", mtu, win, ir, devname);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000550 } else {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000551 printf("%-6d %-2d %7d %s\n", metric, ref, use, devname);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000552 }
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000553 }
Alexey Fomenko708dd4c2011-03-02 04:01:24 +0100554 fclose(fp);
Eric Andersen68be2ab2001-02-14 19:26:39 +0000555}
556
Denis Vlasenko703e2022007-01-22 14:12:08 +0000557#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000558
Denis Vlasenko68404f12008-03-17 09:00:54 +0000559static void INET6_displayroutes(void)
Eric Andersen51b8bd62002-07-03 11:46:38 +0000560{
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000561 char addr6[128], *naddr6;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000562 /* In addr6x, we store both 40-byte ':'-delimited ipv6 addresses.
563 * We read the non-delimited strings into the tail of the buffer
564 * using fscanf and then modify the buffer by shifting forward
565 * while inserting ':'s and the nul terminator for the first string.
566 * Hence the strings are at addr6x and addr6x+40. This generates
567 * _much_ less code than the previous (upstream) approach. */
568 char addr6x[80];
569 char iface[16], flags[16];
Eric Andersen51b8bd62002-07-03 11:46:38 +0000570 int iflags, metric, refcnt, use, prefix_len, slen;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000571 struct sockaddr_in6 snaddr6;
Eric Andersen51b8bd62002-07-03 11:46:38 +0000572
Denis Vlasenko5415c852008-07-21 23:05:26 +0000573 FILE *fp = xfopen_for_read("/proc/net/ipv6_route");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000574
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000575 printf("Kernel IPv6 routing table\n%-44s%-40s"
Denys Vlasenko69675782013-01-14 01:34:48 +0100576 "Flags Metric Ref Use Iface\n",
577 "Destination", "Next Hop");
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000578
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000579 while (1) {
580 int r;
581 r = fscanf(fp, "%32s%x%*s%x%32s%x%x%x%x%s\n",
Denis Vlasenkoa46dd892008-07-12 09:20:44 +0000582 addr6x+14, &prefix_len, &slen, addr6x+40+7,
Denys Vlasenko09020b12015-02-03 19:32:44 +0100583 &metric, &refcnt, &use, &iflags, iface);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000584 if (r != 9) {
585 if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
586 break;
587 }
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000588 ERROR:
James Byrne69374872019-07-02 11:35:03 +0200589 bb_simple_perror_msg_and_die(bb_msg_read_error);
Eric Andersen51b8bd62002-07-03 11:46:38 +0000590 }
591
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000592 /* Do the addr6x shift-and-insert changes to ':'-delimit addresses.
593 * For now, always do this to validate the proc route format, even
594 * if the interface is down. */
595 {
596 int i = 0;
597 char *p = addr6x+14;
598
599 do {
600 if (!*p) {
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000601 if (i == 40) { /* nul terminator for 1st address? */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000602 addr6x[39] = 0; /* Fixup... need 0 instead of ':'. */
603 ++p; /* Skip and continue. */
604 continue;
605 }
606 goto ERROR;
607 }
608 addr6x[i++] = *p++;
Denis Vlasenko703e2022007-01-22 14:12:08 +0000609 if (!((i+1) % 5)) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000610 addr6x[i++] = ':';
611 }
612 } while (i < 40+28+7);
613 }
614
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000615 set_flags(flags, (iflags & IPV6_MASK));
Eric Andersen51b8bd62002-07-03 11:46:38 +0000616
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000617 r = 0;
Denys Vlasenko940c7202011-03-02 04:07:14 +0100618 while (1) {
Tomas Paukrt45272732019-10-08 11:51:48 +0200619 memset(&snaddr6, 0, sizeof(snaddr6));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000620 inet_pton(AF_INET6, addr6x + r,
621 (struct sockaddr *) &snaddr6.sin6_addr);
622 snaddr6.sin6_family = AF_INET6;
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000623 naddr6 = INET6_rresolve((struct sockaddr_in6 *) &snaddr6,
Denys Vlasenko69675782013-01-14 01:34:48 +0100624 0x0fff /* Apparently, upstream never resolves. */
625 );
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000626 if (!r) { /* 1st pass */
627 snprintf(addr6, sizeof(addr6), "%s/%d", naddr6, prefix_len);
628 r += 40;
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000629 free(naddr6);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000630 } else { /* 2nd pass */
631 /* Print the info. */
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000632 printf("%-43s %-39s %-5s %-6d %-2d %7d %-8s\n",
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000633 addr6, naddr6, flags, metric, refcnt, use, iface);
634 free(naddr6);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000635 break;
636 }
Denys Vlasenko940c7202011-03-02 04:07:14 +0100637 }
Eric Andersen51b8bd62002-07-03 11:46:38 +0000638 }
Alexey Fomenko708dd4c2011-03-02 04:01:24 +0100639 fclose(fp);
Eric Andersen51b8bd62002-07-03 11:46:38 +0000640}
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000641
Eric Andersen51b8bd62002-07-03 11:46:38 +0000642#endif
643
Denys Vlasenkob164cdb2020-12-18 23:33:19 +0100644//usage:#define route_trivial_usage
645///////: "[-ne]"IF_FEATURE_IPV6(" [-A inet[6]]")" [{add|del|delete} [-net|-host] TARGET [netmask MASK] [gw GATEWAY] [metric N] [mss BYTES] [window BYTES] [irtt MSEC] [reject] [mod] [dyn] [reinstate] [[dev] IFACE]]"
646///////too wordy
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100647//usage: "[-ne]"IF_FEATURE_IPV6(" [-A inet[6]]")" [{add|del} [-net|-host] TARGET [netmask MASK]\n"
Denys Vlasenkob164cdb2020-12-18 23:33:19 +0100648//usage: " [gw GATEWAY] [metric N] [mss BYTES] [window BYTES] [reject] [IFACE]]"
649//usage:#define route_full_usage "\n\n"
650//usage: "Show or edit kernel routing tables\n"
651//usage: "\n -n Don't resolve names"
652//usage: "\n -e Display other/more information"
653//usage: "\n -A inet" IF_FEATURE_IPV6("[6]") " Select address family"
654
Denis Vlasenko703e2022007-01-22 14:12:08 +0000655#define ROUTE_OPT_A 0x01
656#define ROUTE_OPT_n 0x02
657#define ROUTE_OPT_e 0x04
658#define ROUTE_OPT_INET6 0x08 /* Not an actual option. See below. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000659
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100660/* 1st byte is return value, matches RTACTION_* code */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000661static const char tbl_verb[] ALIGN1 =
Denys Vlasenkoddc6dfd2020-12-19 00:03:38 +0100662 "\001add\0"
663 "\002del\0"
664 "\002delete\0"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000665;
666
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000667int route_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000668int route_main(int argc UNUSED_PARAM, char **argv)
Eric Andersenec455952001-02-14 08:11:27 +0000669{
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000670 unsigned opt;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000671 int what;
672 char *family;
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000673 char **p;
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000674
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000675 /* First, remap '-net' and '-host' to avoid getopt problems. */
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000676 p = argv;
677 while (*++p) {
Denis Vlasenko703e2022007-01-22 14:12:08 +0000678 if (strcmp(*p, "-net") == 0 || strcmp(*p, "-host") == 0) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000679 p[0][0] = '#';
Robert Griebl820098f2002-05-14 23:03:23 +0000680 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000681 }
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000682
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000683 opt = getopt32(argv, "A:ne", &family);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000684
Denis Vlasenko703e2022007-01-22 14:12:08 +0000685 if ((opt & ROUTE_OPT_A) && strcmp(family, "inet") != 0) {
686#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000687 if (strcmp(family, "inet6") == 0) {
688 opt |= ROUTE_OPT_INET6; /* Set flag for ipv6. */
689 } else
690#endif
691 bb_show_usage();
692 }
693
694 argv += optind;
695
696 /* No more args means display the routing table. */
697 if (!*argv) {
698 int noresolve = (opt & ROUTE_OPT_n) ? 0x0fff : 0;
Denis Vlasenko703e2022007-01-22 14:12:08 +0000699#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000700 if (opt & ROUTE_OPT_INET6)
Denis Vlasenko68404f12008-03-17 09:00:54 +0000701 INET6_displayroutes();
Eric Andersen51b8bd62002-07-03 11:46:38 +0000702 else
703#endif
Denis Vlasenko703e2022007-01-22 14:12:08 +0000704 bb_displayroutes(noresolve, opt & ROUTE_OPT_e);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000705
Denys Vlasenko31f45c12022-01-04 23:31:58 +0100706 fflush_stdout_and_exit_SUCCESS();
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000707 }
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
Denis Vlasenko703e2022007-01-22 14:12:08 +0000715#if ENABLE_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}