ip6_tunnel.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286
  1. /*
  2. * IPv6 tunneling device
  3. * Linux INET6 implementation
  4. *
  5. * Authors:
  6. * Ville Nuorvala <vnuorval@tcs.hut.fi>
  7. * Yasuyuki Kozakai <kozakai@linux-ipv6.org>
  8. *
  9. * Based on:
  10. * linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
  11. *
  12. * RFC 2473
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License
  16. * as published by the Free Software Foundation; either version
  17. * 2 of the License, or (at your option) any later version.
  18. *
  19. */
  20. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  21. #include <linux/module.h>
  22. #include <linux/capability.h>
  23. #include <linux/errno.h>
  24. #include <linux/types.h>
  25. #include <linux/sockios.h>
  26. #include <linux/icmp.h>
  27. #include <linux/if.h>
  28. #include <linux/in.h>
  29. #include <linux/ip.h>
  30. #include <linux/net.h>
  31. #include <linux/in6.h>
  32. #include <linux/netdevice.h>
  33. #include <linux/if_arp.h>
  34. #include <linux/icmpv6.h>
  35. #include <linux/init.h>
  36. #include <linux/route.h>
  37. #include <linux/rtnetlink.h>
  38. #include <linux/netfilter_ipv6.h>
  39. #include <linux/slab.h>
  40. #include <linux/hash.h>
  41. #include <linux/etherdevice.h>
  42. #include <asm/uaccess.h>
  43. #include <linux/atomic.h>
  44. #include <net/icmp.h>
  45. #include <net/ip.h>
  46. #include <net/ip_tunnels.h>
  47. #include <net/ipv6.h>
  48. #include <net/ip6_route.h>
  49. #include <net/addrconf.h>
  50. #include <net/ip6_tunnel.h>
  51. #include <net/xfrm.h>
  52. #include <net/dsfield.h>
  53. #include <net/inet_ecn.h>
  54. #include <net/net_namespace.h>
  55. #include <net/netns/generic.h>
  56. #include <net/dst_metadata.h>
  57. MODULE_AUTHOR("Ville Nuorvala");
  58. MODULE_DESCRIPTION("IPv6 tunneling device");
  59. MODULE_LICENSE("GPL");
  60. MODULE_ALIAS_RTNL_LINK("ip6tnl");
  61. MODULE_ALIAS_NETDEV("ip6tnl0");
  62. #define IP6_TUNNEL_HASH_SIZE_SHIFT 5
  63. #define IP6_TUNNEL_HASH_SIZE (1 << IP6_TUNNEL_HASH_SIZE_SHIFT)
  64. static bool log_ecn_error = true;
  65. module_param(log_ecn_error, bool, 0644);
  66. MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
  67. static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
  68. {
  69. u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
  70. return hash_32(hash, IP6_TUNNEL_HASH_SIZE_SHIFT);
  71. }
  72. static int ip6_tnl_dev_init(struct net_device *dev);
  73. static void ip6_tnl_dev_setup(struct net_device *dev);
  74. static struct rtnl_link_ops ip6_link_ops __read_mostly;
  75. static int ip6_tnl_net_id __read_mostly;
  76. struct ip6_tnl_net {
  77. /* the IPv6 tunnel fallback device */
  78. struct net_device *fb_tnl_dev;
  79. /* lists for storing tunnels in use */
  80. struct ip6_tnl __rcu *tnls_r_l[IP6_TUNNEL_HASH_SIZE];
  81. struct ip6_tnl __rcu *tnls_wc[1];
  82. struct ip6_tnl __rcu **tnls[2];
  83. struct ip6_tnl __rcu *collect_md_tun;
  84. };
  85. static struct net_device_stats *ip6_get_stats(struct net_device *dev)
  86. {
  87. struct pcpu_sw_netstats tmp, sum = { 0 };
  88. int i;
  89. for_each_possible_cpu(i) {
  90. unsigned int start;
  91. const struct pcpu_sw_netstats *tstats =
  92. per_cpu_ptr(dev->tstats, i);
  93. do {
  94. start = u64_stats_fetch_begin_irq(&tstats->syncp);
  95. tmp.rx_packets = tstats->rx_packets;
  96. tmp.rx_bytes = tstats->rx_bytes;
  97. tmp.tx_packets = tstats->tx_packets;
  98. tmp.tx_bytes = tstats->tx_bytes;
  99. } while (u64_stats_fetch_retry_irq(&tstats->syncp, start));
  100. sum.rx_packets += tmp.rx_packets;
  101. sum.rx_bytes += tmp.rx_bytes;
  102. sum.tx_packets += tmp.tx_packets;
  103. sum.tx_bytes += tmp.tx_bytes;
  104. }
  105. dev->stats.rx_packets = sum.rx_packets;
  106. dev->stats.rx_bytes = sum.rx_bytes;
  107. dev->stats.tx_packets = sum.tx_packets;
  108. dev->stats.tx_bytes = sum.tx_bytes;
  109. return &dev->stats;
  110. }
  111. /**
  112. * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
  113. * @remote: the address of the tunnel exit-point
  114. * @local: the address of the tunnel entry-point
  115. *
  116. * Return:
  117. * tunnel matching given end-points if found,
  118. * else fallback tunnel if its device is up,
  119. * else %NULL
  120. **/
  121. #define for_each_ip6_tunnel_rcu(start) \
  122. for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
  123. static struct ip6_tnl *
  124. ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
  125. {
  126. unsigned int hash = HASH(remote, local);
  127. struct ip6_tnl *t;
  128. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  129. struct in6_addr any;
  130. for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
  131. if (ipv6_addr_equal(local, &t->parms.laddr) &&
  132. ipv6_addr_equal(remote, &t->parms.raddr) &&
  133. (t->dev->flags & IFF_UP))
  134. return t;
  135. }
  136. memset(&any, 0, sizeof(any));
  137. hash = HASH(&any, local);
  138. for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
  139. if (ipv6_addr_equal(local, &t->parms.laddr) &&
  140. ipv6_addr_any(&t->parms.raddr) &&
  141. (t->dev->flags & IFF_UP))
  142. return t;
  143. }
  144. hash = HASH(remote, &any);
  145. for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
  146. if (ipv6_addr_equal(remote, &t->parms.raddr) &&
  147. ipv6_addr_any(&t->parms.laddr) &&
  148. (t->dev->flags & IFF_UP))
  149. return t;
  150. }
  151. t = rcu_dereference(ip6n->collect_md_tun);
  152. if (t)
  153. return t;
  154. t = rcu_dereference(ip6n->tnls_wc[0]);
  155. if (t && (t->dev->flags & IFF_UP))
  156. return t;
  157. return NULL;
  158. }
  159. /**
  160. * ip6_tnl_bucket - get head of list matching given tunnel parameters
  161. * @p: parameters containing tunnel end-points
  162. *
  163. * Description:
  164. * ip6_tnl_bucket() returns the head of the list matching the
  165. * &struct in6_addr entries laddr and raddr in @p.
  166. *
  167. * Return: head of IPv6 tunnel list
  168. **/
  169. static struct ip6_tnl __rcu **
  170. ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
  171. {
  172. const struct in6_addr *remote = &p->raddr;
  173. const struct in6_addr *local = &p->laddr;
  174. unsigned int h = 0;
  175. int prio = 0;
  176. if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
  177. prio = 1;
  178. h = HASH(remote, local);
  179. }
  180. return &ip6n->tnls[prio][h];
  181. }
  182. /**
  183. * ip6_tnl_link - add tunnel to hash table
  184. * @t: tunnel to be added
  185. **/
  186. static void
  187. ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
  188. {
  189. struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
  190. if (t->parms.collect_md)
  191. rcu_assign_pointer(ip6n->collect_md_tun, t);
  192. rcu_assign_pointer(t->next , rtnl_dereference(*tp));
  193. rcu_assign_pointer(*tp, t);
  194. }
  195. /**
  196. * ip6_tnl_unlink - remove tunnel from hash table
  197. * @t: tunnel to be removed
  198. **/
  199. static void
  200. ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
  201. {
  202. struct ip6_tnl __rcu **tp;
  203. struct ip6_tnl *iter;
  204. if (t->parms.collect_md)
  205. rcu_assign_pointer(ip6n->collect_md_tun, NULL);
  206. for (tp = ip6_tnl_bucket(ip6n, &t->parms);
  207. (iter = rtnl_dereference(*tp)) != NULL;
  208. tp = &iter->next) {
  209. if (t == iter) {
  210. rcu_assign_pointer(*tp, t->next);
  211. break;
  212. }
  213. }
  214. }
  215. static void ip6_dev_free(struct net_device *dev)
  216. {
  217. struct ip6_tnl *t = netdev_priv(dev);
  218. gro_cells_destroy(&t->gro_cells);
  219. dst_cache_destroy(&t->dst_cache);
  220. free_percpu(dev->tstats);
  221. free_netdev(dev);
  222. }
  223. static int ip6_tnl_create2(struct net_device *dev)
  224. {
  225. struct ip6_tnl *t = netdev_priv(dev);
  226. struct net *net = dev_net(dev);
  227. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  228. int err;
  229. t = netdev_priv(dev);
  230. dev->rtnl_link_ops = &ip6_link_ops;
  231. err = register_netdevice(dev);
  232. if (err < 0)
  233. goto out;
  234. strcpy(t->parms.name, dev->name);
  235. dev_hold(dev);
  236. ip6_tnl_link(ip6n, t);
  237. return 0;
  238. out:
  239. return err;
  240. }
  241. /**
  242. * ip6_tnl_create - create a new tunnel
  243. * @p: tunnel parameters
  244. * @pt: pointer to new tunnel
  245. *
  246. * Description:
  247. * Create tunnel matching given parameters.
  248. *
  249. * Return:
  250. * created tunnel or error pointer
  251. **/
  252. static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
  253. {
  254. struct net_device *dev;
  255. struct ip6_tnl *t;
  256. char name[IFNAMSIZ];
  257. int err = -ENOMEM;
  258. if (p->name[0])
  259. strlcpy(name, p->name, IFNAMSIZ);
  260. else
  261. sprintf(name, "ip6tnl%%d");
  262. dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
  263. ip6_tnl_dev_setup);
  264. if (!dev)
  265. goto failed;
  266. dev_net_set(dev, net);
  267. t = netdev_priv(dev);
  268. t->parms = *p;
  269. t->net = dev_net(dev);
  270. err = ip6_tnl_create2(dev);
  271. if (err < 0)
  272. goto failed_free;
  273. return t;
  274. failed_free:
  275. ip6_dev_free(dev);
  276. failed:
  277. return ERR_PTR(err);
  278. }
  279. /**
  280. * ip6_tnl_locate - find or create tunnel matching given parameters
  281. * @p: tunnel parameters
  282. * @create: != 0 if allowed to create new tunnel if no match found
  283. *
  284. * Description:
  285. * ip6_tnl_locate() first tries to locate an existing tunnel
  286. * based on @parms. If this is unsuccessful, but @create is set a new
  287. * tunnel device is created and registered for use.
  288. *
  289. * Return:
  290. * matching tunnel or error pointer
  291. **/
  292. static struct ip6_tnl *ip6_tnl_locate(struct net *net,
  293. struct __ip6_tnl_parm *p, int create)
  294. {
  295. const struct in6_addr *remote = &p->raddr;
  296. const struct in6_addr *local = &p->laddr;
  297. struct ip6_tnl __rcu **tp;
  298. struct ip6_tnl *t;
  299. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  300. for (tp = ip6_tnl_bucket(ip6n, p);
  301. (t = rtnl_dereference(*tp)) != NULL;
  302. tp = &t->next) {
  303. if (ipv6_addr_equal(local, &t->parms.laddr) &&
  304. ipv6_addr_equal(remote, &t->parms.raddr)) {
  305. if (create)
  306. return ERR_PTR(-EEXIST);
  307. return t;
  308. }
  309. }
  310. if (!create)
  311. return ERR_PTR(-ENODEV);
  312. return ip6_tnl_create(net, p);
  313. }
  314. /**
  315. * ip6_tnl_dev_uninit - tunnel device uninitializer
  316. * @dev: the device to be destroyed
  317. *
  318. * Description:
  319. * ip6_tnl_dev_uninit() removes tunnel from its list
  320. **/
  321. static void
  322. ip6_tnl_dev_uninit(struct net_device *dev)
  323. {
  324. struct ip6_tnl *t = netdev_priv(dev);
  325. struct net *net = t->net;
  326. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  327. if (dev == ip6n->fb_tnl_dev)
  328. RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
  329. else
  330. ip6_tnl_unlink(ip6n, t);
  331. dst_cache_reset(&t->dst_cache);
  332. dev_put(dev);
  333. }
  334. /**
  335. * parse_tvl_tnl_enc_lim - handle encapsulation limit option
  336. * @skb: received socket buffer
  337. *
  338. * Return:
  339. * 0 if none was found,
  340. * else index to encapsulation limit
  341. **/
  342. __u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
  343. {
  344. const struct ipv6hdr *ipv6h = (const struct ipv6hdr *)raw;
  345. unsigned int nhoff = raw - skb->data;
  346. unsigned int off = nhoff + sizeof(*ipv6h);
  347. u8 next, nexthdr = ipv6h->nexthdr;
  348. while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
  349. struct ipv6_opt_hdr *hdr;
  350. u16 optlen;
  351. if (!pskb_may_pull(skb, off + sizeof(*hdr)))
  352. break;
  353. hdr = (struct ipv6_opt_hdr *)(skb->data + off);
  354. if (nexthdr == NEXTHDR_FRAGMENT) {
  355. struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
  356. if (frag_hdr->frag_off)
  357. break;
  358. optlen = 8;
  359. } else if (nexthdr == NEXTHDR_AUTH) {
  360. optlen = (hdr->hdrlen + 2) << 2;
  361. } else {
  362. optlen = ipv6_optlen(hdr);
  363. }
  364. /* cache hdr->nexthdr, since pskb_may_pull() might
  365. * invalidate hdr
  366. */
  367. next = hdr->nexthdr;
  368. if (nexthdr == NEXTHDR_DEST) {
  369. u16 i = 2;
  370. /* Remember : hdr is no longer valid at this point. */
  371. if (!pskb_may_pull(skb, off + optlen))
  372. break;
  373. while (1) {
  374. struct ipv6_tlv_tnl_enc_lim *tel;
  375. /* No more room for encapsulation limit */
  376. if (i + sizeof(*tel) > optlen)
  377. break;
  378. tel = (struct ipv6_tlv_tnl_enc_lim *)(skb->data + off + i);
  379. /* return index of option if found and valid */
  380. if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
  381. tel->length == 1)
  382. return i + off - nhoff;
  383. /* else jump to next option */
  384. if (tel->type)
  385. i += tel->length + 2;
  386. else
  387. i++;
  388. }
  389. }
  390. nexthdr = next;
  391. off += optlen;
  392. }
  393. return 0;
  394. }
  395. EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
  396. /**
  397. * ip6_tnl_err - tunnel error handler
  398. *
  399. * Description:
  400. * ip6_tnl_err() should handle errors in the tunnel according
  401. * to the specifications in RFC 2473.
  402. **/
  403. static int
  404. ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
  405. u8 *type, u8 *code, int *msg, __u32 *info, int offset)
  406. {
  407. const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
  408. struct ip6_tnl *t;
  409. int rel_msg = 0;
  410. u8 rel_type = ICMPV6_DEST_UNREACH;
  411. u8 rel_code = ICMPV6_ADDR_UNREACH;
  412. u8 tproto;
  413. __u32 rel_info = 0;
  414. __u16 len;
  415. int err = -ENOENT;
  416. /* If the packet doesn't contain the original IPv6 header we are
  417. in trouble since we might need the source address for further
  418. processing of the error. */
  419. rcu_read_lock();
  420. t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr, &ipv6h->saddr);
  421. if (!t)
  422. goto out;
  423. tproto = ACCESS_ONCE(t->parms.proto);
  424. if (tproto != ipproto && tproto != 0)
  425. goto out;
  426. err = 0;
  427. switch (*type) {
  428. __u32 teli;
  429. struct ipv6_tlv_tnl_enc_lim *tel;
  430. __u32 mtu;
  431. case ICMPV6_DEST_UNREACH:
  432. net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
  433. t->parms.name);
  434. rel_msg = 1;
  435. break;
  436. case ICMPV6_TIME_EXCEED:
  437. if ((*code) == ICMPV6_EXC_HOPLIMIT) {
  438. net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
  439. t->parms.name);
  440. rel_msg = 1;
  441. }
  442. break;
  443. case ICMPV6_PARAMPROB:
  444. teli = 0;
  445. if ((*code) == ICMPV6_HDR_FIELD)
  446. teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
  447. if (teli && teli == *info - 2) {
  448. tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
  449. if (tel->encap_limit == 0) {
  450. net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
  451. t->parms.name);
  452. rel_msg = 1;
  453. }
  454. } else {
  455. net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
  456. t->parms.name);
  457. }
  458. break;
  459. case ICMPV6_PKT_TOOBIG:
  460. mtu = *info - offset;
  461. if (mtu < IPV6_MIN_MTU)
  462. mtu = IPV6_MIN_MTU;
  463. t->dev->mtu = mtu;
  464. len = sizeof(*ipv6h) + ntohs(ipv6h->payload_len);
  465. if (len > mtu) {
  466. rel_type = ICMPV6_PKT_TOOBIG;
  467. rel_code = 0;
  468. rel_info = mtu;
  469. rel_msg = 1;
  470. }
  471. break;
  472. }
  473. *type = rel_type;
  474. *code = rel_code;
  475. *info = rel_info;
  476. *msg = rel_msg;
  477. out:
  478. rcu_read_unlock();
  479. return err;
  480. }
  481. static int
  482. ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
  483. u8 type, u8 code, int offset, __be32 info)
  484. {
  485. int rel_msg = 0;
  486. u8 rel_type = type;
  487. u8 rel_code = code;
  488. __u32 rel_info = ntohl(info);
  489. int err;
  490. struct sk_buff *skb2;
  491. const struct iphdr *eiph;
  492. struct rtable *rt;
  493. struct flowi4 fl4;
  494. err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
  495. &rel_msg, &rel_info, offset);
  496. if (err < 0)
  497. return err;
  498. if (rel_msg == 0)
  499. return 0;
  500. switch (rel_type) {
  501. case ICMPV6_DEST_UNREACH:
  502. if (rel_code != ICMPV6_ADDR_UNREACH)
  503. return 0;
  504. rel_type = ICMP_DEST_UNREACH;
  505. rel_code = ICMP_HOST_UNREACH;
  506. break;
  507. case ICMPV6_PKT_TOOBIG:
  508. if (rel_code != 0)
  509. return 0;
  510. rel_type = ICMP_DEST_UNREACH;
  511. rel_code = ICMP_FRAG_NEEDED;
  512. break;
  513. case NDISC_REDIRECT:
  514. rel_type = ICMP_REDIRECT;
  515. rel_code = ICMP_REDIR_HOST;
  516. default:
  517. return 0;
  518. }
  519. if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
  520. return 0;
  521. skb2 = skb_clone(skb, GFP_ATOMIC);
  522. if (!skb2)
  523. return 0;
  524. skb_dst_drop(skb2);
  525. skb_pull(skb2, offset);
  526. skb_reset_network_header(skb2);
  527. eiph = ip_hdr(skb2);
  528. /* Try to guess incoming interface */
  529. rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
  530. eiph->saddr, 0,
  531. 0, 0,
  532. IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
  533. if (IS_ERR(rt))
  534. goto out;
  535. skb2->dev = rt->dst.dev;
  536. /* route "incoming" packet */
  537. if (rt->rt_flags & RTCF_LOCAL) {
  538. ip_rt_put(rt);
  539. rt = NULL;
  540. rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
  541. eiph->daddr, eiph->saddr,
  542. 0, 0,
  543. IPPROTO_IPIP,
  544. RT_TOS(eiph->tos), 0);
  545. if (IS_ERR(rt) ||
  546. rt->dst.dev->type != ARPHRD_TUNNEL) {
  547. if (!IS_ERR(rt))
  548. ip_rt_put(rt);
  549. goto out;
  550. }
  551. skb_dst_set(skb2, &rt->dst);
  552. } else {
  553. ip_rt_put(rt);
  554. if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
  555. skb2->dev) ||
  556. skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
  557. goto out;
  558. }
  559. /* change mtu on this route */
  560. if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
  561. if (rel_info > dst_mtu(skb_dst(skb2)))
  562. goto out;
  563. skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
  564. }
  565. if (rel_type == ICMP_REDIRECT)
  566. skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
  567. icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
  568. out:
  569. kfree_skb(skb2);
  570. return 0;
  571. }
  572. static int
  573. ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
  574. u8 type, u8 code, int offset, __be32 info)
  575. {
  576. int rel_msg = 0;
  577. u8 rel_type = type;
  578. u8 rel_code = code;
  579. __u32 rel_info = ntohl(info);
  580. int err;
  581. err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
  582. &rel_msg, &rel_info, offset);
  583. if (err < 0)
  584. return err;
  585. if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
  586. struct rt6_info *rt;
  587. struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
  588. if (!skb2)
  589. return 0;
  590. skb_dst_drop(skb2);
  591. skb_pull(skb2, offset);
  592. skb_reset_network_header(skb2);
  593. /* Try to guess incoming interface */
  594. rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
  595. NULL, 0, 0);
  596. if (rt && rt->dst.dev)
  597. skb2->dev = rt->dst.dev;
  598. icmpv6_send(skb2, rel_type, rel_code, rel_info);
  599. ip6_rt_put(rt);
  600. kfree_skb(skb2);
  601. }
  602. return 0;
  603. }
  604. static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
  605. const struct ipv6hdr *ipv6h,
  606. struct sk_buff *skb)
  607. {
  608. __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
  609. if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
  610. ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
  611. return IP6_ECN_decapsulate(ipv6h, skb);
  612. }
  613. static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
  614. const struct ipv6hdr *ipv6h,
  615. struct sk_buff *skb)
  616. {
  617. if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
  618. ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
  619. return IP6_ECN_decapsulate(ipv6h, skb);
  620. }
  621. __u32 ip6_tnl_get_cap(struct ip6_tnl *t,
  622. const struct in6_addr *laddr,
  623. const struct in6_addr *raddr)
  624. {
  625. struct __ip6_tnl_parm *p = &t->parms;
  626. int ltype = ipv6_addr_type(laddr);
  627. int rtype = ipv6_addr_type(raddr);
  628. __u32 flags = 0;
  629. if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
  630. flags = IP6_TNL_F_CAP_PER_PACKET;
  631. } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
  632. rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
  633. !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
  634. (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
  635. if (ltype&IPV6_ADDR_UNICAST)
  636. flags |= IP6_TNL_F_CAP_XMIT;
  637. if (rtype&IPV6_ADDR_UNICAST)
  638. flags |= IP6_TNL_F_CAP_RCV;
  639. }
  640. return flags;
  641. }
  642. EXPORT_SYMBOL(ip6_tnl_get_cap);
  643. /* called with rcu_read_lock() */
  644. int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
  645. const struct in6_addr *laddr,
  646. const struct in6_addr *raddr)
  647. {
  648. struct __ip6_tnl_parm *p = &t->parms;
  649. int ret = 0;
  650. struct net *net = t->net;
  651. if ((p->flags & IP6_TNL_F_CAP_RCV) ||
  652. ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
  653. (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
  654. struct net_device *ldev = NULL;
  655. if (p->link)
  656. ldev = dev_get_by_index_rcu(net, p->link);
  657. if ((ipv6_addr_is_multicast(laddr) ||
  658. likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
  659. likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
  660. ret = 1;
  661. }
  662. return ret;
  663. }
  664. EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
  665. static int __ip6_tnl_rcv(struct ip6_tnl *tunnel, struct sk_buff *skb,
  666. const struct tnl_ptk_info *tpi,
  667. struct metadata_dst *tun_dst,
  668. int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
  669. const struct ipv6hdr *ipv6h,
  670. struct sk_buff *skb),
  671. bool log_ecn_err)
  672. {
  673. struct pcpu_sw_netstats *tstats;
  674. const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
  675. int err;
  676. if ((!(tpi->flags & TUNNEL_CSUM) &&
  677. (tunnel->parms.i_flags & TUNNEL_CSUM)) ||
  678. ((tpi->flags & TUNNEL_CSUM) &&
  679. !(tunnel->parms.i_flags & TUNNEL_CSUM))) {
  680. tunnel->dev->stats.rx_crc_errors++;
  681. tunnel->dev->stats.rx_errors++;
  682. goto drop;
  683. }
  684. if (tunnel->parms.i_flags & TUNNEL_SEQ) {
  685. if (!(tpi->flags & TUNNEL_SEQ) ||
  686. (tunnel->i_seqno &&
  687. (s32)(ntohl(tpi->seq) - tunnel->i_seqno) < 0)) {
  688. tunnel->dev->stats.rx_fifo_errors++;
  689. tunnel->dev->stats.rx_errors++;
  690. goto drop;
  691. }
  692. tunnel->i_seqno = ntohl(tpi->seq) + 1;
  693. }
  694. skb->protocol = tpi->proto;
  695. /* Warning: All skb pointers will be invalidated! */
  696. if (tunnel->dev->type == ARPHRD_ETHER) {
  697. if (!pskb_may_pull(skb, ETH_HLEN)) {
  698. tunnel->dev->stats.rx_length_errors++;
  699. tunnel->dev->stats.rx_errors++;
  700. goto drop;
  701. }
  702. ipv6h = ipv6_hdr(skb);
  703. skb->protocol = eth_type_trans(skb, tunnel->dev);
  704. skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
  705. } else {
  706. skb->dev = tunnel->dev;
  707. }
  708. skb_reset_network_header(skb);
  709. memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
  710. __skb_tunnel_rx(skb, tunnel->dev, tunnel->net);
  711. err = dscp_ecn_decapsulate(tunnel, ipv6h, skb);
  712. if (unlikely(err)) {
  713. if (log_ecn_err)
  714. net_info_ratelimited("non-ECT from %pI6 with DS=%#x\n",
  715. &ipv6h->saddr,
  716. ipv6_get_dsfield(ipv6h));
  717. if (err > 1) {
  718. ++tunnel->dev->stats.rx_frame_errors;
  719. ++tunnel->dev->stats.rx_errors;
  720. goto drop;
  721. }
  722. }
  723. tstats = this_cpu_ptr(tunnel->dev->tstats);
  724. u64_stats_update_begin(&tstats->syncp);
  725. tstats->rx_packets++;
  726. tstats->rx_bytes += skb->len;
  727. u64_stats_update_end(&tstats->syncp);
  728. skb_scrub_packet(skb, !net_eq(tunnel->net, dev_net(tunnel->dev)));
  729. if (tun_dst)
  730. skb_dst_set(skb, (struct dst_entry *)tun_dst);
  731. gro_cells_receive(&tunnel->gro_cells, skb);
  732. return 0;
  733. drop:
  734. kfree_skb(skb);
  735. return 0;
  736. }
  737. int ip6_tnl_rcv(struct ip6_tnl *t, struct sk_buff *skb,
  738. const struct tnl_ptk_info *tpi,
  739. struct metadata_dst *tun_dst,
  740. bool log_ecn_err)
  741. {
  742. return __ip6_tnl_rcv(t, skb, tpi, NULL, ip6ip6_dscp_ecn_decapsulate,
  743. log_ecn_err);
  744. }
  745. EXPORT_SYMBOL(ip6_tnl_rcv);
  746. static const struct tnl_ptk_info tpi_v6 = {
  747. /* no tunnel info required for ipxip6. */
  748. .proto = htons(ETH_P_IPV6),
  749. };
  750. static const struct tnl_ptk_info tpi_v4 = {
  751. /* no tunnel info required for ipxip6. */
  752. .proto = htons(ETH_P_IP),
  753. };
  754. static int ipxip6_rcv(struct sk_buff *skb, u8 ipproto,
  755. const struct tnl_ptk_info *tpi,
  756. int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
  757. const struct ipv6hdr *ipv6h,
  758. struct sk_buff *skb))
  759. {
  760. struct ip6_tnl *t;
  761. const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
  762. struct metadata_dst *tun_dst = NULL;
  763. int ret = -1;
  764. rcu_read_lock();
  765. t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr, &ipv6h->daddr);
  766. if (t) {
  767. u8 tproto = ACCESS_ONCE(t->parms.proto);
  768. if (tproto != ipproto && tproto != 0)
  769. goto drop;
  770. if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
  771. goto drop;
  772. if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr))
  773. goto drop;
  774. if (iptunnel_pull_header(skb, 0, tpi->proto, false))
  775. goto drop;
  776. if (t->parms.collect_md) {
  777. tun_dst = ipv6_tun_rx_dst(skb, 0, 0, 0);
  778. if (!tun_dst)
  779. return 0;
  780. }
  781. ret = __ip6_tnl_rcv(t, skb, tpi, tun_dst, dscp_ecn_decapsulate,
  782. log_ecn_error);
  783. }
  784. rcu_read_unlock();
  785. return ret;
  786. drop:
  787. rcu_read_unlock();
  788. kfree_skb(skb);
  789. return 0;
  790. }
  791. static int ip4ip6_rcv(struct sk_buff *skb)
  792. {
  793. return ipxip6_rcv(skb, IPPROTO_IPIP, &tpi_v4,
  794. ip4ip6_dscp_ecn_decapsulate);
  795. }
  796. static int ip6ip6_rcv(struct sk_buff *skb)
  797. {
  798. return ipxip6_rcv(skb, IPPROTO_IPV6, &tpi_v6,
  799. ip6ip6_dscp_ecn_decapsulate);
  800. }
  801. struct ipv6_tel_txoption {
  802. struct ipv6_txoptions ops;
  803. __u8 dst_opt[8];
  804. };
  805. static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
  806. {
  807. memset(opt, 0, sizeof(struct ipv6_tel_txoption));
  808. opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
  809. opt->dst_opt[3] = 1;
  810. opt->dst_opt[4] = encap_limit;
  811. opt->dst_opt[5] = IPV6_TLV_PADN;
  812. opt->dst_opt[6] = 1;
  813. opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
  814. opt->ops.opt_nflen = 8;
  815. }
  816. /**
  817. * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
  818. * @t: the outgoing tunnel device
  819. * @hdr: IPv6 header from the incoming packet
  820. *
  821. * Description:
  822. * Avoid trivial tunneling loop by checking that tunnel exit-point
  823. * doesn't match source of incoming packet.
  824. *
  825. * Return:
  826. * 1 if conflict,
  827. * 0 else
  828. **/
  829. static inline bool
  830. ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
  831. {
  832. return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
  833. }
  834. int ip6_tnl_xmit_ctl(struct ip6_tnl *t,
  835. const struct in6_addr *laddr,
  836. const struct in6_addr *raddr)
  837. {
  838. struct __ip6_tnl_parm *p = &t->parms;
  839. int ret = 0;
  840. struct net *net = t->net;
  841. if ((p->flags & IP6_TNL_F_CAP_XMIT) ||
  842. ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
  843. (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_XMIT))) {
  844. struct net_device *ldev = NULL;
  845. rcu_read_lock();
  846. if (p->link)
  847. ldev = dev_get_by_index_rcu(net, p->link);
  848. if (unlikely(!ipv6_chk_addr(net, laddr, ldev, 0)))
  849. pr_warn("%s xmit: Local address not yet configured!\n",
  850. p->name);
  851. else if (!ipv6_addr_is_multicast(raddr) &&
  852. unlikely(ipv6_chk_addr(net, raddr, NULL, 0)))
  853. pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
  854. p->name);
  855. else
  856. ret = 1;
  857. rcu_read_unlock();
  858. }
  859. return ret;
  860. }
  861. EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
  862. /**
  863. * ip6_tnl_xmit - encapsulate packet and send
  864. * @skb: the outgoing socket buffer
  865. * @dev: the outgoing tunnel device
  866. * @dsfield: dscp code for outer header
  867. * @fl6: flow of tunneled packet
  868. * @encap_limit: encapsulation limit
  869. * @pmtu: Path MTU is stored if packet is too big
  870. * @proto: next header value
  871. *
  872. * Description:
  873. * Build new header and do some sanity checks on the packet before sending
  874. * it.
  875. *
  876. * Return:
  877. * 0 on success
  878. * -1 fail
  879. * %-EMSGSIZE message too big. return mtu in this case.
  880. **/
  881. int ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev, __u8 dsfield,
  882. struct flowi6 *fl6, int encap_limit, __u32 *pmtu,
  883. __u8 proto)
  884. {
  885. struct ip6_tnl *t = netdev_priv(dev);
  886. struct net *net = t->net;
  887. struct net_device_stats *stats = &t->dev->stats;
  888. struct ipv6hdr *ipv6h;
  889. struct ipv6_tel_txoption opt;
  890. struct dst_entry *dst = NULL, *ndst = NULL;
  891. struct net_device *tdev;
  892. int mtu;
  893. unsigned int eth_hlen = t->dev->type == ARPHRD_ETHER ? ETH_HLEN : 0;
  894. unsigned int psh_hlen = sizeof(struct ipv6hdr) + t->encap_hlen;
  895. unsigned int max_headroom = psh_hlen;
  896. bool use_cache = false;
  897. u8 hop_limit;
  898. int err = -1;
  899. if (t->parms.collect_md) {
  900. hop_limit = skb_tunnel_info(skb)->key.ttl;
  901. goto route_lookup;
  902. } else {
  903. hop_limit = t->parms.hop_limit;
  904. }
  905. /* NBMA tunnel */
  906. if (ipv6_addr_any(&t->parms.raddr)) {
  907. if (skb->protocol == htons(ETH_P_IPV6)) {
  908. struct in6_addr *addr6;
  909. struct neighbour *neigh;
  910. int addr_type;
  911. if (!skb_dst(skb))
  912. goto tx_err_link_failure;
  913. neigh = dst_neigh_lookup(skb_dst(skb),
  914. &ipv6_hdr(skb)->daddr);
  915. if (!neigh)
  916. goto tx_err_link_failure;
  917. addr6 = (struct in6_addr *)&neigh->primary_key;
  918. addr_type = ipv6_addr_type(addr6);
  919. if (addr_type == IPV6_ADDR_ANY)
  920. addr6 = &ipv6_hdr(skb)->daddr;
  921. memcpy(&fl6->daddr, addr6, sizeof(fl6->daddr));
  922. neigh_release(neigh);
  923. }
  924. } else if (!(t->parms.flags &
  925. (IP6_TNL_F_USE_ORIG_TCLASS | IP6_TNL_F_USE_ORIG_FWMARK))) {
  926. /* enable the cache only only if the routing decision does
  927. * not depend on the current inner header value
  928. */
  929. use_cache = true;
  930. }
  931. if (use_cache)
  932. dst = dst_cache_get(&t->dst_cache);
  933. if (!ip6_tnl_xmit_ctl(t, &fl6->saddr, &fl6->daddr))
  934. goto tx_err_link_failure;
  935. if (!dst) {
  936. route_lookup:
  937. dst = ip6_route_output(net, NULL, fl6);
  938. if (dst->error)
  939. goto tx_err_link_failure;
  940. dst = xfrm_lookup(net, dst, flowi6_to_flowi(fl6), NULL, 0);
  941. if (IS_ERR(dst)) {
  942. err = PTR_ERR(dst);
  943. dst = NULL;
  944. goto tx_err_link_failure;
  945. }
  946. if (t->parms.collect_md &&
  947. ipv6_dev_get_saddr(net, ip6_dst_idev(dst)->dev,
  948. &fl6->daddr, 0, &fl6->saddr))
  949. goto tx_err_link_failure;
  950. ndst = dst;
  951. }
  952. tdev = dst->dev;
  953. if (tdev == dev) {
  954. stats->collisions++;
  955. net_warn_ratelimited("%s: Local routing loop detected!\n",
  956. t->parms.name);
  957. goto tx_err_dst_release;
  958. }
  959. mtu = dst_mtu(dst) - eth_hlen - psh_hlen - t->tun_hlen;
  960. if (encap_limit >= 0) {
  961. max_headroom += 8;
  962. mtu -= 8;
  963. }
  964. if (mtu < IPV6_MIN_MTU)
  965. mtu = IPV6_MIN_MTU;
  966. if (skb_dst(skb) && !t->parms.collect_md)
  967. skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
  968. if (skb->len - t->tun_hlen - eth_hlen > mtu && !skb_is_gso(skb)) {
  969. *pmtu = mtu;
  970. err = -EMSGSIZE;
  971. goto tx_err_dst_release;
  972. }
  973. if (t->err_count > 0) {
  974. if (time_before(jiffies,
  975. t->err_time + IP6TUNNEL_ERR_TIMEO)) {
  976. t->err_count--;
  977. dst_link_failure(skb);
  978. } else {
  979. t->err_count = 0;
  980. }
  981. }
  982. skb_scrub_packet(skb, !net_eq(t->net, dev_net(dev)));
  983. /*
  984. * Okay, now see if we can stuff it in the buffer as-is.
  985. */
  986. max_headroom += LL_RESERVED_SPACE(tdev);
  987. if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
  988. (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
  989. struct sk_buff *new_skb;
  990. new_skb = skb_realloc_headroom(skb, max_headroom);
  991. if (!new_skb)
  992. goto tx_err_dst_release;
  993. if (skb->sk)
  994. skb_set_owner_w(new_skb, skb->sk);
  995. consume_skb(skb);
  996. skb = new_skb;
  997. }
  998. if (t->parms.collect_md) {
  999. if (t->encap.type != TUNNEL_ENCAP_NONE)
  1000. goto tx_err_dst_release;
  1001. } else {
  1002. if (use_cache && ndst)
  1003. dst_cache_set_ip6(&t->dst_cache, ndst, &fl6->saddr);
  1004. }
  1005. skb_dst_set(skb, dst);
  1006. if (encap_limit >= 0) {
  1007. init_tel_txopt(&opt, encap_limit);
  1008. ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
  1009. }
  1010. /* Calculate max headroom for all the headers and adjust
  1011. * needed_headroom if necessary.
  1012. */
  1013. max_headroom = LL_RESERVED_SPACE(dst->dev) + sizeof(struct ipv6hdr)
  1014. + dst->header_len + t->hlen;
  1015. if (max_headroom > dev->needed_headroom)
  1016. dev->needed_headroom = max_headroom;
  1017. err = ip6_tnl_encap(skb, t, &proto, fl6);
  1018. if (err)
  1019. return err;
  1020. skb_push(skb, sizeof(struct ipv6hdr));
  1021. skb_reset_network_header(skb);
  1022. ipv6h = ipv6_hdr(skb);
  1023. ip6_flow_hdr(ipv6h, dsfield,
  1024. ip6_make_flowlabel(net, skb, fl6->flowlabel, true, fl6));
  1025. ipv6h->hop_limit = hop_limit;
  1026. ipv6h->nexthdr = proto;
  1027. ipv6h->saddr = fl6->saddr;
  1028. ipv6h->daddr = fl6->daddr;
  1029. ip6tunnel_xmit(NULL, skb, dev);
  1030. return 0;
  1031. tx_err_link_failure:
  1032. stats->tx_carrier_errors++;
  1033. dst_link_failure(skb);
  1034. tx_err_dst_release:
  1035. dst_release(dst);
  1036. return err;
  1037. }
  1038. EXPORT_SYMBOL(ip6_tnl_xmit);
  1039. static inline int
  1040. ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
  1041. {
  1042. struct ip6_tnl *t = netdev_priv(dev);
  1043. const struct iphdr *iph = ip_hdr(skb);
  1044. int encap_limit = -1;
  1045. struct flowi6 fl6;
  1046. __u8 dsfield;
  1047. __u32 mtu;
  1048. u8 tproto;
  1049. int err;
  1050. memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
  1051. tproto = ACCESS_ONCE(t->parms.proto);
  1052. if (tproto != IPPROTO_IPIP && tproto != 0)
  1053. return -1;
  1054. if (t->parms.collect_md) {
  1055. struct ip_tunnel_info *tun_info;
  1056. const struct ip_tunnel_key *key;
  1057. tun_info = skb_tunnel_info(skb);
  1058. if (unlikely(!tun_info || !(tun_info->mode & IP_TUNNEL_INFO_TX) ||
  1059. ip_tunnel_info_af(tun_info) != AF_INET6))
  1060. return -1;
  1061. key = &tun_info->key;
  1062. memset(&fl6, 0, sizeof(fl6));
  1063. fl6.flowi6_proto = IPPROTO_IPIP;
  1064. fl6.daddr = key->u.ipv6.dst;
  1065. fl6.flowlabel = key->label;
  1066. dsfield = ip6_tclass(key->label);
  1067. } else {
  1068. if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
  1069. encap_limit = t->parms.encap_limit;
  1070. memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
  1071. fl6.flowi6_proto = IPPROTO_IPIP;
  1072. if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
  1073. dsfield = ipv4_get_dsfield(iph);
  1074. else
  1075. dsfield = ip6_tclass(t->parms.flowinfo);
  1076. if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
  1077. fl6.flowi6_mark = skb->mark;
  1078. }
  1079. if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP6))
  1080. return -1;
  1081. dsfield = INET_ECN_encapsulate(dsfield, ipv4_get_dsfield(iph));
  1082. skb_set_inner_ipproto(skb, IPPROTO_IPIP);
  1083. err = ip6_tnl_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
  1084. IPPROTO_IPIP);
  1085. if (err != 0) {
  1086. /* XXX: send ICMP error even if DF is not set. */
  1087. if (err == -EMSGSIZE)
  1088. icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
  1089. htonl(mtu));
  1090. return -1;
  1091. }
  1092. return 0;
  1093. }
  1094. static inline int
  1095. ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
  1096. {
  1097. struct ip6_tnl *t = netdev_priv(dev);
  1098. struct ipv6hdr *ipv6h = ipv6_hdr(skb);
  1099. int encap_limit = -1;
  1100. __u16 offset;
  1101. struct flowi6 fl6;
  1102. __u8 dsfield;
  1103. __u32 mtu;
  1104. u8 tproto;
  1105. int err;
  1106. tproto = ACCESS_ONCE(t->parms.proto);
  1107. if ((tproto != IPPROTO_IPV6 && tproto != 0) ||
  1108. ip6_tnl_addr_conflict(t, ipv6h))
  1109. return -1;
  1110. if (t->parms.collect_md) {
  1111. struct ip_tunnel_info *tun_info;
  1112. const struct ip_tunnel_key *key;
  1113. tun_info = skb_tunnel_info(skb);
  1114. if (unlikely(!tun_info || !(tun_info->mode & IP_TUNNEL_INFO_TX) ||
  1115. ip_tunnel_info_af(tun_info) != AF_INET6))
  1116. return -1;
  1117. key = &tun_info->key;
  1118. memset(&fl6, 0, sizeof(fl6));
  1119. fl6.flowi6_proto = IPPROTO_IPV6;
  1120. fl6.daddr = key->u.ipv6.dst;
  1121. fl6.flowlabel = key->label;
  1122. dsfield = ip6_tclass(key->label);
  1123. } else {
  1124. offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
  1125. /* ip6_tnl_parse_tlv_enc_lim() might have reallocated skb->head */
  1126. ipv6h = ipv6_hdr(skb);
  1127. if (offset > 0) {
  1128. struct ipv6_tlv_tnl_enc_lim *tel;
  1129. tel = (void *)&skb_network_header(skb)[offset];
  1130. if (tel->encap_limit == 0) {
  1131. icmpv6_send(skb, ICMPV6_PARAMPROB,
  1132. ICMPV6_HDR_FIELD, offset + 2);
  1133. return -1;
  1134. }
  1135. encap_limit = tel->encap_limit - 1;
  1136. } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) {
  1137. encap_limit = t->parms.encap_limit;
  1138. }
  1139. memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
  1140. fl6.flowi6_proto = IPPROTO_IPV6;
  1141. if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
  1142. dsfield = ipv6_get_dsfield(ipv6h);
  1143. else
  1144. dsfield = ip6_tclass(t->parms.flowinfo);
  1145. if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
  1146. fl6.flowlabel |= ip6_flowlabel(ipv6h);
  1147. if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
  1148. fl6.flowi6_mark = skb->mark;
  1149. }
  1150. if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP6))
  1151. return -1;
  1152. dsfield = INET_ECN_encapsulate(dsfield, ipv6_get_dsfield(ipv6h));
  1153. skb_set_inner_ipproto(skb, IPPROTO_IPV6);
  1154. err = ip6_tnl_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
  1155. IPPROTO_IPV6);
  1156. if (err != 0) {
  1157. if (err == -EMSGSIZE)
  1158. icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
  1159. return -1;
  1160. }
  1161. return 0;
  1162. }
  1163. static netdev_tx_t
  1164. ip6_tnl_start_xmit(struct sk_buff *skb, struct net_device *dev)
  1165. {
  1166. struct ip6_tnl *t = netdev_priv(dev);
  1167. struct net_device_stats *stats = &t->dev->stats;
  1168. int ret;
  1169. switch (skb->protocol) {
  1170. case htons(ETH_P_IP):
  1171. ret = ip4ip6_tnl_xmit(skb, dev);
  1172. break;
  1173. case htons(ETH_P_IPV6):
  1174. ret = ip6ip6_tnl_xmit(skb, dev);
  1175. break;
  1176. default:
  1177. goto tx_err;
  1178. }
  1179. if (ret < 0)
  1180. goto tx_err;
  1181. return NETDEV_TX_OK;
  1182. tx_err:
  1183. stats->tx_errors++;
  1184. stats->tx_dropped++;
  1185. kfree_skb(skb);
  1186. return NETDEV_TX_OK;
  1187. }
  1188. static void ip6_tnl_link_config(struct ip6_tnl *t)
  1189. {
  1190. struct net_device *dev = t->dev;
  1191. struct __ip6_tnl_parm *p = &t->parms;
  1192. struct flowi6 *fl6 = &t->fl.u.ip6;
  1193. int t_hlen;
  1194. memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
  1195. memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
  1196. /* Set up flowi template */
  1197. fl6->saddr = p->laddr;
  1198. fl6->daddr = p->raddr;
  1199. fl6->flowi6_oif = p->link;
  1200. fl6->flowlabel = 0;
  1201. if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
  1202. fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
  1203. if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
  1204. fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
  1205. p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
  1206. p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
  1207. if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
  1208. dev->flags |= IFF_POINTOPOINT;
  1209. else
  1210. dev->flags &= ~IFF_POINTOPOINT;
  1211. t->tun_hlen = 0;
  1212. t->hlen = t->encap_hlen + t->tun_hlen;
  1213. t_hlen = t->hlen + sizeof(struct ipv6hdr);
  1214. if (p->flags & IP6_TNL_F_CAP_XMIT) {
  1215. int strict = (ipv6_addr_type(&p->raddr) &
  1216. (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
  1217. struct rt6_info *rt = rt6_lookup(t->net,
  1218. &p->raddr, &p->laddr,
  1219. p->link, strict);
  1220. if (!rt)
  1221. return;
  1222. if (rt->dst.dev) {
  1223. dev->hard_header_len = rt->dst.dev->hard_header_len +
  1224. t_hlen;
  1225. dev->mtu = rt->dst.dev->mtu - t_hlen;
  1226. if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
  1227. dev->mtu -= 8;
  1228. if (dev->mtu < IPV6_MIN_MTU)
  1229. dev->mtu = IPV6_MIN_MTU;
  1230. }
  1231. ip6_rt_put(rt);
  1232. }
  1233. }
  1234. /**
  1235. * ip6_tnl_change - update the tunnel parameters
  1236. * @t: tunnel to be changed
  1237. * @p: tunnel configuration parameters
  1238. *
  1239. * Description:
  1240. * ip6_tnl_change() updates the tunnel parameters
  1241. **/
  1242. static int
  1243. ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
  1244. {
  1245. t->parms.laddr = p->laddr;
  1246. t->parms.raddr = p->raddr;
  1247. t->parms.flags = p->flags;
  1248. t->parms.hop_limit = p->hop_limit;
  1249. t->parms.encap_limit = p->encap_limit;
  1250. t->parms.flowinfo = p->flowinfo;
  1251. t->parms.link = p->link;
  1252. t->parms.proto = p->proto;
  1253. dst_cache_reset(&t->dst_cache);
  1254. ip6_tnl_link_config(t);
  1255. return 0;
  1256. }
  1257. static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
  1258. {
  1259. struct net *net = t->net;
  1260. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  1261. int err;
  1262. ip6_tnl_unlink(ip6n, t);
  1263. synchronize_net();
  1264. err = ip6_tnl_change(t, p);
  1265. ip6_tnl_link(ip6n, t);
  1266. netdev_state_change(t->dev);
  1267. return err;
  1268. }
  1269. static int ip6_tnl0_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
  1270. {
  1271. /* for default tnl0 device allow to change only the proto */
  1272. t->parms.proto = p->proto;
  1273. netdev_state_change(t->dev);
  1274. return 0;
  1275. }
  1276. static void
  1277. ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
  1278. {
  1279. p->laddr = u->laddr;
  1280. p->raddr = u->raddr;
  1281. p->flags = u->flags;
  1282. p->hop_limit = u->hop_limit;
  1283. p->encap_limit = u->encap_limit;
  1284. p->flowinfo = u->flowinfo;
  1285. p->link = u->link;
  1286. p->proto = u->proto;
  1287. memcpy(p->name, u->name, sizeof(u->name));
  1288. }
  1289. static void
  1290. ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
  1291. {
  1292. u->laddr = p->laddr;
  1293. u->raddr = p->raddr;
  1294. u->flags = p->flags;
  1295. u->hop_limit = p->hop_limit;
  1296. u->encap_limit = p->encap_limit;
  1297. u->flowinfo = p->flowinfo;
  1298. u->link = p->link;
  1299. u->proto = p->proto;
  1300. memcpy(u->name, p->name, sizeof(u->name));
  1301. }
  1302. /**
  1303. * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
  1304. * @dev: virtual device associated with tunnel
  1305. * @ifr: parameters passed from userspace
  1306. * @cmd: command to be performed
  1307. *
  1308. * Description:
  1309. * ip6_tnl_ioctl() is used for managing IPv6 tunnels
  1310. * from userspace.
  1311. *
  1312. * The possible commands are the following:
  1313. * %SIOCGETTUNNEL: get tunnel parameters for device
  1314. * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
  1315. * %SIOCCHGTUNNEL: change tunnel parameters to those given
  1316. * %SIOCDELTUNNEL: delete tunnel
  1317. *
  1318. * The fallback device "ip6tnl0", created during module
  1319. * initialization, can be used for creating other tunnel devices.
  1320. *
  1321. * Return:
  1322. * 0 on success,
  1323. * %-EFAULT if unable to copy data to or from userspace,
  1324. * %-EPERM if current process hasn't %CAP_NET_ADMIN set
  1325. * %-EINVAL if passed tunnel parameters are invalid,
  1326. * %-EEXIST if changing a tunnel's parameters would cause a conflict
  1327. * %-ENODEV if attempting to change or delete a nonexisting device
  1328. **/
  1329. static int
  1330. ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  1331. {
  1332. int err = 0;
  1333. struct ip6_tnl_parm p;
  1334. struct __ip6_tnl_parm p1;
  1335. struct ip6_tnl *t = netdev_priv(dev);
  1336. struct net *net = t->net;
  1337. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  1338. memset(&p1, 0, sizeof(p1));
  1339. switch (cmd) {
  1340. case SIOCGETTUNNEL:
  1341. if (dev == ip6n->fb_tnl_dev) {
  1342. if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
  1343. err = -EFAULT;
  1344. break;
  1345. }
  1346. ip6_tnl_parm_from_user(&p1, &p);
  1347. t = ip6_tnl_locate(net, &p1, 0);
  1348. if (IS_ERR(t))
  1349. t = netdev_priv(dev);
  1350. } else {
  1351. memset(&p, 0, sizeof(p));
  1352. }
  1353. ip6_tnl_parm_to_user(&p, &t->parms);
  1354. if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p))) {
  1355. err = -EFAULT;
  1356. }
  1357. break;
  1358. case SIOCADDTUNNEL:
  1359. case SIOCCHGTUNNEL:
  1360. err = -EPERM;
  1361. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  1362. break;
  1363. err = -EFAULT;
  1364. if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
  1365. break;
  1366. err = -EINVAL;
  1367. if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
  1368. p.proto != 0)
  1369. break;
  1370. ip6_tnl_parm_from_user(&p1, &p);
  1371. t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
  1372. if (cmd == SIOCCHGTUNNEL) {
  1373. if (!IS_ERR(t)) {
  1374. if (t->dev != dev) {
  1375. err = -EEXIST;
  1376. break;
  1377. }
  1378. } else
  1379. t = netdev_priv(dev);
  1380. if (dev == ip6n->fb_tnl_dev)
  1381. err = ip6_tnl0_update(t, &p1);
  1382. else
  1383. err = ip6_tnl_update(t, &p1);
  1384. }
  1385. if (!IS_ERR(t)) {
  1386. err = 0;
  1387. ip6_tnl_parm_to_user(&p, &t->parms);
  1388. if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
  1389. err = -EFAULT;
  1390. } else {
  1391. err = PTR_ERR(t);
  1392. }
  1393. break;
  1394. case SIOCDELTUNNEL:
  1395. err = -EPERM;
  1396. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  1397. break;
  1398. if (dev == ip6n->fb_tnl_dev) {
  1399. err = -EFAULT;
  1400. if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
  1401. break;
  1402. err = -ENOENT;
  1403. ip6_tnl_parm_from_user(&p1, &p);
  1404. t = ip6_tnl_locate(net, &p1, 0);
  1405. if (IS_ERR(t))
  1406. break;
  1407. err = -EPERM;
  1408. if (t->dev == ip6n->fb_tnl_dev)
  1409. break;
  1410. dev = t->dev;
  1411. }
  1412. err = 0;
  1413. unregister_netdevice(dev);
  1414. break;
  1415. default:
  1416. err = -EINVAL;
  1417. }
  1418. return err;
  1419. }
  1420. /**
  1421. * ip6_tnl_change_mtu - change mtu manually for tunnel device
  1422. * @dev: virtual device associated with tunnel
  1423. * @new_mtu: the new mtu
  1424. *
  1425. * Return:
  1426. * 0 on success,
  1427. * %-EINVAL if mtu too small
  1428. **/
  1429. int ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
  1430. {
  1431. struct ip6_tnl *tnl = netdev_priv(dev);
  1432. if (tnl->parms.proto == IPPROTO_IPIP) {
  1433. if (new_mtu < 68)
  1434. return -EINVAL;
  1435. } else {
  1436. if (new_mtu < IPV6_MIN_MTU)
  1437. return -EINVAL;
  1438. }
  1439. if (new_mtu > 0xFFF8 - dev->hard_header_len)
  1440. return -EINVAL;
  1441. dev->mtu = new_mtu;
  1442. return 0;
  1443. }
  1444. EXPORT_SYMBOL(ip6_tnl_change_mtu);
  1445. int ip6_tnl_get_iflink(const struct net_device *dev)
  1446. {
  1447. struct ip6_tnl *t = netdev_priv(dev);
  1448. return t->parms.link;
  1449. }
  1450. EXPORT_SYMBOL(ip6_tnl_get_iflink);
  1451. int ip6_tnl_encap_add_ops(const struct ip6_tnl_encap_ops *ops,
  1452. unsigned int num)
  1453. {
  1454. if (num >= MAX_IPTUN_ENCAP_OPS)
  1455. return -ERANGE;
  1456. return !cmpxchg((const struct ip6_tnl_encap_ops **)
  1457. &ip6tun_encaps[num],
  1458. NULL, ops) ? 0 : -1;
  1459. }
  1460. EXPORT_SYMBOL(ip6_tnl_encap_add_ops);
  1461. int ip6_tnl_encap_del_ops(const struct ip6_tnl_encap_ops *ops,
  1462. unsigned int num)
  1463. {
  1464. int ret;
  1465. if (num >= MAX_IPTUN_ENCAP_OPS)
  1466. return -ERANGE;
  1467. ret = (cmpxchg((const struct ip6_tnl_encap_ops **)
  1468. &ip6tun_encaps[num],
  1469. ops, NULL) == ops) ? 0 : -1;
  1470. synchronize_net();
  1471. return ret;
  1472. }
  1473. EXPORT_SYMBOL(ip6_tnl_encap_del_ops);
  1474. int ip6_tnl_encap_setup(struct ip6_tnl *t,
  1475. struct ip_tunnel_encap *ipencap)
  1476. {
  1477. int hlen;
  1478. memset(&t->encap, 0, sizeof(t->encap));
  1479. hlen = ip6_encap_hlen(ipencap);
  1480. if (hlen < 0)
  1481. return hlen;
  1482. t->encap.type = ipencap->type;
  1483. t->encap.sport = ipencap->sport;
  1484. t->encap.dport = ipencap->dport;
  1485. t->encap.flags = ipencap->flags;
  1486. t->encap_hlen = hlen;
  1487. t->hlen = t->encap_hlen + t->tun_hlen;
  1488. return 0;
  1489. }
  1490. EXPORT_SYMBOL_GPL(ip6_tnl_encap_setup);
  1491. static const struct net_device_ops ip6_tnl_netdev_ops = {
  1492. .ndo_init = ip6_tnl_dev_init,
  1493. .ndo_uninit = ip6_tnl_dev_uninit,
  1494. .ndo_start_xmit = ip6_tnl_start_xmit,
  1495. .ndo_do_ioctl = ip6_tnl_ioctl,
  1496. .ndo_change_mtu = ip6_tnl_change_mtu,
  1497. .ndo_get_stats = ip6_get_stats,
  1498. .ndo_get_iflink = ip6_tnl_get_iflink,
  1499. };
  1500. #define IPXIPX_FEATURES (NETIF_F_SG | \
  1501. NETIF_F_FRAGLIST | \
  1502. NETIF_F_HIGHDMA | \
  1503. NETIF_F_GSO_SOFTWARE | \
  1504. NETIF_F_HW_CSUM)
  1505. /**
  1506. * ip6_tnl_dev_setup - setup virtual tunnel device
  1507. * @dev: virtual device associated with tunnel
  1508. *
  1509. * Description:
  1510. * Initialize function pointers and device parameters
  1511. **/
  1512. static void ip6_tnl_dev_setup(struct net_device *dev)
  1513. {
  1514. dev->netdev_ops = &ip6_tnl_netdev_ops;
  1515. dev->destructor = ip6_dev_free;
  1516. dev->type = ARPHRD_TUNNEL6;
  1517. dev->flags |= IFF_NOARP;
  1518. dev->addr_len = sizeof(struct in6_addr);
  1519. dev->features |= NETIF_F_LLTX;
  1520. netif_keep_dst(dev);
  1521. dev->features |= IPXIPX_FEATURES;
  1522. dev->hw_features |= IPXIPX_FEATURES;
  1523. /* This perm addr will be used as interface identifier by IPv6 */
  1524. dev->addr_assign_type = NET_ADDR_RANDOM;
  1525. eth_random_addr(dev->perm_addr);
  1526. }
  1527. /**
  1528. * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
  1529. * @dev: virtual device associated with tunnel
  1530. **/
  1531. static inline int
  1532. ip6_tnl_dev_init_gen(struct net_device *dev)
  1533. {
  1534. struct ip6_tnl *t = netdev_priv(dev);
  1535. int ret;
  1536. int t_hlen;
  1537. t->dev = dev;
  1538. t->net = dev_net(dev);
  1539. dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
  1540. if (!dev->tstats)
  1541. return -ENOMEM;
  1542. ret = dst_cache_init(&t->dst_cache, GFP_KERNEL);
  1543. if (ret)
  1544. goto free_stats;
  1545. ret = gro_cells_init(&t->gro_cells, dev);
  1546. if (ret)
  1547. goto destroy_dst;
  1548. t->tun_hlen = 0;
  1549. t->hlen = t->encap_hlen + t->tun_hlen;
  1550. t_hlen = t->hlen + sizeof(struct ipv6hdr);
  1551. dev->type = ARPHRD_TUNNEL6;
  1552. dev->hard_header_len = LL_MAX_HEADER + t_hlen;
  1553. dev->mtu = ETH_DATA_LEN - t_hlen;
  1554. if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
  1555. dev->mtu -= 8;
  1556. return 0;
  1557. destroy_dst:
  1558. dst_cache_destroy(&t->dst_cache);
  1559. free_stats:
  1560. free_percpu(dev->tstats);
  1561. dev->tstats = NULL;
  1562. return ret;
  1563. }
  1564. /**
  1565. * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
  1566. * @dev: virtual device associated with tunnel
  1567. **/
  1568. static int ip6_tnl_dev_init(struct net_device *dev)
  1569. {
  1570. struct ip6_tnl *t = netdev_priv(dev);
  1571. int err = ip6_tnl_dev_init_gen(dev);
  1572. if (err)
  1573. return err;
  1574. ip6_tnl_link_config(t);
  1575. if (t->parms.collect_md) {
  1576. dev->features |= NETIF_F_NETNS_LOCAL;
  1577. netif_keep_dst(dev);
  1578. }
  1579. return 0;
  1580. }
  1581. /**
  1582. * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
  1583. * @dev: fallback device
  1584. *
  1585. * Return: 0
  1586. **/
  1587. static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
  1588. {
  1589. struct ip6_tnl *t = netdev_priv(dev);
  1590. struct net *net = dev_net(dev);
  1591. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  1592. t->parms.proto = IPPROTO_IPV6;
  1593. dev_hold(dev);
  1594. rcu_assign_pointer(ip6n->tnls_wc[0], t);
  1595. return 0;
  1596. }
  1597. static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
  1598. {
  1599. u8 proto;
  1600. if (!data || !data[IFLA_IPTUN_PROTO])
  1601. return 0;
  1602. proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
  1603. if (proto != IPPROTO_IPV6 &&
  1604. proto != IPPROTO_IPIP &&
  1605. proto != 0)
  1606. return -EINVAL;
  1607. return 0;
  1608. }
  1609. static void ip6_tnl_netlink_parms(struct nlattr *data[],
  1610. struct __ip6_tnl_parm *parms)
  1611. {
  1612. memset(parms, 0, sizeof(*parms));
  1613. if (!data)
  1614. return;
  1615. if (data[IFLA_IPTUN_LINK])
  1616. parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
  1617. if (data[IFLA_IPTUN_LOCAL])
  1618. parms->laddr = nla_get_in6_addr(data[IFLA_IPTUN_LOCAL]);
  1619. if (data[IFLA_IPTUN_REMOTE])
  1620. parms->raddr = nla_get_in6_addr(data[IFLA_IPTUN_REMOTE]);
  1621. if (data[IFLA_IPTUN_TTL])
  1622. parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
  1623. if (data[IFLA_IPTUN_ENCAP_LIMIT])
  1624. parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
  1625. if (data[IFLA_IPTUN_FLOWINFO])
  1626. parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
  1627. if (data[IFLA_IPTUN_FLAGS])
  1628. parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
  1629. if (data[IFLA_IPTUN_PROTO])
  1630. parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
  1631. if (data[IFLA_IPTUN_COLLECT_METADATA])
  1632. parms->collect_md = true;
  1633. }
  1634. static bool ip6_tnl_netlink_encap_parms(struct nlattr *data[],
  1635. struct ip_tunnel_encap *ipencap)
  1636. {
  1637. bool ret = false;
  1638. memset(ipencap, 0, sizeof(*ipencap));
  1639. if (!data)
  1640. return ret;
  1641. if (data[IFLA_IPTUN_ENCAP_TYPE]) {
  1642. ret = true;
  1643. ipencap->type = nla_get_u16(data[IFLA_IPTUN_ENCAP_TYPE]);
  1644. }
  1645. if (data[IFLA_IPTUN_ENCAP_FLAGS]) {
  1646. ret = true;
  1647. ipencap->flags = nla_get_u16(data[IFLA_IPTUN_ENCAP_FLAGS]);
  1648. }
  1649. if (data[IFLA_IPTUN_ENCAP_SPORT]) {
  1650. ret = true;
  1651. ipencap->sport = nla_get_be16(data[IFLA_IPTUN_ENCAP_SPORT]);
  1652. }
  1653. if (data[IFLA_IPTUN_ENCAP_DPORT]) {
  1654. ret = true;
  1655. ipencap->dport = nla_get_be16(data[IFLA_IPTUN_ENCAP_DPORT]);
  1656. }
  1657. return ret;
  1658. }
  1659. static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
  1660. struct nlattr *tb[], struct nlattr *data[])
  1661. {
  1662. struct net *net = dev_net(dev);
  1663. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  1664. struct ip6_tnl *nt, *t;
  1665. struct ip_tunnel_encap ipencap;
  1666. nt = netdev_priv(dev);
  1667. if (ip6_tnl_netlink_encap_parms(data, &ipencap)) {
  1668. int err = ip6_tnl_encap_setup(nt, &ipencap);
  1669. if (err < 0)
  1670. return err;
  1671. }
  1672. ip6_tnl_netlink_parms(data, &nt->parms);
  1673. if (nt->parms.collect_md) {
  1674. if (rtnl_dereference(ip6n->collect_md_tun))
  1675. return -EEXIST;
  1676. } else {
  1677. t = ip6_tnl_locate(net, &nt->parms, 0);
  1678. if (!IS_ERR(t))
  1679. return -EEXIST;
  1680. }
  1681. return ip6_tnl_create2(dev);
  1682. }
  1683. static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
  1684. struct nlattr *data[])
  1685. {
  1686. struct ip6_tnl *t = netdev_priv(dev);
  1687. struct __ip6_tnl_parm p;
  1688. struct net *net = t->net;
  1689. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  1690. struct ip_tunnel_encap ipencap;
  1691. if (dev == ip6n->fb_tnl_dev)
  1692. return -EINVAL;
  1693. if (ip6_tnl_netlink_encap_parms(data, &ipencap)) {
  1694. int err = ip6_tnl_encap_setup(t, &ipencap);
  1695. if (err < 0)
  1696. return err;
  1697. }
  1698. ip6_tnl_netlink_parms(data, &p);
  1699. if (p.collect_md)
  1700. return -EINVAL;
  1701. t = ip6_tnl_locate(net, &p, 0);
  1702. if (!IS_ERR(t)) {
  1703. if (t->dev != dev)
  1704. return -EEXIST;
  1705. } else
  1706. t = netdev_priv(dev);
  1707. return ip6_tnl_update(t, &p);
  1708. }
  1709. static void ip6_tnl_dellink(struct net_device *dev, struct list_head *head)
  1710. {
  1711. struct net *net = dev_net(dev);
  1712. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  1713. if (dev != ip6n->fb_tnl_dev)
  1714. unregister_netdevice_queue(dev, head);
  1715. }
  1716. static size_t ip6_tnl_get_size(const struct net_device *dev)
  1717. {
  1718. return
  1719. /* IFLA_IPTUN_LINK */
  1720. nla_total_size(4) +
  1721. /* IFLA_IPTUN_LOCAL */
  1722. nla_total_size(sizeof(struct in6_addr)) +
  1723. /* IFLA_IPTUN_REMOTE */
  1724. nla_total_size(sizeof(struct in6_addr)) +
  1725. /* IFLA_IPTUN_TTL */
  1726. nla_total_size(1) +
  1727. /* IFLA_IPTUN_ENCAP_LIMIT */
  1728. nla_total_size(1) +
  1729. /* IFLA_IPTUN_FLOWINFO */
  1730. nla_total_size(4) +
  1731. /* IFLA_IPTUN_FLAGS */
  1732. nla_total_size(4) +
  1733. /* IFLA_IPTUN_PROTO */
  1734. nla_total_size(1) +
  1735. /* IFLA_IPTUN_ENCAP_TYPE */
  1736. nla_total_size(2) +
  1737. /* IFLA_IPTUN_ENCAP_FLAGS */
  1738. nla_total_size(2) +
  1739. /* IFLA_IPTUN_ENCAP_SPORT */
  1740. nla_total_size(2) +
  1741. /* IFLA_IPTUN_ENCAP_DPORT */
  1742. nla_total_size(2) +
  1743. /* IFLA_IPTUN_COLLECT_METADATA */
  1744. nla_total_size(0) +
  1745. 0;
  1746. }
  1747. static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
  1748. {
  1749. struct ip6_tnl *tunnel = netdev_priv(dev);
  1750. struct __ip6_tnl_parm *parm = &tunnel->parms;
  1751. if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
  1752. nla_put_in6_addr(skb, IFLA_IPTUN_LOCAL, &parm->laddr) ||
  1753. nla_put_in6_addr(skb, IFLA_IPTUN_REMOTE, &parm->raddr) ||
  1754. nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
  1755. nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
  1756. nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
  1757. nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
  1758. nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
  1759. goto nla_put_failure;
  1760. if (nla_put_u16(skb, IFLA_IPTUN_ENCAP_TYPE, tunnel->encap.type) ||
  1761. nla_put_be16(skb, IFLA_IPTUN_ENCAP_SPORT, tunnel->encap.sport) ||
  1762. nla_put_be16(skb, IFLA_IPTUN_ENCAP_DPORT, tunnel->encap.dport) ||
  1763. nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS, tunnel->encap.flags))
  1764. goto nla_put_failure;
  1765. if (parm->collect_md)
  1766. if (nla_put_flag(skb, IFLA_IPTUN_COLLECT_METADATA))
  1767. goto nla_put_failure;
  1768. return 0;
  1769. nla_put_failure:
  1770. return -EMSGSIZE;
  1771. }
  1772. struct net *ip6_tnl_get_link_net(const struct net_device *dev)
  1773. {
  1774. struct ip6_tnl *tunnel = netdev_priv(dev);
  1775. return tunnel->net;
  1776. }
  1777. EXPORT_SYMBOL(ip6_tnl_get_link_net);
  1778. static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
  1779. [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
  1780. [IFLA_IPTUN_LOCAL] = { .len = sizeof(struct in6_addr) },
  1781. [IFLA_IPTUN_REMOTE] = { .len = sizeof(struct in6_addr) },
  1782. [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
  1783. [IFLA_IPTUN_ENCAP_LIMIT] = { .type = NLA_U8 },
  1784. [IFLA_IPTUN_FLOWINFO] = { .type = NLA_U32 },
  1785. [IFLA_IPTUN_FLAGS] = { .type = NLA_U32 },
  1786. [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
  1787. [IFLA_IPTUN_ENCAP_TYPE] = { .type = NLA_U16 },
  1788. [IFLA_IPTUN_ENCAP_FLAGS] = { .type = NLA_U16 },
  1789. [IFLA_IPTUN_ENCAP_SPORT] = { .type = NLA_U16 },
  1790. [IFLA_IPTUN_ENCAP_DPORT] = { .type = NLA_U16 },
  1791. [IFLA_IPTUN_COLLECT_METADATA] = { .type = NLA_FLAG },
  1792. };
  1793. static struct rtnl_link_ops ip6_link_ops __read_mostly = {
  1794. .kind = "ip6tnl",
  1795. .maxtype = IFLA_IPTUN_MAX,
  1796. .policy = ip6_tnl_policy,
  1797. .priv_size = sizeof(struct ip6_tnl),
  1798. .setup = ip6_tnl_dev_setup,
  1799. .validate = ip6_tnl_validate,
  1800. .newlink = ip6_tnl_newlink,
  1801. .changelink = ip6_tnl_changelink,
  1802. .dellink = ip6_tnl_dellink,
  1803. .get_size = ip6_tnl_get_size,
  1804. .fill_info = ip6_tnl_fill_info,
  1805. .get_link_net = ip6_tnl_get_link_net,
  1806. };
  1807. static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
  1808. .handler = ip4ip6_rcv,
  1809. .err_handler = ip4ip6_err,
  1810. .priority = 1,
  1811. };
  1812. static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
  1813. .handler = ip6ip6_rcv,
  1814. .err_handler = ip6ip6_err,
  1815. .priority = 1,
  1816. };
  1817. static void __net_exit ip6_tnl_destroy_tunnels(struct net *net)
  1818. {
  1819. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  1820. struct net_device *dev, *aux;
  1821. int h;
  1822. struct ip6_tnl *t;
  1823. LIST_HEAD(list);
  1824. for_each_netdev_safe(net, dev, aux)
  1825. if (dev->rtnl_link_ops == &ip6_link_ops)
  1826. unregister_netdevice_queue(dev, &list);
  1827. for (h = 0; h < IP6_TUNNEL_HASH_SIZE; h++) {
  1828. t = rtnl_dereference(ip6n->tnls_r_l[h]);
  1829. while (t) {
  1830. /* If dev is in the same netns, it has already
  1831. * been added to the list by the previous loop.
  1832. */
  1833. if (!net_eq(dev_net(t->dev), net))
  1834. unregister_netdevice_queue(t->dev, &list);
  1835. t = rtnl_dereference(t->next);
  1836. }
  1837. }
  1838. unregister_netdevice_many(&list);
  1839. }
  1840. static int __net_init ip6_tnl_init_net(struct net *net)
  1841. {
  1842. struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
  1843. struct ip6_tnl *t = NULL;
  1844. int err;
  1845. ip6n->tnls[0] = ip6n->tnls_wc;
  1846. ip6n->tnls[1] = ip6n->tnls_r_l;
  1847. err = -ENOMEM;
  1848. ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
  1849. NET_NAME_UNKNOWN, ip6_tnl_dev_setup);
  1850. if (!ip6n->fb_tnl_dev)
  1851. goto err_alloc_dev;
  1852. dev_net_set(ip6n->fb_tnl_dev, net);
  1853. ip6n->fb_tnl_dev->rtnl_link_ops = &ip6_link_ops;
  1854. /* FB netdevice is special: we have one, and only one per netns.
  1855. * Allowing to move it to another netns is clearly unsafe.
  1856. */
  1857. ip6n->fb_tnl_dev->features |= NETIF_F_NETNS_LOCAL;
  1858. err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
  1859. if (err < 0)
  1860. goto err_register;
  1861. err = register_netdev(ip6n->fb_tnl_dev);
  1862. if (err < 0)
  1863. goto err_register;
  1864. t = netdev_priv(ip6n->fb_tnl_dev);
  1865. strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
  1866. return 0;
  1867. err_register:
  1868. ip6_dev_free(ip6n->fb_tnl_dev);
  1869. err_alloc_dev:
  1870. return err;
  1871. }
  1872. static void __net_exit ip6_tnl_exit_net(struct net *net)
  1873. {
  1874. rtnl_lock();
  1875. ip6_tnl_destroy_tunnels(net);
  1876. rtnl_unlock();
  1877. }
  1878. static struct pernet_operations ip6_tnl_net_ops = {
  1879. .init = ip6_tnl_init_net,
  1880. .exit = ip6_tnl_exit_net,
  1881. .id = &ip6_tnl_net_id,
  1882. .size = sizeof(struct ip6_tnl_net),
  1883. };
  1884. /**
  1885. * ip6_tunnel_init - register protocol and reserve needed resources
  1886. *
  1887. * Return: 0 on success
  1888. **/
  1889. static int __init ip6_tunnel_init(void)
  1890. {
  1891. int err;
  1892. if (!ipv6_mod_enabled())
  1893. return -EOPNOTSUPP;
  1894. err = register_pernet_device(&ip6_tnl_net_ops);
  1895. if (err < 0)
  1896. goto out_pernet;
  1897. err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
  1898. if (err < 0) {
  1899. pr_err("%s: can't register ip4ip6\n", __func__);
  1900. goto out_ip4ip6;
  1901. }
  1902. err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
  1903. if (err < 0) {
  1904. pr_err("%s: can't register ip6ip6\n", __func__);
  1905. goto out_ip6ip6;
  1906. }
  1907. err = rtnl_link_register(&ip6_link_ops);
  1908. if (err < 0)
  1909. goto rtnl_link_failed;
  1910. return 0;
  1911. rtnl_link_failed:
  1912. xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
  1913. out_ip6ip6:
  1914. xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
  1915. out_ip4ip6:
  1916. unregister_pernet_device(&ip6_tnl_net_ops);
  1917. out_pernet:
  1918. return err;
  1919. }
  1920. /**
  1921. * ip6_tunnel_cleanup - free resources and unregister protocol
  1922. **/
  1923. static void __exit ip6_tunnel_cleanup(void)
  1924. {
  1925. rtnl_link_unregister(&ip6_link_ops);
  1926. if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
  1927. pr_info("%s: can't deregister ip4ip6\n", __func__);
  1928. if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
  1929. pr_info("%s: can't deregister ip6ip6\n", __func__);
  1930. unregister_pernet_device(&ip6_tnl_net_ops);
  1931. }
  1932. module_init(ip6_tunnel_init);
  1933. module_exit(ip6_tunnel_cleanup);