blob: 216e982f03103f459bdc28811097edafd83a61ee [file] [log] [blame]
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +09001/*
2 * Copyright (C)2006 USAGI/WIDE Project
Stephen Hemmingerae665a52006-12-05 10:10:22 -08003 *
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +09004 * 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.
Stephen Hemmingerae665a52006-12-05 10:10:22 -08008 *
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +09009 * 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.
Stephen Hemmingerae665a52006-12-05 10:10:22 -080013 *
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18/*
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090019 * Author:
20 * Masahide NAKAMURA @USAGI
21 */
Stephen Hemmingerae665a52006-12-05 10:10:22 -080022
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090023#include <stdio.h>
24#include <string.h>
25#include <stdlib.h>
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090026#include <unistd.h>
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090027#include <sys/types.h>
28#include <sys/socket.h>
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090029#include <arpa/inet.h>
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090030#include <sys/ioctl.h>
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090031#include <linux/ip.h>
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090032#include <linux/if.h>
33#include <linux/if_arp.h>
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090034#include <linux/if_tunnel.h>
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090035#include <linux/ip6_tunnel.h>
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090036
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090037#include "utils.h"
38#include "tunnel.h"
Stephen Hemmingerea71bea2010-11-28 10:35:28 -080039#include "ip_common.h"
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090040
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090041#define IP6_FLOWINFO_TCLASS htonl(0x0FF00000)
42#define IP6_FLOWINFO_FLOWLABEL htonl(0x000FFFFF)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090043
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090044#define DEFAULT_TNL_HOP_LIMIT (64)
45
46static void usage(void) __attribute__((noreturn));
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090047
48static void usage(void)
49{
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090050 fprintf(stderr, "Usage: ip -f inet6 tunnel { add | change | del | show } [ NAME ]\n");
YOSHIFUJI Hideaki / 吉藤英明0b959b02007-10-12 16:51:22 +090051 fprintf(stderr, " [ mode { ip6ip6 | ipip6 | any } ]\n");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090052 fprintf(stderr, " [ remote ADDR local ADDR ] [ dev PHYS_DEV ]\n");
53 fprintf(stderr, " [ encaplimit ELIM ]\n");
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -040054 fprintf(stderr ," [ hoplimit TTL ] [ tclass TCLASS ] [ flowlabel FLOWLABEL ]\n");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090055 fprintf(stderr, " [ dscp inherit ]\n");
56 fprintf(stderr, "\n");
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -040057 fprintf(stderr, "Where: NAME := STRING\n");
58 fprintf(stderr, " ADDR := IPV6_ADDRESS\n");
59 fprintf(stderr, " ELIM := { none | 0..255 }(default=%d)\n",
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090060 IPV6_DEFAULT_TNL_ENCAP_LIMIT);
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -040061 fprintf(stderr, " TTL := 0..255 (default=%d)\n",
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090062 DEFAULT_TNL_HOP_LIMIT);
Nicolas Dichteld0c84202012-11-14 16:29:24 +010063 fprintf(stderr, " TCLASS := { 0x0..0xff | inherit }\n");
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -040064 fprintf(stderr, " FLOWLABEL := { 0x0..0xfffff | inherit }\n");
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090065 exit(-1);
66}
67
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090068static void print_tunnel(struct ip6_tnl_parm *p)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090069{
70 char remote[64];
71 char local[64];
Stephen Hemmingerae665a52006-12-05 10:10:22 -080072
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090073 inet_ntop(AF_INET6, &p->raddr, remote, sizeof(remote));
74 inet_ntop(AF_INET6, &p->laddr, local, sizeof(local));
75
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090076 printf("%s: %s/ipv6 remote %s local %s",
77 p->name, tnl_strproto(p->proto), remote, local);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090078 if (p->link) {
Stephen Hemmingerea71bea2010-11-28 10:35:28 -080079 const char *n = ll_index_to_name(p->link);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090080 if (n)
81 printf(" dev %s", n);
82 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090083
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090084 if (p->flags & IP6_TNL_F_IGN_ENCAP_LIMIT)
85 printf(" encaplimit none");
86 else
87 printf(" encaplimit %u", p->encap_limit);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090088
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090089 printf(" hoplimit %u", p->hop_limit);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090090
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090091 if (p->flags & IP6_TNL_F_USE_ORIG_TCLASS)
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -040092 printf(" tclass inherit");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090093 else {
94 __u32 val = ntohl(p->flowinfo & IP6_FLOWINFO_TCLASS);
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -040095 printf(" tclass 0x%02x", (__u8)(val >> 20));
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090096 }
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090097
98 if (p->flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -040099 printf(" flowlabel inherit");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900100 else
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400101 printf(" flowlabel 0x%05x", ntohl(p->flowinfo & IP6_FLOWINFO_FLOWLABEL));
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900102
103 printf(" (flowinfo 0x%08x)", ntohl(p->flowinfo));
104
105 if (p->flags & IP6_TNL_F_RCV_DSCP_COPY)
106 printf(" dscp inherit");
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900107}
108
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000109static int parse_args(int argc, char **argv, int cmd, struct ip6_tnl_parm *p)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900110{
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000111 int count = 0;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900112 char medium[IFNAMSIZ];
113
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900114 memset(medium, 0, sizeof(medium));
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900115
116 while (argc > 0) {
YOSHIFUJI Hideaki / 吉藤英明0b959b02007-10-12 16:51:22 +0900117 if (strcmp(*argv, "mode") == 0) {
118 NEXT_ARG();
119 if (strcmp(*argv, "ipv6/ipv6") == 0 ||
120 strcmp(*argv, "ip6ip6") == 0)
121 p->proto = IPPROTO_IPV6;
122 else if (strcmp(*argv, "ip/ipv6") == 0 ||
123 strcmp(*argv, "ipv4/ipv6") == 0 ||
124 strcmp(*argv, "ipip6") == 0 ||
125 strcmp(*argv, "ip4ip6") == 0)
126 p->proto = IPPROTO_IPIP;
127 else if (strcmp(*argv, "any/ipv6") == 0 ||
128 strcmp(*argv, "any") == 0)
129 p->proto = 0;
130 else {
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000131 fprintf(stderr,"Unknown tunnel mode \"%s\"\n", *argv);
YOSHIFUJI Hideaki / 吉藤英明0b959b02007-10-12 16:51:22 +0900132 exit(-1);
133 }
134 } else if (strcmp(*argv, "remote") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900135 inet_prefix raddr;
136 NEXT_ARG();
137 get_prefix(&raddr, *argv, preferred_family);
138 if (raddr.family == AF_UNSPEC)
139 invarg("\"remote\" address family is AF_UNSPEC", *argv);
140 memcpy(&p->raddr, &raddr.data, sizeof(p->raddr));
141 } else if (strcmp(*argv, "local") == 0) {
142 inet_prefix laddr;
143 NEXT_ARG();
144 get_prefix(&laddr, *argv, preferred_family);
145 if (laddr.family == AF_UNSPEC)
146 invarg("\"local\" address family is AF_UNSPEC", *argv);
147 memcpy(&p->laddr, &laddr.data, sizeof(p->laddr));
148 } else if (strcmp(*argv, "dev") == 0) {
149 NEXT_ARG();
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900150 strncpy(medium, *argv, IFNAMSIZ - 1);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900151 } else if (strcmp(*argv, "encaplimit") == 0) {
152 NEXT_ARG();
153 if (strcmp(*argv, "none") == 0) {
154 p->flags |= IP6_TNL_F_IGN_ENCAP_LIMIT;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900155 } else {
156 __u8 uval;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900157 if (get_u8(&uval, *argv, 0) < -1)
158 invarg("invalid ELIM", *argv);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900159 p->encap_limit = uval;
Nicolas Dichtel3f83dce2012-11-14 16:29:25 +0100160 p->flags &= ~IP6_TNL_F_IGN_ENCAP_LIMIT;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900161 }
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400162 } else if (strcmp(*argv, "hoplimit") == 0 ||
163 strcmp(*argv, "ttl") == 0 ||
164 strcmp(*argv, "hlim") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900165 __u8 uval;
166 NEXT_ARG();
167 if (get_u8(&uval, *argv, 0))
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400168 invarg("invalid TTL", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900169 p->hop_limit = uval;
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400170 } else if (strcmp(*argv, "tclass") == 0 ||
171 strcmp(*argv, "tc") == 0 ||
172 strcmp(*argv, "tos") == 0 ||
173 matches(*argv, "dsfield") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900174 __u8 uval;
175 NEXT_ARG();
Nicolas Dichteldf5574d2012-11-14 16:29:26 +0100176 p->flowinfo &= ~IP6_FLOWINFO_TCLASS;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900177 if (strcmp(*argv, "inherit") == 0)
178 p->flags |= IP6_TNL_F_USE_ORIG_TCLASS;
179 else {
180 if (get_u8(&uval, *argv, 16))
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400181 invarg("invalid TClass", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900182 p->flowinfo |= htonl((__u32)uval << 20) & IP6_FLOWINFO_TCLASS;
183 p->flags &= ~IP6_TNL_F_USE_ORIG_TCLASS;
184 }
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400185 } else if (strcmp(*argv, "flowlabel") == 0 ||
186 strcmp(*argv, "fl") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900187 __u32 uval;
188 NEXT_ARG();
Nicolas Dichteldf5574d2012-11-14 16:29:26 +0100189 p->flowinfo &= ~IP6_FLOWINFO_FLOWLABEL;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900190 if (strcmp(*argv, "inherit") == 0)
191 p->flags |= IP6_TNL_F_USE_ORIG_FLOWLABEL;
192 else {
193 if (get_u32(&uval, *argv, 16))
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400194 invarg("invalid Flowlabel", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900195 if (uval > 0xFFFFF)
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400196 invarg("invalid Flowlabel", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900197 p->flowinfo |= htonl(uval) & IP6_FLOWINFO_FLOWLABEL;
198 p->flags &= ~IP6_TNL_F_USE_ORIG_FLOWLABEL;
199 }
200 } else if (strcmp(*argv, "dscp") == 0) {
201 NEXT_ARG();
202 if (strcmp(*argv, "inherit") != 0)
203 invarg("not inherit", *argv);
204 p->flags |= IP6_TNL_F_RCV_DSCP_COPY;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900205 } else {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900206 if (strcmp(*argv, "name") == 0) {
207 NEXT_ARG();
208 }
209 if (matches(*argv, "help") == 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900210 usage();
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900211 if (p->name[0])
212 duparg2("name", *argv);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900213 strncpy(p->name, *argv, IFNAMSIZ - 1);
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000214 if (cmd == SIOCCHGTUNNEL && count == 0) {
215 struct ip6_tnl_parm old_p;
216 memset(&old_p, 0, sizeof(old_p));
217 if (tnl_get_ioctl(*argv, &old_p))
218 return -1;
219 *p = old_p;
220 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900221 }
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000222 count++;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900223 argc--; argv++;
224 }
225 if (medium[0]) {
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800226 p->link = ll_name_to_index(medium);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900227 if (p->link == 0)
228 return -1;
229 }
230 return 0;
231}
232
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900233static void ip6_tnl_parm_init(struct ip6_tnl_parm *p, int apply_default)
234{
235 memset(p, 0, sizeof(*p));
236 p->proto = IPPROTO_IPV6;
237 if (apply_default) {
238 p->hop_limit = DEFAULT_TNL_HOP_LIMIT;
239 p->encap_limit = IPV6_DEFAULT_TNL_ENCAP_LIMIT;
240 }
241}
242
243/*
244 * @p1: user specified parameter
245 * @p2: database entry
246 */
247static int ip6_tnl_parm_match(const struct ip6_tnl_parm *p1,
248 const struct ip6_tnl_parm *p2)
249{
250 return ((!p1->link || p1->link == p2->link) &&
251 (!p1->name[0] || strcmp(p1->name, p2->name) == 0) &&
252 (memcmp(&p1->laddr, &in6addr_any, sizeof(p1->laddr)) == 0 ||
253 memcmp(&p1->laddr, &p2->laddr, sizeof(p1->laddr)) == 0) &&
254 (memcmp(&p1->raddr, &in6addr_any, sizeof(p1->raddr)) == 0 ||
255 memcmp(&p1->raddr, &p2->raddr, sizeof(p1->raddr)) == 0) &&
256 (!p1->proto || !p2->proto || p1->proto == p2->proto) &&
257 (!p1->encap_limit || p1->encap_limit == p2->encap_limit) &&
258 (!p1->hop_limit || p1->hop_limit == p2->hop_limit) &&
259 (!(p1->flowinfo & IP6_FLOWINFO_TCLASS) ||
260 !((p1->flowinfo ^ p2->flowinfo) & IP6_FLOWINFO_TCLASS)) &&
261 (!(p1->flowinfo & IP6_FLOWINFO_FLOWLABEL) ||
262 !((p1->flowinfo ^ p2->flowinfo) & IP6_FLOWINFO_FLOWLABEL)) &&
263 (!p1->flags || (p1->flags & p2->flags)));
264}
265
266static int do_tunnels_list(struct ip6_tnl_parm *p)
267{
268 char buf[512];
269 int err = -1;
270 FILE *fp = fopen("/proc/net/dev", "r");
271 if (fp == NULL) {
272 perror("fopen");
273 goto end;
274 }
275
276 /* skip two lines at the begenning of the file */
Stephen Hemminger38c867d2011-03-09 10:41:09 -0800277 if (!fgets(buf, sizeof(buf), fp) ||
278 !fgets(buf, sizeof(buf), fp)) {
279 fprintf(stderr, "/proc/net/dev read error\n");
280 return -1;
281 }
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900282
283 while (fgets(buf, sizeof(buf), fp) != NULL) {
284 char name[IFNAMSIZ];
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800285 int index, type;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900286 unsigned long rx_bytes, rx_packets, rx_errs, rx_drops,
287 rx_fifo, rx_frame,
288 tx_bytes, tx_packets, tx_errs, tx_drops,
289 tx_fifo, tx_colls, tx_carrier, rx_multi;
290 struct ip6_tnl_parm p1;
291 char *ptr;
292
293 buf[sizeof(buf) - 1] = '\0';
294 if ((ptr = strchr(buf, ':')) == NULL ||
295 (*ptr++ = 0, sscanf(buf, "%s", name) != 1)) {
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000296 fprintf(stderr, "Wrong format for /proc/net/dev. Giving up.\n");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900297 goto end;
298 }
299 if (sscanf(ptr, "%ld%ld%ld%ld%ld%ld%ld%*d%ld%ld%ld%ld%ld%ld%ld",
300 &rx_bytes, &rx_packets, &rx_errs, &rx_drops,
301 &rx_fifo, &rx_frame, &rx_multi,
302 &tx_bytes, &tx_packets, &tx_errs, &tx_drops,
303 &tx_fifo, &tx_colls, &tx_carrier) != 14)
304 continue;
305 if (p->name[0] && strcmp(p->name, name))
306 continue;
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800307 index = ll_name_to_index(name);
308 if (index == 0)
309 continue;
310 type = ll_index_to_type(index);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900311 if (type == -1) {
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000312 fprintf(stderr, "Failed to get type of \"%s\"\n", name);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900313 continue;
314 }
315 if (type != ARPHRD_TUNNEL6)
316 continue;
317 memset(&p1, 0, sizeof(p1));
318 ip6_tnl_parm_init(&p1, 0);
319 strcpy(p1.name, name);
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800320 p1.link = ll_name_to_index(p1.name);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900321 if (p1.link == 0)
322 continue;
323 if (tnl_get_ioctl(p1.name, &p1))
324 continue;
325 if (!ip6_tnl_parm_match(p, &p1))
326 continue;
327 print_tunnel(&p1);
328 if (show_stats) {
329 printf("%s", _SL_);
330 printf("RX: Packets Bytes Errors CsumErrs OutOfSeq Mcasts%s", _SL_);
331 printf(" %-10ld %-12ld %-6ld %-8ld %-8ld %-8ld%s",
332 rx_packets, rx_bytes, rx_errs, rx_frame, rx_fifo, rx_multi, _SL_);
333 printf("TX: Packets Bytes Errors DeadLoop NoRoute NoBufs%s", _SL_);
334 printf(" %-10ld %-12ld %-6ld %-8ld %-8ld %-6ld",
335 tx_packets, tx_bytes, tx_errs, tx_colls, tx_carrier, tx_drops);
336 }
337 printf("\n");
338 }
339 err = 0;
340
341 end:
342 if (fp)
343 fclose(fp);
344 return err;
345}
346
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900347static int do_show(int argc, char **argv)
348{
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900349 struct ip6_tnl_parm p;
350
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800351 ll_init_map(&rth);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900352 ip6_tnl_parm_init(&p, 0);
Srivats Pc3651bf2009-03-27 11:17:26 -0700353 p.proto = 0; /* default to any */
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900354
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000355 if (parse_args(argc, argv, SIOCGETTUNNEL, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900356 return -1;
357
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900358 if (!p.name[0] || show_stats)
359 do_tunnels_list(&p);
360 else {
361 if (tnl_get_ioctl(p.name, &p))
362 return -1;
363 print_tunnel(&p);
364 printf("\n");
365 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900366
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900367 return 0;
368}
369
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900370static int do_add(int cmd, int argc, char **argv)
371{
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900372 struct ip6_tnl_parm p;
373
374 ip6_tnl_parm_init(&p, 1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900375
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000376 if (parse_args(argc, argv, cmd, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900377 return -1;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900378
379 return tnl_add_ioctl(cmd,
380 cmd == SIOCCHGTUNNEL && p.name[0] ?
381 p.name : "ip6tnl0", p.name, &p);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900382}
383
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900384static int do_del(int argc, char **argv)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900385{
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900386 struct ip6_tnl_parm p;
387
388 ip6_tnl_parm_init(&p, 1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900389
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000390 if (parse_args(argc, argv, SIOCDELTUNNEL, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900391 return -1;
392
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900393 return tnl_del_ioctl(p.name[0] ? p.name : "ip6tnl0", p.name, &p);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900394}
395
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800396int do_ip6tunnel(int argc, char **argv)
397{
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900398 switch (preferred_family) {
399 case AF_UNSPEC:
400 preferred_family = AF_INET6;
401 break;
402 case AF_INET6:
403 break;
404 default:
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000405 fprintf(stderr, "Unsupported protocol family: %d\n", preferred_family);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900406 exit(-1);
407 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900408
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900409 if (argc > 0) {
410 if (matches(*argv, "add") == 0)
411 return do_add(SIOCADDTUNNEL, argc - 1, argv + 1);
412 if (matches(*argv, "change") == 0)
413 return do_add(SIOCCHGTUNNEL, argc - 1, argv + 1);
Andreas Henriksson6e304612012-05-19 16:08:21 +0200414 if (matches(*argv, "delete") == 0)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900415 return do_del(argc - 1, argv + 1);
416 if (matches(*argv, "show") == 0 ||
417 matches(*argv, "lst") == 0 ||
418 matches(*argv, "list") == 0)
419 return do_show(argc - 1, argv + 1);
420 if (matches(*argv, "help") == 0)
421 usage();
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900422 } else
423 return do_show(0, NULL);
424
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900425 fprintf(stderr, "Command \"%s\" is unknown, try \"ip -f inet6 tunnel help\".\n", *argv);
426 exit(-1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900427}