source: MondoRescue/branches/2.2.5/mindi-busybox/networking/libiproute/iptunnel.c@ 1772

Last change on this file since 1772 was 1772, checked in by Bruno Cornec, 16 years ago

Update mindi-busybox to 1.7.3

File size: 13.8 KB
RevLine 
[1765]1/* vi: set sw=4 ts=4: */
[821]2/*
3 * iptunnel.c "ip tunnel"
4 *
5 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6 *
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 * Rani Assaf <rani@magic.metawire.com> 980930: do not allow key for ipip/sit
14 * Phil Karn <karn@ka9q.ampr.org> 990408: "pmtudisc" flag
15 */
16
17#include <netinet/ip.h>
18#include <net/if.h>
19#include <net/if_arp.h>
20#include <asm/types.h>
21#ifndef __constant_htons
22#define __constant_htons htons
23#endif
24#include <linux/if_tunnel.h>
25
[1765]26#include "ip_common.h" /* #include "libbb.h" is inside */
[821]27#include "rt_names.h"
28#include "utils.h"
29
30
[1765]31/* Dies on error */
[821]32static int do_ioctl_get_ifindex(char *dev)
33{
34 struct ifreq ifr;
35 int fd;
36
[1765]37 strncpy(ifr.ifr_name, dev, sizeof(ifr.ifr_name));
38 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
39 xioctl(fd, SIOCGIFINDEX, &ifr);
[821]40 close(fd);
41 return ifr.ifr_ifindex;
42}
43
44static int do_ioctl_get_iftype(char *dev)
45{
46 struct ifreq ifr;
47 int fd;
[1765]48 int err;
[821]49
[1765]50 strncpy(ifr.ifr_name, dev, sizeof(ifr.ifr_name));
51 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
52 err = ioctl_or_warn(fd, SIOCGIFHWADDR, &ifr);
[821]53 close(fd);
[1765]54 return err ? -1 : ifr.ifr_addr.sa_family;
[821]55}
56
57static char *do_ioctl_get_ifname(int idx)
58{
[1765]59 struct ifreq ifr;
[821]60 int fd;
[1765]61 int err;
[821]62
63 ifr.ifr_ifindex = idx;
[1765]64 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
65 err = ioctl_or_warn(fd, SIOCGIFNAME, &ifr);
[821]66 close(fd);
[1765]67 return err ? NULL : xstrndup(ifr.ifr_name, sizeof(ifr.ifr_name));
[821]68}
69
[1765]70static int do_get_ioctl(const char *basedev, struct ip_tunnel_parm *p)
[821]71{
72 struct ifreq ifr;
73 int fd;
74 int err;
75
[1765]76 strncpy(ifr.ifr_name, basedev, sizeof(ifr.ifr_name));
[821]77 ifr.ifr_ifru.ifru_data = (void*)p;
[1765]78 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
79 err = ioctl_or_warn(fd, SIOCGETTUNNEL, &ifr);
[821]80 close(fd);
81 return err;
82}
83
[1765]84/* Dies on error, otherwise returns 0 */
85static int do_add_ioctl(int cmd, const char *basedev, struct ip_tunnel_parm *p)
[821]86{
87 struct ifreq ifr;
88 int fd;
89
90 if (cmd == SIOCCHGTUNNEL && p->name[0]) {
[1765]91 strncpy(ifr.ifr_name, p->name, sizeof(ifr.ifr_name));
[821]92 } else {
[1765]93 strncpy(ifr.ifr_name, basedev, sizeof(ifr.ifr_name));
[821]94 }
95 ifr.ifr_ifru.ifru_data = (void*)p;
[1765]96 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
97#if ENABLE_IOCTL_HEX2STR_ERROR
98 /* #define magic will turn ioctl# into string */
99 if (cmd == SIOCCHGTUNNEL)
100 xioctl(fd, SIOCCHGTUNNEL, &ifr);
101 else
102 xioctl(fd, SIOCADDTUNNEL, &ifr);
103#else
104 xioctl(fd, cmd, &ifr);
105#endif
[821]106 close(fd);
[1765]107 return 0;
[821]108}
109
[1765]110/* Dies on error, otherwise returns 0 */
111static int do_del_ioctl(const char *basedev, struct ip_tunnel_parm *p)
[821]112{
113 struct ifreq ifr;
114 int fd;
115
116 if (p->name[0]) {
[1765]117 strncpy(ifr.ifr_name, p->name, sizeof(ifr.ifr_name));
[821]118 } else {
[1765]119 strncpy(ifr.ifr_name, basedev, sizeof(ifr.ifr_name));
[821]120 }
121 ifr.ifr_ifru.ifru_data = (void*)p;
[1765]122 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
123 xioctl(fd, SIOCDELTUNNEL, &ifr);
[821]124 close(fd);
[1765]125 return 0;
[821]126}
127
[1765]128/* Dies on error */
129static void parse_args(int argc, char **argv, int cmd, struct ip_tunnel_parm *p)
[821]130{
[1765]131 static const char keywords[] ALIGN1 =
132 "mode\0""ipip\0""ip/ip\0""gre\0""gre/ip\0""sit\0""ipv6/ip\0"
133 "key\0""ikey\0""okey\0""seq\0""iseq\0""oseq\0"
134 "csum\0""icsum\0""ocsum\0""nopmtudisc\0""pmtudisc\0"
135 "remote\0""any\0""local\0""dev\0"
136 "ttl\0""inherit\0""tos\0""dsfield\0"
137 "name\0";
138 enum {
139 ARG_mode, ARG_ipip, ARG_ip_ip, ARG_gre, ARG_gre_ip, ARG_sit, ARG_ip6_ip,
140 ARG_key, ARG_ikey, ARG_okey, ARG_seq, ARG_iseq, ARG_oseq,
141 ARG_csum, ARG_icsum, ARG_ocsum, ARG_nopmtudisc, ARG_pmtudisc,
142 ARG_remote, ARG_any, ARG_local, ARG_dev,
143 ARG_ttl, ARG_inherit, ARG_tos, ARG_dsfield,
144 ARG_name
145 };
[821]146 int count = 0;
147 char medium[IFNAMSIZ];
[1765]148 int key;
149
[821]150 memset(p, 0, sizeof(*p));
151 memset(&medium, 0, sizeof(medium));
152
153 p->iph.version = 4;
154 p->iph.ihl = 5;
155#ifndef IP_DF
[1765]156#define IP_DF 0x4000 /* Flag: "Don't Fragment" */
[821]157#endif
158 p->iph.frag_off = htons(IP_DF);
159
160 while (argc > 0) {
[1765]161 key = index_in_strings(keywords, *argv);
162 if (key == ARG_mode) {
[821]163 NEXT_ARG();
[1765]164 key = index_in_strings(keywords, *argv);
165 if (key == ARG_ipip ||
166 key == ARG_ip_ip) {
[821]167 if (p->iph.protocol && p->iph.protocol != IPPROTO_IPIP) {
[1765]168 bb_error_msg_and_die("you managed to ask for more than one tunnel mode");
[821]169 }
170 p->iph.protocol = IPPROTO_IPIP;
[1765]171 } else if (key == ARG_gre ||
172 key == ARG_gre_ip) {
[821]173 if (p->iph.protocol && p->iph.protocol != IPPROTO_GRE) {
[1765]174 bb_error_msg_and_die("you managed to ask for more than one tunnel mode");
[821]175 }
176 p->iph.protocol = IPPROTO_GRE;
[1765]177 } else if (key == ARG_sit ||
178 key == ARG_ip6_ip) {
[821]179 if (p->iph.protocol && p->iph.protocol != IPPROTO_IPV6) {
[1765]180 bb_error_msg_and_die("you managed to ask for more than one tunnel mode");
[821]181 }
182 p->iph.protocol = IPPROTO_IPV6;
183 } else {
[1765]184 bb_error_msg_and_die("cannot guess tunnel mode");
[821]185 }
[1765]186 } else if (key == ARG_key) {
[821]187 unsigned uval;
188 NEXT_ARG();
189 p->i_flags |= GRE_KEY;
190 p->o_flags |= GRE_KEY;
191 if (strchr(*argv, '.'))
192 p->i_key = p->o_key = get_addr32(*argv);
193 else {
194 if (get_unsigned(&uval, *argv, 0)<0) {
[1765]195 bb_error_msg_and_die("invalid value of \"key\"");
[821]196 }
197 p->i_key = p->o_key = htonl(uval);
198 }
[1765]199 } else if (key == ARG_ikey) {
[821]200 unsigned uval;
201 NEXT_ARG();
202 p->i_flags |= GRE_KEY;
203 if (strchr(*argv, '.'))
204 p->o_key = get_addr32(*argv);
205 else {
206 if (get_unsigned(&uval, *argv, 0)<0) {
[1765]207 bb_error_msg_and_die("invalid value of \"ikey\"");
[821]208 }
209 p->i_key = htonl(uval);
210 }
[1765]211 } else if (key == ARG_okey) {
[821]212 unsigned uval;
213 NEXT_ARG();
214 p->o_flags |= GRE_KEY;
215 if (strchr(*argv, '.'))
216 p->o_key = get_addr32(*argv);
217 else {
218 if (get_unsigned(&uval, *argv, 0)<0) {
[1765]219 bb_error_msg_and_die("invalid value of \"okey\"");
[821]220 }
221 p->o_key = htonl(uval);
222 }
[1765]223 } else if (key == ARG_seq) {
[821]224 p->i_flags |= GRE_SEQ;
225 p->o_flags |= GRE_SEQ;
[1765]226 } else if (key == ARG_iseq) {
[821]227 p->i_flags |= GRE_SEQ;
[1765]228 } else if (key == ARG_oseq) {
[821]229 p->o_flags |= GRE_SEQ;
[1765]230 } else if (key == ARG_csum) {
[821]231 p->i_flags |= GRE_CSUM;
232 p->o_flags |= GRE_CSUM;
[1765]233 } else if (key == ARG_icsum) {
[821]234 p->i_flags |= GRE_CSUM;
[1765]235 } else if (key == ARG_ocsum) {
[821]236 p->o_flags |= GRE_CSUM;
[1765]237 } else if (key == ARG_nopmtudisc) {
[821]238 p->iph.frag_off = 0;
[1765]239 } else if (key == ARG_pmtudisc) {
[821]240 p->iph.frag_off = htons(IP_DF);
[1765]241 } else if (key == ARG_remote) {
[821]242 NEXT_ARG();
[1765]243 key = index_in_strings(keywords, *argv);
[1772]244 if (key != ARG_any)
[821]245 p->iph.daddr = get_addr32(*argv);
[1765]246 } else if (key == ARG_local) {
[821]247 NEXT_ARG();
[1765]248 key = index_in_strings(keywords, *argv);
[1772]249 if (key != ARG_any)
[821]250 p->iph.saddr = get_addr32(*argv);
[1765]251 } else if (key == ARG_dev) {
[821]252 NEXT_ARG();
253 strncpy(medium, *argv, IFNAMSIZ-1);
[1765]254 } else if (key == ARG_ttl) {
[821]255 unsigned uval;
256 NEXT_ARG();
[1765]257 key = index_in_strings(keywords, *argv);
258 if (key != ARG_inherit) {
[821]259 if (get_unsigned(&uval, *argv, 0))
260 invarg(*argv, "TTL");
261 if (uval > 255)
262 invarg(*argv, "TTL must be <=255");
263 p->iph.ttl = uval;
264 }
[1765]265 } else if (key == ARG_tos ||
266 key == ARG_dsfield) {
267 uint32_t uval;
[821]268 NEXT_ARG();
[1765]269 key = index_in_strings(keywords, *argv);
270 if (key != ARG_inherit) {
[821]271 if (rtnl_dsfield_a2n(&uval, *argv))
272 invarg(*argv, "TOS");
273 p->iph.tos = uval;
274 } else
275 p->iph.tos = 1;
276 } else {
[1765]277 if (key == ARG_name) {
[821]278 NEXT_ARG();
279 }
280 if (p->name[0])
281 duparg2("name", *argv);
282 strncpy(p->name, *argv, IFNAMSIZ);
283 if (cmd == SIOCCHGTUNNEL && count == 0) {
284 struct ip_tunnel_parm old_p;
285 memset(&old_p, 0, sizeof(old_p));
286 if (do_get_ioctl(*argv, &old_p))
[1765]287 exit(1);
[821]288 *p = old_p;
289 }
290 }
291 count++;
[1765]292 argc--;
293 argv++;
[821]294 }
295
296 if (p->iph.protocol == 0) {
297 if (memcmp(p->name, "gre", 3) == 0)
298 p->iph.protocol = IPPROTO_GRE;
299 else if (memcmp(p->name, "ipip", 4) == 0)
300 p->iph.protocol = IPPROTO_IPIP;
301 else if (memcmp(p->name, "sit", 3) == 0)
302 p->iph.protocol = IPPROTO_IPV6;
303 }
304
305 if (p->iph.protocol == IPPROTO_IPIP || p->iph.protocol == IPPROTO_IPV6) {
306 if ((p->i_flags & GRE_KEY) || (p->o_flags & GRE_KEY)) {
[1765]307 bb_error_msg_and_die("keys are not allowed with ipip and sit");
[821]308 }
309 }
310
311 if (medium[0]) {
312 p->link = do_ioctl_get_ifindex(medium);
313 }
314
315 if (p->i_key == 0 && IN_MULTICAST(ntohl(p->iph.daddr))) {
316 p->i_key = p->iph.daddr;
317 p->i_flags |= GRE_KEY;
318 }
319 if (p->o_key == 0 && IN_MULTICAST(ntohl(p->iph.daddr))) {
320 p->o_key = p->iph.daddr;
321 p->o_flags |= GRE_KEY;
322 }
323 if (IN_MULTICAST(ntohl(p->iph.daddr)) && !p->iph.saddr) {
[1765]324 bb_error_msg_and_die("broadcast tunnel requires a source address");
[821]325 }
326}
327
328
[1765]329/* Return value becomes exitcode. It's okay to not return at all */
[821]330static int do_add(int cmd, int argc, char **argv)
331{
332 struct ip_tunnel_parm p;
333
[1765]334 parse_args(argc, argv, cmd, &p);
[821]335
336 if (p.iph.ttl && p.iph.frag_off == 0) {
[1765]337 bb_error_msg_and_die("ttl != 0 and noptmudisc are incompatible");
[821]338 }
339
340 switch (p.iph.protocol) {
341 case IPPROTO_IPIP:
342 return do_add_ioctl(cmd, "tunl0", &p);
343 case IPPROTO_GRE:
344 return do_add_ioctl(cmd, "gre0", &p);
345 case IPPROTO_IPV6:
346 return do_add_ioctl(cmd, "sit0", &p);
347 default:
[1765]348 bb_error_msg_and_die("cannot determine tunnel mode (ipip, gre or sit)");
[821]349 }
350}
351
[1765]352/* Return value becomes exitcode. It's okay to not return at all */
[821]353static int do_del(int argc, char **argv)
354{
355 struct ip_tunnel_parm p;
356
[1765]357 parse_args(argc, argv, SIOCDELTUNNEL, &p);
[821]358
359 switch (p.iph.protocol) {
360 case IPPROTO_IPIP:
361 return do_del_ioctl("tunl0", &p);
362 case IPPROTO_GRE:
363 return do_del_ioctl("gre0", &p);
364 case IPPROTO_IPV6:
365 return do_del_ioctl("sit0", &p);
366 default:
367 return do_del_ioctl(p.name, &p);
368 }
369}
370
371static void print_tunnel(struct ip_tunnel_parm *p)
372{
373 char s1[256];
374 char s2[256];
375 char s3[64];
376 char s4[64];
377
378 format_host(AF_INET, 4, &p->iph.daddr, s1, sizeof(s1));
379 format_host(AF_INET, 4, &p->iph.saddr, s2, sizeof(s2));
380 inet_ntop(AF_INET, &p->i_key, s3, sizeof(s3));
381 inet_ntop(AF_INET, &p->o_key, s4, sizeof(s4));
382
383 printf("%s: %s/ip remote %s local %s ",
384 p->name,
385 p->iph.protocol == IPPROTO_IPIP ? "ip" :
386 (p->iph.protocol == IPPROTO_GRE ? "gre" :
387 (p->iph.protocol == IPPROTO_IPV6 ? "ipv6" : "unknown")),
388 p->iph.daddr ? s1 : "any", p->iph.saddr ? s2 : "any");
389 if (p->link) {
390 char *n = do_ioctl_get_ifname(p->link);
[1765]391 if (n) {
[821]392 printf(" dev %s ", n);
[1765]393 free(n);
394 }
[821]395 }
396 if (p->iph.ttl)
397 printf(" ttl %d ", p->iph.ttl);
398 else
399 printf(" ttl inherit ");
400 if (p->iph.tos) {
401 SPRINT_BUF(b1);
402 printf(" tos");
[1765]403 if (p->iph.tos & 1)
[821]404 printf(" inherit");
[1765]405 if (p->iph.tos & ~1)
406 printf("%c%s ", p->iph.tos & 1 ? '/' : ' ',
407 rtnl_dsfield_n2a(p->iph.tos & ~1, b1, sizeof(b1)));
[821]408 }
[1765]409 if (!(p->iph.frag_off & htons(IP_DF)))
[821]410 printf(" nopmtudisc");
411
[1765]412 if ((p->i_flags & GRE_KEY) && (p->o_flags & GRE_KEY) && p->o_key == p->i_key)
[821]413 printf(" key %s", s3);
[1765]414 else if ((p->i_flags | p->o_flags) & GRE_KEY) {
415 if (p->i_flags & GRE_KEY)
[821]416 printf(" ikey %s ", s3);
[1765]417 if (p->o_flags & GRE_KEY)
[821]418 printf(" okey %s ", s4);
419 }
420
[1765]421 if (p->i_flags & GRE_SEQ)
422 printf("%c Drop packets out of sequence.\n", _SL_);
423 if (p->i_flags & GRE_CSUM)
424 printf("%c Checksum in received packet is required.", _SL_);
425 if (p->o_flags & GRE_SEQ)
426 printf("%c Sequence packets on output.", _SL_);
427 if (p->o_flags & GRE_CSUM)
428 printf("%c Checksum output packets.", _SL_);
[821]429}
430
[1765]431static void do_tunnels_list(struct ip_tunnel_parm *p)
[821]432{
433 char name[IFNAMSIZ];
[1765]434 unsigned long rx_bytes, rx_packets, rx_errs, rx_drops,
435 rx_fifo, rx_frame,
436 tx_bytes, tx_packets, tx_errs, tx_drops,
437 tx_fifo, tx_colls, tx_carrier, rx_multi;
[821]438 int type;
439 struct ip_tunnel_parm p1;
[1765]440 char buf[512];
441 FILE *fp = fopen_or_warn("/proc/net/dev", "r");
[821]442
443 if (fp == NULL) {
[1765]444 return;
[821]445 }
446
447 fgets(buf, sizeof(buf), fp);
448 fgets(buf, sizeof(buf), fp);
449
450 while (fgets(buf, sizeof(buf), fp) != NULL) {
451 char *ptr;
[1765]452
453 /*buf[sizeof(buf) - 1] = 0; - fgets is safe anyway */
454 ptr = strchr(buf, ':');
455 if (ptr == NULL ||
[821]456 (*ptr++ = 0, sscanf(buf, "%s", name) != 1)) {
[1765]457 bb_error_msg("wrong format of /proc/net/dev");
458 return;
[821]459 }
460 if (sscanf(ptr, "%lu%lu%lu%lu%lu%lu%lu%*d%lu%lu%lu%lu%lu%lu%lu",
461 &rx_bytes, &rx_packets, &rx_errs, &rx_drops,
462 &rx_fifo, &rx_frame, &rx_multi,
463 &tx_bytes, &tx_packets, &tx_errs, &tx_drops,
464 &tx_fifo, &tx_colls, &tx_carrier) != 14)
465 continue;
466 if (p->name[0] && strcmp(p->name, name))
467 continue;
468 type = do_ioctl_get_iftype(name);
469 if (type == -1) {
[1765]470 bb_error_msg("cannot get type of [%s]", name);
[821]471 continue;
472 }
473 if (type != ARPHRD_TUNNEL && type != ARPHRD_IPGRE && type != ARPHRD_SIT)
474 continue;
475 memset(&p1, 0, sizeof(p1));
476 if (do_get_ioctl(name, &p1))
477 continue;
478 if ((p->link && p1.link != p->link) ||
479 (p->name[0] && strcmp(p1.name, p->name)) ||
480 (p->iph.daddr && p1.iph.daddr != p->iph.daddr) ||
481 (p->iph.saddr && p1.iph.saddr != p->iph.saddr) ||
482 (p->i_key && p1.i_key != p->i_key))
483 continue;
484 print_tunnel(&p1);
[1765]485 puts("");
[821]486 }
487}
488
[1765]489/* Return value becomes exitcode. It's okay to not return at all */
[821]490static int do_show(int argc, char **argv)
491{
492 int err;
493 struct ip_tunnel_parm p;
494
[1765]495 parse_args(argc, argv, SIOCGETTUNNEL, &p);
[821]496
497 switch (p.iph.protocol) {
498 case IPPROTO_IPIP:
499 err = do_get_ioctl(p.name[0] ? p.name : "tunl0", &p);
500 break;
501 case IPPROTO_GRE:
502 err = do_get_ioctl(p.name[0] ? p.name : "gre0", &p);
503 break;
504 case IPPROTO_IPV6:
505 err = do_get_ioctl(p.name[0] ? p.name : "sit0", &p);
506 break;
507 default:
508 do_tunnels_list(&p);
509 return 0;
510 }
511 if (err)
512 return -1;
513
514 print_tunnel(&p);
[1765]515 puts("");
[821]516 return 0;
517}
518
[1765]519/* Return value becomes exitcode. It's okay to not return at all */
[821]520int do_iptunnel(int argc, char **argv)
521{
[1765]522 static const char keywords[] ALIGN1 =
523 "add\0""change\0""delete\0""show\0""list\0""lst\0";
524 enum { ARG_add = 0, ARG_change, ARG_del, ARG_show, ARG_list, ARG_lst };
525 int key;
[821]526
[1765]527 if (argc) {
528 key = index_in_substrings(keywords, *argv);
529 if (key < 0)
530 bb_error_msg_and_die(bb_msg_invalid_arg, *argv, applet_name);
531 --argc;
532 ++argv;
533 if (key == ARG_add)
534 return do_add(SIOCADDTUNNEL, argc, argv);
535 if (key == ARG_change)
536 return do_add(SIOCCHGTUNNEL, argc, argv);
537 if (key == ARG_del)
538 return do_del(argc, argv);
539 }
540 return do_show(argc, argv);
[821]541}
Note: See TracBrowser for help on using the repository browser.