route.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * route
  4. *
  5. * Similar to the standard Unix route, but with only the necessary
  6. * parts for AF_INET and AF_INET6
  7. *
  8. * Bjorn Wesen, Axis Communications AB
  9. *
  10. * Author of the original route:
  11. * Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
  12. * (derived from FvK's 'route.c 1.70 01/04/94')
  13. *
  14. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  15. *
  16. *
  17. * displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru>
  18. * adjustments by Larry Doolittle <LRDoolittle@lbl.gov>
  19. *
  20. * IPV6 support added by Bart Visscher <magick@linux-fan.com>
  21. */
  22. /* 2004/03/09 Manuel Novoa III <mjn3@codepoet.org>
  23. *
  24. * Rewritten to fix several bugs, add additional error checking, and
  25. * remove ridiculous amounts of bloat.
  26. */
  27. //config:config ROUTE
  28. //config: bool "route (8.7 kb)"
  29. //config: default y
  30. //config: help
  31. //config: Route displays or manipulates the kernel's IP routing tables.
  32. //applet:IF_ROUTE(APPLET(route, BB_DIR_SBIN, BB_SUID_DROP))
  33. //kbuild:lib-$(CONFIG_ROUTE) += route.o
  34. //usage:#define route_trivial_usage
  35. //usage: "[{add|del|delete}]"
  36. //usage:#define route_full_usage "\n\n"
  37. //usage: "Edit kernel routing tables\n"
  38. //usage: "\n -n Don't resolve names"
  39. //usage: "\n -e Display other/more information"
  40. //usage: "\n -A inet" IF_FEATURE_IPV6("{6}") " Select address family"
  41. #include <net/route.h>
  42. #include <net/if.h>
  43. #include "libbb.h"
  44. #include "inet_common.h"
  45. #ifndef RTF_UP
  46. /* Keep this in sync with /usr/src/linux/include/linux/route.h */
  47. #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 */
  54. #ifndef RTF_MSS
  55. #define RTF_MSS RTF_MTU /* Compatibility :-( */
  56. #endif
  57. #define RTF_WINDOW 0x0080 /* per route window clamping */
  58. #define RTF_IRTT 0x0100 /* Initial round trip time */
  59. #define RTF_REJECT 0x0200 /* Reject route */
  60. #define RTF_NONEXTHOP 0x00200000 /* route with no nexthop */
  61. #endif
  62. #if defined(SIOCADDRTOLD) || defined(RTF_IRTT) /* route */
  63. #define HAVE_NEW_ADDRT 1
  64. #endif
  65. #if HAVE_NEW_ADDRT
  66. #define mask_in_addr(x) (((struct sockaddr_in *)&((x).rt_genmask))->sin_addr.s_addr)
  67. #define full_mask(x) (x)
  68. #else
  69. #define mask_in_addr(x) ((x).rt_genmask)
  70. #define full_mask(x) (((struct sockaddr_in *)&(x))->sin_addr.s_addr)
  71. #endif
  72. /* The RTACTION entries must agree with tbl_verb[] below! */
  73. #define RTACTION_ADD 1
  74. #define RTACTION_DEL 2
  75. /* For the various tbl_*[] arrays, the 1st byte is the offset to
  76. * the next entry and the 2nd byte is return value. */
  77. #define NET_FLAG 1
  78. #define HOST_FLAG 2
  79. /* We remap '-' to '#' to avoid problems with getopt. */
  80. static const char tbl_hash_net_host[] ALIGN1 =
  81. "\007\001#net\0"
  82. /* "\010\002#host\0" */
  83. "\007\002#host" /* Since last, we can save a byte. */
  84. ;
  85. #define KW_TAKES_ARG 020
  86. #define KW_SETS_FLAG 040
  87. #define KW_IPVx_METRIC 020
  88. #define KW_IPVx_NETMASK 021
  89. #define KW_IPVx_GATEWAY 022
  90. #define KW_IPVx_MSS 023
  91. #define KW_IPVx_WINDOW 024
  92. #define KW_IPVx_IRTT 025
  93. #define KW_IPVx_DEVICE 026
  94. #define KW_IPVx_FLAG_ONLY 040
  95. #define KW_IPVx_REJECT 040
  96. #define KW_IPVx_MOD 041
  97. #define KW_IPVx_DYN 042
  98. #define KW_IPVx_REINSTATE 043
  99. static const char tbl_ipvx[] ALIGN1 =
  100. /* 020 is the "takes an arg" bit */
  101. #if HAVE_NEW_ADDRT
  102. "\011\020metric\0"
  103. #endif
  104. "\012\021netmask\0"
  105. "\005\022gw\0"
  106. "\012\022gateway\0"
  107. "\006\023mss\0"
  108. "\011\024window\0"
  109. #ifdef RTF_IRTT
  110. "\007\025irtt\0"
  111. #endif
  112. "\006\026dev\0"
  113. "\011\026device\0"
  114. /* 040 is the "sets a flag" bit - MUST match flags_ipvx[] values below. */
  115. #ifdef RTF_REJECT
  116. "\011\040reject\0"
  117. #endif
  118. "\006\041mod\0"
  119. "\006\042dyn\0"
  120. /* "\014\043reinstate\0" */
  121. "\013\043reinstate" /* Since last, we can save a byte. */
  122. ;
  123. static const uint16_t flags_ipvx[] = { /* MUST match tbl_ipvx[] values above. */
  124. #ifdef RTF_REJECT
  125. RTF_REJECT,
  126. #endif
  127. RTF_MODIFIED,
  128. RTF_DYNAMIC,
  129. RTF_REINSTATE
  130. };
  131. static int kw_lookup(const char *kwtbl, char ***pargs)
  132. {
  133. if (**pargs) {
  134. do {
  135. if (strcmp(kwtbl+2, **pargs) == 0) { /* Found a match. */
  136. *pargs += 1;
  137. if (kwtbl[1] & KW_TAKES_ARG) {
  138. if (!**pargs) { /* No more args! */
  139. bb_show_usage();
  140. }
  141. *pargs += 1; /* Calling routine will use args[-1]. */
  142. }
  143. return kwtbl[1];
  144. }
  145. kwtbl += *kwtbl;
  146. } while (*kwtbl);
  147. }
  148. return 0;
  149. }
  150. /* Add or delete a route, depending on action. */
  151. static NOINLINE void INET_setroute(int action, char **args)
  152. {
  153. /* char buffer instead of bona-fide struct avoids aliasing warning */
  154. char rt_buf[sizeof(struct rtentry)];
  155. struct rtentry *const rt = (void *)rt_buf;
  156. const char *netmask = NULL;
  157. int skfd, isnet, xflag;
  158. /* Grab the -net or -host options. Remember they were transformed. */
  159. xflag = kw_lookup(tbl_hash_net_host, &args);
  160. /* If we did grab -net or -host, make sure we still have an arg left. */
  161. if (*args == NULL) {
  162. bb_show_usage();
  163. }
  164. /* Clean out the RTREQ structure. */
  165. memset(rt, 0, sizeof(*rt));
  166. {
  167. const char *target = *args++;
  168. char *prefix;
  169. /* recognize x.x.x.x/mask format. */
  170. prefix = strchr(target, '/');
  171. if (prefix) {
  172. int prefix_len;
  173. prefix_len = xatoul_range(prefix+1, 0, 32);
  174. mask_in_addr(*rt) = htonl( ~(0xffffffffUL >> prefix_len));
  175. *prefix = '\0';
  176. #if HAVE_NEW_ADDRT
  177. rt->rt_genmask.sa_family = AF_INET;
  178. #endif
  179. } else {
  180. /* Default netmask. */
  181. netmask = "default";
  182. }
  183. /* Prefer hostname lookup is -host flag (xflag==1) was given. */
  184. isnet = INET_resolve(target, (struct sockaddr_in *) &rt->rt_dst,
  185. (xflag & HOST_FLAG));
  186. if (isnet < 0) {
  187. bb_error_msg_and_die("resolving %s", target);
  188. }
  189. if (prefix) {
  190. /* do not destroy prefix for process args */
  191. *prefix = '/';
  192. }
  193. }
  194. if (xflag) { /* Reinit isnet if -net or -host was specified. */
  195. isnet = (xflag & NET_FLAG);
  196. }
  197. /* Fill in the other fields. */
  198. rt->rt_flags = ((isnet) ? RTF_UP : (RTF_UP | RTF_HOST));
  199. while (*args) {
  200. int k = kw_lookup(tbl_ipvx, &args);
  201. const char *args_m1 = args[-1];
  202. if (k & KW_IPVx_FLAG_ONLY) {
  203. rt->rt_flags |= flags_ipvx[k & 3];
  204. continue;
  205. }
  206. #if HAVE_NEW_ADDRT
  207. if (k == KW_IPVx_METRIC) {
  208. rt->rt_metric = xatoul(args_m1) + 1;
  209. continue;
  210. }
  211. #endif
  212. if (k == KW_IPVx_NETMASK) {
  213. struct sockaddr mask;
  214. if (mask_in_addr(*rt)) {
  215. bb_show_usage();
  216. }
  217. netmask = args_m1;
  218. isnet = INET_resolve(netmask, (struct sockaddr_in *) &mask, 0);
  219. if (isnet < 0) {
  220. bb_error_msg_and_die("resolving %s", netmask);
  221. }
  222. rt->rt_genmask = full_mask(mask);
  223. continue;
  224. }
  225. if (k == KW_IPVx_GATEWAY) {
  226. if (rt->rt_flags & RTF_GATEWAY) {
  227. bb_show_usage();
  228. }
  229. isnet = INET_resolve(args_m1,
  230. (struct sockaddr_in *) &rt->rt_gateway, 1);
  231. rt->rt_flags |= RTF_GATEWAY;
  232. if (isnet) {
  233. if (isnet < 0) {
  234. bb_error_msg_and_die("resolving %s", args_m1);
  235. }
  236. bb_error_msg_and_die("gateway %s is a NETWORK", args_m1);
  237. }
  238. continue;
  239. }
  240. if (k == KW_IPVx_MSS) { /* Check valid MSS bounds. */
  241. rt->rt_flags |= RTF_MSS;
  242. rt->rt_mss = xatoul_range(args_m1, 64, 32768);
  243. continue;
  244. }
  245. if (k == KW_IPVx_WINDOW) { /* Check valid window bounds. */
  246. rt->rt_flags |= RTF_WINDOW;
  247. rt->rt_window = xatoul_range(args_m1, 128, INT_MAX);
  248. continue;
  249. }
  250. #ifdef RTF_IRTT
  251. if (k == KW_IPVx_IRTT) {
  252. rt->rt_flags |= RTF_IRTT;
  253. rt->rt_irtt = xatoul(args_m1);
  254. rt->rt_irtt *= (bb_clk_tck() / 100); /* FIXME */
  255. #if 0 /* FIXME: do we need to check anything of this? */
  256. if (rt->rt_irtt < 1 || rt->rt_irtt > (120 * HZ)) {
  257. bb_error_msg_and_die("bad irtt");
  258. }
  259. #endif
  260. continue;
  261. }
  262. #endif
  263. /* Device is special in that it can be the last arg specified
  264. * and doesn't require the dev/device keyword in that case. */
  265. if (!rt->rt_dev && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) {
  266. /* Don't use args_m1 here since args may have changed! */
  267. rt->rt_dev = args[-1];
  268. continue;
  269. }
  270. /* Nothing matched. */
  271. bb_show_usage();
  272. }
  273. #ifdef RTF_REJECT
  274. if ((rt->rt_flags & RTF_REJECT) && !rt->rt_dev) {
  275. rt->rt_dev = (char*)"lo";
  276. }
  277. #endif
  278. /* sanity checks.. */
  279. if (mask_in_addr(*rt)) {
  280. uint32_t mask = mask_in_addr(*rt);
  281. mask = ~ntohl(mask);
  282. if ((rt->rt_flags & RTF_HOST) && mask != 0xffffffff) {
  283. bb_error_msg_and_die("netmask %.8x and host route conflict",
  284. (unsigned int) mask);
  285. }
  286. if (mask & (mask + 1)) {
  287. bb_error_msg_and_die("bogus netmask %s", netmask);
  288. }
  289. mask = ((struct sockaddr_in *) &rt->rt_dst)->sin_addr.s_addr;
  290. if (mask & ~(uint32_t)mask_in_addr(*rt)) {
  291. bb_simple_error_msg_and_die("netmask and route address conflict");
  292. }
  293. }
  294. /* Fill out netmask if still unset */
  295. if ((action == RTACTION_ADD) && (rt->rt_flags & RTF_HOST)) {
  296. mask_in_addr(*rt) = 0xffffffff;
  297. }
  298. /* Create a socket to the INET kernel. */
  299. skfd = xsocket(AF_INET, SOCK_DGRAM, 0);
  300. if (action == RTACTION_ADD)
  301. xioctl(skfd, SIOCADDRT, rt);
  302. else
  303. xioctl(skfd, SIOCDELRT, rt);
  304. if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
  305. }
  306. #if ENABLE_FEATURE_IPV6
  307. static NOINLINE void INET6_setroute(int action, char **args)
  308. {
  309. struct sockaddr_in6 sa6;
  310. struct in6_rtmsg rt;
  311. int prefix_len, skfd;
  312. const char *devname;
  313. /* We know args isn't NULL from the check in route_main. */
  314. const char *target = *args++;
  315. if (strcmp(target, "default") == 0) {
  316. prefix_len = 0;
  317. memset(&sa6, 0, sizeof(sa6));
  318. } else {
  319. char *cp;
  320. cp = strchr(target, '/'); /* Yes... const to non is ok. */
  321. if (cp) {
  322. *cp = '\0';
  323. prefix_len = xatoul_range(cp + 1, 0, 128);
  324. } else {
  325. prefix_len = 128;
  326. }
  327. if (INET6_resolve(target, (struct sockaddr_in6 *) &sa6) < 0) {
  328. bb_error_msg_and_die("resolving %s", target);
  329. }
  330. }
  331. /* Clean out the RTREQ structure. */
  332. memset(&rt, 0, sizeof(rt));
  333. memcpy(&rt.rtmsg_dst, sa6.sin6_addr.s6_addr, sizeof(struct in6_addr));
  334. /* Fill in the other fields. */
  335. rt.rtmsg_dst_len = prefix_len;
  336. rt.rtmsg_flags = ((prefix_len == 128) ? (RTF_UP|RTF_HOST) : RTF_UP);
  337. rt.rtmsg_metric = 1;
  338. devname = NULL;
  339. while (*args) {
  340. int k = kw_lookup(tbl_ipvx, &args);
  341. const char *args_m1 = args[-1];
  342. if ((k == KW_IPVx_MOD) || (k == KW_IPVx_DYN)) {
  343. rt.rtmsg_flags |= flags_ipvx[k & 3];
  344. continue;
  345. }
  346. if (k == KW_IPVx_METRIC) {
  347. rt.rtmsg_metric = xatoul(args_m1);
  348. continue;
  349. }
  350. if (k == KW_IPVx_GATEWAY) {
  351. if (rt.rtmsg_flags & RTF_GATEWAY) {
  352. bb_show_usage();
  353. }
  354. if (INET6_resolve(args_m1, (struct sockaddr_in6 *) &sa6) < 0) {
  355. bb_error_msg_and_die("resolving %s", args_m1);
  356. }
  357. memcpy(&rt.rtmsg_gateway, sa6.sin6_addr.s6_addr,
  358. sizeof(struct in6_addr));
  359. rt.rtmsg_flags |= RTF_GATEWAY;
  360. continue;
  361. }
  362. /* Device is special in that it can be the last arg specified
  363. * and doesn't require the dev/device keyword in that case. */
  364. if (!devname && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) {
  365. /* Don't use args_m1 here since args may have changed! */
  366. devname = args[-1];
  367. continue;
  368. }
  369. /* Nothing matched. */
  370. bb_show_usage();
  371. }
  372. /* Create a socket to the INET6 kernel. */
  373. skfd = xsocket(AF_INET6, SOCK_DGRAM, 0);
  374. rt.rtmsg_ifindex = 0;
  375. if (devname) {
  376. struct ifreq ifr;
  377. /*memset(&ifr, 0, sizeof(ifr)); - SIOCGIFINDEX does not need to clear all */
  378. strncpy_IFNAMSIZ(ifr.ifr_name, devname);
  379. xioctl(skfd, SIOCGIFINDEX, &ifr);
  380. rt.rtmsg_ifindex = ifr.ifr_ifindex;
  381. }
  382. /* Tell the kernel to accept this route. */
  383. if (action == RTACTION_ADD)
  384. xioctl(skfd, SIOCADDRT, &rt);
  385. else
  386. xioctl(skfd, SIOCDELRT, &rt);
  387. if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
  388. }
  389. #endif
  390. static const
  391. IF_NOT_FEATURE_IPV6(uint16_t flagvals[] ALIGN2 = )
  392. IF_FEATURE_IPV6(uint32_t flagvals[] ALIGN4 = )
  393. { /* Must agree with flagchars[]. */
  394. RTF_UP,
  395. RTF_GATEWAY,
  396. RTF_HOST,
  397. RTF_REINSTATE,
  398. RTF_DYNAMIC,
  399. RTF_MODIFIED,
  400. #if ENABLE_FEATURE_IPV6
  401. RTF_DEFAULT,
  402. RTF_ADDRCONF,
  403. RTF_CACHE,
  404. RTF_REJECT,
  405. RTF_NONEXTHOP, /* this one doesn't fit into 16 bits */
  406. #endif
  407. };
  408. /* Must agree with flagvals[]. */
  409. static const char flagchars[] ALIGN1 =
  410. "UGHRDM"
  411. #if ENABLE_FEATURE_IPV6
  412. "DAC!n"
  413. #endif
  414. ;
  415. #define IPV4_MASK (RTF_UP|RTF_GATEWAY|RTF_HOST|RTF_REINSTATE|RTF_DYNAMIC|RTF_MODIFIED)
  416. #define IPV6_MASK (RTF_UP|RTF_GATEWAY|RTF_HOST|RTF_DEFAULT|RTF_ADDRCONF|RTF_CACHE|RTF_REJECT|RTF_NONEXTHOP)
  417. static void set_flags(char *flagstr, int flags)
  418. {
  419. int i;
  420. for (i = 0; (*flagstr = flagchars[i]) != 0; i++) {
  421. if (flags & flagvals[i]) {
  422. ++flagstr;
  423. }
  424. }
  425. }
  426. /* also used in netstat */
  427. void FAST_FUNC bb_displayroutes(int noresolve, int netstatfmt)
  428. {
  429. char devname[64], flags[16], *sdest, *sgw;
  430. unsigned long d, g, m;
  431. int r;
  432. int flgs, ref, use, metric, mtu, win, ir;
  433. struct sockaddr_in s_addr;
  434. struct in_addr mask;
  435. FILE *fp = xfopen_for_read("/proc/net/route");
  436. printf("Kernel IP routing table\n"
  437. "Destination Gateway Genmask Flags %s Iface\n",
  438. netstatfmt ? " MSS Window irtt" : "Metric Ref Use");
  439. /* Skip the first line. */
  440. r = fscanf(fp, "%*[^\n]\n");
  441. if (r < 0) {
  442. /* Empty line, read error, or EOF. Yes, if routing table
  443. * is completely empty, /proc/net/route has no header.
  444. */
  445. goto ERROR;
  446. }
  447. while (1) {
  448. r = fscanf(fp, "%63s%lx%lx%X%d%d%d%lx%d%d%d\n",
  449. devname, &d, &g, &flgs, &ref, &use, &metric, &m,
  450. &mtu, &win, &ir);
  451. if (r != 11) {
  452. ERROR:
  453. if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
  454. break;
  455. }
  456. bb_simple_perror_msg_and_die(bb_msg_read_error);
  457. }
  458. if (!(flgs & RTF_UP)) { /* Skip interfaces that are down. */
  459. continue;
  460. }
  461. set_flags(flags, (flgs & IPV4_MASK));
  462. #ifdef RTF_REJECT
  463. if (flgs & RTF_REJECT) {
  464. flags[0] = '!';
  465. }
  466. #endif
  467. memset(&s_addr, 0, sizeof(struct sockaddr_in));
  468. s_addr.sin_family = AF_INET;
  469. s_addr.sin_addr.s_addr = d;
  470. sdest = INET_rresolve(&s_addr, (noresolve | 0x8000), m); /* 'default' instead of '*' */
  471. s_addr.sin_addr.s_addr = g;
  472. sgw = INET_rresolve(&s_addr, (noresolve | 0x4000), m); /* Host instead of net */
  473. mask.s_addr = m;
  474. /* "%15.15s" truncates hostnames, do we really want that? */
  475. printf("%-15.15s %-15.15s %-16s%-6s", sdest, sgw, inet_ntoa(mask), flags);
  476. free(sdest);
  477. free(sgw);
  478. if (netstatfmt) {
  479. printf("%5d %-5d %6d %s\n", mtu, win, ir, devname);
  480. } else {
  481. printf("%-6d %-2d %7d %s\n", metric, ref, use, devname);
  482. }
  483. }
  484. fclose(fp);
  485. }
  486. #if ENABLE_FEATURE_IPV6
  487. static void INET6_displayroutes(void)
  488. {
  489. char addr6[128], *naddr6;
  490. /* In addr6x, we store both 40-byte ':'-delimited ipv6 addresses.
  491. * We read the non-delimited strings into the tail of the buffer
  492. * using fscanf and then modify the buffer by shifting forward
  493. * while inserting ':'s and the nul terminator for the first string.
  494. * Hence the strings are at addr6x and addr6x+40. This generates
  495. * _much_ less code than the previous (upstream) approach. */
  496. char addr6x[80];
  497. char iface[16], flags[16];
  498. int iflags, metric, refcnt, use, prefix_len, slen;
  499. struct sockaddr_in6 snaddr6;
  500. FILE *fp = xfopen_for_read("/proc/net/ipv6_route");
  501. printf("Kernel IPv6 routing table\n%-44s%-40s"
  502. "Flags Metric Ref Use Iface\n",
  503. "Destination", "Next Hop");
  504. while (1) {
  505. int r;
  506. r = fscanf(fp, "%32s%x%*s%x%32s%x%x%x%x%s\n",
  507. addr6x+14, &prefix_len, &slen, addr6x+40+7,
  508. &metric, &refcnt, &use, &iflags, iface);
  509. if (r != 9) {
  510. if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
  511. break;
  512. }
  513. ERROR:
  514. bb_simple_perror_msg_and_die(bb_msg_read_error);
  515. }
  516. /* Do the addr6x shift-and-insert changes to ':'-delimit addresses.
  517. * For now, always do this to validate the proc route format, even
  518. * if the interface is down. */
  519. {
  520. int i = 0;
  521. char *p = addr6x+14;
  522. do {
  523. if (!*p) {
  524. if (i == 40) { /* nul terminator for 1st address? */
  525. addr6x[39] = 0; /* Fixup... need 0 instead of ':'. */
  526. ++p; /* Skip and continue. */
  527. continue;
  528. }
  529. goto ERROR;
  530. }
  531. addr6x[i++] = *p++;
  532. if (!((i+1) % 5)) {
  533. addr6x[i++] = ':';
  534. }
  535. } while (i < 40+28+7);
  536. }
  537. set_flags(flags, (iflags & IPV6_MASK));
  538. r = 0;
  539. while (1) {
  540. memset(&snaddr6, 0, sizeof(snaddr6));
  541. inet_pton(AF_INET6, addr6x + r,
  542. (struct sockaddr *) &snaddr6.sin6_addr);
  543. snaddr6.sin6_family = AF_INET6;
  544. naddr6 = INET6_rresolve((struct sockaddr_in6 *) &snaddr6,
  545. 0x0fff /* Apparently, upstream never resolves. */
  546. );
  547. if (!r) { /* 1st pass */
  548. snprintf(addr6, sizeof(addr6), "%s/%d", naddr6, prefix_len);
  549. r += 40;
  550. free(naddr6);
  551. } else { /* 2nd pass */
  552. /* Print the info. */
  553. printf("%-43s %-39s %-5s %-6d %-2d %7d %-8s\n",
  554. addr6, naddr6, flags, metric, refcnt, use, iface);
  555. free(naddr6);
  556. break;
  557. }
  558. }
  559. }
  560. fclose(fp);
  561. }
  562. #endif
  563. #define ROUTE_OPT_A 0x01
  564. #define ROUTE_OPT_n 0x02
  565. #define ROUTE_OPT_e 0x04
  566. #define ROUTE_OPT_INET6 0x08 /* Not an actual option. See below. */
  567. /* 1st byte is offset to next entry offset. 2nd byte is return value. */
  568. /* 2nd byte matches RTACTION_* code */
  569. static const char tbl_verb[] ALIGN1 =
  570. "\006\001add\0"
  571. "\006\002del\0"
  572. /* "\011\002delete\0" */
  573. "\010\002delete" /* Since it's last, we can save a byte. */
  574. ;
  575. int route_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  576. int route_main(int argc UNUSED_PARAM, char **argv)
  577. {
  578. unsigned opt;
  579. int what;
  580. char *family;
  581. char **p;
  582. /* First, remap '-net' and '-host' to avoid getopt problems. */
  583. p = argv;
  584. while (*++p) {
  585. if (strcmp(*p, "-net") == 0 || strcmp(*p, "-host") == 0) {
  586. p[0][0] = '#';
  587. }
  588. }
  589. opt = getopt32(argv, "A:ne", &family);
  590. if ((opt & ROUTE_OPT_A) && strcmp(family, "inet") != 0) {
  591. #if ENABLE_FEATURE_IPV6
  592. if (strcmp(family, "inet6") == 0) {
  593. opt |= ROUTE_OPT_INET6; /* Set flag for ipv6. */
  594. } else
  595. #endif
  596. bb_show_usage();
  597. }
  598. argv += optind;
  599. /* No more args means display the routing table. */
  600. if (!*argv) {
  601. int noresolve = (opt & ROUTE_OPT_n) ? 0x0fff : 0;
  602. #if ENABLE_FEATURE_IPV6
  603. if (opt & ROUTE_OPT_INET6)
  604. INET6_displayroutes();
  605. else
  606. #endif
  607. bb_displayroutes(noresolve, opt & ROUTE_OPT_e);
  608. fflush_stdout_and_exit(EXIT_SUCCESS);
  609. }
  610. /* Check verb. At the moment, must be add, del, or delete. */
  611. what = kw_lookup(tbl_verb, &argv);
  612. if (!what || !*argv) { /* Unknown verb or no more args. */
  613. bb_show_usage();
  614. }
  615. #if ENABLE_FEATURE_IPV6
  616. if (opt & ROUTE_OPT_INET6)
  617. INET6_setroute(what, argv);
  618. else
  619. #endif
  620. INET_setroute(what, argv);
  621. return EXIT_SUCCESS;
  622. }