]> git.proxmox.com Git - mirror_iproute2.git/blame - ip/ip6tunnel.c
ip{,6}tunnel: align do_tunnels_list() a bit
[mirror_iproute2.git] / ip / ip6tunnel.c
CommitLineData
9447a0d3
MN
1/*
2 * Copyright (C)2006 USAGI/WIDE Project
ae665a52 3 *
9447a0d3
MN
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
ae665a52 8 *
9447a0d3
MN
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
ae665a52 13 *
9447a0d3 14 * You should have received a copy of the GNU General Public License
4d98ab00 15 * along with this program; if not, see <http://www.gnu.org/licenses>.
9447a0d3 16 */
9447a0d3
MN
17/*
18 * Author:
19 * Masahide NAKAMURA @USAGI
20 */
ae665a52 21
9447a0d3
MN
22#include <stdio.h>
23#include <string.h>
24#include <stdlib.h>
9447a0d3 25#include <unistd.h>
288384f2
MN
26#include <sys/types.h>
27#include <sys/socket.h>
9447a0d3 28#include <arpa/inet.h>
288384f2 29#include <sys/ioctl.h>
9447a0d3 30#include <linux/ip.h>
288384f2
MN
31#include <linux/if.h>
32#include <linux/if_arp.h>
9447a0d3 33#include <linux/if_tunnel.h>
288384f2 34#include <linux/ip6_tunnel.h>
9447a0d3 35
288384f2
MN
36#include "utils.h"
37#include "tunnel.h"
ea71beac 38#include "ip_common.h"
9447a0d3 39
288384f2
MN
40#define IP6_FLOWINFO_TCLASS htonl(0x0FF00000)
41#define IP6_FLOWINFO_FLOWLABEL htonl(0x000FFFFF)
9447a0d3 42
288384f2
MN
43#define DEFAULT_TNL_HOP_LIMIT (64)
44
45static void usage(void) __attribute__((noreturn));
9447a0d3
MN
46
47static void usage(void)
48{
288384f2 49 fprintf(stderr, "Usage: ip -f inet6 tunnel { add | change | del | show } [ NAME ]\n");
f36d1140 50 fprintf(stderr, " [ mode { ip6ip6 | ipip6 | ip6gre | vti6 | any } ]\n");
288384f2
MN
51 fprintf(stderr, " [ remote ADDR local ADDR ] [ dev PHYS_DEV ]\n");
52 fprintf(stderr, " [ encaplimit ELIM ]\n");
eddde110 53 fprintf(stderr ," [ hoplimit TTL ] [ tclass TCLASS ] [ flowlabel FLOWLABEL ]\n");
288384f2 54 fprintf(stderr, " [ dscp inherit ]\n");
af89576d 55 fprintf(stderr, " [ [i|o]seq ] [ [i|o]key KEY ] [ [i|o]csum ]\n");
288384f2 56 fprintf(stderr, "\n");
eddde110
YH
57 fprintf(stderr, "Where: NAME := STRING\n");
58 fprintf(stderr, " ADDR := IPV6_ADDRESS\n");
59 fprintf(stderr, " ELIM := { none | 0..255 }(default=%d)\n",
288384f2 60 IPV6_DEFAULT_TNL_ENCAP_LIMIT);
eddde110 61 fprintf(stderr, " TTL := 0..255 (default=%d)\n",
288384f2 62 DEFAULT_TNL_HOP_LIMIT);
d0c8420c 63 fprintf(stderr, " TCLASS := { 0x0..0xff | inherit }\n");
eddde110 64 fprintf(stderr, " FLOWLABEL := { 0x0..0xfffff | inherit }\n");
af89576d 65 fprintf(stderr, " KEY := { DOTTED_QUAD | NUMBER }\n");
9447a0d3
MN
66 exit(-1);
67}
68
af89576d 69static void print_tunnel(struct ip6_tnl_parm2 *p)
9447a0d3
MN
70{
71 char remote[64];
72 char local[64];
ae665a52 73
9447a0d3
MN
74 inet_ntop(AF_INET6, &p->raddr, remote, sizeof(remote));
75 inet_ntop(AF_INET6, &p->laddr, local, sizeof(local));
76
288384f2
MN
77 printf("%s: %s/ipv6 remote %s local %s",
78 p->name, tnl_strproto(p->proto), remote, local);
9447a0d3 79 if (p->link) {
ea71beac 80 const char *n = ll_index_to_name(p->link);
9447a0d3
MN
81 if (n)
82 printf(" dev %s", n);
83 }
9447a0d3 84
288384f2
MN
85 if (p->flags & IP6_TNL_F_IGN_ENCAP_LIMIT)
86 printf(" encaplimit none");
87 else
88 printf(" encaplimit %u", p->encap_limit);
9447a0d3 89
288384f2 90 printf(" hoplimit %u", p->hop_limit);
9447a0d3 91
288384f2 92 if (p->flags & IP6_TNL_F_USE_ORIG_TCLASS)
eddde110 93 printf(" tclass inherit");
288384f2
MN
94 else {
95 __u32 val = ntohl(p->flowinfo & IP6_FLOWINFO_TCLASS);
eddde110 96 printf(" tclass 0x%02x", (__u8)(val >> 20));
9447a0d3 97 }
9447a0d3 98
288384f2 99 if (p->flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
eddde110 100 printf(" flowlabel inherit");
288384f2 101 else
eddde110 102 printf(" flowlabel 0x%05x", ntohl(p->flowinfo & IP6_FLOWINFO_FLOWLABEL));
9447a0d3 103
288384f2 104 printf(" (flowinfo 0x%08x)", ntohl(p->flowinfo));
9447a0d3 105
288384f2
MN
106 if (p->flags & IP6_TNL_F_RCV_DSCP_COPY)
107 printf(" dscp inherit");
af89576d 108
109 if (p->proto == IPPROTO_GRE) {
110 if ((p->i_flags&GRE_KEY) && (p->o_flags&GRE_KEY) && p->o_key == p->i_key)
111 printf(" key %u", ntohl(p->i_key));
112 else if ((p->i_flags|p->o_flags)&GRE_KEY) {
113 if (p->i_flags&GRE_KEY)
8de592d0 114 printf(" ikey %u", ntohl(p->i_key));
af89576d 115 if (p->o_flags&GRE_KEY)
8de592d0 116 printf(" okey %u", ntohl(p->o_key));
af89576d 117 }
118
119 if (p->i_flags&GRE_SEQ)
4cb8d030 120 printf("%s Drop packets out of sequence.", _SL_);
af89576d 121 if (p->i_flags&GRE_CSUM)
122 printf("%s Checksum in received packet is required.", _SL_);
123 if (p->o_flags&GRE_SEQ)
124 printf("%s Sequence packets on output.", _SL_);
125 if (p->o_flags&GRE_CSUM)
126 printf("%s Checksum output packets.", _SL_);
127 }
9447a0d3
MN
128}
129
af89576d 130static int parse_args(int argc, char **argv, int cmd, struct ip6_tnl_parm2 *p)
9447a0d3 131{
21a5a6b3 132 int count = 0;
9447a0d3
MN
133 char medium[IFNAMSIZ];
134
288384f2 135 memset(medium, 0, sizeof(medium));
9447a0d3
MN
136
137 while (argc > 0) {
0b959b0f
YH
138 if (strcmp(*argv, "mode") == 0) {
139 NEXT_ARG();
140 if (strcmp(*argv, "ipv6/ipv6") == 0 ||
141 strcmp(*argv, "ip6ip6") == 0)
142 p->proto = IPPROTO_IPV6;
f36d1140
SK
143 else if (strcmp(*argv, "vti6") == 0) {
144 p->proto = IPPROTO_IPV6;
145 p->i_flags |= VTI_ISVTI;
146 } else if (strcmp(*argv, "ip/ipv6") == 0 ||
0b959b0f
YH
147 strcmp(*argv, "ipv4/ipv6") == 0 ||
148 strcmp(*argv, "ipip6") == 0 ||
149 strcmp(*argv, "ip4ip6") == 0)
150 p->proto = IPPROTO_IPIP;
af89576d 151 else if (strcmp(*argv, "ip6gre") == 0 ||
152 strcmp(*argv, "gre/ipv6") == 0)
153 p->proto = IPPROTO_GRE;
0b959b0f
YH
154 else if (strcmp(*argv, "any/ipv6") == 0 ||
155 strcmp(*argv, "any") == 0)
156 p->proto = 0;
157 else {
4b726cb1
SH
158 fprintf(stderr,"Unknown tunnel mode \"%s\"\n", *argv);
159 exit(-1);
160 }
161 } else if (strcmp(*argv, "remote") == 0) {
288384f2
MN
162 inet_prefix raddr;
163 NEXT_ARG();
164 get_prefix(&raddr, *argv, preferred_family);
165 if (raddr.family == AF_UNSPEC)
166 invarg("\"remote\" address family is AF_UNSPEC", *argv);
167 memcpy(&p->raddr, &raddr.data, sizeof(p->raddr));
168 } else if (strcmp(*argv, "local") == 0) {
169 inet_prefix laddr;
170 NEXT_ARG();
171 get_prefix(&laddr, *argv, preferred_family);
172 if (laddr.family == AF_UNSPEC)
173 invarg("\"local\" address family is AF_UNSPEC", *argv);
174 memcpy(&p->laddr, &laddr.data, sizeof(p->laddr));
175 } else if (strcmp(*argv, "dev") == 0) {
176 NEXT_ARG();
9447a0d3 177 strncpy(medium, *argv, IFNAMSIZ - 1);
288384f2
MN
178 } else if (strcmp(*argv, "encaplimit") == 0) {
179 NEXT_ARG();
180 if (strcmp(*argv, "none") == 0) {
181 p->flags |= IP6_TNL_F_IGN_ENCAP_LIMIT;
9447a0d3
MN
182 } else {
183 __u8 uval;
288384f2
MN
184 if (get_u8(&uval, *argv, 0) < -1)
185 invarg("invalid ELIM", *argv);
9447a0d3 186 p->encap_limit = uval;
3f83dce5 187 p->flags &= ~IP6_TNL_F_IGN_ENCAP_LIMIT;
9447a0d3 188 }
eddde110
YH
189 } else if (strcmp(*argv, "hoplimit") == 0 ||
190 strcmp(*argv, "ttl") == 0 ||
191 strcmp(*argv, "hlim") == 0) {
288384f2
MN
192 __u8 uval;
193 NEXT_ARG();
194 if (get_u8(&uval, *argv, 0))
eddde110 195 invarg("invalid TTL", *argv);
288384f2 196 p->hop_limit = uval;
eddde110
YH
197 } else if (strcmp(*argv, "tclass") == 0 ||
198 strcmp(*argv, "tc") == 0 ||
199 strcmp(*argv, "tos") == 0 ||
200 matches(*argv, "dsfield") == 0) {
288384f2
MN
201 __u8 uval;
202 NEXT_ARG();
df5574d0 203 p->flowinfo &= ~IP6_FLOWINFO_TCLASS;
288384f2
MN
204 if (strcmp(*argv, "inherit") == 0)
205 p->flags |= IP6_TNL_F_USE_ORIG_TCLASS;
206 else {
207 if (get_u8(&uval, *argv, 16))
eddde110 208 invarg("invalid TClass", *argv);
288384f2
MN
209 p->flowinfo |= htonl((__u32)uval << 20) & IP6_FLOWINFO_TCLASS;
210 p->flags &= ~IP6_TNL_F_USE_ORIG_TCLASS;
211 }
eddde110
YH
212 } else if (strcmp(*argv, "flowlabel") == 0 ||
213 strcmp(*argv, "fl") == 0) {
288384f2
MN
214 __u32 uval;
215 NEXT_ARG();
df5574d0 216 p->flowinfo &= ~IP6_FLOWINFO_FLOWLABEL;
288384f2
MN
217 if (strcmp(*argv, "inherit") == 0)
218 p->flags |= IP6_TNL_F_USE_ORIG_FLOWLABEL;
219 else {
220 if (get_u32(&uval, *argv, 16))
eddde110 221 invarg("invalid Flowlabel", *argv);
288384f2 222 if (uval > 0xFFFFF)
eddde110 223 invarg("invalid Flowlabel", *argv);
288384f2
MN
224 p->flowinfo |= htonl(uval) & IP6_FLOWINFO_FLOWLABEL;
225 p->flags &= ~IP6_TNL_F_USE_ORIG_FLOWLABEL;
226 }
227 } else if (strcmp(*argv, "dscp") == 0) {
228 NEXT_ARG();
229 if (strcmp(*argv, "inherit") != 0)
230 invarg("not inherit", *argv);
231 p->flags |= IP6_TNL_F_RCV_DSCP_COPY;
af89576d 232 } else if (strcmp(*argv, "key") == 0) {
af89576d 233 NEXT_ARG();
234 p->i_flags |= GRE_KEY;
235 p->o_flags |= GRE_KEY;
a7ed1520 236 p->i_key = p->o_key = tnl_parse_key("key", *argv);
af89576d 237 } else if (strcmp(*argv, "ikey") == 0) {
af89576d 238 NEXT_ARG();
239 p->i_flags |= GRE_KEY;
a7ed1520 240 p->i_key = tnl_parse_key("ikey", *argv);
af89576d 241 } else if (strcmp(*argv, "okey") == 0) {
af89576d 242 NEXT_ARG();
243 p->o_flags |= GRE_KEY;
a7ed1520 244 p->o_key = tnl_parse_key("okey", *argv);
af89576d 245 } else if (strcmp(*argv, "seq") == 0) {
246 p->i_flags |= GRE_SEQ;
247 p->o_flags |= GRE_SEQ;
248 } else if (strcmp(*argv, "iseq") == 0) {
249 p->i_flags |= GRE_SEQ;
250 } else if (strcmp(*argv, "oseq") == 0) {
251 p->o_flags |= GRE_SEQ;
252 } else if (strcmp(*argv, "csum") == 0) {
253 p->i_flags |= GRE_CSUM;
254 p->o_flags |= GRE_CSUM;
255 } else if (strcmp(*argv, "icsum") == 0) {
256 p->i_flags |= GRE_CSUM;
257 } else if (strcmp(*argv, "ocsum") == 0) {
258 p->o_flags |= GRE_CSUM;
9447a0d3 259 } else {
288384f2
MN
260 if (strcmp(*argv, "name") == 0) {
261 NEXT_ARG();
262 }
8aacb9bb 263 else if (matches(*argv, "help") == 0)
9447a0d3 264 usage();
288384f2
MN
265 if (p->name[0])
266 duparg2("name", *argv);
9447a0d3 267 strncpy(p->name, *argv, IFNAMSIZ - 1);
21a5a6b3 268 if (cmd == SIOCCHGTUNNEL && count == 0) {
af89576d 269 struct ip6_tnl_parm2 old_p;
21a5a6b3
JB
270 memset(&old_p, 0, sizeof(old_p));
271 if (tnl_get_ioctl(*argv, &old_p))
272 return -1;
273 *p = old_p;
274 }
9447a0d3 275 }
21a5a6b3 276 count++;
9447a0d3
MN
277 argc--; argv++;
278 }
279 if (medium[0]) {
ea71beac 280 p->link = ll_name_to_index(medium);
6ddb1e8c
PS
281 if (p->link == 0) {
282 fprintf(stderr, "Cannot find device \"%s\"\n", medium);
9447a0d3 283 return -1;
6ddb1e8c 284 }
9447a0d3
MN
285 }
286 return 0;
287}
288
af89576d 289static void ip6_tnl_parm_init(struct ip6_tnl_parm2 *p, int apply_default)
288384f2
MN
290{
291 memset(p, 0, sizeof(*p));
292 p->proto = IPPROTO_IPV6;
293 if (apply_default) {
294 p->hop_limit = DEFAULT_TNL_HOP_LIMIT;
295 p->encap_limit = IPV6_DEFAULT_TNL_ENCAP_LIMIT;
296 }
297}
298
299/*
300 * @p1: user specified parameter
301 * @p2: database entry
302 */
af89576d 303static int ip6_tnl_parm_match(const struct ip6_tnl_parm2 *p1,
304 const struct ip6_tnl_parm2 *p2)
288384f2
MN
305{
306 return ((!p1->link || p1->link == p2->link) &&
307 (!p1->name[0] || strcmp(p1->name, p2->name) == 0) &&
308 (memcmp(&p1->laddr, &in6addr_any, sizeof(p1->laddr)) == 0 ||
309 memcmp(&p1->laddr, &p2->laddr, sizeof(p1->laddr)) == 0) &&
310 (memcmp(&p1->raddr, &in6addr_any, sizeof(p1->raddr)) == 0 ||
311 memcmp(&p1->raddr, &p2->raddr, sizeof(p1->raddr)) == 0) &&
312 (!p1->proto || !p2->proto || p1->proto == p2->proto) &&
313 (!p1->encap_limit || p1->encap_limit == p2->encap_limit) &&
314 (!p1->hop_limit || p1->hop_limit == p2->hop_limit) &&
315 (!(p1->flowinfo & IP6_FLOWINFO_TCLASS) ||
316 !((p1->flowinfo ^ p2->flowinfo) & IP6_FLOWINFO_TCLASS)) &&
317 (!(p1->flowinfo & IP6_FLOWINFO_FLOWLABEL) ||
318 !((p1->flowinfo ^ p2->flowinfo) & IP6_FLOWINFO_FLOWLABEL)) &&
319 (!p1->flags || (p1->flags & p2->flags)));
320}
321
af89576d 322static int do_tunnels_list(struct ip6_tnl_parm2 *p)
288384f2
MN
323{
324 char buf[512];
325 int err = -1;
326 FILE *fp = fopen("/proc/net/dev", "r");
327 if (fp == NULL) {
328 perror("fopen");
c4527d7b 329 return -1;
288384f2
MN
330 }
331
332 /* skip two lines at the begenning of the file */
38c867d2
SH
333 if (!fgets(buf, sizeof(buf), fp) ||
334 !fgets(buf, sizeof(buf), fp)) {
335 fprintf(stderr, "/proc/net/dev read error\n");
c4527d7b 336 goto end;
38c867d2 337 }
288384f2
MN
338
339 while (fgets(buf, sizeof(buf), fp) != NULL) {
340 char name[IFNAMSIZ];
ea71beac 341 int index, type;
288384f2
MN
342 unsigned long rx_bytes, rx_packets, rx_errs, rx_drops,
343 rx_fifo, rx_frame,
344 tx_bytes, tx_packets, tx_errs, tx_drops,
345 tx_fifo, tx_colls, tx_carrier, rx_multi;
af89576d 346 struct ip6_tnl_parm2 p1;
288384f2
MN
347 char *ptr;
348
349 buf[sizeof(buf) - 1] = '\0';
350 if ((ptr = strchr(buf, ':')) == NULL ||
351 (*ptr++ = 0, sscanf(buf, "%s", name) != 1)) {
14645ec2 352 fprintf(stderr, "Wrong format for /proc/net/dev. Giving up.\n");
288384f2
MN
353 goto end;
354 }
355 if (sscanf(ptr, "%ld%ld%ld%ld%ld%ld%ld%*d%ld%ld%ld%ld%ld%ld%ld",
356 &rx_bytes, &rx_packets, &rx_errs, &rx_drops,
357 &rx_fifo, &rx_frame, &rx_multi,
358 &tx_bytes, &tx_packets, &tx_errs, &tx_drops,
359 &tx_fifo, &tx_colls, &tx_carrier) != 14)
360 continue;
361 if (p->name[0] && strcmp(p->name, name))
362 continue;
ea71beac
SH
363 index = ll_name_to_index(name);
364 if (index == 0)
365 continue;
366 type = ll_index_to_type(index);
288384f2 367 if (type == -1) {
14645ec2 368 fprintf(stderr, "Failed to get type of \"%s\"\n", name);
288384f2
MN
369 continue;
370 }
af89576d 371 if (type != ARPHRD_TUNNEL6 && type != ARPHRD_IP6GRE)
288384f2
MN
372 continue;
373 memset(&p1, 0, sizeof(p1));
374 ip6_tnl_parm_init(&p1, 0);
af89576d 375 if (type == ARPHRD_IP6GRE)
376 p1.proto = IPPROTO_GRE;
288384f2 377 strcpy(p1.name, name);
ea71beac 378 p1.link = ll_name_to_index(p1.name);
288384f2
MN
379 if (p1.link == 0)
380 continue;
381 if (tnl_get_ioctl(p1.name, &p1))
382 continue;
383 if (!ip6_tnl_parm_match(p, &p1))
384 continue;
385 print_tunnel(&p1);
386 if (show_stats) {
387 printf("%s", _SL_);
388 printf("RX: Packets Bytes Errors CsumErrs OutOfSeq Mcasts%s", _SL_);
389 printf(" %-10ld %-12ld %-6ld %-8ld %-8ld %-8ld%s",
390 rx_packets, rx_bytes, rx_errs, rx_frame, rx_fifo, rx_multi, _SL_);
391 printf("TX: Packets Bytes Errors DeadLoop NoRoute NoBufs%s", _SL_);
392 printf(" %-10ld %-12ld %-6ld %-8ld %-8ld %-6ld",
393 tx_packets, tx_bytes, tx_errs, tx_colls, tx_carrier, tx_drops);
394 }
395 printf("\n");
396 }
397 err = 0;
288384f2 398 end:
c4527d7b 399 fclose(fp);
288384f2
MN
400 return err;
401}
402
9447a0d3
MN
403static int do_show(int argc, char **argv)
404{
af89576d 405 struct ip6_tnl_parm2 p;
288384f2 406
ea71beac 407 ll_init_map(&rth);
288384f2 408 ip6_tnl_parm_init(&p, 0);
c3651bf4 409 p.proto = 0; /* default to any */
9447a0d3 410
21a5a6b3 411 if (parse_args(argc, argv, SIOCGETTUNNEL, &p) < 0)
9447a0d3
MN
412 return -1;
413
288384f2
MN
414 if (!p.name[0] || show_stats)
415 do_tunnels_list(&p);
416 else {
417 if (tnl_get_ioctl(p.name, &p))
418 return -1;
419 print_tunnel(&p);
420 printf("\n");
421 }
9447a0d3 422
9447a0d3
MN
423 return 0;
424}
425
9447a0d3
MN
426static int do_add(int cmd, int argc, char **argv)
427{
af89576d 428 struct ip6_tnl_parm2 p;
a0638e18 429 const char *basedev = "ip6tnl0";
288384f2
MN
430
431 ip6_tnl_parm_init(&p, 1);
9447a0d3 432
21a5a6b3 433 if (parse_args(argc, argv, cmd, &p) < 0)
9447a0d3 434 return -1;
288384f2 435
a0638e18
AA
436 if (p.proto == IPPROTO_GRE)
437 basedev = "ip6gre0";
438 else if (p.i_flags & VTI_ISVTI)
439 basedev = "ip6_vti0";
440
441 return tnl_add_ioctl(cmd, basedev, p.name, &p);
9447a0d3
MN
442}
443
288384f2 444static int do_del(int argc, char **argv)
9447a0d3 445{
af89576d 446 struct ip6_tnl_parm2 p;
a0638e18 447 const char *basedev = "ip6tnl0";
288384f2
MN
448
449 ip6_tnl_parm_init(&p, 1);
9447a0d3 450
21a5a6b3 451 if (parse_args(argc, argv, SIOCDELTUNNEL, &p) < 0)
9447a0d3
MN
452 return -1;
453
a0638e18
AA
454 if (p.proto == IPPROTO_GRE)
455 basedev = "ip6gre0";
456 else if (p.i_flags & VTI_ISVTI)
457 basedev = "ip6_vti0";
458
459 return tnl_del_ioctl(basedev, p.name, &p);
9447a0d3
MN
460}
461
ae665a52
SH
462int do_ip6tunnel(int argc, char **argv)
463{
288384f2
MN
464 switch (preferred_family) {
465 case AF_UNSPEC:
466 preferred_family = AF_INET6;
467 break;
468 case AF_INET6:
469 break;
470 default:
14645ec2 471 fprintf(stderr, "Unsupported protocol family: %d\n", preferred_family);
288384f2
MN
472 exit(-1);
473 }
474
9447a0d3 475 if (argc > 0) {
288384f2 476 if (matches(*argv, "add") == 0)
9447a0d3 477 return do_add(SIOCADDTUNNEL, argc - 1, argv + 1);
288384f2 478 if (matches(*argv, "change") == 0)
9447a0d3 479 return do_add(SIOCCHGTUNNEL, argc - 1, argv + 1);
6e30461e 480 if (matches(*argv, "delete") == 0)
9447a0d3 481 return do_del(argc - 1, argv + 1);
288384f2
MN
482 if (matches(*argv, "show") == 0 ||
483 matches(*argv, "lst") == 0 ||
484 matches(*argv, "list") == 0)
9447a0d3 485 return do_show(argc - 1, argv + 1);
288384f2 486 if (matches(*argv, "help") == 0)
9447a0d3 487 usage();
9447a0d3
MN
488 } else
489 return do_show(0, NULL);
490
288384f2
MN
491 fprintf(stderr, "Command \"%s\" is unknown, try \"ip -f inet6 tunnel help\".\n", *argv);
492 exit(-1);
9447a0d3 493}