blob: 62a8240f1c8f85a7284cd671001dd13b92fed3bf [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
Stephen Hemminger4d98ab02013-12-06 15:05:07 -080015 * along with this program; if not, see <http://www.gnu.org/licenses>.
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090016 */
17/*
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090018 * Author:
19 * Masahide NAKAMURA @USAGI
20 */
Stephen Hemmingerae665a52006-12-05 10:10:22 -080021
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090022#include <stdio.h>
23#include <string.h>
24#include <stdlib.h>
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090025#include <unistd.h>
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090026#include <sys/types.h>
27#include <sys/socket.h>
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090028#include <arpa/inet.h>
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090029#include <sys/ioctl.h>
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090030#include <linux/ip.h>
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090031#include <linux/if.h>
32#include <linux/if_arp.h>
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090033#include <linux/if_tunnel.h>
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090034#include <linux/ip6_tunnel.h>
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090035
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090036#include "utils.h"
37#include "tunnel.h"
Stephen Hemmingerea71bea2010-11-28 10:35:28 -080038#include "ip_common.h"
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090039
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090040#define IP6_FLOWINFO_TCLASS htonl(0x0FF00000)
41#define IP6_FLOWINFO_FLOWLABEL htonl(0x000FFFFF)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090042
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090043#define DEFAULT_TNL_HOP_LIMIT (64)
44
45static void usage(void) __attribute__((noreturn));
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090046
47static void usage(void)
48{
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090049 fprintf(stderr, "Usage: ip -f inet6 tunnel { add | change | del | show } [ NAME ]\n");
Steffen Klassertf36d1142014-09-26 09:10:56 +020050 fprintf(stderr, " [ mode { ip6ip6 | ipip6 | ip6gre | vti6 | any } ]\n");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090051 fprintf(stderr, " [ remote ADDR local ADDR ] [ dev PHYS_DEV ]\n");
52 fprintf(stderr, " [ encaplimit ELIM ]\n");
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -040053 fprintf(stderr ," [ hoplimit TTL ] [ tclass TCLASS ] [ flowlabel FLOWLABEL ]\n");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090054 fprintf(stderr, " [ dscp inherit ]\n");
xeb@mail.ruaf895762013-09-28 11:32:51 +040055 fprintf(stderr, " [ [i|o]seq ] [ [i|o]key KEY ] [ [i|o]csum ]\n");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090056 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");
xeb@mail.ruaf895762013-09-28 11:32:51 +040065 fprintf(stderr, " KEY := { DOTTED_QUAD | NUMBER }\n");
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090066 exit(-1);
67}
68
xeb@mail.ruaf895762013-09-28 11:32:51 +040069static void print_tunnel(struct ip6_tnl_parm2 *p)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090070{
71 char remote[64];
72 char local[64];
Stephen Hemmingerae665a52006-12-05 10:10:22 -080073
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090074 inet_ntop(AF_INET6, &p->raddr, remote, sizeof(remote));
75 inet_ntop(AF_INET6, &p->laddr, local, sizeof(local));
76
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090077 printf("%s: %s/ipv6 remote %s local %s",
78 p->name, tnl_strproto(p->proto), remote, local);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090079 if (p->link) {
Stephen Hemmingerea71bea2010-11-28 10:35:28 -080080 const char *n = ll_index_to_name(p->link);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090081 if (n)
82 printf(" dev %s", n);
83 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090084
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090085 if (p->flags & IP6_TNL_F_IGN_ENCAP_LIMIT)
86 printf(" encaplimit none");
87 else
88 printf(" encaplimit %u", p->encap_limit);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090089
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090090 printf(" hoplimit %u", p->hop_limit);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090091
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090092 if (p->flags & IP6_TNL_F_USE_ORIG_TCLASS)
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -040093 printf(" tclass inherit");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090094 else {
95 __u32 val = ntohl(p->flowinfo & IP6_FLOWINFO_TCLASS);
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -040096 printf(" tclass 0x%02x", (__u8)(val >> 20));
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +090097 }
Masahide NAKAMURA288384f2006-11-24 12:27:09 +090098
99 if (p->flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400100 printf(" flowlabel inherit");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900101 else
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400102 printf(" flowlabel 0x%05x", ntohl(p->flowinfo & IP6_FLOWINFO_FLOWLABEL));
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900103
104 printf(" (flowinfo 0x%08x)", ntohl(p->flowinfo));
105
106 if (p->flags & IP6_TNL_F_RCV_DSCP_COPY)
107 printf(" dscp inherit");
xeb@mail.ruaf895762013-09-28 11:32:51 +0400108
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)
114 printf(" ikey %u ", ntohl(p->i_key));
115 if (p->o_flags&GRE_KEY)
116 printf(" okey %u ", ntohl(p->o_key));
117 }
118
119 if (p->i_flags&GRE_SEQ)
Dmitry Popov4cb8d032014-10-04 19:00:25 +0400120 printf("%s Drop packets out of sequence.", _SL_);
xeb@mail.ruaf895762013-09-28 11:32:51 +0400121 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 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900128}
129
xeb@mail.ruaf895762013-09-28 11:32:51 +0400130static int parse_args(int argc, char **argv, int cmd, struct ip6_tnl_parm2 *p)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900131{
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000132 int count = 0;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900133 char medium[IFNAMSIZ];
134
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900135 memset(medium, 0, sizeof(medium));
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900136
137 while (argc > 0) {
YOSHIFUJI Hideaki / 吉藤英明0b959b02007-10-12 16:51:22 +0900138 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;
Steffen Klassertf36d1142014-09-26 09:10:56 +0200143 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 ||
YOSHIFUJI Hideaki / 吉藤英明0b959b02007-10-12 16:51:22 +0900147 strcmp(*argv, "ipv4/ipv6") == 0 ||
148 strcmp(*argv, "ipip6") == 0 ||
149 strcmp(*argv, "ip4ip6") == 0)
150 p->proto = IPPROTO_IPIP;
xeb@mail.ruaf895762013-09-28 11:32:51 +0400151 else if (strcmp(*argv, "ip6gre") == 0 ||
152 strcmp(*argv, "gre/ipv6") == 0)
153 p->proto = IPPROTO_GRE;
YOSHIFUJI Hideaki / 吉藤英明0b959b02007-10-12 16:51:22 +0900154 else if (strcmp(*argv, "any/ipv6") == 0 ||
155 strcmp(*argv, "any") == 0)
156 p->proto = 0;
157 else {
Stephen Hemminger4b726cb2014-05-09 12:36:46 -0700158 fprintf(stderr,"Unknown tunnel mode \"%s\"\n", *argv);
159 exit(-1);
160 }
161 } else if (strcmp(*argv, "remote") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900162 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();
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900177 strncpy(medium, *argv, IFNAMSIZ - 1);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900178 } else if (strcmp(*argv, "encaplimit") == 0) {
179 NEXT_ARG();
180 if (strcmp(*argv, "none") == 0) {
181 p->flags |= IP6_TNL_F_IGN_ENCAP_LIMIT;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900182 } else {
183 __u8 uval;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900184 if (get_u8(&uval, *argv, 0) < -1)
185 invarg("invalid ELIM", *argv);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900186 p->encap_limit = uval;
Nicolas Dichtel3f83dce2012-11-14 16:29:25 +0100187 p->flags &= ~IP6_TNL_F_IGN_ENCAP_LIMIT;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900188 }
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400189 } else if (strcmp(*argv, "hoplimit") == 0 ||
190 strcmp(*argv, "ttl") == 0 ||
191 strcmp(*argv, "hlim") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900192 __u8 uval;
193 NEXT_ARG();
194 if (get_u8(&uval, *argv, 0))
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400195 invarg("invalid TTL", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900196 p->hop_limit = uval;
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400197 } else if (strcmp(*argv, "tclass") == 0 ||
198 strcmp(*argv, "tc") == 0 ||
199 strcmp(*argv, "tos") == 0 ||
200 matches(*argv, "dsfield") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900201 __u8 uval;
202 NEXT_ARG();
Nicolas Dichteldf5574d2012-11-14 16:29:26 +0100203 p->flowinfo &= ~IP6_FLOWINFO_TCLASS;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900204 if (strcmp(*argv, "inherit") == 0)
205 p->flags |= IP6_TNL_F_USE_ORIG_TCLASS;
206 else {
207 if (get_u8(&uval, *argv, 16))
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400208 invarg("invalid TClass", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900209 p->flowinfo |= htonl((__u32)uval << 20) & IP6_FLOWINFO_TCLASS;
210 p->flags &= ~IP6_TNL_F_USE_ORIG_TCLASS;
211 }
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400212 } else if (strcmp(*argv, "flowlabel") == 0 ||
213 strcmp(*argv, "fl") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900214 __u32 uval;
215 NEXT_ARG();
Nicolas Dichteldf5574d2012-11-14 16:29:26 +0100216 p->flowinfo &= ~IP6_FLOWINFO_FLOWLABEL;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900217 if (strcmp(*argv, "inherit") == 0)
218 p->flags |= IP6_TNL_F_USE_ORIG_FLOWLABEL;
219 else {
220 if (get_u32(&uval, *argv, 16))
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400221 invarg("invalid Flowlabel", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900222 if (uval > 0xFFFFF)
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400223 invarg("invalid Flowlabel", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900224 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;
xeb@mail.ruaf895762013-09-28 11:32:51 +0400232 } else if (strcmp(*argv, "key") == 0) {
233 unsigned uval;
234 NEXT_ARG();
235 p->i_flags |= GRE_KEY;
236 p->o_flags |= GRE_KEY;
237 if (strchr(*argv, '.'))
238 p->i_key = p->o_key = get_addr32(*argv);
239 else {
Stephen Hemminger4b726cb2014-05-09 12:36:46 -0700240 if (get_unsigned(&uval, *argv, 0) < 0) {
xeb@mail.ruaf895762013-09-28 11:32:51 +0400241 fprintf(stderr, "invalid value of \"key\"\n");
242 exit(-1);
243 }
244 p->i_key = p->o_key = htonl(uval);
245 }
246 } else if (strcmp(*argv, "ikey") == 0) {
247 unsigned uval;
248 NEXT_ARG();
249 p->i_flags |= GRE_KEY;
250 if (strchr(*argv, '.'))
251 p->i_key = get_addr32(*argv);
252 else {
253 if (get_unsigned(&uval, *argv, 0)<0) {
254 fprintf(stderr, "invalid value of \"ikey\"\n");
255 exit(-1);
256 }
257 p->i_key = htonl(uval);
258 }
259 } else if (strcmp(*argv, "okey") == 0) {
260 unsigned uval;
261 NEXT_ARG();
262 p->o_flags |= GRE_KEY;
263 if (strchr(*argv, '.'))
264 p->o_key = get_addr32(*argv);
265 else {
266 if (get_unsigned(&uval, *argv, 0)<0) {
267 fprintf(stderr, "invalid value of \"okey\"\n");
268 exit(-1);
269 }
270 p->o_key = htonl(uval);
271 }
272 } else if (strcmp(*argv, "seq") == 0) {
273 p->i_flags |= GRE_SEQ;
274 p->o_flags |= GRE_SEQ;
275 } else if (strcmp(*argv, "iseq") == 0) {
276 p->i_flags |= GRE_SEQ;
277 } else if (strcmp(*argv, "oseq") == 0) {
278 p->o_flags |= GRE_SEQ;
279 } else if (strcmp(*argv, "csum") == 0) {
280 p->i_flags |= GRE_CSUM;
281 p->o_flags |= GRE_CSUM;
282 } else if (strcmp(*argv, "icsum") == 0) {
283 p->i_flags |= GRE_CSUM;
284 } else if (strcmp(*argv, "ocsum") == 0) {
285 p->o_flags |= GRE_CSUM;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900286 } else {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900287 if (strcmp(*argv, "name") == 0) {
288 NEXT_ARG();
289 }
290 if (matches(*argv, "help") == 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900291 usage();
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900292 if (p->name[0])
293 duparg2("name", *argv);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900294 strncpy(p->name, *argv, IFNAMSIZ - 1);
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000295 if (cmd == SIOCCHGTUNNEL && count == 0) {
xeb@mail.ruaf895762013-09-28 11:32:51 +0400296 struct ip6_tnl_parm2 old_p;
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000297 memset(&old_p, 0, sizeof(old_p));
298 if (tnl_get_ioctl(*argv, &old_p))
299 return -1;
300 *p = old_p;
301 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900302 }
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000303 count++;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900304 argc--; argv++;
305 }
306 if (medium[0]) {
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800307 p->link = ll_name_to_index(medium);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900308 if (p->link == 0)
309 return -1;
310 }
311 return 0;
312}
313
xeb@mail.ruaf895762013-09-28 11:32:51 +0400314static void ip6_tnl_parm_init(struct ip6_tnl_parm2 *p, int apply_default)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900315{
316 memset(p, 0, sizeof(*p));
317 p->proto = IPPROTO_IPV6;
318 if (apply_default) {
319 p->hop_limit = DEFAULT_TNL_HOP_LIMIT;
320 p->encap_limit = IPV6_DEFAULT_TNL_ENCAP_LIMIT;
321 }
322}
323
324/*
325 * @p1: user specified parameter
326 * @p2: database entry
327 */
xeb@mail.ruaf895762013-09-28 11:32:51 +0400328static int ip6_tnl_parm_match(const struct ip6_tnl_parm2 *p1,
329 const struct ip6_tnl_parm2 *p2)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900330{
331 return ((!p1->link || p1->link == p2->link) &&
332 (!p1->name[0] || strcmp(p1->name, p2->name) == 0) &&
333 (memcmp(&p1->laddr, &in6addr_any, sizeof(p1->laddr)) == 0 ||
334 memcmp(&p1->laddr, &p2->laddr, sizeof(p1->laddr)) == 0) &&
335 (memcmp(&p1->raddr, &in6addr_any, sizeof(p1->raddr)) == 0 ||
336 memcmp(&p1->raddr, &p2->raddr, sizeof(p1->raddr)) == 0) &&
337 (!p1->proto || !p2->proto || p1->proto == p2->proto) &&
338 (!p1->encap_limit || p1->encap_limit == p2->encap_limit) &&
339 (!p1->hop_limit || p1->hop_limit == p2->hop_limit) &&
340 (!(p1->flowinfo & IP6_FLOWINFO_TCLASS) ||
341 !((p1->flowinfo ^ p2->flowinfo) & IP6_FLOWINFO_TCLASS)) &&
342 (!(p1->flowinfo & IP6_FLOWINFO_FLOWLABEL) ||
343 !((p1->flowinfo ^ p2->flowinfo) & IP6_FLOWINFO_FLOWLABEL)) &&
344 (!p1->flags || (p1->flags & p2->flags)));
345}
346
xeb@mail.ruaf895762013-09-28 11:32:51 +0400347static int do_tunnels_list(struct ip6_tnl_parm2 *p)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900348{
349 char buf[512];
350 int err = -1;
351 FILE *fp = fopen("/proc/net/dev", "r");
352 if (fp == NULL) {
353 perror("fopen");
354 goto end;
355 }
356
357 /* skip two lines at the begenning of the file */
Stephen Hemminger38c867d2011-03-09 10:41:09 -0800358 if (!fgets(buf, sizeof(buf), fp) ||
359 !fgets(buf, sizeof(buf), fp)) {
360 fprintf(stderr, "/proc/net/dev read error\n");
361 return -1;
362 }
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900363
364 while (fgets(buf, sizeof(buf), fp) != NULL) {
365 char name[IFNAMSIZ];
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800366 int index, type;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900367 unsigned long rx_bytes, rx_packets, rx_errs, rx_drops,
368 rx_fifo, rx_frame,
369 tx_bytes, tx_packets, tx_errs, tx_drops,
370 tx_fifo, tx_colls, tx_carrier, rx_multi;
xeb@mail.ruaf895762013-09-28 11:32:51 +0400371 struct ip6_tnl_parm2 p1;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900372 char *ptr;
373
374 buf[sizeof(buf) - 1] = '\0';
375 if ((ptr = strchr(buf, ':')) == NULL ||
376 (*ptr++ = 0, sscanf(buf, "%s", name) != 1)) {
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000377 fprintf(stderr, "Wrong format for /proc/net/dev. Giving up.\n");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900378 goto end;
379 }
380 if (sscanf(ptr, "%ld%ld%ld%ld%ld%ld%ld%*d%ld%ld%ld%ld%ld%ld%ld",
381 &rx_bytes, &rx_packets, &rx_errs, &rx_drops,
382 &rx_fifo, &rx_frame, &rx_multi,
383 &tx_bytes, &tx_packets, &tx_errs, &tx_drops,
384 &tx_fifo, &tx_colls, &tx_carrier) != 14)
385 continue;
386 if (p->name[0] && strcmp(p->name, name))
387 continue;
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800388 index = ll_name_to_index(name);
389 if (index == 0)
390 continue;
391 type = ll_index_to_type(index);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900392 if (type == -1) {
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000393 fprintf(stderr, "Failed to get type of \"%s\"\n", name);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900394 continue;
395 }
xeb@mail.ruaf895762013-09-28 11:32:51 +0400396 if (type != ARPHRD_TUNNEL6 && type != ARPHRD_IP6GRE)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900397 continue;
398 memset(&p1, 0, sizeof(p1));
399 ip6_tnl_parm_init(&p1, 0);
xeb@mail.ruaf895762013-09-28 11:32:51 +0400400 if (type == ARPHRD_IP6GRE)
401 p1.proto = IPPROTO_GRE;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900402 strcpy(p1.name, name);
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800403 p1.link = ll_name_to_index(p1.name);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900404 if (p1.link == 0)
405 continue;
406 if (tnl_get_ioctl(p1.name, &p1))
407 continue;
408 if (!ip6_tnl_parm_match(p, &p1))
409 continue;
410 print_tunnel(&p1);
411 if (show_stats) {
412 printf("%s", _SL_);
413 printf("RX: Packets Bytes Errors CsumErrs OutOfSeq Mcasts%s", _SL_);
414 printf(" %-10ld %-12ld %-6ld %-8ld %-8ld %-8ld%s",
415 rx_packets, rx_bytes, rx_errs, rx_frame, rx_fifo, rx_multi, _SL_);
416 printf("TX: Packets Bytes Errors DeadLoop NoRoute NoBufs%s", _SL_);
417 printf(" %-10ld %-12ld %-6ld %-8ld %-8ld %-6ld",
418 tx_packets, tx_bytes, tx_errs, tx_colls, tx_carrier, tx_drops);
419 }
420 printf("\n");
421 }
422 err = 0;
423
424 end:
425 if (fp)
426 fclose(fp);
427 return err;
428}
429
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900430static int do_show(int argc, char **argv)
431{
xeb@mail.ruaf895762013-09-28 11:32:51 +0400432 struct ip6_tnl_parm2 p;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900433
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800434 ll_init_map(&rth);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900435 ip6_tnl_parm_init(&p, 0);
Srivats Pc3651bf2009-03-27 11:17:26 -0700436 p.proto = 0; /* default to any */
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900437
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000438 if (parse_args(argc, argv, SIOCGETTUNNEL, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900439 return -1;
440
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900441 if (!p.name[0] || show_stats)
442 do_tunnels_list(&p);
443 else {
444 if (tnl_get_ioctl(p.name, &p))
445 return -1;
446 print_tunnel(&p);
447 printf("\n");
448 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900449
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900450 return 0;
451}
452
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900453static int do_add(int cmd, int argc, char **argv)
454{
xeb@mail.ruaf895762013-09-28 11:32:51 +0400455 struct ip6_tnl_parm2 p;
Alexey Andriyanova0638e12014-10-29 09:19:30 +0300456 const char *basedev = "ip6tnl0";
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900457
458 ip6_tnl_parm_init(&p, 1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900459
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000460 if (parse_args(argc, argv, cmd, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900461 return -1;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900462
Alexey Andriyanova0638e12014-10-29 09:19:30 +0300463 if (p.proto == IPPROTO_GRE)
464 basedev = "ip6gre0";
465 else if (p.i_flags & VTI_ISVTI)
466 basedev = "ip6_vti0";
467
468 return tnl_add_ioctl(cmd, basedev, p.name, &p);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900469}
470
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900471static int do_del(int argc, char **argv)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900472{
xeb@mail.ruaf895762013-09-28 11:32:51 +0400473 struct ip6_tnl_parm2 p;
Alexey Andriyanova0638e12014-10-29 09:19:30 +0300474 const char *basedev = "ip6tnl0";
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900475
476 ip6_tnl_parm_init(&p, 1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900477
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000478 if (parse_args(argc, argv, SIOCDELTUNNEL, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900479 return -1;
480
Alexey Andriyanova0638e12014-10-29 09:19:30 +0300481 if (p.proto == IPPROTO_GRE)
482 basedev = "ip6gre0";
483 else if (p.i_flags & VTI_ISVTI)
484 basedev = "ip6_vti0";
485
486 return tnl_del_ioctl(basedev, p.name, &p);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900487}
488
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800489int do_ip6tunnel(int argc, char **argv)
490{
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900491 switch (preferred_family) {
492 case AF_UNSPEC:
493 preferred_family = AF_INET6;
494 break;
495 case AF_INET6:
496 break;
497 default:
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000498 fprintf(stderr, "Unsupported protocol family: %d\n", preferred_family);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900499 exit(-1);
500 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900501
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900502 if (argc > 0) {
503 if (matches(*argv, "add") == 0)
504 return do_add(SIOCADDTUNNEL, argc - 1, argv + 1);
505 if (matches(*argv, "change") == 0)
506 return do_add(SIOCCHGTUNNEL, argc - 1, argv + 1);
Andreas Henriksson6e304612012-05-19 16:08:21 +0200507 if (matches(*argv, "delete") == 0)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900508 return do_del(argc - 1, argv + 1);
509 if (matches(*argv, "show") == 0 ||
510 matches(*argv, "lst") == 0 ||
511 matches(*argv, "list") == 0)
512 return do_show(argc - 1, argv + 1);
513 if (matches(*argv, "help") == 0)
514 usage();
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900515 } else
516 return do_show(0, NULL);
517
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900518 fprintf(stderr, "Command \"%s\" is unknown, try \"ip -f inet6 tunnel help\".\n", *argv);
519 exit(-1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900520}