]> rtime.felk.cvut.cz Git - lisovros/iproute2_canprio.git/blob - ip/iptunnel.c
iptunnel: allow ISATAP with stateless autoconf
[lisovros/iproute2_canprio.git] / ip / iptunnel.c
1 /*
2  * iptunnel.c          "ip tunnel"
3  *
4  *              This program is free software; you can redistribute it and/or
5  *              modify it under the terms of the GNU General Public License
6  *              as published by the Free Software Foundation; either version
7  *              2 of the License, or (at your option) any later version.
8  *
9  * Authors:     Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10  *
11  *
12  * Changes:
13  *
14  * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
15  * Rani Assaf <rani@magic.metawire.com> 980930: do not allow key for ipip/sit
16  * Phil Karn <karn@ka9q.ampr.org>       990408: "pmtudisc" flag
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <unistd.h>
23 #include <sys/types.h>
24 #include <sys/socket.h>
25 #include <arpa/inet.h>
26 #include <sys/ioctl.h>
27 #include <linux/if.h>
28 #include <linux/if_arp.h>
29 #include <linux/ip.h>
30 #include <linux/if_tunnel.h>
31
32 #include "rt_names.h"
33 #include "utils.h"
34 #include "ip_common.h"
35 #include "tunnel.h"
36
37 static void usage(void) __attribute__((noreturn));
38
39 static void usage(void)
40 {
41         fprintf(stderr, "Usage: ip tunnel { add | change | del | show } [ NAME ]\n");
42         fprintf(stderr, "          [ mode { ipip | gre | sit | isatap } ] [ remote ADDR ] [ local ADDR ]\n");
43         fprintf(stderr, "          [ [i|o]seq ] [ [i|o]key KEY ] [ [i|o]csum ]\n");
44         fprintf(stderr, "          [ ttl TTL ] [ tos TOS ] [ [no]pmtudisc ] [ dev PHYS_DEV ]\n");
45         fprintf(stderr, "\n");
46         fprintf(stderr, "Where: NAME := STRING\n");
47         fprintf(stderr, "       ADDR := { IP_ADDRESS | any }\n");
48         fprintf(stderr, "       TOS  := { NUMBER | inherit }\n");
49         fprintf(stderr, "       TTL  := { 1..255 | inherit }\n");
50         fprintf(stderr, "       KEY  := { DOTTED_QUAD | NUMBER }\n");
51         exit(-1);
52 }
53
54 static int parse_args(int argc, char **argv, int cmd, struct ip_tunnel_parm *p)
55 {
56         int count = 0;
57         char medium[IFNAMSIZ];
58         int isatap = 0;
59
60         memset(p, 0, sizeof(*p));
61         memset(&medium, 0, sizeof(medium));
62
63         p->iph.version = 4;
64         p->iph.ihl = 5;
65 #ifndef IP_DF
66 #define IP_DF           0x4000          /* Flag: "Don't Fragment"       */
67 #endif
68         p->iph.frag_off = htons(IP_DF);
69
70         while (argc > 0) {
71                 if (strcmp(*argv, "mode") == 0) {
72                         NEXT_ARG();
73                         if (strcmp(*argv, "ipip") == 0 ||
74                             strcmp(*argv, "ip/ip") == 0) {
75                                 if (p->iph.protocol && p->iph.protocol != IPPROTO_IPIP) {
76                                         fprintf(stderr,"You managed to ask for more than one tunnel mode.\n");
77                                         exit(-1);
78                                 }
79                                 p->iph.protocol = IPPROTO_IPIP;
80                         } else if (strcmp(*argv, "gre") == 0 ||
81                                    strcmp(*argv, "gre/ip") == 0) {
82                                 if (p->iph.protocol && p->iph.protocol != IPPROTO_GRE) {
83                                         fprintf(stderr,"You managed to ask for more than one tunnel mode.\n");
84                                         exit(-1);
85                                 }
86                                 p->iph.protocol = IPPROTO_GRE;
87                         } else if (strcmp(*argv, "sit") == 0 ||
88                                    strcmp(*argv, "ipv6/ip") == 0) {
89                                 if (p->iph.protocol && p->iph.protocol != IPPROTO_IPV6) {
90                                         fprintf(stderr,"You managed to ask for more than one tunnel mode.\n");
91                                         exit(-1);
92                                 }
93                                 p->iph.protocol = IPPROTO_IPV6;
94                         } else if (strcmp(*argv, "isatap") == 0) {
95                                 if (p->iph.protocol && p->iph.protocol != IPPROTO_IPV6) {
96                                         fprintf(stderr, "You managed to ask for more than one tunnel mode.\n");
97                                         exit(-1);
98                                 }
99                                 p->iph.protocol = IPPROTO_IPV6;
100                                 isatap++;
101                         } else {
102                                 fprintf(stderr,"Cannot guess tunnel mode.\n");
103                                 exit(-1);
104                         }
105                 } else if (strcmp(*argv, "key") == 0) {
106                         unsigned uval;
107                         NEXT_ARG();
108                         p->i_flags |= GRE_KEY;
109                         p->o_flags |= GRE_KEY;
110                         if (strchr(*argv, '.'))
111                                 p->i_key = p->o_key = get_addr32(*argv);
112                         else {
113                                 if (get_unsigned(&uval, *argv, 0)<0) {
114                                         fprintf(stderr, "invalid value of \"key\"\n");
115                                         exit(-1);
116                                 }
117                                 p->i_key = p->o_key = htonl(uval);
118                         }
119                 } else if (strcmp(*argv, "ikey") == 0) {
120                         unsigned uval;
121                         NEXT_ARG();
122                         p->i_flags |= GRE_KEY;
123                         if (strchr(*argv, '.'))
124                                 p->i_key = get_addr32(*argv);
125                         else {
126                                 if (get_unsigned(&uval, *argv, 0)<0) {
127                                         fprintf(stderr, "invalid value of \"ikey\"\n");
128                                         exit(-1);
129                                 }
130                                 p->i_key = htonl(uval);
131                         }
132                 } else if (strcmp(*argv, "okey") == 0) {
133                         unsigned uval;
134                         NEXT_ARG();
135                         p->o_flags |= GRE_KEY;
136                         if (strchr(*argv, '.'))
137                                 p->o_key = get_addr32(*argv);
138                         else {
139                                 if (get_unsigned(&uval, *argv, 0)<0) {
140                                         fprintf(stderr, "invalid value of \"okey\"\n");
141                                         exit(-1);
142                                 }
143                                 p->o_key = htonl(uval);
144                         }
145                 } else if (strcmp(*argv, "seq") == 0) {
146                         p->i_flags |= GRE_SEQ;
147                         p->o_flags |= GRE_SEQ;
148                 } else if (strcmp(*argv, "iseq") == 0) {
149                         p->i_flags |= GRE_SEQ;
150                 } else if (strcmp(*argv, "oseq") == 0) {
151                         p->o_flags |= GRE_SEQ;
152                 } else if (strcmp(*argv, "csum") == 0) {
153                         p->i_flags |= GRE_CSUM;
154                         p->o_flags |= GRE_CSUM;
155                 } else if (strcmp(*argv, "icsum") == 0) {
156                         p->i_flags |= GRE_CSUM;
157                 } else if (strcmp(*argv, "ocsum") == 0) {
158                         p->o_flags |= GRE_CSUM;
159                 } else if (strcmp(*argv, "nopmtudisc") == 0) {
160                         p->iph.frag_off = 0;
161                 } else if (strcmp(*argv, "pmtudisc") == 0) {
162                         p->iph.frag_off = htons(IP_DF);
163                 } else if (strcmp(*argv, "remote") == 0) {
164                         NEXT_ARG();
165                         if (strcmp(*argv, "any"))
166                                 p->iph.daddr = get_addr32(*argv);
167                 } else if (strcmp(*argv, "local") == 0) {
168                         NEXT_ARG();
169                         if (strcmp(*argv, "any"))
170                                 p->iph.saddr = get_addr32(*argv);
171                 } else if (strcmp(*argv, "dev") == 0) {
172                         NEXT_ARG();
173                         strncpy(medium, *argv, IFNAMSIZ-1);
174                 } else if (strcmp(*argv, "ttl") == 0 ||
175                            strcmp(*argv, "hoplimit") == 0) {
176                         unsigned uval;
177                         NEXT_ARG();
178                         if (strcmp(*argv, "inherit") != 0) {
179                                 if (get_unsigned(&uval, *argv, 0))
180                                         invarg("invalid TTL\n", *argv);
181                                 if (uval > 255)
182                                         invarg("TTL must be <=255\n", *argv);
183                                 p->iph.ttl = uval;
184                         }
185                 } else if (strcmp(*argv, "tos") == 0 ||
186                            strcmp(*argv, "tclass") == 0 ||
187                            matches(*argv, "dsfield") == 0) {
188                         __u32 uval;
189                         NEXT_ARG();
190                         if (strcmp(*argv, "inherit") != 0) {
191                                 if (rtnl_dsfield_a2n(&uval, *argv))
192                                         invarg("bad TOS value", *argv);
193                                 p->iph.tos = uval;
194                         } else
195                                 p->iph.tos = 1;
196                 } else {
197                         if (strcmp(*argv, "name") == 0) {
198                                 NEXT_ARG();
199                         } else if (matches(*argv, "help") == 0)
200                                 usage();
201                         if (p->name[0])
202                                 duparg2("name", *argv);
203                         strncpy(p->name, *argv, IFNAMSIZ);
204                         if (cmd == SIOCCHGTUNNEL && count == 0) {
205                                 struct ip_tunnel_parm old_p;
206                                 memset(&old_p, 0, sizeof(old_p));
207                                 if (tnl_get_ioctl(*argv, &old_p))
208                                         return -1;
209                                 *p = old_p;
210                         }
211                 }
212                 count++;
213                 argc--; argv++;
214         }
215
216
217         if (p->iph.protocol == 0) {
218                 if (memcmp(p->name, "gre", 3) == 0)
219                         p->iph.protocol = IPPROTO_GRE;
220                 else if (memcmp(p->name, "ipip", 4) == 0)
221                         p->iph.protocol = IPPROTO_IPIP;
222                 else if (memcmp(p->name, "sit", 3) == 0)
223                         p->iph.protocol = IPPROTO_IPV6;
224                 else if (memcmp(p->name, "isatap", 6) == 0) {
225                         p->iph.protocol = IPPROTO_IPV6;
226                         isatap++;
227                 }
228         }
229
230         if (p->iph.protocol == IPPROTO_IPIP || p->iph.protocol == IPPROTO_IPV6) {
231                 if ((p->i_flags & GRE_KEY) || (p->o_flags & GRE_KEY)) {
232                         fprintf(stderr, "Keys are not allowed with ipip and sit.\n");
233                         return -1;
234                 }
235         }
236
237         if (medium[0]) {
238                 p->link = tnl_ioctl_get_ifindex(medium);
239                 if (p->link == 0)
240                         return -1;
241         }
242
243         if (p->i_key == 0 && IN_MULTICAST(ntohl(p->iph.daddr))) {
244                 p->i_key = p->iph.daddr;
245                 p->i_flags |= GRE_KEY;
246         }
247         if (p->o_key == 0 && IN_MULTICAST(ntohl(p->iph.daddr))) {
248                 p->o_key = p->iph.daddr;
249                 p->o_flags |= GRE_KEY;
250         }
251         if (IN_MULTICAST(ntohl(p->iph.daddr)) && !p->iph.saddr) {
252                 fprintf(stderr, "Broadcast tunnel requires a source address.\n");
253                 return -1;
254         }
255         if (isatap)
256                 p->i_flags |= SIT_ISATAP;
257
258         return 0;
259 }
260
261
262 static int do_add(int cmd, int argc, char **argv)
263 {
264         struct ip_tunnel_parm p;
265
266         if (parse_args(argc, argv, cmd, &p) < 0)
267                 return -1;
268
269         if (p.iph.ttl && p.iph.frag_off == 0) {
270                 fprintf(stderr, "ttl != 0 and noptmudisc are incompatible\n");
271                 return -1;
272         }
273
274         switch (p.iph.protocol) {
275         case IPPROTO_IPIP:
276                 return tnl_add_ioctl(cmd, "tunl0", p.name, &p);
277         case IPPROTO_GRE:
278                 return tnl_add_ioctl(cmd, "gre0", p.name, &p);
279         case IPPROTO_IPV6:
280                 return tnl_add_ioctl(cmd, "sit0", p.name, &p);
281         default:
282                 fprintf(stderr, "cannot determine tunnel mode (ipip, gre or sit)\n");
283                 return -1;
284         }
285         return -1;
286 }
287
288 static int do_del(int argc, char **argv)
289 {
290         struct ip_tunnel_parm p;
291
292         if (parse_args(argc, argv, SIOCDELTUNNEL, &p) < 0)
293                 return -1;
294
295         switch (p.iph.protocol) {
296         case IPPROTO_IPIP:
297                 return tnl_del_ioctl("tunl0", p.name, &p);
298         case IPPROTO_GRE:
299                 return tnl_del_ioctl("gre0", p.name, &p);
300         case IPPROTO_IPV6:
301                 return tnl_del_ioctl("sit0", p.name, &p);
302         default:
303                 return tnl_del_ioctl(p.name, p.name, &p);
304         }
305         return -1;
306 }
307
308 static void print_tunnel(struct ip_tunnel_parm *p)
309 {
310         char s1[1024];
311         char s2[1024];
312         char s3[64];
313         char s4[64];
314
315         inet_ntop(AF_INET, &p->i_key, s3, sizeof(s3));
316         inet_ntop(AF_INET, &p->o_key, s4, sizeof(s4));
317
318         /* Do not use format_host() for local addr,
319          * symbolic name will not be useful.
320          */
321         printf("%s: %s/ip  remote %s  local %s ",
322                p->name,
323                tnl_strproto(p->iph.protocol),
324                p->iph.daddr ? format_host(AF_INET, 4, &p->iph.daddr, s1, sizeof(s1))  : "any",
325                p->iph.saddr ? rt_addr_n2a(AF_INET, 4, &p->iph.saddr, s2, sizeof(s2)) : "any");
326
327         if (p->link) {
328                 char *n = tnl_ioctl_get_ifname(p->link);
329                 if (n)
330                         printf(" dev %s ", n);
331         }
332
333         if (p->iph.ttl)
334                 printf(" ttl %d ", p->iph.ttl);
335         else
336                 printf(" ttl inherit ");
337
338         if (p->iph.tos) {
339                 SPRINT_BUF(b1);
340                 printf(" tos");
341                 if (p->iph.tos&1)
342                         printf(" inherit");
343                 if (p->iph.tos&~1)
344                         printf("%c%s ", p->iph.tos&1 ? '/' : ' ',
345                                rtnl_dsfield_n2a(p->iph.tos&~1, b1, sizeof(b1)));
346         }
347
348         if (!(p->iph.frag_off&htons(IP_DF)))
349                 printf(" nopmtudisc");
350
351         if ((p->i_flags&GRE_KEY) && (p->o_flags&GRE_KEY) && p->o_key == p->i_key)
352                 printf(" key %s", s3);
353         else if ((p->i_flags|p->o_flags)&GRE_KEY) {
354                 if (p->i_flags&GRE_KEY)
355                         printf(" ikey %s ", s3);
356                 if (p->o_flags&GRE_KEY)
357                         printf(" okey %s ", s4);
358         }
359
360         if (p->i_flags&GRE_SEQ)
361                 printf("%s  Drop packets out of sequence.\n", _SL_);
362         if (p->i_flags&GRE_CSUM)
363                 printf("%s  Checksum in received packet is required.", _SL_);
364         if (p->o_flags&GRE_SEQ)
365                 printf("%s  Sequence packets on output.", _SL_);
366         if (p->o_flags&GRE_CSUM)
367                 printf("%s  Checksum output packets.", _SL_);
368 }
369
370 static int do_tunnels_list(struct ip_tunnel_parm *p)
371 {
372         char name[IFNAMSIZ];
373         unsigned long  rx_bytes, rx_packets, rx_errs, rx_drops,
374         rx_fifo, rx_frame,
375         tx_bytes, tx_packets, tx_errs, tx_drops,
376         tx_fifo, tx_colls, tx_carrier, rx_multi;
377         int type;
378         struct ip_tunnel_parm p1;
379
380         char buf[512];
381         FILE *fp = fopen("/proc/net/dev", "r");
382         if (fp == NULL) {
383                 perror("fopen");
384                 return -1;
385         }
386
387         fgets(buf, sizeof(buf), fp);
388         fgets(buf, sizeof(buf), fp);
389
390         while (fgets(buf, sizeof(buf), fp) != NULL) {
391                 char *ptr;
392                 buf[sizeof(buf) - 1] = 0;
393                 if ((ptr = strchr(buf, ':')) == NULL ||
394                     (*ptr++ = 0, sscanf(buf, "%s", name) != 1)) {
395                         fprintf(stderr, "Wrong format of /proc/net/dev. Sorry.\n");
396                         return -1;
397                 }
398                 if (sscanf(ptr, "%ld%ld%ld%ld%ld%ld%ld%*d%ld%ld%ld%ld%ld%ld%ld",
399                            &rx_bytes, &rx_packets, &rx_errs, &rx_drops,
400                            &rx_fifo, &rx_frame, &rx_multi,
401                            &tx_bytes, &tx_packets, &tx_errs, &tx_drops,
402                            &tx_fifo, &tx_colls, &tx_carrier) != 14)
403                         continue;
404                 if (p->name[0] && strcmp(p->name, name))
405                         continue;
406                 type = tnl_ioctl_get_iftype(name);
407                 if (type == -1) {
408                         fprintf(stderr, "Failed to get type of [%s]\n", name);
409                         continue;
410                 }
411                 if (type != ARPHRD_TUNNEL && type != ARPHRD_IPGRE && type != ARPHRD_SIT)
412                         continue;
413                 memset(&p1, 0, sizeof(p1));
414                 if (tnl_get_ioctl(name, &p1))
415                         continue;
416                 if ((p->link && p1.link != p->link) ||
417                     (p->name[0] && strcmp(p1.name, p->name)) ||
418                     (p->iph.daddr && p1.iph.daddr != p->iph.daddr) ||
419                     (p->iph.saddr && p1.iph.saddr != p->iph.saddr) ||
420                     (p->i_key && p1.i_key != p->i_key))
421                         continue;
422                 print_tunnel(&p1);
423                 if (show_stats) {
424                         printf("%s", _SL_);
425                         printf("RX: Packets    Bytes        Errors CsumErrs OutOfSeq Mcasts%s", _SL_);
426                         printf("    %-10ld %-12ld %-6ld %-8ld %-8ld %-8ld%s",
427                                rx_packets, rx_bytes, rx_errs, rx_frame, rx_fifo, rx_multi, _SL_);
428                         printf("TX: Packets    Bytes        Errors DeadLoop NoRoute  NoBufs%s", _SL_);
429                         printf("    %-10ld %-12ld %-6ld %-8ld %-8ld %-6ld",
430                                tx_packets, tx_bytes, tx_errs, tx_colls, tx_carrier, tx_drops);
431                 }
432                 printf("\n");
433         }
434         return 0;
435 }
436
437 static int do_show(int argc, char **argv)
438 {
439         int err;
440         struct ip_tunnel_parm p;
441
442         if (parse_args(argc, argv, SIOCGETTUNNEL, &p) < 0)
443                 return -1;
444
445         switch (p.iph.protocol) {
446         case IPPROTO_IPIP:
447                 err = tnl_get_ioctl(p.name[0] ? p.name : "tunl0", &p);
448                 break;
449         case IPPROTO_GRE:
450                 err = tnl_get_ioctl(p.name[0] ? p.name : "gre0", &p);
451                 break;
452         case IPPROTO_IPV6:
453                 err = tnl_get_ioctl(p.name[0] ? p.name : "sit0", &p);
454                 break;
455         default:
456                 do_tunnels_list(&p);
457                 return 0;
458         }
459         if (err)
460                 return -1;
461
462         print_tunnel(&p);
463         printf("\n");
464         return 0;
465 }
466
467 int do_iptunnel(int argc, char **argv)
468 {
469         switch (preferred_family) {
470         case AF_UNSPEC:
471                 preferred_family = AF_INET;
472                 break;
473         case AF_INET:
474                 break;
475         /*
476          * This is silly enough but we have no easy way to make it
477          * protocol-independent because of unarranged structure between
478          * IPv4 and IPv6.
479          */
480         case AF_INET6:
481                 return do_ip6tunnel(argc, argv);
482         default:
483                 fprintf(stderr, "Unsupported family:%d\n", preferred_family);
484                 exit(-1);
485         }
486
487         if (argc > 0) {
488                 if (matches(*argv, "add") == 0)
489                         return do_add(SIOCADDTUNNEL, argc-1, argv+1);
490                 if (matches(*argv, "change") == 0)
491                         return do_add(SIOCCHGTUNNEL, argc-1, argv+1);
492                 if (matches(*argv, "del") == 0)
493                         return do_del(argc-1, argv+1);
494                 if (matches(*argv, "show") == 0 ||
495                     matches(*argv, "lst") == 0 ||
496                     matches(*argv, "list") == 0)
497                         return do_show(argc-1, argv+1);
498                 if (matches(*argv, "help") == 0)
499                         usage();
500         } else
501                 return do_show(0, NULL);
502
503         fprintf(stderr, "Command \"%s\" is unknown, try \"ip tunnel help\".\n", *argv);
504         exit(-1);
505 }