blob: ba92518a981e91af1f903465f169130b0edc38d5 [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)
Phil Sutter8de592d2015-11-13 18:08:54 +0100114 printf(" ikey %u", ntohl(p->i_key));
xeb@mail.ruaf895762013-09-28 11:32:51 +0400115 if (p->o_flags&GRE_KEY)
Phil Sutter8de592d2015-11-13 18:08:54 +0100116 printf(" okey %u", ntohl(p->o_key));
xeb@mail.ruaf895762013-09-28 11:32:51 +0400117 }
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) {
xeb@mail.ruaf895762013-09-28 11:32:51 +0400233 NEXT_ARG();
234 p->i_flags |= GRE_KEY;
235 p->o_flags |= GRE_KEY;
Phil Suttera7ed1522015-11-13 18:08:55 +0100236 p->i_key = p->o_key = tnl_parse_key("key", *argv);
xeb@mail.ruaf895762013-09-28 11:32:51 +0400237 } else if (strcmp(*argv, "ikey") == 0) {
xeb@mail.ruaf895762013-09-28 11:32:51 +0400238 NEXT_ARG();
239 p->i_flags |= GRE_KEY;
Phil Suttera7ed1522015-11-13 18:08:55 +0100240 p->i_key = tnl_parse_key("ikey", *argv);
xeb@mail.ruaf895762013-09-28 11:32:51 +0400241 } else if (strcmp(*argv, "okey") == 0) {
xeb@mail.ruaf895762013-09-28 11:32:51 +0400242 NEXT_ARG();
243 p->o_flags |= GRE_KEY;
Phil Suttera7ed1522015-11-13 18:08:55 +0100244 p->o_key = tnl_parse_key("okey", *argv);
xeb@mail.ruaf895762013-09-28 11:32:51 +0400245 } 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;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900259 } else {
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900260 if (strcmp(*argv, "name") == 0) {
261 NEXT_ARG();
262 }
Christoph Schulz8aacb9b2015-09-25 08:44:07 +0200263 else if (matches(*argv, "help") == 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900264 usage();
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900265 if (p->name[0])
266 duparg2("name", *argv);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900267 strncpy(p->name, *argv, IFNAMSIZ - 1);
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000268 if (cmd == SIOCCHGTUNNEL && count == 0) {
xeb@mail.ruaf895762013-09-28 11:32:51 +0400269 struct ip6_tnl_parm2 old_p;
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000270 memset(&old_p, 0, sizeof(old_p));
271 if (tnl_get_ioctl(*argv, &old_p))
272 return -1;
273 *p = old_p;
274 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900275 }
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000276 count++;
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900277 argc--; argv++;
278 }
279 if (medium[0]) {
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800280 p->link = ll_name_to_index(medium);
Phil Sutter6ddb1e82015-11-13 18:08:56 +0100281 if (p->link == 0) {
282 fprintf(stderr, "Cannot find device \"%s\"\n", medium);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900283 return -1;
Phil Sutter6ddb1e82015-11-13 18:08:56 +0100284 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900285 }
286 return 0;
287}
288
xeb@mail.ruaf895762013-09-28 11:32:51 +0400289static void ip6_tnl_parm_init(struct ip6_tnl_parm2 *p, int apply_default)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900290{
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 */
xeb@mail.ruaf895762013-09-28 11:32:51 +0400303static int ip6_tnl_parm_match(const struct ip6_tnl_parm2 *p1,
304 const struct ip6_tnl_parm2 *p2)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900305{
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
xeb@mail.ruaf895762013-09-28 11:32:51 +0400322static int do_tunnels_list(struct ip6_tnl_parm2 *p)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900323{
324 char buf[512];
325 int err = -1;
326 FILE *fp = fopen("/proc/net/dev", "r");
327 if (fp == NULL) {
328 perror("fopen");
Phil Sutterc4527d72015-11-13 18:08:58 +0100329 return -1;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900330 }
331
332 /* skip two lines at the begenning of the file */
Stephen Hemminger38c867d2011-03-09 10:41:09 -0800333 if (!fgets(buf, sizeof(buf), fp) ||
334 !fgets(buf, sizeof(buf), fp)) {
335 fprintf(stderr, "/proc/net/dev read error\n");
Phil Sutterc4527d72015-11-13 18:08:58 +0100336 goto end;
Stephen Hemminger38c867d2011-03-09 10:41:09 -0800337 }
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900338
339 while (fgets(buf, sizeof(buf), fp) != NULL) {
340 char name[IFNAMSIZ];
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800341 int index, type;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900342 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;
xeb@mail.ruaf895762013-09-28 11:32:51 +0400346 struct ip6_tnl_parm2 p1;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900347 char *ptr;
348
349 buf[sizeof(buf) - 1] = '\0';
350 if ((ptr = strchr(buf, ':')) == NULL ||
351 (*ptr++ = 0, sscanf(buf, "%s", name) != 1)) {
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000352 fprintf(stderr, "Wrong format for /proc/net/dev. Giving up.\n");
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900353 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;
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800363 index = ll_name_to_index(name);
364 if (index == 0)
365 continue;
366 type = ll_index_to_type(index);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900367 if (type == -1) {
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000368 fprintf(stderr, "Failed to get type of \"%s\"\n", name);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900369 continue;
370 }
xeb@mail.ruaf895762013-09-28 11:32:51 +0400371 if (type != ARPHRD_TUNNEL6 && type != ARPHRD_IP6GRE)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900372 continue;
373 memset(&p1, 0, sizeof(p1));
374 ip6_tnl_parm_init(&p1, 0);
xeb@mail.ruaf895762013-09-28 11:32:51 +0400375 if (type == ARPHRD_IP6GRE)
376 p1.proto = IPPROTO_GRE;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900377 strcpy(p1.name, name);
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800378 p1.link = ll_name_to_index(p1.name);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900379 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;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900398 end:
Phil Sutterc4527d72015-11-13 18:08:58 +0100399 fclose(fp);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900400 return err;
401}
402
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900403static int do_show(int argc, char **argv)
404{
xeb@mail.ruaf895762013-09-28 11:32:51 +0400405 struct ip6_tnl_parm2 p;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900406
Stephen Hemmingerea71bea2010-11-28 10:35:28 -0800407 ll_init_map(&rth);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900408 ip6_tnl_parm_init(&p, 0);
Srivats Pc3651bf2009-03-27 11:17:26 -0700409 p.proto = 0; /* default to any */
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900410
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000411 if (parse_args(argc, argv, SIOCGETTUNNEL, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900412 return -1;
413
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900414 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 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900422
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900423 return 0;
424}
425
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900426static int do_add(int cmd, int argc, char **argv)
427{
xeb@mail.ruaf895762013-09-28 11:32:51 +0400428 struct ip6_tnl_parm2 p;
Alexey Andriyanova0638e12014-10-29 09:19:30 +0300429 const char *basedev = "ip6tnl0";
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900430
431 ip6_tnl_parm_init(&p, 1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900432
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000433 if (parse_args(argc, argv, cmd, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900434 return -1;
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900435
Alexey Andriyanova0638e12014-10-29 09:19:30 +0300436 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);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900442}
443
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900444static int do_del(int argc, char **argv)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900445{
xeb@mail.ruaf895762013-09-28 11:32:51 +0400446 struct ip6_tnl_parm2 p;
Alexey Andriyanova0638e12014-10-29 09:19:30 +0300447 const char *basedev = "ip6tnl0";
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900448
449 ip6_tnl_parm_init(&p, 1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900450
Jiri Benc21a5a6b2011-09-19 05:14:10 +0000451 if (parse_args(argc, argv, SIOCDELTUNNEL, &p) < 0)
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900452 return -1;
453
Alexey Andriyanova0638e12014-10-29 09:19:30 +0300454 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);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900460}
461
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800462int do_ip6tunnel(int argc, char **argv)
463{
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900464 switch (preferred_family) {
465 case AF_UNSPEC:
466 preferred_family = AF_INET6;
467 break;
468 case AF_INET6:
469 break;
470 default:
Kees van Reeuwijk14645ec2013-02-08 03:32:36 +0000471 fprintf(stderr, "Unsupported protocol family: %d\n", preferred_family);
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900472 exit(-1);
473 }
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900474
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900475 if (argc > 0) {
476 if (matches(*argv, "add") == 0)
477 return do_add(SIOCADDTUNNEL, argc - 1, argv + 1);
478 if (matches(*argv, "change") == 0)
479 return do_add(SIOCCHGTUNNEL, argc - 1, argv + 1);
Andreas Henriksson6e304612012-05-19 16:08:21 +0200480 if (matches(*argv, "delete") == 0)
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900481 return do_del(argc - 1, argv + 1);
482 if (matches(*argv, "show") == 0 ||
483 matches(*argv, "lst") == 0 ||
484 matches(*argv, "list") == 0)
485 return do_show(argc - 1, argv + 1);
486 if (matches(*argv, "help") == 0)
487 usage();
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900488 } else
489 return do_show(0, NULL);
490
Masahide NAKAMURA288384f2006-11-24 12:27:09 +0900491 fprintf(stderr, "Command \"%s\" is unknown, try \"ip -f inet6 tunnel help\".\n", *argv);
492 exit(-1);
Masahide NAKAMURA9447a0d2006-11-24 12:27:06 +0900493}