source: MondoRescue/branches/2.2.9/mindi-busybox/networking/libiproute/iptunnel.c@ 2725

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