blob: 4901109f1b2c2d10cbc052de6420d081300b5842 [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
Denys Vlasenko47367e12016-11-23 09:05:14 +010030//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020031//config: Route displays or manipulates the kernel's IP routing tables.
Denys Vlasenko47367e12016-11-23 09:05:14 +010032
33//applet:IF_ROUTE(APPLET(route, BB_DIR_SBIN, BB_SUID_DROP))
34
35//kbuild:lib-$(CONFIG_ROUTE) += route.o
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000036
Pere Orga5bc8c002011-04-11 03:29:49 +020037//usage:#define route_trivial_usage
38//usage: "[{add|del|delete}]"
39//usage:#define route_full_usage "\n\n"
40//usage: "Edit kernel routing tables\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020041//usage: "\n -n Don't resolve names"
42//usage: "\n -e Display other/more information"
43//usage: "\n -A inet" IF_FEATURE_IPV6("{6}") " Select address family"
44
Rob Landleyd921b2e2006-08-03 15:41:12 +000045#include <net/route.h>
46#include <net/if.h>
47
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000048#include "libbb.h"
49#include "inet_common.h"
50
Eric Andersen51b8bd62002-07-03 11:46:38 +000051
Eric Andersen863a3e12001-08-27 17:57:27 +000052#ifndef RTF_UP
53/* Keep this in sync with /usr/src/linux/include/linux/route.h */
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000054#define RTF_UP 0x0001 /* route usable */
55#define RTF_GATEWAY 0x0002 /* destination is a gateway */
56#define RTF_HOST 0x0004 /* host entry (net otherwise) */
57#define RTF_REINSTATE 0x0008 /* reinstate route after tmout */
58#define RTF_DYNAMIC 0x0010 /* created dyn. (by redirect) */
59#define RTF_MODIFIED 0x0020 /* modified dyn. (by redirect) */
60#define RTF_MTU 0x0040 /* specific MTU for this route */
Eric Andersen863a3e12001-08-27 17:57:27 +000061#ifndef RTF_MSS
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000062#define RTF_MSS RTF_MTU /* Compatibility :-( */
Eric Andersen863a3e12001-08-27 17:57:27 +000063#endif
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +000064#define RTF_WINDOW 0x0080 /* per route window clamping */
65#define RTF_IRTT 0x0100 /* Initial round trip time */
66#define RTF_REJECT 0x0200 /* Reject route */
Denys Vlasenko09020b12015-02-03 19:32:44 +010067#define RTF_NONEXTHOP 0x00200000 /* route with no nexthop */
Eric Andersen863a3e12001-08-27 17:57:27 +000068#endif
69
Denis Vlasenkoff131b92007-04-10 15:42:06 +000070#if defined(SIOCADDRTOLD) || defined(RTF_IRTT) /* route */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000071#define HAVE_NEW_ADDRT 1
72#endif
73
74#if HAVE_NEW_ADDRT
75#define mask_in_addr(x) (((struct sockaddr_in *)&((x).rt_genmask))->sin_addr.s_addr)
76#define full_mask(x) (x)
77#else
78#define mask_in_addr(x) ((x).rt_genmask)
79#define full_mask(x) (((struct sockaddr_in *)&(x))->sin_addr.s_addr)
80#endif
81
82/* The RTACTION entries must agree with tbl_verb[] below! */
Denis Vlasenko703e2022007-01-22 14:12:08 +000083#define RTACTION_ADD 1
84#define RTACTION_DEL 2
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000085
86/* For the various tbl_*[] arrays, the 1st byte is the offset to
87 * the next entry and the 2nd byte is return value. */
88
Denis Vlasenko703e2022007-01-22 14:12:08 +000089#define NET_FLAG 1
90#define HOST_FLAG 2
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000091
92/* We remap '-' to '#' to avoid problems with getopt. */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000093static const char tbl_hash_net_host[] ALIGN1 =
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000094 "\007\001#net\0"
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000095/* "\010\002#host\0" */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +000096 "\007\002#host" /* Since last, we can save a byte. */
97;
98
Denis Vlasenko703e2022007-01-22 14:12:08 +000099#define KW_TAKES_ARG 020
100#define KW_SETS_FLAG 040
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000101
Denis Vlasenko703e2022007-01-22 14:12:08 +0000102#define KW_IPVx_METRIC 020
103#define KW_IPVx_NETMASK 021
104#define KW_IPVx_GATEWAY 022
105#define KW_IPVx_MSS 023
106#define KW_IPVx_WINDOW 024
107#define KW_IPVx_IRTT 025
108#define KW_IPVx_DEVICE 026
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000109
Denis Vlasenko703e2022007-01-22 14:12:08 +0000110#define KW_IPVx_FLAG_ONLY 040
111#define KW_IPVx_REJECT 040
112#define KW_IPVx_MOD 041
113#define KW_IPVx_DYN 042
114#define KW_IPVx_REINSTATE 043
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000115
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000116static const char tbl_ipvx[] ALIGN1 =
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000117 /* 020 is the "takes an arg" bit */
118#if HAVE_NEW_ADDRT
119 "\011\020metric\0"
120#endif
121 "\012\021netmask\0"
122 "\005\022gw\0"
123 "\012\022gateway\0"
124 "\006\023mss\0"
125 "\011\024window\0"
126#ifdef RTF_IRTT
127 "\007\025irtt\0"
128#endif
129 "\006\026dev\0"
130 "\011\026device\0"
131 /* 040 is the "sets a flag" bit - MUST match flags_ipvx[] values below. */
132#ifdef RTF_REJECT
133 "\011\040reject\0"
134#endif
135 "\006\041mod\0"
136 "\006\042dyn\0"
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000137/* "\014\043reinstate\0" */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000138 "\013\043reinstate" /* Since last, we can save a byte. */
139;
140
Denys Vlasenko09020b12015-02-03 19:32:44 +0100141static const uint16_t flags_ipvx[] = { /* MUST match tbl_ipvx[] values above. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000142#ifdef RTF_REJECT
143 RTF_REJECT,
144#endif
145 RTF_MODIFIED,
146 RTF_DYNAMIC,
147 RTF_REINSTATE
148};
149
150static int kw_lookup(const char *kwtbl, char ***pargs)
151{
152 if (**pargs) {
153 do {
154 if (strcmp(kwtbl+2, **pargs) == 0) { /* Found a match. */
155 *pargs += 1;
156 if (kwtbl[1] & KW_TAKES_ARG) {
157 if (!**pargs) { /* No more args! */
158 bb_show_usage();
159 }
160 *pargs += 1; /* Calling routine will use args[-1]. */
161 }
162 return kwtbl[1];
163 }
164 kwtbl += *kwtbl;
165 } while (*kwtbl);
166 }
167 return 0;
168}
169
170/* Add or delete a route, depending on action. */
171
Denys Vlasenkoadf922e2009-10-08 14:35:37 +0200172static NOINLINE void INET_setroute(int action, char **args)
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000173{
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100174 /* char buffer instead of bona-fide struct avoids aliasing warning */
175 char rt_buf[sizeof(struct rtentry)];
176 struct rtentry *const rt = (void *)rt_buf;
177
Eric Andersen0cb6f352006-01-30 22:30:41 +0000178 const char *netmask = NULL;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000179 int skfd, isnet, xflag;
180
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000181 /* Grab the -net or -host options. Remember they were transformed. */
182 xflag = kw_lookup(tbl_hash_net_host, &args);
183
184 /* If we did grab -net or -host, make sure we still have an arg left. */
185 if (*args == NULL) {
186 bb_show_usage();
187 }
188
189 /* Clean out the RTREQ structure. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100190 memset(rt, 0, sizeof(*rt));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000191
192 {
193 const char *target = *args++;
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000194 char *prefix;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000195
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000196 /* recognize x.x.x.x/mask format. */
197 prefix = strchr(target, '/');
Denis Vlasenko51742f42007-04-12 00:32:05 +0000198 if (prefix) {
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000199 int prefix_len;
200
Denis Vlasenko13858992006-10-08 12:49:22 +0000201 prefix_len = xatoul_range(prefix+1, 0, 32);
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100202 mask_in_addr(*rt) = htonl( ~(0xffffffffUL >> prefix_len));
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000203 *prefix = '\0';
204#if HAVE_NEW_ADDRT
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100205 rt->rt_genmask.sa_family = AF_INET;
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000206#endif
207 } else {
208 /* Default netmask. */
Denys Vlasenko0004e992010-09-01 12:01:17 +0200209 netmask = "default";
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000210 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000211 /* Prefer hostname lookup is -host flag (xflag==1) was given. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100212 isnet = INET_resolve(target, (struct sockaddr_in *) &rt->rt_dst,
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000213 (xflag & HOST_FLAG));
214 if (isnet < 0) {
215 bb_error_msg_and_die("resolving %s", target);
216 }
Denis Vlasenko51742f42007-04-12 00:32:05 +0000217 if (prefix) {
"Vladimir N. Oleynik"5775aa22006-01-25 16:17:58 +0000218 /* do not destroy prefix for process args */
219 *prefix = '/';
220 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000221 }
222
223 if (xflag) { /* Reinit isnet if -net or -host was specified. */
224 isnet = (xflag & NET_FLAG);
225 }
226
227 /* Fill in the other fields. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100228 rt->rt_flags = ((isnet) ? RTF_UP : (RTF_UP | RTF_HOST));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000229
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000230 while (*args) {
231 int k = kw_lookup(tbl_ipvx, &args);
232 const char *args_m1 = args[-1];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000233
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000234 if (k & KW_IPVx_FLAG_ONLY) {
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100235 rt->rt_flags |= flags_ipvx[k & 3];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000236 continue;
237 }
238
239#if HAVE_NEW_ADDRT
240 if (k == KW_IPVx_METRIC) {
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100241 rt->rt_metric = xatoul(args_m1) + 1;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000242 continue;
243 }
244#endif
245
246 if (k == KW_IPVx_NETMASK) {
247 struct sockaddr mask;
248
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100249 if (mask_in_addr(*rt)) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000250 bb_show_usage();
251 }
252
253 netmask = args_m1;
254 isnet = INET_resolve(netmask, (struct sockaddr_in *) &mask, 0);
255 if (isnet < 0) {
256 bb_error_msg_and_die("resolving %s", netmask);
257 }
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100258 rt->rt_genmask = full_mask(mask);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000259 continue;
260 }
261
262 if (k == KW_IPVx_GATEWAY) {
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100263 if (rt->rt_flags & RTF_GATEWAY) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000264 bb_show_usage();
265 }
266
267 isnet = INET_resolve(args_m1,
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100268 (struct sockaddr_in *) &rt->rt_gateway, 1);
269 rt->rt_flags |= RTF_GATEWAY;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000270
271 if (isnet) {
272 if (isnet < 0) {
273 bb_error_msg_and_die("resolving %s", args_m1);
274 }
275 bb_error_msg_and_die("gateway %s is a NETWORK", args_m1);
276 }
277 continue;
278 }
279
280 if (k == KW_IPVx_MSS) { /* Check valid MSS bounds. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100281 rt->rt_flags |= RTF_MSS;
282 rt->rt_mss = xatoul_range(args_m1, 64, 32768);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000283 continue;
284 }
285
286 if (k == KW_IPVx_WINDOW) { /* Check valid window bounds. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100287 rt->rt_flags |= RTF_WINDOW;
288 rt->rt_window = xatoul_range(args_m1, 128, INT_MAX);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000289 continue;
290 }
291
292#ifdef RTF_IRTT
293 if (k == KW_IPVx_IRTT) {
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100294 rt->rt_flags |= RTF_IRTT;
295 rt->rt_irtt = xatoul(args_m1);
Bartosz Golaszewski5d2e4092014-06-22 14:01:13 +0200296 rt->rt_irtt *= (bb_clk_tck() / 100); /* FIXME */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000297#if 0 /* FIXME: do we need to check anything of this? */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100298 if (rt->rt_irtt < 1 || rt->rt_irtt > (120 * HZ)) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000299 bb_error_msg_and_die("bad irtt");
300 }
301#endif
302 continue;
303 }
304#endif
305
306 /* Device is special in that it can be the last arg specified
Denys Vlasenkoe695ac92016-07-19 17:48:55 +0200307 * and doesn't require the dev/device keyword in that case. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100308 if (!rt->rt_dev && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) {
Manuel Novoa III 539fa952004-03-19 23:27:08 +0000309 /* Don't use args_m1 here since args may have changed! */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100310 rt->rt_dev = args[-1];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000311 continue;
312 }
313
314 /* Nothing matched. */
315 bb_show_usage();
316 }
317
318#ifdef RTF_REJECT
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100319 if ((rt->rt_flags & RTF_REJECT) && !rt->rt_dev) {
320 rt->rt_dev = (char*)"lo";
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000321 }
322#endif
323
324 /* sanity checks.. */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100325 if (mask_in_addr(*rt)) {
326 uint32_t mask = mask_in_addr(*rt);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000327
328 mask = ~ntohl(mask);
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100329 if ((rt->rt_flags & RTF_HOST) && mask != 0xffffffff) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000330 bb_error_msg_and_die("netmask %.8x and host route conflict",
331 (unsigned int) mask);
332 }
333 if (mask & (mask + 1)) {
334 bb_error_msg_and_die("bogus netmask %s", netmask);
335 }
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100336 mask = ((struct sockaddr_in *) &rt->rt_dst)->sin_addr.s_addr;
337 if (mask & ~(uint32_t)mask_in_addr(*rt)) {
James Byrne69374872019-07-02 11:35:03 +0200338 bb_simple_error_msg_and_die("netmask and route address conflict");
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000339 }
340 }
341
342 /* Fill out netmask if still unset */
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100343 if ((action == RTACTION_ADD) && (rt->rt_flags & RTF_HOST)) {
344 mask_in_addr(*rt) = 0xffffffff;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000345 }
346
347 /* Create a socket to the INET kernel. */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000348 skfd = xsocket(AF_INET, SOCK_DGRAM, 0);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000349
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000350 if (action == RTACTION_ADD)
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100351 xioctl(skfd, SIOCADDRT, rt);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000352 else
Denys Vlasenkob3b6c8b2011-01-20 11:29:00 +0100353 xioctl(skfd, SIOCDELRT, rt);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000354
Rob Landley64175642005-08-22 15:57:50 +0000355 if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000356}
357
Denis Vlasenko703e2022007-01-22 14:12:08 +0000358#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000359
Denys Vlasenkoadf922e2009-10-08 14:35:37 +0200360static NOINLINE void INET6_setroute(int action, char **args)
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000361{
362 struct sockaddr_in6 sa6;
363 struct in6_rtmsg rt;
364 int prefix_len, skfd;
365 const char *devname;
366
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000367 /* We know args isn't NULL from the check in route_main. */
368 const char *target = *args++;
369
Denys Vlasenko0004e992010-09-01 12:01:17 +0200370 if (strcmp(target, "default") == 0) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000371 prefix_len = 0;
372 memset(&sa6, 0, sizeof(sa6));
373 } else {
374 char *cp;
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000375 cp = strchr(target, '/'); /* Yes... const to non is ok. */
376 if (cp) {
377 *cp = '\0';
378 prefix_len = xatoul_range(cp + 1, 0, 128);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000379 } else {
380 prefix_len = 128;
381 }
382 if (INET6_resolve(target, (struct sockaddr_in6 *) &sa6) < 0) {
383 bb_error_msg_and_die("resolving %s", target);
384 }
385 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000386
387 /* Clean out the RTREQ structure. */
Denis Vlasenko703e2022007-01-22 14:12:08 +0000388 memset(&rt, 0, sizeof(rt));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000389
390 memcpy(&rt.rtmsg_dst, sa6.sin6_addr.s6_addr, sizeof(struct in6_addr));
391
392 /* Fill in the other fields. */
393 rt.rtmsg_dst_len = prefix_len;
394 rt.rtmsg_flags = ((prefix_len == 128) ? (RTF_UP|RTF_HOST) : RTF_UP);
395 rt.rtmsg_metric = 1;
396
397 devname = NULL;
398
399 while (*args) {
400 int k = kw_lookup(tbl_ipvx, &args);
401 const char *args_m1 = args[-1];
402
403 if ((k == KW_IPVx_MOD) || (k == KW_IPVx_DYN)) {
404 rt.rtmsg_flags |= flags_ipvx[k & 3];
405 continue;
406 }
407
408 if (k == KW_IPVx_METRIC) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000409 rt.rtmsg_metric = xatoul(args_m1);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000410 continue;
411 }
412
413 if (k == KW_IPVx_GATEWAY) {
414 if (rt.rtmsg_flags & RTF_GATEWAY) {
415 bb_show_usage();
416 }
417
418 if (INET6_resolve(args_m1, (struct sockaddr_in6 *) &sa6) < 0) {
419 bb_error_msg_and_die("resolving %s", args_m1);
420 }
421 memcpy(&rt.rtmsg_gateway, sa6.sin6_addr.s6_addr,
Denys Vlasenko69675782013-01-14 01:34:48 +0100422 sizeof(struct in6_addr));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000423 rt.rtmsg_flags |= RTF_GATEWAY;
424 continue;
425 }
426
427 /* Device is special in that it can be the last arg specified
Denys Vlasenkoe695ac92016-07-19 17:48:55 +0200428 * and doesn't require the dev/device keyword in that case. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000429 if (!devname && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) {
Manuel Novoa III 539fa952004-03-19 23:27:08 +0000430 /* Don't use args_m1 here since args may have changed! */
431 devname = args[-1];
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000432 continue;
433 }
434
435 /* Nothing matched. */
436 bb_show_usage();
437 }
438
439 /* Create a socket to the INET6 kernel. */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000440 skfd = xsocket(AF_INET6, SOCK_DGRAM, 0);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000441
442 rt.rtmsg_ifindex = 0;
443
444 if (devname) {
445 struct ifreq ifr;
Denys Vlasenko46ba2462018-03-27 23:54:54 +0200446 /*memset(&ifr, 0, sizeof(ifr)); - SIOCGIFINDEX does not need to clear all */
Denis Vlasenko360d9662008-12-02 18:18:50 +0000447 strncpy_IFNAMSIZ(ifr.ifr_name, devname);
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100448 xioctl(skfd, SIOCGIFINDEX, &ifr);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000449 rt.rtmsg_ifindex = ifr.ifr_ifindex;
450 }
451
452 /* Tell the kernel to accept this route. */
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000453 if (action == RTACTION_ADD)
454 xioctl(skfd, SIOCADDRT, &rt);
455 else
456 xioctl(skfd, SIOCDELRT, &rt);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000457
Rob Landley64175642005-08-22 15:57:50 +0000458 if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000459}
460#endif
461
Denys Vlasenko09020b12015-02-03 19:32:44 +0100462static const
Denys Vlasenko965b7952020-11-30 13:03:03 +0100463IF_NOT_FEATURE_IPV6(uint16_t flagvals[] ALIGN2 = )
464IF_FEATURE_IPV6(uint32_t flagvals[] ALIGN4 = )
465{ /* Must agree with flagchars[]. */
Denys Vlasenko09020b12015-02-03 19:32:44 +0100466 RTF_UP,
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000467 RTF_GATEWAY,
468 RTF_HOST,
469 RTF_REINSTATE,
470 RTF_DYNAMIC,
471 RTF_MODIFIED,
Denis Vlasenko703e2022007-01-22 14:12:08 +0000472#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000473 RTF_DEFAULT,
474 RTF_ADDRCONF,
Denys Vlasenko09020b12015-02-03 19:32:44 +0100475 RTF_CACHE,
476 RTF_REJECT,
477 RTF_NONEXTHOP, /* this one doesn't fit into 16 bits */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000478#endif
479};
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000480/* Must agree with flagvals[]. */
481static const char flagchars[] ALIGN1 =
Denys Vlasenko09020b12015-02-03 19:32:44 +0100482 "UGHRDM"
Denis Vlasenko703e2022007-01-22 14:12:08 +0000483#if ENABLE_FEATURE_IPV6
Denys Vlasenko09020b12015-02-03 19:32:44 +0100484 "DAC!n"
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000485#endif
486;
Denys Vlasenko09020b12015-02-03 19:32:44 +0100487#define IPV4_MASK (RTF_UP|RTF_GATEWAY|RTF_HOST|RTF_REINSTATE|RTF_DYNAMIC|RTF_MODIFIED)
488#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 +0000489
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000490static void set_flags(char *flagstr, int flags)
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000491{
492 int i;
493
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000494 for (i = 0; (*flagstr = flagchars[i]) != 0; i++) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000495 if (flags & flagvals[i]) {
496 ++flagstr;
497 }
498 }
499}
500
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000501/* also used in netstat */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000502void FAST_FUNC bb_displayroutes(int noresolve, int netstatfmt)
Eric Andersen68be2ab2001-02-14 19:26:39 +0000503{
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000504 char devname[64], flags[16], *sdest, *sgw;
Denis Vlasenko87468852007-04-13 23:22:00 +0000505 unsigned long d, g, m;
Denys Vlasenkoa75dcd42015-02-03 19:42:28 +0100506 int r;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000507 int flgs, ref, use, metric, mtu, win, ir;
508 struct sockaddr_in s_addr;
509 struct in_addr mask;
Eric Andersen68be2ab2001-02-14 19:26:39 +0000510
Denis Vlasenko5415c852008-07-21 23:05:26 +0000511 FILE *fp = xfopen_for_read("/proc/net/route");
Eric Andersen68be2ab2001-02-14 19:26:39 +0000512
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000513 printf("Kernel IP routing table\n"
Denys Vlasenko69675782013-01-14 01:34:48 +0100514 "Destination Gateway Genmask Flags %s Iface\n",
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000515 netstatfmt ? " MSS Window irtt" : "Metric Ref Use");
Eric Andersencd8c4362001-11-10 11:22:46 +0000516
Denys Vlasenkoa75dcd42015-02-03 19:42:28 +0100517 /* Skip the first line. */
518 r = fscanf(fp, "%*[^\n]\n");
519 if (r < 0) {
520 /* Empty line, read error, or EOF. Yes, if routing table
521 * is completely empty, /proc/net/route has no header.
522 */
523 goto ERROR;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000524 }
525 while (1) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000526 r = fscanf(fp, "%63s%lx%lx%X%d%d%d%lx%d%d%d\n",
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100527 devname, &d, &g, &flgs, &ref, &use, &metric, &m,
528 &mtu, &win, &ir);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000529 if (r != 11) {
Denys Vlasenkoa75dcd42015-02-03 19:42:28 +0100530 ERROR:
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000531 if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
532 break;
Eric Andersen68be2ab2001-02-14 19:26:39 +0000533 }
James Byrne69374872019-07-02 11:35:03 +0200534 bb_simple_perror_msg_and_die(bb_msg_read_error);
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000535 }
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000536
537 if (!(flgs & RTF_UP)) { /* Skip interfaces that are down. */
538 continue;
539 }
540
541 set_flags(flags, (flgs & IPV4_MASK));
542#ifdef RTF_REJECT
543 if (flgs & RTF_REJECT) {
544 flags[0] = '!';
545 }
546#endif
547
548 memset(&s_addr, 0, sizeof(struct sockaddr_in));
549 s_addr.sin_family = AF_INET;
550 s_addr.sin_addr.s_addr = d;
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000551 sdest = INET_rresolve(&s_addr, (noresolve | 0x8000), m); /* 'default' instead of '*' */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000552 s_addr.sin_addr.s_addr = g;
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000553 sgw = INET_rresolve(&s_addr, (noresolve | 0x4000), m); /* Host instead of net */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000554 mask.s_addr = m;
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000555 /* "%15.15s" truncates hostnames, do we really want that? */
556 printf("%-15.15s %-15.15s %-16s%-6s", sdest, sgw, inet_ntoa(mask), flags);
557 free(sdest);
558 free(sgw);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000559 if (netstatfmt) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000560 printf("%5d %-5d %6d %s\n", mtu, win, ir, devname);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000561 } else {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000562 printf("%-6d %-2d %7d %s\n", metric, ref, use, devname);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000563 }
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000564 }
Alexey Fomenko708dd4c2011-03-02 04:01:24 +0100565 fclose(fp);
Eric Andersen68be2ab2001-02-14 19:26:39 +0000566}
567
Denis Vlasenko703e2022007-01-22 14:12:08 +0000568#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000569
Denis Vlasenko68404f12008-03-17 09:00:54 +0000570static void INET6_displayroutes(void)
Eric Andersen51b8bd62002-07-03 11:46:38 +0000571{
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000572 char addr6[128], *naddr6;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000573 /* In addr6x, we store both 40-byte ':'-delimited ipv6 addresses.
574 * We read the non-delimited strings into the tail of the buffer
575 * using fscanf and then modify the buffer by shifting forward
576 * while inserting ':'s and the nul terminator for the first string.
577 * Hence the strings are at addr6x and addr6x+40. This generates
578 * _much_ less code than the previous (upstream) approach. */
579 char addr6x[80];
580 char iface[16], flags[16];
Eric Andersen51b8bd62002-07-03 11:46:38 +0000581 int iflags, metric, refcnt, use, prefix_len, slen;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000582 struct sockaddr_in6 snaddr6;
Eric Andersen51b8bd62002-07-03 11:46:38 +0000583
Denis Vlasenko5415c852008-07-21 23:05:26 +0000584 FILE *fp = xfopen_for_read("/proc/net/ipv6_route");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000585
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000586 printf("Kernel IPv6 routing table\n%-44s%-40s"
Denys Vlasenko69675782013-01-14 01:34:48 +0100587 "Flags Metric Ref Use Iface\n",
588 "Destination", "Next Hop");
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000589
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000590 while (1) {
591 int r;
592 r = fscanf(fp, "%32s%x%*s%x%32s%x%x%x%x%s\n",
Denis Vlasenkoa46dd892008-07-12 09:20:44 +0000593 addr6x+14, &prefix_len, &slen, addr6x+40+7,
Denys Vlasenko09020b12015-02-03 19:32:44 +0100594 &metric, &refcnt, &use, &iflags, iface);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000595 if (r != 9) {
596 if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
597 break;
598 }
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000599 ERROR:
James Byrne69374872019-07-02 11:35:03 +0200600 bb_simple_perror_msg_and_die(bb_msg_read_error);
Eric Andersen51b8bd62002-07-03 11:46:38 +0000601 }
602
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000603 /* Do the addr6x shift-and-insert changes to ':'-delimit addresses.
604 * For now, always do this to validate the proc route format, even
605 * if the interface is down. */
606 {
607 int i = 0;
608 char *p = addr6x+14;
609
610 do {
611 if (!*p) {
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000612 if (i == 40) { /* nul terminator for 1st address? */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000613 addr6x[39] = 0; /* Fixup... need 0 instead of ':'. */
614 ++p; /* Skip and continue. */
615 continue;
616 }
617 goto ERROR;
618 }
619 addr6x[i++] = *p++;
Denis Vlasenko703e2022007-01-22 14:12:08 +0000620 if (!((i+1) % 5)) {
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000621 addr6x[i++] = ':';
622 }
623 } while (i < 40+28+7);
624 }
625
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000626 set_flags(flags, (iflags & IPV6_MASK));
Eric Andersen51b8bd62002-07-03 11:46:38 +0000627
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000628 r = 0;
Denys Vlasenko940c7202011-03-02 04:07:14 +0100629 while (1) {
Tomas Paukrt45272732019-10-08 11:51:48 +0200630 memset(&snaddr6, 0, sizeof(snaddr6));
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000631 inet_pton(AF_INET6, addr6x + r,
632 (struct sockaddr *) &snaddr6.sin6_addr);
633 snaddr6.sin6_family = AF_INET6;
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000634 naddr6 = INET6_rresolve((struct sockaddr_in6 *) &snaddr6,
Denys Vlasenko69675782013-01-14 01:34:48 +0100635 0x0fff /* Apparently, upstream never resolves. */
636 );
Eric Andersen51b8bd62002-07-03 11:46:38 +0000637
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000638 if (!r) { /* 1st pass */
639 snprintf(addr6, sizeof(addr6), "%s/%d", naddr6, prefix_len);
640 r += 40;
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000641 free(naddr6);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000642 } else { /* 2nd pass */
643 /* Print the info. */
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000644 printf("%-43s %-39s %-5s %-6d %-2d %7d %-8s\n",
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000645 addr6, naddr6, flags, metric, refcnt, use, iface);
646 free(naddr6);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000647 break;
648 }
Denys Vlasenko940c7202011-03-02 04:07:14 +0100649 }
Eric Andersen51b8bd62002-07-03 11:46:38 +0000650 }
Alexey Fomenko708dd4c2011-03-02 04:01:24 +0100651 fclose(fp);
Eric Andersen51b8bd62002-07-03 11:46:38 +0000652}
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000653
Eric Andersen51b8bd62002-07-03 11:46:38 +0000654#endif
655
Denis Vlasenko703e2022007-01-22 14:12:08 +0000656#define ROUTE_OPT_A 0x01
657#define ROUTE_OPT_n 0x02
658#define ROUTE_OPT_e 0x04
659#define ROUTE_OPT_INET6 0x08 /* Not an actual option. See below. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000660
661/* 1st byte is offset to next entry offset. 2nd byte is return value. */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000662/* 2nd byte matches RTACTION_* code */
663static const char tbl_verb[] ALIGN1 =
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000664 "\006\001add\0"
665 "\006\002del\0"
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000666/* "\011\002delete\0" */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000667 "\010\002delete" /* Since it's last, we can save a byte. */
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000668;
669
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000670int route_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000671int route_main(int argc UNUSED_PARAM, char **argv)
Eric Andersenec455952001-02-14 08:11:27 +0000672{
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000673 unsigned opt;
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000674 int what;
675 char *family;
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000676 char **p;
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000677
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000678 /* First, remap '-net' and '-host' to avoid getopt problems. */
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000679 p = argv;
680 while (*++p) {
Denis Vlasenko703e2022007-01-22 14:12:08 +0000681 if (strcmp(*p, "-net") == 0 || strcmp(*p, "-host") == 0) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000682 p[0][0] = '#';
Robert Griebl820098f2002-05-14 23:03:23 +0000683 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000684 }
Glenn L McGrath7c58e9b2002-08-22 18:24:43 +0000685
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000686 opt = getopt32(argv, "A:ne", &family);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000687
Denis Vlasenko703e2022007-01-22 14:12:08 +0000688 if ((opt & ROUTE_OPT_A) && strcmp(family, "inet") != 0) {
689#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000690 if (strcmp(family, "inet6") == 0) {
691 opt |= ROUTE_OPT_INET6; /* Set flag for ipv6. */
692 } else
693#endif
694 bb_show_usage();
695 }
696
697 argv += optind;
698
699 /* No more args means display the routing table. */
700 if (!*argv) {
701 int noresolve = (opt & ROUTE_OPT_n) ? 0x0fff : 0;
Denis Vlasenko703e2022007-01-22 14:12:08 +0000702#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000703 if (opt & ROUTE_OPT_INET6)
Denis Vlasenko68404f12008-03-17 09:00:54 +0000704 INET6_displayroutes();
Eric Andersen51b8bd62002-07-03 11:46:38 +0000705 else
706#endif
Denis Vlasenko703e2022007-01-22 14:12:08 +0000707 bb_displayroutes(noresolve, opt & ROUTE_OPT_e);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000708
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000709 fflush_stdout_and_exit(EXIT_SUCCESS);
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000710 }
711
712 /* Check verb. At the moment, must be add, del, or delete. */
713 what = kw_lookup(tbl_verb, &argv);
714 if (!what || !*argv) { /* Unknown verb or no more args. */
715 bb_show_usage();
Eric Andersenec455952001-02-14 08:11:27 +0000716 }
717
Denis Vlasenko703e2022007-01-22 14:12:08 +0000718#if ENABLE_FEATURE_IPV6
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000719 if (opt & ROUTE_OPT_INET6)
720 INET6_setroute(what, argv);
721 else
Eric Andersen51b8bd62002-07-03 11:46:38 +0000722#endif
Manuel Novoa III 7d0c5192004-03-10 07:42:38 +0000723 INET_setroute(what, argv);
724
725 return EXIT_SUCCESS;
Eric Andersenec455952001-02-14 08:11:27 +0000726}