sit.c 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830
  1. /*
  2. * IPv6 over IPv4 tunnel device - Simple Internet Transition (SIT)
  3. * Linux INET6 implementation
  4. *
  5. * Authors:
  6. * Pedro Roque <roque@di.fc.ul.pt>
  7. * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
  8. *
  9. * 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
  17. * Fred Templin <fred.l.templin@boeing.com>: isatap support
  18. */
  19. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  20. #include <linux/module.h>
  21. #include <linux/capability.h>
  22. #include <linux/errno.h>
  23. #include <linux/types.h>
  24. #include <linux/socket.h>
  25. #include <linux/sockios.h>
  26. #include <linux/net.h>
  27. #include <linux/in6.h>
  28. #include <linux/netdevice.h>
  29. #include <linux/if_arp.h>
  30. #include <linux/icmp.h>
  31. #include <linux/slab.h>
  32. #include <asm/uaccess.h>
  33. #include <linux/init.h>
  34. #include <linux/netfilter_ipv4.h>
  35. #include <linux/if_ether.h>
  36. #include <net/sock.h>
  37. #include <net/snmp.h>
  38. #include <net/ipv6.h>
  39. #include <net/protocol.h>
  40. #include <net/transp_v6.h>
  41. #include <net/ip6_fib.h>
  42. #include <net/ip6_route.h>
  43. #include <net/ndisc.h>
  44. #include <net/addrconf.h>
  45. #include <net/ip.h>
  46. #include <net/udp.h>
  47. #include <net/icmp.h>
  48. #include <net/ip_tunnels.h>
  49. #include <net/inet_ecn.h>
  50. #include <net/xfrm.h>
  51. #include <net/dsfield.h>
  52. #include <net/net_namespace.h>
  53. #include <net/netns/generic.h>
  54. /*
  55. This version of net/ipv6/sit.c is cloned of net/ipv4/ip_gre.c
  56. For comments look at net/ipv4/ip_gre.c --ANK
  57. */
  58. #define HASH_SIZE 16
  59. #define HASH(addr) (((__force u32)addr^((__force u32)addr>>4))&0xF)
  60. static bool log_ecn_error = true;
  61. module_param(log_ecn_error, bool, 0644);
  62. MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
  63. static int ipip6_tunnel_init(struct net_device *dev);
  64. static void ipip6_tunnel_setup(struct net_device *dev);
  65. static void ipip6_dev_free(struct net_device *dev);
  66. static bool check_6rd(struct ip_tunnel *tunnel, const struct in6_addr *v6dst,
  67. __be32 *v4dst);
  68. static struct rtnl_link_ops sit_link_ops __read_mostly;
  69. static int sit_net_id __read_mostly;
  70. struct sit_net {
  71. struct ip_tunnel __rcu *tunnels_r_l[HASH_SIZE];
  72. struct ip_tunnel __rcu *tunnels_r[HASH_SIZE];
  73. struct ip_tunnel __rcu *tunnels_l[HASH_SIZE];
  74. struct ip_tunnel __rcu *tunnels_wc[1];
  75. struct ip_tunnel __rcu **tunnels[4];
  76. struct net_device *fb_tunnel_dev;
  77. };
  78. /*
  79. * Must be invoked with rcu_read_lock
  80. */
  81. static struct ip_tunnel *ipip6_tunnel_lookup(struct net *net,
  82. struct net_device *dev, __be32 remote, __be32 local)
  83. {
  84. unsigned int h0 = HASH(remote);
  85. unsigned int h1 = HASH(local);
  86. struct ip_tunnel *t;
  87. struct sit_net *sitn = net_generic(net, sit_net_id);
  88. for_each_ip_tunnel_rcu(t, sitn->tunnels_r_l[h0 ^ h1]) {
  89. if (local == t->parms.iph.saddr &&
  90. remote == t->parms.iph.daddr &&
  91. (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
  92. (t->dev->flags & IFF_UP))
  93. return t;
  94. }
  95. for_each_ip_tunnel_rcu(t, sitn->tunnels_r[h0]) {
  96. if (remote == t->parms.iph.daddr &&
  97. (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
  98. (t->dev->flags & IFF_UP))
  99. return t;
  100. }
  101. for_each_ip_tunnel_rcu(t, sitn->tunnels_l[h1]) {
  102. if (local == t->parms.iph.saddr &&
  103. (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
  104. (t->dev->flags & IFF_UP))
  105. return t;
  106. }
  107. t = rcu_dereference(sitn->tunnels_wc[0]);
  108. if ((t != NULL) && (t->dev->flags & IFF_UP))
  109. return t;
  110. return NULL;
  111. }
  112. static struct ip_tunnel __rcu **__ipip6_bucket(struct sit_net *sitn,
  113. struct ip_tunnel_parm *parms)
  114. {
  115. __be32 remote = parms->iph.daddr;
  116. __be32 local = parms->iph.saddr;
  117. unsigned int h = 0;
  118. int prio = 0;
  119. if (remote) {
  120. prio |= 2;
  121. h ^= HASH(remote);
  122. }
  123. if (local) {
  124. prio |= 1;
  125. h ^= HASH(local);
  126. }
  127. return &sitn->tunnels[prio][h];
  128. }
  129. static inline struct ip_tunnel __rcu **ipip6_bucket(struct sit_net *sitn,
  130. struct ip_tunnel *t)
  131. {
  132. return __ipip6_bucket(sitn, &t->parms);
  133. }
  134. static void ipip6_tunnel_unlink(struct sit_net *sitn, struct ip_tunnel *t)
  135. {
  136. struct ip_tunnel __rcu **tp;
  137. struct ip_tunnel *iter;
  138. for (tp = ipip6_bucket(sitn, t);
  139. (iter = rtnl_dereference(*tp)) != NULL;
  140. tp = &iter->next) {
  141. if (t == iter) {
  142. rcu_assign_pointer(*tp, t->next);
  143. break;
  144. }
  145. }
  146. }
  147. static void ipip6_tunnel_link(struct sit_net *sitn, struct ip_tunnel *t)
  148. {
  149. struct ip_tunnel __rcu **tp = ipip6_bucket(sitn, t);
  150. rcu_assign_pointer(t->next, rtnl_dereference(*tp));
  151. rcu_assign_pointer(*tp, t);
  152. }
  153. static void ipip6_tunnel_clone_6rd(struct net_device *dev, struct sit_net *sitn)
  154. {
  155. #ifdef CONFIG_IPV6_SIT_6RD
  156. struct ip_tunnel *t = netdev_priv(dev);
  157. if (t->dev == sitn->fb_tunnel_dev) {
  158. ipv6_addr_set(&t->ip6rd.prefix, htonl(0x20020000), 0, 0, 0);
  159. t->ip6rd.relay_prefix = 0;
  160. t->ip6rd.prefixlen = 16;
  161. t->ip6rd.relay_prefixlen = 0;
  162. } else {
  163. struct ip_tunnel *t0 = netdev_priv(sitn->fb_tunnel_dev);
  164. memcpy(&t->ip6rd, &t0->ip6rd, sizeof(t->ip6rd));
  165. }
  166. #endif
  167. }
  168. static int ipip6_tunnel_create(struct net_device *dev)
  169. {
  170. struct ip_tunnel *t = netdev_priv(dev);
  171. struct net *net = dev_net(dev);
  172. struct sit_net *sitn = net_generic(net, sit_net_id);
  173. int err;
  174. err = ipip6_tunnel_init(dev);
  175. if (err < 0)
  176. goto out;
  177. ipip6_tunnel_clone_6rd(dev, sitn);
  178. if ((__force u16)t->parms.i_flags & SIT_ISATAP)
  179. dev->priv_flags |= IFF_ISATAP;
  180. err = register_netdevice(dev);
  181. if (err < 0)
  182. goto out;
  183. strcpy(t->parms.name, dev->name);
  184. dev->rtnl_link_ops = &sit_link_ops;
  185. dev_hold(dev);
  186. ipip6_tunnel_link(sitn, t);
  187. return 0;
  188. out:
  189. return err;
  190. }
  191. static struct ip_tunnel *ipip6_tunnel_locate(struct net *net,
  192. struct ip_tunnel_parm *parms, int create)
  193. {
  194. __be32 remote = parms->iph.daddr;
  195. __be32 local = parms->iph.saddr;
  196. struct ip_tunnel *t, *nt;
  197. struct ip_tunnel __rcu **tp;
  198. struct net_device *dev;
  199. char name[IFNAMSIZ];
  200. struct sit_net *sitn = net_generic(net, sit_net_id);
  201. for (tp = __ipip6_bucket(sitn, parms);
  202. (t = rtnl_dereference(*tp)) != NULL;
  203. tp = &t->next) {
  204. if (local == t->parms.iph.saddr &&
  205. remote == t->parms.iph.daddr &&
  206. parms->link == t->parms.link) {
  207. if (create)
  208. return NULL;
  209. else
  210. return t;
  211. }
  212. }
  213. if (!create)
  214. goto failed;
  215. if (parms->name[0])
  216. strlcpy(name, parms->name, IFNAMSIZ);
  217. else
  218. strcpy(name, "sit%d");
  219. dev = alloc_netdev(sizeof(*t), name, ipip6_tunnel_setup);
  220. if (dev == NULL)
  221. return NULL;
  222. dev_net_set(dev, net);
  223. nt = netdev_priv(dev);
  224. nt->parms = *parms;
  225. if (ipip6_tunnel_create(dev) < 0)
  226. goto failed_free;
  227. return nt;
  228. failed_free:
  229. ipip6_dev_free(dev);
  230. failed:
  231. return NULL;
  232. }
  233. #define for_each_prl_rcu(start) \
  234. for (prl = rcu_dereference(start); \
  235. prl; \
  236. prl = rcu_dereference(prl->next))
  237. static struct ip_tunnel_prl_entry *
  238. __ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr)
  239. {
  240. struct ip_tunnel_prl_entry *prl;
  241. for_each_prl_rcu(t->prl)
  242. if (prl->addr == addr)
  243. break;
  244. return prl;
  245. }
  246. static int ipip6_tunnel_get_prl(struct ip_tunnel *t,
  247. struct ip_tunnel_prl __user *a)
  248. {
  249. struct ip_tunnel_prl kprl, *kp;
  250. struct ip_tunnel_prl_entry *prl;
  251. unsigned int cmax, c = 0, ca, len;
  252. int ret = 0;
  253. if (copy_from_user(&kprl, a, sizeof(kprl)))
  254. return -EFAULT;
  255. cmax = kprl.datalen / sizeof(kprl);
  256. if (cmax > 1 && kprl.addr != htonl(INADDR_ANY))
  257. cmax = 1;
  258. /* For simple GET or for root users,
  259. * we try harder to allocate.
  260. */
  261. kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ?
  262. kcalloc(cmax, sizeof(*kp), GFP_KERNEL) :
  263. NULL;
  264. rcu_read_lock();
  265. ca = t->prl_count < cmax ? t->prl_count : cmax;
  266. if (!kp) {
  267. /* We don't try hard to allocate much memory for
  268. * non-root users.
  269. * For root users, retry allocating enough memory for
  270. * the answer.
  271. */
  272. kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC);
  273. if (!kp) {
  274. ret = -ENOMEM;
  275. goto out;
  276. }
  277. }
  278. c = 0;
  279. for_each_prl_rcu(t->prl) {
  280. if (c >= cmax)
  281. break;
  282. if (kprl.addr != htonl(INADDR_ANY) && prl->addr != kprl.addr)
  283. continue;
  284. kp[c].addr = prl->addr;
  285. kp[c].flags = prl->flags;
  286. c++;
  287. if (kprl.addr != htonl(INADDR_ANY))
  288. break;
  289. }
  290. out:
  291. rcu_read_unlock();
  292. len = sizeof(*kp) * c;
  293. ret = 0;
  294. if ((len && copy_to_user(a + 1, kp, len)) || put_user(len, &a->datalen))
  295. ret = -EFAULT;
  296. kfree(kp);
  297. return ret;
  298. }
  299. static int
  300. ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg)
  301. {
  302. struct ip_tunnel_prl_entry *p;
  303. int err = 0;
  304. if (a->addr == htonl(INADDR_ANY))
  305. return -EINVAL;
  306. ASSERT_RTNL();
  307. for (p = rtnl_dereference(t->prl); p; p = rtnl_dereference(p->next)) {
  308. if (p->addr == a->addr) {
  309. if (chg) {
  310. p->flags = a->flags;
  311. goto out;
  312. }
  313. err = -EEXIST;
  314. goto out;
  315. }
  316. }
  317. if (chg) {
  318. err = -ENXIO;
  319. goto out;
  320. }
  321. p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL);
  322. if (!p) {
  323. err = -ENOBUFS;
  324. goto out;
  325. }
  326. p->next = t->prl;
  327. p->addr = a->addr;
  328. p->flags = a->flags;
  329. t->prl_count++;
  330. rcu_assign_pointer(t->prl, p);
  331. out:
  332. return err;
  333. }
  334. static void prl_list_destroy_rcu(struct rcu_head *head)
  335. {
  336. struct ip_tunnel_prl_entry *p, *n;
  337. p = container_of(head, struct ip_tunnel_prl_entry, rcu_head);
  338. do {
  339. n = rcu_dereference_protected(p->next, 1);
  340. kfree(p);
  341. p = n;
  342. } while (p);
  343. }
  344. static int
  345. ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
  346. {
  347. struct ip_tunnel_prl_entry *x;
  348. struct ip_tunnel_prl_entry __rcu **p;
  349. int err = 0;
  350. ASSERT_RTNL();
  351. if (a && a->addr != htonl(INADDR_ANY)) {
  352. for (p = &t->prl;
  353. (x = rtnl_dereference(*p)) != NULL;
  354. p = &x->next) {
  355. if (x->addr == a->addr) {
  356. *p = x->next;
  357. kfree_rcu(x, rcu_head);
  358. t->prl_count--;
  359. goto out;
  360. }
  361. }
  362. err = -ENXIO;
  363. } else {
  364. x = rtnl_dereference(t->prl);
  365. if (x) {
  366. t->prl_count = 0;
  367. call_rcu(&x->rcu_head, prl_list_destroy_rcu);
  368. t->prl = NULL;
  369. }
  370. }
  371. out:
  372. return err;
  373. }
  374. static int
  375. isatap_chksrc(struct sk_buff *skb, const struct iphdr *iph, struct ip_tunnel *t)
  376. {
  377. struct ip_tunnel_prl_entry *p;
  378. int ok = 1;
  379. rcu_read_lock();
  380. p = __ipip6_tunnel_locate_prl(t, iph->saddr);
  381. if (p) {
  382. if (p->flags & PRL_DEFAULT)
  383. skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT;
  384. else
  385. skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT;
  386. } else {
  387. const struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr;
  388. if (ipv6_addr_is_isatap(addr6) &&
  389. (addr6->s6_addr32[3] == iph->saddr) &&
  390. ipv6_chk_prefix(addr6, t->dev))
  391. skb->ndisc_nodetype = NDISC_NODETYPE_HOST;
  392. else
  393. ok = 0;
  394. }
  395. rcu_read_unlock();
  396. return ok;
  397. }
  398. static void ipip6_tunnel_uninit(struct net_device *dev)
  399. {
  400. struct ip_tunnel *tunnel = netdev_priv(dev);
  401. struct sit_net *sitn = net_generic(tunnel->net, sit_net_id);
  402. if (dev == sitn->fb_tunnel_dev) {
  403. RCU_INIT_POINTER(sitn->tunnels_wc[0], NULL);
  404. } else {
  405. ipip6_tunnel_unlink(sitn, tunnel);
  406. ipip6_tunnel_del_prl(tunnel, NULL);
  407. }
  408. dev_put(dev);
  409. }
  410. /* Generate icmpv6 with type/code ICMPV6_DEST_UNREACH/ICMPV6_ADDR_UNREACH
  411. * if sufficient data bytes are available
  412. */
  413. static int ipip6_err_gen_icmpv6_unreach(struct sk_buff *skb)
  414. {
  415. const struct iphdr *iph = (const struct iphdr *) skb->data;
  416. struct rt6_info *rt;
  417. struct sk_buff *skb2;
  418. if (!pskb_may_pull(skb, iph->ihl * 4 + sizeof(struct ipv6hdr) + 8))
  419. return 1;
  420. skb2 = skb_clone(skb, GFP_ATOMIC);
  421. if (!skb2)
  422. return 1;
  423. skb_dst_drop(skb2);
  424. skb_pull(skb2, iph->ihl * 4);
  425. skb_reset_network_header(skb2);
  426. rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr, NULL, 0, 0);
  427. if (rt && rt->dst.dev)
  428. skb2->dev = rt->dst.dev;
  429. icmpv6_send(skb2, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
  430. if (rt)
  431. ip6_rt_put(rt);
  432. kfree_skb(skb2);
  433. return 0;
  434. }
  435. static int ipip6_err(struct sk_buff *skb, u32 info)
  436. {
  437. const struct iphdr *iph = (const struct iphdr *)skb->data;
  438. const int type = icmp_hdr(skb)->type;
  439. const int code = icmp_hdr(skb)->code;
  440. struct ip_tunnel *t;
  441. int err;
  442. switch (type) {
  443. default:
  444. case ICMP_PARAMETERPROB:
  445. return 0;
  446. case ICMP_DEST_UNREACH:
  447. switch (code) {
  448. case ICMP_SR_FAILED:
  449. /* Impossible event. */
  450. return 0;
  451. default:
  452. /* All others are translated to HOST_UNREACH.
  453. rfc2003 contains "deep thoughts" about NET_UNREACH,
  454. I believe they are just ether pollution. --ANK
  455. */
  456. break;
  457. }
  458. break;
  459. case ICMP_TIME_EXCEEDED:
  460. if (code != ICMP_EXC_TTL)
  461. return 0;
  462. break;
  463. case ICMP_REDIRECT:
  464. break;
  465. }
  466. err = -ENOENT;
  467. t = ipip6_tunnel_lookup(dev_net(skb->dev),
  468. skb->dev,
  469. iph->daddr,
  470. iph->saddr);
  471. if (t == NULL)
  472. goto out;
  473. if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED) {
  474. ipv4_update_pmtu(skb, dev_net(skb->dev), info,
  475. t->dev->ifindex, 0, IPPROTO_IPV6, 0);
  476. err = 0;
  477. goto out;
  478. }
  479. if (type == ICMP_REDIRECT) {
  480. ipv4_redirect(skb, dev_net(skb->dev), t->dev->ifindex, 0,
  481. IPPROTO_IPV6, 0);
  482. err = 0;
  483. goto out;
  484. }
  485. if (t->parms.iph.daddr == 0)
  486. goto out;
  487. err = 0;
  488. if (!ipip6_err_gen_icmpv6_unreach(skb))
  489. goto out;
  490. if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
  491. goto out;
  492. if (time_before(jiffies, t->err_time + IPTUNNEL_ERR_TIMEO))
  493. t->err_count++;
  494. else
  495. t->err_count = 1;
  496. t->err_time = jiffies;
  497. out:
  498. return err;
  499. }
  500. static inline bool is_spoofed_6rd(struct ip_tunnel *tunnel, const __be32 v4addr,
  501. const struct in6_addr *v6addr)
  502. {
  503. __be32 v4embed = 0;
  504. if (check_6rd(tunnel, v6addr, &v4embed) && v4addr != v4embed)
  505. return true;
  506. return false;
  507. }
  508. /* Checks if an address matches an address on the tunnel interface.
  509. * Used to detect the NAT of proto 41 packets and let them pass spoofing test.
  510. * Long story:
  511. * This function is called after we considered the packet as spoofed
  512. * in is_spoofed_6rd.
  513. * We may have a router that is doing NAT for proto 41 packets
  514. * for an internal station. Destination a.a.a.a/PREFIX:bbbb:bbbb
  515. * will be translated to n.n.n.n/PREFIX:bbbb:bbbb. And is_spoofed_6rd
  516. * function will return true, dropping the packet.
  517. * But, we can still check if is spoofed against the IP
  518. * addresses associated with the interface.
  519. */
  520. static bool only_dnatted(const struct ip_tunnel *tunnel,
  521. const struct in6_addr *v6dst)
  522. {
  523. int prefix_len;
  524. #ifdef CONFIG_IPV6_SIT_6RD
  525. prefix_len = tunnel->ip6rd.prefixlen + 32
  526. - tunnel->ip6rd.relay_prefixlen;
  527. #else
  528. prefix_len = 48;
  529. #endif
  530. return ipv6_chk_custom_prefix(v6dst, prefix_len, tunnel->dev);
  531. }
  532. /* Returns true if a packet is spoofed */
  533. static bool packet_is_spoofed(struct sk_buff *skb,
  534. const struct iphdr *iph,
  535. struct ip_tunnel *tunnel)
  536. {
  537. const struct ipv6hdr *ipv6h;
  538. if (tunnel->dev->priv_flags & IFF_ISATAP) {
  539. if (!isatap_chksrc(skb, iph, tunnel))
  540. return true;
  541. return false;
  542. }
  543. if (tunnel->dev->flags & IFF_POINTOPOINT)
  544. return false;
  545. ipv6h = ipv6_hdr(skb);
  546. if (unlikely(is_spoofed_6rd(tunnel, iph->saddr, &ipv6h->saddr))) {
  547. net_warn_ratelimited("Src spoofed %pI4/%pI6c -> %pI4/%pI6c\n",
  548. &iph->saddr, &ipv6h->saddr,
  549. &iph->daddr, &ipv6h->daddr);
  550. return true;
  551. }
  552. if (likely(!is_spoofed_6rd(tunnel, iph->daddr, &ipv6h->daddr)))
  553. return false;
  554. if (only_dnatted(tunnel, &ipv6h->daddr))
  555. return false;
  556. net_warn_ratelimited("Dst spoofed %pI4/%pI6c -> %pI4/%pI6c\n",
  557. &iph->saddr, &ipv6h->saddr,
  558. &iph->daddr, &ipv6h->daddr);
  559. return true;
  560. }
  561. static int ipip6_rcv(struct sk_buff *skb)
  562. {
  563. const struct iphdr *iph = ip_hdr(skb);
  564. struct ip_tunnel *tunnel;
  565. int err;
  566. tunnel = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev,
  567. iph->saddr, iph->daddr);
  568. if (tunnel != NULL) {
  569. struct pcpu_tstats *tstats;
  570. if (tunnel->parms.iph.protocol != IPPROTO_IPV6 &&
  571. tunnel->parms.iph.protocol != 0)
  572. goto out;
  573. skb->mac_header = skb->network_header;
  574. skb_reset_network_header(skb);
  575. IPCB(skb)->flags = 0;
  576. skb->protocol = htons(ETH_P_IPV6);
  577. if (packet_is_spoofed(skb, iph, tunnel)) {
  578. tunnel->dev->stats.rx_errors++;
  579. goto out;
  580. }
  581. __skb_tunnel_rx(skb, tunnel->dev, tunnel->net);
  582. err = IP_ECN_decapsulate(iph, skb);
  583. if (unlikely(err)) {
  584. if (log_ecn_error)
  585. net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
  586. &iph->saddr, iph->tos);
  587. if (err > 1) {
  588. ++tunnel->dev->stats.rx_frame_errors;
  589. ++tunnel->dev->stats.rx_errors;
  590. goto out;
  591. }
  592. }
  593. tstats = this_cpu_ptr(tunnel->dev->tstats);
  594. tstats->rx_packets++;
  595. tstats->rx_bytes += skb->len;
  596. netif_rx(skb);
  597. return 0;
  598. }
  599. /* no tunnel matched, let upstream know, ipsec may handle it */
  600. return 1;
  601. out:
  602. kfree_skb(skb);
  603. return 0;
  604. }
  605. static const struct tnl_ptk_info tpi = {
  606. /* no tunnel info required for ipip. */
  607. .proto = htons(ETH_P_IP),
  608. };
  609. static int ipip_rcv(struct sk_buff *skb)
  610. {
  611. const struct iphdr *iph;
  612. struct ip_tunnel *tunnel;
  613. iph = ip_hdr(skb);
  614. tunnel = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev,
  615. iph->saddr, iph->daddr);
  616. if (tunnel != NULL) {
  617. if (tunnel->parms.iph.protocol != IPPROTO_IPIP &&
  618. tunnel->parms.iph.protocol != 0)
  619. goto drop;
  620. if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
  621. goto drop;
  622. if (iptunnel_pull_header(skb, 0, tpi.proto))
  623. goto drop;
  624. return ip_tunnel_rcv(tunnel, skb, &tpi, log_ecn_error);
  625. }
  626. return 1;
  627. drop:
  628. kfree_skb(skb);
  629. return 0;
  630. }
  631. /*
  632. * If the IPv6 address comes from 6rd / 6to4 (RFC 3056) addr space this function
  633. * stores the embedded IPv4 address in v4dst and returns true.
  634. */
  635. static bool check_6rd(struct ip_tunnel *tunnel, const struct in6_addr *v6dst,
  636. __be32 *v4dst)
  637. {
  638. #ifdef CONFIG_IPV6_SIT_6RD
  639. if (ipv6_prefix_equal(v6dst, &tunnel->ip6rd.prefix,
  640. tunnel->ip6rd.prefixlen)) {
  641. unsigned int pbw0, pbi0;
  642. int pbi1;
  643. u32 d;
  644. pbw0 = tunnel->ip6rd.prefixlen >> 5;
  645. pbi0 = tunnel->ip6rd.prefixlen & 0x1f;
  646. d = (ntohl(v6dst->s6_addr32[pbw0]) << pbi0) >>
  647. tunnel->ip6rd.relay_prefixlen;
  648. pbi1 = pbi0 - tunnel->ip6rd.relay_prefixlen;
  649. if (pbi1 > 0)
  650. d |= ntohl(v6dst->s6_addr32[pbw0 + 1]) >>
  651. (32 - pbi1);
  652. *v4dst = tunnel->ip6rd.relay_prefix | htonl(d);
  653. return true;
  654. }
  655. #else
  656. if (v6dst->s6_addr16[0] == htons(0x2002)) {
  657. /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
  658. memcpy(v4dst, &v6dst->s6_addr16[1], 4);
  659. return true;
  660. }
  661. #endif
  662. return false;
  663. }
  664. static inline __be32 try_6rd(struct ip_tunnel *tunnel,
  665. const struct in6_addr *v6dst)
  666. {
  667. __be32 dst = 0;
  668. check_6rd(tunnel, v6dst, &dst);
  669. return dst;
  670. }
  671. /*
  672. * This function assumes it is being called from dev_queue_xmit()
  673. * and that skb is filled properly by that function.
  674. */
  675. static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
  676. struct net_device *dev)
  677. {
  678. struct ip_tunnel *tunnel = netdev_priv(dev);
  679. const struct iphdr *tiph = &tunnel->parms.iph;
  680. const struct ipv6hdr *iph6 = ipv6_hdr(skb);
  681. u8 tos = tunnel->parms.iph.tos;
  682. __be16 df = tiph->frag_off;
  683. struct rtable *rt; /* Route to the other host */
  684. struct net_device *tdev; /* Device to other host */
  685. unsigned int max_headroom; /* The extra header space needed */
  686. __be32 dst = tiph->daddr;
  687. struct flowi4 fl4;
  688. int mtu;
  689. const struct in6_addr *addr6;
  690. int addr_type;
  691. u8 ttl;
  692. int err;
  693. if (skb->protocol != htons(ETH_P_IPV6))
  694. goto tx_error;
  695. if (tos == 1)
  696. tos = ipv6_get_dsfield(iph6);
  697. /* ISATAP (RFC4214) - must come before 6to4 */
  698. if (dev->priv_flags & IFF_ISATAP) {
  699. struct neighbour *neigh = NULL;
  700. bool do_tx_error = false;
  701. if (skb_dst(skb))
  702. neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
  703. if (neigh == NULL) {
  704. net_dbg_ratelimited("nexthop == NULL\n");
  705. goto tx_error;
  706. }
  707. addr6 = (const struct in6_addr *)&neigh->primary_key;
  708. addr_type = ipv6_addr_type(addr6);
  709. if ((addr_type & IPV6_ADDR_UNICAST) &&
  710. ipv6_addr_is_isatap(addr6))
  711. dst = addr6->s6_addr32[3];
  712. else
  713. do_tx_error = true;
  714. neigh_release(neigh);
  715. if (do_tx_error)
  716. goto tx_error;
  717. }
  718. if (!dst)
  719. dst = try_6rd(tunnel, &iph6->daddr);
  720. if (!dst) {
  721. struct neighbour *neigh = NULL;
  722. bool do_tx_error = false;
  723. if (skb_dst(skb))
  724. neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
  725. if (neigh == NULL) {
  726. net_dbg_ratelimited("nexthop == NULL\n");
  727. goto tx_error;
  728. }
  729. addr6 = (const struct in6_addr *)&neigh->primary_key;
  730. addr_type = ipv6_addr_type(addr6);
  731. if (addr_type == IPV6_ADDR_ANY) {
  732. addr6 = &ipv6_hdr(skb)->daddr;
  733. addr_type = ipv6_addr_type(addr6);
  734. }
  735. if ((addr_type & IPV6_ADDR_COMPATv4) != 0)
  736. dst = addr6->s6_addr32[3];
  737. else
  738. do_tx_error = true;
  739. neigh_release(neigh);
  740. if (do_tx_error)
  741. goto tx_error;
  742. }
  743. rt = ip_route_output_ports(tunnel->net, &fl4, NULL,
  744. dst, tiph->saddr,
  745. 0, 0,
  746. IPPROTO_IPV6, RT_TOS(tos),
  747. tunnel->parms.link);
  748. if (IS_ERR(rt)) {
  749. dev->stats.tx_carrier_errors++;
  750. goto tx_error_icmp;
  751. }
  752. if (rt->rt_type != RTN_UNICAST) {
  753. ip_rt_put(rt);
  754. dev->stats.tx_carrier_errors++;
  755. goto tx_error_icmp;
  756. }
  757. tdev = rt->dst.dev;
  758. if (tdev == dev) {
  759. ip_rt_put(rt);
  760. dev->stats.collisions++;
  761. goto tx_error;
  762. }
  763. if (df) {
  764. mtu = dst_mtu(&rt->dst) - sizeof(struct iphdr);
  765. if (mtu < 68) {
  766. dev->stats.collisions++;
  767. ip_rt_put(rt);
  768. goto tx_error;
  769. }
  770. if (mtu < IPV6_MIN_MTU) {
  771. mtu = IPV6_MIN_MTU;
  772. df = 0;
  773. }
  774. if (tunnel->parms.iph.daddr && skb_dst(skb))
  775. skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
  776. if (skb->len > mtu) {
  777. icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
  778. ip_rt_put(rt);
  779. goto tx_error;
  780. }
  781. }
  782. if (tunnel->err_count > 0) {
  783. if (time_before(jiffies,
  784. tunnel->err_time + IPTUNNEL_ERR_TIMEO)) {
  785. tunnel->err_count--;
  786. dst_link_failure(skb);
  787. } else
  788. tunnel->err_count = 0;
  789. }
  790. /*
  791. * Okay, now see if we can stuff it in the buffer as-is.
  792. */
  793. max_headroom = LL_RESERVED_SPACE(tdev)+sizeof(struct iphdr);
  794. if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
  795. (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
  796. struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
  797. if (!new_skb) {
  798. ip_rt_put(rt);
  799. dev->stats.tx_dropped++;
  800. kfree_skb(skb);
  801. return NETDEV_TX_OK;
  802. }
  803. if (skb->sk)
  804. skb_set_owner_w(new_skb, skb->sk);
  805. dev_kfree_skb(skb);
  806. skb = new_skb;
  807. iph6 = ipv6_hdr(skb);
  808. }
  809. ttl = tiph->ttl;
  810. if (ttl == 0)
  811. ttl = iph6->hop_limit;
  812. tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
  813. skb = iptunnel_handle_offloads(skb, false, SKB_GSO_SIT);
  814. if (IS_ERR(skb))
  815. goto out;
  816. err = iptunnel_xmit(rt, skb, fl4.saddr, fl4.daddr, IPPROTO_IPV6, tos,
  817. ttl, df, !net_eq(tunnel->net, dev_net(dev)));
  818. iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
  819. return NETDEV_TX_OK;
  820. tx_error_icmp:
  821. dst_link_failure(skb);
  822. tx_error:
  823. kfree_skb(skb);
  824. out:
  825. dev->stats.tx_errors++;
  826. return NETDEV_TX_OK;
  827. }
  828. static netdev_tx_t ipip_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
  829. {
  830. struct ip_tunnel *tunnel = netdev_priv(dev);
  831. const struct iphdr *tiph = &tunnel->parms.iph;
  832. skb = iptunnel_handle_offloads(skb, false, SKB_GSO_IPIP);
  833. if (IS_ERR(skb))
  834. goto out;
  835. ip_tunnel_xmit(skb, dev, tiph, IPPROTO_IPIP);
  836. return NETDEV_TX_OK;
  837. out:
  838. dev->stats.tx_errors++;
  839. return NETDEV_TX_OK;
  840. }
  841. static netdev_tx_t sit_tunnel_xmit(struct sk_buff *skb,
  842. struct net_device *dev)
  843. {
  844. switch (skb->protocol) {
  845. case htons(ETH_P_IP):
  846. ipip_tunnel_xmit(skb, dev);
  847. break;
  848. case htons(ETH_P_IPV6):
  849. ipip6_tunnel_xmit(skb, dev);
  850. break;
  851. default:
  852. goto tx_err;
  853. }
  854. return NETDEV_TX_OK;
  855. tx_err:
  856. dev->stats.tx_errors++;
  857. kfree_skb(skb);
  858. return NETDEV_TX_OK;
  859. }
  860. static void ipip6_tunnel_bind_dev(struct net_device *dev)
  861. {
  862. struct net_device *tdev = NULL;
  863. struct ip_tunnel *tunnel;
  864. const struct iphdr *iph;
  865. struct flowi4 fl4;
  866. tunnel = netdev_priv(dev);
  867. iph = &tunnel->parms.iph;
  868. if (iph->daddr) {
  869. struct rtable *rt = ip_route_output_ports(tunnel->net, &fl4,
  870. NULL,
  871. iph->daddr, iph->saddr,
  872. 0, 0,
  873. IPPROTO_IPV6,
  874. RT_TOS(iph->tos),
  875. tunnel->parms.link);
  876. if (!IS_ERR(rt)) {
  877. tdev = rt->dst.dev;
  878. ip_rt_put(rt);
  879. }
  880. dev->flags |= IFF_POINTOPOINT;
  881. }
  882. if (!tdev && tunnel->parms.link)
  883. tdev = __dev_get_by_index(tunnel->net, tunnel->parms.link);
  884. if (tdev) {
  885. dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr);
  886. dev->mtu = tdev->mtu - sizeof(struct iphdr);
  887. if (dev->mtu < IPV6_MIN_MTU)
  888. dev->mtu = IPV6_MIN_MTU;
  889. }
  890. dev->iflink = tunnel->parms.link;
  891. }
  892. static void ipip6_tunnel_update(struct ip_tunnel *t, struct ip_tunnel_parm *p)
  893. {
  894. struct net *net = t->net;
  895. struct sit_net *sitn = net_generic(net, sit_net_id);
  896. ipip6_tunnel_unlink(sitn, t);
  897. synchronize_net();
  898. t->parms.iph.saddr = p->iph.saddr;
  899. t->parms.iph.daddr = p->iph.daddr;
  900. memcpy(t->dev->dev_addr, &p->iph.saddr, 4);
  901. memcpy(t->dev->broadcast, &p->iph.daddr, 4);
  902. ipip6_tunnel_link(sitn, t);
  903. t->parms.iph.ttl = p->iph.ttl;
  904. t->parms.iph.tos = p->iph.tos;
  905. if (t->parms.link != p->link) {
  906. t->parms.link = p->link;
  907. ipip6_tunnel_bind_dev(t->dev);
  908. }
  909. netdev_state_change(t->dev);
  910. }
  911. #ifdef CONFIG_IPV6_SIT_6RD
  912. static int ipip6_tunnel_update_6rd(struct ip_tunnel *t,
  913. struct ip_tunnel_6rd *ip6rd)
  914. {
  915. struct in6_addr prefix;
  916. __be32 relay_prefix;
  917. if (ip6rd->relay_prefixlen > 32 ||
  918. ip6rd->prefixlen + (32 - ip6rd->relay_prefixlen) > 64)
  919. return -EINVAL;
  920. ipv6_addr_prefix(&prefix, &ip6rd->prefix, ip6rd->prefixlen);
  921. if (!ipv6_addr_equal(&prefix, &ip6rd->prefix))
  922. return -EINVAL;
  923. if (ip6rd->relay_prefixlen)
  924. relay_prefix = ip6rd->relay_prefix &
  925. htonl(0xffffffffUL <<
  926. (32 - ip6rd->relay_prefixlen));
  927. else
  928. relay_prefix = 0;
  929. if (relay_prefix != ip6rd->relay_prefix)
  930. return -EINVAL;
  931. t->ip6rd.prefix = prefix;
  932. t->ip6rd.relay_prefix = relay_prefix;
  933. t->ip6rd.prefixlen = ip6rd->prefixlen;
  934. t->ip6rd.relay_prefixlen = ip6rd->relay_prefixlen;
  935. netdev_state_change(t->dev);
  936. return 0;
  937. }
  938. #endif
  939. static int
  940. ipip6_tunnel_ioctl (struct net_device *dev, struct ifreq *ifr, int cmd)
  941. {
  942. int err = 0;
  943. struct ip_tunnel_parm p;
  944. struct ip_tunnel_prl prl;
  945. struct ip_tunnel *t;
  946. struct net *net = dev_net(dev);
  947. struct sit_net *sitn = net_generic(net, sit_net_id);
  948. #ifdef CONFIG_IPV6_SIT_6RD
  949. struct ip_tunnel_6rd ip6rd;
  950. #endif
  951. switch (cmd) {
  952. case SIOCGETTUNNEL:
  953. #ifdef CONFIG_IPV6_SIT_6RD
  954. case SIOCGET6RD:
  955. #endif
  956. t = NULL;
  957. if (dev == sitn->fb_tunnel_dev) {
  958. if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
  959. err = -EFAULT;
  960. break;
  961. }
  962. t = ipip6_tunnel_locate(net, &p, 0);
  963. }
  964. if (t == NULL)
  965. t = netdev_priv(dev);
  966. err = -EFAULT;
  967. if (cmd == SIOCGETTUNNEL) {
  968. memcpy(&p, &t->parms, sizeof(p));
  969. if (copy_to_user(ifr->ifr_ifru.ifru_data, &p,
  970. sizeof(p)))
  971. goto done;
  972. #ifdef CONFIG_IPV6_SIT_6RD
  973. } else {
  974. ip6rd.prefix = t->ip6rd.prefix;
  975. ip6rd.relay_prefix = t->ip6rd.relay_prefix;
  976. ip6rd.prefixlen = t->ip6rd.prefixlen;
  977. ip6rd.relay_prefixlen = t->ip6rd.relay_prefixlen;
  978. if (copy_to_user(ifr->ifr_ifru.ifru_data, &ip6rd,
  979. sizeof(ip6rd)))
  980. goto done;
  981. #endif
  982. }
  983. err = 0;
  984. break;
  985. case SIOCADDTUNNEL:
  986. case SIOCCHGTUNNEL:
  987. err = -EPERM;
  988. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  989. goto done;
  990. err = -EFAULT;
  991. if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
  992. goto done;
  993. err = -EINVAL;
  994. if (p.iph.protocol != IPPROTO_IPV6 &&
  995. p.iph.protocol != IPPROTO_IPIP &&
  996. p.iph.protocol != 0)
  997. goto done;
  998. if (p.iph.version != 4 ||
  999. p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
  1000. goto done;
  1001. if (p.iph.ttl)
  1002. p.iph.frag_off |= htons(IP_DF);
  1003. t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
  1004. if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
  1005. if (t != NULL) {
  1006. if (t->dev != dev) {
  1007. err = -EEXIST;
  1008. break;
  1009. }
  1010. } else {
  1011. if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
  1012. (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
  1013. err = -EINVAL;
  1014. break;
  1015. }
  1016. t = netdev_priv(dev);
  1017. }
  1018. ipip6_tunnel_update(t, &p);
  1019. }
  1020. if (t) {
  1021. err = 0;
  1022. if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
  1023. err = -EFAULT;
  1024. } else
  1025. err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
  1026. break;
  1027. case SIOCDELTUNNEL:
  1028. err = -EPERM;
  1029. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  1030. goto done;
  1031. if (dev == sitn->fb_tunnel_dev) {
  1032. err = -EFAULT;
  1033. if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
  1034. goto done;
  1035. err = -ENOENT;
  1036. if ((t = ipip6_tunnel_locate(net, &p, 0)) == NULL)
  1037. goto done;
  1038. err = -EPERM;
  1039. if (t == netdev_priv(sitn->fb_tunnel_dev))
  1040. goto done;
  1041. dev = t->dev;
  1042. }
  1043. unregister_netdevice(dev);
  1044. err = 0;
  1045. break;
  1046. case SIOCGETPRL:
  1047. err = -EINVAL;
  1048. if (dev == sitn->fb_tunnel_dev)
  1049. goto done;
  1050. err = -ENOENT;
  1051. if (!(t = netdev_priv(dev)))
  1052. goto done;
  1053. err = ipip6_tunnel_get_prl(t, ifr->ifr_ifru.ifru_data);
  1054. break;
  1055. case SIOCADDPRL:
  1056. case SIOCDELPRL:
  1057. case SIOCCHGPRL:
  1058. err = -EPERM;
  1059. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  1060. goto done;
  1061. err = -EINVAL;
  1062. if (dev == sitn->fb_tunnel_dev)
  1063. goto done;
  1064. err = -EFAULT;
  1065. if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
  1066. goto done;
  1067. err = -ENOENT;
  1068. if (!(t = netdev_priv(dev)))
  1069. goto done;
  1070. switch (cmd) {
  1071. case SIOCDELPRL:
  1072. err = ipip6_tunnel_del_prl(t, &prl);
  1073. break;
  1074. case SIOCADDPRL:
  1075. case SIOCCHGPRL:
  1076. err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
  1077. break;
  1078. }
  1079. netdev_state_change(dev);
  1080. break;
  1081. #ifdef CONFIG_IPV6_SIT_6RD
  1082. case SIOCADD6RD:
  1083. case SIOCCHG6RD:
  1084. case SIOCDEL6RD:
  1085. err = -EPERM;
  1086. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  1087. goto done;
  1088. err = -EFAULT;
  1089. if (copy_from_user(&ip6rd, ifr->ifr_ifru.ifru_data,
  1090. sizeof(ip6rd)))
  1091. goto done;
  1092. t = netdev_priv(dev);
  1093. if (cmd != SIOCDEL6RD) {
  1094. err = ipip6_tunnel_update_6rd(t, &ip6rd);
  1095. if (err < 0)
  1096. goto done;
  1097. } else
  1098. ipip6_tunnel_clone_6rd(dev, sitn);
  1099. err = 0;
  1100. break;
  1101. #endif
  1102. default:
  1103. err = -EINVAL;
  1104. }
  1105. done:
  1106. return err;
  1107. }
  1108. static int ipip6_tunnel_change_mtu(struct net_device *dev, int new_mtu)
  1109. {
  1110. if (new_mtu < IPV6_MIN_MTU || new_mtu > 0xFFF8 - sizeof(struct iphdr))
  1111. return -EINVAL;
  1112. dev->mtu = new_mtu;
  1113. return 0;
  1114. }
  1115. static const struct net_device_ops ipip6_netdev_ops = {
  1116. .ndo_uninit = ipip6_tunnel_uninit,
  1117. .ndo_start_xmit = sit_tunnel_xmit,
  1118. .ndo_do_ioctl = ipip6_tunnel_ioctl,
  1119. .ndo_change_mtu = ipip6_tunnel_change_mtu,
  1120. .ndo_get_stats64 = ip_tunnel_get_stats64,
  1121. };
  1122. static void ipip6_dev_free(struct net_device *dev)
  1123. {
  1124. free_percpu(dev->tstats);
  1125. free_netdev(dev);
  1126. }
  1127. #define SIT_FEATURES (NETIF_F_SG | \
  1128. NETIF_F_FRAGLIST | \
  1129. NETIF_F_HIGHDMA | \
  1130. NETIF_F_GSO_SOFTWARE | \
  1131. NETIF_F_HW_CSUM)
  1132. static void ipip6_tunnel_setup(struct net_device *dev)
  1133. {
  1134. dev->netdev_ops = &ipip6_netdev_ops;
  1135. dev->destructor = ipip6_dev_free;
  1136. dev->type = ARPHRD_SIT;
  1137. dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr);
  1138. dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr);
  1139. dev->flags = IFF_NOARP;
  1140. dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
  1141. dev->iflink = 0;
  1142. dev->addr_len = 4;
  1143. dev->features |= NETIF_F_LLTX;
  1144. dev->features |= SIT_FEATURES;
  1145. dev->hw_features |= SIT_FEATURES;
  1146. }
  1147. static int ipip6_tunnel_init(struct net_device *dev)
  1148. {
  1149. struct ip_tunnel *tunnel = netdev_priv(dev);
  1150. int i;
  1151. tunnel->dev = dev;
  1152. tunnel->net = dev_net(dev);
  1153. memcpy(dev->dev_addr, &tunnel->parms.iph.saddr, 4);
  1154. memcpy(dev->broadcast, &tunnel->parms.iph.daddr, 4);
  1155. ipip6_tunnel_bind_dev(dev);
  1156. dev->tstats = alloc_percpu(struct pcpu_tstats);
  1157. if (!dev->tstats)
  1158. return -ENOMEM;
  1159. for_each_possible_cpu(i) {
  1160. struct pcpu_tstats *ipip6_tunnel_stats;
  1161. ipip6_tunnel_stats = per_cpu_ptr(dev->tstats, i);
  1162. u64_stats_init(&ipip6_tunnel_stats->syncp);
  1163. }
  1164. return 0;
  1165. }
  1166. static int __net_init ipip6_fb_tunnel_init(struct net_device *dev)
  1167. {
  1168. struct ip_tunnel *tunnel = netdev_priv(dev);
  1169. struct iphdr *iph = &tunnel->parms.iph;
  1170. struct net *net = dev_net(dev);
  1171. struct sit_net *sitn = net_generic(net, sit_net_id);
  1172. int i;
  1173. tunnel->dev = dev;
  1174. tunnel->net = dev_net(dev);
  1175. strcpy(tunnel->parms.name, dev->name);
  1176. iph->version = 4;
  1177. iph->protocol = IPPROTO_IPV6;
  1178. iph->ihl = 5;
  1179. iph->ttl = 64;
  1180. dev->tstats = alloc_percpu(struct pcpu_tstats);
  1181. if (!dev->tstats)
  1182. return -ENOMEM;
  1183. for_each_possible_cpu(i) {
  1184. struct pcpu_tstats *ipip6_fb_stats;
  1185. ipip6_fb_stats = per_cpu_ptr(dev->tstats, i);
  1186. u64_stats_init(&ipip6_fb_stats->syncp);
  1187. }
  1188. dev_hold(dev);
  1189. rcu_assign_pointer(sitn->tunnels_wc[0], tunnel);
  1190. return 0;
  1191. }
  1192. static int ipip6_validate(struct nlattr *tb[], struct nlattr *data[])
  1193. {
  1194. u8 proto;
  1195. if (!data || !data[IFLA_IPTUN_PROTO])
  1196. return 0;
  1197. proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
  1198. if (proto != IPPROTO_IPV6 &&
  1199. proto != IPPROTO_IPIP &&
  1200. proto != 0)
  1201. return -EINVAL;
  1202. return 0;
  1203. }
  1204. static void ipip6_netlink_parms(struct nlattr *data[],
  1205. struct ip_tunnel_parm *parms)
  1206. {
  1207. memset(parms, 0, sizeof(*parms));
  1208. parms->iph.version = 4;
  1209. parms->iph.protocol = IPPROTO_IPV6;
  1210. parms->iph.ihl = 5;
  1211. parms->iph.ttl = 64;
  1212. if (!data)
  1213. return;
  1214. if (data[IFLA_IPTUN_LINK])
  1215. parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
  1216. if (data[IFLA_IPTUN_LOCAL])
  1217. parms->iph.saddr = nla_get_be32(data[IFLA_IPTUN_LOCAL]);
  1218. if (data[IFLA_IPTUN_REMOTE])
  1219. parms->iph.daddr = nla_get_be32(data[IFLA_IPTUN_REMOTE]);
  1220. if (data[IFLA_IPTUN_TTL]) {
  1221. parms->iph.ttl = nla_get_u8(data[IFLA_IPTUN_TTL]);
  1222. if (parms->iph.ttl)
  1223. parms->iph.frag_off = htons(IP_DF);
  1224. }
  1225. if (data[IFLA_IPTUN_TOS])
  1226. parms->iph.tos = nla_get_u8(data[IFLA_IPTUN_TOS]);
  1227. if (!data[IFLA_IPTUN_PMTUDISC] || nla_get_u8(data[IFLA_IPTUN_PMTUDISC]))
  1228. parms->iph.frag_off = htons(IP_DF);
  1229. if (data[IFLA_IPTUN_FLAGS])
  1230. parms->i_flags = nla_get_be16(data[IFLA_IPTUN_FLAGS]);
  1231. if (data[IFLA_IPTUN_PROTO])
  1232. parms->iph.protocol = nla_get_u8(data[IFLA_IPTUN_PROTO]);
  1233. }
  1234. #ifdef CONFIG_IPV6_SIT_6RD
  1235. /* This function returns true when 6RD attributes are present in the nl msg */
  1236. static bool ipip6_netlink_6rd_parms(struct nlattr *data[],
  1237. struct ip_tunnel_6rd *ip6rd)
  1238. {
  1239. bool ret = false;
  1240. memset(ip6rd, 0, sizeof(*ip6rd));
  1241. if (!data)
  1242. return ret;
  1243. if (data[IFLA_IPTUN_6RD_PREFIX]) {
  1244. ret = true;
  1245. nla_memcpy(&ip6rd->prefix, data[IFLA_IPTUN_6RD_PREFIX],
  1246. sizeof(struct in6_addr));
  1247. }
  1248. if (data[IFLA_IPTUN_6RD_RELAY_PREFIX]) {
  1249. ret = true;
  1250. ip6rd->relay_prefix =
  1251. nla_get_be32(data[IFLA_IPTUN_6RD_RELAY_PREFIX]);
  1252. }
  1253. if (data[IFLA_IPTUN_6RD_PREFIXLEN]) {
  1254. ret = true;
  1255. ip6rd->prefixlen = nla_get_u16(data[IFLA_IPTUN_6RD_PREFIXLEN]);
  1256. }
  1257. if (data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]) {
  1258. ret = true;
  1259. ip6rd->relay_prefixlen =
  1260. nla_get_u16(data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]);
  1261. }
  1262. return ret;
  1263. }
  1264. #endif
  1265. static int ipip6_newlink(struct net *src_net, struct net_device *dev,
  1266. struct nlattr *tb[], struct nlattr *data[])
  1267. {
  1268. struct net *net = dev_net(dev);
  1269. struct ip_tunnel *nt;
  1270. #ifdef CONFIG_IPV6_SIT_6RD
  1271. struct ip_tunnel_6rd ip6rd;
  1272. #endif
  1273. int err;
  1274. nt = netdev_priv(dev);
  1275. ipip6_netlink_parms(data, &nt->parms);
  1276. if (ipip6_tunnel_locate(net, &nt->parms, 0))
  1277. return -EEXIST;
  1278. err = ipip6_tunnel_create(dev);
  1279. if (err < 0)
  1280. return err;
  1281. #ifdef CONFIG_IPV6_SIT_6RD
  1282. if (ipip6_netlink_6rd_parms(data, &ip6rd))
  1283. err = ipip6_tunnel_update_6rd(nt, &ip6rd);
  1284. #endif
  1285. return err;
  1286. }
  1287. static int ipip6_changelink(struct net_device *dev, struct nlattr *tb[],
  1288. struct nlattr *data[])
  1289. {
  1290. struct ip_tunnel *t = netdev_priv(dev);
  1291. struct ip_tunnel_parm p;
  1292. struct net *net = t->net;
  1293. struct sit_net *sitn = net_generic(net, sit_net_id);
  1294. #ifdef CONFIG_IPV6_SIT_6RD
  1295. struct ip_tunnel_6rd ip6rd;
  1296. #endif
  1297. if (dev == sitn->fb_tunnel_dev)
  1298. return -EINVAL;
  1299. ipip6_netlink_parms(data, &p);
  1300. if (((dev->flags & IFF_POINTOPOINT) && !p.iph.daddr) ||
  1301. (!(dev->flags & IFF_POINTOPOINT) && p.iph.daddr))
  1302. return -EINVAL;
  1303. t = ipip6_tunnel_locate(net, &p, 0);
  1304. if (t) {
  1305. if (t->dev != dev)
  1306. return -EEXIST;
  1307. } else
  1308. t = netdev_priv(dev);
  1309. ipip6_tunnel_update(t, &p);
  1310. #ifdef CONFIG_IPV6_SIT_6RD
  1311. if (ipip6_netlink_6rd_parms(data, &ip6rd))
  1312. return ipip6_tunnel_update_6rd(t, &ip6rd);
  1313. #endif
  1314. return 0;
  1315. }
  1316. static size_t ipip6_get_size(const struct net_device *dev)
  1317. {
  1318. return
  1319. /* IFLA_IPTUN_LINK */
  1320. nla_total_size(4) +
  1321. /* IFLA_IPTUN_LOCAL */
  1322. nla_total_size(4) +
  1323. /* IFLA_IPTUN_REMOTE */
  1324. nla_total_size(4) +
  1325. /* IFLA_IPTUN_TTL */
  1326. nla_total_size(1) +
  1327. /* IFLA_IPTUN_TOS */
  1328. nla_total_size(1) +
  1329. /* IFLA_IPTUN_PMTUDISC */
  1330. nla_total_size(1) +
  1331. /* IFLA_IPTUN_FLAGS */
  1332. nla_total_size(2) +
  1333. /* IFLA_IPTUN_PROTO */
  1334. nla_total_size(1) +
  1335. #ifdef CONFIG_IPV6_SIT_6RD
  1336. /* IFLA_IPTUN_6RD_PREFIX */
  1337. nla_total_size(sizeof(struct in6_addr)) +
  1338. /* IFLA_IPTUN_6RD_RELAY_PREFIX */
  1339. nla_total_size(4) +
  1340. /* IFLA_IPTUN_6RD_PREFIXLEN */
  1341. nla_total_size(2) +
  1342. /* IFLA_IPTUN_6RD_RELAY_PREFIXLEN */
  1343. nla_total_size(2) +
  1344. #endif
  1345. 0;
  1346. }
  1347. static int ipip6_fill_info(struct sk_buff *skb, const struct net_device *dev)
  1348. {
  1349. struct ip_tunnel *tunnel = netdev_priv(dev);
  1350. struct ip_tunnel_parm *parm = &tunnel->parms;
  1351. if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
  1352. nla_put_be32(skb, IFLA_IPTUN_LOCAL, parm->iph.saddr) ||
  1353. nla_put_be32(skb, IFLA_IPTUN_REMOTE, parm->iph.daddr) ||
  1354. nla_put_u8(skb, IFLA_IPTUN_TTL, parm->iph.ttl) ||
  1355. nla_put_u8(skb, IFLA_IPTUN_TOS, parm->iph.tos) ||
  1356. nla_put_u8(skb, IFLA_IPTUN_PMTUDISC,
  1357. !!(parm->iph.frag_off & htons(IP_DF))) ||
  1358. nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->iph.protocol) ||
  1359. nla_put_be16(skb, IFLA_IPTUN_FLAGS, parm->i_flags))
  1360. goto nla_put_failure;
  1361. #ifdef CONFIG_IPV6_SIT_6RD
  1362. if (nla_put(skb, IFLA_IPTUN_6RD_PREFIX, sizeof(struct in6_addr),
  1363. &tunnel->ip6rd.prefix) ||
  1364. nla_put_be32(skb, IFLA_IPTUN_6RD_RELAY_PREFIX,
  1365. tunnel->ip6rd.relay_prefix) ||
  1366. nla_put_u16(skb, IFLA_IPTUN_6RD_PREFIXLEN,
  1367. tunnel->ip6rd.prefixlen) ||
  1368. nla_put_u16(skb, IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
  1369. tunnel->ip6rd.relay_prefixlen))
  1370. goto nla_put_failure;
  1371. #endif
  1372. return 0;
  1373. nla_put_failure:
  1374. return -EMSGSIZE;
  1375. }
  1376. static const struct nla_policy ipip6_policy[IFLA_IPTUN_MAX + 1] = {
  1377. [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
  1378. [IFLA_IPTUN_LOCAL] = { .type = NLA_U32 },
  1379. [IFLA_IPTUN_REMOTE] = { .type = NLA_U32 },
  1380. [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
  1381. [IFLA_IPTUN_TOS] = { .type = NLA_U8 },
  1382. [IFLA_IPTUN_PMTUDISC] = { .type = NLA_U8 },
  1383. [IFLA_IPTUN_FLAGS] = { .type = NLA_U16 },
  1384. [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
  1385. #ifdef CONFIG_IPV6_SIT_6RD
  1386. [IFLA_IPTUN_6RD_PREFIX] = { .len = sizeof(struct in6_addr) },
  1387. [IFLA_IPTUN_6RD_RELAY_PREFIX] = { .type = NLA_U32 },
  1388. [IFLA_IPTUN_6RD_PREFIXLEN] = { .type = NLA_U16 },
  1389. [IFLA_IPTUN_6RD_RELAY_PREFIXLEN] = { .type = NLA_U16 },
  1390. #endif
  1391. };
  1392. static void ipip6_dellink(struct net_device *dev, struct list_head *head)
  1393. {
  1394. struct net *net = dev_net(dev);
  1395. struct sit_net *sitn = net_generic(net, sit_net_id);
  1396. if (dev != sitn->fb_tunnel_dev)
  1397. unregister_netdevice_queue(dev, head);
  1398. }
  1399. static struct rtnl_link_ops sit_link_ops __read_mostly = {
  1400. .kind = "sit",
  1401. .maxtype = IFLA_IPTUN_MAX,
  1402. .policy = ipip6_policy,
  1403. .priv_size = sizeof(struct ip_tunnel),
  1404. .setup = ipip6_tunnel_setup,
  1405. .validate = ipip6_validate,
  1406. .newlink = ipip6_newlink,
  1407. .changelink = ipip6_changelink,
  1408. .get_size = ipip6_get_size,
  1409. .fill_info = ipip6_fill_info,
  1410. .dellink = ipip6_dellink,
  1411. };
  1412. static struct xfrm_tunnel sit_handler __read_mostly = {
  1413. .handler = ipip6_rcv,
  1414. .err_handler = ipip6_err,
  1415. .priority = 1,
  1416. };
  1417. static struct xfrm_tunnel ipip_handler __read_mostly = {
  1418. .handler = ipip_rcv,
  1419. .err_handler = ipip6_err,
  1420. .priority = 2,
  1421. };
  1422. static void __net_exit sit_destroy_tunnels(struct net *net,
  1423. struct list_head *head)
  1424. {
  1425. struct sit_net *sitn = net_generic(net, sit_net_id);
  1426. struct net_device *dev, *aux;
  1427. int prio;
  1428. for_each_netdev_safe(net, dev, aux)
  1429. if (dev->rtnl_link_ops == &sit_link_ops)
  1430. unregister_netdevice_queue(dev, head);
  1431. for (prio = 1; prio < 4; prio++) {
  1432. int h;
  1433. for (h = 0; h < HASH_SIZE; h++) {
  1434. struct ip_tunnel *t;
  1435. t = rtnl_dereference(sitn->tunnels[prio][h]);
  1436. while (t != NULL) {
  1437. /* If dev is in the same netns, it has already
  1438. * been added to the list by the previous loop.
  1439. */
  1440. if (!net_eq(dev_net(t->dev), net))
  1441. unregister_netdevice_queue(t->dev,
  1442. head);
  1443. t = rtnl_dereference(t->next);
  1444. }
  1445. }
  1446. }
  1447. }
  1448. static int __net_init sit_init_net(struct net *net)
  1449. {
  1450. struct sit_net *sitn = net_generic(net, sit_net_id);
  1451. struct ip_tunnel *t;
  1452. int err;
  1453. sitn->tunnels[0] = sitn->tunnels_wc;
  1454. sitn->tunnels[1] = sitn->tunnels_l;
  1455. sitn->tunnels[2] = sitn->tunnels_r;
  1456. sitn->tunnels[3] = sitn->tunnels_r_l;
  1457. sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
  1458. ipip6_tunnel_setup);
  1459. if (!sitn->fb_tunnel_dev) {
  1460. err = -ENOMEM;
  1461. goto err_alloc_dev;
  1462. }
  1463. dev_net_set(sitn->fb_tunnel_dev, net);
  1464. sitn->fb_tunnel_dev->rtnl_link_ops = &sit_link_ops;
  1465. /* FB netdevice is special: we have one, and only one per netns.
  1466. * Allowing to move it to another netns is clearly unsafe.
  1467. */
  1468. sitn->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
  1469. err = ipip6_fb_tunnel_init(sitn->fb_tunnel_dev);
  1470. if (err)
  1471. goto err_dev_free;
  1472. ipip6_tunnel_clone_6rd(sitn->fb_tunnel_dev, sitn);
  1473. if ((err = register_netdev(sitn->fb_tunnel_dev)))
  1474. goto err_reg_dev;
  1475. t = netdev_priv(sitn->fb_tunnel_dev);
  1476. strcpy(t->parms.name, sitn->fb_tunnel_dev->name);
  1477. return 0;
  1478. err_reg_dev:
  1479. dev_put(sitn->fb_tunnel_dev);
  1480. err_dev_free:
  1481. ipip6_dev_free(sitn->fb_tunnel_dev);
  1482. err_alloc_dev:
  1483. return err;
  1484. }
  1485. static void __net_exit sit_exit_net(struct net *net)
  1486. {
  1487. LIST_HEAD(list);
  1488. rtnl_lock();
  1489. sit_destroy_tunnels(net, &list);
  1490. unregister_netdevice_many(&list);
  1491. rtnl_unlock();
  1492. }
  1493. static struct pernet_operations sit_net_ops = {
  1494. .init = sit_init_net,
  1495. .exit = sit_exit_net,
  1496. .id = &sit_net_id,
  1497. .size = sizeof(struct sit_net),
  1498. };
  1499. static void __exit sit_cleanup(void)
  1500. {
  1501. rtnl_link_unregister(&sit_link_ops);
  1502. xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
  1503. xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
  1504. unregister_pernet_device(&sit_net_ops);
  1505. rcu_barrier(); /* Wait for completion of call_rcu()'s */
  1506. }
  1507. static int __init sit_init(void)
  1508. {
  1509. int err;
  1510. pr_info("IPv6 over IPv4 tunneling driver\n");
  1511. err = register_pernet_device(&sit_net_ops);
  1512. if (err < 0)
  1513. return err;
  1514. err = xfrm4_tunnel_register(&sit_handler, AF_INET6);
  1515. if (err < 0) {
  1516. pr_info("%s: can't register ip6ip4\n", __func__);
  1517. goto xfrm_tunnel_failed;
  1518. }
  1519. err = xfrm4_tunnel_register(&ipip_handler, AF_INET);
  1520. if (err < 0) {
  1521. pr_info("%s: can't register ip4ip4\n", __func__);
  1522. goto xfrm_tunnel4_failed;
  1523. }
  1524. err = rtnl_link_register(&sit_link_ops);
  1525. if (err < 0)
  1526. goto rtnl_link_failed;
  1527. out:
  1528. return err;
  1529. rtnl_link_failed:
  1530. xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
  1531. xfrm_tunnel4_failed:
  1532. xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
  1533. xfrm_tunnel_failed:
  1534. unregister_pernet_device(&sit_net_ops);
  1535. goto out;
  1536. }
  1537. module_init(sit_init);
  1538. module_exit(sit_cleanup);
  1539. MODULE_LICENSE("GPL");
  1540. MODULE_ALIAS_NETDEV("sit0");