blob: 5ded99b2e8b6a34c25c051d8dcb01f734cf3658a [file] [log] [blame]
Bernhard Reutner-Fischerd1d23a62006-01-12 12:08:46 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00002/*
3 * iproute.c "ip route".
4 *
Bernhard Reutner-Fischerab187822005-10-26 10:47:26 +00005 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00006 *
7 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
8 *
9 *
10 * Changes:
11 *
12 * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
13 * Kunihiro Ishiguro <kunihiro@zebra.org> 001102: rtnh_ifindex was not initialized
14 */
15
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000016#include "ip_common.h" /* #include "libbb.h" is inside */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000017#include "rt_names.h"
18#include "utils.h"
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000019
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000020#ifndef RTAX_RTTVAR
21#define RTAX_RTTVAR RTAX_HOPS
22#endif
23
24
Denis Vlasenko540a2a12007-04-07 01:14:45 +000025typedef struct filter_t {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000026 int tb;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000027 int flushed;
28 char *flushb;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000029 int flushp;
30 int flushe;
31 struct rtnl_handle *rth;
32 int protocol, protocolmask;
33 int scope, scopemask;
34 int type, typemask;
35 int tos, tosmask;
36 int iif, iifmask;
37 int oif, oifmask;
38 int realm, realmmask;
39 inet_prefix rprefsrc;
40 inet_prefix rvia;
41 inet_prefix rdst;
42 inet_prefix mdst;
43 inet_prefix rsrc;
44 inet_prefix msrc;
Denis Vlasenko540a2a12007-04-07 01:14:45 +000045} filter_t;
46
47#define filter (*(filter_t*)&bb_common_bufsiz1)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000048
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000049static int flush_update(void)
50{
51 if (rtnl_send(filter.rth, filter.flushb, filter.flushp) < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +000052 bb_perror_msg("failed to send flush request");
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000053 return -1;
54 }
55 filter.flushp = 0;
56 return 0;
57}
58
Denis Vlasenkoc5193202006-12-31 19:07:23 +000059static unsigned get_hz(void)
Denis Vlasenko13463af2006-12-31 18:58:32 +000060{
Denis Vlasenkoc5193202006-12-31 19:07:23 +000061 static unsigned hz_internal;
Denis Vlasenko13463af2006-12-31 18:58:32 +000062 FILE *fp;
63
64 if (hz_internal)
65 return hz_internal;
66
67 fp = fopen("/proc/net/psched", "r");
68 if (fp) {
69 unsigned nom, denom;
70
71 if (fscanf(fp, "%*08x%*08x%08x%08x", &nom, &denom) == 2)
72 if (nom == 1000000)
73 hz_internal = denom;
74 fclose(fp);
75 }
76 if (!hz_internal)
77 hz_internal = sysconf(_SC_CLK_TCK);
78 return hz_internal;
79}
80
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000081static int print_route(struct sockaddr_nl *who ATTRIBUTE_UNUSED,
Bernhard Reutner-Fischerd1d23a62006-01-12 12:08:46 +000082 struct nlmsghdr *n, void *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000083{
84 FILE *fp = (FILE*)arg;
85 struct rtmsg *r = NLMSG_DATA(n);
86 int len = n->nlmsg_len;
87 struct rtattr * tb[RTA_MAX+1];
88 char abuf[256];
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +000089 inet_prefix dst;
90 inet_prefix src;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000091 int host_len = -1;
92 SPRINT_BUF(b1);
Eric Andersenc7bda1c2004-03-15 08:29:22 +000093
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000094
95 if (n->nlmsg_type != RTM_NEWROUTE && n->nlmsg_type != RTM_DELROUTE) {
96 fprintf(stderr, "Not a route: %08x %08x %08x\n",
97 n->nlmsg_len, n->nlmsg_type, n->nlmsg_flags);
98 return 0;
99 }
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000100 if (filter.flushb && n->nlmsg_type != RTM_NEWROUTE)
101 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000102 len -= NLMSG_LENGTH(sizeof(*r));
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000103 if (len < 0)
104 bb_error_msg_and_die("wrong nlmsg len %d", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000105
106 if (r->rtm_family == AF_INET6)
107 host_len = 128;
108 else if (r->rtm_family == AF_INET)
109 host_len = 32;
110
111 if (r->rtm_family == AF_INET6) {
112 if (filter.tb) {
113 if (filter.tb < 0) {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000114 if (!(r->rtm_flags & RTM_F_CLONED)) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000115 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000116 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000117 } else {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000118 if (r->rtm_flags & RTM_F_CLONED) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000119 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000120 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000121 if (filter.tb == RT_TABLE_LOCAL) {
Glenn L McGrath16528552002-11-28 11:17:19 +0000122 if (r->rtm_type != RTN_LOCAL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000123 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000124 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000125 } else if (filter.tb == RT_TABLE_MAIN) {
Glenn L McGrath16528552002-11-28 11:17:19 +0000126 if (r->rtm_type == RTN_LOCAL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000127 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000128 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000129 } else {
130 return 0;
131 }
132 }
133 }
134 } else {
Glenn L McGrath16528552002-11-28 11:17:19 +0000135 if (filter.tb > 0 && filter.tb != r->rtm_table) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000136 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000137 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000138 }
139 if (filter.rdst.family &&
Glenn L McGrath16528552002-11-28 11:17:19 +0000140 (r->rtm_family != filter.rdst.family || filter.rdst.bitlen > r->rtm_dst_len)) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000141 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000142 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000143 if (filter.mdst.family &&
144 (r->rtm_family != filter.mdst.family ||
Glenn L McGrath16528552002-11-28 11:17:19 +0000145 (filter.mdst.bitlen >= 0 && filter.mdst.bitlen < r->rtm_dst_len))) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000146 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000147 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000148 if (filter.rsrc.family &&
Glenn L McGrath16528552002-11-28 11:17:19 +0000149 (r->rtm_family != filter.rsrc.family || filter.rsrc.bitlen > r->rtm_src_len)) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000150 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000151 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000152 if (filter.msrc.family &&
153 (r->rtm_family != filter.msrc.family ||
Glenn L McGrath16528552002-11-28 11:17:19 +0000154 (filter.msrc.bitlen >= 0 && filter.msrc.bitlen < r->rtm_src_len))) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000155 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000156 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000157
158 memset(tb, 0, sizeof(tb));
159 parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
160
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +0000161 if (filter.rdst.family && inet_addr_match(&dst, &filter.rdst, filter.rdst.bitlen))
162 return 0;
163 if (filter.mdst.family && filter.mdst.bitlen >= 0 &&
164 inet_addr_match(&dst, &filter.mdst, r->rtm_dst_len))
165 return 0;
166
167 if (filter.rsrc.family && inet_addr_match(&src, &filter.rsrc, filter.rsrc.bitlen))
168 return 0;
169 if (filter.msrc.family && filter.msrc.bitlen >= 0 &&
170 inet_addr_match(&src, &filter.msrc, r->rtm_src_len))
171 return 0;
172
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000173 if (filter.flushb &&
174 r->rtm_family == AF_INET6 &&
175 r->rtm_dst_len == 0 &&
176 r->rtm_type == RTN_UNREACHABLE &&
177 tb[RTA_PRIORITY] &&
178 *(int*)RTA_DATA(tb[RTA_PRIORITY]) == -1)
179 return 0;
180
181 if (filter.flushb) {
182 struct nlmsghdr *fn;
183 if (NLMSG_ALIGN(filter.flushp) + n->nlmsg_len > filter.flushe) {
184 if (flush_update())
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000185 bb_error_msg_and_die("flush");
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000186 }
187 fn = (struct nlmsghdr*)(filter.flushb + NLMSG_ALIGN(filter.flushp));
188 memcpy(fn, n, n->nlmsg_len);
189 fn->nlmsg_type = RTM_DELROUTE;
190 fn->nlmsg_flags = NLM_F_REQUEST;
191 fn->nlmsg_seq = ++filter.rth->seq;
192 filter.flushp = (((char*)fn) + n->nlmsg_len) - filter.flushb;
193 filter.flushed++;
194 return 0;
195 }
196
Glenn L McGrath16528552002-11-28 11:17:19 +0000197 if (n->nlmsg_type == RTM_DELROUTE) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000198 fprintf(fp, "Deleted ");
Glenn L McGrath16528552002-11-28 11:17:19 +0000199 }
200 if (r->rtm_type != RTN_UNICAST && !filter.type) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000201 fprintf(fp, "%s ", rtnl_rtntype_n2a(r->rtm_type, b1, sizeof(b1)));
Glenn L McGrath16528552002-11-28 11:17:19 +0000202 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000203
204 if (tb[RTA_DST]) {
205 if (r->rtm_dst_len != host_len) {
206 fprintf(fp, "%s/%u ", rt_addr_n2a(r->rtm_family,
207 RTA_PAYLOAD(tb[RTA_DST]),
208 RTA_DATA(tb[RTA_DST]),
209 abuf, sizeof(abuf)),
210 r->rtm_dst_len
211 );
212 } else {
213 fprintf(fp, "%s ", format_host(r->rtm_family,
214 RTA_PAYLOAD(tb[RTA_DST]),
215 RTA_DATA(tb[RTA_DST]),
216 abuf, sizeof(abuf))
217 );
218 }
219 } else if (r->rtm_dst_len) {
220 fprintf(fp, "0/%d ", r->rtm_dst_len);
221 } else {
222 fprintf(fp, "default ");
223 }
224 if (tb[RTA_SRC]) {
225 if (r->rtm_src_len != host_len) {
226 fprintf(fp, "from %s/%u ", rt_addr_n2a(r->rtm_family,
227 RTA_PAYLOAD(tb[RTA_SRC]),
228 RTA_DATA(tb[RTA_SRC]),
229 abuf, sizeof(abuf)),
230 r->rtm_src_len
231 );
232 } else {
233 fprintf(fp, "from %s ", format_host(r->rtm_family,
234 RTA_PAYLOAD(tb[RTA_SRC]),
235 RTA_DATA(tb[RTA_SRC]),
236 abuf, sizeof(abuf))
237 );
238 }
239 } else if (r->rtm_src_len) {
240 fprintf(fp, "from 0/%u ", r->rtm_src_len);
241 }
242 if (tb[RTA_GATEWAY] && filter.rvia.bitlen != host_len) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000243 fprintf(fp, "via %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000244 format_host(r->rtm_family,
245 RTA_PAYLOAD(tb[RTA_GATEWAY]),
246 RTA_DATA(tb[RTA_GATEWAY]),
247 abuf, sizeof(abuf)));
248 }
Glenn L McGrath16528552002-11-28 11:17:19 +0000249 if (tb[RTA_OIF] && filter.oifmask != -1) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000250 fprintf(fp, "dev %s ", ll_index_to_name(*(int*)RTA_DATA(tb[RTA_OIF])));
Glenn L McGrath16528552002-11-28 11:17:19 +0000251 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000252
253 if (tb[RTA_PREFSRC] && filter.rprefsrc.bitlen != host_len) {
254 /* Do not use format_host(). It is our local addr
255 and symbolic name will not be useful.
256 */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000257 fprintf(fp, " src %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000258 rt_addr_n2a(r->rtm_family,
259 RTA_PAYLOAD(tb[RTA_PREFSRC]),
260 RTA_DATA(tb[RTA_PREFSRC]),
261 abuf, sizeof(abuf)));
262 }
Glenn L McGrath16528552002-11-28 11:17:19 +0000263 if (tb[RTA_PRIORITY]) {
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000264 fprintf(fp, " metric %d ", *(uint32_t*)RTA_DATA(tb[RTA_PRIORITY]));
Glenn L McGrath16528552002-11-28 11:17:19 +0000265 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000266 if (r->rtm_family == AF_INET6) {
267 struct rta_cacheinfo *ci = NULL;
Glenn L McGrath16528552002-11-28 11:17:19 +0000268 if (tb[RTA_CACHEINFO]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000269 ci = RTA_DATA(tb[RTA_CACHEINFO]);
Glenn L McGrath16528552002-11-28 11:17:19 +0000270 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000271 if ((r->rtm_flags & RTM_F_CLONED) || (ci && ci->rta_expires)) {
Glenn L McGrath16528552002-11-28 11:17:19 +0000272 if (r->rtm_flags & RTM_F_CLONED) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000273 fprintf(fp, "%c cache ", _SL_);
Glenn L McGrath16528552002-11-28 11:17:19 +0000274 }
275 if (ci->rta_expires) {
Denis Vlasenkoc5193202006-12-31 19:07:23 +0000276 fprintf(fp, " expires %dsec", ci->rta_expires / get_hz());
Glenn L McGrath16528552002-11-28 11:17:19 +0000277 }
278 if (ci->rta_error != 0) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000279 fprintf(fp, " error %d", ci->rta_error);
Glenn L McGrath16528552002-11-28 11:17:19 +0000280 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000281 } else if (ci) {
282 if (ci->rta_error != 0)
283 fprintf(fp, " error %d", ci->rta_error);
284 }
285 }
286 if (tb[RTA_IIF] && filter.iifmask != -1) {
287 fprintf(fp, " iif %s", ll_index_to_name(*(int*)RTA_DATA(tb[RTA_IIF])));
288 }
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000289 fputc('\n', fp);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000290 fflush(fp);
291 return 0;
292}
293
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000294/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000295static int iproute_modify(int cmd, unsigned flags, char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000296{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000297 static const char keywords[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000298 "src\0""via\0""mtu\0""lock\0""protocol\0"USE_FEATURE_IP_RULE("table\0")
299 "dev\0""oif\0""to\0";
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000300 enum {
301 ARG_src,
302 ARG_via,
303 ARG_mtu, PARM_lock,
304 ARG_protocol,
Bernhard Reutner-Fischerab51bf42007-04-16 14:56:01 +0000305USE_FEATURE_IP_RULE(ARG_table,)
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000306 ARG_dev,
307 ARG_oif,
308 ARG_to
309 };
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000310 enum {
311 gw_ok = 1 << 0,
312 dst_ok = 1 << 1,
313 proto_ok = 1 << 2,
314 type_ok = 1 << 3
315 };
316 struct rtnl_handle rth;
317 struct {
318 struct nlmsghdr n;
319 struct rtmsg r;
320 char buf[1024];
321 } req;
322 char mxbuf[256];
323 struct rtattr * mxrta = (void*)mxbuf;
324 unsigned mxlock = 0;
325 char *d = NULL;
326 smalluint ok = 0;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000327 int arg;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000328
329 memset(&req, 0, sizeof(req));
330
331 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
332 req.n.nlmsg_flags = NLM_F_REQUEST|flags;
333 req.n.nlmsg_type = cmd;
334 req.r.rtm_family = preferred_family;
335 req.r.rtm_table = RT_TABLE_MAIN;
336 req.r.rtm_scope = RT_SCOPE_NOWHERE;
337
338 if (cmd != RTM_DELROUTE) {
339 req.r.rtm_protocol = RTPROT_BOOT;
340 req.r.rtm_scope = RT_SCOPE_UNIVERSE;
341 req.r.rtm_type = RTN_UNICAST;
342 }
343
344 mxrta->rta_type = RTA_METRICS;
345 mxrta->rta_len = RTA_LENGTH(0);
346
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000347 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000348 arg = index_in_substrings(keywords, *argv);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000349 if (arg == ARG_src) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000350 inet_prefix addr;
351 NEXT_ARG();
352 get_addr(&addr, *argv, req.r.rtm_family);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000353 if (req.r.rtm_family == AF_UNSPEC)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000354 req.r.rtm_family = addr.family;
355 addattr_l(&req.n, sizeof(req), RTA_PREFSRC, &addr.data, addr.bytelen);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000356 } else if (arg == ARG_via) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000357 inet_prefix addr;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000358 ok |= gw_ok;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000359 NEXT_ARG();
360 get_addr(&addr, *argv, req.r.rtm_family);
Glenn L McGrath16528552002-11-28 11:17:19 +0000361 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000362 req.r.rtm_family = addr.family;
Glenn L McGrath16528552002-11-28 11:17:19 +0000363 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000364 addattr_l(&req.n, sizeof(req), RTA_GATEWAY, &addr.data, addr.bytelen);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000365 } else if (arg == ARG_mtu) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000366 unsigned mtu;
367 NEXT_ARG();
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000368 if (index_in_strings(keywords, *argv) == PARM_lock) {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000369 mxlock |= (1 << RTAX_MTU);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000370 NEXT_ARG();
371 }
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000372 if (get_unsigned(&mtu, *argv, 0))
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000373 invarg(*argv, "mtu");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000374 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_MTU, mtu);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000375 } else if (arg == ARG_protocol) {
Eric Andersend78aea82006-01-30 18:00:02 +0000376 uint32_t prot;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000377 NEXT_ARG();
378 if (rtnl_rtprot_a2n(&prot, *argv))
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000379 invarg(*argv, "protocol");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000380 req.r.rtm_protocol = prot;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000381 ok |= proto_ok;
Bernhard Reutner-Fischerab51bf42007-04-16 14:56:01 +0000382#if ENABLE_FEATURE_IP_RULE
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000383 } else if (arg == ARG_table) {
Denis Vlasenkocda6c632006-12-15 00:59:35 +0000384 uint32_t tid;
385 NEXT_ARG();
386 if (rtnl_rttable_a2n(&tid, *argv))
387 invarg(*argv, "table");
388 req.r.rtm_table = tid;
Bernhard Reutner-Fischerab51bf42007-04-16 14:56:01 +0000389#endif
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000390 } else if (arg == ARG_dev || arg == ARG_oif) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000391 NEXT_ARG();
392 d = *argv;
393 } else {
394 int type;
395 inet_prefix dst;
396
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000397 if (arg == ARG_to) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000398 NEXT_ARG();
399 }
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000400 if ((**argv < '0' || **argv > '9')
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000401 && rtnl_rtntype_a2n(&type, *argv) == 0) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000402 NEXT_ARG();
403 req.r.rtm_type = type;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000404 ok |= type_ok;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000405 }
406
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000407 if (ok & dst_ok) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000408 duparg2("to", *argv);
Glenn L McGrath16528552002-11-28 11:17:19 +0000409 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000410 get_prefix(&dst, *argv, req.r.rtm_family);
Glenn L McGrath16528552002-11-28 11:17:19 +0000411 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000412 req.r.rtm_family = dst.family;
Glenn L McGrath16528552002-11-28 11:17:19 +0000413 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000414 req.r.rtm_dst_len = dst.bitlen;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000415 ok |= dst_ok;
Glenn L McGrath16528552002-11-28 11:17:19 +0000416 if (dst.bytelen) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000417 addattr_l(&req.n, sizeof(req), RTA_DST, &dst.data, dst.bytelen);
Glenn L McGrath16528552002-11-28 11:17:19 +0000418 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000419 }
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000420 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000421 }
422
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000423 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000424
Eric Andersen5780adb2002-11-15 09:12:47 +0000425 if (d) {
426 int idx;
427
428 ll_init_map(&rth);
429
430 if (d) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000431 idx = xll_name_to_index(d);
Eric Andersen5780adb2002-11-15 09:12:47 +0000432 addattr32(&req.n, sizeof(req), RTA_OIF, idx);
433 }
434 }
435
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000436 if (mxrta->rta_len > RTA_LENGTH(0)) {
Glenn L McGrath16528552002-11-28 11:17:19 +0000437 if (mxlock) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000438 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_LOCK, mxlock);
Glenn L McGrath16528552002-11-28 11:17:19 +0000439 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000440 addattr_l(&req.n, sizeof(req), RTA_METRICS, RTA_DATA(mxrta), RTA_PAYLOAD(mxrta));
441 }
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000442
Bernhard Reutner-Fischer12c96a62007-04-11 16:23:57 +0000443 if (req.r.rtm_type == RTN_LOCAL || req.r.rtm_type == RTN_NAT)
444 req.r.rtm_scope = RT_SCOPE_HOST;
445 else if (req.r.rtm_type == RTN_BROADCAST ||
446 req.r.rtm_type == RTN_MULTICAST ||
447 req.r.rtm_type == RTN_ANYCAST)
448 req.r.rtm_scope = RT_SCOPE_LINK;
449 else if (req.r.rtm_type == RTN_UNICAST || req.r.rtm_type == RTN_UNSPEC) {
450 if (cmd == RTM_DELROUTE)
451 req.r.rtm_scope = RT_SCOPE_NOWHERE;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000452 else if (!(ok & gw_ok))
Bernhard Reutner-Fischer12c96a62007-04-11 16:23:57 +0000453 req.r.rtm_scope = RT_SCOPE_LINK;
454 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000455
Glenn L McGrath16528552002-11-28 11:17:19 +0000456 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000457 req.r.rtm_family = AF_INET;
Glenn L McGrath16528552002-11-28 11:17:19 +0000458 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000459
Glenn L McGrath16528552002-11-28 11:17:19 +0000460 if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000461 return 2;
Glenn L McGrath16528552002-11-28 11:17:19 +0000462 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000463
464 return 0;
465}
466
467static int rtnl_rtcache_request(struct rtnl_handle *rth, int family)
468{
469 struct {
470 struct nlmsghdr nlh;
471 struct rtmsg rtm;
472 } req;
473 struct sockaddr_nl nladdr;
474
475 memset(&nladdr, 0, sizeof(nladdr));
476 memset(&req, 0, sizeof(req));
477 nladdr.nl_family = AF_NETLINK;
478
479 req.nlh.nlmsg_len = sizeof(req);
480 req.nlh.nlmsg_type = RTM_GETROUTE;
481 req.nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_REQUEST;
482 req.nlh.nlmsg_pid = 0;
483 req.nlh.nlmsg_seq = rth->dump = ++rth->seq;
484 req.rtm.rtm_family = family;
485 req.rtm.rtm_flags |= RTM_F_CLONED;
486
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000487 return xsendto(rth->fd, (void*)&req, sizeof(req), (struct sockaddr*)&nladdr, sizeof(nladdr));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000488}
489
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000490static void iproute_flush_cache(void)
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000491{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000492 static const char fn[] ALIGN1 = "/proc/sys/net/ipv4/route/flush";
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000493 int flush_fd = open_or_warn(fn, O_WRONLY);
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000494
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000495 if (flush_fd < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000496 return;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000497 }
498
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000499 if (write(flush_fd, "-1", 2) < 2) {
500 bb_perror_msg("cannot flush routing cache");
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000501 return;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000502 }
503 close(flush_fd);
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000504}
505
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000506static void iproute_reset_filter(void)
507{
508 memset(&filter, 0, sizeof(filter));
509 filter.mdst.bitlen = -1;
510 filter.msrc.bitlen = -1;
511}
512
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000513/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000514static int iproute_list_or_flush(char **argv, int flush)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000515{
516 int do_ipv6 = preferred_family;
517 struct rtnl_handle rth;
518 char *id = NULL;
519 char *od = NULL;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000520 static const char keywords[] ALIGN1 =
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000521 /* "ip route list/flush" parameters: */
522 "protocol\0" "dev\0" "oif\0" "iif\0"
523 "via\0" "table\0" "cache\0"
524 "from\0" "to\0"
525 /* and possible further keywords */
526 "all\0"
527 "root\0"
528 "match\0"
529 "exact\0"
530 "main\0"
531 ;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000532 enum {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000533 KW_proto, KW_dev, KW_oif, KW_iif,
534 KW_via, KW_table, KW_cache,
535 KW_from, KW_to,
536 /* */
537 KW_all,
538 KW_root,
539 KW_match,
540 KW_exact,
541 KW_main,
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000542 };
543 int arg, parm;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000544
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000545 iproute_reset_filter();
546 filter.tb = RT_TABLE_MAIN;
547
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000548 if (flush && !*argv)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000549 bb_error_msg_and_die(bb_msg_requires_arg, "\"ip route flush\"");
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000550
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000551 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000552 arg = index_in_substrings(keywords, *argv);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000553 if (arg == KW_proto) {
Eric Andersend78aea82006-01-30 18:00:02 +0000554 uint32_t prot = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000555 NEXT_ARG();
556 filter.protocolmask = -1;
557 if (rtnl_rtprot_a2n(&prot, *argv)) {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000558 if (index_in_strings(keywords, *argv) != KW_all)
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000559 invarg(*argv, "protocol");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000560 prot = 0;
561 filter.protocolmask = 0;
562 }
563 filter.protocol = prot;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000564 } else if (arg == KW_dev || arg == KW_oif) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000565 NEXT_ARG();
566 od = *argv;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000567 } else if (arg == KW_iif) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000568 NEXT_ARG();
569 id = *argv;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000570 } else if (arg == KW_via) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000571 NEXT_ARG();
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000572 get_prefix(&filter.rvia, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000573 } else if (arg == KW_table) { /* table all/cache/main */
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000574 NEXT_ARG();
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000575 parm = index_in_substrings(keywords, *argv);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000576 if (parm == KW_cache)
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000577 filter.tb = -1;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000578 else if (parm == KW_all)
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000579 filter.tb = 0;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000580 else if (parm != KW_main)
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000581 invarg(*argv, "table");
Denis Vlasenko79c69042007-11-27 09:42:33 +0000582 } else if (arg == KW_cache) {
583 /* The command 'ip route flush cache' is used by OpenSWAN.
584 * Assuming it's a synonym for 'ip route flush table cache' */
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000585 filter.tb = -1;
586 } else if (arg == KW_from) {
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000587 NEXT_ARG();
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000588 parm = index_in_substrings(keywords, *argv);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000589 if (parm == KW_root) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000590 NEXT_ARG();
591 get_prefix(&filter.rsrc, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000592 } else if (parm == KW_match) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000593 NEXT_ARG();
594 get_prefix(&filter.msrc, *argv, do_ipv6);
595 } else {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000596 if (parm == KW_exact)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000597 NEXT_ARG();
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000598 get_prefix(&filter.msrc, *argv, do_ipv6);
599 filter.rsrc = filter.msrc;
600 }
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000601 } else { /* "to" is the default parameter */
602 if (arg == KW_to) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000603 NEXT_ARG();
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000604 arg = index_in_substrings(keywords, *argv);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000605 }
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000606 /* parm = arg; - would be more plausible, but we reuse 'arg' here */
607 if (arg == KW_root) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000608 NEXT_ARG();
609 get_prefix(&filter.rdst, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000610 } else if (arg == KW_match) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000611 NEXT_ARG();
612 get_prefix(&filter.mdst, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000613 } else { /* "to exact" is the default */
614 if (arg == KW_exact)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000615 NEXT_ARG();
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000616 get_prefix(&filter.mdst, *argv, do_ipv6);
617 filter.rdst = filter.mdst;
618 }
619 }
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000620 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000621 }
622
Glenn L McGrath16528552002-11-28 11:17:19 +0000623 if (do_ipv6 == AF_UNSPEC && filter.tb) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000624 do_ipv6 = AF_INET;
Glenn L McGrath16528552002-11-28 11:17:19 +0000625 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000626
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000627 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000628 ll_init_map(&rth);
629
630 if (id || od) {
631 int idx;
632
633 if (id) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000634 idx = xll_name_to_index(id);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000635 filter.iif = idx;
636 filter.iifmask = -1;
637 }
638 if (od) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000639 idx = xll_name_to_index(od);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000640 filter.oif = idx;
641 filter.oifmask = -1;
642 }
643 }
644
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000645 if (flush) {
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000646 char flushb[4096-512];
647
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000648 if (filter.tb == -1) { /* "flush table cache" */
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000649 if (do_ipv6 != AF_INET6)
650 iproute_flush_cache();
651 if (do_ipv6 == AF_INET)
652 return 0;
653 }
654
655 filter.flushb = flushb;
656 filter.flushp = 0;
657 filter.flushe = sizeof(flushb);
658 filter.rth = &rth;
659
660 for (;;) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000661 xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE);
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000662 filter.flushed = 0;
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000663 xrtnl_dump_filter(&rth, print_route, stdout);
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000664 if (filter.flushed == 0)
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000665 return 0;
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000666 if (flush_update())
667 return 1;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000668 }
669 }
670
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000671 if (filter.tb != -1) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000672 xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE);
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000673 } else if (rtnl_rtcache_request(&rth, do_ipv6) < 0) {
674 bb_perror_msg_and_die("cannot send dump request");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000675 }
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000676 xrtnl_dump_filter(&rth, print_route, stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000677
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000678 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000679}
680
681
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000682/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000683static int iproute_get(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000684{
685 struct rtnl_handle rth;
686 struct {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000687 struct nlmsghdr n;
688 struct rtmsg r;
689 char buf[1024];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000690 } req;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000691 char *idev = NULL;
692 char *odev = NULL;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000693 bool connected = 0;
694 bool from_ok = 0;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000695 static const char options[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000696 "from\0""iif\0""oif\0""dev\0""notify\0""connected\0""to\0";
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000697
698 memset(&req, 0, sizeof(req));
699
700 iproute_reset_filter();
701
702 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
703 req.n.nlmsg_flags = NLM_F_REQUEST;
704 req.n.nlmsg_type = RTM_GETROUTE;
705 req.r.rtm_family = preferred_family;
706 req.r.rtm_table = 0;
707 req.r.rtm_protocol = 0;
708 req.r.rtm_scope = 0;
709 req.r.rtm_type = 0;
710 req.r.rtm_src_len = 0;
711 req.r.rtm_dst_len = 0;
712 req.r.rtm_tos = 0;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000713
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000714 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000715 switch (index_in_strings(options, *argv)) {
Glenn L McGrath18eae002002-12-02 00:54:10 +0000716 case 0: /* from */
717 {
718 inet_prefix addr;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000719 NEXT_ARG();
Glenn L McGrath18eae002002-12-02 00:54:10 +0000720 from_ok = 1;
721 get_prefix(&addr, *argv, req.r.rtm_family);
722 if (req.r.rtm_family == AF_UNSPEC) {
723 req.r.rtm_family = addr.family;
724 }
725 if (addr.bytelen) {
726 addattr_l(&req.n, sizeof(req), RTA_SRC, &addr.data, addr.bytelen);
727 }
728 req.r.rtm_src_len = addr.bitlen;
729 break;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000730 }
Glenn L McGrath18eae002002-12-02 00:54:10 +0000731 case 1: /* iif */
732 NEXT_ARG();
733 idev = *argv;
734 break;
735 case 2: /* oif */
736 case 3: /* dev */
737 NEXT_ARG();
738 odev = *argv;
739 break;
740 case 4: /* notify */
741 req.r.rtm_flags |= RTM_F_NOTIFY;
742 break;
743 case 5: /* connected */
744 connected = 1;
745 break;
746 case 6: /* to */
747 NEXT_ARG();
748 default:
749 {
750 inet_prefix addr;
751 get_prefix(&addr, *argv, req.r.rtm_family);
752 if (req.r.rtm_family == AF_UNSPEC) {
753 req.r.rtm_family = addr.family;
754 }
755 if (addr.bytelen) {
756 addattr_l(&req.n, sizeof(req), RTA_DST, &addr.data, addr.bytelen);
757 }
758 req.r.rtm_dst_len = addr.bitlen;
759 }
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000760 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000761 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000762 }
763
764 if (req.r.rtm_dst_len == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000765 bb_error_msg_and_die("need at least destination address");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000766 }
767
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000768 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000769
770 ll_init_map(&rth);
771
772 if (idev || odev) {
773 int idx;
774
775 if (idev) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000776 idx = xll_name_to_index(idev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000777 addattr32(&req.n, sizeof(req), RTA_IIF, idx);
778 }
779 if (odev) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000780 idx = xll_name_to_index(odev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000781 addattr32(&req.n, sizeof(req), RTA_OIF, idx);
782 }
783 }
784
Glenn L McGrath16528552002-11-28 11:17:19 +0000785 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000786 req.r.rtm_family = AF_INET;
Glenn L McGrath16528552002-11-28 11:17:19 +0000787 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000788
Glenn L McGrath16528552002-11-28 11:17:19 +0000789 if (rtnl_talk(&rth, &req.n, 0, 0, &req.n, NULL, NULL) < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000790 return 2;
Glenn L McGrath16528552002-11-28 11:17:19 +0000791 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000792
793 if (connected && !from_ok) {
794 struct rtmsg *r = NLMSG_DATA(&req.n);
795 int len = req.n.nlmsg_len;
796 struct rtattr * tb[RTA_MAX+1];
797
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000798 print_route(NULL, &req.n, (void*)stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000799
800 if (req.n.nlmsg_type != RTM_NEWROUTE) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000801 bb_error_msg_and_die("not a route?");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000802 }
803 len -= NLMSG_LENGTH(sizeof(*r));
804 if (len < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000805 bb_error_msg_and_die("wrong len %d", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000806 }
807
808 memset(tb, 0, sizeof(tb));
809 parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
810
811 if (tb[RTA_PREFSRC]) {
812 tb[RTA_PREFSRC]->rta_type = RTA_SRC;
813 r->rtm_src_len = 8*RTA_PAYLOAD(tb[RTA_PREFSRC]);
814 } else if (!tb[RTA_SRC]) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000815 bb_error_msg_and_die("failed to connect the route");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000816 }
Glenn L McGrath16528552002-11-28 11:17:19 +0000817 if (!odev && tb[RTA_OIF]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000818 tb[RTA_OIF]->rta_type = 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000819 }
820 if (tb[RTA_GATEWAY]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000821 tb[RTA_GATEWAY]->rta_type = 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000822 }
823 if (!idev && tb[RTA_IIF]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000824 tb[RTA_IIF]->rta_type = 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000825 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000826 req.n.nlmsg_flags = NLM_F_REQUEST;
827 req.n.nlmsg_type = RTM_GETROUTE;
828
Glenn L McGrath16528552002-11-28 11:17:19 +0000829 if (rtnl_talk(&rth, &req.n, 0, 0, &req.n, NULL, NULL) < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000830 return 2;
Glenn L McGrath16528552002-11-28 11:17:19 +0000831 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000832 }
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000833 print_route(NULL, &req.n, (void*)stdout);
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000834 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000835}
836
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000837/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000838int do_iproute(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000839{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000840 static const char ip_route_commands[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000841 /*0-3*/ "add\0""append\0""change\0""chg\0"
842 /*4-7*/ "delete\0""get\0""list\0""show\0"
843 /*8..*/ "prepend\0""replace\0""test\0""flush\0";
Denis Vlasenko83c44222008-01-04 15:28:28 +0000844 int command_num;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000845 unsigned flags = 0;
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000846 int cmd = RTM_NEWROUTE;
847
Denis Vlasenko83c44222008-01-04 15:28:28 +0000848 if (!*argv)
849 return iproute_list_or_flush(argv, 0);
850
Denis Vlasenko5af906e2006-11-05 18:05:09 +0000851 /* "Standard" 'ip r a' treats 'a' as 'add', not 'append' */
852 /* It probably means that it is using "first match" rule */
Denis Vlasenko83c44222008-01-04 15:28:28 +0000853 command_num = index_in_substrings(ip_route_commands, *argv);
854
Denis Vlasenkoc16bd212006-09-27 19:51:06 +0000855 switch (command_num) {
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000856 case 0: /* add */
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000857 flags = NLM_F_CREATE|NLM_F_EXCL;
858 break;
859 case 1: /* append */
860 flags = NLM_F_CREATE|NLM_F_APPEND;
861 break;
862 case 2: /* change */
863 case 3: /* chg */
864 flags = NLM_F_REPLACE;
865 break;
866 case 4: /* delete */
867 cmd = RTM_DELROUTE;
868 break;
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000869 case 5: /* get */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000870 return iproute_get(argv+1);
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000871 case 6: /* list */
872 case 7: /* show */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000873 return iproute_list_or_flush(argv+1, 0);
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000874 case 8: /* prepend */
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000875 flags = NLM_F_CREATE;
Denis Vlasenko1eecaf22007-09-30 16:04:21 +0000876 break;
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000877 case 9: /* replace */
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000878 flags = NLM_F_CREATE|NLM_F_REPLACE;
Denis Vlasenko1eecaf22007-09-30 16:04:21 +0000879 break;
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000880 case 10: /* test */
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000881 flags = NLM_F_EXCL;
Denis Vlasenko1eecaf22007-09-30 16:04:21 +0000882 break;
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000883 case 11: /* flush */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000884 return iproute_list_or_flush(argv+1, 1);
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000885 default:
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000886 bb_error_msg_and_die("unknown command %s", *argv);
Glenn L McGrath16528552002-11-28 11:17:19 +0000887 }
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000888
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000889 return iproute_modify(cmd, flags, argv+1);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000890}