blob: cfba99b2c2a4958144ff4c2a2faa1d98192d7310 [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);
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +000075static struct rtnl_link_ops sit_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Eric Dumazetf99189b2009-11-17 10:42:49 +000077static int sit_net_id __read_mostly;
Pavel Emelyanov8190d902008-04-16 01:15:17 -070078struct sit_net {
Eric Dumazet3a43be32010-09-15 11:35:10 +000079 struct ip_tunnel __rcu *tunnels_r_l[HASH_SIZE];
80 struct ip_tunnel __rcu *tunnels_r[HASH_SIZE];
81 struct ip_tunnel __rcu *tunnels_l[HASH_SIZE];
82 struct ip_tunnel __rcu *tunnels_wc[1];
83 struct ip_tunnel __rcu **tunnels[4];
Pavel Emelyanov29182172008-04-16 01:16:38 -070084
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -070085 struct net_device *fb_tunnel_dev;
Pavel Emelyanov8190d902008-04-16 01:15:17 -070086};
87
stephen hemminger87b6d212012-04-12 06:31:16 +000088static struct rtnl_link_stats64 *ipip6_get_stats64(struct net_device *dev,
89 struct rtnl_link_stats64 *tot)
Eric Dumazet15fc1f72010-09-27 00:38:18 +000090{
Eric Dumazet15fc1f72010-09-27 00:38:18 +000091 int i;
92
93 for_each_possible_cpu(i) {
94 const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
stephen hemminger87b6d212012-04-12 06:31:16 +000095 u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
96 unsigned int start;
Eric Dumazet15fc1f72010-09-27 00:38:18 +000097
stephen hemminger87b6d212012-04-12 06:31:16 +000098 do {
99 start = u64_stats_fetch_begin_bh(&tstats->syncp);
100 rx_packets = tstats->rx_packets;
101 tx_packets = tstats->tx_packets;
102 rx_bytes = tstats->rx_bytes;
103 tx_bytes = tstats->tx_bytes;
104 } while (u64_stats_fetch_retry_bh(&tstats->syncp, start));
105
106 tot->rx_packets += rx_packets;
107 tot->tx_packets += tx_packets;
108 tot->rx_bytes += rx_bytes;
109 tot->tx_bytes += tx_bytes;
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000110 }
stephen hemminger87b6d212012-04-12 06:31:16 +0000111
112 tot->rx_errors = dev->stats.rx_errors;
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000113 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger87b6d212012-04-12 06:31:16 +0000114 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
115 tot->tx_carrier_errors = dev->stats.tx_carrier_errors;
116 tot->tx_dropped = dev->stats.tx_dropped;
117 tot->tx_aborted_errors = dev->stats.tx_aborted_errors;
118 tot->tx_errors = dev->stats.tx_errors;
119
120 return tot;
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000121}
stephen hemminger87b6d212012-04-12 06:31:16 +0000122
Eric Dumazet4543c102009-10-23 17:52:14 +0000123/*
124 * Must be invoked with rcu_read_lock
125 */
Eldad Zack3e866702012-04-01 07:49:01 +0000126static struct ip_tunnel *ipip6_tunnel_lookup(struct net *net,
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000127 struct net_device *dev, __be32 remote, __be32 local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Eric Dumazet3a43be32010-09-15 11:35:10 +0000129 unsigned int h0 = HASH(remote);
130 unsigned int h1 = HASH(local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 struct ip_tunnel *t;
Pavel Emelyanov29182172008-04-16 01:16:38 -0700132 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Amerigo Wange086cad2012-11-11 21:52:34 +0000134 for_each_ip_tunnel_rcu(t, sitn->tunnels_r_l[h0 ^ h1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (local == t->parms.iph.saddr &&
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000136 remote == t->parms.iph.daddr &&
137 (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
138 (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return t;
140 }
Amerigo Wange086cad2012-11-11 21:52:34 +0000141 for_each_ip_tunnel_rcu(t, sitn->tunnels_r[h0]) {
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000142 if (remote == t->parms.iph.daddr &&
143 (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
144 (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return t;
146 }
Amerigo Wange086cad2012-11-11 21:52:34 +0000147 for_each_ip_tunnel_rcu(t, sitn->tunnels_l[h1]) {
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000148 if (local == t->parms.iph.saddr &&
149 (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
150 (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return t;
152 }
Eric Dumazet4543c102009-10-23 17:52:14 +0000153 t = rcu_dereference(sitn->tunnels_wc[0]);
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000154 if ((t != NULL) && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return t;
156 return NULL;
157}
158
Eric Dumazet3a43be32010-09-15 11:35:10 +0000159static struct ip_tunnel __rcu **__ipip6_bucket(struct sit_net *sitn,
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700160 struct ip_tunnel_parm *parms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900162 __be32 remote = parms->iph.daddr;
163 __be32 local = parms->iph.saddr;
Eric Dumazet3a43be32010-09-15 11:35:10 +0000164 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 int prio = 0;
166
167 if (remote) {
168 prio |= 2;
169 h ^= HASH(remote);
170 }
171 if (local) {
172 prio |= 1;
173 h ^= HASH(local);
174 }
Pavel Emelyanov29182172008-04-16 01:16:38 -0700175 return &sitn->tunnels[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Eric Dumazet3a43be32010-09-15 11:35:10 +0000178static inline struct ip_tunnel __rcu **ipip6_bucket(struct sit_net *sitn,
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700179 struct ip_tunnel *t)
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900180{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700181 return __ipip6_bucket(sitn, &t->parms);
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900182}
183
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700184static void ipip6_tunnel_unlink(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Eric Dumazet3a43be32010-09-15 11:35:10 +0000186 struct ip_tunnel __rcu **tp;
187 struct ip_tunnel *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Eric Dumazet3a43be32010-09-15 11:35:10 +0000189 for (tp = ipip6_bucket(sitn, t);
190 (iter = rtnl_dereference(*tp)) != NULL;
191 tp = &iter->next) {
192 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000193 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 break;
195 }
196 }
197}
198
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700199static void ipip6_tunnel_link(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Eric Dumazet3a43be32010-09-15 11:35:10 +0000201 struct ip_tunnel __rcu **tp = ipip6_bucket(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Eric Dumazetcf778b02012-01-12 04:41:32 +0000203 rcu_assign_pointer(t->next, rtnl_dereference(*tp));
204 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
YOSHIFUJI Hideaki / 吉藤英明e0c93942009-10-11 03:31:34 +0000207static void ipip6_tunnel_clone_6rd(struct net_device *dev, struct sit_net *sitn)
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000208{
209#ifdef CONFIG_IPV6_SIT_6RD
YOSHIFUJI Hideaki / 吉藤英明e0c93942009-10-11 03:31:34 +0000210 struct ip_tunnel *t = netdev_priv(dev);
211
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000212 if (t->dev == sitn->fb_tunnel_dev) {
213 ipv6_addr_set(&t->ip6rd.prefix, htonl(0x20020000), 0, 0, 0);
214 t->ip6rd.relay_prefix = 0;
215 t->ip6rd.prefixlen = 16;
216 t->ip6rd.relay_prefixlen = 0;
217 } else {
218 struct ip_tunnel *t0 = netdev_priv(sitn->fb_tunnel_dev);
219 memcpy(&t->ip6rd, &t0->ip6rd, sizeof(t->ip6rd));
220 }
221#endif
222}
223
Nicolas Dichtelf3723412012-11-14 05:14:07 +0000224static int ipip6_tunnel_create(struct net_device *dev)
225{
226 struct ip_tunnel *t = netdev_priv(dev);
227 struct net *net = dev_net(dev);
228 struct sit_net *sitn = net_generic(net, sit_net_id);
229 int err;
230
231 err = ipip6_tunnel_init(dev);
232 if (err < 0)
233 goto out;
234 ipip6_tunnel_clone_6rd(dev, sitn);
235
Nicolas Dichteld440b722012-11-15 04:06:41 +0000236 if ((__force u16)t->parms.i_flags & SIT_ISATAP)
Nicolas Dichtelf3723412012-11-14 05:14:07 +0000237 dev->priv_flags |= IFF_ISATAP;
238
239 err = register_netdevice(dev);
240 if (err < 0)
241 goto out;
242
243 strcpy(t->parms.name, dev->name);
244 dev->rtnl_link_ops = &sit_link_ops;
245
246 dev_hold(dev);
247
248 ipip6_tunnel_link(sitn, t);
249 return 0;
250
251out:
252 return err;
253}
254
Eric Dumazet3a43be32010-09-15 11:35:10 +0000255static struct ip_tunnel *ipip6_tunnel_locate(struct net *net,
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700256 struct ip_tunnel_parm *parms, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Al Viroe69a4ad2006-11-14 20:56:00 -0800258 __be32 remote = parms->iph.daddr;
259 __be32 local = parms->iph.saddr;
Eric Dumazet3a43be32010-09-15 11:35:10 +0000260 struct ip_tunnel *t, *nt;
261 struct ip_tunnel __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 char name[IFNAMSIZ];
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700264 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Eric Dumazet3a43be32010-09-15 11:35:10 +0000266 for (tp = __ipip6_bucket(sitn, parms);
267 (t = rtnl_dereference(*tp)) != NULL;
268 tp = &t->next) {
Sascha Hlusiak8db99e52009-05-19 12:56:48 +0000269 if (local == t->parms.iph.saddr &&
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000270 remote == t->parms.iph.daddr &&
271 parms->link == t->parms.link) {
Sascha Hlusiak8db99e52009-05-19 12:56:48 +0000272 if (create)
273 return NULL;
274 else
275 return t;
276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
278 if (!create)
279 goto failed;
280
281 if (parms->name[0])
282 strlcpy(name, parms->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800283 else
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000284 strcpy(name, "sit%d");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 dev = alloc_netdev(sizeof(*t), name, ipip6_tunnel_setup);
287 if (dev == NULL)
288 return NULL;
289
Pavel Emelyanov7a971462008-04-16 01:17:18 -0700290 dev_net_set(dev, net);
291
Patrick McHardy2941a482006-01-08 22:05:26 -0800292 nt = netdev_priv(dev);
Stephen Hemminger1326c3d2008-11-20 20:33:56 -0800293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 nt->parms = *parms;
Nicolas Dichtelf3723412012-11-14 05:14:07 +0000295 if (ipip6_tunnel_create(dev) < 0)
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800296 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return nt;
299
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800300failed_free:
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000301 ipip6_dev_free(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302failed:
303 return NULL;
304}
305
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000306#define for_each_prl_rcu(start) \
307 for (prl = rcu_dereference(start); \
308 prl; \
309 prl = rcu_dereference(prl->next))
310
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400311static struct ip_tunnel_prl_entry *
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900312__ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400313{
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000314 struct ip_tunnel_prl_entry *prl;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400315
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000316 for_each_prl_rcu(t->prl)
317 if (prl->addr == addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400318 break;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000319 return prl;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400320
321}
322
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700323static int ipip6_tunnel_get_prl(struct ip_tunnel *t,
324 struct ip_tunnel_prl __user *a)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900325{
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700326 struct ip_tunnel_prl kprl, *kp;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900327 struct ip_tunnel_prl_entry *prl;
328 unsigned int cmax, c = 0, ca, len;
329 int ret = 0;
330
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700331 if (copy_from_user(&kprl, a, sizeof(kprl)))
332 return -EFAULT;
333 cmax = kprl.datalen / sizeof(kprl);
334 if (cmax > 1 && kprl.addr != htonl(INADDR_ANY))
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900335 cmax = 1;
336
337 /* For simple GET or for root users,
338 * we try harder to allocate.
339 */
340 kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ?
341 kcalloc(cmax, sizeof(*kp), GFP_KERNEL) :
342 NULL;
343
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000344 rcu_read_lock();
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900345
346 ca = t->prl_count < cmax ? t->prl_count : cmax;
347
348 if (!kp) {
349 /* We don't try hard to allocate much memory for
350 * non-root users.
351 * For root users, retry allocating enough memory for
352 * the answer.
353 */
354 kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC);
355 if (!kp) {
356 ret = -ENOMEM;
357 goto out;
358 }
359 }
360
361 c = 0;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000362 for_each_prl_rcu(t->prl) {
Sascha Hlusiak298bf122009-09-29 11:27:05 +0000363 if (c >= cmax)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900364 break;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700365 if (kprl.addr != htonl(INADDR_ANY) && prl->addr != kprl.addr)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900366 continue;
367 kp[c].addr = prl->addr;
368 kp[c].flags = prl->flags;
369 c++;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700370 if (kprl.addr != htonl(INADDR_ANY))
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900371 break;
372 }
373out:
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000374 rcu_read_unlock();
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900375
376 len = sizeof(*kp) * c;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700377 ret = 0;
378 if ((len && copy_to_user(a + 1, kp, len)) || put_user(len, &a->datalen))
379 ret = -EFAULT;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900380
381 kfree(kp);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900382
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700383 return ret;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900384}
385
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400386static int
387ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg)
388{
389 struct ip_tunnel_prl_entry *p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900390 int err = 0;
391
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900392 if (a->addr == htonl(INADDR_ANY))
393 return -EINVAL;
394
Eric Dumazetaac4ddd2010-06-01 00:26:58 -0700395 ASSERT_RTNL();
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400396
Eric Dumazet3a43be32010-09-15 11:35:10 +0000397 for (p = rtnl_dereference(t->prl); p; p = rtnl_dereference(p->next)) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900398 if (p->addr == a->addr) {
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000399 if (chg) {
400 p->flags = a->flags;
401 goto out;
402 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900403 err = -EEXIST;
404 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400405 }
406 }
407
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900408 if (chg) {
409 err = -ENXIO;
410 goto out;
411 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400412
413 p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL);
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900414 if (!p) {
415 err = -ENOBUFS;
416 goto out;
417 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400418
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400419 p->next = t->prl;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900420 p->addr = a->addr;
421 p->flags = a->flags;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000422 t->prl_count++;
Eric Dumazetcf778b02012-01-12 04:41:32 +0000423 rcu_assign_pointer(t->prl, p);
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900424out:
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900425 return err;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400426}
427
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000428static void prl_list_destroy_rcu(struct rcu_head *head)
429{
430 struct ip_tunnel_prl_entry *p, *n;
431
432 p = container_of(head, struct ip_tunnel_prl_entry, rcu_head);
433 do {
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000434 n = rcu_dereference_protected(p->next, 1);
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000435 kfree(p);
436 p = n;
437 } while (p);
438}
439
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400440static int
441ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
442{
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000443 struct ip_tunnel_prl_entry *x;
444 struct ip_tunnel_prl_entry __rcu **p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900445 int err = 0;
446
Eric Dumazetaac4ddd2010-06-01 00:26:58 -0700447 ASSERT_RTNL();
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400448
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900449 if (a && a->addr != htonl(INADDR_ANY)) {
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000450 for (p = &t->prl;
451 (x = rtnl_dereference(*p)) != NULL;
452 p = &x->next) {
453 if (x->addr == a->addr) {
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400454 *p = x->next;
Paul E. McKenney11c476f2011-05-02 00:56:57 -0700455 kfree_rcu(x, rcu_head);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900456 t->prl_count--;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900457 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400458 }
459 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900460 err = -ENXIO;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400461 } else {
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000462 x = rtnl_dereference(t->prl);
463 if (x) {
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000464 t->prl_count = 0;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000465 call_rcu(&x->rcu_head, prl_list_destroy_rcu);
466 t->prl = NULL;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400467 }
468 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900469out:
Sascha Hlusiak4b27960172009-05-19 12:56:50 +0000470 return err;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400471}
472
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400473static int
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000474isatap_chksrc(struct sk_buff *skb, const struct iphdr *iph, struct ip_tunnel *t)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400475{
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900476 struct ip_tunnel_prl_entry *p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400477 int ok = 1;
478
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000479 rcu_read_lock();
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900480 p = __ipip6_tunnel_locate_prl(t, iph->saddr);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400481 if (p) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900482 if (p->flags & PRL_DEFAULT)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400483 skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT;
484 else
485 skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT;
486 } else {
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000487 const struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr;
488
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400489 if (ipv6_addr_is_isatap(addr6) &&
490 (addr6->s6_addr32[3] == iph->saddr) &&
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -0400491 ipv6_chk_prefix(addr6, t->dev))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400492 skb->ndisc_nodetype = NDISC_NODETYPE_HOST;
493 else
494 ok = 0;
495 }
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000496 rcu_read_unlock();
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400497 return ok;
498}
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500static void ipip6_tunnel_uninit(struct net_device *dev)
501{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700502 struct net *net = dev_net(dev);
503 struct sit_net *sitn = net_generic(net, sit_net_id);
504
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700505 if (dev == sitn->fb_tunnel_dev) {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000506 RCU_INIT_POINTER(sitn->tunnels_wc[0], NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 } else {
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700508 ipip6_tunnel_unlink(sitn, netdev_priv(dev));
YOSHIFUJI Hideaki02e10b92008-04-10 15:41:27 +0900509 ipip6_tunnel_del_prl(netdev_priv(dev), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
Eric Dumazet3a43be32010-09-15 11:35:10 +0000511 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
514
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800515static int ipip6_err(struct sk_buff *skb, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Rami Rosen071f92d2008-05-21 17:47:54 -0700518/* All the routers (except for Linux) return only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 8 bytes of packet payload. It means, that precise relaying of
520 ICMP in the real Internet is absolutely infeasible.
521 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000522 const struct iphdr *iph = (const struct iphdr *)skb->data;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300523 const int type = icmp_hdr(skb)->type;
524 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 struct ip_tunnel *t;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800526 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 switch (type) {
529 default:
530 case ICMP_PARAMETERPROB:
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800531 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 case ICMP_DEST_UNREACH:
534 switch (code) {
535 case ICMP_SR_FAILED:
536 case ICMP_PORT_UNREACH:
537 /* Impossible event. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800538 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 default:
540 /* All others are translated to HOST_UNREACH.
541 rfc2003 contains "deep thoughts" about NET_UNREACH,
542 I believe they are just ether pollution. --ANK
543 */
544 break;
545 }
546 break;
547 case ICMP_TIME_EXCEEDED:
548 if (code != ICMP_EXC_TTL)
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800549 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700551 case ICMP_REDIRECT:
552 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800555 err = -ENOENT;
556
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000557 t = ipip6_tunnel_lookup(dev_net(skb->dev),
558 skb->dev,
559 iph->daddr,
560 iph->saddr);
David S. Miller36393392012-06-14 22:21:46 -0700561 if (t == NULL)
562 goto out;
563
564 if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED) {
565 ipv4_update_pmtu(skb, dev_net(skb->dev), info,
566 t->dev->ifindex, 0, IPPROTO_IPV6, 0);
567 err = 0;
568 goto out;
569 }
David S. Millerec18d9a2012-07-12 00:25:15 -0700570 if (type == ICMP_REDIRECT) {
571 ipv4_redirect(skb, dev_net(skb->dev), t->dev->ifindex, 0,
572 IPPROTO_IPV6, 0);
573 err = 0;
574 goto out;
575 }
David S. Miller36393392012-06-14 22:21:46 -0700576
577 if (t->parms.iph.daddr == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 goto out;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800579
580 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
582 goto out;
583
Wei Yongjunbb800872009-02-24 23:37:19 -0800584 if (time_before(jiffies, t->err_time + IPTUNNEL_ERR_TIMEO))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 t->err_count++;
586 else
587 t->err_count = 1;
588 t->err_time = jiffies;
589out:
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800590 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593static int ipip6_rcv(struct sk_buff *skb)
594{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000595 const struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 struct ip_tunnel *tunnel;
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000597 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
600 goto out;
601
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700602 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000604 tunnel = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev,
605 iph->saddr, iph->daddr);
606 if (tunnel != NULL) {
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000607 struct pcpu_tstats *tstats;
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700610 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700611 skb_reset_network_header(skb);
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800612 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 skb->protocol = htons(ETH_P_IPV6);
614 skb->pkt_type = PACKET_HOST;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100615
616 if ((tunnel->dev->priv_flags & IFF_ISATAP) &&
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400617 !isatap_chksrc(skb, iph, tunnel)) {
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700618 tunnel->dev->stats.rx_errors++;
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000619 goto out;
620 }
621
622 __skb_tunnel_rx(skb, tunnel->dev);
623
624 err = IP_ECN_decapsulate(iph, skb);
625 if (unlikely(err)) {
626 if (log_ecn_error)
627 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
628 &iph->saddr, iph->tos);
629 if (err > 1) {
630 ++tunnel->dev->stats.rx_frame_errors;
631 ++tunnel->dev->stats.rx_errors;
632 goto out;
633 }
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100634 }
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700635
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000636 tstats = this_cpu_ptr(tunnel->dev->tstats);
637 tstats->rx_packets++;
638 tstats->rx_bytes += skb->len;
639
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000640 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return 0;
643 }
644
David McCullough6dcdd1b2010-11-29 19:32:34 +0000645 /* no tunnel matched, let upstream know, ipsec may handle it */
David McCullough6dcdd1b2010-11-29 19:32:34 +0000646 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647out:
David S. Miller36ca34c2008-05-08 23:40:26 -0700648 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return 0;
650}
651
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000652/*
653 * Returns the embedded IPv4 address if the IPv6 address
654 * comes from 6rd / 6to4 (RFC 3056) addr space.
655 */
656static inline
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000657__be32 try_6rd(const struct in6_addr *v6dst, struct ip_tunnel *tunnel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Al Viroe69a4ad2006-11-14 20:56:00 -0800659 __be32 dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000661#ifdef CONFIG_IPV6_SIT_6RD
662 if (ipv6_prefix_equal(v6dst, &tunnel->ip6rd.prefix,
663 tunnel->ip6rd.prefixlen)) {
Eric Dumazet3a43be32010-09-15 11:35:10 +0000664 unsigned int pbw0, pbi0;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000665 int pbi1;
666 u32 d;
667
668 pbw0 = tunnel->ip6rd.prefixlen >> 5;
669 pbi0 = tunnel->ip6rd.prefixlen & 0x1f;
670
YOSHIFUJI Hideaki / 吉藤英明e7db38c2009-10-11 03:44:45 +0000671 d = (ntohl(v6dst->s6_addr32[pbw0]) << pbi0) >>
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000672 tunnel->ip6rd.relay_prefixlen;
673
674 pbi1 = pbi0 - tunnel->ip6rd.relay_prefixlen;
675 if (pbi1 > 0)
YOSHIFUJI Hideaki / 吉藤英明e7db38c2009-10-11 03:44:45 +0000676 d |= ntohl(v6dst->s6_addr32[pbw0 + 1]) >>
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000677 (32 - pbi1);
678
679 dst = tunnel->ip6rd.relay_prefix | htonl(d);
680 }
681#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (v6dst->s6_addr16[0] == htons(0x2002)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900683 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 memcpy(&dst, &v6dst->s6_addr16[1], 4);
685 }
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000686#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return dst;
688}
689
690/*
691 * This function assumes it is being called from dev_queue_xmit()
692 * and that skb is filled properly by that function.
693 */
694
Stephen Hemminger6fef4c02009-08-31 19:50:41 +0000695static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
696 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Patrick McHardy2941a482006-01-08 22:05:26 -0800698 struct ip_tunnel *tunnel = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000699 const struct iphdr *tiph = &tunnel->parms.iph;
700 const struct ipv6hdr *iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 u8 tos = tunnel->parms.iph.tos;
Herbert Xu292f4f32009-11-09 08:42:01 +0000702 __be16 df = tiph->frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 struct rtable *rt; /* Route to the other host */
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000704 struct net_device *tdev; /* Device to other host */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 struct iphdr *iph; /* Our new IP header */
Chuck Leverc2636b42007-10-23 21:07:32 -0700706 unsigned int max_headroom; /* The extra header space needed */
Al Viroe69a4ad2006-11-14 20:56:00 -0800707 __be32 dst = tiph->daddr;
David S. Miller31e4543d2011-05-03 20:25:42 -0700708 struct flowi4 fl4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 int mtu;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000710 const struct in6_addr *addr6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 int addr_type;
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (skb->protocol != htons(ETH_P_IPV6))
714 goto tx_error;
715
Lionel Elie Mamanec2bceb32011-08-13 14:04:38 +0000716 if (tos == 1)
717 tos = ipv6_get_dsfield(iph6);
718
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100719 /* ISATAP (RFC4214) - must come before 6to4 */
720 if (dev->priv_flags & IFF_ISATAP) {
721 struct neighbour *neigh = NULL;
David S. Miller1e2927b2012-01-26 15:23:21 -0500722 bool do_tx_error = false;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100723
Eric Dumazetadf30902009-06-02 05:19:30 +0000724 if (skb_dst(skb))
David S. Miller1e2927b2012-01-26 15:23:21 -0500725 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100726
727 if (neigh == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +0000728 net_dbg_ratelimited("sit: nexthop == NULL\n");
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100729 goto tx_error;
730 }
731
Eldad Zack3e866702012-04-01 07:49:01 +0000732 addr6 = (const struct in6_addr *)&neigh->primary_key;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100733 addr_type = ipv6_addr_type(addr6);
734
735 if ((addr_type & IPV6_ADDR_UNICAST) &&
736 ipv6_addr_is_isatap(addr6))
737 dst = addr6->s6_addr32[3];
738 else
David S. Miller1e2927b2012-01-26 15:23:21 -0500739 do_tx_error = true;
740
741 neigh_release(neigh);
742 if (do_tx_error)
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100743 goto tx_error;
744 }
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (!dst)
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000747 dst = try_6rd(&iph6->daddr, tunnel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 if (!dst) {
750 struct neighbour *neigh = NULL;
David S. Miller1e2927b2012-01-26 15:23:21 -0500751 bool do_tx_error = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Eric Dumazetadf30902009-06-02 05:19:30 +0000753 if (skb_dst(skb))
David S. Miller1e2927b2012-01-26 15:23:21 -0500754 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 if (neigh == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +0000757 net_dbg_ratelimited("sit: nexthop == NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 goto tx_error;
759 }
760
Eldad Zack3e866702012-04-01 07:49:01 +0000761 addr6 = (const struct in6_addr *)&neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 addr_type = ipv6_addr_type(addr6);
763
764 if (addr_type == IPV6_ADDR_ANY) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700765 addr6 = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 addr_type = ipv6_addr_type(addr6);
767 }
768
David S. Miller1e2927b2012-01-26 15:23:21 -0500769 if ((addr_type & IPV6_ADDR_COMPATv4) != 0)
770 dst = addr6->s6_addr32[3];
771 else
772 do_tx_error = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
David S. Miller1e2927b2012-01-26 15:23:21 -0500774 neigh_release(neigh);
775 if (do_tx_error)
776 goto tx_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778
David S. Miller31e4543d2011-05-03 20:25:42 -0700779 rt = ip_route_output_ports(dev_net(dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500780 dst, tiph->saddr,
781 0, 0,
782 IPPROTO_IPV6, RT_TOS(tos),
783 tunnel->parms.link);
784 if (IS_ERR(rt)) {
785 dev->stats.tx_carrier_errors++;
786 goto tx_error_icmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788 if (rt->rt_type != RTN_UNICAST) {
789 ip_rt_put(rt);
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000790 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 goto tx_error_icmp;
792 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700793 tdev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 if (tdev == dev) {
796 ip_rt_put(rt);
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000797 dev->stats.collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 goto tx_error;
799 }
800
Herbert Xu292f4f32009-11-09 08:42:01 +0000801 if (df) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700802 mtu = dst_mtu(&rt->dst) - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Herbert Xu292f4f32009-11-09 08:42:01 +0000804 if (mtu < 68) {
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000805 dev->stats.collisions++;
Herbert Xu292f4f32009-11-09 08:42:01 +0000806 ip_rt_put(rt);
807 goto tx_error;
808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Herbert Xu292f4f32009-11-09 08:42:01 +0000810 if (mtu < IPV6_MIN_MTU) {
811 mtu = IPV6_MIN_MTU;
812 df = 0;
813 }
814
815 if (tunnel->parms.iph.daddr && skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -0700816 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Herbert Xu292f4f32009-11-09 08:42:01 +0000817
818 if (skb->len > mtu) {
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000819 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Herbert Xu292f4f32009-11-09 08:42:01 +0000820 ip_rt_put(rt);
821 goto tx_error;
822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824
825 if (tunnel->err_count > 0) {
Wei Yongjunbb800872009-02-24 23:37:19 -0800826 if (time_before(jiffies,
827 tunnel->err_time + IPTUNNEL_ERR_TIMEO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 tunnel->err_count--;
829 dst_link_failure(skb);
830 } else
831 tunnel->err_count = 0;
832 }
833
834 /*
835 * Okay, now see if we can stuff it in the buffer as-is.
836 */
837 max_headroom = LL_RESERVED_SPACE(tdev)+sizeof(struct iphdr);
838
Patrick McHardycfbba492007-07-09 15:33:40 -0700839 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
840 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
842 if (!new_skb) {
843 ip_rt_put(rt);
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000844 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000846 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848 if (skb->sk)
849 skb_set_owner_w(new_skb, skb->sk);
850 dev_kfree_skb(skb);
851 skb = new_skb;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700852 iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700855 skb->transport_header = skb->network_header;
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700856 skb_push(skb, sizeof(struct iphdr));
857 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800859 IPCB(skb)->flags = 0;
Eric Dumazetadf30902009-06-02 05:19:30 +0000860 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -0700861 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 /*
864 * Push down and install the IPIP header.
865 */
866
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700867 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 iph->version = 4;
869 iph->ihl = sizeof(struct iphdr)>>2;
Herbert Xu292f4f32009-11-09 08:42:01 +0000870 iph->frag_off = df;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 iph->protocol = IPPROTO_IPV6;
872 iph->tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
David S. Miller301102c2011-05-04 12:46:24 -0700873 iph->daddr = fl4.daddr;
874 iph->saddr = fl4.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 if ((iph->ttl = tiph->ttl) == 0)
877 iph->ttl = iph6->hop_limit;
878
Amerigo Wangaa0010f2012-11-11 21:52:33 +0000879 iptunnel_xmit(skb, dev);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000880 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882tx_error_icmp:
883 dst_link_failure(skb);
884tx_error:
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000885 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000887 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800890static void ipip6_tunnel_bind_dev(struct net_device *dev)
891{
892 struct net_device *tdev = NULL;
893 struct ip_tunnel *tunnel;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000894 const struct iphdr *iph;
David S. Miller31e4543d2011-05-03 20:25:42 -0700895 struct flowi4 fl4;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800896
897 tunnel = netdev_priv(dev);
898 iph = &tunnel->parms.iph;
899
900 if (iph->daddr) {
David S. Miller31e4543d2011-05-03 20:25:42 -0700901 struct rtable *rt = ip_route_output_ports(dev_net(dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500902 iph->daddr, iph->saddr,
903 0, 0,
904 IPPROTO_IPV6,
905 RT_TOS(iph->tos),
906 tunnel->parms.link);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800907
908 if (!IS_ERR(rt)) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700909 tdev = rt->dst.dev;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800910 ip_rt_put(rt);
911 }
912 dev->flags |= IFF_POINTOPOINT;
913 }
914
915 if (!tdev && tunnel->parms.link)
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700916 tdev = __dev_get_by_index(dev_net(dev), tunnel->parms.link);
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800917
918 if (tdev) {
919 dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr);
920 dev->mtu = tdev->mtu - sizeof(struct iphdr);
921 if (dev->mtu < IPV6_MIN_MTU)
922 dev->mtu = IPV6_MIN_MTU;
923 }
924 dev->iflink = tunnel->parms.link;
925}
926
Nicolas Dichtelf3723412012-11-14 05:14:07 +0000927static void ipip6_tunnel_update(struct ip_tunnel *t, struct ip_tunnel_parm *p)
928{
929 struct net *net = dev_net(t->dev);
930 struct sit_net *sitn = net_generic(net, sit_net_id);
931
932 ipip6_tunnel_unlink(sitn, t);
933 synchronize_net();
934 t->parms.iph.saddr = p->iph.saddr;
935 t->parms.iph.daddr = p->iph.daddr;
936 memcpy(t->dev->dev_addr, &p->iph.saddr, 4);
937 memcpy(t->dev->broadcast, &p->iph.daddr, 4);
938 ipip6_tunnel_link(sitn, t);
939 t->parms.iph.ttl = p->iph.ttl;
940 t->parms.iph.tos = p->iph.tos;
941 if (t->parms.link != p->link) {
942 t->parms.link = p->link;
943 ipip6_tunnel_bind_dev(t->dev);
944 }
945 netdev_state_change(t->dev);
946}
947
Nicolas Dichtele2f1f072012-11-19 22:41:45 +0000948#ifdef CONFIG_IPV6_SIT_6RD
949static int ipip6_tunnel_update_6rd(struct ip_tunnel *t,
950 struct ip_tunnel_6rd *ip6rd)
951{
952 struct in6_addr prefix;
953 __be32 relay_prefix;
954
955 if (ip6rd->relay_prefixlen > 32 ||
956 ip6rd->prefixlen + (32 - ip6rd->relay_prefixlen) > 64)
957 return -EINVAL;
958
959 ipv6_addr_prefix(&prefix, &ip6rd->prefix, ip6rd->prefixlen);
960 if (!ipv6_addr_equal(&prefix, &ip6rd->prefix))
961 return -EINVAL;
962 if (ip6rd->relay_prefixlen)
963 relay_prefix = ip6rd->relay_prefix &
964 htonl(0xffffffffUL <<
965 (32 - ip6rd->relay_prefixlen));
966 else
967 relay_prefix = 0;
968 if (relay_prefix != ip6rd->relay_prefix)
969 return -EINVAL;
970
971 t->ip6rd.prefix = prefix;
972 t->ip6rd.relay_prefix = relay_prefix;
973 t->ip6rd.prefixlen = ip6rd->prefixlen;
974 t->ip6rd.relay_prefixlen = ip6rd->relay_prefixlen;
975 netdev_state_change(t->dev);
976 return 0;
977}
978#endif
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980static int
981ipip6_tunnel_ioctl (struct net_device *dev, struct ifreq *ifr, int cmd)
982{
983 int err = 0;
984 struct ip_tunnel_parm p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400985 struct ip_tunnel_prl prl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 struct ip_tunnel *t;
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700987 struct net *net = dev_net(dev);
988 struct sit_net *sitn = net_generic(net, sit_net_id);
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000989#ifdef CONFIG_IPV6_SIT_6RD
990 struct ip_tunnel_6rd ip6rd;
991#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 switch (cmd) {
994 case SIOCGETTUNNEL:
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000995#ifdef CONFIG_IPV6_SIT_6RD
996 case SIOCGET6RD:
997#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 t = NULL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700999 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
1001 err = -EFAULT;
1002 break;
1003 }
Pavel Emelyanovca8def12008-04-16 01:15:39 -07001004 t = ipip6_tunnel_locate(net, &p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001007 t = netdev_priv(dev);
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001008
1009 err = -EFAULT;
1010 if (cmd == SIOCGETTUNNEL) {
1011 memcpy(&p, &t->parms, sizeof(p));
1012 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p,
1013 sizeof(p)))
1014 goto done;
1015#ifdef CONFIG_IPV6_SIT_6RD
1016 } else {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001017 ip6rd.prefix = t->ip6rd.prefix;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001018 ip6rd.relay_prefix = t->ip6rd.relay_prefix;
1019 ip6rd.prefixlen = t->ip6rd.prefixlen;
1020 ip6rd.relay_prefixlen = t->ip6rd.relay_prefixlen;
1021 if (copy_to_user(ifr->ifr_ifru.ifru_data, &ip6rd,
1022 sizeof(ip6rd)))
1023 goto done;
1024#endif
1025 }
1026 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 break;
1028
1029 case SIOCADDTUNNEL:
1030 case SIOCCHGTUNNEL:
1031 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001032 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 goto done;
1034
1035 err = -EFAULT;
1036 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1037 goto done;
1038
1039 err = -EINVAL;
1040 if (p.iph.version != 4 || p.iph.protocol != IPPROTO_IPV6 ||
1041 p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
1042 goto done;
1043 if (p.iph.ttl)
1044 p.iph.frag_off |= htons(IP_DF);
1045
Pavel Emelyanovca8def12008-04-16 01:15:39 -07001046 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001048 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 if (t != NULL) {
1050 if (t->dev != dev) {
1051 err = -EEXIST;
1052 break;
1053 }
1054 } else {
1055 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
1056 (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
1057 err = -EINVAL;
1058 break;
1059 }
Patrick McHardy2941a482006-01-08 22:05:26 -08001060 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
Nicolas Dichtelf9cd5a52012-11-14 05:14:04 +00001062
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001063 ipip6_tunnel_update(t, &p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065
1066 if (t) {
1067 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
1069 err = -EFAULT;
1070 } else
1071 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1072 break;
1073
1074 case SIOCDELTUNNEL:
1075 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001076 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 goto done;
1078
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001079 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 err = -EFAULT;
1081 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1082 goto done;
1083 err = -ENOENT;
Pavel Emelyanovca8def12008-04-16 01:15:39 -07001084 if ((t = ipip6_tunnel_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 goto done;
1086 err = -EPERM;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001087 if (t == netdev_priv(sitn->fb_tunnel_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 goto done;
1089 dev = t->dev;
1090 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001091 unregister_netdevice(dev);
1092 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 break;
1094
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001095 case SIOCGETPRL:
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -07001096 err = -EINVAL;
1097 if (dev == sitn->fb_tunnel_dev)
1098 goto done;
1099 err = -ENOENT;
1100 if (!(t = netdev_priv(dev)))
1101 goto done;
1102 err = ipip6_tunnel_get_prl(t, ifr->ifr_ifru.ifru_data);
1103 break;
1104
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001105 case SIOCADDPRL:
1106 case SIOCDELPRL:
1107 case SIOCCHGPRL:
1108 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001109 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001110 goto done;
1111 err = -EINVAL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001112 if (dev == sitn->fb_tunnel_dev)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001113 goto done;
1114 err = -EFAULT;
1115 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
1116 goto done;
1117 err = -ENOENT;
1118 if (!(t = netdev_priv(dev)))
1119 goto done;
1120
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001121 switch (cmd) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001122 case SIOCDELPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001123 err = ipip6_tunnel_del_prl(t, &prl);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001124 break;
1125 case SIOCADDPRL:
1126 case SIOCCHGPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001127 err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001128 break;
1129 }
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -07001130 netdev_state_change(dev);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001131 break;
1132
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001133#ifdef CONFIG_IPV6_SIT_6RD
1134 case SIOCADD6RD:
1135 case SIOCCHG6RD:
1136 case SIOCDEL6RD:
1137 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001138 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001139 goto done;
1140
1141 err = -EFAULT;
1142 if (copy_from_user(&ip6rd, ifr->ifr_ifru.ifru_data,
1143 sizeof(ip6rd)))
1144 goto done;
1145
1146 t = netdev_priv(dev);
1147
1148 if (cmd != SIOCDEL6RD) {
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001149 err = ipip6_tunnel_update_6rd(t, &ip6rd);
1150 if (err < 0)
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001151 goto done;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001152 } else
YOSHIFUJI Hideaki / 吉藤英明e0c93942009-10-11 03:31:34 +00001153 ipip6_tunnel_clone_6rd(dev, sitn);
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001154
1155 err = 0;
1156 break;
1157#endif
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 default:
1160 err = -EINVAL;
1161 }
1162
1163done:
1164 return err;
1165}
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167static int ipip6_tunnel_change_mtu(struct net_device *dev, int new_mtu)
1168{
1169 if (new_mtu < IPV6_MIN_MTU || new_mtu > 0xFFF8 - sizeof(struct iphdr))
1170 return -EINVAL;
1171 dev->mtu = new_mtu;
1172 return 0;
1173}
1174
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001175static const struct net_device_ops ipip6_netdev_ops = {
1176 .ndo_uninit = ipip6_tunnel_uninit,
1177 .ndo_start_xmit = ipip6_tunnel_xmit,
1178 .ndo_do_ioctl = ipip6_tunnel_ioctl,
1179 .ndo_change_mtu = ipip6_tunnel_change_mtu,
stephen hemminger87b6d212012-04-12 06:31:16 +00001180 .ndo_get_stats64= ipip6_get_stats64,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001181};
1182
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001183static void ipip6_dev_free(struct net_device *dev)
1184{
1185 free_percpu(dev->tstats);
1186 free_netdev(dev);
1187}
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189static void ipip6_tunnel_setup(struct net_device *dev)
1190{
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001191 dev->netdev_ops = &ipip6_netdev_ops;
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001192 dev->destructor = ipip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 dev->type = ARPHRD_SIT;
1195 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr);
Kris Katterjohn46f25df2006-01-05 16:35:42 -08001196 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 dev->flags = IFF_NOARP;
Sascha Hlusiakf2ba0252009-07-11 20:30:52 -07001198 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 dev->iflink = 0;
1200 dev->addr_len = 4;
Pavel Emelyanov7a971462008-04-16 01:17:18 -07001201 dev->features |= NETIF_F_NETNS_LOCAL;
Eric Dumazet8df40d12010-09-28 02:53:41 +00001202 dev->features |= NETIF_F_LLTX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001205static int ipip6_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001207 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 tunnel->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 memcpy(dev->dev_addr, &tunnel->parms.iph.saddr, 4);
1212 memcpy(dev->broadcast, &tunnel->parms.iph.daddr, 4);
1213
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001214 ipip6_tunnel_bind_dev(dev);
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001215 dev->tstats = alloc_percpu(struct pcpu_tstats);
1216 if (!dev->tstats)
1217 return -ENOMEM;
1218
1219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
Eric Dumazetdd4080e2010-09-28 02:17:58 +00001222static int __net_init ipip6_fb_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Patrick McHardy2941a482006-01-08 22:05:26 -08001224 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 struct iphdr *iph = &tunnel->parms.iph;
Pavel Emelyanov29182172008-04-16 01:16:38 -07001226 struct net *net = dev_net(dev);
1227 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 tunnel->dev = dev;
1230 strcpy(tunnel->parms.name, dev->name);
1231
1232 iph->version = 4;
1233 iph->protocol = IPPROTO_IPV6;
1234 iph->ihl = 5;
1235 iph->ttl = 64;
1236
Eric Dumazetdd4080e2010-09-28 02:17:58 +00001237 dev->tstats = alloc_percpu(struct pcpu_tstats);
1238 if (!dev->tstats)
1239 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 dev_hold(dev);
Eric Dumazetcf778b02012-01-12 04:41:32 +00001241 rcu_assign_pointer(sitn->tunnels_wc[0], tunnel);
Eric Dumazetdd4080e2010-09-28 02:17:58 +00001242 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001245static void ipip6_netlink_parms(struct nlattr *data[],
1246 struct ip_tunnel_parm *parms)
1247{
1248 memset(parms, 0, sizeof(*parms));
1249
1250 parms->iph.version = 4;
1251 parms->iph.protocol = IPPROTO_IPV6;
1252 parms->iph.ihl = 5;
1253 parms->iph.ttl = 64;
1254
1255 if (!data)
1256 return;
1257
1258 if (data[IFLA_IPTUN_LINK])
1259 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1260
1261 if (data[IFLA_IPTUN_LOCAL])
Nicolas Dichteld440b722012-11-15 04:06:41 +00001262 parms->iph.saddr = nla_get_be32(data[IFLA_IPTUN_LOCAL]);
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001263
1264 if (data[IFLA_IPTUN_REMOTE])
Nicolas Dichteld440b722012-11-15 04:06:41 +00001265 parms->iph.daddr = nla_get_be32(data[IFLA_IPTUN_REMOTE]);
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001266
1267 if (data[IFLA_IPTUN_TTL]) {
1268 parms->iph.ttl = nla_get_u8(data[IFLA_IPTUN_TTL]);
1269 if (parms->iph.ttl)
1270 parms->iph.frag_off = htons(IP_DF);
1271 }
1272
1273 if (data[IFLA_IPTUN_TOS])
1274 parms->iph.tos = nla_get_u8(data[IFLA_IPTUN_TOS]);
1275
1276 if (!data[IFLA_IPTUN_PMTUDISC] || nla_get_u8(data[IFLA_IPTUN_PMTUDISC]))
1277 parms->iph.frag_off = htons(IP_DF);
1278
1279 if (data[IFLA_IPTUN_FLAGS])
Nicolas Dichteld440b722012-11-15 04:06:41 +00001280 parms->i_flags = nla_get_be16(data[IFLA_IPTUN_FLAGS]);
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001281}
1282
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001283#ifdef CONFIG_IPV6_SIT_6RD
1284/* This function returns true when 6RD attributes are present in the nl msg */
1285static bool ipip6_netlink_6rd_parms(struct nlattr *data[],
1286 struct ip_tunnel_6rd *ip6rd)
1287{
1288 bool ret = false;
1289 memset(ip6rd, 0, sizeof(*ip6rd));
1290
1291 if (!data)
1292 return ret;
1293
1294 if (data[IFLA_IPTUN_6RD_PREFIX]) {
1295 ret = true;
1296 nla_memcpy(&ip6rd->prefix, data[IFLA_IPTUN_6RD_PREFIX],
1297 sizeof(struct in6_addr));
1298 }
1299
1300 if (data[IFLA_IPTUN_6RD_RELAY_PREFIX]) {
1301 ret = true;
1302 ip6rd->relay_prefix =
1303 nla_get_be32(data[IFLA_IPTUN_6RD_RELAY_PREFIX]);
1304 }
1305
1306 if (data[IFLA_IPTUN_6RD_PREFIXLEN]) {
1307 ret = true;
1308 ip6rd->prefixlen = nla_get_u16(data[IFLA_IPTUN_6RD_PREFIXLEN]);
1309 }
1310
1311 if (data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]) {
1312 ret = true;
1313 ip6rd->relay_prefixlen =
1314 nla_get_u16(data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]);
1315 }
1316
1317 return ret;
1318}
1319#endif
1320
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001321static int ipip6_newlink(struct net *src_net, struct net_device *dev,
1322 struct nlattr *tb[], struct nlattr *data[])
1323{
1324 struct net *net = dev_net(dev);
1325 struct ip_tunnel *nt;
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001326#ifdef CONFIG_IPV6_SIT_6RD
1327 struct ip_tunnel_6rd ip6rd;
1328#endif
1329 int err;
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001330
1331 nt = netdev_priv(dev);
1332 ipip6_netlink_parms(data, &nt->parms);
1333
1334 if (ipip6_tunnel_locate(net, &nt->parms, 0))
1335 return -EEXIST;
1336
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001337 err = ipip6_tunnel_create(dev);
1338 if (err < 0)
1339 return err;
1340
1341#ifdef CONFIG_IPV6_SIT_6RD
1342 if (ipip6_netlink_6rd_parms(data, &ip6rd))
1343 err = ipip6_tunnel_update_6rd(nt, &ip6rd);
1344#endif
1345
1346 return err;
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001347}
1348
1349static int ipip6_changelink(struct net_device *dev, struct nlattr *tb[],
1350 struct nlattr *data[])
1351{
1352 struct ip_tunnel *t;
1353 struct ip_tunnel_parm p;
1354 struct net *net = dev_net(dev);
1355 struct sit_net *sitn = net_generic(net, sit_net_id);
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001356#ifdef CONFIG_IPV6_SIT_6RD
1357 struct ip_tunnel_6rd ip6rd;
1358#endif
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001359
1360 if (dev == sitn->fb_tunnel_dev)
1361 return -EINVAL;
1362
1363 ipip6_netlink_parms(data, &p);
1364
1365 if (((dev->flags & IFF_POINTOPOINT) && !p.iph.daddr) ||
1366 (!(dev->flags & IFF_POINTOPOINT) && p.iph.daddr))
1367 return -EINVAL;
1368
1369 t = ipip6_tunnel_locate(net, &p, 0);
1370
1371 if (t) {
1372 if (t->dev != dev)
1373 return -EEXIST;
1374 } else
1375 t = netdev_priv(dev);
1376
1377 ipip6_tunnel_update(t, &p);
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001378
1379#ifdef CONFIG_IPV6_SIT_6RD
1380 if (ipip6_netlink_6rd_parms(data, &ip6rd))
1381 return ipip6_tunnel_update_6rd(t, &ip6rd);
1382#endif
1383
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001384 return 0;
1385}
1386
Nicolas Dichtele4c94a92012-11-14 05:14:06 +00001387static size_t ipip6_get_size(const struct net_device *dev)
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001388{
1389 return
1390 /* IFLA_IPTUN_LINK */
1391 nla_total_size(4) +
1392 /* IFLA_IPTUN_LOCAL */
1393 nla_total_size(4) +
1394 /* IFLA_IPTUN_REMOTE */
1395 nla_total_size(4) +
1396 /* IFLA_IPTUN_TTL */
1397 nla_total_size(1) +
1398 /* IFLA_IPTUN_TOS */
1399 nla_total_size(1) +
Nicolas Dichtela12c9a82012-11-14 05:14:05 +00001400 /* IFLA_IPTUN_PMTUDISC */
1401 nla_total_size(1) +
1402 /* IFLA_IPTUN_FLAGS */
1403 nla_total_size(2) +
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001404#ifdef CONFIG_IPV6_SIT_6RD
1405 /* IFLA_IPTUN_6RD_PREFIX */
1406 nla_total_size(sizeof(struct in6_addr)) +
1407 /* IFLA_IPTUN_6RD_RELAY_PREFIX */
1408 nla_total_size(4) +
1409 /* IFLA_IPTUN_6RD_PREFIXLEN */
1410 nla_total_size(2) +
1411 /* IFLA_IPTUN_6RD_RELAY_PREFIXLEN */
1412 nla_total_size(2) +
1413#endif
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001414 0;
1415}
1416
Nicolas Dichtele4c94a92012-11-14 05:14:06 +00001417static int ipip6_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001418{
1419 struct ip_tunnel *tunnel = netdev_priv(dev);
1420 struct ip_tunnel_parm *parm = &tunnel->parms;
1421
1422 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1423 nla_put_be32(skb, IFLA_IPTUN_LOCAL, parm->iph.saddr) ||
1424 nla_put_be32(skb, IFLA_IPTUN_REMOTE, parm->iph.daddr) ||
1425 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->iph.ttl) ||
Nicolas Dichtela12c9a82012-11-14 05:14:05 +00001426 nla_put_u8(skb, IFLA_IPTUN_TOS, parm->iph.tos) ||
1427 nla_put_u8(skb, IFLA_IPTUN_PMTUDISC,
1428 !!(parm->iph.frag_off & htons(IP_DF))) ||
Nicolas Dichteld440b722012-11-15 04:06:41 +00001429 nla_put_be16(skb, IFLA_IPTUN_FLAGS, parm->i_flags))
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001430 goto nla_put_failure;
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001431
1432#ifdef CONFIG_IPV6_SIT_6RD
1433 if (nla_put(skb, IFLA_IPTUN_6RD_PREFIX, sizeof(struct in6_addr),
1434 &tunnel->ip6rd.prefix) ||
1435 nla_put_be32(skb, IFLA_IPTUN_6RD_RELAY_PREFIX,
1436 tunnel->ip6rd.relay_prefix) ||
1437 nla_put_u16(skb, IFLA_IPTUN_6RD_PREFIXLEN,
1438 tunnel->ip6rd.prefixlen) ||
1439 nla_put_u16(skb, IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
1440 tunnel->ip6rd.relay_prefixlen))
1441 goto nla_put_failure;
1442#endif
1443
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001444 return 0;
1445
1446nla_put_failure:
1447 return -EMSGSIZE;
1448}
1449
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001450static const struct nla_policy ipip6_policy[IFLA_IPTUN_MAX + 1] = {
1451 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1452 [IFLA_IPTUN_LOCAL] = { .type = NLA_U32 },
1453 [IFLA_IPTUN_REMOTE] = { .type = NLA_U32 },
1454 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1455 [IFLA_IPTUN_TOS] = { .type = NLA_U8 },
1456 [IFLA_IPTUN_PMTUDISC] = { .type = NLA_U8 },
1457 [IFLA_IPTUN_FLAGS] = { .type = NLA_U16 },
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001458#ifdef CONFIG_IPV6_SIT_6RD
1459 [IFLA_IPTUN_6RD_PREFIX] = { .len = sizeof(struct in6_addr) },
1460 [IFLA_IPTUN_6RD_RELAY_PREFIX] = { .type = NLA_U32 },
1461 [IFLA_IPTUN_6RD_PREFIXLEN] = { .type = NLA_U16 },
1462 [IFLA_IPTUN_6RD_RELAY_PREFIXLEN] = { .type = NLA_U16 },
1463#endif
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001464};
1465
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001466static struct rtnl_link_ops sit_link_ops __read_mostly = {
1467 .kind = "sit",
1468 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001469 .policy = ipip6_policy,
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001470 .priv_size = sizeof(struct ip_tunnel),
Nicolas Dichtelf3723412012-11-14 05:14:07 +00001471 .setup = ipip6_tunnel_setup,
1472 .newlink = ipip6_newlink,
1473 .changelink = ipip6_changelink,
Nicolas Dichtele4c94a92012-11-14 05:14:06 +00001474 .get_size = ipip6_get_size,
1475 .fill_info = ipip6_fill_info,
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001476};
1477
Eric Dumazet6dcd8142010-08-30 07:04:14 +00001478static struct xfrm_tunnel sit_handler __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 .handler = ipip6_rcv,
1480 .err_handler = ipip6_err,
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001481 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482};
1483
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001484static void __net_exit sit_destroy_tunnels(struct sit_net *sitn, struct list_head *head)
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001485{
1486 int prio;
1487
1488 for (prio = 1; prio < 4; prio++) {
1489 int h;
1490 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet753ea8e2011-01-20 07:16:24 +00001491 struct ip_tunnel *t;
Eric Dumazet62808f92009-10-28 04:37:43 +00001492
Eric Dumazet753ea8e2011-01-20 07:16:24 +00001493 t = rtnl_dereference(sitn->tunnels[prio][h]);
Eric Dumazet62808f92009-10-28 04:37:43 +00001494 while (t != NULL) {
1495 unregister_netdevice_queue(t->dev, head);
Eric Dumazet753ea8e2011-01-20 07:16:24 +00001496 t = rtnl_dereference(t->next);
Eric Dumazet62808f92009-10-28 04:37:43 +00001497 }
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001498 }
1499 }
1500}
1501
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001502static int __net_init sit_init_net(struct net *net)
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001503{
Eric W. Biederman67101172009-11-29 15:46:16 +00001504 struct sit_net *sitn = net_generic(net, sit_net_id);
Ted Feng72b36012011-12-08 00:46:21 +00001505 struct ip_tunnel *t;
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001506 int err;
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001507
Pavel Emelyanov29182172008-04-16 01:16:38 -07001508 sitn->tunnels[0] = sitn->tunnels_wc;
1509 sitn->tunnels[1] = sitn->tunnels_l;
1510 sitn->tunnels[2] = sitn->tunnels_r;
1511 sitn->tunnels[3] = sitn->tunnels_r_l;
1512
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001513 sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
1514 ipip6_tunnel_setup);
1515 if (!sitn->fb_tunnel_dev) {
1516 err = -ENOMEM;
1517 goto err_alloc_dev;
1518 }
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001519 dev_net_set(sitn->fb_tunnel_dev, net);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001520
Eric Dumazetdd4080e2010-09-28 02:17:58 +00001521 err = ipip6_fb_tunnel_init(sitn->fb_tunnel_dev);
1522 if (err)
1523 goto err_dev_free;
1524
YOSHIFUJI Hideaki / 吉藤英明e0c93942009-10-11 03:31:34 +00001525 ipip6_tunnel_clone_6rd(sitn->fb_tunnel_dev, sitn);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001526
1527 if ((err = register_netdev(sitn->fb_tunnel_dev)))
1528 goto err_reg_dev;
1529
Ted Feng72b36012011-12-08 00:46:21 +00001530 t = netdev_priv(sitn->fb_tunnel_dev);
1531
1532 strcpy(t->parms.name, sitn->fb_tunnel_dev->name);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001533 return 0;
1534
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001535err_reg_dev:
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001536 dev_put(sitn->fb_tunnel_dev);
Eric Dumazetdd4080e2010-09-28 02:17:58 +00001537err_dev_free:
1538 ipip6_dev_free(sitn->fb_tunnel_dev);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001539err_alloc_dev:
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001540 return err;
1541}
1542
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001543static void __net_exit sit_exit_net(struct net *net)
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001544{
Eric W. Biederman67101172009-11-29 15:46:16 +00001545 struct sit_net *sitn = net_generic(net, sit_net_id);
Eric Dumazet62808f92009-10-28 04:37:43 +00001546 LIST_HEAD(list);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001547
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001548 rtnl_lock();
Eric Dumazet62808f92009-10-28 04:37:43 +00001549 sit_destroy_tunnels(sitn, &list);
1550 unregister_netdevice_queue(sitn->fb_tunnel_dev, &list);
1551 unregister_netdevice_many(&list);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001552 rtnl_unlock();
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001553}
1554
1555static struct pernet_operations sit_net_ops = {
1556 .init = sit_init_net,
1557 .exit = sit_exit_net,
Eric W. Biederman67101172009-11-29 15:46:16 +00001558 .id = &sit_net_id,
1559 .size = sizeof(struct sit_net),
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001560};
1561
Adrian Bunk89c89452006-11-20 16:56:48 -08001562static void __exit sit_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001564 rtnl_link_unregister(&sit_link_ops);
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001565 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001566
Eric W. Biederman67101172009-11-29 15:46:16 +00001567 unregister_pernet_device(&sit_net_ops);
Eric Dumazetef9a9d12009-10-23 17:51:26 +00001568 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
Adrian Bunk89c89452006-11-20 16:56:48 -08001571static int __init sit_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
1573 int err;
1574
Joe Perchesf3213832012-05-15 14:11:53 +00001575 pr_info("IPv6 over IPv4 tunneling driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Eric W. Biederman67101172009-11-29 15:46:16 +00001577 err = register_pernet_device(&sit_net_ops);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001578 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001579 return err;
1580 err = xfrm4_tunnel_register(&sit_handler, AF_INET6);
1581 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001582 pr_info("%s: can't add protocol\n", __func__);
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001583 goto xfrm_tunnel_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001584 }
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001585 err = rtnl_link_register(&sit_link_ops);
1586 if (err < 0)
1587 goto rtnl_link_failed;
1588
1589out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 return err;
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001591
1592rtnl_link_failed:
1593 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
1594xfrm_tunnel_failed:
1595 unregister_pernet_device(&sit_net_ops);
1596 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
Joerg Roedel989e5b92006-10-10 14:47:44 -07001598
1599module_init(sit_init);
1600module_exit(sit_cleanup);
Jan Dittmer39c85082006-10-13 15:05:53 -07001601MODULE_LICENSE("GPL");
Vasiliy Kulikov8909c9a2011-03-02 00:33:13 +03001602MODULE_ALIAS_NETDEV("sit0");