Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * IPv6 over IPv4 tunnel device - Simple Internet Transition (SIT) |
| 4 | * Linux INET6 implementation |
| 5 | * |
| 6 | * Authors: |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 7 | * Pedro Roque <roque@di.fc.ul.pt> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> |
| 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * Changes: |
| 11 | * Roger Venning <r.venning@telstra.com>: 6to4 support |
| 12 | * Nate Thompson <nate@thebog.net>: 6to4 support |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 13 | * Fred Templin <fred.l.templin@boeing.com>: isatap support |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | */ |
| 15 | |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 16 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/module.h> |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 19 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/errno.h> |
| 21 | #include <linux/types.h> |
| 22 | #include <linux/socket.h> |
| 23 | #include <linux/sockios.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/net.h> |
| 25 | #include <linux/in6.h> |
| 26 | #include <linux/netdevice.h> |
| 27 | #include <linux/if_arp.h> |
| 28 | #include <linux/icmp.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 30 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/init.h> |
| 32 | #include <linux/netfilter_ipv4.h> |
Kris Katterjohn | 46f25df | 2006-01-05 16:35:42 -0800 | [diff] [blame] | 33 | #include <linux/if_ether.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | #include <net/sock.h> |
| 36 | #include <net/snmp.h> |
| 37 | |
| 38 | #include <net/ipv6.h> |
| 39 | #include <net/protocol.h> |
| 40 | #include <net/transp_v6.h> |
| 41 | #include <net/ip6_fib.h> |
| 42 | #include <net/ip6_route.h> |
| 43 | #include <net/ndisc.h> |
| 44 | #include <net/addrconf.h> |
| 45 | #include <net/ip.h> |
| 46 | #include <net/udp.h> |
| 47 | #include <net/icmp.h> |
Pravin B Shelar | c544193 | 2013-03-25 14:49:35 +0000 | [diff] [blame] | 48 | #include <net/ip_tunnels.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <net/inet_ecn.h> |
| 50 | #include <net/xfrm.h> |
| 51 | #include <net/dsfield.h> |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 52 | #include <net/net_namespace.h> |
| 53 | #include <net/netns/generic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | This version of net/ipv6/sit.c is cloned of net/ipv4/ip_gre.c |
| 57 | |
| 58 | For comments look at net/ipv4/ip_gre.c --ANK |
| 59 | */ |
| 60 | |
Jiri Kosina | e87a8f2 | 2016-08-10 11:03:35 +0200 | [diff] [blame] | 61 | #define IP6_SIT_HASH_SIZE 16 |
Al Viro | e69a4ad | 2006-11-14 20:56:00 -0800 | [diff] [blame] | 62 | #define HASH(addr) (((__force u32)addr^((__force u32)addr>>4))&0xF) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Nicolas Dichtel | f4e0b4c | 2012-11-27 03:07:11 +0000 | [diff] [blame] | 64 | static bool log_ecn_error = true; |
| 65 | module_param(log_ecn_error, bool, 0644); |
| 66 | MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN"); |
| 67 | |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 68 | static int ipip6_tunnel_init(struct net_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | static void ipip6_tunnel_setup(struct net_device *dev); |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 70 | static void ipip6_dev_free(struct net_device *dev); |
Hannes Frederic Sowa | 218774d | 2013-01-29 08:24:25 +0000 | [diff] [blame] | 71 | static bool check_6rd(struct ip_tunnel *tunnel, const struct in6_addr *v6dst, |
| 72 | __be32 *v4dst); |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 73 | static struct rtnl_link_ops sit_link_ops __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Alexey Dobriyan | c7d03a0 | 2016-11-17 04:58:21 +0300 | [diff] [blame] | 75 | static unsigned int sit_net_id __read_mostly; |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 76 | struct sit_net { |
Jiri Kosina | e87a8f2 | 2016-08-10 11:03:35 +0200 | [diff] [blame] | 77 | struct ip_tunnel __rcu *tunnels_r_l[IP6_SIT_HASH_SIZE]; |
| 78 | struct ip_tunnel __rcu *tunnels_r[IP6_SIT_HASH_SIZE]; |
| 79 | struct ip_tunnel __rcu *tunnels_l[IP6_SIT_HASH_SIZE]; |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 80 | struct ip_tunnel __rcu *tunnels_wc[1]; |
| 81 | struct ip_tunnel __rcu **tunnels[4]; |
Pavel Emelyanov | 2918217 | 2008-04-16 01:16:38 -0700 | [diff] [blame] | 82 | |
Pavel Emelyanov | cd3dbc1 | 2008-04-16 01:16:18 -0700 | [diff] [blame] | 83 | struct net_device *fb_tunnel_dev; |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 84 | }; |
| 85 | |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 86 | static inline struct sit_net *dev_to_sit_net(struct net_device *dev) |
| 87 | { |
| 88 | struct ip_tunnel *t = netdev_priv(dev); |
| 89 | |
| 90 | return net_generic(t->net, sit_net_id); |
| 91 | } |
| 92 | |
Eric Dumazet | 4543c10 | 2009-10-23 17:52:14 +0000 | [diff] [blame] | 93 | /* |
| 94 | * Must be invoked with rcu_read_lock |
| 95 | */ |
Eldad Zack | 3e86670 | 2012-04-01 07:49:01 +0000 | [diff] [blame] | 96 | static struct ip_tunnel *ipip6_tunnel_lookup(struct net *net, |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 97 | struct net_device *dev, |
| 98 | __be32 remote, __be32 local, |
| 99 | int sifindex) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 101 | unsigned int h0 = HASH(remote); |
| 102 | unsigned int h1 = HASH(local); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | struct ip_tunnel *t; |
Pavel Emelyanov | 2918217 | 2008-04-16 01:16:38 -0700 | [diff] [blame] | 104 | struct sit_net *sitn = net_generic(net, sit_net_id); |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 105 | int ifindex = dev ? dev->ifindex : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Amerigo Wang | e086cad | 2012-11-11 21:52:34 +0000 | [diff] [blame] | 107 | for_each_ip_tunnel_rcu(t, sitn->tunnels_r_l[h0 ^ h1]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | if (local == t->parms.iph.saddr && |
Sascha Hlusiak | 4fddbf5 | 2009-05-19 12:56:49 +0000 | [diff] [blame] | 109 | remote == t->parms.iph.daddr && |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 110 | (!dev || !t->parms.link || ifindex == t->parms.link || |
| 111 | sifindex == t->parms.link) && |
Sascha Hlusiak | 4fddbf5 | 2009-05-19 12:56:49 +0000 | [diff] [blame] | 112 | (t->dev->flags & IFF_UP)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | return t; |
| 114 | } |
Amerigo Wang | e086cad | 2012-11-11 21:52:34 +0000 | [diff] [blame] | 115 | for_each_ip_tunnel_rcu(t, sitn->tunnels_r[h0]) { |
Sascha Hlusiak | 4fddbf5 | 2009-05-19 12:56:49 +0000 | [diff] [blame] | 116 | if (remote == t->parms.iph.daddr && |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 117 | (!dev || !t->parms.link || ifindex == t->parms.link || |
| 118 | sifindex == t->parms.link) && |
Sascha Hlusiak | 4fddbf5 | 2009-05-19 12:56:49 +0000 | [diff] [blame] | 119 | (t->dev->flags & IFF_UP)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | return t; |
| 121 | } |
Amerigo Wang | e086cad | 2012-11-11 21:52:34 +0000 | [diff] [blame] | 122 | for_each_ip_tunnel_rcu(t, sitn->tunnels_l[h1]) { |
Sascha Hlusiak | 4fddbf5 | 2009-05-19 12:56:49 +0000 | [diff] [blame] | 123 | if (local == t->parms.iph.saddr && |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 124 | (!dev || !t->parms.link || ifindex == t->parms.link || |
| 125 | sifindex == t->parms.link) && |
Sascha Hlusiak | 4fddbf5 | 2009-05-19 12:56:49 +0000 | [diff] [blame] | 126 | (t->dev->flags & IFF_UP)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | return t; |
| 128 | } |
Eric Dumazet | 4543c10 | 2009-10-23 17:52:14 +0000 | [diff] [blame] | 129 | t = rcu_dereference(sitn->tunnels_wc[0]); |
Ian Morris | 53b24b8 | 2015-03-29 14:00:05 +0100 | [diff] [blame] | 130 | if (t && (t->dev->flags & IFF_UP)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | return t; |
| 132 | return NULL; |
| 133 | } |
| 134 | |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 135 | static struct ip_tunnel __rcu **__ipip6_bucket(struct sit_net *sitn, |
Pavel Emelyanov | ca8def1 | 2008-04-16 01:15:39 -0700 | [diff] [blame] | 136 | struct ip_tunnel_parm *parms) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | { |
YOSHIFUJI Hideaki | 420fe23 | 2007-04-24 20:44:47 +0900 | [diff] [blame] | 138 | __be32 remote = parms->iph.daddr; |
| 139 | __be32 local = parms->iph.saddr; |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 140 | unsigned int h = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | int prio = 0; |
| 142 | |
| 143 | if (remote) { |
| 144 | prio |= 2; |
| 145 | h ^= HASH(remote); |
| 146 | } |
| 147 | if (local) { |
| 148 | prio |= 1; |
| 149 | h ^= HASH(local); |
| 150 | } |
Pavel Emelyanov | 2918217 | 2008-04-16 01:16:38 -0700 | [diff] [blame] | 151 | return &sitn->tunnels[prio][h]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 154 | static inline struct ip_tunnel __rcu **ipip6_bucket(struct sit_net *sitn, |
Pavel Emelyanov | ca8def1 | 2008-04-16 01:15:39 -0700 | [diff] [blame] | 155 | struct ip_tunnel *t) |
YOSHIFUJI Hideaki | 420fe23 | 2007-04-24 20:44:47 +0900 | [diff] [blame] | 156 | { |
Pavel Emelyanov | ca8def1 | 2008-04-16 01:15:39 -0700 | [diff] [blame] | 157 | return __ipip6_bucket(sitn, &t->parms); |
YOSHIFUJI Hideaki | 420fe23 | 2007-04-24 20:44:47 +0900 | [diff] [blame] | 158 | } |
| 159 | |
Pavel Emelyanov | ca8def1 | 2008-04-16 01:15:39 -0700 | [diff] [blame] | 160 | static void ipip6_tunnel_unlink(struct sit_net *sitn, struct ip_tunnel *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | { |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 162 | struct ip_tunnel __rcu **tp; |
| 163 | struct ip_tunnel *iter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 165 | for (tp = ipip6_bucket(sitn, t); |
| 166 | (iter = rtnl_dereference(*tp)) != NULL; |
| 167 | tp = &iter->next) { |
| 168 | if (t == iter) { |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 169 | rcu_assign_pointer(*tp, t->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | break; |
| 171 | } |
| 172 | } |
| 173 | } |
| 174 | |
Pavel Emelyanov | ca8def1 | 2008-04-16 01:15:39 -0700 | [diff] [blame] | 175 | static void ipip6_tunnel_link(struct sit_net *sitn, struct ip_tunnel *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 177 | struct ip_tunnel __rcu **tp = ipip6_bucket(sitn, t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 179 | rcu_assign_pointer(t->next, rtnl_dereference(*tp)); |
| 180 | rcu_assign_pointer(*tp, t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |
| 182 | |
YOSHIFUJI Hideaki / 吉藤英明 | e0c9394 | 2009-10-11 03:31:34 +0000 | [diff] [blame] | 183 | static void ipip6_tunnel_clone_6rd(struct net_device *dev, struct sit_net *sitn) |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 184 | { |
| 185 | #ifdef CONFIG_IPV6_SIT_6RD |
YOSHIFUJI Hideaki / 吉藤英明 | e0c9394 | 2009-10-11 03:31:34 +0000 | [diff] [blame] | 186 | struct ip_tunnel *t = netdev_priv(dev); |
| 187 | |
Eric Dumazet | 79134e6 | 2018-03-08 12:51:41 -0800 | [diff] [blame] | 188 | if (dev == sitn->fb_tunnel_dev || !sitn->fb_tunnel_dev) { |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 189 | ipv6_addr_set(&t->ip6rd.prefix, htonl(0x20020000), 0, 0, 0); |
| 190 | t->ip6rd.relay_prefix = 0; |
| 191 | t->ip6rd.prefixlen = 16; |
| 192 | t->ip6rd.relay_prefixlen = 0; |
| 193 | } else { |
| 194 | struct ip_tunnel *t0 = netdev_priv(sitn->fb_tunnel_dev); |
| 195 | memcpy(&t->ip6rd, &t0->ip6rd, sizeof(t->ip6rd)); |
| 196 | } |
| 197 | #endif |
| 198 | } |
| 199 | |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 200 | static int ipip6_tunnel_create(struct net_device *dev) |
| 201 | { |
| 202 | struct ip_tunnel *t = netdev_priv(dev); |
| 203 | struct net *net = dev_net(dev); |
| 204 | struct sit_net *sitn = net_generic(net, sit_net_id); |
| 205 | int err; |
| 206 | |
Steffen Klassert | ebe084a | 2014-11-03 09:19:29 +0100 | [diff] [blame] | 207 | memcpy(dev->dev_addr, &t->parms.iph.saddr, 4); |
| 208 | memcpy(dev->broadcast, &t->parms.iph.daddr, 4); |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 209 | |
Nicolas Dichtel | d440b72 | 2012-11-15 04:06:41 +0000 | [diff] [blame] | 210 | if ((__force u16)t->parms.i_flags & SIT_ISATAP) |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 211 | dev->priv_flags |= IFF_ISATAP; |
| 212 | |
Thadeu Lima de Souza Cascardo | 87e5739 | 2016-01-25 11:29:19 -0200 | [diff] [blame] | 213 | dev->rtnl_link_ops = &sit_link_ops; |
| 214 | |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 215 | err = register_netdevice(dev); |
| 216 | if (err < 0) |
| 217 | goto out; |
| 218 | |
Steffen Klassert | ebe084a | 2014-11-03 09:19:29 +0100 | [diff] [blame] | 219 | ipip6_tunnel_clone_6rd(dev, sitn); |
| 220 | |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 221 | dev_hold(dev); |
| 222 | |
| 223 | ipip6_tunnel_link(sitn, t); |
| 224 | return 0; |
| 225 | |
| 226 | out: |
| 227 | return err; |
| 228 | } |
| 229 | |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 230 | static struct ip_tunnel *ipip6_tunnel_locate(struct net *net, |
Pavel Emelyanov | ca8def1 | 2008-04-16 01:15:39 -0700 | [diff] [blame] | 231 | struct ip_tunnel_parm *parms, int create) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
Al Viro | e69a4ad | 2006-11-14 20:56:00 -0800 | [diff] [blame] | 233 | __be32 remote = parms->iph.daddr; |
| 234 | __be32 local = parms->iph.saddr; |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 235 | struct ip_tunnel *t, *nt; |
| 236 | struct ip_tunnel __rcu **tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | char name[IFNAMSIZ]; |
Pavel Emelyanov | ca8def1 | 2008-04-16 01:15:39 -0700 | [diff] [blame] | 239 | struct sit_net *sitn = net_generic(net, sit_net_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 241 | for (tp = __ipip6_bucket(sitn, parms); |
| 242 | (t = rtnl_dereference(*tp)) != NULL; |
| 243 | tp = &t->next) { |
Sascha Hlusiak | 8db99e5 | 2009-05-19 12:56:48 +0000 | [diff] [blame] | 244 | if (local == t->parms.iph.saddr && |
Sascha Hlusiak | 4fddbf5 | 2009-05-19 12:56:49 +0000 | [diff] [blame] | 245 | remote == t->parms.iph.daddr && |
| 246 | parms->link == t->parms.link) { |
Sascha Hlusiak | 8db99e5 | 2009-05-19 12:56:48 +0000 | [diff] [blame] | 247 | if (create) |
| 248 | return NULL; |
| 249 | else |
| 250 | return t; |
| 251 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | } |
| 253 | if (!create) |
| 254 | goto failed; |
| 255 | |
Eric Dumazet | b95211e | 2018-04-05 06:39:28 -0700 | [diff] [blame] | 256 | if (parms->name[0]) { |
| 257 | if (!dev_valid_name(parms->name)) |
| 258 | goto failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | strlcpy(name, parms->name, IFNAMSIZ); |
Eric Dumazet | b95211e | 2018-04-05 06:39:28 -0700 | [diff] [blame] | 260 | } else { |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 261 | strcpy(name, "sit%d"); |
Eric Dumazet | b95211e | 2018-04-05 06:39:28 -0700 | [diff] [blame] | 262 | } |
Tom Gundersen | c835a67 | 2014-07-14 16:37:24 +0200 | [diff] [blame] | 263 | dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN, |
| 264 | ipip6_tunnel_setup); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 265 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | return NULL; |
| 267 | |
Pavel Emelyanov | 7a97146 | 2008-04-16 01:17:18 -0700 | [diff] [blame] | 268 | dev_net_set(dev, net); |
| 269 | |
Patrick McHardy | 2941a48 | 2006-01-08 22:05:26 -0800 | [diff] [blame] | 270 | nt = netdev_priv(dev); |
Stephen Hemminger | 1326c3d | 2008-11-20 20:33:56 -0800 | [diff] [blame] | 271 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | nt->parms = *parms; |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 273 | if (ipip6_tunnel_create(dev) < 0) |
Pavel Emelyanov | b37d428b | 2008-02-26 23:51:04 -0800 | [diff] [blame] | 274 | goto failed_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | return nt; |
| 277 | |
Pavel Emelyanov | b37d428b | 2008-02-26 23:51:04 -0800 | [diff] [blame] | 278 | failed_free: |
David S. Miller | cf124db | 2017-05-08 12:52:56 -0400 | [diff] [blame] | 279 | free_netdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | failed: |
| 281 | return NULL; |
| 282 | } |
| 283 | |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 284 | #define for_each_prl_rcu(start) \ |
| 285 | for (prl = rcu_dereference(start); \ |
| 286 | prl; \ |
| 287 | prl = rcu_dereference(prl->next)) |
| 288 | |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 289 | static struct ip_tunnel_prl_entry * |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 290 | __ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr) |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 291 | { |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 292 | struct ip_tunnel_prl_entry *prl; |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 293 | |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 294 | for_each_prl_rcu(t->prl) |
| 295 | if (prl->addr == addr) |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 296 | break; |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 297 | return prl; |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 298 | |
| 299 | } |
| 300 | |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 301 | static int ipip6_tunnel_get_prl(struct net_device *dev, struct ifreq *ifr) |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 302 | { |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 303 | struct ip_tunnel_prl __user *a = ifr->ifr_ifru.ifru_data; |
| 304 | struct ip_tunnel *t = netdev_priv(dev); |
YOSHIFUJI Hideaki | 2b4743b | 2008-06-16 16:48:20 -0700 | [diff] [blame] | 305 | struct ip_tunnel_prl kprl, *kp; |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 306 | struct ip_tunnel_prl_entry *prl; |
| 307 | unsigned int cmax, c = 0, ca, len; |
| 308 | int ret = 0; |
| 309 | |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 310 | if (dev == dev_to_sit_net(dev)->fb_tunnel_dev) |
| 311 | return -EINVAL; |
| 312 | |
YOSHIFUJI Hideaki | 2b4743b | 2008-06-16 16:48:20 -0700 | [diff] [blame] | 313 | if (copy_from_user(&kprl, a, sizeof(kprl))) |
| 314 | return -EFAULT; |
| 315 | cmax = kprl.datalen / sizeof(kprl); |
| 316 | if (cmax > 1 && kprl.addr != htonl(INADDR_ANY)) |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 317 | cmax = 1; |
| 318 | |
| 319 | /* For simple GET or for root users, |
| 320 | * we try harder to allocate. |
| 321 | */ |
| 322 | kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ? |
WANG Cong | 0ccc22f | 2017-06-22 15:29:33 -0700 | [diff] [blame] | 323 | kcalloc(cmax, sizeof(*kp), GFP_KERNEL | __GFP_NOWARN) : |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 324 | NULL; |
| 325 | |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 326 | rcu_read_lock(); |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 327 | |
| 328 | ca = t->prl_count < cmax ? t->prl_count : cmax; |
| 329 | |
| 330 | if (!kp) { |
| 331 | /* We don't try hard to allocate much memory for |
| 332 | * non-root users. |
| 333 | * For root users, retry allocating enough memory for |
| 334 | * the answer. |
| 335 | */ |
| 336 | kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC); |
| 337 | if (!kp) { |
| 338 | ret = -ENOMEM; |
| 339 | goto out; |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | c = 0; |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 344 | for_each_prl_rcu(t->prl) { |
Sascha Hlusiak | 298bf12 | 2009-09-29 11:27:05 +0000 | [diff] [blame] | 345 | if (c >= cmax) |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 346 | break; |
YOSHIFUJI Hideaki | 2b4743b | 2008-06-16 16:48:20 -0700 | [diff] [blame] | 347 | if (kprl.addr != htonl(INADDR_ANY) && prl->addr != kprl.addr) |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 348 | continue; |
| 349 | kp[c].addr = prl->addr; |
| 350 | kp[c].flags = prl->flags; |
| 351 | c++; |
YOSHIFUJI Hideaki | 2b4743b | 2008-06-16 16:48:20 -0700 | [diff] [blame] | 352 | if (kprl.addr != htonl(INADDR_ANY)) |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 353 | break; |
| 354 | } |
| 355 | out: |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 356 | rcu_read_unlock(); |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 357 | |
| 358 | len = sizeof(*kp) * c; |
YOSHIFUJI Hideaki | 2b4743b | 2008-06-16 16:48:20 -0700 | [diff] [blame] | 359 | ret = 0; |
| 360 | if ((len && copy_to_user(a + 1, kp, len)) || put_user(len, &a->datalen)) |
| 361 | ret = -EFAULT; |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 362 | |
| 363 | kfree(kp); |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 364 | |
YOSHIFUJI Hideaki | 2b4743b | 2008-06-16 16:48:20 -0700 | [diff] [blame] | 365 | return ret; |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 366 | } |
| 367 | |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 368 | static int |
| 369 | ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg) |
| 370 | { |
| 371 | struct ip_tunnel_prl_entry *p; |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 372 | int err = 0; |
| 373 | |
YOSHIFUJI Hideaki | 0009ae1 | 2008-03-22 17:50:59 +0900 | [diff] [blame] | 374 | if (a->addr == htonl(INADDR_ANY)) |
| 375 | return -EINVAL; |
| 376 | |
Eric Dumazet | aac4ddd | 2010-06-01 00:26:58 -0700 | [diff] [blame] | 377 | ASSERT_RTNL(); |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 378 | |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 379 | for (p = rtnl_dereference(t->prl); p; p = rtnl_dereference(p->next)) { |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 380 | if (p->addr == a->addr) { |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 381 | if (chg) { |
| 382 | p->flags = a->flags; |
| 383 | goto out; |
| 384 | } |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 385 | err = -EEXIST; |
| 386 | goto out; |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 387 | } |
| 388 | } |
| 389 | |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 390 | if (chg) { |
| 391 | err = -ENXIO; |
| 392 | goto out; |
| 393 | } |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 394 | |
| 395 | p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL); |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 396 | if (!p) { |
| 397 | err = -ENOBUFS; |
| 398 | goto out; |
| 399 | } |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 400 | |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 401 | p->next = t->prl; |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 402 | p->addr = a->addr; |
| 403 | p->flags = a->flags; |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 404 | t->prl_count++; |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 405 | rcu_assign_pointer(t->prl, p); |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 406 | out: |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 407 | return err; |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 408 | } |
| 409 | |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 410 | static void prl_list_destroy_rcu(struct rcu_head *head) |
| 411 | { |
| 412 | struct ip_tunnel_prl_entry *p, *n; |
| 413 | |
| 414 | p = container_of(head, struct ip_tunnel_prl_entry, rcu_head); |
| 415 | do { |
Eric Dumazet | 753ea8e | 2011-01-20 07:16:24 +0000 | [diff] [blame] | 416 | n = rcu_dereference_protected(p->next, 1); |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 417 | kfree(p); |
| 418 | p = n; |
| 419 | } while (p); |
| 420 | } |
| 421 | |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 422 | static int |
| 423 | ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a) |
| 424 | { |
Eric Dumazet | 753ea8e | 2011-01-20 07:16:24 +0000 | [diff] [blame] | 425 | struct ip_tunnel_prl_entry *x; |
| 426 | struct ip_tunnel_prl_entry __rcu **p; |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 427 | int err = 0; |
| 428 | |
Eric Dumazet | aac4ddd | 2010-06-01 00:26:58 -0700 | [diff] [blame] | 429 | ASSERT_RTNL(); |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 430 | |
YOSHIFUJI Hideaki | 0009ae1 | 2008-03-22 17:50:59 +0900 | [diff] [blame] | 431 | if (a && a->addr != htonl(INADDR_ANY)) { |
Eric Dumazet | 753ea8e | 2011-01-20 07:16:24 +0000 | [diff] [blame] | 432 | for (p = &t->prl; |
| 433 | (x = rtnl_dereference(*p)) != NULL; |
| 434 | p = &x->next) { |
| 435 | if (x->addr == a->addr) { |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 436 | *p = x->next; |
Paul E. McKenney | 11c476f3 | 2011-05-02 00:56:57 -0700 | [diff] [blame] | 437 | kfree_rcu(x, rcu_head); |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 438 | t->prl_count--; |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 439 | goto out; |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 440 | } |
| 441 | } |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 442 | err = -ENXIO; |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 443 | } else { |
Eric Dumazet | 753ea8e | 2011-01-20 07:16:24 +0000 | [diff] [blame] | 444 | x = rtnl_dereference(t->prl); |
| 445 | if (x) { |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 446 | t->prl_count = 0; |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 447 | call_rcu(&x->rcu_head, prl_list_destroy_rcu); |
| 448 | t->prl = NULL; |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 449 | } |
| 450 | } |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 451 | out: |
Sascha Hlusiak | 4b2796017 | 2009-05-19 12:56:50 +0000 | [diff] [blame] | 452 | return err; |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 453 | } |
| 454 | |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 455 | static int ipip6_tunnel_prl_ctl(struct net_device *dev, struct ifreq *ifr, |
| 456 | int cmd) |
| 457 | { |
| 458 | struct ip_tunnel *t = netdev_priv(dev); |
| 459 | struct ip_tunnel_prl prl; |
| 460 | int err; |
| 461 | |
| 462 | if (!ns_capable(t->net->user_ns, CAP_NET_ADMIN)) |
| 463 | return -EPERM; |
| 464 | if (dev == dev_to_sit_net(dev)->fb_tunnel_dev) |
| 465 | return -EINVAL; |
| 466 | |
| 467 | if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl))) |
| 468 | return -EFAULT; |
| 469 | |
| 470 | switch (cmd) { |
| 471 | case SIOCDELPRL: |
| 472 | err = ipip6_tunnel_del_prl(t, &prl); |
| 473 | break; |
| 474 | case SIOCADDPRL: |
| 475 | case SIOCCHGPRL: |
| 476 | err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL); |
| 477 | break; |
| 478 | } |
| 479 | dst_cache_reset(&t->dst_cache); |
| 480 | netdev_state_change(dev); |
| 481 | return err; |
| 482 | } |
| 483 | |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 484 | static int |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 485 | isatap_chksrc(struct sk_buff *skb, const struct iphdr *iph, struct ip_tunnel *t) |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 486 | { |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 487 | struct ip_tunnel_prl_entry *p; |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 488 | int ok = 1; |
| 489 | |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 490 | rcu_read_lock(); |
YOSHIFUJI Hideaki | 3fcfa12 | 2008-03-22 17:42:57 +0900 | [diff] [blame] | 491 | p = __ipip6_tunnel_locate_prl(t, iph->saddr); |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 492 | if (p) { |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 493 | if (p->flags & PRL_DEFAULT) |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 494 | skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT; |
| 495 | else |
| 496 | skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT; |
| 497 | } else { |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 498 | const struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr; |
| 499 | |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 500 | if (ipv6_addr_is_isatap(addr6) && |
| 501 | (addr6->s6_addr32[3] == iph->saddr) && |
YOSHIFUJI Hideaki | 52eeeb8 | 2008-03-15 22:54:23 -0400 | [diff] [blame] | 502 | ipv6_chk_prefix(addr6, t->dev)) |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 503 | skb->ndisc_nodetype = NDISC_NODETYPE_HOST; |
| 504 | else |
| 505 | ok = 0; |
| 506 | } |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 507 | rcu_read_unlock(); |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 508 | return ok; |
| 509 | } |
| 510 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | static void ipip6_tunnel_uninit(struct net_device *dev) |
| 512 | { |
Nicolas Dichtel | 5e6700b | 2013-06-26 16:11:28 +0200 | [diff] [blame] | 513 | struct ip_tunnel *tunnel = netdev_priv(dev); |
| 514 | struct sit_net *sitn = net_generic(tunnel->net, sit_net_id); |
Pavel Emelyanov | ca8def1 | 2008-04-16 01:15:39 -0700 | [diff] [blame] | 515 | |
Pavel Emelyanov | cd3dbc1 | 2008-04-16 01:16:18 -0700 | [diff] [blame] | 516 | if (dev == sitn->fb_tunnel_dev) { |
Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 517 | RCU_INIT_POINTER(sitn->tunnels_wc[0], NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | } else { |
Nicolas Dichtel | 5e6700b | 2013-06-26 16:11:28 +0200 | [diff] [blame] | 519 | ipip6_tunnel_unlink(sitn, tunnel); |
| 520 | ipip6_tunnel_del_prl(tunnel, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | } |
Paolo Abeni | e09acdd | 2016-02-12 15:43:55 +0100 | [diff] [blame] | 522 | dst_cache_reset(&tunnel->dst_cache); |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 523 | dev_put(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
| 525 | |
Kazunori MIYAZAWA | c73cb5a | 2007-02-13 12:55:25 -0800 | [diff] [blame] | 526 | static int ipip6_err(struct sk_buff *skb, u32 info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | { |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 528 | const struct iphdr *iph = (const struct iphdr *)skb->data; |
Arnaldo Carvalho de Melo | 88c7664 | 2007-03-13 14:43:18 -0300 | [diff] [blame] | 529 | const int type = icmp_hdr(skb)->type; |
| 530 | const int code = icmp_hdr(skb)->code; |
Eric Dumazet | 20e1954 | 2016-06-18 21:52:06 -0700 | [diff] [blame] | 531 | unsigned int data_len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | struct ip_tunnel *t; |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 533 | int sifindex; |
Kazunori MIYAZAWA | c73cb5a | 2007-02-13 12:55:25 -0800 | [diff] [blame] | 534 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | |
| 536 | switch (type) { |
| 537 | default: |
| 538 | case ICMP_PARAMETERPROB: |
Kazunori MIYAZAWA | c73cb5a | 2007-02-13 12:55:25 -0800 | [diff] [blame] | 539 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
| 541 | case ICMP_DEST_UNREACH: |
| 542 | switch (code) { |
| 543 | case ICMP_SR_FAILED: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | /* Impossible event. */ |
Kazunori MIYAZAWA | c73cb5a | 2007-02-13 12:55:25 -0800 | [diff] [blame] | 545 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | default: |
| 547 | /* All others are translated to HOST_UNREACH. |
| 548 | rfc2003 contains "deep thoughts" about NET_UNREACH, |
| 549 | I believe they are just ether pollution. --ANK |
| 550 | */ |
| 551 | break; |
| 552 | } |
| 553 | break; |
| 554 | case ICMP_TIME_EXCEEDED: |
| 555 | if (code != ICMP_EXC_TTL) |
Kazunori MIYAZAWA | c73cb5a | 2007-02-13 12:55:25 -0800 | [diff] [blame] | 556 | return 0; |
Eric Dumazet | 20e1954 | 2016-06-18 21:52:06 -0700 | [diff] [blame] | 557 | data_len = icmp_hdr(skb)->un.reserved[1] * 4; /* RFC 4884 4.1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | break; |
David S. Miller | ec18d9a | 2012-07-12 00:25:15 -0700 | [diff] [blame] | 559 | case ICMP_REDIRECT: |
| 560 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | } |
| 562 | |
Kazunori MIYAZAWA | c73cb5a | 2007-02-13 12:55:25 -0800 | [diff] [blame] | 563 | err = -ENOENT; |
| 564 | |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 565 | sifindex = netif_is_l3_master(skb->dev) ? IPCB(skb)->iif : 0; |
| 566 | t = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev, |
| 567 | iph->daddr, iph->saddr, sifindex); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 568 | if (!t) |
David S. Miller | 3639339 | 2012-06-14 22:21:46 -0700 | [diff] [blame] | 569 | goto out; |
| 570 | |
| 571 | if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED) { |
| 572 | ipv4_update_pmtu(skb, dev_net(skb->dev), info, |
Maciej Żenczykowski | d888f39 | 2018-09-25 20:56:26 -0700 | [diff] [blame] | 573 | t->parms.link, iph->protocol); |
David S. Miller | 3639339 | 2012-06-14 22:21:46 -0700 | [diff] [blame] | 574 | err = 0; |
| 575 | goto out; |
| 576 | } |
David S. Miller | ec18d9a | 2012-07-12 00:25:15 -0700 | [diff] [blame] | 577 | if (type == ICMP_REDIRECT) { |
Maciej Żenczykowski | 1042caa | 2018-09-25 20:56:27 -0700 | [diff] [blame] | 578 | ipv4_redirect(skb, dev_net(skb->dev), t->parms.link, |
| 579 | iph->protocol); |
David S. Miller | ec18d9a | 2012-07-12 00:25:15 -0700 | [diff] [blame] | 580 | err = 0; |
| 581 | goto out; |
| 582 | } |
David S. Miller | 3639339 | 2012-06-14 22:21:46 -0700 | [diff] [blame] | 583 | |
Eric Dumazet | 2d7a3b2 | 2016-06-18 21:52:04 -0700 | [diff] [blame] | 584 | err = 0; |
Hangbin Liu | 173656a | 2019-02-07 18:36:11 +0800 | [diff] [blame] | 585 | if (__in6_dev_get(skb->dev) && |
| 586 | !ip6_err_gen_icmpv6_unreach(skb, iph->ihl * 4, type, data_len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | goto out; |
Kazunori MIYAZAWA | c73cb5a | 2007-02-13 12:55:25 -0800 | [diff] [blame] | 588 | |
Eric Dumazet | 2d7a3b2 | 2016-06-18 21:52:04 -0700 | [diff] [blame] | 589 | if (t->parms.iph.daddr == 0) |
Oussama Ghorbel | ca15a07 | 2013-11-22 16:23:20 +0100 | [diff] [blame] | 590 | goto out; |
| 591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED) |
| 593 | goto out; |
| 594 | |
Wei Yongjun | bb80087 | 2009-02-24 23:37:19 -0800 | [diff] [blame] | 595 | if (time_before(jiffies, t->err_time + IPTUNNEL_ERR_TIMEO)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | t->err_count++; |
| 597 | else |
| 598 | t->err_count = 1; |
| 599 | t->err_time = jiffies; |
| 600 | out: |
Kazunori MIYAZAWA | c73cb5a | 2007-02-13 12:55:25 -0800 | [diff] [blame] | 601 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | } |
| 603 | |
Hannes Frederic Sowa | 218774d | 2013-01-29 08:24:25 +0000 | [diff] [blame] | 604 | static inline bool is_spoofed_6rd(struct ip_tunnel *tunnel, const __be32 v4addr, |
| 605 | const struct in6_addr *v6addr) |
| 606 | { |
| 607 | __be32 v4embed = 0; |
| 608 | if (check_6rd(tunnel, v6addr, &v4embed) && v4addr != v4embed) |
| 609 | return true; |
| 610 | return false; |
| 611 | } |
| 612 | |
Catalin\(ux\) M. BOIE | 7df37ff | 2013-09-23 23:04:19 +0300 | [diff] [blame] | 613 | /* Checks if an address matches an address on the tunnel interface. |
| 614 | * Used to detect the NAT of proto 41 packets and let them pass spoofing test. |
| 615 | * Long story: |
| 616 | * This function is called after we considered the packet as spoofed |
| 617 | * in is_spoofed_6rd. |
| 618 | * We may have a router that is doing NAT for proto 41 packets |
| 619 | * for an internal station. Destination a.a.a.a/PREFIX:bbbb:bbbb |
| 620 | * will be translated to n.n.n.n/PREFIX:bbbb:bbbb. And is_spoofed_6rd |
| 621 | * function will return true, dropping the packet. |
| 622 | * But, we can still check if is spoofed against the IP |
| 623 | * addresses associated with the interface. |
| 624 | */ |
| 625 | static bool only_dnatted(const struct ip_tunnel *tunnel, |
| 626 | const struct in6_addr *v6dst) |
| 627 | { |
| 628 | int prefix_len; |
| 629 | |
| 630 | #ifdef CONFIG_IPV6_SIT_6RD |
| 631 | prefix_len = tunnel->ip6rd.prefixlen + 32 |
| 632 | - tunnel->ip6rd.relay_prefixlen; |
| 633 | #else |
| 634 | prefix_len = 48; |
| 635 | #endif |
| 636 | return ipv6_chk_custom_prefix(v6dst, prefix_len, tunnel->dev); |
| 637 | } |
| 638 | |
| 639 | /* Returns true if a packet is spoofed */ |
| 640 | static bool packet_is_spoofed(struct sk_buff *skb, |
| 641 | const struct iphdr *iph, |
| 642 | struct ip_tunnel *tunnel) |
| 643 | { |
| 644 | const struct ipv6hdr *ipv6h; |
| 645 | |
| 646 | if (tunnel->dev->priv_flags & IFF_ISATAP) { |
| 647 | if (!isatap_chksrc(skb, iph, tunnel)) |
| 648 | return true; |
| 649 | |
| 650 | return false; |
| 651 | } |
| 652 | |
| 653 | if (tunnel->dev->flags & IFF_POINTOPOINT) |
| 654 | return false; |
| 655 | |
| 656 | ipv6h = ipv6_hdr(skb); |
| 657 | |
| 658 | if (unlikely(is_spoofed_6rd(tunnel, iph->saddr, &ipv6h->saddr))) { |
| 659 | net_warn_ratelimited("Src spoofed %pI4/%pI6c -> %pI4/%pI6c\n", |
| 660 | &iph->saddr, &ipv6h->saddr, |
| 661 | &iph->daddr, &ipv6h->daddr); |
| 662 | return true; |
| 663 | } |
| 664 | |
| 665 | if (likely(!is_spoofed_6rd(tunnel, iph->daddr, &ipv6h->daddr))) |
| 666 | return false; |
| 667 | |
| 668 | if (only_dnatted(tunnel, &ipv6h->daddr)) |
| 669 | return false; |
| 670 | |
| 671 | net_warn_ratelimited("Dst spoofed %pI4/%pI6c -> %pI4/%pI6c\n", |
| 672 | &iph->saddr, &ipv6h->saddr, |
| 673 | &iph->daddr, &ipv6h->daddr); |
| 674 | return true; |
| 675 | } |
| 676 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | static int ipip6_rcv(struct sk_buff *skb) |
| 678 | { |
Hannes Frederic Sowa | 1ad759d | 2013-01-18 09:18:17 +0000 | [diff] [blame] | 679 | const struct iphdr *iph = ip_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | struct ip_tunnel *tunnel; |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 681 | int sifindex; |
Nicolas Dichtel | f4e0b4c | 2012-11-27 03:07:11 +0000 | [diff] [blame] | 682 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 684 | sifindex = netif_is_l3_master(skb->dev) ? IPCB(skb)->iif : 0; |
Sascha Hlusiak | 4fddbf5 | 2009-05-19 12:56:49 +0000 | [diff] [blame] | 685 | tunnel = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev, |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 686 | iph->saddr, iph->daddr, sifindex); |
Ian Morris | 53b24b8 | 2015-03-29 14:00:05 +0100 | [diff] [blame] | 687 | if (tunnel) { |
Li RongQing | 8f84985 | 2014-01-04 13:57:59 +0800 | [diff] [blame] | 688 | struct pcpu_sw_netstats *tstats; |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 689 | |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 690 | if (tunnel->parms.iph.protocol != IPPROTO_IPV6 && |
| 691 | tunnel->parms.iph.protocol != 0) |
| 692 | goto out; |
| 693 | |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 694 | skb->mac_header = skb->network_header; |
Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 695 | skb_reset_network_header(skb); |
Patrick McHardy | 8cdfab8 | 2006-01-06 23:04:01 -0800 | [diff] [blame] | 696 | IPCB(skb)->flags = 0; |
Jesse Gross | a09a4c8 | 2016-03-19 09:32:02 -0700 | [diff] [blame] | 697 | skb->dev = tunnel->dev; |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 698 | |
Catalin\(ux\) M. BOIE | 7df37ff | 2013-09-23 23:04:19 +0300 | [diff] [blame] | 699 | if (packet_is_spoofed(skb, iph, tunnel)) { |
| 700 | tunnel->dev->stats.rx_errors++; |
| 701 | goto out; |
Nicolas Dichtel | f4e0b4c | 2012-11-27 03:07:11 +0000 | [diff] [blame] | 702 | } |
| 703 | |
Jesse Gross | a09a4c8 | 2016-03-19 09:32:02 -0700 | [diff] [blame] | 704 | if (iptunnel_pull_header(skb, 0, htons(ETH_P_IPV6), |
| 705 | !net_eq(tunnel->net, dev_net(tunnel->dev)))) |
| 706 | goto out; |
Nicolas Dichtel | f4e0b4c | 2012-11-27 03:07:11 +0000 | [diff] [blame] | 707 | |
Lorenzo Bianconi | bb9bd81 | 2019-04-04 16:37:53 +0200 | [diff] [blame] | 708 | /* skb can be uncloned in iptunnel_pull_header, so |
| 709 | * old iph is no longer valid |
| 710 | */ |
| 711 | iph = (const struct iphdr *)skb_mac_header(skb); |
Nicolas Dichtel | f4e0b4c | 2012-11-27 03:07:11 +0000 | [diff] [blame] | 712 | err = IP_ECN_decapsulate(iph, skb); |
| 713 | if (unlikely(err)) { |
| 714 | if (log_ecn_error) |
| 715 | net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n", |
| 716 | &iph->saddr, iph->tos); |
| 717 | if (err > 1) { |
| 718 | ++tunnel->dev->stats.rx_frame_errors; |
| 719 | ++tunnel->dev->stats.rx_errors; |
| 720 | goto out; |
| 721 | } |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 722 | } |
Eric Dumazet | d19d56d | 2010-05-17 22:36:55 -0700 | [diff] [blame] | 723 | |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 724 | tstats = this_cpu_ptr(tunnel->dev->tstats); |
Li RongQing | c3ac17c | 2014-01-02 08:49:36 +0800 | [diff] [blame] | 725 | u64_stats_update_begin(&tstats->syncp); |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 726 | tstats->rx_packets++; |
| 727 | tstats->rx_bytes += skb->len; |
Li RongQing | c3ac17c | 2014-01-02 08:49:36 +0800 | [diff] [blame] | 728 | u64_stats_update_end(&tstats->syncp); |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 729 | |
Eric Dumazet | caf586e | 2010-09-30 21:06:55 +0000 | [diff] [blame] | 730 | netif_rx(skb); |
Eric Dumazet | 8990f46 | 2010-09-20 00:12:11 +0000 | [diff] [blame] | 731 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | return 0; |
| 733 | } |
| 734 | |
David McCullough | 6dcdd1b | 2010-11-29 19:32:34 +0000 | [diff] [blame] | 735 | /* no tunnel matched, let upstream know, ipsec may handle it */ |
David McCullough | 6dcdd1b | 2010-11-29 19:32:34 +0000 | [diff] [blame] | 736 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | out: |
David S. Miller | 36ca34c | 2008-05-08 23:40:26 -0700 | [diff] [blame] | 738 | kfree_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | return 0; |
| 740 | } |
| 741 | |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 742 | static const struct tnl_ptk_info ipip_tpi = { |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 743 | /* no tunnel info required for ipip. */ |
| 744 | .proto = htons(ETH_P_IP), |
| 745 | }; |
| 746 | |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 747 | #if IS_ENABLED(CONFIG_MPLS) |
| 748 | static const struct tnl_ptk_info mplsip_tpi = { |
| 749 | /* no tunnel info required for mplsip. */ |
| 750 | .proto = htons(ETH_P_MPLS_UC), |
| 751 | }; |
| 752 | #endif |
| 753 | |
| 754 | static int sit_tunnel_rcv(struct sk_buff *skb, u8 ipproto) |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 755 | { |
Pravin B Shelar | 3d7b46c | 2013-06-17 17:50:02 -0700 | [diff] [blame] | 756 | const struct iphdr *iph; |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 757 | struct ip_tunnel *tunnel; |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 758 | int sifindex; |
| 759 | |
| 760 | sifindex = netif_is_l3_master(skb->dev) ? IPCB(skb)->iif : 0; |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 761 | |
Pravin B Shelar | 3d7b46c | 2013-06-17 17:50:02 -0700 | [diff] [blame] | 762 | iph = ip_hdr(skb); |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 763 | tunnel = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev, |
David Ahern | 3051fbe | 2017-10-30 10:07:17 -0700 | [diff] [blame] | 764 | iph->saddr, iph->daddr, sifindex); |
Ian Morris | 53b24b8 | 2015-03-29 14:00:05 +0100 | [diff] [blame] | 765 | if (tunnel) { |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 766 | const struct tnl_ptk_info *tpi; |
| 767 | |
| 768 | if (tunnel->parms.iph.protocol != ipproto && |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 769 | tunnel->parms.iph.protocol != 0) |
| 770 | goto drop; |
| 771 | |
| 772 | if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) |
| 773 | goto drop; |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 774 | #if IS_ENABLED(CONFIG_MPLS) |
| 775 | if (ipproto == IPPROTO_MPLS) |
| 776 | tpi = &mplsip_tpi; |
| 777 | else |
| 778 | #endif |
| 779 | tpi = &ipip_tpi; |
| 780 | if (iptunnel_pull_header(skb, 0, tpi->proto, false)) |
Li Hongjun | 737e828 | 2013-08-28 11:54:50 +0200 | [diff] [blame] | 781 | goto drop; |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 782 | return ip_tunnel_rcv(tunnel, skb, tpi, NULL, log_ecn_error); |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 783 | } |
| 784 | |
| 785 | return 1; |
| 786 | |
| 787 | drop: |
| 788 | kfree_skb(skb); |
| 789 | return 0; |
| 790 | } |
| 791 | |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 792 | static int ipip_rcv(struct sk_buff *skb) |
| 793 | { |
| 794 | return sit_tunnel_rcv(skb, IPPROTO_IPIP); |
| 795 | } |
| 796 | |
| 797 | #if IS_ENABLED(CONFIG_MPLS) |
| 798 | static int mplsip_rcv(struct sk_buff *skb) |
| 799 | { |
| 800 | return sit_tunnel_rcv(skb, IPPROTO_MPLS); |
| 801 | } |
| 802 | #endif |
| 803 | |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 804 | /* |
Hannes Frederic Sowa | 218774d | 2013-01-29 08:24:25 +0000 | [diff] [blame] | 805 | * If the IPv6 address comes from 6rd / 6to4 (RFC 3056) addr space this function |
| 806 | * stores the embedded IPv4 address in v4dst and returns true. |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 807 | */ |
Hannes Frederic Sowa | 218774d | 2013-01-29 08:24:25 +0000 | [diff] [blame] | 808 | static bool check_6rd(struct ip_tunnel *tunnel, const struct in6_addr *v6dst, |
| 809 | __be32 *v4dst) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | { |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 811 | #ifdef CONFIG_IPV6_SIT_6RD |
| 812 | if (ipv6_prefix_equal(v6dst, &tunnel->ip6rd.prefix, |
| 813 | tunnel->ip6rd.prefixlen)) { |
Eric Dumazet | 3a43be3 | 2010-09-15 11:35:10 +0000 | [diff] [blame] | 814 | unsigned int pbw0, pbi0; |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 815 | int pbi1; |
| 816 | u32 d; |
| 817 | |
| 818 | pbw0 = tunnel->ip6rd.prefixlen >> 5; |
| 819 | pbi0 = tunnel->ip6rd.prefixlen & 0x1f; |
| 820 | |
Miaohe Lin | a843dc4 | 2019-03-11 16:29:32 +0800 | [diff] [blame] | 821 | d = tunnel->ip6rd.relay_prefixlen < 32 ? |
| 822 | (ntohl(v6dst->s6_addr32[pbw0]) << pbi0) >> |
| 823 | tunnel->ip6rd.relay_prefixlen : 0; |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 824 | |
| 825 | pbi1 = pbi0 - tunnel->ip6rd.relay_prefixlen; |
| 826 | if (pbi1 > 0) |
YOSHIFUJI Hideaki / 吉藤英明 | e7db38c | 2009-10-11 03:44:45 +0000 | [diff] [blame] | 827 | d |= ntohl(v6dst->s6_addr32[pbw0 + 1]) >> |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 828 | (32 - pbi1); |
| 829 | |
Hannes Frederic Sowa | 218774d | 2013-01-29 08:24:25 +0000 | [diff] [blame] | 830 | *v4dst = tunnel->ip6rd.relay_prefix | htonl(d); |
| 831 | return true; |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 832 | } |
| 833 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | if (v6dst->s6_addr16[0] == htons(0x2002)) { |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 835 | /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */ |
Hannes Frederic Sowa | 218774d | 2013-01-29 08:24:25 +0000 | [diff] [blame] | 836 | memcpy(v4dst, &v6dst->s6_addr16[1], 4); |
| 837 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | } |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 839 | #endif |
Hannes Frederic Sowa | 218774d | 2013-01-29 08:24:25 +0000 | [diff] [blame] | 840 | return false; |
| 841 | } |
| 842 | |
| 843 | static inline __be32 try_6rd(struct ip_tunnel *tunnel, |
| 844 | const struct in6_addr *v6dst) |
| 845 | { |
| 846 | __be32 dst = 0; |
| 847 | check_6rd(tunnel, v6dst, &dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | return dst; |
| 849 | } |
| 850 | |
| 851 | /* |
| 852 | * This function assumes it is being called from dev_queue_xmit() |
| 853 | * and that skb is filled properly by that function. |
| 854 | */ |
| 855 | |
Stephen Hemminger | 6fef4c0 | 2009-08-31 19:50:41 +0000 | [diff] [blame] | 856 | static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb, |
| 857 | struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | { |
Patrick McHardy | 2941a48 | 2006-01-08 22:05:26 -0800 | [diff] [blame] | 859 | struct ip_tunnel *tunnel = netdev_priv(dev); |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 860 | const struct iphdr *tiph = &tunnel->parms.iph; |
| 861 | const struct ipv6hdr *iph6 = ipv6_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | u8 tos = tunnel->parms.iph.tos; |
Herbert Xu | 292f4f3 | 2009-11-09 08:42:01 +0000 | [diff] [blame] | 863 | __be16 df = tiph->frag_off; |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 864 | struct rtable *rt; /* Route to the other host */ |
| 865 | struct net_device *tdev; /* Device to other host */ |
| 866 | unsigned int max_headroom; /* The extra header space needed */ |
Al Viro | e69a4ad | 2006-11-14 20:56:00 -0800 | [diff] [blame] | 867 | __be32 dst = tiph->daddr; |
David S. Miller | 31e4543d | 2011-05-03 20:25:42 -0700 | [diff] [blame] | 868 | struct flowi4 fl4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | int mtu; |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 870 | const struct in6_addr *addr6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | int addr_type; |
Pravin B Shelar | 0e6fbc5 | 2013-06-17 17:49:56 -0700 | [diff] [blame] | 872 | u8 ttl; |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 873 | u8 protocol = IPPROTO_IPV6; |
| 874 | int t_hlen = tunnel->hlen + sizeof(struct iphdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
Lionel Elie Mamane | c2bceb3 | 2011-08-13 14:04:38 +0000 | [diff] [blame] | 876 | if (tos == 1) |
| 877 | tos = ipv6_get_dsfield(iph6); |
| 878 | |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 879 | /* ISATAP (RFC4214) - must come before 6to4 */ |
| 880 | if (dev->priv_flags & IFF_ISATAP) { |
| 881 | struct neighbour *neigh = NULL; |
David S. Miller | 1e2927b | 2012-01-26 15:23:21 -0500 | [diff] [blame] | 882 | bool do_tx_error = false; |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 883 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 884 | if (skb_dst(skb)) |
David S. Miller | 1e2927b | 2012-01-26 15:23:21 -0500 | [diff] [blame] | 885 | neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr); |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 886 | |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 887 | if (!neigh) { |
Catalin\(ux\) M. BOIE | 7df37ff | 2013-09-23 23:04:19 +0300 | [diff] [blame] | 888 | net_dbg_ratelimited("nexthop == NULL\n"); |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 889 | goto tx_error; |
| 890 | } |
| 891 | |
Eldad Zack | 3e86670 | 2012-04-01 07:49:01 +0000 | [diff] [blame] | 892 | addr6 = (const struct in6_addr *)&neigh->primary_key; |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 893 | addr_type = ipv6_addr_type(addr6); |
| 894 | |
| 895 | if ((addr_type & IPV6_ADDR_UNICAST) && |
| 896 | ipv6_addr_is_isatap(addr6)) |
| 897 | dst = addr6->s6_addr32[3]; |
| 898 | else |
David S. Miller | 1e2927b | 2012-01-26 15:23:21 -0500 | [diff] [blame] | 899 | do_tx_error = true; |
| 900 | |
| 901 | neigh_release(neigh); |
| 902 | if (do_tx_error) |
Fred L. Templin | c7dc89c | 2007-11-29 22:11:40 +1100 | [diff] [blame] | 903 | goto tx_error; |
| 904 | } |
| 905 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | if (!dst) |
Hannes Frederic Sowa | 218774d | 2013-01-29 08:24:25 +0000 | [diff] [blame] | 907 | dst = try_6rd(tunnel, &iph6->daddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | |
| 909 | if (!dst) { |
| 910 | struct neighbour *neigh = NULL; |
David S. Miller | 1e2927b | 2012-01-26 15:23:21 -0500 | [diff] [blame] | 911 | bool do_tx_error = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 913 | if (skb_dst(skb)) |
David S. Miller | 1e2927b | 2012-01-26 15:23:21 -0500 | [diff] [blame] | 914 | neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 916 | if (!neigh) { |
Catalin\(ux\) M. BOIE | 7df37ff | 2013-09-23 23:04:19 +0300 | [diff] [blame] | 917 | net_dbg_ratelimited("nexthop == NULL\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | goto tx_error; |
| 919 | } |
| 920 | |
Eldad Zack | 3e86670 | 2012-04-01 07:49:01 +0000 | [diff] [blame] | 921 | addr6 = (const struct in6_addr *)&neigh->primary_key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | addr_type = ipv6_addr_type(addr6); |
| 923 | |
| 924 | if (addr_type == IPV6_ADDR_ANY) { |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 925 | addr6 = &ipv6_hdr(skb)->daddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | addr_type = ipv6_addr_type(addr6); |
| 927 | } |
| 928 | |
David S. Miller | 1e2927b | 2012-01-26 15:23:21 -0500 | [diff] [blame] | 929 | if ((addr_type & IPV6_ADDR_COMPATv4) != 0) |
| 930 | dst = addr6->s6_addr32[3]; |
| 931 | else |
| 932 | do_tx_error = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | |
David S. Miller | 1e2927b | 2012-01-26 15:23:21 -0500 | [diff] [blame] | 934 | neigh_release(neigh); |
| 935 | if (do_tx_error) |
| 936 | goto tx_error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | } |
| 938 | |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 939 | flowi4_init_output(&fl4, tunnel->parms.link, tunnel->fwmark, |
| 940 | RT_TOS(tos), RT_SCOPE_UNIVERSE, IPPROTO_IPV6, |
| 941 | 0, dst, tiph->saddr, 0, 0, |
| 942 | sock_net_uid(tunnel->net, NULL)); |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 943 | |
Haishuang Yan | 6e3d1bb | 2019-07-14 21:31:22 +0800 | [diff] [blame] | 944 | rt = dst_cache_get_ip4(&tunnel->dst_cache, &fl4.saddr); |
| 945 | if (!rt) { |
| 946 | rt = ip_route_output_flow(tunnel->net, &fl4, NULL); |
| 947 | if (IS_ERR(rt)) { |
| 948 | dev->stats.tx_carrier_errors++; |
| 949 | goto tx_error_icmp; |
| 950 | } |
| 951 | dst_cache_set_ip4(&tunnel->dst_cache, &rt->dst, fl4.saddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | } |
Haishuang Yan | 6e3d1bb | 2019-07-14 21:31:22 +0800 | [diff] [blame] | 953 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | if (rt->rt_type != RTN_UNICAST) { |
| 955 | ip_rt_put(rt); |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 956 | dev->stats.tx_carrier_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | goto tx_error_icmp; |
| 958 | } |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 959 | tdev = rt->dst.dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
| 961 | if (tdev == dev) { |
| 962 | ip_rt_put(rt); |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 963 | dev->stats.collisions++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | goto tx_error; |
| 965 | } |
| 966 | |
Tom Herbert | 7e13318 | 2016-05-18 09:06:10 -0700 | [diff] [blame] | 967 | if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP4)) { |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 968 | ip_rt_put(rt); |
Alexander Duyck | aed069d | 2016-04-14 15:33:37 -0400 | [diff] [blame] | 969 | goto tx_error; |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 970 | } |
| 971 | |
Herbert Xu | 292f4f3 | 2009-11-09 08:42:01 +0000 | [diff] [blame] | 972 | if (df) { |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 973 | mtu = dst_mtu(&rt->dst) - t_hlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | |
Herbert Xu | 292f4f3 | 2009-11-09 08:42:01 +0000 | [diff] [blame] | 975 | if (mtu < 68) { |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 976 | dev->stats.collisions++; |
Herbert Xu | 292f4f3 | 2009-11-09 08:42:01 +0000 | [diff] [blame] | 977 | ip_rt_put(rt); |
| 978 | goto tx_error; |
| 979 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | |
Herbert Xu | 292f4f3 | 2009-11-09 08:42:01 +0000 | [diff] [blame] | 981 | if (mtu < IPV6_MIN_MTU) { |
| 982 | mtu = IPV6_MIN_MTU; |
| 983 | df = 0; |
| 984 | } |
| 985 | |
Nicolas Dichtel | f15ca72 | 2018-01-25 19:03:03 +0100 | [diff] [blame] | 986 | if (tunnel->parms.iph.daddr) |
Hangbin Liu | 4d42df4 | 2019-12-22 10:51:15 +0800 | [diff] [blame] | 987 | skb_dst_update_pmtu_no_confirm(skb, mtu); |
Herbert Xu | 292f4f3 | 2009-11-09 08:42:01 +0000 | [diff] [blame] | 988 | |
Eric Dumazet | 58a4782 | 2013-12-16 06:31:23 -0800 | [diff] [blame] | 989 | if (skb->len > mtu && !skb_is_gso(skb)) { |
Alexey Dobriyan | 3ffe533 | 2010-02-18 08:25:24 +0000 | [diff] [blame] | 990 | icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu); |
Herbert Xu | 292f4f3 | 2009-11-09 08:42:01 +0000 | [diff] [blame] | 991 | ip_rt_put(rt); |
| 992 | goto tx_error; |
| 993 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | } |
| 995 | |
| 996 | if (tunnel->err_count > 0) { |
Wei Yongjun | bb80087 | 2009-02-24 23:37:19 -0800 | [diff] [blame] | 997 | if (time_before(jiffies, |
| 998 | tunnel->err_time + IPTUNNEL_ERR_TIMEO)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | tunnel->err_count--; |
| 1000 | dst_link_failure(skb); |
| 1001 | } else |
| 1002 | tunnel->err_count = 0; |
| 1003 | } |
| 1004 | |
| 1005 | /* |
| 1006 | * Okay, now see if we can stuff it in the buffer as-is. |
| 1007 | */ |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1008 | max_headroom = LL_RESERVED_SPACE(tdev) + t_hlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | |
Patrick McHardy | cfbba49 | 2007-07-09 15:33:40 -0700 | [diff] [blame] | 1010 | if (skb_headroom(skb) < max_headroom || skb_shared(skb) || |
| 1011 | (skb_cloned(skb) && !skb_clone_writable(skb, 0))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom); |
| 1013 | if (!new_skb) { |
| 1014 | ip_rt_put(rt); |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 1015 | dev->stats.tx_dropped++; |
Gao feng | 6602831 | 2013-11-25 17:21:24 +0800 | [diff] [blame] | 1016 | kfree_skb(skb); |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 1017 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | } |
| 1019 | if (skb->sk) |
| 1020 | skb_set_owner_w(new_skb, skb->sk); |
| 1021 | dev_kfree_skb(skb); |
| 1022 | skb = new_skb; |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 1023 | iph6 = ipv6_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | } |
Pravin B Shelar | 0e6fbc5 | 2013-06-17 17:49:56 -0700 | [diff] [blame] | 1025 | ttl = tiph->ttl; |
| 1026 | if (ttl == 0) |
| 1027 | ttl = iph6->hop_limit; |
| 1028 | tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1030 | if (ip_tunnel_encap(skb, tunnel, &protocol, &fl4) < 0) { |
Li RongQing | 6a9eadc | 2013-12-20 17:20:12 +0800 | [diff] [blame] | 1031 | ip_rt_put(rt); |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1032 | goto tx_error; |
Li RongQing | 6a9eadc | 2013-12-20 17:20:12 +0800 | [diff] [blame] | 1033 | } |
Hannes Frederic Sowa | 3d48305 | 2013-08-18 13:46:52 +0200 | [diff] [blame] | 1034 | |
Tom Herbert | 469471c | 2014-09-29 20:22:30 -0700 | [diff] [blame] | 1035 | skb_set_inner_ipproto(skb, IPPROTO_IPV6); |
| 1036 | |
Pravin B Shelar | 039f506 | 2015-12-24 14:34:54 -0800 | [diff] [blame] | 1037 | iptunnel_xmit(NULL, rt, skb, fl4.saddr, fl4.daddr, protocol, tos, ttl, |
| 1038 | df, !net_eq(tunnel->net, dev_net(dev))); |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 1039 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | |
| 1041 | tx_error_icmp: |
| 1042 | dst_link_failure(skb); |
| 1043 | tx_error: |
Gao feng | 6602831 | 2013-11-25 17:21:24 +0800 | [diff] [blame] | 1044 | kfree_skb(skb); |
Eric Dumazet | 61c1db7 | 2013-10-20 20:47:30 -0700 | [diff] [blame] | 1045 | dev->stats.tx_errors++; |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 1046 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | } |
| 1048 | |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 1049 | static netdev_tx_t sit_tunnel_xmit__(struct sk_buff *skb, |
| 1050 | struct net_device *dev, u8 ipproto) |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1051 | { |
| 1052 | struct ip_tunnel *tunnel = netdev_priv(dev); |
| 1053 | const struct iphdr *tiph = &tunnel->parms.iph; |
| 1054 | |
Tom Herbert | 7e13318 | 2016-05-18 09:06:10 -0700 | [diff] [blame] | 1055 | if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP4)) |
Alexander Duyck | aed069d | 2016-04-14 15:33:37 -0400 | [diff] [blame] | 1056 | goto tx_error; |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1057 | |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 1058 | skb_set_inner_ipproto(skb, ipproto); |
Tom Herbert | 469471c | 2014-09-29 20:22:30 -0700 | [diff] [blame] | 1059 | |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 1060 | ip_tunnel_xmit(skb, dev, tiph, ipproto); |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1061 | return NETDEV_TX_OK; |
Alexander Duyck | aed069d | 2016-04-14 15:33:37 -0400 | [diff] [blame] | 1062 | tx_error: |
| 1063 | kfree_skb(skb); |
Eric Dumazet | 61c1db7 | 2013-10-20 20:47:30 -0700 | [diff] [blame] | 1064 | dev->stats.tx_errors++; |
| 1065 | return NETDEV_TX_OK; |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1066 | } |
| 1067 | |
| 1068 | static netdev_tx_t sit_tunnel_xmit(struct sk_buff *skb, |
| 1069 | struct net_device *dev) |
| 1070 | { |
Willem de Bruijn | cb9f1b7 | 2018-12-30 17:24:36 -0500 | [diff] [blame] | 1071 | if (!pskb_inet_may_pull(skb)) |
| 1072 | goto tx_err; |
| 1073 | |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1074 | switch (skb->protocol) { |
| 1075 | case htons(ETH_P_IP): |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 1076 | sit_tunnel_xmit__(skb, dev, IPPROTO_IPIP); |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1077 | break; |
| 1078 | case htons(ETH_P_IPV6): |
| 1079 | ipip6_tunnel_xmit(skb, dev); |
| 1080 | break; |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 1081 | #if IS_ENABLED(CONFIG_MPLS) |
| 1082 | case htons(ETH_P_MPLS_UC): |
| 1083 | sit_tunnel_xmit__(skb, dev, IPPROTO_MPLS); |
| 1084 | break; |
| 1085 | #endif |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1086 | default: |
| 1087 | goto tx_err; |
| 1088 | } |
| 1089 | |
| 1090 | return NETDEV_TX_OK; |
| 1091 | |
| 1092 | tx_err: |
| 1093 | dev->stats.tx_errors++; |
Gao feng | 6602831 | 2013-11-25 17:21:24 +0800 | [diff] [blame] | 1094 | kfree_skb(skb); |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1095 | return NETDEV_TX_OK; |
| 1096 | |
| 1097 | } |
| 1098 | |
Michal Schmidt | 8a4a50f | 2007-12-13 09:47:00 -0800 | [diff] [blame] | 1099 | static void ipip6_tunnel_bind_dev(struct net_device *dev) |
| 1100 | { |
| 1101 | struct net_device *tdev = NULL; |
| 1102 | struct ip_tunnel *tunnel; |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 1103 | const struct iphdr *iph; |
David S. Miller | 31e4543d | 2011-05-03 20:25:42 -0700 | [diff] [blame] | 1104 | struct flowi4 fl4; |
Michal Schmidt | 8a4a50f | 2007-12-13 09:47:00 -0800 | [diff] [blame] | 1105 | |
| 1106 | tunnel = netdev_priv(dev); |
| 1107 | iph = &tunnel->parms.iph; |
| 1108 | |
| 1109 | if (iph->daddr) { |
Nicolas Dichtel | 5e6700b | 2013-06-26 16:11:28 +0200 | [diff] [blame] | 1110 | struct rtable *rt = ip_route_output_ports(tunnel->net, &fl4, |
| 1111 | NULL, |
David S. Miller | 78fbfd8 | 2011-03-12 00:00:52 -0500 | [diff] [blame] | 1112 | iph->daddr, iph->saddr, |
| 1113 | 0, 0, |
| 1114 | IPPROTO_IPV6, |
| 1115 | RT_TOS(iph->tos), |
| 1116 | tunnel->parms.link); |
David S. Miller | b23dd4f | 2011-03-02 14:31:35 -0800 | [diff] [blame] | 1117 | |
| 1118 | if (!IS_ERR(rt)) { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1119 | tdev = rt->dst.dev; |
Michal Schmidt | 8a4a50f | 2007-12-13 09:47:00 -0800 | [diff] [blame] | 1120 | ip_rt_put(rt); |
| 1121 | } |
| 1122 | dev->flags |= IFF_POINTOPOINT; |
| 1123 | } |
| 1124 | |
| 1125 | if (!tdev && tunnel->parms.link) |
Nicolas Dichtel | 5e6700b | 2013-06-26 16:11:28 +0200 | [diff] [blame] | 1126 | tdev = __dev_get_by_index(tunnel->net, tunnel->parms.link); |
Michal Schmidt | 8a4a50f | 2007-12-13 09:47:00 -0800 | [diff] [blame] | 1127 | |
Stephen Suryaputra | ff6ab32 | 2019-05-06 15:00:01 -0400 | [diff] [blame] | 1128 | if (tdev && !netif_is_l3_master(tdev)) { |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1129 | int t_hlen = tunnel->hlen + sizeof(struct iphdr); |
| 1130 | |
Michal Schmidt | 8a4a50f | 2007-12-13 09:47:00 -0800 | [diff] [blame] | 1131 | dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr); |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1132 | dev->mtu = tdev->mtu - t_hlen; |
Michal Schmidt | 8a4a50f | 2007-12-13 09:47:00 -0800 | [diff] [blame] | 1133 | if (dev->mtu < IPV6_MIN_MTU) |
| 1134 | dev->mtu = IPV6_MIN_MTU; |
| 1135 | } |
Michal Schmidt | 8a4a50f | 2007-12-13 09:47:00 -0800 | [diff] [blame] | 1136 | } |
| 1137 | |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1138 | static void ipip6_tunnel_update(struct ip_tunnel *t, struct ip_tunnel_parm *p, |
| 1139 | __u32 fwmark) |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1140 | { |
Nicolas Dichtel | 5e6700b | 2013-06-26 16:11:28 +0200 | [diff] [blame] | 1141 | struct net *net = t->net; |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1142 | struct sit_net *sitn = net_generic(net, sit_net_id); |
| 1143 | |
| 1144 | ipip6_tunnel_unlink(sitn, t); |
| 1145 | synchronize_net(); |
| 1146 | t->parms.iph.saddr = p->iph.saddr; |
| 1147 | t->parms.iph.daddr = p->iph.daddr; |
| 1148 | memcpy(t->dev->dev_addr, &p->iph.saddr, 4); |
| 1149 | memcpy(t->dev->broadcast, &p->iph.daddr, 4); |
| 1150 | ipip6_tunnel_link(sitn, t); |
| 1151 | t->parms.iph.ttl = p->iph.ttl; |
| 1152 | t->parms.iph.tos = p->iph.tos; |
Hangbin Liu | f859b4a | 2017-11-30 10:41:14 +0800 | [diff] [blame] | 1153 | t->parms.iph.frag_off = p->iph.frag_off; |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1154 | if (t->parms.link != p->link || t->fwmark != fwmark) { |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1155 | t->parms.link = p->link; |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1156 | t->fwmark = fwmark; |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1157 | ipip6_tunnel_bind_dev(t->dev); |
| 1158 | } |
Paolo Abeni | e09acdd | 2016-02-12 15:43:55 +0100 | [diff] [blame] | 1159 | dst_cache_reset(&t->dst_cache); |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1160 | netdev_state_change(t->dev); |
| 1161 | } |
| 1162 | |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1163 | #ifdef CONFIG_IPV6_SIT_6RD |
| 1164 | static int ipip6_tunnel_update_6rd(struct ip_tunnel *t, |
| 1165 | struct ip_tunnel_6rd *ip6rd) |
| 1166 | { |
| 1167 | struct in6_addr prefix; |
| 1168 | __be32 relay_prefix; |
| 1169 | |
| 1170 | if (ip6rd->relay_prefixlen > 32 || |
| 1171 | ip6rd->prefixlen + (32 - ip6rd->relay_prefixlen) > 64) |
| 1172 | return -EINVAL; |
| 1173 | |
| 1174 | ipv6_addr_prefix(&prefix, &ip6rd->prefix, ip6rd->prefixlen); |
| 1175 | if (!ipv6_addr_equal(&prefix, &ip6rd->prefix)) |
| 1176 | return -EINVAL; |
| 1177 | if (ip6rd->relay_prefixlen) |
| 1178 | relay_prefix = ip6rd->relay_prefix & |
| 1179 | htonl(0xffffffffUL << |
| 1180 | (32 - ip6rd->relay_prefixlen)); |
| 1181 | else |
| 1182 | relay_prefix = 0; |
| 1183 | if (relay_prefix != ip6rd->relay_prefix) |
| 1184 | return -EINVAL; |
| 1185 | |
| 1186 | t->ip6rd.prefix = prefix; |
| 1187 | t->ip6rd.relay_prefix = relay_prefix; |
| 1188 | t->ip6rd.prefixlen = ip6rd->prefixlen; |
| 1189 | t->ip6rd.relay_prefixlen = ip6rd->relay_prefixlen; |
Paolo Abeni | e09acdd | 2016-02-12 15:43:55 +0100 | [diff] [blame] | 1190 | dst_cache_reset(&t->dst_cache); |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1191 | netdev_state_change(t->dev); |
| 1192 | return 0; |
| 1193 | } |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1194 | |
| 1195 | static int |
| 1196 | ipip6_tunnel_get6rd(struct net_device *dev, struct ifreq *ifr) |
| 1197 | { |
| 1198 | struct ip_tunnel *t = netdev_priv(dev); |
| 1199 | struct ip_tunnel_6rd ip6rd; |
| 1200 | struct ip_tunnel_parm p; |
| 1201 | |
| 1202 | if (dev == dev_to_sit_net(dev)->fb_tunnel_dev) { |
| 1203 | if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) |
| 1204 | return -EFAULT; |
| 1205 | t = ipip6_tunnel_locate(t->net, &p, 0); |
| 1206 | } |
| 1207 | if (!t) |
| 1208 | t = netdev_priv(dev); |
| 1209 | |
| 1210 | ip6rd.prefix = t->ip6rd.prefix; |
| 1211 | ip6rd.relay_prefix = t->ip6rd.relay_prefix; |
| 1212 | ip6rd.prefixlen = t->ip6rd.prefixlen; |
| 1213 | ip6rd.relay_prefixlen = t->ip6rd.relay_prefixlen; |
| 1214 | if (copy_to_user(ifr->ifr_ifru.ifru_data, &ip6rd, sizeof(ip6rd))) |
| 1215 | return -EFAULT; |
| 1216 | return 0; |
| 1217 | } |
| 1218 | |
| 1219 | static int |
| 1220 | ipip6_tunnel_6rdctl(struct net_device *dev, struct ifreq *ifr, int cmd) |
| 1221 | { |
| 1222 | struct ip_tunnel *t = netdev_priv(dev); |
| 1223 | struct ip_tunnel_6rd ip6rd; |
| 1224 | int err; |
| 1225 | |
| 1226 | if (!ns_capable(t->net->user_ns, CAP_NET_ADMIN)) |
| 1227 | return -EPERM; |
| 1228 | if (copy_from_user(&ip6rd, ifr->ifr_ifru.ifru_data, sizeof(ip6rd))) |
| 1229 | return -EFAULT; |
| 1230 | |
| 1231 | if (cmd != SIOCDEL6RD) { |
| 1232 | err = ipip6_tunnel_update_6rd(t, &ip6rd); |
| 1233 | if (err < 0) |
| 1234 | return err; |
| 1235 | } else |
| 1236 | ipip6_tunnel_clone_6rd(dev, dev_to_sit_net(dev)); |
| 1237 | return 0; |
| 1238 | } |
| 1239 | |
| 1240 | #endif /* CONFIG_IPV6_SIT_6RD */ |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1241 | |
Wei Yongjun | 03ff497 | 2016-08-13 01:54:15 +0000 | [diff] [blame] | 1242 | static bool ipip6_valid_ip_proto(u8 ipproto) |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 1243 | { |
| 1244 | return ipproto == IPPROTO_IPV6 || |
| 1245 | ipproto == IPPROTO_IPIP || |
| 1246 | #if IS_ENABLED(CONFIG_MPLS) |
| 1247 | ipproto == IPPROTO_MPLS || |
| 1248 | #endif |
| 1249 | ipproto == 0; |
| 1250 | } |
| 1251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | static int |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1253 | __ipip6_tunnel_ioctl_validate(struct net *net, struct ip_tunnel_parm *p) |
| 1254 | { |
| 1255 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
| 1256 | return -EPERM; |
| 1257 | |
| 1258 | if (!ipip6_valid_ip_proto(p->iph.protocol)) |
| 1259 | return -EINVAL; |
| 1260 | if (p->iph.version != 4 || |
| 1261 | p->iph.ihl != 5 || (p->iph.frag_off & htons(~IP_DF))) |
| 1262 | return -EINVAL; |
| 1263 | |
| 1264 | if (p->iph.ttl) |
| 1265 | p->iph.frag_off |= htons(IP_DF); |
| 1266 | return 0; |
| 1267 | } |
| 1268 | |
| 1269 | static int |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1270 | ipip6_tunnel_get(struct net_device *dev, struct ip_tunnel_parm *p) |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1271 | { |
| 1272 | struct ip_tunnel *t = netdev_priv(dev); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1273 | |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1274 | if (dev == dev_to_sit_net(dev)->fb_tunnel_dev) |
| 1275 | t = ipip6_tunnel_locate(t->net, p, 0); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1276 | if (!t) |
| 1277 | t = netdev_priv(dev); |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1278 | memcpy(p, &t->parms, sizeof(*p)); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1279 | return 0; |
| 1280 | } |
| 1281 | |
| 1282 | static int |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1283 | ipip6_tunnel_add(struct net_device *dev, struct ip_tunnel_parm *p) |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1284 | { |
| 1285 | struct ip_tunnel *t = netdev_priv(dev); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1286 | int err; |
| 1287 | |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1288 | err = __ipip6_tunnel_ioctl_validate(t->net, p); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1289 | if (err) |
| 1290 | return err; |
| 1291 | |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1292 | t = ipip6_tunnel_locate(t->net, p, 1); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1293 | if (!t) |
| 1294 | return -ENOBUFS; |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1295 | return 0; |
| 1296 | } |
| 1297 | |
| 1298 | static int |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1299 | ipip6_tunnel_change(struct net_device *dev, struct ip_tunnel_parm *p) |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1300 | { |
| 1301 | struct ip_tunnel *t = netdev_priv(dev); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1302 | int err; |
| 1303 | |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1304 | err = __ipip6_tunnel_ioctl_validate(t->net, p); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1305 | if (err) |
| 1306 | return err; |
| 1307 | |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1308 | t = ipip6_tunnel_locate(t->net, p, 0); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1309 | if (dev == dev_to_sit_net(dev)->fb_tunnel_dev) { |
| 1310 | if (!t) |
| 1311 | return -ENOENT; |
| 1312 | } else { |
| 1313 | if (t) { |
| 1314 | if (t->dev != dev) |
| 1315 | return -EEXIST; |
| 1316 | } else { |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1317 | if (((dev->flags & IFF_POINTOPOINT) && !p->iph.daddr) || |
| 1318 | (!(dev->flags & IFF_POINTOPOINT) && p->iph.daddr)) |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1319 | return -EINVAL; |
| 1320 | t = netdev_priv(dev); |
| 1321 | } |
| 1322 | |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1323 | ipip6_tunnel_update(t, p, t->fwmark); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1324 | } |
| 1325 | |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1326 | return 0; |
| 1327 | } |
| 1328 | |
| 1329 | static int |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1330 | ipip6_tunnel_del(struct net_device *dev, struct ip_tunnel_parm *p) |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1331 | { |
| 1332 | struct ip_tunnel *t = netdev_priv(dev); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1333 | |
| 1334 | if (!ns_capable(t->net->user_ns, CAP_NET_ADMIN)) |
| 1335 | return -EPERM; |
| 1336 | |
| 1337 | if (dev == dev_to_sit_net(dev)->fb_tunnel_dev) { |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1338 | t = ipip6_tunnel_locate(t->net, p, 0); |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1339 | if (!t) |
| 1340 | return -ENOENT; |
| 1341 | if (t == netdev_priv(dev_to_sit_net(dev)->fb_tunnel_dev)) |
| 1342 | return -EPERM; |
| 1343 | dev = t->dev; |
| 1344 | } |
| 1345 | unregister_netdevice(dev); |
| 1346 | return 0; |
| 1347 | } |
| 1348 | |
| 1349 | static int |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1350 | ipip6_tunnel_ctl(struct net_device *dev, struct ip_tunnel_parm *p, int cmd) |
| 1351 | { |
| 1352 | switch (cmd) { |
| 1353 | case SIOCGETTUNNEL: |
| 1354 | return ipip6_tunnel_get(dev, p); |
| 1355 | case SIOCADDTUNNEL: |
| 1356 | return ipip6_tunnel_add(dev, p); |
| 1357 | case SIOCCHGTUNNEL: |
| 1358 | return ipip6_tunnel_change(dev, p); |
| 1359 | case SIOCDELTUNNEL: |
| 1360 | return ipip6_tunnel_del(dev, p); |
| 1361 | default: |
| 1362 | return -EINVAL; |
| 1363 | } |
| 1364 | } |
| 1365 | |
| 1366 | static int |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 1367 | ipip6_tunnel_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | switch (cmd) { |
| 1370 | case SIOCGETTUNNEL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | case SIOCADDTUNNEL: |
| 1372 | case SIOCCHGTUNNEL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | case SIOCDELTUNNEL: |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1374 | return ip_tunnel_ioctl(dev, ifr, cmd); |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 1375 | case SIOCGETPRL: |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1376 | return ipip6_tunnel_get_prl(dev, ifr); |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 1377 | case SIOCADDPRL: |
| 1378 | case SIOCDELPRL: |
| 1379 | case SIOCCHGPRL: |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1380 | return ipip6_tunnel_prl_ctl(dev, ifr, cmd); |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 1381 | #ifdef CONFIG_IPV6_SIT_6RD |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1382 | case SIOCGET6RD: |
| 1383 | return ipip6_tunnel_get6rd(dev, ifr); |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 1384 | case SIOCADD6RD: |
| 1385 | case SIOCCHG6RD: |
| 1386 | case SIOCDEL6RD: |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1387 | return ipip6_tunnel_6rdctl(dev, ifr, cmd); |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 1388 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | default: |
Christoph Hellwig | fd5d687 | 2020-05-19 15:03:15 +0200 | [diff] [blame] | 1390 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | } |
| 1393 | |
Stephen Hemminger | 1326c3d | 2008-11-20 20:33:56 -0800 | [diff] [blame] | 1394 | static const struct net_device_ops ipip6_netdev_ops = { |
Steffen Klassert | ebe084a | 2014-11-03 09:19:29 +0100 | [diff] [blame] | 1395 | .ndo_init = ipip6_tunnel_init, |
Stephen Hemminger | 1326c3d | 2008-11-20 20:33:56 -0800 | [diff] [blame] | 1396 | .ndo_uninit = ipip6_tunnel_uninit, |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1397 | .ndo_start_xmit = sit_tunnel_xmit, |
Stephen Hemminger | 1326c3d | 2008-11-20 20:33:56 -0800 | [diff] [blame] | 1398 | .ndo_do_ioctl = ipip6_tunnel_ioctl, |
Pravin B Shelar | f61dd38 | 2013-03-25 14:50:00 +0000 | [diff] [blame] | 1399 | .ndo_get_stats64 = ip_tunnel_get_stats64, |
Nicolas Dichtel | 1e99584 | 2015-04-02 17:07:02 +0200 | [diff] [blame] | 1400 | .ndo_get_iflink = ip_tunnel_get_iflink, |
Christoph Hellwig | f60fe2d | 2020-05-19 15:03:16 +0200 | [diff] [blame] | 1401 | .ndo_tunnel_ctl = ipip6_tunnel_ctl, |
Stephen Hemminger | 1326c3d | 2008-11-20 20:33:56 -0800 | [diff] [blame] | 1402 | }; |
| 1403 | |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 1404 | static void ipip6_dev_free(struct net_device *dev) |
| 1405 | { |
Nicolas Dichtel | cf71d2bc | 2014-02-20 10:19:31 +0100 | [diff] [blame] | 1406 | struct ip_tunnel *tunnel = netdev_priv(dev); |
| 1407 | |
Paolo Abeni | e09acdd | 2016-02-12 15:43:55 +0100 | [diff] [blame] | 1408 | dst_cache_destroy(&tunnel->dst_cache); |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 1409 | free_percpu(dev->tstats); |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 1410 | } |
| 1411 | |
Eric Dumazet | 61c1db7 | 2013-10-20 20:47:30 -0700 | [diff] [blame] | 1412 | #define SIT_FEATURES (NETIF_F_SG | \ |
| 1413 | NETIF_F_FRAGLIST | \ |
| 1414 | NETIF_F_HIGHDMA | \ |
| 1415 | NETIF_F_GSO_SOFTWARE | \ |
| 1416 | NETIF_F_HW_CSUM) |
| 1417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | static void ipip6_tunnel_setup(struct net_device *dev) |
| 1419 | { |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1420 | struct ip_tunnel *tunnel = netdev_priv(dev); |
| 1421 | int t_hlen = tunnel->hlen + sizeof(struct iphdr); |
| 1422 | |
Stephen Hemminger | 1326c3d | 2008-11-20 20:33:56 -0800 | [diff] [blame] | 1423 | dev->netdev_ops = &ipip6_netdev_ops; |
David S. Miller | cf124db | 2017-05-08 12:52:56 -0400 | [diff] [blame] | 1424 | dev->needs_free_netdev = true; |
| 1425 | dev->priv_destructor = ipip6_dev_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | |
| 1427 | dev->type = ARPHRD_SIT; |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1428 | dev->hard_header_len = LL_MAX_HEADER + t_hlen; |
| 1429 | dev->mtu = ETH_DATA_LEN - t_hlen; |
Jarod Wilson | b96f9af | 2016-10-20 13:55:24 -0400 | [diff] [blame] | 1430 | dev->min_mtu = IPV6_MIN_MTU; |
Nicolas Dichtel | f7ff1fd | 2018-05-31 10:59:33 +0200 | [diff] [blame] | 1431 | dev->max_mtu = IP6_MAX_MTU - t_hlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | dev->flags = IFF_NOARP; |
Eric Dumazet | 0287587 | 2014-10-05 18:38:35 -0700 | [diff] [blame] | 1433 | netif_keep_dst(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | dev->addr_len = 4; |
Eric Dumazet | 8df40d1 | 2010-09-28 02:53:41 +0000 | [diff] [blame] | 1435 | dev->features |= NETIF_F_LLTX; |
Eric Dumazet | 61c1db7 | 2013-10-20 20:47:30 -0700 | [diff] [blame] | 1436 | dev->features |= SIT_FEATURES; |
| 1437 | dev->hw_features |= SIT_FEATURES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | } |
| 1439 | |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 1440 | static int ipip6_tunnel_init(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | { |
Stephen Hemminger | 1326c3d | 2008-11-20 20:33:56 -0800 | [diff] [blame] | 1442 | struct ip_tunnel *tunnel = netdev_priv(dev); |
Paolo Abeni | e09acdd | 2016-02-12 15:43:55 +0100 | [diff] [blame] | 1443 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | |
| 1445 | tunnel->dev = dev; |
Nicolas Dichtel | 5e6700b | 2013-06-26 16:11:28 +0200 | [diff] [blame] | 1446 | tunnel->net = dev_net(dev); |
Steffen Klassert | ebe084a | 2014-11-03 09:19:29 +0100 | [diff] [blame] | 1447 | strcpy(tunnel->parms.name, dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | |
Michal Schmidt | 8a4a50f | 2007-12-13 09:47:00 -0800 | [diff] [blame] | 1449 | ipip6_tunnel_bind_dev(dev); |
WANG Cong | 1c213bd | 2014-02-13 11:46:28 -0800 | [diff] [blame] | 1450 | dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats); |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 1451 | if (!dev->tstats) |
| 1452 | return -ENOMEM; |
| 1453 | |
Paolo Abeni | e09acdd | 2016-02-12 15:43:55 +0100 | [diff] [blame] | 1454 | err = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL); |
| 1455 | if (err) { |
Nicolas Dichtel | cf71d2bc | 2014-02-20 10:19:31 +0100 | [diff] [blame] | 1456 | free_percpu(dev->tstats); |
WANG Cong | d7426c6 | 2017-02-08 10:02:13 -0800 | [diff] [blame] | 1457 | dev->tstats = NULL; |
Paolo Abeni | e09acdd | 2016-02-12 15:43:55 +0100 | [diff] [blame] | 1458 | return err; |
Nicolas Dichtel | cf71d2bc | 2014-02-20 10:19:31 +0100 | [diff] [blame] | 1459 | } |
| 1460 | |
Eric Dumazet | 15fc1f7 | 2010-09-27 00:38:18 +0000 | [diff] [blame] | 1461 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | } |
| 1463 | |
Eric Dumazet | 4ece900 | 2015-11-02 17:08:19 -0800 | [diff] [blame] | 1464 | static void __net_init ipip6_fb_tunnel_init(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | { |
Patrick McHardy | 2941a48 | 2006-01-08 22:05:26 -0800 | [diff] [blame] | 1466 | struct ip_tunnel *tunnel = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | struct iphdr *iph = &tunnel->parms.iph; |
Pavel Emelyanov | 2918217 | 2008-04-16 01:16:38 -0700 | [diff] [blame] | 1468 | struct net *net = dev_net(dev); |
| 1469 | struct sit_net *sitn = net_generic(net, sit_net_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | iph->version = 4; |
| 1472 | iph->protocol = IPPROTO_IPV6; |
| 1473 | iph->ihl = 5; |
| 1474 | iph->ttl = 64; |
| 1475 | |
| 1476 | dev_hold(dev); |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 1477 | rcu_assign_pointer(sitn->tunnels_wc[0], tunnel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | } |
| 1479 | |
Matthias Schiffer | a8b8a889 | 2017-06-25 23:56:01 +0200 | [diff] [blame] | 1480 | static int ipip6_validate(struct nlattr *tb[], struct nlattr *data[], |
| 1481 | struct netlink_ext_ack *extack) |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1482 | { |
| 1483 | u8 proto; |
| 1484 | |
Nicolas Dichtel | c2ff682 | 2013-06-19 12:03:13 +0200 | [diff] [blame] | 1485 | if (!data || !data[IFLA_IPTUN_PROTO]) |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1486 | return 0; |
| 1487 | |
| 1488 | proto = nla_get_u8(data[IFLA_IPTUN_PROTO]); |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 1489 | if (!ipip6_valid_ip_proto(proto)) |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1490 | return -EINVAL; |
| 1491 | |
| 1492 | return 0; |
| 1493 | } |
| 1494 | |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1495 | static void ipip6_netlink_parms(struct nlattr *data[], |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1496 | struct ip_tunnel_parm *parms, |
| 1497 | __u32 *fwmark) |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1498 | { |
| 1499 | memset(parms, 0, sizeof(*parms)); |
| 1500 | |
| 1501 | parms->iph.version = 4; |
| 1502 | parms->iph.protocol = IPPROTO_IPV6; |
| 1503 | parms->iph.ihl = 5; |
| 1504 | parms->iph.ttl = 64; |
| 1505 | |
| 1506 | if (!data) |
| 1507 | return; |
| 1508 | |
| 1509 | if (data[IFLA_IPTUN_LINK]) |
| 1510 | parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]); |
| 1511 | |
| 1512 | if (data[IFLA_IPTUN_LOCAL]) |
Nicolas Dichtel | d440b72 | 2012-11-15 04:06:41 +0000 | [diff] [blame] | 1513 | parms->iph.saddr = nla_get_be32(data[IFLA_IPTUN_LOCAL]); |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1514 | |
| 1515 | if (data[IFLA_IPTUN_REMOTE]) |
Nicolas Dichtel | d440b72 | 2012-11-15 04:06:41 +0000 | [diff] [blame] | 1516 | parms->iph.daddr = nla_get_be32(data[IFLA_IPTUN_REMOTE]); |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1517 | |
| 1518 | if (data[IFLA_IPTUN_TTL]) { |
| 1519 | parms->iph.ttl = nla_get_u8(data[IFLA_IPTUN_TTL]); |
| 1520 | if (parms->iph.ttl) |
| 1521 | parms->iph.frag_off = htons(IP_DF); |
| 1522 | } |
| 1523 | |
| 1524 | if (data[IFLA_IPTUN_TOS]) |
| 1525 | parms->iph.tos = nla_get_u8(data[IFLA_IPTUN_TOS]); |
| 1526 | |
| 1527 | if (!data[IFLA_IPTUN_PMTUDISC] || nla_get_u8(data[IFLA_IPTUN_PMTUDISC])) |
| 1528 | parms->iph.frag_off = htons(IP_DF); |
| 1529 | |
| 1530 | if (data[IFLA_IPTUN_FLAGS]) |
Nicolas Dichtel | d440b72 | 2012-11-15 04:06:41 +0000 | [diff] [blame] | 1531 | parms->i_flags = nla_get_be16(data[IFLA_IPTUN_FLAGS]); |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1532 | |
| 1533 | if (data[IFLA_IPTUN_PROTO]) |
| 1534 | parms->iph.protocol = nla_get_u8(data[IFLA_IPTUN_PROTO]); |
| 1535 | |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1536 | if (data[IFLA_IPTUN_FWMARK]) |
| 1537 | *fwmark = nla_get_u32(data[IFLA_IPTUN_FWMARK]); |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1538 | } |
| 1539 | |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1540 | /* This function returns true when ENCAP attributes are present in the nl msg */ |
| 1541 | static bool ipip6_netlink_encap_parms(struct nlattr *data[], |
| 1542 | struct ip_tunnel_encap *ipencap) |
| 1543 | { |
| 1544 | bool ret = false; |
| 1545 | |
| 1546 | memset(ipencap, 0, sizeof(*ipencap)); |
| 1547 | |
| 1548 | if (!data) |
| 1549 | return ret; |
| 1550 | |
| 1551 | if (data[IFLA_IPTUN_ENCAP_TYPE]) { |
| 1552 | ret = true; |
| 1553 | ipencap->type = nla_get_u16(data[IFLA_IPTUN_ENCAP_TYPE]); |
| 1554 | } |
| 1555 | |
| 1556 | if (data[IFLA_IPTUN_ENCAP_FLAGS]) { |
| 1557 | ret = true; |
| 1558 | ipencap->flags = nla_get_u16(data[IFLA_IPTUN_ENCAP_FLAGS]); |
| 1559 | } |
| 1560 | |
| 1561 | if (data[IFLA_IPTUN_ENCAP_SPORT]) { |
| 1562 | ret = true; |
Eric Dumazet | a409cae | 2015-02-04 15:12:04 -0800 | [diff] [blame] | 1563 | ipencap->sport = nla_get_be16(data[IFLA_IPTUN_ENCAP_SPORT]); |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1564 | } |
| 1565 | |
| 1566 | if (data[IFLA_IPTUN_ENCAP_DPORT]) { |
| 1567 | ret = true; |
Eric Dumazet | a409cae | 2015-02-04 15:12:04 -0800 | [diff] [blame] | 1568 | ipencap->dport = nla_get_be16(data[IFLA_IPTUN_ENCAP_DPORT]); |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1569 | } |
| 1570 | |
| 1571 | return ret; |
| 1572 | } |
| 1573 | |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1574 | #ifdef CONFIG_IPV6_SIT_6RD |
| 1575 | /* This function returns true when 6RD attributes are present in the nl msg */ |
| 1576 | static bool ipip6_netlink_6rd_parms(struct nlattr *data[], |
| 1577 | struct ip_tunnel_6rd *ip6rd) |
| 1578 | { |
| 1579 | bool ret = false; |
| 1580 | memset(ip6rd, 0, sizeof(*ip6rd)); |
| 1581 | |
| 1582 | if (!data) |
| 1583 | return ret; |
| 1584 | |
| 1585 | if (data[IFLA_IPTUN_6RD_PREFIX]) { |
| 1586 | ret = true; |
Jiri Benc | 67b61f6 | 2015-03-29 16:59:26 +0200 | [diff] [blame] | 1587 | ip6rd->prefix = nla_get_in6_addr(data[IFLA_IPTUN_6RD_PREFIX]); |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1588 | } |
| 1589 | |
| 1590 | if (data[IFLA_IPTUN_6RD_RELAY_PREFIX]) { |
| 1591 | ret = true; |
| 1592 | ip6rd->relay_prefix = |
| 1593 | nla_get_be32(data[IFLA_IPTUN_6RD_RELAY_PREFIX]); |
| 1594 | } |
| 1595 | |
| 1596 | if (data[IFLA_IPTUN_6RD_PREFIXLEN]) { |
| 1597 | ret = true; |
| 1598 | ip6rd->prefixlen = nla_get_u16(data[IFLA_IPTUN_6RD_PREFIXLEN]); |
| 1599 | } |
| 1600 | |
| 1601 | if (data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]) { |
| 1602 | ret = true; |
| 1603 | ip6rd->relay_prefixlen = |
| 1604 | nla_get_u16(data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]); |
| 1605 | } |
| 1606 | |
| 1607 | return ret; |
| 1608 | } |
| 1609 | #endif |
| 1610 | |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1611 | static int ipip6_newlink(struct net *src_net, struct net_device *dev, |
Matthias Schiffer | 7a3f4a1 | 2017-06-25 23:55:59 +0200 | [diff] [blame] | 1612 | struct nlattr *tb[], struct nlattr *data[], |
| 1613 | struct netlink_ext_ack *extack) |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1614 | { |
| 1615 | struct net *net = dev_net(dev); |
| 1616 | struct ip_tunnel *nt; |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1617 | struct ip_tunnel_encap ipencap; |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1618 | #ifdef CONFIG_IPV6_SIT_6RD |
| 1619 | struct ip_tunnel_6rd ip6rd; |
| 1620 | #endif |
| 1621 | int err; |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1622 | |
| 1623 | nt = netdev_priv(dev); |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1624 | |
| 1625 | if (ipip6_netlink_encap_parms(data, &ipencap)) { |
| 1626 | err = ip_tunnel_encap_setup(nt, &ipencap); |
| 1627 | if (err < 0) |
| 1628 | return err; |
| 1629 | } |
| 1630 | |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1631 | ipip6_netlink_parms(data, &nt->parms, &nt->fwmark); |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1632 | |
| 1633 | if (ipip6_tunnel_locate(net, &nt->parms, 0)) |
| 1634 | return -EEXIST; |
| 1635 | |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1636 | err = ipip6_tunnel_create(dev); |
| 1637 | if (err < 0) |
| 1638 | return err; |
| 1639 | |
Xin Long | 2b3957c | 2018-02-27 19:19:41 +0800 | [diff] [blame] | 1640 | if (tb[IFLA_MTU]) { |
| 1641 | u32 mtu = nla_get_u32(tb[IFLA_MTU]); |
| 1642 | |
Nicolas Dichtel | f7ff1fd | 2018-05-31 10:59:33 +0200 | [diff] [blame] | 1643 | if (mtu >= IPV6_MIN_MTU && |
| 1644 | mtu <= IP6_MAX_MTU - dev->hard_header_len) |
Xin Long | 2b3957c | 2018-02-27 19:19:41 +0800 | [diff] [blame] | 1645 | dev->mtu = mtu; |
| 1646 | } |
| 1647 | |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1648 | #ifdef CONFIG_IPV6_SIT_6RD |
| 1649 | if (ipip6_netlink_6rd_parms(data, &ip6rd)) |
| 1650 | err = ipip6_tunnel_update_6rd(nt, &ip6rd); |
| 1651 | #endif |
| 1652 | |
| 1653 | return err; |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1654 | } |
| 1655 | |
| 1656 | static int ipip6_changelink(struct net_device *dev, struct nlattr *tb[], |
Matthias Schiffer | ad744b2 | 2017-06-25 23:56:00 +0200 | [diff] [blame] | 1657 | struct nlattr *data[], |
| 1658 | struct netlink_ext_ack *extack) |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1659 | { |
Nicolas Dichtel | 86bd68b | 2013-07-03 17:00:34 +0200 | [diff] [blame] | 1660 | struct ip_tunnel *t = netdev_priv(dev); |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1661 | struct ip_tunnel_parm p; |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1662 | struct ip_tunnel_encap ipencap; |
Nicolas Dichtel | 86bd68b | 2013-07-03 17:00:34 +0200 | [diff] [blame] | 1663 | struct net *net = t->net; |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1664 | struct sit_net *sitn = net_generic(net, sit_net_id); |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1665 | #ifdef CONFIG_IPV6_SIT_6RD |
| 1666 | struct ip_tunnel_6rd ip6rd; |
| 1667 | #endif |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1668 | __u32 fwmark = t->fwmark; |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1669 | int err; |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1670 | |
| 1671 | if (dev == sitn->fb_tunnel_dev) |
| 1672 | return -EINVAL; |
| 1673 | |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1674 | if (ipip6_netlink_encap_parms(data, &ipencap)) { |
| 1675 | err = ip_tunnel_encap_setup(t, &ipencap); |
| 1676 | if (err < 0) |
| 1677 | return err; |
| 1678 | } |
| 1679 | |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1680 | ipip6_netlink_parms(data, &p, &fwmark); |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1681 | |
| 1682 | if (((dev->flags & IFF_POINTOPOINT) && !p.iph.daddr) || |
| 1683 | (!(dev->flags & IFF_POINTOPOINT) && p.iph.daddr)) |
| 1684 | return -EINVAL; |
| 1685 | |
| 1686 | t = ipip6_tunnel_locate(net, &p, 0); |
| 1687 | |
| 1688 | if (t) { |
| 1689 | if (t->dev != dev) |
| 1690 | return -EEXIST; |
| 1691 | } else |
| 1692 | t = netdev_priv(dev); |
| 1693 | |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1694 | ipip6_tunnel_update(t, &p, fwmark); |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1695 | |
| 1696 | #ifdef CONFIG_IPV6_SIT_6RD |
| 1697 | if (ipip6_netlink_6rd_parms(data, &ip6rd)) |
| 1698 | return ipip6_tunnel_update_6rd(t, &ip6rd); |
| 1699 | #endif |
| 1700 | |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1701 | return 0; |
| 1702 | } |
| 1703 | |
Nicolas Dichtel | e4c94a9 | 2012-11-14 05:14:06 +0000 | [diff] [blame] | 1704 | static size_t ipip6_get_size(const struct net_device *dev) |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1705 | { |
| 1706 | return |
| 1707 | /* IFLA_IPTUN_LINK */ |
| 1708 | nla_total_size(4) + |
| 1709 | /* IFLA_IPTUN_LOCAL */ |
| 1710 | nla_total_size(4) + |
| 1711 | /* IFLA_IPTUN_REMOTE */ |
| 1712 | nla_total_size(4) + |
| 1713 | /* IFLA_IPTUN_TTL */ |
| 1714 | nla_total_size(1) + |
| 1715 | /* IFLA_IPTUN_TOS */ |
| 1716 | nla_total_size(1) + |
Nicolas Dichtel | a12c9a8 | 2012-11-14 05:14:05 +0000 | [diff] [blame] | 1717 | /* IFLA_IPTUN_PMTUDISC */ |
| 1718 | nla_total_size(1) + |
| 1719 | /* IFLA_IPTUN_FLAGS */ |
| 1720 | nla_total_size(2) + |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1721 | /* IFLA_IPTUN_PROTO */ |
| 1722 | nla_total_size(1) + |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1723 | #ifdef CONFIG_IPV6_SIT_6RD |
| 1724 | /* IFLA_IPTUN_6RD_PREFIX */ |
| 1725 | nla_total_size(sizeof(struct in6_addr)) + |
| 1726 | /* IFLA_IPTUN_6RD_RELAY_PREFIX */ |
| 1727 | nla_total_size(4) + |
| 1728 | /* IFLA_IPTUN_6RD_PREFIXLEN */ |
| 1729 | nla_total_size(2) + |
| 1730 | /* IFLA_IPTUN_6RD_RELAY_PREFIXLEN */ |
| 1731 | nla_total_size(2) + |
| 1732 | #endif |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1733 | /* IFLA_IPTUN_ENCAP_TYPE */ |
| 1734 | nla_total_size(2) + |
| 1735 | /* IFLA_IPTUN_ENCAP_FLAGS */ |
| 1736 | nla_total_size(2) + |
| 1737 | /* IFLA_IPTUN_ENCAP_SPORT */ |
| 1738 | nla_total_size(2) + |
| 1739 | /* IFLA_IPTUN_ENCAP_DPORT */ |
| 1740 | nla_total_size(2) + |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1741 | /* IFLA_IPTUN_FWMARK */ |
| 1742 | nla_total_size(4) + |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1743 | 0; |
| 1744 | } |
| 1745 | |
Nicolas Dichtel | e4c94a9 | 2012-11-14 05:14:06 +0000 | [diff] [blame] | 1746 | static int ipip6_fill_info(struct sk_buff *skb, const struct net_device *dev) |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1747 | { |
| 1748 | struct ip_tunnel *tunnel = netdev_priv(dev); |
| 1749 | struct ip_tunnel_parm *parm = &tunnel->parms; |
| 1750 | |
| 1751 | if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) || |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 1752 | nla_put_in_addr(skb, IFLA_IPTUN_LOCAL, parm->iph.saddr) || |
| 1753 | nla_put_in_addr(skb, IFLA_IPTUN_REMOTE, parm->iph.daddr) || |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1754 | nla_put_u8(skb, IFLA_IPTUN_TTL, parm->iph.ttl) || |
Nicolas Dichtel | a12c9a8 | 2012-11-14 05:14:05 +0000 | [diff] [blame] | 1755 | nla_put_u8(skb, IFLA_IPTUN_TOS, parm->iph.tos) || |
| 1756 | nla_put_u8(skb, IFLA_IPTUN_PMTUDISC, |
| 1757 | !!(parm->iph.frag_off & htons(IP_DF))) || |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1758 | nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->iph.protocol) || |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1759 | nla_put_be16(skb, IFLA_IPTUN_FLAGS, parm->i_flags) || |
| 1760 | nla_put_u32(skb, IFLA_IPTUN_FWMARK, tunnel->fwmark)) |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1761 | goto nla_put_failure; |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1762 | |
| 1763 | #ifdef CONFIG_IPV6_SIT_6RD |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 1764 | if (nla_put_in6_addr(skb, IFLA_IPTUN_6RD_PREFIX, |
| 1765 | &tunnel->ip6rd.prefix) || |
| 1766 | nla_put_in_addr(skb, IFLA_IPTUN_6RD_RELAY_PREFIX, |
| 1767 | tunnel->ip6rd.relay_prefix) || |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1768 | nla_put_u16(skb, IFLA_IPTUN_6RD_PREFIXLEN, |
| 1769 | tunnel->ip6rd.prefixlen) || |
| 1770 | nla_put_u16(skb, IFLA_IPTUN_6RD_RELAY_PREFIXLEN, |
| 1771 | tunnel->ip6rd.relay_prefixlen)) |
| 1772 | goto nla_put_failure; |
| 1773 | #endif |
| 1774 | |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1775 | if (nla_put_u16(skb, IFLA_IPTUN_ENCAP_TYPE, |
| 1776 | tunnel->encap.type) || |
Eric Dumazet | a409cae | 2015-02-04 15:12:04 -0800 | [diff] [blame] | 1777 | nla_put_be16(skb, IFLA_IPTUN_ENCAP_SPORT, |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1778 | tunnel->encap.sport) || |
Eric Dumazet | a409cae | 2015-02-04 15:12:04 -0800 | [diff] [blame] | 1779 | nla_put_be16(skb, IFLA_IPTUN_ENCAP_DPORT, |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1780 | tunnel->encap.dport) || |
| 1781 | nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS, |
Tom Herbert | e1b2cb6 | 2014-11-05 16:49:38 -0800 | [diff] [blame] | 1782 | tunnel->encap.flags)) |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1783 | goto nla_put_failure; |
| 1784 | |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1785 | return 0; |
| 1786 | |
| 1787 | nla_put_failure: |
| 1788 | return -EMSGSIZE; |
| 1789 | } |
| 1790 | |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1791 | static const struct nla_policy ipip6_policy[IFLA_IPTUN_MAX + 1] = { |
| 1792 | [IFLA_IPTUN_LINK] = { .type = NLA_U32 }, |
| 1793 | [IFLA_IPTUN_LOCAL] = { .type = NLA_U32 }, |
| 1794 | [IFLA_IPTUN_REMOTE] = { .type = NLA_U32 }, |
| 1795 | [IFLA_IPTUN_TTL] = { .type = NLA_U8 }, |
| 1796 | [IFLA_IPTUN_TOS] = { .type = NLA_U8 }, |
| 1797 | [IFLA_IPTUN_PMTUDISC] = { .type = NLA_U8 }, |
| 1798 | [IFLA_IPTUN_FLAGS] = { .type = NLA_U16 }, |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1799 | [IFLA_IPTUN_PROTO] = { .type = NLA_U8 }, |
Nicolas Dichtel | e2f1f07 | 2012-11-19 22:41:45 +0000 | [diff] [blame] | 1800 | #ifdef CONFIG_IPV6_SIT_6RD |
| 1801 | [IFLA_IPTUN_6RD_PREFIX] = { .len = sizeof(struct in6_addr) }, |
| 1802 | [IFLA_IPTUN_6RD_RELAY_PREFIX] = { .type = NLA_U32 }, |
| 1803 | [IFLA_IPTUN_6RD_PREFIXLEN] = { .type = NLA_U16 }, |
| 1804 | [IFLA_IPTUN_6RD_RELAY_PREFIXLEN] = { .type = NLA_U16 }, |
| 1805 | #endif |
Tom Herbert | 1490966 | 2014-09-17 12:25:59 -0700 | [diff] [blame] | 1806 | [IFLA_IPTUN_ENCAP_TYPE] = { .type = NLA_U16 }, |
| 1807 | [IFLA_IPTUN_ENCAP_FLAGS] = { .type = NLA_U16 }, |
| 1808 | [IFLA_IPTUN_ENCAP_SPORT] = { .type = NLA_U16 }, |
| 1809 | [IFLA_IPTUN_ENCAP_DPORT] = { .type = NLA_U16 }, |
Craig Gallek | 9830ad4 | 2017-04-19 12:30:54 -0400 | [diff] [blame] | 1810 | [IFLA_IPTUN_FWMARK] = { .type = NLA_U32 }, |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1811 | }; |
| 1812 | |
Willem de Bruijn | 9434266 | 2013-11-13 21:27:38 -0500 | [diff] [blame] | 1813 | static void ipip6_dellink(struct net_device *dev, struct list_head *head) |
| 1814 | { |
| 1815 | struct net *net = dev_net(dev); |
| 1816 | struct sit_net *sitn = net_generic(net, sit_net_id); |
| 1817 | |
| 1818 | if (dev != sitn->fb_tunnel_dev) |
| 1819 | unregister_netdevice_queue(dev, head); |
| 1820 | } |
| 1821 | |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1822 | static struct rtnl_link_ops sit_link_ops __read_mostly = { |
| 1823 | .kind = "sit", |
| 1824 | .maxtype = IFLA_IPTUN_MAX, |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1825 | .policy = ipip6_policy, |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1826 | .priv_size = sizeof(struct ip_tunnel), |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1827 | .setup = ipip6_tunnel_setup, |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1828 | .validate = ipip6_validate, |
Nicolas Dichtel | f3723416 | 2012-11-14 05:14:07 +0000 | [diff] [blame] | 1829 | .newlink = ipip6_newlink, |
| 1830 | .changelink = ipip6_changelink, |
Nicolas Dichtel | e4c94a9 | 2012-11-14 05:14:06 +0000 | [diff] [blame] | 1831 | .get_size = ipip6_get_size, |
| 1832 | .fill_info = ipip6_fill_info, |
Willem de Bruijn | 9434266 | 2013-11-13 21:27:38 -0500 | [diff] [blame] | 1833 | .dellink = ipip6_dellink, |
Nicolas Dichtel | 1728d4f | 2015-01-15 15:11:17 +0100 | [diff] [blame] | 1834 | .get_link_net = ip_tunnel_get_link_net, |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1835 | }; |
| 1836 | |
Eric Dumazet | 6dcd814 | 2010-08-30 07:04:14 +0000 | [diff] [blame] | 1837 | static struct xfrm_tunnel sit_handler __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | .handler = ipip6_rcv, |
| 1839 | .err_handler = ipip6_err, |
Kazunori MIYAZAWA | c73cb5a | 2007-02-13 12:55:25 -0800 | [diff] [blame] | 1840 | .priority = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | }; |
| 1842 | |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1843 | static struct xfrm_tunnel ipip_handler __read_mostly = { |
| 1844 | .handler = ipip_rcv, |
| 1845 | .err_handler = ipip6_err, |
| 1846 | .priority = 2, |
| 1847 | }; |
| 1848 | |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 1849 | #if IS_ENABLED(CONFIG_MPLS) |
| 1850 | static struct xfrm_tunnel mplsip_handler __read_mostly = { |
| 1851 | .handler = mplsip_rcv, |
| 1852 | .err_handler = ipip6_err, |
| 1853 | .priority = 2, |
| 1854 | }; |
| 1855 | #endif |
| 1856 | |
Willem de Bruijn | 9434266 | 2013-11-13 21:27:38 -0500 | [diff] [blame] | 1857 | static void __net_exit sit_destroy_tunnels(struct net *net, |
| 1858 | struct list_head *head) |
Alexey Kuznetsov | db44575 | 2005-07-30 17:46:44 -0700 | [diff] [blame] | 1859 | { |
Willem de Bruijn | 9434266 | 2013-11-13 21:27:38 -0500 | [diff] [blame] | 1860 | struct sit_net *sitn = net_generic(net, sit_net_id); |
Nicolas Dichtel | 5e6700b | 2013-06-26 16:11:28 +0200 | [diff] [blame] | 1861 | struct net_device *dev, *aux; |
Alexey Kuznetsov | db44575 | 2005-07-30 17:46:44 -0700 | [diff] [blame] | 1862 | int prio; |
| 1863 | |
Nicolas Dichtel | 5e6700b | 2013-06-26 16:11:28 +0200 | [diff] [blame] | 1864 | for_each_netdev_safe(net, dev, aux) |
| 1865 | if (dev->rtnl_link_ops == &sit_link_ops) |
| 1866 | unregister_netdevice_queue(dev, head); |
| 1867 | |
Alexey Kuznetsov | db44575 | 2005-07-30 17:46:44 -0700 | [diff] [blame] | 1868 | for (prio = 1; prio < 4; prio++) { |
| 1869 | int h; |
Jiri Kosina | e87a8f2 | 2016-08-10 11:03:35 +0200 | [diff] [blame] | 1870 | for (h = 0; h < IP6_SIT_HASH_SIZE; h++) { |
Eric Dumazet | 753ea8e | 2011-01-20 07:16:24 +0000 | [diff] [blame] | 1871 | struct ip_tunnel *t; |
Eric Dumazet | 62808f9 | 2009-10-28 04:37:43 +0000 | [diff] [blame] | 1872 | |
Eric Dumazet | 753ea8e | 2011-01-20 07:16:24 +0000 | [diff] [blame] | 1873 | t = rtnl_dereference(sitn->tunnels[prio][h]); |
Ian Morris | 53b24b8 | 2015-03-29 14:00:05 +0100 | [diff] [blame] | 1874 | while (t) { |
Nicolas Dichtel | 5e6700b | 2013-06-26 16:11:28 +0200 | [diff] [blame] | 1875 | /* If dev is in the same netns, it has already |
| 1876 | * been added to the list by the previous loop. |
| 1877 | */ |
Nicolas Dichtel | fc8f999 | 2013-08-13 17:51:10 +0200 | [diff] [blame] | 1878 | if (!net_eq(dev_net(t->dev), net)) |
Nicolas Dichtel | 5e6700b | 2013-06-26 16:11:28 +0200 | [diff] [blame] | 1879 | unregister_netdevice_queue(t->dev, |
| 1880 | head); |
Eric Dumazet | 753ea8e | 2011-01-20 07:16:24 +0000 | [diff] [blame] | 1881 | t = rtnl_dereference(t->next); |
Eric Dumazet | 62808f9 | 2009-10-28 04:37:43 +0000 | [diff] [blame] | 1882 | } |
Alexey Kuznetsov | db44575 | 2005-07-30 17:46:44 -0700 | [diff] [blame] | 1883 | } |
| 1884 | } |
| 1885 | } |
| 1886 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 1887 | static int __net_init sit_init_net(struct net *net) |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 1888 | { |
Eric W. Biederman | 6710117 | 2009-11-29 15:46:16 +0000 | [diff] [blame] | 1889 | struct sit_net *sitn = net_generic(net, sit_net_id); |
Ted Feng | 72b3601 | 2011-12-08 00:46:21 +0000 | [diff] [blame] | 1890 | struct ip_tunnel *t; |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 1891 | int err; |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 1892 | |
Pavel Emelyanov | 2918217 | 2008-04-16 01:16:38 -0700 | [diff] [blame] | 1893 | sitn->tunnels[0] = sitn->tunnels_wc; |
| 1894 | sitn->tunnels[1] = sitn->tunnels_l; |
| 1895 | sitn->tunnels[2] = sitn->tunnels_r; |
| 1896 | sitn->tunnels[3] = sitn->tunnels_r_l; |
| 1897 | |
Eric Dumazet | 79134e6 | 2018-03-08 12:51:41 -0800 | [diff] [blame] | 1898 | if (!net_has_fallback_tunnels(net)) |
| 1899 | return 0; |
| 1900 | |
Pavel Emelyanov | cd3dbc1 | 2008-04-16 01:16:18 -0700 | [diff] [blame] | 1901 | sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0", |
Tom Gundersen | c835a67 | 2014-07-14 16:37:24 +0200 | [diff] [blame] | 1902 | NET_NAME_UNKNOWN, |
Pavel Emelyanov | cd3dbc1 | 2008-04-16 01:16:18 -0700 | [diff] [blame] | 1903 | ipip6_tunnel_setup); |
| 1904 | if (!sitn->fb_tunnel_dev) { |
| 1905 | err = -ENOMEM; |
| 1906 | goto err_alloc_dev; |
| 1907 | } |
Alexey Dobriyan | be77e59 | 2008-11-23 17:26:26 -0800 | [diff] [blame] | 1908 | dev_net_set(sitn->fb_tunnel_dev, net); |
Nicolas Dichtel | 205983c | 2013-10-01 18:04:59 +0200 | [diff] [blame] | 1909 | sitn->fb_tunnel_dev->rtnl_link_ops = &sit_link_ops; |
Nicolas Dichtel | 5e6700b | 2013-06-26 16:11:28 +0200 | [diff] [blame] | 1910 | /* FB netdevice is special: we have one, and only one per netns. |
| 1911 | * Allowing to move it to another netns is clearly unsafe. |
| 1912 | */ |
| 1913 | sitn->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL; |
Pavel Emelyanov | cd3dbc1 | 2008-04-16 01:16:18 -0700 | [diff] [blame] | 1914 | |
Ian Morris | e5d08d7 | 2014-11-23 21:28:43 +0000 | [diff] [blame] | 1915 | err = register_netdev(sitn->fb_tunnel_dev); |
| 1916 | if (err) |
Pavel Emelyanov | cd3dbc1 | 2008-04-16 01:16:18 -0700 | [diff] [blame] | 1917 | goto err_reg_dev; |
| 1918 | |
Eric Dumazet | 4ece900 | 2015-11-02 17:08:19 -0800 | [diff] [blame] | 1919 | ipip6_tunnel_clone_6rd(sitn->fb_tunnel_dev, sitn); |
| 1920 | ipip6_fb_tunnel_init(sitn->fb_tunnel_dev); |
| 1921 | |
Ted Feng | 72b3601 | 2011-12-08 00:46:21 +0000 | [diff] [blame] | 1922 | t = netdev_priv(sitn->fb_tunnel_dev); |
| 1923 | |
| 1924 | strcpy(t->parms.name, sitn->fb_tunnel_dev->name); |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 1925 | return 0; |
| 1926 | |
Pavel Emelyanov | cd3dbc1 | 2008-04-16 01:16:18 -0700 | [diff] [blame] | 1927 | err_reg_dev: |
Eric Dumazet | dd4080e | 2010-09-28 02:17:58 +0000 | [diff] [blame] | 1928 | ipip6_dev_free(sitn->fb_tunnel_dev); |
Mao Wenan | 07f12b2 | 2019-03-01 23:06:40 +0800 | [diff] [blame] | 1929 | free_netdev(sitn->fb_tunnel_dev); |
Pavel Emelyanov | cd3dbc1 | 2008-04-16 01:16:18 -0700 | [diff] [blame] | 1930 | err_alloc_dev: |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 1931 | return err; |
| 1932 | } |
| 1933 | |
Eric Dumazet | bb401ca | 2017-09-19 16:27:08 -0700 | [diff] [blame] | 1934 | static void __net_exit sit_exit_batch_net(struct list_head *net_list) |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 1935 | { |
Eric Dumazet | 62808f9 | 2009-10-28 04:37:43 +0000 | [diff] [blame] | 1936 | LIST_HEAD(list); |
Eric Dumazet | bb401ca | 2017-09-19 16:27:08 -0700 | [diff] [blame] | 1937 | struct net *net; |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 1938 | |
Pavel Emelyanov | cd3dbc1 | 2008-04-16 01:16:18 -0700 | [diff] [blame] | 1939 | rtnl_lock(); |
Eric Dumazet | bb401ca | 2017-09-19 16:27:08 -0700 | [diff] [blame] | 1940 | list_for_each_entry(net, net_list, exit_list) |
| 1941 | sit_destroy_tunnels(net, &list); |
| 1942 | |
Eric Dumazet | 62808f9 | 2009-10-28 04:37:43 +0000 | [diff] [blame] | 1943 | unregister_netdevice_many(&list); |
Pavel Emelyanov | cd3dbc1 | 2008-04-16 01:16:18 -0700 | [diff] [blame] | 1944 | rtnl_unlock(); |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 1945 | } |
| 1946 | |
| 1947 | static struct pernet_operations sit_net_ops = { |
| 1948 | .init = sit_init_net, |
Eric Dumazet | bb401ca | 2017-09-19 16:27:08 -0700 | [diff] [blame] | 1949 | .exit_batch = sit_exit_batch_net, |
Eric W. Biederman | 6710117 | 2009-11-29 15:46:16 +0000 | [diff] [blame] | 1950 | .id = &sit_net_id, |
| 1951 | .size = sizeof(struct sit_net), |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 1952 | }; |
| 1953 | |
Adrian Bunk | 89c8945 | 2006-11-20 16:56:48 -0800 | [diff] [blame] | 1954 | static void __exit sit_cleanup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1955 | { |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1956 | rtnl_link_unregister(&sit_link_ops); |
Kazunori MIYAZAWA | c73cb5a | 2007-02-13 12:55:25 -0800 | [diff] [blame] | 1957 | xfrm4_tunnel_deregister(&sit_handler, AF_INET6); |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1958 | xfrm4_tunnel_deregister(&ipip_handler, AF_INET); |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 1959 | #if IS_ENABLED(CONFIG_MPLS) |
| 1960 | xfrm4_tunnel_deregister(&mplsip_handler, AF_MPLS); |
| 1961 | #endif |
Alexey Kuznetsov | db44575 | 2005-07-30 17:46:44 -0700 | [diff] [blame] | 1962 | |
Eric W. Biederman | 6710117 | 2009-11-29 15:46:16 +0000 | [diff] [blame] | 1963 | unregister_pernet_device(&sit_net_ops); |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 1964 | rcu_barrier(); /* Wait for completion of call_rcu()'s */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 | } |
| 1966 | |
Adrian Bunk | 89c8945 | 2006-11-20 16:56:48 -0800 | [diff] [blame] | 1967 | static int __init sit_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | { |
| 1969 | int err; |
| 1970 | |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 1971 | pr_info("IPv6, IPv4 and MPLS over IPv4 tunneling driver\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 | |
Eric W. Biederman | 6710117 | 2009-11-29 15:46:16 +0000 | [diff] [blame] | 1973 | err = register_pernet_device(&sit_net_ops); |
Pavel Emelyanov | 8190d90 | 2008-04-16 01:15:17 -0700 | [diff] [blame] | 1974 | if (err < 0) |
Alexey Dobriyan | d5aa407 | 2010-02-16 09:05:04 +0000 | [diff] [blame] | 1975 | return err; |
| 1976 | err = xfrm4_tunnel_register(&sit_handler, AF_INET6); |
| 1977 | if (err < 0) { |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1978 | pr_info("%s: can't register ip6ip4\n", __func__); |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1979 | goto xfrm_tunnel_failed; |
Alexey Dobriyan | d5aa407 | 2010-02-16 09:05:04 +0000 | [diff] [blame] | 1980 | } |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 1981 | err = xfrm4_tunnel_register(&ipip_handler, AF_INET); |
| 1982 | if (err < 0) { |
| 1983 | pr_info("%s: can't register ip4ip4\n", __func__); |
| 1984 | goto xfrm_tunnel4_failed; |
| 1985 | } |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 1986 | #if IS_ENABLED(CONFIG_MPLS) |
| 1987 | err = xfrm4_tunnel_register(&mplsip_handler, AF_MPLS); |
| 1988 | if (err < 0) { |
| 1989 | pr_info("%s: can't register mplsip\n", __func__); |
| 1990 | goto xfrm_tunnel_mpls_failed; |
| 1991 | } |
| 1992 | #endif |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1993 | err = rtnl_link_register(&sit_link_ops); |
| 1994 | if (err < 0) |
| 1995 | goto rtnl_link_failed; |
| 1996 | |
| 1997 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1998 | return err; |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 1999 | |
| 2000 | rtnl_link_failed: |
Simon Horman | 49dbe7a | 2016-07-07 07:56:13 +0200 | [diff] [blame] | 2001 | #if IS_ENABLED(CONFIG_MPLS) |
| 2002 | xfrm4_tunnel_deregister(&mplsip_handler, AF_MPLS); |
| 2003 | xfrm_tunnel_mpls_failed: |
| 2004 | #endif |
Nicolas Dichtel | 32b8a8e | 2013-05-27 23:48:16 +0000 | [diff] [blame] | 2005 | xfrm4_tunnel_deregister(&ipip_handler, AF_INET); |
| 2006 | xfrm_tunnel4_failed: |
Nicolas Dichtel | ba3e3f5 | 2012-11-09 06:10:00 +0000 | [diff] [blame] | 2007 | xfrm4_tunnel_deregister(&sit_handler, AF_INET6); |
| 2008 | xfrm_tunnel_failed: |
| 2009 | unregister_pernet_device(&sit_net_ops); |
| 2010 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | } |
Joerg Roedel | 989e5b9 | 2006-10-10 14:47:44 -0700 | [diff] [blame] | 2012 | |
| 2013 | module_init(sit_init); |
| 2014 | module_exit(sit_cleanup); |
Jan Dittmer | 39c8508 | 2006-10-13 15:05:53 -0700 | [diff] [blame] | 2015 | MODULE_LICENSE("GPL"); |
Tom Gundersen | f98f89a | 2014-05-15 23:21:30 +0200 | [diff] [blame] | 2016 | MODULE_ALIAS_RTNL_LINK("sit"); |
Vasiliy Kulikov | 8909c9a | 2011-03-02 00:33:13 +0300 | [diff] [blame] | 2017 | MODULE_ALIAS_NETDEV("sit0"); |