]> git.proxmox.com Git - mirror_iproute2.git/blobdiff - ip/ip6tunnel.c
Merge branch 'gcc-10' into main
[mirror_iproute2.git] / ip / ip6tunnel.c
index c9720eb25b62781e11c47af1f30b797d6d8b9cba..5399f91d3923a3356b058fd06d911166ac1974f7 100644 (file)
@@ -12,8 +12,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * along with this program; if not, see <http://www.gnu.org/licenses>.
  */
 /*
  * Author:
@@ -47,71 +46,107 @@ static void usage(void) __attribute__((noreturn));
 
 static void usage(void)
 {
-       fprintf(stderr, "Usage: ip -f inet6 tunnel { add | change | del | show } [ NAME ]\n");
-       fprintf(stderr, "          [ mode { ip6ip6 | ipip6 | any } ]\n");
-       fprintf(stderr, "          [ remote ADDR local ADDR ] [ dev PHYS_DEV ]\n");
-       fprintf(stderr, "          [ encaplimit ELIM ]\n");
-       fprintf(stderr ,"          [ hoplimit TTL ] [ tclass TCLASS ] [ flowlabel FLOWLABEL ]\n");
-       fprintf(stderr, "          [ dscp inherit ]\n");
-       fprintf(stderr, "\n");
-       fprintf(stderr, "Where: NAME      := STRING\n");
-       fprintf(stderr, "       ADDR      := IPV6_ADDRESS\n");
-       fprintf(stderr, "       ELIM      := { none | 0..255 }(default=%d)\n",
-               IPV6_DEFAULT_TNL_ENCAP_LIMIT);
-       fprintf(stderr, "       TTL       := 0..255 (default=%d)\n",
+       fprintf(stderr,
+               "Usage: ip -f inet6 tunnel { add | change | del | show } [ NAME ]\n"
+               "          [ mode { ip6ip6 | ipip6 | ip6gre | vti6 | any } ]\n"
+               "          [ remote ADDR local ADDR ] [ dev PHYS_DEV ]\n"
+               "          [ encaplimit ELIM ]\n"
+               "          [ hoplimit TTL ] [ tclass TCLASS ] [ flowlabel FLOWLABEL ]\n"
+               "          [ dscp inherit ]\n"
+               "          [ [no]allow-localremote ]\n"
+               "          [ [i|o]seq ] [ [i|o]key KEY ] [ [i|o]csum ]\n"
+               "\n"
+               "Where: NAME      := STRING\n"
+               "       ADDR      := IPV6_ADDRESS\n"
+               "       ELIM      := { none | 0..255 }(default=%d)\n"
+               "       TTL       := 0..255 (default=%d)\n"
+               "       TCLASS    := { 0x0..0xff | inherit }\n"
+               "       FLOWLABEL := { 0x0..0xfffff | inherit }\n"
+               "       KEY       := { DOTTED_QUAD | NUMBER }\n",
+               IPV6_DEFAULT_TNL_ENCAP_LIMIT,
                DEFAULT_TNL_HOP_LIMIT);
-       fprintf(stderr, "       TOS       := { 0x0..0xff | inherit }\n");
-       fprintf(stderr, "       FLOWLABEL := { 0x0..0xfffff | inherit }\n");
        exit(-1);
 }
 
-static void print_tunnel(struct ip6_tnl_parm *p)
+static void print_tunnel(const void *t)
 {
-       char remote[64];
-       char local[64];
+       const struct ip6_tnl_parm2 *p = t;
+       SPRINT_BUF(b1);
+
+       /* Do not use format_host() for local addr,
+        * symbolic name will not be useful.
+        */
+       open_json_object(NULL);
+       print_color_string(PRINT_ANY, COLOR_IFNAME, "ifname", "%s: ", p->name);
+       snprintf(b1, sizeof(b1), "%s/ipv6", tnl_strproto(p->proto));
+       print_string(PRINT_ANY, "mode", "%s ", b1);
+       print_string(PRINT_FP, NULL, "%s", "remote ");
+       print_color_string(PRINT_ANY, COLOR_INET6, "remote", "%s ",
+                          format_host_r(AF_INET6, 16, &p->raddr, b1, sizeof(b1)));
+       print_string(PRINT_FP, NULL, "%s", "local ");
+       print_color_string(PRINT_ANY, COLOR_INET6, "local", "%s",
+                          rt_addr_n2a_r(AF_INET6, 16, &p->laddr, b1, sizeof(b1)));
 
-       inet_ntop(AF_INET6, &p->raddr, remote, sizeof(remote));
-       inet_ntop(AF_INET6, &p->laddr, local, sizeof(local));
-
-       printf("%s: %s/ipv6 remote %s local %s",
-              p->name, tnl_strproto(p->proto), remote, local);
        if (p->link) {
                const char *n = ll_index_to_name(p->link);
+
                if (n)
-                       printf(" dev %s", n);
+                       print_string(PRINT_ANY, "link", " dev %s", n);
        }
 
        if (p->flags & IP6_TNL_F_IGN_ENCAP_LIMIT)
-               printf(" encaplimit none");
+               print_null(PRINT_ANY, "ip6_tnl_f_ign_encap_limit",
+                          " encaplimit none", NULL);
        else
-               printf(" encaplimit %u", p->encap_limit);
+               print_uint(PRINT_ANY, "encap_limit", " encaplimit %u",
+                          p->encap_limit);
 
-       printf(" hoplimit %u", p->hop_limit);
+       if (p->hop_limit)
+               print_uint(PRINT_ANY, "hoplimit", " hoplimit %u", p->hop_limit);
+       else
+               print_string(PRINT_FP, "hoplimit", " hoplimit %s", "inherit");
 
-       if (p->flags & IP6_TNL_F_USE_ORIG_TCLASS)
-               printf(" tclass inherit");
-       else {
+       if (p->flags & IP6_TNL_F_USE_ORIG_TCLASS) {
+               print_null(PRINT_ANY, "ip6_tnl_f_use_orig_tclass",
+                          " tclass inherit", NULL);
+       } else {
                __u32 val = ntohl(p->flowinfo & IP6_FLOWINFO_TCLASS);
-               printf(" tclass 0x%02x", (__u8)(val >> 20));
+
+               snprintf(b1, sizeof(b1), "0x%02x", (__u8)(val >> 20));
+               print_string(PRINT_ANY, "tclass", " tclass %s", b1);
        }
 
-       if (p->flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
-               printf(" flowlabel inherit");
-       else
-               printf(" flowlabel 0x%05x", ntohl(p->flowinfo & IP6_FLOWINFO_FLOWLABEL));
+       if (p->flags & IP6_TNL_F_USE_ORIG_FLOWLABEL) {
+               print_null(PRINT_ANY, "ip6_tnl_f_use_orig_flowlabel",
+                          " flowlabel inherit", NULL);
+       } else {
+               __u32 val = ntohl(p->flowinfo & IP6_FLOWINFO_FLOWLABEL);
+
+               snprintf(b1, sizeof(b1), "0x%05x", val);
+               print_string(PRINT_ANY, "flowlabel", " flowlabel %s", b1);
+       }
 
-       printf(" (flowinfo 0x%08x)", ntohl(p->flowinfo));
+       snprintf(b1, sizeof(b1), "0x%08x", ntohl(p->flowinfo));
+       print_string(PRINT_ANY, "flowinfo", " (flowinfo %s)", b1);
 
        if (p->flags & IP6_TNL_F_RCV_DSCP_COPY)
-               printf(" dscp inherit");
+               print_null(PRINT_ANY, "ip6_tnl_f_rcv_dscp_copy",
+                          " dscp inherit", NULL);
+
+       if (p->flags & IP6_TNL_F_ALLOW_LOCAL_REMOTE)
+               print_null(PRINT_ANY, "ip6_tnl_f_allow_local_remote",
+                          " allow-localremote", NULL);
+
+       tnl_print_gre_flags(p->proto, p->i_flags, p->o_flags,
+                           p->i_key, p->o_key);
+
+       close_json_object();
 }
 
-static int parse_args(int argc, char **argv, int cmd, struct ip6_tnl_parm *p)
+static int parse_args(int argc, char **argv, int cmd, struct ip6_tnl_parm2 *p)
 {
        int count = 0;
-       char medium[IFNAMSIZ];
-
-       memset(medium, 0, sizeof(medium));
+       const char *medium = NULL;
 
        while (argc > 0) {
                if (strcmp(*argv, "mode") == 0) {
@@ -119,49 +154,56 @@ static int parse_args(int argc, char **argv, int cmd, struct ip6_tnl_parm *p)
                        if (strcmp(*argv, "ipv6/ipv6") == 0 ||
                            strcmp(*argv, "ip6ip6") == 0)
                                p->proto = IPPROTO_IPV6;
-                       else if (strcmp(*argv, "ip/ipv6") == 0 ||
+                       else if (strcmp(*argv, "vti6") == 0) {
+                               p->proto = IPPROTO_IPV6;
+                               p->i_flags |= VTI_ISVTI;
+                       } else if (strcmp(*argv, "ip/ipv6") == 0 ||
                                 strcmp(*argv, "ipv4/ipv6") == 0 ||
                                 strcmp(*argv, "ipip6") == 0 ||
                                 strcmp(*argv, "ip4ip6") == 0)
                                p->proto = IPPROTO_IPIP;
+                       else if (strcmp(*argv, "ip6gre") == 0 ||
+                                strcmp(*argv, "gre/ipv6") == 0)
+                               p->proto = IPPROTO_GRE;
                        else if (strcmp(*argv, "any/ipv6") == 0 ||
                                 strcmp(*argv, "any") == 0)
                                p->proto = 0;
                        else {
-                                fprintf(stderr,"Cannot guess tunnel mode.\n");
-                                exit(-1);
-                        }
-                } else if (strcmp(*argv, "remote") == 0) {
+                               fprintf(stderr, "Unknown tunnel mode \"%s\"\n", *argv);
+                               exit(-1);
+                       }
+               } else if (strcmp(*argv, "remote") == 0) {
                        inet_prefix raddr;
+
                        NEXT_ARG();
-                       get_prefix(&raddr, *argv, preferred_family);
-                       if (raddr.family == AF_UNSPEC)
-                               invarg("\"remote\" address family is AF_UNSPEC", *argv);
+                       get_addr(&raddr, *argv, AF_INET6);
                        memcpy(&p->raddr, &raddr.data, sizeof(p->raddr));
                } else if (strcmp(*argv, "local") == 0) {
                        inet_prefix laddr;
+
                        NEXT_ARG();
-                       get_prefix(&laddr, *argv, preferred_family);
-                       if (laddr.family == AF_UNSPEC)
-                               invarg("\"local\" address family is AF_UNSPEC", *argv);
+                       get_addr(&laddr, *argv, AF_INET6);
                        memcpy(&p->laddr, &laddr.data, sizeof(p->laddr));
                } else if (strcmp(*argv, "dev") == 0) {
                        NEXT_ARG();
-                       strncpy(medium, *argv, IFNAMSIZ - 1);
+                       medium = *argv;
                } else if (strcmp(*argv, "encaplimit") == 0) {
                        NEXT_ARG();
                        if (strcmp(*argv, "none") == 0) {
                                p->flags |= IP6_TNL_F_IGN_ENCAP_LIMIT;
                        } else {
                                __u8 uval;
+
                                if (get_u8(&uval, *argv, 0) < -1)
                                        invarg("invalid ELIM", *argv);
                                p->encap_limit = uval;
+                               p->flags &= ~IP6_TNL_F_IGN_ENCAP_LIMIT;
                        }
                } else if (strcmp(*argv, "hoplimit") == 0 ||
                           strcmp(*argv, "ttl") == 0 ||
                           strcmp(*argv, "hlim") == 0) {
                        __u8 uval;
+
                        NEXT_ARG();
                        if (get_u8(&uval, *argv, 0))
                                invarg("invalid TTL", *argv);
@@ -171,7 +213,9 @@ static int parse_args(int argc, char **argv, int cmd, struct ip6_tnl_parm *p)
                           strcmp(*argv, "tos") == 0 ||
                           matches(*argv, "dsfield") == 0) {
                        __u8 uval;
+
                        NEXT_ARG();
+                       p->flowinfo &= ~IP6_FLOWINFO_TCLASS;
                        if (strcmp(*argv, "inherit") == 0)
                                p->flags |= IP6_TNL_F_USE_ORIG_TCLASS;
                        else {
@@ -183,7 +227,9 @@ static int parse_args(int argc, char **argv, int cmd, struct ip6_tnl_parm *p)
                } else if (strcmp(*argv, "flowlabel") == 0 ||
                           strcmp(*argv, "fl") == 0) {
                        __u32 uval;
+
                        NEXT_ARG();
+                       p->flowinfo &= ~IP6_FLOWINFO_FLOWLABEL;
                        if (strcmp(*argv, "inherit") == 0)
                                p->flags |= IP6_TNL_F_USE_ORIG_FLOWLABEL;
                        else {
@@ -199,18 +245,49 @@ static int parse_args(int argc, char **argv, int cmd, struct ip6_tnl_parm *p)
                        if (strcmp(*argv, "inherit") != 0)
                                invarg("not inherit", *argv);
                        p->flags |= IP6_TNL_F_RCV_DSCP_COPY;
+               } else if (strcmp(*argv, "allow-localremote") == 0) {
+                       p->flags |= IP6_TNL_F_ALLOW_LOCAL_REMOTE;
+               } else if (strcmp(*argv, "noallow-localremote") == 0) {
+                       p->flags &= ~IP6_TNL_F_ALLOW_LOCAL_REMOTE;
+               } else if (strcmp(*argv, "key") == 0) {
+                       NEXT_ARG();
+                       p->i_flags |= GRE_KEY;
+                       p->o_flags |= GRE_KEY;
+                       p->i_key = p->o_key = tnl_parse_key("key", *argv);
+               } else if (strcmp(*argv, "ikey") == 0) {
+                       NEXT_ARG();
+                       p->i_flags |= GRE_KEY;
+                       p->i_key = tnl_parse_key("ikey", *argv);
+               } else if (strcmp(*argv, "okey") == 0) {
+                       NEXT_ARG();
+                       p->o_flags |= GRE_KEY;
+                       p->o_key = tnl_parse_key("okey", *argv);
+               } else if (strcmp(*argv, "seq") == 0) {
+                       p->i_flags |= GRE_SEQ;
+                       p->o_flags |= GRE_SEQ;
+               } else if (strcmp(*argv, "iseq") == 0) {
+                       p->i_flags |= GRE_SEQ;
+               } else if (strcmp(*argv, "oseq") == 0) {
+                       p->o_flags |= GRE_SEQ;
+               } else if (strcmp(*argv, "csum") == 0) {
+                       p->i_flags |= GRE_CSUM;
+                       p->o_flags |= GRE_CSUM;
+               } else if (strcmp(*argv, "icsum") == 0) {
+                       p->i_flags |= GRE_CSUM;
+               } else if (strcmp(*argv, "ocsum") == 0) {
+                       p->o_flags |= GRE_CSUM;
                } else {
                        if (strcmp(*argv, "name") == 0) {
                                NEXT_ARG();
-                       }
-                       if (matches(*argv, "help") == 0)
+                       } else if (matches(*argv, "help") == 0)
                                usage();
                        if (p->name[0])
                                duparg2("name", *argv);
-                       strncpy(p->name, *argv, IFNAMSIZ - 1);
+                       if (get_ifname(p->name, *argv))
+                               invarg("\"name\" not a valid ifname", *argv);
                        if (cmd == SIOCCHGTUNNEL && count == 0) {
-                               struct ip6_tnl_parm old_p;
-                               memset(&old_p, 0, sizeof(old_p));
+                               struct ip6_tnl_parm2 old_p = {};
+
                                if (tnl_get_ioctl(*argv, &old_p))
                                        return -1;
                                *p = old_p;
@@ -219,15 +296,15 @@ static int parse_args(int argc, char **argv, int cmd, struct ip6_tnl_parm *p)
                count++;
                argc--; argv++;
        }
-       if (medium[0]) {
+       if (medium) {
                p->link = ll_name_to_index(medium);
-               if (p->link == 0)
-                       return -1;
+               if (!p->link)
+                       return nodev(medium);
        }
        return 0;
 }
 
-static void ip6_tnl_parm_init(struct ip6_tnl_parm *p, int apply_default)
+static void ip6_tnl_parm_init(struct ip6_tnl_parm2 *p, int apply_default)
 {
        memset(p, 0, sizeof(*p));
        p->proto = IPPROTO_IPV6;
@@ -237,19 +314,30 @@ static void ip6_tnl_parm_init(struct ip6_tnl_parm *p, int apply_default)
        }
 }
 
-/*
- * @p1: user specified parameter
- * @p2: database entry
- */
-static int ip6_tnl_parm_match(const struct ip6_tnl_parm *p1,
-                             const struct ip6_tnl_parm *p2)
+static void ip6_tnl_parm_initialize(const struct tnl_print_nlmsg_info *info)
 {
+       const struct ifinfomsg *ifi = info->ifi;
+       const struct ip6_tnl_parm2 *p1 = info->p1;
+       struct ip6_tnl_parm2 *p2 = info->p2;
+
+       ip6_tnl_parm_init(p2, 0);
+       if (ifi->ifi_type == ARPHRD_IP6GRE)
+               p2->proto = IPPROTO_GRE;
+       p2->link = ifi->ifi_index;
+       strcpy(p2->name, p1->name);
+}
+
+static bool ip6_tnl_parm_match(const struct tnl_print_nlmsg_info *info)
+{
+       const struct ip6_tnl_parm2 *p1 = info->p1;
+       const struct ip6_tnl_parm2 *p2 = info->p2;
+
        return ((!p1->link || p1->link == p2->link) &&
                (!p1->name[0] || strcmp(p1->name, p2->name) == 0) &&
-               (memcmp(&p1->laddr, &in6addr_any, sizeof(p1->laddr)) == 0 ||
-                memcmp(&p1->laddr, &p2->laddr, sizeof(p1->laddr)) == 0) &&
-               (memcmp(&p1->raddr, &in6addr_any, sizeof(p1->raddr)) == 0 ||
-                memcmp(&p1->raddr, &p2->raddr, sizeof(p1->raddr)) == 0) &&
+               (IN6_IS_ADDR_UNSPECIFIED(&p1->laddr) ||
+                IN6_ARE_ADDR_EQUAL(&p1->laddr, &p2->laddr)) &&
+               (IN6_IS_ADDR_UNSPECIFIED(&p1->raddr) ||
+                IN6_ARE_ADDR_EQUAL(&p1->raddr, &p2->raddr)) &&
                (!p1->proto || !p2->proto || p1->proto == p2->proto) &&
                (!p1->encap_limit || p1->encap_limit == p2->encap_limit) &&
                (!p1->hop_limit || p1->hop_limit == p2->hop_limit) &&
@@ -260,134 +348,72 @@ static int ip6_tnl_parm_match(const struct ip6_tnl_parm *p1,
                (!p1->flags || (p1->flags & p2->flags)));
 }
 
-static int do_tunnels_list(struct ip6_tnl_parm *p)
-{
-       char buf[512];
-       int err = -1;
-       FILE *fp = fopen("/proc/net/dev", "r");
-       if (fp == NULL) {
-               perror("fopen");
-               goto end;
-       }
-
-       /* skip two lines at the begenning of the file */
-       if (!fgets(buf, sizeof(buf), fp) ||
-           !fgets(buf, sizeof(buf), fp)) {
-               fprintf(stderr, "/proc/net/dev read error\n");
-               return -1;
-       }
-
-       while (fgets(buf, sizeof(buf), fp) != NULL) {
-               char name[IFNAMSIZ];
-               int index, type;
-               unsigned long rx_bytes, rx_packets, rx_errs, rx_drops,
-                       rx_fifo, rx_frame,
-                       tx_bytes, tx_packets, tx_errs, tx_drops,
-                       tx_fifo, tx_colls, tx_carrier, rx_multi;
-               struct ip6_tnl_parm p1;
-               char *ptr;
-
-               buf[sizeof(buf) - 1] = '\0';
-               if ((ptr = strchr(buf, ':')) == NULL ||
-                   (*ptr++ = 0, sscanf(buf, "%s", name) != 1)) {
-                       fprintf(stderr, "Wrong format of /proc/net/dev. Sorry.\n");
-                       goto end;
-               }
-               if (sscanf(ptr, "%ld%ld%ld%ld%ld%ld%ld%*d%ld%ld%ld%ld%ld%ld%ld",
-                          &rx_bytes, &rx_packets, &rx_errs, &rx_drops,
-                          &rx_fifo, &rx_frame, &rx_multi,
-                          &tx_bytes, &tx_packets, &tx_errs, &tx_drops,
-                          &tx_fifo, &tx_colls, &tx_carrier) != 14)
-                       continue;
-               if (p->name[0] && strcmp(p->name, name))
-                       continue;
-               index = ll_name_to_index(name);
-               if (index == 0)
-                       continue;
-               type = ll_index_to_type(index);
-               if (type == -1) {
-                       fprintf(stderr, "Failed to get type of [%s]\n", name);
-                       continue;
-               }
-               if (type != ARPHRD_TUNNEL6)
-                       continue;
-               memset(&p1, 0, sizeof(p1));
-               ip6_tnl_parm_init(&p1, 0);
-               strcpy(p1.name, name);
-               p1.link = ll_name_to_index(p1.name);
-               if (p1.link == 0)
-                       continue;
-               if (tnl_get_ioctl(p1.name, &p1))
-                       continue;
-               if (!ip6_tnl_parm_match(p, &p1))
-                       continue;
-               print_tunnel(&p1);
-               if (show_stats) {
-                       printf("%s", _SL_);
-                       printf("RX: Packets    Bytes        Errors CsumErrs OutOfSeq Mcasts%s", _SL_);
-                       printf("    %-10ld %-12ld %-6ld %-8ld %-8ld %-8ld%s",
-                              rx_packets, rx_bytes, rx_errs, rx_frame, rx_fifo, rx_multi, _SL_);
-                       printf("TX: Packets    Bytes        Errors DeadLoop NoRoute  NoBufs%s", _SL_);
-                       printf("    %-10ld %-12ld %-6ld %-8ld %-8ld %-6ld",
-                              tx_packets, tx_bytes, tx_errs, tx_colls, tx_carrier, tx_drops);
-               }
-               printf("\n");
-       }
-       err = 0;
-
- end:
-       if (fp)
-               fclose(fp);
-       return err;
-}
-
 static int do_show(int argc, char **argv)
 {
-        struct ip6_tnl_parm p;
+       struct ip6_tnl_parm2 p, p1;
 
-       ll_init_map(&rth);
        ip6_tnl_parm_init(&p, 0);
        p.proto = 0;  /* default to any */
 
-        if (parse_args(argc, argv, SIOCGETTUNNEL, &p) < 0)
-                return -1;
+       if (parse_args(argc, argv, SIOCGETTUNNEL, &p) < 0)
+               return -1;
+
+       if (!p.name[0] || show_stats) {
+               struct tnl_print_nlmsg_info info = {
+                       .p1    = &p,
+                       .p2    = &p1,
+                       .init  = ip6_tnl_parm_initialize,
+                       .match = ip6_tnl_parm_match,
+                       .print = print_tunnel,
+               };
 
-       if (!p.name[0] || show_stats)
-               do_tunnels_list(&p);
-       else {
-               if (tnl_get_ioctl(p.name, &p))
-                       return -1;
-               print_tunnel(&p);
-               printf("\n");
+               return do_tunnels_list(&info);
        }
 
-        return 0;
+       if (tnl_get_ioctl(p.name, &p))
+               return -1;
+
+       print_tunnel(&p);
+       return 0;
 }
 
 static int do_add(int cmd, int argc, char **argv)
 {
-       struct ip6_tnl_parm p;
+       struct ip6_tnl_parm2 p;
+       const char *basedev = "ip6tnl0";
 
        ip6_tnl_parm_init(&p, 1);
 
        if (parse_args(argc, argv, cmd, &p) < 0)
                return -1;
 
-       return tnl_add_ioctl(cmd,
-                            cmd == SIOCCHGTUNNEL && p.name[0] ?
-                            p.name : "ip6tnl0", p.name, &p);
+       if (!*p.name)
+               fprintf(stderr, "Tunnel interface name not specified\n");
+
+       if (p.proto == IPPROTO_GRE)
+               basedev = "ip6gre0";
+       else if (p.i_flags & VTI_ISVTI)
+               basedev = "ip6_vti0";
+
+       return tnl_add_ioctl(cmd, basedev, p.name, &p);
 }
 
 static int do_del(int argc, char **argv)
 {
-       struct ip6_tnl_parm p;
+       struct ip6_tnl_parm2 p;
+       const char *basedev = "ip6tnl0";
 
        ip6_tnl_parm_init(&p, 1);
 
        if (parse_args(argc, argv, SIOCDELTUNNEL, &p) < 0)
                return -1;
 
-       return tnl_del_ioctl(p.name[0] ? p.name : "ip6tnl0", p.name, &p);
+       if (p.proto == IPPROTO_GRE)
+               basedev = "ip6gre0";
+       else if (p.i_flags & VTI_ISVTI)
+               basedev = "ip6_vti0";
+
+       return tnl_del_ioctl(basedev, p.name, &p);
 }
 
 int do_ip6tunnel(int argc, char **argv)
@@ -399,7 +425,7 @@ int do_ip6tunnel(int argc, char **argv)
        case AF_INET6:
                break;
        default:
-               fprintf(stderr, "Unsupported family:%d\n", preferred_family);
+               fprintf(stderr, "Unsupported protocol family: %d\n", preferred_family);
                exit(-1);
        }