blob: 898e671a526bc4ad9ff906f90065487e9e3f72bc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 over IPv4 tunnel device - Simple Internet Transition (SIT)
3 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 *
14 * Changes:
15 * Roger Venning <r.venning@telstra.com>: 6to4 support
16 * Nate Thompson <nate@thebog.net>: 6to4 support
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -040017 * Fred Templin <fred.l.templin@boeing.com>: isatap support
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
Joe Perchesf3213832012-05-15 14:11:53 +000020#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080023#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/errno.h>
25#include <linux/types.h>
26#include <linux/socket.h>
27#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/net.h>
29#include <linux/in6.h>
30#include <linux/netdevice.h>
31#include <linux/if_arp.h>
32#include <linux/icmp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/uaccess.h>
35#include <linux/init.h>
36#include <linux/netfilter_ipv4.h>
Kris Katterjohn46f25df2006-01-05 16:35:42 -080037#include <linux/if_ether.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <net/sock.h>
40#include <net/snmp.h>
41
42#include <net/ipv6.h>
43#include <net/protocol.h>
44#include <net/transp_v6.h>
45#include <net/ip6_fib.h>
46#include <net/ip6_route.h>
47#include <net/ndisc.h>
48#include <net/addrconf.h>
49#include <net/ip.h>
50#include <net/udp.h>
51#include <net/icmp.h>
52#include <net/ipip.h>
53#include <net/inet_ecn.h>
54#include <net/xfrm.h>
55#include <net/dsfield.h>
Pavel Emelyanov8190d902008-04-16 01:15:17 -070056#include <net/net_namespace.h>
57#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/*
60 This version of net/ipv6/sit.c is cloned of net/ipv4/ip_gre.c
61
62 For comments look at net/ipv4/ip_gre.c --ANK
63 */
64
65#define HASH_SIZE 16
Al Viroe69a4ad2006-11-14 20:56:00 -080066#define HASH(addr) (((__force u32)addr^((__force u32)addr>>4))&0xF)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +000068static bool log_ecn_error = true;
69module_param(log_ecn_error, bool, 0644);
70MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
71
Eric Dumazet15fc1f72010-09-27 00:38:18 +000072static int ipip6_tunnel_init(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static void ipip6_tunnel_setup(struct net_device *dev);
Eric Dumazet15fc1f72010-09-27 00:38:18 +000074static void ipip6_dev_free(struct net_device *dev);
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +000075static bool check_6rd(struct ip_tunnel *tunnel, const struct in6_addr *v6dst,
76 __be32 *v4dst);
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +000077static struct rtnl_link_ops sit_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Eric Dumazetf99189b2009-11-17 10:42:49 +000079static int sit_net_id __read_mostly;
Pavel Emelyanov8190d902008-04-16 01:15:17 -070080struct sit_net {
Eric Dumazet3a43be32010-09-15 11:35:10 +000081 struct ip_tunnel __rcu *tunnels_r_l[HASH_SIZE];
82 struct ip_tunnel __rcu *tunnels_r[HASH_SIZE];
83 struct ip_tunnel __rcu *tunnels_l[HASH_SIZE];
84 struct ip_tunnel __rcu *tunnels_wc[1];
85 struct ip_tunnel __rcu **tunnels[4];
Pavel Emelyanov29182172008-04-16 01:16:38 -070086
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -070087 struct net_device *fb_tunnel_dev;
Pavel Emelyanov8190d902008-04-16 01:15:17 -070088};
89
stephen hemminger87b6d212012-04-12 06:31:16 +000090static struct rtnl_link_stats64 *ipip6_get_stats64(struct net_device *dev,
91 struct rtnl_link_stats64 *tot)
Eric Dumazet15fc1f72010-09-27 00:38:18 +000092{
Eric Dumazet15fc1f72010-09-27 00:38:18 +000093 int i;
94
95 for_each_possible_cpu(i) {
96 const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
stephen hemminger87b6d212012-04-12 06:31:16 +000097 u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
98 unsigned int start;
Eric Dumazet15fc1f72010-09-27 00:38:18 +000099
stephen hemminger87b6d212012-04-12 06:31:16 +0000100 do {
101 start = u64_stats_fetch_begin_bh(&tstats->syncp);
102 rx_packets = tstats->rx_packets;
103 tx_packets = tstats->tx_packets;
104 rx_bytes = tstats->rx_bytes;
105 tx_bytes = tstats->tx_bytes;
106 } while (u64_stats_fetch_retry_bh(&tstats->syncp, start));
107
108 tot->rx_packets += rx_packets;
109 tot->tx_packets += tx_packets;
110 tot->rx_bytes += rx_bytes;
111 tot->tx_bytes += tx_bytes;
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000112 }
stephen hemminger87b6d212012-04-12 06:31:16 +0000113
114 tot->rx_errors = dev->stats.rx_errors;
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000115 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger87b6d212012-04-12 06:31:16 +0000116 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
117 tot->tx_carrier_errors = dev->stats.tx_carrier_errors;
118 tot->tx_dropped = dev->stats.tx_dropped;
119 tot->tx_aborted_errors = dev->stats.tx_aborted_errors;
120 tot->tx_errors = dev->stats.tx_errors;
121
122 return tot;
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000123}
stephen hemminger87b6d212012-04-12 06:31:16 +0000124
Eric Dumazet4543c102009-10-23 17:52:14 +0000125/*
126 * Must be invoked with rcu_read_lock
127 */
Eldad Zack3e866702012-04-01 07:49:01 +0000128static struct ip_tunnel *ipip6_tunnel_lookup(struct net *net,
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000129 struct net_device *dev, __be32 remote, __be32 local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Eric Dumazet3a43be32010-09-15 11:35:10 +0000131 unsigned int h0 = HASH(remote);
132 unsigned int h1 = HASH(local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 struct ip_tunnel *t;
Pavel Emelyanov29182172008-04-16 01:16:38 -0700134 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Amerigo Wange086cad2012-11-11 21:52:34 +0000136 for_each_ip_tunnel_rcu(t, sitn->tunnels_r_l[h0 ^ h1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (local == t->parms.iph.saddr &&
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000138 remote == t->parms.iph.daddr &&
139 (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
140 (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return t;
142 }
Amerigo Wange086cad2012-11-11 21:52:34 +0000143 for_each_ip_tunnel_rcu(t, sitn->tunnels_r[h0]) {
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000144 if (remote == t->parms.iph.daddr &&
145 (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
146 (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return t;
148 }
Amerigo Wange086cad2012-11-11 21:52:34 +0000149 for_each_ip_tunnel_rcu(t, sitn->tunnels_l[h1]) {
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000150 if (local == t->parms.iph.saddr &&
151 (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
152 (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return t;
154 }
Eric Dumazet4543c102009-10-23 17:52:14 +0000155 t = rcu_dereference(sitn->tunnels_wc[0]);
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000156 if ((t != NULL) && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return t;
158 return NULL;
159}
160
Eric Dumazet3a43be32010-09-15 11:35:10 +0000161static struct ip_tunnel __rcu **__ipip6_bucket(struct sit_net *sitn,
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700162 struct ip_tunnel_parm *parms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900164 __be32 remote = parms->iph.daddr;
165 __be32 local = parms->iph.saddr;
Eric Dumazet3a43be32010-09-15 11:35:10 +0000166 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 int prio = 0;
168
169 if (remote) {
170 prio |= 2;
171 h ^= HASH(remote);
172 }
173 if (local) {
174 prio |= 1;
175 h ^= HASH(local);
176 }
Pavel Emelyanov29182172008-04-16 01:16:38 -0700177 return &sitn->tunnels[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
Eric Dumazet3a43be32010-09-15 11:35:10 +0000180static inline struct ip_tunnel __rcu **ipip6_bucket(struct sit_net *sitn,
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700181 struct ip_tunnel *t)
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900182{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700183 return __ipip6_bucket(sitn, &t->parms);
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900184}
185
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700186static void ipip6_tunnel_unlink(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Eric Dumazet3a43be32010-09-15 11:35:10 +0000188 struct ip_tunnel __rcu **tp;
189 struct ip_tunnel *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Eric Dumazet3a43be32010-09-15 11:35:10 +0000191 for (tp = ipip6_bucket(sitn, t);
192 (iter = rtnl_dereference(*tp)) != NULL;
193 tp = &iter->next) {
194 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000195 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 break;
197 }
198 }
199}
200
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700201static void ipip6_tunnel_link(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Eric Dumazet3a43be32010-09-15 11:35:10 +0000203 struct ip_tunnel __rcu **tp = ipip6_bucket(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Eric Dumazetcf778b02012-01-12 04:41:32 +0000205 rcu_assign_pointer(t->next, rtnl_dereference(*tp));
206 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
YOSHIFUJI Hideaki / 吉藤英明e0c93942009-10-11 03:31:34 +0000209static void ipip6_tunnel_clone_6rd(struct net_device *dev, struct sit_net *sitn)
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000210{
211#ifdef CONFIG_IPV6_SIT_6RD
YOSHIFUJI Hideaki / 吉藤英明e0c93942009-10-11 03:31:34 +0000212 struct ip_tunnel *t = netdev_priv(dev);
213
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000214 if (t->dev == sitn->fb_tunnel_dev) {
215 ipv6_addr_set(&t->ip6rd.prefix, htonl(0x20020000), 0, 0, 0);
216 t->ip6rd.relay_prefix = 0;
217 t->ip6rd.prefixlen = 16;
218 t->ip6rd.relay_prefixlen = 0;
219 } else {
220 struct ip_tunnel *t0 = netdev_priv(sitn->fb_tunnel_dev);
221 memcpy(&t->ip6rd, &t0->ip6rd, sizeof(t->ip6rd));
222 }
223#endif
224}
225
Nicolas Dichtelf37234162012-11-14 05:14:07 +0000226static int ipip6_tunnel_create(struct net_device *dev)
227{
228 struct ip_tunnel *t = netdev_priv(dev);
229 struct net *net = dev_net(dev);
230 struct sit_net *sitn = net_generic(net, sit_net_id);
231 int err;
232
233 err = ipip6_tunnel_init(dev);
234 if (err < 0)
235 goto out;
236 ipip6_tunnel_clone_6rd(dev, sitn);
237
Nicolas Dichteld440b722012-11-15 04:06:41 +0000238 if ((__force u16)t->parms.i_flags & SIT_ISATAP)
Nicolas Dichtelf37234162012-11-14 05:14:07 +0000239 dev->priv_flags |= IFF_ISATAP;
240
241 err = register_netdevice(dev);
242 if (err < 0)
243 goto out;
244
245 strcpy(t->parms.name, dev->name);
246 dev->rtnl_link_ops = &sit_link_ops;
247
248 dev_hold(dev);
249
250 ipip6_tunnel_link(sitn, t);
251 return 0;
252
253out:
254 return err;
255}
256
Eric Dumazet3a43be32010-09-15 11:35:10 +0000257static struct ip_tunnel *ipip6_tunnel_locate(struct net *net,
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700258 struct ip_tunnel_parm *parms, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Al Viroe69a4ad2006-11-14 20:56:00 -0800260 __be32 remote = parms->iph.daddr;
261 __be32 local = parms->iph.saddr;
Eric Dumazet3a43be32010-09-15 11:35:10 +0000262 struct ip_tunnel *t, *nt;
263 struct ip_tunnel __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 char name[IFNAMSIZ];
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700266 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Eric Dumazet3a43be32010-09-15 11:35:10 +0000268 for (tp = __ipip6_bucket(sitn, parms);
269 (t = rtnl_dereference(*tp)) != NULL;
270 tp = &t->next) {
Sascha Hlusiak8db99e52009-05-19 12:56:48 +0000271 if (local == t->parms.iph.saddr &&
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000272 remote == t->parms.iph.daddr &&
273 parms->link == t->parms.link) {
Sascha Hlusiak8db99e52009-05-19 12:56:48 +0000274 if (create)
275 return NULL;
276 else
277 return t;
278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280 if (!create)
281 goto failed;
282
283 if (parms->name[0])
284 strlcpy(name, parms->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800285 else
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000286 strcpy(name, "sit%d");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 dev = alloc_netdev(sizeof(*t), name, ipip6_tunnel_setup);
289 if (dev == NULL)
290 return NULL;
291
Pavel Emelyanov7a971462008-04-16 01:17:18 -0700292 dev_net_set(dev, net);
293
Patrick McHardy2941a482006-01-08 22:05:26 -0800294 nt = netdev_priv(dev);
Stephen Hemminger1326c3d2008-11-20 20:33:56 -0800295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 nt->parms = *parms;
Nicolas Dichtelf37234162012-11-14 05:14:07 +0000297 if (ipip6_tunnel_create(dev) < 0)
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800298 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return nt;
301
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800302failed_free:
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000303 ipip6_dev_free(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304failed:
305 return NULL;
306}
307
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000308#define for_each_prl_rcu(start) \
309 for (prl = rcu_dereference(start); \
310 prl; \
311 prl = rcu_dereference(prl->next))
312
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400313static struct ip_tunnel_prl_entry *
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900314__ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400315{
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000316 struct ip_tunnel_prl_entry *prl;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400317
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000318 for_each_prl_rcu(t->prl)
319 if (prl->addr == addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400320 break;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000321 return prl;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400322
323}
324
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700325static int ipip6_tunnel_get_prl(struct ip_tunnel *t,
326 struct ip_tunnel_prl __user *a)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900327{
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700328 struct ip_tunnel_prl kprl, *kp;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900329 struct ip_tunnel_prl_entry *prl;
330 unsigned int cmax, c = 0, ca, len;
331 int ret = 0;
332
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700333 if (copy_from_user(&kprl, a, sizeof(kprl)))
334 return -EFAULT;
335 cmax = kprl.datalen / sizeof(kprl);
336 if (cmax > 1 && kprl.addr != htonl(INADDR_ANY))
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900337 cmax = 1;
338
339 /* For simple GET or for root users,
340 * we try harder to allocate.
341 */
342 kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ?
343 kcalloc(cmax, sizeof(*kp), GFP_KERNEL) :
344 NULL;
345
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000346 rcu_read_lock();
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900347
348 ca = t->prl_count < cmax ? t->prl_count : cmax;
349
350 if (!kp) {
351 /* We don't try hard to allocate much memory for
352 * non-root users.
353 * For root users, retry allocating enough memory for
354 * the answer.
355 */
356 kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC);
357 if (!kp) {
358 ret = -ENOMEM;
359 goto out;
360 }
361 }
362
363 c = 0;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000364 for_each_prl_rcu(t->prl) {
Sascha Hlusiak298bf122009-09-29 11:27:05 +0000365 if (c >= cmax)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900366 break;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700367 if (kprl.addr != htonl(INADDR_ANY) && prl->addr != kprl.addr)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900368 continue;
369 kp[c].addr = prl->addr;
370 kp[c].flags = prl->flags;
371 c++;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700372 if (kprl.addr != htonl(INADDR_ANY))
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900373 break;
374 }
375out:
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000376 rcu_read_unlock();
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900377
378 len = sizeof(*kp) * c;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700379 ret = 0;
380 if ((len && copy_to_user(a + 1, kp, len)) || put_user(len, &a->datalen))
381 ret = -EFAULT;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900382
383 kfree(kp);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900384
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700385 return ret;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900386}
387
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400388static int
389ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg)
390{
391 struct ip_tunnel_prl_entry *p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900392 int err = 0;
393
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900394 if (a->addr == htonl(INADDR_ANY))
395 return -EINVAL;
396
Eric Dumazetaac4ddd2010-06-01 00:26:58 -0700397 ASSERT_RTNL();
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400398
Eric Dumazet3a43be32010-09-15 11:35:10 +0000399 for (p = rtnl_dereference(t->prl); p; p = rtnl_dereference(p->next)) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900400 if (p->addr == a->addr) {
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000401 if (chg) {
402 p->flags = a->flags;
403 goto out;
404 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900405 err = -EEXIST;
406 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400407 }
408 }
409
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900410 if (chg) {
411 err = -ENXIO;
412 goto out;
413 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400414
415 p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL);
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900416 if (!p) {
417 err = -ENOBUFS;
418 goto out;
419 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400420
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400421 p->next = t->prl;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900422 p->addr = a->addr;
423 p->flags = a->flags;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000424 t->prl_count++;
Eric Dumazetcf778b02012-01-12 04:41:32 +0000425 rcu_assign_pointer(t->prl, p);
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900426out:
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900427 return err;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400428}
429
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000430static void prl_list_destroy_rcu(struct rcu_head *head)
431{
432 struct ip_tunnel_prl_entry *p, *n;
433
434 p = container_of(head, struct ip_tunnel_prl_entry, rcu_head);
435 do {
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000436 n = rcu_dereference_protected(p->next, 1);
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000437 kfree(p);
438 p = n;
439 } while (p);
440}
441
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400442static int
443ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
444{
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000445 struct ip_tunnel_prl_entry *x;
446 struct ip_tunnel_prl_entry __rcu **p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900447 int err = 0;
448
Eric Dumazetaac4ddd2010-06-01 00:26:58 -0700449 ASSERT_RTNL();
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400450
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900451 if (a && a->addr != htonl(INADDR_ANY)) {
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000452 for (p = &t->prl;
453 (x = rtnl_dereference(*p)) != NULL;
454 p = &x->next) {
455 if (x->addr == a->addr) {
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400456 *p = x->next;
Paul E. McKenney11c476f32011-05-02 00:56:57 -0700457 kfree_rcu(x, rcu_head);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900458 t->prl_count--;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900459 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400460 }
461 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900462 err = -ENXIO;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400463 } else {
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000464 x = rtnl_dereference(t->prl);
465 if (x) {
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000466 t->prl_count = 0;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000467 call_rcu(&x->rcu_head, prl_list_destroy_rcu);
468 t->prl = NULL;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400469 }
470 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900471out:
Sascha Hlusiak4b27960172009-05-19 12:56:50 +0000472 return err;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400473}
474
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400475static int
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000476isatap_chksrc(struct sk_buff *skb, const struct iphdr *iph, struct ip_tunnel *t)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400477{
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900478 struct ip_tunnel_prl_entry *p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400479 int ok = 1;
480
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000481 rcu_read_lock();
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900482 p = __ipip6_tunnel_locate_prl(t, iph->saddr);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400483 if (p) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900484 if (p->flags & PRL_DEFAULT)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400485 skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT;
486 else
487 skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT;
488 } else {
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000489 const struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr;
490
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400491 if (ipv6_addr_is_isatap(addr6) &&
492 (addr6->s6_addr32[3] == iph->saddr) &&
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -0400493 ipv6_chk_prefix(addr6, t->dev))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400494 skb->ndisc_nodetype = NDISC_NODETYPE_HOST;
495 else
496 ok = 0;
497 }
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000498 rcu_read_unlock();
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400499 return ok;
500}
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502static void ipip6_tunnel_uninit(struct net_device *dev)
503{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700504 struct net *net = dev_net(dev);
505 struct sit_net *sitn = net_generic(net, sit_net_id);
506
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700507 if (dev == sitn->fb_tunnel_dev) {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000508 RCU_INIT_POINTER(sitn->tunnels_wc[0], NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 } else {
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700510 ipip6_tunnel_unlink(sitn, netdev_priv(dev));
YOSHIFUJI Hideaki02e10b92008-04-10 15:41:27 +0900511 ipip6_tunnel_del_prl(netdev_priv(dev), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
Eric Dumazet3a43be32010-09-15 11:35:10 +0000513 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
516
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800517static int ipip6_err(struct sk_buff *skb, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Rami Rosen071f92d2008-05-21 17:47:54 -0700520/* All the routers (except for Linux) return only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 8 bytes of packet payload. It means, that precise relaying of
522 ICMP in the real Internet is absolutely infeasible.
523 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000524 const struct iphdr *iph = (const struct iphdr *)skb->data;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300525 const int type = icmp_hdr(skb)->type;
526 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 struct ip_tunnel *t;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800528 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 switch (type) {
531 default:
532 case ICMP_PARAMETERPROB:
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800533 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 case ICMP_DEST_UNREACH:
536 switch (code) {
537 case ICMP_SR_FAILED:
538 case ICMP_PORT_UNREACH:
539 /* Impossible event. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 default:
542 /* All others are translated to HOST_UNREACH.
543 rfc2003 contains "deep thoughts" about NET_UNREACH,
544 I believe they are just ether pollution. --ANK
545 */
546 break;
547 }
548 break;
549 case ICMP_TIME_EXCEEDED:
550 if (code != ICMP_EXC_TTL)
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800551 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700553 case ICMP_REDIRECT:
554 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800557 err = -ENOENT;
558
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000559 t = ipip6_tunnel_lookup(dev_net(skb->dev),
560 skb->dev,
561 iph->daddr,
562 iph->saddr);
David S. Miller36393392012-06-14 22:21:46 -0700563 if (t == NULL)
564 goto out;
565
566 if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED) {
567 ipv4_update_pmtu(skb, dev_net(skb->dev), info,
568 t->dev->ifindex, 0, IPPROTO_IPV6, 0);
569 err = 0;
570 goto out;
571 }
David S. Millerec18d9a2012-07-12 00:25:15 -0700572 if (type == ICMP_REDIRECT) {
573 ipv4_redirect(skb, dev_net(skb->dev), t->dev->ifindex, 0,
574 IPPROTO_IPV6, 0);
575 err = 0;
576 goto out;
577 }
David S. Miller36393392012-06-14 22:21:46 -0700578
579 if (t->parms.iph.daddr == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 goto out;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800581
582 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
584 goto out;
585
Wei Yongjunbb800872009-02-24 23:37:19 -0800586 if (time_before(jiffies, t->err_time + IPTUNNEL_ERR_TIMEO))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 t->err_count++;
588 else
589 t->err_count = 1;
590 t->err_time = jiffies;
591out:
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800592 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000595static inline bool is_spoofed_6rd(struct ip_tunnel *tunnel, const __be32 v4addr,
596 const struct in6_addr *v6addr)
597{
598 __be32 v4embed = 0;
599 if (check_6rd(tunnel, v6addr, &v4embed) && v4addr != v4embed)
600 return true;
601 return false;
602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604static int ipip6_rcv(struct sk_buff *skb)
605{
Hannes Frederic Sowa1ad759d2013-01-18 09:18:17 +0000606 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 struct ip_tunnel *tunnel;
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000608 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000610 tunnel = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev,
611 iph->saddr, iph->daddr);
612 if (tunnel != NULL) {
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000613 struct pcpu_tstats *tstats;
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700616 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700617 skb_reset_network_header(skb);
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800618 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 skb->protocol = htons(ETH_P_IPV6);
620 skb->pkt_type = PACKET_HOST;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100621
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000622 if (tunnel->dev->priv_flags & IFF_ISATAP) {
623 if (!isatap_chksrc(skb, iph, tunnel)) {
624 tunnel->dev->stats.rx_errors++;
625 goto out;
626 }
627 } else {
628 if (is_spoofed_6rd(tunnel, iph->saddr,
629 &ipv6_hdr(skb)->saddr) ||
630 is_spoofed_6rd(tunnel, iph->daddr,
631 &ipv6_hdr(skb)->daddr)) {
632 tunnel->dev->stats.rx_errors++;
633 goto out;
634 }
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000635 }
636
637 __skb_tunnel_rx(skb, tunnel->dev);
638
639 err = IP_ECN_decapsulate(iph, skb);
640 if (unlikely(err)) {
641 if (log_ecn_error)
642 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
643 &iph->saddr, iph->tos);
644 if (err > 1) {
645 ++tunnel->dev->stats.rx_frame_errors;
646 ++tunnel->dev->stats.rx_errors;
647 goto out;
648 }
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100649 }
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700650
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000651 tstats = this_cpu_ptr(tunnel->dev->tstats);
652 tstats->rx_packets++;
653 tstats->rx_bytes += skb->len;
654
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000655 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return 0;
658 }
659
David McCullough6dcdd1b2010-11-29 19:32:34 +0000660 /* no tunnel matched, let upstream know, ipsec may handle it */
David McCullough6dcdd1b2010-11-29 19:32:34 +0000661 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662out:
David S. Miller36ca34c2008-05-08 23:40:26 -0700663 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return 0;
665}
666
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000667/*
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000668 * If the IPv6 address comes from 6rd / 6to4 (RFC 3056) addr space this function
669 * stores the embedded IPv4 address in v4dst and returns true.
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000670 */
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000671static bool check_6rd(struct ip_tunnel *tunnel, const struct in6_addr *v6dst,
672 __be32 *v4dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000674#ifdef CONFIG_IPV6_SIT_6RD
675 if (ipv6_prefix_equal(v6dst, &tunnel->ip6rd.prefix,
676 tunnel->ip6rd.prefixlen)) {
Eric Dumazet3a43be32010-09-15 11:35:10 +0000677 unsigned int pbw0, pbi0;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000678 int pbi1;
679 u32 d;
680
681 pbw0 = tunnel->ip6rd.prefixlen >> 5;
682 pbi0 = tunnel->ip6rd.prefixlen & 0x1f;
683
YOSHIFUJI Hideaki / 吉藤英明e7db38c2009-10-11 03:44:45 +0000684 d = (ntohl(v6dst->s6_addr32[pbw0]) << pbi0) >>
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000685 tunnel->ip6rd.relay_prefixlen;
686
687 pbi1 = pbi0 - tunnel->ip6rd.relay_prefixlen;
688 if (pbi1 > 0)
YOSHIFUJI Hideaki / 吉藤英明e7db38c2009-10-11 03:44:45 +0000689 d |= ntohl(v6dst->s6_addr32[pbw0 + 1]) >>
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000690 (32 - pbi1);
691
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000692 *v4dst = tunnel->ip6rd.relay_prefix | htonl(d);
693 return true;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000694 }
695#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (v6dst->s6_addr16[0] == htons(0x2002)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900697 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000698 memcpy(v4dst, &v6dst->s6_addr16[1], 4);
699 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000701#endif
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000702 return false;
703}
704
705static inline __be32 try_6rd(struct ip_tunnel *tunnel,
706 const struct in6_addr *v6dst)
707{
708 __be32 dst = 0;
709 check_6rd(tunnel, v6dst, &dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return dst;
711}
712
713/*
714 * This function assumes it is being called from dev_queue_xmit()
715 * and that skb is filled properly by that function.
716 */
717
Stephen Hemminger6fef4c02009-08-31 19:50:41 +0000718static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
719 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Patrick McHardy2941a482006-01-08 22:05:26 -0800721 struct ip_tunnel *tunnel = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000722 const struct iphdr *tiph = &tunnel->parms.iph;
723 const struct ipv6hdr *iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 u8 tos = tunnel->parms.iph.tos;
Herbert Xu292f4f32009-11-09 08:42:01 +0000725 __be16 df = tiph->frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 struct rtable *rt; /* Route to the other host */
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000727 struct net_device *tdev; /* Device to other host */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 struct iphdr *iph; /* Our new IP header */
Chuck Leverc2636b42007-10-23 21:07:32 -0700729 unsigned int max_headroom; /* The extra header space needed */
Al Viroe69a4ad2006-11-14 20:56:00 -0800730 __be32 dst = tiph->daddr;
David S. Miller31e4543d2011-05-03 20:25:42 -0700731 struct flowi4 fl4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 int mtu;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000733 const struct in6_addr *addr6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 int addr_type;
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (skb->protocol != htons(ETH_P_IPV6))
737 goto tx_error;
738
Lionel Elie Mamanec2bceb32011-08-13 14:04:38 +0000739 if (tos == 1)
740 tos = ipv6_get_dsfield(iph6);
741
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100742 /* ISATAP (RFC4214) - must come before 6to4 */
743 if (dev->priv_flags & IFF_ISATAP) {
744 struct neighbour *neigh = NULL;
David S. Miller1e2927b2012-01-26 15:23:21 -0500745 bool do_tx_error = false;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100746
Eric Dumazetadf30902009-06-02 05:19:30 +0000747 if (skb_dst(skb))
David S. Miller1e2927b2012-01-26 15:23:21 -0500748 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100749
750 if (neigh == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +0000751 net_dbg_ratelimited("sit: nexthop == NULL\n");
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100752 goto tx_error;
753 }
754
Eldad Zack3e866702012-04-01 07:49:01 +0000755 addr6 = (const struct in6_addr *)&neigh->primary_key;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100756 addr_type = ipv6_addr_type(addr6);
757
758 if ((addr_type & IPV6_ADDR_UNICAST) &&
759 ipv6_addr_is_isatap(addr6))
760 dst = addr6->s6_addr32[3];
761 else
David S. Miller1e2927b2012-01-26 15:23:21 -0500762 do_tx_error = true;
763
764 neigh_release(neigh);
765 if (do_tx_error)
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100766 goto tx_error;
767 }
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (!dst)
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000770 dst = try_6rd(tunnel, &iph6->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 if (!dst) {
773 struct neighbour *neigh = NULL;
David S. Miller1e2927b2012-01-26 15:23:21 -0500774 bool do_tx_error = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Eric Dumazetadf30902009-06-02 05:19:30 +0000776 if (skb_dst(skb))
David S. Miller1e2927b2012-01-26 15:23:21 -0500777 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 if (neigh == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +0000780 net_dbg_ratelimited("sit: nexthop == NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 goto tx_error;
782 }
783
Eldad Zack3e866702012-04-01 07:49:01 +0000784 addr6 = (const struct in6_addr *)&neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 addr_type = ipv6_addr_type(addr6);
786
787 if (addr_type == IPV6_ADDR_ANY) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700788 addr6 = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 addr_type = ipv6_addr_type(addr6);
790 }
791
David S. Miller1e2927b2012-01-26 15:23:21 -0500792 if ((addr_type & IPV6_ADDR_COMPATv4) != 0)
793 dst = addr6->s6_addr32[3];
794 else
795 do_tx_error = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
David S. Miller1e2927b2012-01-26 15:23:21 -0500797 neigh_release(neigh);
798 if (do_tx_error)
799 goto tx_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801
David S. Miller31e4543d2011-05-03 20:25:42 -0700802 rt = ip_route_output_ports(dev_net(dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500803 dst, tiph->saddr,
804 0, 0,
805 IPPROTO_IPV6, RT_TOS(tos),
806 tunnel->parms.link);
807 if (IS_ERR(rt)) {
808 dev->stats.tx_carrier_errors++;
809 goto tx_error_icmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811 if (rt->rt_type != RTN_UNICAST) {
812 ip_rt_put(rt);
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000813 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 goto tx_error_icmp;
815 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700816 tdev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 if (tdev == dev) {
819 ip_rt_put(rt);
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000820 dev->stats.collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 goto tx_error;
822 }
823
Herbert Xu292f4f32009-11-09 08:42:01 +0000824 if (df) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700825 mtu = dst_mtu(&rt->dst) - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Herbert Xu292f4f32009-11-09 08:42:01 +0000827 if (mtu < 68) {
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000828 dev->stats.collisions++;
Herbert Xu292f4f32009-11-09 08:42:01 +0000829 ip_rt_put(rt);
830 goto tx_error;
831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Herbert Xu292f4f32009-11-09 08:42:01 +0000833 if (mtu < IPV6_MIN_MTU) {
834 mtu = IPV6_MIN_MTU;
835 df = 0;
836 }
837
838 if (tunnel->parms.iph.daddr && skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -0700839 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Herbert Xu292f4f32009-11-09 08:42:01 +0000840
841 if (skb->len > mtu) {
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000842 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Herbert Xu292f4f32009-11-09 08:42:01 +0000843 ip_rt_put(rt);
844 goto tx_error;
845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847
848 if (tunnel->err_count > 0) {
Wei Yongjunbb800872009-02-24 23:37:19 -0800849 if (time_before(jiffies,
850 tunnel->err_time + IPTUNNEL_ERR_TIMEO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 tunnel->err_count--;
852 dst_link_failure(skb);
853 } else
854 tunnel->err_count = 0;
855 }
856
857 /*
858 * Okay, now see if we can stuff it in the buffer as-is.
859 */
860 max_headroom = LL_RESERVED_SPACE(tdev)+sizeof(struct iphdr);
861
Patrick McHardycfbba492007-07-09 15:33:40 -0700862 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
863 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
865 if (!new_skb) {
866 ip_rt_put(rt);
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000867 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000869 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871 if (skb->sk)
872 skb_set_owner_w(new_skb, skb->sk);
873 dev_kfree_skb(skb);
874 skb = new_skb;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700875 iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700878 skb->transport_header = skb->network_header;
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700879 skb_push(skb, sizeof(struct iphdr));
880 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800882 IPCB(skb)->flags = 0;
Eric Dumazetadf30902009-06-02 05:19:30 +0000883 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -0700884 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 /*
887 * Push down and install the IPIP header.
888 */
889
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700890 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 iph->version = 4;
892 iph->ihl = sizeof(struct iphdr)>>2;
Herbert Xu292f4f32009-11-09 08:42:01 +0000893 iph->frag_off = df;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 iph->protocol = IPPROTO_IPV6;
895 iph->tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
David S. Miller301102c2011-05-04 12:46:24 -0700896 iph->daddr = fl4.daddr;
897 iph->saddr = fl4.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 if ((iph->ttl = tiph->ttl) == 0)
900 iph->ttl = iph6->hop_limit;
901
Cong Wang6aed0c82013-03-09 16:38:39 +0000902 skb->ip_summed = CHECKSUM_NONE;
903 ip_select_ident(iph, skb_dst(skb), NULL);
Amerigo Wangaa0010f2012-11-11 21:52:33 +0000904 iptunnel_xmit(skb, dev);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000905 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907tx_error_icmp:
908 dst_link_failure(skb);
909tx_error:
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000910 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000912 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800915static void ipip6_tunnel_bind_dev(struct net_device *dev)
916{
917 struct net_device *tdev = NULL;
918 struct ip_tunnel *tunnel;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000919 const struct iphdr *iph;
David S. Miller31e4543d2011-05-03 20:25:42 -0700920 struct flowi4 fl4;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800921
922 tunnel = netdev_priv(dev);
923 iph = &tunnel->parms.iph;
924
925 if (iph->daddr) {
David S. Miller31e4543d2011-05-03 20:25:42 -0700926 struct rtable *rt = ip_route_output_ports(dev_net(dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500927 iph->daddr, iph->saddr,
928 0, 0,
929 IPPROTO_IPV6,
930 RT_TOS(iph->tos),
931 tunnel->parms.link);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800932
933 if (!IS_ERR(rt)) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700934 tdev = rt->dst.dev;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800935 ip_rt_put(rt);
936 }
937 dev->flags |= IFF_POINTOPOINT;
938 }
939
940 if (!tdev && tunnel->parms.link)
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700941 tdev = __dev_get_by_index(dev_net(dev), tunnel->parms.link);
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800942
943 if (tdev) {
944 dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr);
945 dev->mtu = tdev->mtu - sizeof(struct iphdr);
946 if (dev->mtu < IPV6_MIN_MTU)
947 dev->mtu = IPV6_MIN_MTU;
948 }
949 dev->iflink = tunnel->parms.link;
950}
951
Nicolas Dichtelf37234162012-11-14 05:14:07 +0000952static void ipip6_tunnel_update(struct ip_tunnel *t, struct ip_tunnel_parm *p)
953{
954 struct net *net = dev_net(t->dev);
955 struct sit_net *sitn = net_generic(net, sit_net_id);
956
957 ipip6_tunnel_unlink(sitn, t);
958 synchronize_net();
959 t->parms.iph.saddr = p->iph.saddr;
960 t->parms.iph.daddr = p->iph.daddr;
961 memcpy(t->dev->dev_addr, &p->iph.saddr, 4);
962 memcpy(t->dev->broadcast, &p->iph.daddr, 4);
963 ipip6_tunnel_link(sitn, t);
964 t->parms.iph.ttl = p->iph.ttl;
965 t->parms.iph.tos = p->iph.tos;
966 if (t->parms.link != p->link) {
967 t->parms.link = p->link;
968 ipip6_tunnel_bind_dev(t->dev);
969 }
970 netdev_state_change(t->dev);
971}
972
Nicolas Dichtele2f1f072012-11-19 22:41:45 +0000973#ifdef CONFIG_IPV6_SIT_6RD
974static int ipip6_tunnel_update_6rd(struct ip_tunnel *t,
975 struct ip_tunnel_6rd *ip6rd)
976{
977 struct in6_addr prefix;
978 __be32 relay_prefix;
979
980 if (ip6rd->relay_prefixlen > 32 ||
981 ip6rd->prefixlen + (32 - ip6rd->relay_prefixlen) > 64)
982 return -EINVAL;
983
984 ipv6_addr_prefix(&prefix, &ip6rd->prefix, ip6rd->prefixlen);
985 if (!ipv6_addr_equal(&prefix, &ip6rd->prefix))
986 return -EINVAL;
987 if (ip6rd->relay_prefixlen)
988 relay_prefix = ip6rd->relay_prefix &
989 htonl(0xffffffffUL <<
990 (32 - ip6rd->relay_prefixlen));
991 else
992 relay_prefix = 0;
993 if (relay_prefix != ip6rd->relay_prefix)
994 return -EINVAL;
995
996 t->ip6rd.prefix = prefix;
997 t->ip6rd.relay_prefix = relay_prefix;
998 t->ip6rd.prefixlen = ip6rd->prefixlen;
999 t->ip6rd.relay_prefixlen = ip6rd->relay_prefixlen;
1000 netdev_state_change(t->dev);
1001 return 0;
1002}
1003#endif
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005static int
1006ipip6_tunnel_ioctl (struct net_device *dev, struct ifreq *ifr, int cmd)
1007{
1008 int err = 0;
1009 struct ip_tunnel_parm p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001010 struct ip_tunnel_prl prl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 struct ip_tunnel *t;
Pavel Emelyanovca8def12008-04-16 01:15:39 -07001012 struct net *net = dev_net(dev);
1013 struct sit_net *sitn = net_generic(net, sit_net_id);
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001014#ifdef CONFIG_IPV6_SIT_6RD
1015 struct ip_tunnel_6rd ip6rd;
1016#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 switch (cmd) {
1019 case SIOCGETTUNNEL:
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001020#ifdef CONFIG_IPV6_SIT_6RD
1021 case SIOCGET6RD:
1022#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 t = NULL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001024 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
1026 err = -EFAULT;
1027 break;
1028 }
Pavel Emelyanovca8def12008-04-16 01:15:39 -07001029 t = ipip6_tunnel_locate(net, &p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001032 t = netdev_priv(dev);
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001033
1034 err = -EFAULT;
1035 if (cmd == SIOCGETTUNNEL) {
1036 memcpy(&p, &t->parms, sizeof(p));
1037 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p,
1038 sizeof(p)))
1039 goto done;
1040#ifdef CONFIG_IPV6_SIT_6RD
1041 } else {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001042 ip6rd.prefix = t->ip6rd.prefix;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001043 ip6rd.relay_prefix = t->ip6rd.relay_prefix;
1044 ip6rd.prefixlen = t->ip6rd.prefixlen;
1045 ip6rd.relay_prefixlen = t->ip6rd.relay_prefixlen;
1046 if (copy_to_user(ifr->ifr_ifru.ifru_data, &ip6rd,
1047 sizeof(ip6rd)))
1048 goto done;
1049#endif
1050 }
1051 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 break;
1053
1054 case SIOCADDTUNNEL:
1055 case SIOCCHGTUNNEL:
1056 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001057 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 goto done;
1059
1060 err = -EFAULT;
1061 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1062 goto done;
1063
1064 err = -EINVAL;
1065 if (p.iph.version != 4 || p.iph.protocol != IPPROTO_IPV6 ||
1066 p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
1067 goto done;
1068 if (p.iph.ttl)
1069 p.iph.frag_off |= htons(IP_DF);
1070
Pavel Emelyanovca8def12008-04-16 01:15:39 -07001071 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001073 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (t != NULL) {
1075 if (t->dev != dev) {
1076 err = -EEXIST;
1077 break;
1078 }
1079 } else {
1080 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
1081 (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
1082 err = -EINVAL;
1083 break;
1084 }
Patrick McHardy2941a482006-01-08 22:05:26 -08001085 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
Nicolas Dichtelf9cd5a52012-11-14 05:14:04 +00001087
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001088 ipip6_tunnel_update(t, &p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
1090
1091 if (t) {
1092 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
1094 err = -EFAULT;
1095 } else
1096 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1097 break;
1098
1099 case SIOCDELTUNNEL:
1100 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001101 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 goto done;
1103
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001104 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 err = -EFAULT;
1106 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1107 goto done;
1108 err = -ENOENT;
Pavel Emelyanovca8def12008-04-16 01:15:39 -07001109 if ((t = ipip6_tunnel_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 goto done;
1111 err = -EPERM;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001112 if (t == netdev_priv(sitn->fb_tunnel_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 goto done;
1114 dev = t->dev;
1115 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001116 unregister_netdevice(dev);
1117 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 break;
1119
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001120 case SIOCGETPRL:
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -07001121 err = -EINVAL;
1122 if (dev == sitn->fb_tunnel_dev)
1123 goto done;
1124 err = -ENOENT;
1125 if (!(t = netdev_priv(dev)))
1126 goto done;
1127 err = ipip6_tunnel_get_prl(t, ifr->ifr_ifru.ifru_data);
1128 break;
1129
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001130 case SIOCADDPRL:
1131 case SIOCDELPRL:
1132 case SIOCCHGPRL:
1133 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001134 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001135 goto done;
1136 err = -EINVAL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001137 if (dev == sitn->fb_tunnel_dev)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001138 goto done;
1139 err = -EFAULT;
1140 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
1141 goto done;
1142 err = -ENOENT;
1143 if (!(t = netdev_priv(dev)))
1144 goto done;
1145
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001146 switch (cmd) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001147 case SIOCDELPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001148 err = ipip6_tunnel_del_prl(t, &prl);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001149 break;
1150 case SIOCADDPRL:
1151 case SIOCCHGPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001152 err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001153 break;
1154 }
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -07001155 netdev_state_change(dev);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001156 break;
1157
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001158#ifdef CONFIG_IPV6_SIT_6RD
1159 case SIOCADD6RD:
1160 case SIOCCHG6RD:
1161 case SIOCDEL6RD:
1162 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001163 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001164 goto done;
1165
1166 err = -EFAULT;
1167 if (copy_from_user(&ip6rd, ifr->ifr_ifru.ifru_data,
1168 sizeof(ip6rd)))
1169 goto done;
1170
1171 t = netdev_priv(dev);
1172
1173 if (cmd != SIOCDEL6RD) {
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001174 err = ipip6_tunnel_update_6rd(t, &ip6rd);
1175 if (err < 0)
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001176 goto done;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001177 } else
YOSHIFUJI Hideaki / 吉藤英明e0c93942009-10-11 03:31:34 +00001178 ipip6_tunnel_clone_6rd(dev, sitn);
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001179
1180 err = 0;
1181 break;
1182#endif
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 default:
1185 err = -EINVAL;
1186 }
1187
1188done:
1189 return err;
1190}
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192static int ipip6_tunnel_change_mtu(struct net_device *dev, int new_mtu)
1193{
1194 if (new_mtu < IPV6_MIN_MTU || new_mtu > 0xFFF8 - sizeof(struct iphdr))
1195 return -EINVAL;
1196 dev->mtu = new_mtu;
1197 return 0;
1198}
1199
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001200static const struct net_device_ops ipip6_netdev_ops = {
1201 .ndo_uninit = ipip6_tunnel_uninit,
1202 .ndo_start_xmit = ipip6_tunnel_xmit,
1203 .ndo_do_ioctl = ipip6_tunnel_ioctl,
1204 .ndo_change_mtu = ipip6_tunnel_change_mtu,
stephen hemminger87b6d212012-04-12 06:31:16 +00001205 .ndo_get_stats64= ipip6_get_stats64,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001206};
1207
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001208static void ipip6_dev_free(struct net_device *dev)
1209{
1210 free_percpu(dev->tstats);
1211 free_netdev(dev);
1212}
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214static void ipip6_tunnel_setup(struct net_device *dev)
1215{
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001216 dev->netdev_ops = &ipip6_netdev_ops;
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001217 dev->destructor = ipip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 dev->type = ARPHRD_SIT;
1220 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr);
Kris Katterjohn46f25df2006-01-05 16:35:42 -08001221 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 dev->flags = IFF_NOARP;
Sascha Hlusiakf2ba0252009-07-11 20:30:52 -07001223 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 dev->iflink = 0;
1225 dev->addr_len = 4;
Pavel Emelyanov7a971462008-04-16 01:17:18 -07001226 dev->features |= NETIF_F_NETNS_LOCAL;
Eric Dumazet8df40d12010-09-28 02:53:41 +00001227 dev->features |= NETIF_F_LLTX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001230static int ipip6_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001232 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 tunnel->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 memcpy(dev->dev_addr, &tunnel->parms.iph.saddr, 4);
1237 memcpy(dev->broadcast, &tunnel->parms.iph.daddr, 4);
1238
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001239 ipip6_tunnel_bind_dev(dev);
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001240 dev->tstats = alloc_percpu(struct pcpu_tstats);
1241 if (!dev->tstats)
1242 return -ENOMEM;
1243
1244 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
Eric Dumazetdd4080e2010-09-28 02:17:58 +00001247static int __net_init ipip6_fb_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Patrick McHardy2941a482006-01-08 22:05:26 -08001249 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 struct iphdr *iph = &tunnel->parms.iph;
Pavel Emelyanov29182172008-04-16 01:16:38 -07001251 struct net *net = dev_net(dev);
1252 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 tunnel->dev = dev;
1255 strcpy(tunnel->parms.name, dev->name);
1256
1257 iph->version = 4;
1258 iph->protocol = IPPROTO_IPV6;
1259 iph->ihl = 5;
1260 iph->ttl = 64;
1261
Eric Dumazetdd4080e2010-09-28 02:17:58 +00001262 dev->tstats = alloc_percpu(struct pcpu_tstats);
1263 if (!dev->tstats)
1264 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 dev_hold(dev);
Eric Dumazetcf778b02012-01-12 04:41:32 +00001266 rcu_assign_pointer(sitn->tunnels_wc[0], tunnel);
Eric Dumazetdd4080e2010-09-28 02:17:58 +00001267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001270static void ipip6_netlink_parms(struct nlattr *data[],
1271 struct ip_tunnel_parm *parms)
1272{
1273 memset(parms, 0, sizeof(*parms));
1274
1275 parms->iph.version = 4;
1276 parms->iph.protocol = IPPROTO_IPV6;
1277 parms->iph.ihl = 5;
1278 parms->iph.ttl = 64;
1279
1280 if (!data)
1281 return;
1282
1283 if (data[IFLA_IPTUN_LINK])
1284 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1285
1286 if (data[IFLA_IPTUN_LOCAL])
Nicolas Dichteld440b722012-11-15 04:06:41 +00001287 parms->iph.saddr = nla_get_be32(data[IFLA_IPTUN_LOCAL]);
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001288
1289 if (data[IFLA_IPTUN_REMOTE])
Nicolas Dichteld440b722012-11-15 04:06:41 +00001290 parms->iph.daddr = nla_get_be32(data[IFLA_IPTUN_REMOTE]);
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001291
1292 if (data[IFLA_IPTUN_TTL]) {
1293 parms->iph.ttl = nla_get_u8(data[IFLA_IPTUN_TTL]);
1294 if (parms->iph.ttl)
1295 parms->iph.frag_off = htons(IP_DF);
1296 }
1297
1298 if (data[IFLA_IPTUN_TOS])
1299 parms->iph.tos = nla_get_u8(data[IFLA_IPTUN_TOS]);
1300
1301 if (!data[IFLA_IPTUN_PMTUDISC] || nla_get_u8(data[IFLA_IPTUN_PMTUDISC]))
1302 parms->iph.frag_off = htons(IP_DF);
1303
1304 if (data[IFLA_IPTUN_FLAGS])
Nicolas Dichteld440b722012-11-15 04:06:41 +00001305 parms->i_flags = nla_get_be16(data[IFLA_IPTUN_FLAGS]);
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001306}
1307
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001308#ifdef CONFIG_IPV6_SIT_6RD
1309/* This function returns true when 6RD attributes are present in the nl msg */
1310static bool ipip6_netlink_6rd_parms(struct nlattr *data[],
1311 struct ip_tunnel_6rd *ip6rd)
1312{
1313 bool ret = false;
1314 memset(ip6rd, 0, sizeof(*ip6rd));
1315
1316 if (!data)
1317 return ret;
1318
1319 if (data[IFLA_IPTUN_6RD_PREFIX]) {
1320 ret = true;
1321 nla_memcpy(&ip6rd->prefix, data[IFLA_IPTUN_6RD_PREFIX],
1322 sizeof(struct in6_addr));
1323 }
1324
1325 if (data[IFLA_IPTUN_6RD_RELAY_PREFIX]) {
1326 ret = true;
1327 ip6rd->relay_prefix =
1328 nla_get_be32(data[IFLA_IPTUN_6RD_RELAY_PREFIX]);
1329 }
1330
1331 if (data[IFLA_IPTUN_6RD_PREFIXLEN]) {
1332 ret = true;
1333 ip6rd->prefixlen = nla_get_u16(data[IFLA_IPTUN_6RD_PREFIXLEN]);
1334 }
1335
1336 if (data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]) {
1337 ret = true;
1338 ip6rd->relay_prefixlen =
1339 nla_get_u16(data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]);
1340 }
1341
1342 return ret;
1343}
1344#endif
1345
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001346static int ipip6_newlink(struct net *src_net, struct net_device *dev,
1347 struct nlattr *tb[], struct nlattr *data[])
1348{
1349 struct net *net = dev_net(dev);
1350 struct ip_tunnel *nt;
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001351#ifdef CONFIG_IPV6_SIT_6RD
1352 struct ip_tunnel_6rd ip6rd;
1353#endif
1354 int err;
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001355
1356 nt = netdev_priv(dev);
1357 ipip6_netlink_parms(data, &nt->parms);
1358
1359 if (ipip6_tunnel_locate(net, &nt->parms, 0))
1360 return -EEXIST;
1361
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001362 err = ipip6_tunnel_create(dev);
1363 if (err < 0)
1364 return err;
1365
1366#ifdef CONFIG_IPV6_SIT_6RD
1367 if (ipip6_netlink_6rd_parms(data, &ip6rd))
1368 err = ipip6_tunnel_update_6rd(nt, &ip6rd);
1369#endif
1370
1371 return err;
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001372}
1373
1374static int ipip6_changelink(struct net_device *dev, struct nlattr *tb[],
1375 struct nlattr *data[])
1376{
1377 struct ip_tunnel *t;
1378 struct ip_tunnel_parm p;
1379 struct net *net = dev_net(dev);
1380 struct sit_net *sitn = net_generic(net, sit_net_id);
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001381#ifdef CONFIG_IPV6_SIT_6RD
1382 struct ip_tunnel_6rd ip6rd;
1383#endif
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001384
1385 if (dev == sitn->fb_tunnel_dev)
1386 return -EINVAL;
1387
1388 ipip6_netlink_parms(data, &p);
1389
1390 if (((dev->flags & IFF_POINTOPOINT) && !p.iph.daddr) ||
1391 (!(dev->flags & IFF_POINTOPOINT) && p.iph.daddr))
1392 return -EINVAL;
1393
1394 t = ipip6_tunnel_locate(net, &p, 0);
1395
1396 if (t) {
1397 if (t->dev != dev)
1398 return -EEXIST;
1399 } else
1400 t = netdev_priv(dev);
1401
1402 ipip6_tunnel_update(t, &p);
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001403
1404#ifdef CONFIG_IPV6_SIT_6RD
1405 if (ipip6_netlink_6rd_parms(data, &ip6rd))
1406 return ipip6_tunnel_update_6rd(t, &ip6rd);
1407#endif
1408
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001409 return 0;
1410}
1411
Nicolas Dichtele4c94a92012-11-14 05:14:06 +00001412static size_t ipip6_get_size(const struct net_device *dev)
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001413{
1414 return
1415 /* IFLA_IPTUN_LINK */
1416 nla_total_size(4) +
1417 /* IFLA_IPTUN_LOCAL */
1418 nla_total_size(4) +
1419 /* IFLA_IPTUN_REMOTE */
1420 nla_total_size(4) +
1421 /* IFLA_IPTUN_TTL */
1422 nla_total_size(1) +
1423 /* IFLA_IPTUN_TOS */
1424 nla_total_size(1) +
Nicolas Dichtela12c9a82012-11-14 05:14:05 +00001425 /* IFLA_IPTUN_PMTUDISC */
1426 nla_total_size(1) +
1427 /* IFLA_IPTUN_FLAGS */
1428 nla_total_size(2) +
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001429#ifdef CONFIG_IPV6_SIT_6RD
1430 /* IFLA_IPTUN_6RD_PREFIX */
1431 nla_total_size(sizeof(struct in6_addr)) +
1432 /* IFLA_IPTUN_6RD_RELAY_PREFIX */
1433 nla_total_size(4) +
1434 /* IFLA_IPTUN_6RD_PREFIXLEN */
1435 nla_total_size(2) +
1436 /* IFLA_IPTUN_6RD_RELAY_PREFIXLEN */
1437 nla_total_size(2) +
1438#endif
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001439 0;
1440}
1441
Nicolas Dichtele4c94a92012-11-14 05:14:06 +00001442static int ipip6_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001443{
1444 struct ip_tunnel *tunnel = netdev_priv(dev);
1445 struct ip_tunnel_parm *parm = &tunnel->parms;
1446
1447 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1448 nla_put_be32(skb, IFLA_IPTUN_LOCAL, parm->iph.saddr) ||
1449 nla_put_be32(skb, IFLA_IPTUN_REMOTE, parm->iph.daddr) ||
1450 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->iph.ttl) ||
Nicolas Dichtela12c9a82012-11-14 05:14:05 +00001451 nla_put_u8(skb, IFLA_IPTUN_TOS, parm->iph.tos) ||
1452 nla_put_u8(skb, IFLA_IPTUN_PMTUDISC,
1453 !!(parm->iph.frag_off & htons(IP_DF))) ||
Nicolas Dichteld440b722012-11-15 04:06:41 +00001454 nla_put_be16(skb, IFLA_IPTUN_FLAGS, parm->i_flags))
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001455 goto nla_put_failure;
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001456
1457#ifdef CONFIG_IPV6_SIT_6RD
1458 if (nla_put(skb, IFLA_IPTUN_6RD_PREFIX, sizeof(struct in6_addr),
1459 &tunnel->ip6rd.prefix) ||
1460 nla_put_be32(skb, IFLA_IPTUN_6RD_RELAY_PREFIX,
1461 tunnel->ip6rd.relay_prefix) ||
1462 nla_put_u16(skb, IFLA_IPTUN_6RD_PREFIXLEN,
1463 tunnel->ip6rd.prefixlen) ||
1464 nla_put_u16(skb, IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
1465 tunnel->ip6rd.relay_prefixlen))
1466 goto nla_put_failure;
1467#endif
1468
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001469 return 0;
1470
1471nla_put_failure:
1472 return -EMSGSIZE;
1473}
1474
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001475static const struct nla_policy ipip6_policy[IFLA_IPTUN_MAX + 1] = {
1476 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1477 [IFLA_IPTUN_LOCAL] = { .type = NLA_U32 },
1478 [IFLA_IPTUN_REMOTE] = { .type = NLA_U32 },
1479 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1480 [IFLA_IPTUN_TOS] = { .type = NLA_U8 },
1481 [IFLA_IPTUN_PMTUDISC] = { .type = NLA_U8 },
1482 [IFLA_IPTUN_FLAGS] = { .type = NLA_U16 },
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001483#ifdef CONFIG_IPV6_SIT_6RD
1484 [IFLA_IPTUN_6RD_PREFIX] = { .len = sizeof(struct in6_addr) },
1485 [IFLA_IPTUN_6RD_RELAY_PREFIX] = { .type = NLA_U32 },
1486 [IFLA_IPTUN_6RD_PREFIXLEN] = { .type = NLA_U16 },
1487 [IFLA_IPTUN_6RD_RELAY_PREFIXLEN] = { .type = NLA_U16 },
1488#endif
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001489};
1490
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001491static struct rtnl_link_ops sit_link_ops __read_mostly = {
1492 .kind = "sit",
1493 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001494 .policy = ipip6_policy,
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001495 .priv_size = sizeof(struct ip_tunnel),
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001496 .setup = ipip6_tunnel_setup,
1497 .newlink = ipip6_newlink,
1498 .changelink = ipip6_changelink,
Nicolas Dichtele4c94a92012-11-14 05:14:06 +00001499 .get_size = ipip6_get_size,
1500 .fill_info = ipip6_fill_info,
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001501};
1502
Eric Dumazet6dcd8142010-08-30 07:04:14 +00001503static struct xfrm_tunnel sit_handler __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 .handler = ipip6_rcv,
1505 .err_handler = ipip6_err,
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001506 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507};
1508
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001509static void __net_exit sit_destroy_tunnels(struct sit_net *sitn, struct list_head *head)
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001510{
1511 int prio;
1512
1513 for (prio = 1; prio < 4; prio++) {
1514 int h;
1515 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet753ea8e2011-01-20 07:16:24 +00001516 struct ip_tunnel *t;
Eric Dumazet62808f92009-10-28 04:37:43 +00001517
Eric Dumazet753ea8e2011-01-20 07:16:24 +00001518 t = rtnl_dereference(sitn->tunnels[prio][h]);
Eric Dumazet62808f92009-10-28 04:37:43 +00001519 while (t != NULL) {
1520 unregister_netdevice_queue(t->dev, head);
Eric Dumazet753ea8e2011-01-20 07:16:24 +00001521 t = rtnl_dereference(t->next);
Eric Dumazet62808f92009-10-28 04:37:43 +00001522 }
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001523 }
1524 }
1525}
1526
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001527static int __net_init sit_init_net(struct net *net)
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001528{
Eric W. Biederman67101172009-11-29 15:46:16 +00001529 struct sit_net *sitn = net_generic(net, sit_net_id);
Ted Feng72b36012011-12-08 00:46:21 +00001530 struct ip_tunnel *t;
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001531 int err;
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001532
Pavel Emelyanov29182172008-04-16 01:16:38 -07001533 sitn->tunnels[0] = sitn->tunnels_wc;
1534 sitn->tunnels[1] = sitn->tunnels_l;
1535 sitn->tunnels[2] = sitn->tunnels_r;
1536 sitn->tunnels[3] = sitn->tunnels_r_l;
1537
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001538 sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
1539 ipip6_tunnel_setup);
1540 if (!sitn->fb_tunnel_dev) {
1541 err = -ENOMEM;
1542 goto err_alloc_dev;
1543 }
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001544 dev_net_set(sitn->fb_tunnel_dev, net);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001545
Eric Dumazetdd4080e2010-09-28 02:17:58 +00001546 err = ipip6_fb_tunnel_init(sitn->fb_tunnel_dev);
1547 if (err)
1548 goto err_dev_free;
1549
YOSHIFUJI Hideaki / 吉藤英明e0c93942009-10-11 03:31:34 +00001550 ipip6_tunnel_clone_6rd(sitn->fb_tunnel_dev, sitn);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001551
1552 if ((err = register_netdev(sitn->fb_tunnel_dev)))
1553 goto err_reg_dev;
1554
Ted Feng72b36012011-12-08 00:46:21 +00001555 t = netdev_priv(sitn->fb_tunnel_dev);
1556
1557 strcpy(t->parms.name, sitn->fb_tunnel_dev->name);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001558 return 0;
1559
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001560err_reg_dev:
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001561 dev_put(sitn->fb_tunnel_dev);
Eric Dumazetdd4080e2010-09-28 02:17:58 +00001562err_dev_free:
1563 ipip6_dev_free(sitn->fb_tunnel_dev);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001564err_alloc_dev:
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001565 return err;
1566}
1567
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001568static void __net_exit sit_exit_net(struct net *net)
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001569{
Eric W. Biederman67101172009-11-29 15:46:16 +00001570 struct sit_net *sitn = net_generic(net, sit_net_id);
Eric Dumazet62808f92009-10-28 04:37:43 +00001571 LIST_HEAD(list);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001572
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001573 rtnl_lock();
Eric Dumazet62808f92009-10-28 04:37:43 +00001574 sit_destroy_tunnels(sitn, &list);
1575 unregister_netdevice_queue(sitn->fb_tunnel_dev, &list);
1576 unregister_netdevice_many(&list);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001577 rtnl_unlock();
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001578}
1579
1580static struct pernet_operations sit_net_ops = {
1581 .init = sit_init_net,
1582 .exit = sit_exit_net,
Eric W. Biederman67101172009-11-29 15:46:16 +00001583 .id = &sit_net_id,
1584 .size = sizeof(struct sit_net),
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001585};
1586
Adrian Bunk89c89452006-11-20 16:56:48 -08001587static void __exit sit_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001589 rtnl_link_unregister(&sit_link_ops);
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001590 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001591
Eric W. Biederman67101172009-11-29 15:46:16 +00001592 unregister_pernet_device(&sit_net_ops);
Eric Dumazetef9a9d12009-10-23 17:51:26 +00001593 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
Adrian Bunk89c89452006-11-20 16:56:48 -08001596static int __init sit_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
1598 int err;
1599
Joe Perchesf3213832012-05-15 14:11:53 +00001600 pr_info("IPv6 over IPv4 tunneling driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Eric W. Biederman67101172009-11-29 15:46:16 +00001602 err = register_pernet_device(&sit_net_ops);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001603 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001604 return err;
1605 err = xfrm4_tunnel_register(&sit_handler, AF_INET6);
1606 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001607 pr_info("%s: can't add protocol\n", __func__);
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001608 goto xfrm_tunnel_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001609 }
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001610 err = rtnl_link_register(&sit_link_ops);
1611 if (err < 0)
1612 goto rtnl_link_failed;
1613
1614out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return err;
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001616
1617rtnl_link_failed:
1618 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
1619xfrm_tunnel_failed:
1620 unregister_pernet_device(&sit_net_ops);
1621 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622}
Joerg Roedel989e5b92006-10-10 14:47:44 -07001623
1624module_init(sit_init);
1625module_exit(sit_cleanup);
Jan Dittmer39c85082006-10-13 15:05:53 -07001626MODULE_LICENSE("GPL");
Vasiliy Kulikov8909c9a2011-03-02 00:33:13 +03001627MODULE_ALIAS_NETDEV("sit0");