blob: 25d5ba32a0f1e0ef8e1805d0464cd2c8fbb68709 [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");
xeb@mail.ruaf895762013-09-28 11:32:51 +040050 fprintf(stderr, " [ mode { ip6ip6 | ipip6 | ip6gre | 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)
120 printf("%s Drop packets out of sequence.\n", _SL_);
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 }
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;
143 else if (strcmp(*argv, "ip/ipv6") == 0 ||
144 strcmp(*argv, "ipv4/ipv6") == 0 ||
145 strcmp(*argv, "ipip6") == 0 ||
146 strcmp(*argv, "ip4ip6") == 0)
147 p->proto = IPPROTO_IPIP;
xeb@mail.ruaf895762013-09-28 11:32:51 +0400148 else if (strcmp(*argv, "ip6gre") == 0 ||
149 strcmp(*argv, "gre/ipv6") == 0)
150 p->proto = IPPROTO_GRE;
YOSHIFUJI Hideaki / 吉藤英明0b959b02007-10-12 16:51:22 +0900151 else if (strcmp(*argv, "any/ipv6") == 0 ||
152 strcmp(*argv, "any") == 0)
153 p->proto = 0;
154 else {
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000155 fprintf(stderr,"Unknown tunnel mode \"%s\"\n", *argv);
YOSHIFUJI Hideaki / 吉藤英明0b959b02007-10-12 16:51:22 +0900156 exit(-1);
157 }
158 } else if (strcmp(*argv, "remote") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900159 inet_prefix raddr;
160 NEXT_ARG();
161 get_prefix(&raddr, *argv, preferred_family);
162 if (raddr.family == AF_UNSPEC)
163 invarg("\"remote\" address family is AF_UNSPEC", *argv);
164 memcpy(&p->raddr, &raddr.data, sizeof(p->raddr));
165 } else if (strcmp(*argv, "local") == 0) {
166 inet_prefix laddr;
167 NEXT_ARG();
168 get_prefix(&laddr, *argv, preferred_family);
169 if (laddr.family == AF_UNSPEC)
170 invarg("\"local\" address family is AF_UNSPEC", *argv);
171 memcpy(&p->laddr, &laddr.data, sizeof(p->laddr));
172 } else if (strcmp(*argv, "dev") == 0) {
173 NEXT_ARG();
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900174 strncpy(medium, *argv, IFNAMSIZ - 1);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900175 } else if (strcmp(*argv, "encaplimit") == 0) {
176 NEXT_ARG();
177 if (strcmp(*argv, "none") == 0) {
178 p->flags |= IP6_TNL_F_IGN_ENCAP_LIMIT;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900179 } else {
180 __u8 uval;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900181 if (get_u8(&uval, *argv, 0) < -1)
182 invarg("invalid ELIM", *argv);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900183 p->encap_limit = uval;
Nicolas Dichtel3f83dce2012-11-14 16:29:25 +0100184 p->flags &= ~IP6_TNL_F_IGN_ENCAP_LIMIT;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900185 }
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400186 } else if (strcmp(*argv, "hoplimit") == 0 ||
187 strcmp(*argv, "ttl") == 0 ||
188 strcmp(*argv, "hlim") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900189 __u8 uval;
190 NEXT_ARG();
191 if (get_u8(&uval, *argv, 0))
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400192 invarg("invalid TTL", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900193 p->hop_limit = uval;
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400194 } else if (strcmp(*argv, "tclass") == 0 ||
195 strcmp(*argv, "tc") == 0 ||
196 strcmp(*argv, "tos") == 0 ||
197 matches(*argv, "dsfield") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900198 __u8 uval;
199 NEXT_ARG();
Nicolas Dichteldf5574d2012-11-14 16:29:26 +0100200 p->flowinfo &= ~IP6_FLOWINFO_TCLASS;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900201 if (strcmp(*argv, "inherit") == 0)
202 p->flags |= IP6_TNL_F_USE_ORIG_TCLASS;
203 else {
204 if (get_u8(&uval, *argv, 16))
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400205 invarg("invalid TClass", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900206 p->flowinfo |= htonl((__u32)uval << 20) & IP6_FLOWINFO_TCLASS;
207 p->flags &= ~IP6_TNL_F_USE_ORIG_TCLASS;
208 }
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400209 } else if (strcmp(*argv, "flowlabel") == 0 ||
210 strcmp(*argv, "fl") == 0) {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900211 __u32 uval;
212 NEXT_ARG();
Nicolas Dichteldf5574d2012-11-14 16:29:26 +0100213 p->flowinfo &= ~IP6_FLOWINFO_FLOWLABEL;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900214 if (strcmp(*argv, "inherit") == 0)
215 p->flags |= IP6_TNL_F_USE_ORIG_FLOWLABEL;
216 else {
217 if (get_u32(&uval, *argv, 16))
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400218 invarg("invalid Flowlabel", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900219 if (uval > 0xFFFFF)
YOSHIFUJI Hideaki / 吉藤英明eddde112008-03-13 11:17:54 -0400220 invarg("invalid Flowlabel", *argv);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900221 p->flowinfo |= htonl(uval) & IP6_FLOWINFO_FLOWLABEL;
222 p->flags &= ~IP6_TNL_F_USE_ORIG_FLOWLABEL;
223 }
224 } else if (strcmp(*argv, "dscp") == 0) {
225 NEXT_ARG();
226 if (strcmp(*argv, "inherit") != 0)
227 invarg("not inherit", *argv);
228 p->flags |= IP6_TNL_F_RCV_DSCP_COPY;
xeb@mail.ruaf895762013-09-28 11:32:51 +0400229 } else if (strcmp(*argv, "key") == 0) {
230 unsigned uval;
231 NEXT_ARG();
232 p->i_flags |= GRE_KEY;
233 p->o_flags |= GRE_KEY;
234 if (strchr(*argv, '.'))
235 p->i_key = p->o_key = get_addr32(*argv);
236 else {
237 if (get_unsigned(&uval, *argv, 0)<0) {
238 fprintf(stderr, "invalid value of \"key\"\n");
239 exit(-1);
240 }
241 p->i_key = p->o_key = htonl(uval);
242 }
243 } else if (strcmp(*argv, "ikey") == 0) {
244 unsigned uval;
245 NEXT_ARG();
246 p->i_flags |= GRE_KEY;
247 if (strchr(*argv, '.'))
248 p->i_key = get_addr32(*argv);
249 else {
250 if (get_unsigned(&uval, *argv, 0)<0) {
251 fprintf(stderr, "invalid value of \"ikey\"\n");
252 exit(-1);
253 }
254 p->i_key = htonl(uval);
255 }
256 } else if (strcmp(*argv, "okey") == 0) {
257 unsigned uval;
258 NEXT_ARG();
259 p->o_flags |= GRE_KEY;
260 if (strchr(*argv, '.'))
261 p->o_key = get_addr32(*argv);
262 else {
263 if (get_unsigned(&uval, *argv, 0)<0) {
264 fprintf(stderr, "invalid value of \"okey\"\n");
265 exit(-1);
266 }
267 p->o_key = htonl(uval);
268 }
269 } else if (strcmp(*argv, "seq") == 0) {
270 p->i_flags |= GRE_SEQ;
271 p->o_flags |= GRE_SEQ;
272 } else if (strcmp(*argv, "iseq") == 0) {
273 p->i_flags |= GRE_SEQ;
274 } else if (strcmp(*argv, "oseq") == 0) {
275 p->o_flags |= GRE_SEQ;
276 } else if (strcmp(*argv, "csum") == 0) {
277 p->i_flags |= GRE_CSUM;
278 p->o_flags |= GRE_CSUM;
279 } else if (strcmp(*argv, "icsum") == 0) {
280 p->i_flags |= GRE_CSUM;
281 } else if (strcmp(*argv, "ocsum") == 0) {
282 p->o_flags |= GRE_CSUM;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900283 } else {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900284 if (strcmp(*argv, "name") == 0) {
285 NEXT_ARG();
286 }
287 if (matches(*argv, "help") == 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900288 usage();
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900289 if (p->name[0])
290 duparg2("name", *argv);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900291 strncpy(p->name, *argv, IFNAMSIZ - 1);
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000292 if (cmd == SIOCCHGTUNNEL && count == 0) {
xeb@mail.ruaf895762013-09-28 11:32:51 +0400293 struct ip6_tnl_parm2 old_p;
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000294 memset(&old_p, 0, sizeof(old_p));
295 if (tnl_get_ioctl(*argv, &old_p))
296 return -1;
297 *p = old_p;
298 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900299 }
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000300 count++;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900301 argc--; argv++;
302 }
303 if (medium[0]) {
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800304 p->link = ll_name_to_index(medium);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900305 if (p->link == 0)
306 return -1;
307 }
308 return 0;
309}
310
xeb@mail.ruaf895762013-09-28 11:32:51 +0400311static void ip6_tnl_parm_init(struct ip6_tnl_parm2 *p, int apply_default)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900312{
313 memset(p, 0, sizeof(*p));
314 p->proto = IPPROTO_IPV6;
315 if (apply_default) {
316 p->hop_limit = DEFAULT_TNL_HOP_LIMIT;
317 p->encap_limit = IPV6_DEFAULT_TNL_ENCAP_LIMIT;
318 }
319}
320
321/*
322 * @p1: user specified parameter
323 * @p2: database entry
324 */
xeb@mail.ruaf895762013-09-28 11:32:51 +0400325static int ip6_tnl_parm_match(const struct ip6_tnl_parm2 *p1,
326 const struct ip6_tnl_parm2 *p2)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900327{
328 return ((!p1->link || p1->link == p2->link) &&
329 (!p1->name[0] || strcmp(p1->name, p2->name) == 0) &&
330 (memcmp(&p1->laddr, &in6addr_any, sizeof(p1->laddr)) == 0 ||
331 memcmp(&p1->laddr, &p2->laddr, sizeof(p1->laddr)) == 0) &&
332 (memcmp(&p1->raddr, &in6addr_any, sizeof(p1->raddr)) == 0 ||
333 memcmp(&p1->raddr, &p2->raddr, sizeof(p1->raddr)) == 0) &&
334 (!p1->proto || !p2->proto || p1->proto == p2->proto) &&
335 (!p1->encap_limit || p1->encap_limit == p2->encap_limit) &&
336 (!p1->hop_limit || p1->hop_limit == p2->hop_limit) &&
337 (!(p1->flowinfo & IP6_FLOWINFO_TCLASS) ||
338 !((p1->flowinfo ^ p2->flowinfo) & IP6_FLOWINFO_TCLASS)) &&
339 (!(p1->flowinfo & IP6_FLOWINFO_FLOWLABEL) ||
340 !((p1->flowinfo ^ p2->flowinfo) & IP6_FLOWINFO_FLOWLABEL)) &&
341 (!p1->flags || (p1->flags & p2->flags)));
342}
343
xeb@mail.ruaf895762013-09-28 11:32:51 +0400344static int do_tunnels_list(struct ip6_tnl_parm2 *p)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900345{
346 char buf[512];
347 int err = -1;
348 FILE *fp = fopen("/proc/net/dev", "r");
349 if (fp == NULL) {
350 perror("fopen");
351 goto end;
352 }
353
354 /* skip two lines at the begenning of the file */
Stephen Hemminger38c867d2011-03-09 10:41:09 -0800355 if (!fgets(buf, sizeof(buf), fp) ||
356 !fgets(buf, sizeof(buf), fp)) {
357 fprintf(stderr, "/proc/net/dev read error\n");
358 return -1;
359 }
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900360
361 while (fgets(buf, sizeof(buf), fp) != NULL) {
362 char name[IFNAMSIZ];
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800363 int index, type;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900364 unsigned long rx_bytes, rx_packets, rx_errs, rx_drops,
365 rx_fifo, rx_frame,
366 tx_bytes, tx_packets, tx_errs, tx_drops,
367 tx_fifo, tx_colls, tx_carrier, rx_multi;
xeb@mail.ruaf895762013-09-28 11:32:51 +0400368 struct ip6_tnl_parm2 p1;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900369 char *ptr;
370
371 buf[sizeof(buf) - 1] = '\0';
372 if ((ptr = strchr(buf, ':')) == NULL ||
373 (*ptr++ = 0, sscanf(buf, "%s", name) != 1)) {
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000374 fprintf(stderr, "Wrong format for /proc/net/dev. Giving up.\n");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900375 goto end;
376 }
377 if (sscanf(ptr, "%ld%ld%ld%ld%ld%ld%ld%*d%ld%ld%ld%ld%ld%ld%ld",
378 &rx_bytes, &rx_packets, &rx_errs, &rx_drops,
379 &rx_fifo, &rx_frame, &rx_multi,
380 &tx_bytes, &tx_packets, &tx_errs, &tx_drops,
381 &tx_fifo, &tx_colls, &tx_carrier) != 14)
382 continue;
383 if (p->name[0] && strcmp(p->name, name))
384 continue;
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800385 index = ll_name_to_index(name);
386 if (index == 0)
387 continue;
388 type = ll_index_to_type(index);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900389 if (type == -1) {
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000390 fprintf(stderr, "Failed to get type of \"%s\"\n", name);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900391 continue;
392 }
xeb@mail.ruaf895762013-09-28 11:32:51 +0400393 if (type != ARPHRD_TUNNEL6 && type != ARPHRD_IP6GRE)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900394 continue;
395 memset(&p1, 0, sizeof(p1));
396 ip6_tnl_parm_init(&p1, 0);
xeb@mail.ruaf895762013-09-28 11:32:51 +0400397 if (type == ARPHRD_IP6GRE)
398 p1.proto = IPPROTO_GRE;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900399 strcpy(p1.name, name);
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800400 p1.link = ll_name_to_index(p1.name);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900401 if (p1.link == 0)
402 continue;
403 if (tnl_get_ioctl(p1.name, &p1))
404 continue;
405 if (!ip6_tnl_parm_match(p, &p1))
406 continue;
407 print_tunnel(&p1);
408 if (show_stats) {
409 printf("%s", _SL_);
410 printf("RX: Packets Bytes Errors CsumErrs OutOfSeq Mcasts%s", _SL_);
411 printf(" %-10ld %-12ld %-6ld %-8ld %-8ld %-8ld%s",
412 rx_packets, rx_bytes, rx_errs, rx_frame, rx_fifo, rx_multi, _SL_);
413 printf("TX: Packets Bytes Errors DeadLoop NoRoute NoBufs%s", _SL_);
414 printf(" %-10ld %-12ld %-6ld %-8ld %-8ld %-6ld",
415 tx_packets, tx_bytes, tx_errs, tx_colls, tx_carrier, tx_drops);
416 }
417 printf("\n");
418 }
419 err = 0;
420
421 end:
422 if (fp)
423 fclose(fp);
424 return err;
425}
426
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900427static int do_show(int argc, char **argv)
428{
xeb@mail.ruaf895762013-09-28 11:32:51 +0400429 struct ip6_tnl_parm2 p;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900430
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800431 ll_init_map(&rth);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900432 ip6_tnl_parm_init(&p, 0);
Srivats Pc3651bf2009-03-27 11:17:26 -0700433 p.proto = 0; /* default to any */
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900434
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000435 if (parse_args(argc, argv, SIOCGETTUNNEL, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900436 return -1;
437
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900438 if (!p.name[0] || show_stats)
439 do_tunnels_list(&p);
440 else {
441 if (tnl_get_ioctl(p.name, &p))
442 return -1;
443 print_tunnel(&p);
444 printf("\n");
445 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900446
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900447 return 0;
448}
449
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900450static int do_add(int cmd, int argc, char **argv)
451{
xeb@mail.ruaf895762013-09-28 11:32:51 +0400452 struct ip6_tnl_parm2 p;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900453
454 ip6_tnl_parm_init(&p, 1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900455
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000456 if (parse_args(argc, argv, cmd, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900457 return -1;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900458
xeb@mail.ruaf895762013-09-28 11:32:51 +0400459 switch (p.proto) {
460 case IPPROTO_IPIP:
461 case IPPROTO_IPV6:
462 return tnl_add_ioctl(cmd, "ip6tnl0", p.name, &p);
463 case IPPROTO_GRE:
464 return tnl_add_ioctl(cmd, "ip6gre0", p.name, &p);
465 default:
466 fprintf(stderr, "cannot determine tunnel mode (ip6ip6, ipip6 or gre)\n");
467 }
468 return -1;
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;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900474
475 ip6_tnl_parm_init(&p, 1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900476
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000477 if (parse_args(argc, argv, SIOCDELTUNNEL, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900478 return -1;
479
xeb@mail.ruaf895762013-09-28 11:32:51 +0400480 switch (p.proto) {
481 case IPPROTO_IPIP:
482 case IPPROTO_IPV6:
483 return tnl_del_ioctl("ip6tnl0", p.name, &p);
484 case IPPROTO_GRE:
485 return tnl_del_ioctl("ip6gre0", p.name, &p);
486 default:
487 return tnl_del_ioctl(p.name, p.name, &p);
488 }
489 return -1;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900490}
491
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800492int do_ip6tunnel(int argc, char **argv)
493{
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900494 switch (preferred_family) {
495 case AF_UNSPEC:
496 preferred_family = AF_INET6;
497 break;
498 case AF_INET6:
499 break;
500 default:
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000501 fprintf(stderr, "Unsupported protocol family: %d\n", preferred_family);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900502 exit(-1);
503 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900504
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900505 if (argc > 0) {
506 if (matches(*argv, "add") == 0)
507 return do_add(SIOCADDTUNNEL, argc - 1, argv + 1);
508 if (matches(*argv, "change") == 0)
509 return do_add(SIOCCHGTUNNEL, argc - 1, argv + 1);
Andreas Henriksson6e304612012-05-19 16:08:21 +0200510 if (matches(*argv, "delete") == 0)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900511 return do_del(argc - 1, argv + 1);
512 if (matches(*argv, "show") == 0 ||
513 matches(*argv, "lst") == 0 ||
514 matches(*argv, "list") == 0)
515 return do_show(argc - 1, argv + 1);
516 if (matches(*argv, "help") == 0)
517 usage();
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900518 } else
519 return do_show(0, NULL);
520
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900521 fprintf(stderr, "Command \"%s\" is unknown, try \"ip -f inet6 tunnel help\".\n", *argv);
522 exit(-1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900523}