route.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:43k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Linux INET6 implementation
  3.  * FIB front-end.
  4.  *
  5.  * Authors:
  6.  * Pedro Roque <roque@di.fc.ul.pt>
  7.  *
  8.  * $Id: route.c,v 1.56 2001/10/31 21:55:55 davem Exp $
  9.  *
  10.  * This program is free software; you can redistribute it and/or
  11.  *      modify it under the terms of the GNU General Public License
  12.  *      as published by the Free Software Foundation; either version
  13.  *      2 of the License, or (at your option) any later version.
  14.  */
  15. #include <linux/config.h>
  16. #include <linux/errno.h>
  17. #include <linux/types.h>
  18. #include <linux/socket.h>
  19. #include <linux/sockios.h>
  20. #include <linux/net.h>
  21. #include <linux/route.h>
  22. #include <linux/netdevice.h>
  23. #include <linux/in6.h>
  24. #include <linux/init.h>
  25. #include <linux/netlink.h>
  26. #include <linux/if_arp.h>
  27. #ifdef  CONFIG_PROC_FS
  28. #include <linux/proc_fs.h>
  29. #endif
  30. #include <net/snmp.h>
  31. #include <net/ipv6.h>
  32. #include <net/ip6_fib.h>
  33. #include <net/ip6_route.h>
  34. #include <net/ndisc.h>
  35. #include <net/addrconf.h>
  36. #include <net/tcp.h>
  37. #include <linux/rtnetlink.h>
  38. #include <asm/uaccess.h>
  39. #ifdef CONFIG_SYSCTL
  40. #include <linux/sysctl.h>
  41. #endif
  42. #undef CONFIG_RT6_POLICY
  43. /* Set to 3 to get tracing. */
  44. #define RT6_DEBUG 2
  45. #if RT6_DEBUG >= 3
  46. #define RDBG(x) printk x
  47. #define RT6_TRACE(x...) printk(KERN_DEBUG x)
  48. #else
  49. #define RDBG(x)
  50. #define RT6_TRACE(x...) do { ; } while (0)
  51. #endif
  52. int ip6_rt_max_size = 4096;
  53. int ip6_rt_gc_min_interval = 5*HZ;
  54. int ip6_rt_gc_timeout = 60*HZ;
  55. int ip6_rt_gc_interval = 30*HZ;
  56. int ip6_rt_gc_elasticity = 9;
  57. int ip6_rt_mtu_expires = 10*60*HZ;
  58. int ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
  59. static struct rt6_info * ip6_rt_copy(struct rt6_info *ort);
  60. static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
  61. static struct dst_entry *ip6_dst_reroute(struct dst_entry *dst,
  62.  struct sk_buff *skb);
  63. static struct dst_entry *ip6_negative_advice(struct dst_entry *);
  64. static int  ip6_dst_gc(void);
  65. static int ip6_pkt_discard(struct sk_buff *skb);
  66. static void ip6_link_failure(struct sk_buff *skb);
  67. struct dst_ops ip6_dst_ops = {
  68. AF_INET6,
  69. __constant_htons(ETH_P_IPV6),
  70. 1024,
  71.         ip6_dst_gc,
  72. ip6_dst_check,
  73. ip6_dst_reroute,
  74. NULL,
  75. ip6_negative_advice,
  76. ip6_link_failure,
  77. sizeof(struct rt6_info),
  78. };
  79. struct rt6_info ip6_null_entry = {
  80. {{NULL, ATOMIC_INIT(1), 1, &loopback_dev,
  81.   -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  82.   -ENETUNREACH, NULL, NULL,
  83.   ip6_pkt_discard, ip6_pkt_discard,
  84. #ifdef CONFIG_NET_CLS_ROUTE
  85.   0,
  86. #endif
  87.   &ip6_dst_ops}},
  88. NULL, {{{0}}}, RTF_REJECT|RTF_NONEXTHOP, ~0U,
  89. 255, ATOMIC_INIT(1), {NULL}, {{{{0}}}, 0}, {{{{0}}}, 0}
  90. };
  91. struct fib6_node ip6_routing_table = {
  92. NULL, NULL, NULL, NULL,
  93. &ip6_null_entry,
  94. 0, RTN_ROOT|RTN_TL_ROOT|RTN_RTINFO, 0
  95. };
  96. #ifdef CONFIG_RT6_POLICY
  97. int ip6_rt_policy = 0;
  98. struct pol_chain *rt6_pol_list = NULL;
  99. static int rt6_flow_match_in(struct rt6_info *rt, struct sk_buff *skb);
  100. static int rt6_flow_match_out(struct rt6_info *rt, struct sock *sk);
  101. static struct rt6_info *rt6_flow_lookup(struct rt6_info *rt,
  102.  struct in6_addr *daddr,
  103.  struct in6_addr *saddr,
  104.  struct fl_acc_args *args);
  105. #else
  106. #define ip6_rt_policy (0)
  107. #endif
  108. /* Protects all the ip6 fib */
  109. rwlock_t rt6_lock = RW_LOCK_UNLOCKED;
  110. /*
  111.  * Route lookup. Any rt6_lock is implied.
  112.  */
  113. static __inline__ struct rt6_info *rt6_device_match(struct rt6_info *rt,
  114.     int oif,
  115.     int strict)
  116. {
  117. struct rt6_info *local = NULL;
  118. struct rt6_info *sprt;
  119. if (oif) {
  120. for (sprt = rt; sprt; sprt = sprt->u.next) {
  121. struct net_device *dev = sprt->rt6i_dev;
  122. if (dev->ifindex == oif)
  123. return sprt;
  124. if (dev->flags&IFF_LOOPBACK)
  125. local = sprt;
  126. }
  127. if (local)
  128. return local;
  129. if (strict)
  130. return &ip6_null_entry;
  131. }
  132. return rt;
  133. }
  134. /*
  135.  * pointer to the last default router chosen. BH is disabled locally.
  136.  */
  137. static struct rt6_info *rt6_dflt_pointer = NULL;
  138. static spinlock_t rt6_dflt_lock = SPIN_LOCK_UNLOCKED;
  139. static struct rt6_info *rt6_best_dflt(struct rt6_info *rt, int oif)
  140. {
  141. struct rt6_info *match = NULL;
  142. struct rt6_info *sprt;
  143. int mpri = 0;
  144. for (sprt = rt; sprt; sprt = sprt->u.next) {
  145. struct neighbour *neigh;
  146. if ((neigh = sprt->rt6i_nexthop) != NULL) {
  147. int m = -1;
  148. switch (neigh->nud_state) {
  149. case NUD_REACHABLE:
  150. if (sprt != rt6_dflt_pointer) {
  151. rt = sprt;
  152. goto out;
  153. }
  154. m = 2;
  155. break;
  156. case NUD_DELAY:
  157. m = 1;
  158. break;
  159. case NUD_STALE:
  160. m = 1;
  161. break;
  162. };
  163. if (oif && sprt->rt6i_dev->ifindex == oif) {
  164. m += 2;
  165. }
  166. if (m >= mpri) {
  167. mpri = m;
  168. match = sprt;
  169. }
  170. }
  171. }
  172. if (match) {
  173. rt = match;
  174. } else {
  175. /*
  176.  * No default routers are known to be reachable.
  177.  * SHOULD round robin
  178.  */
  179. spin_lock(&rt6_dflt_lock);
  180. if (rt6_dflt_pointer) {
  181. struct rt6_info *next;
  182. if ((next = rt6_dflt_pointer->u.next) != NULL &&
  183.     next->u.dst.obsolete <= 0 &&
  184.     next->u.dst.error == 0)
  185. rt = next;
  186. }
  187. spin_unlock(&rt6_dflt_lock);
  188. }
  189. out:
  190. spin_lock(&rt6_dflt_lock);
  191. rt6_dflt_pointer = rt;
  192. spin_unlock(&rt6_dflt_lock);
  193. return rt;
  194. }
  195. struct rt6_info *rt6_lookup(struct in6_addr *daddr, struct in6_addr *saddr,
  196.     int oif, int strict)
  197. {
  198. struct fib6_node *fn;
  199. struct rt6_info *rt;
  200. read_lock_bh(&rt6_lock);
  201. fn = fib6_lookup(&ip6_routing_table, daddr, saddr);
  202. rt = rt6_device_match(fn->leaf, oif, strict);
  203. dst_hold(&rt->u.dst);
  204. rt->u.dst.__use++;
  205. read_unlock_bh(&rt6_lock);
  206. rt->u.dst.lastuse = jiffies;
  207. if (rt->u.dst.error == 0)
  208. return rt;
  209. dst_release(&rt->u.dst);
  210. return NULL;
  211. }
  212. /* rt6_ins is called with FREE rt6_lock.
  213.    It takes new route entry, the addition fails by any reason the
  214.    route is freed. In any case, if caller does not hold it, it may
  215.    be destroyed.
  216.  */
  217. static int rt6_ins(struct rt6_info *rt)
  218. {
  219. int err;
  220. write_lock_bh(&rt6_lock);
  221. err = fib6_add(&ip6_routing_table, rt);
  222. write_unlock_bh(&rt6_lock);
  223. return err;
  224. }
  225. /* No rt6_lock! If COW faild, the function returns dead route entry
  226.    with dst->error set to errno value.
  227.  */
  228. static struct rt6_info *rt6_cow(struct rt6_info *ort, struct in6_addr *daddr,
  229. struct in6_addr *saddr)
  230. {
  231. int err;
  232. struct rt6_info *rt;
  233. /*
  234.  * Clone the route.
  235.  */
  236. rt = ip6_rt_copy(ort);
  237. if (rt) {
  238. ipv6_addr_copy(&rt->rt6i_dst.addr, daddr);
  239. if (!(rt->rt6i_flags&RTF_GATEWAY))
  240. ipv6_addr_copy(&rt->rt6i_gateway, daddr);
  241. rt->rt6i_dst.plen = 128;
  242. rt->rt6i_flags |= RTF_CACHE;
  243. rt->u.dst.flags |= DST_HOST;
  244. #ifdef CONFIG_IPV6_SUBTREES
  245. if (rt->rt6i_src.plen && saddr) {
  246. ipv6_addr_copy(&rt->rt6i_src.addr, saddr);
  247. rt->rt6i_src.plen = 128;
  248. }
  249. #endif
  250. rt->rt6i_nexthop = ndisc_get_neigh(rt->rt6i_dev, &rt->rt6i_gateway);
  251. dst_clone(&rt->u.dst);
  252. err = rt6_ins(rt);
  253. if (err == 0)
  254. return rt;
  255. rt->u.dst.error = err;
  256. return rt;
  257. }
  258. dst_clone(&ip6_null_entry.u.dst);
  259. return &ip6_null_entry;
  260. }
  261. #ifdef CONFIG_RT6_POLICY
  262. static __inline__ struct rt6_info *rt6_flow_lookup_in(struct rt6_info *rt,
  263.       struct sk_buff *skb)
  264. {
  265. struct in6_addr *daddr, *saddr;
  266. struct fl_acc_args arg;
  267. arg.type = FL_ARG_FORWARD;
  268. arg.fl_u.skb = skb;
  269. saddr = &skb->nh.ipv6h->saddr;
  270. daddr = &skb->nh.ipv6h->daddr;
  271. return rt6_flow_lookup(rt, daddr, saddr, &arg);
  272. }
  273. static __inline__ struct rt6_info *rt6_flow_lookup_out(struct rt6_info *rt,
  274.        struct sock *sk,
  275.        struct flowi *fl)
  276. {
  277. struct fl_acc_args arg;
  278. arg.type = FL_ARG_ORIGIN;
  279. arg.fl_u.fl_o.sk = sk;
  280. arg.fl_u.fl_o.flow = fl;
  281. return rt6_flow_lookup(rt, fl->nl_u.ip6_u.daddr, fl->nl_u.ip6_u.saddr,
  282.        &arg);
  283. }
  284. #endif
  285. #define BACKTRACK() 
  286. if (rt == &ip6_null_entry && strict) { 
  287.        while ((fn = fn->parent) != NULL) { 
  288. if (fn->fn_flags & RTN_ROOT) { 
  289. dst_clone(&rt->u.dst); 
  290. goto out; 
  291. if (fn->fn_flags & RTN_RTINFO) 
  292. goto restart; 
  293. }
  294. void ip6_route_input(struct sk_buff *skb)
  295. {
  296. struct fib6_node *fn;
  297. struct rt6_info *rt;
  298. int strict;
  299. int attempts = 3;
  300. strict = ipv6_addr_type(&skb->nh.ipv6h->daddr) & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL);
  301. relookup:
  302. read_lock_bh(&rt6_lock);
  303. fn = fib6_lookup(&ip6_routing_table, &skb->nh.ipv6h->daddr,
  304.  &skb->nh.ipv6h->saddr);
  305. restart:
  306. rt = fn->leaf;
  307. if ((rt->rt6i_flags & RTF_CACHE)) {
  308. if (ip6_rt_policy == 0) {
  309. rt = rt6_device_match(rt, skb->dev->ifindex, strict);
  310. BACKTRACK();
  311. dst_clone(&rt->u.dst);
  312. goto out;
  313. }
  314. #ifdef CONFIG_RT6_POLICY
  315. if ((rt->rt6i_flags & RTF_FLOW)) {
  316. struct rt6_info *sprt;
  317. for (sprt = rt; sprt; sprt = sprt->u.next) {
  318. if (rt6_flow_match_in(sprt, skb)) {
  319. rt = sprt;
  320. dst_clone(&rt->u.dst);
  321. goto out;
  322. }
  323. }
  324. }
  325. #endif
  326. }
  327. rt = rt6_device_match(rt, skb->dev->ifindex, 0);
  328. BACKTRACK();
  329. if (ip6_rt_policy == 0) {
  330. if (!rt->rt6i_nexthop && !(rt->rt6i_flags & RTF_NONEXTHOP)) {
  331. read_unlock_bh(&rt6_lock);
  332. rt = rt6_cow(rt, &skb->nh.ipv6h->daddr,
  333.      &skb->nh.ipv6h->saddr);
  334. if (rt->u.dst.error != -EEXIST || --attempts <= 0)
  335. goto out2;
  336. /* Race condition! In the gap, when rt6_lock was
  337.    released someone could insert this route.  Relookup.
  338.  */
  339. goto relookup;
  340. }
  341. dst_clone(&rt->u.dst);
  342. } else {
  343. #ifdef CONFIG_RT6_POLICY
  344. rt = rt6_flow_lookup_in(rt, skb);
  345. #else
  346. /* NEVER REACHED */
  347. #endif
  348. }
  349. out:
  350. read_unlock_bh(&rt6_lock);
  351. out2:
  352. rt->u.dst.lastuse = jiffies;
  353. rt->u.dst.__use++;
  354. skb->dst = (struct dst_entry *) rt;
  355. }
  356. struct dst_entry * ip6_route_output(struct sock *sk, struct flowi *fl)
  357. {
  358. struct fib6_node *fn;
  359. struct rt6_info *rt;
  360. int strict;
  361. int attempts = 3;
  362. strict = ipv6_addr_type(fl->nl_u.ip6_u.daddr) & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL);
  363. relookup:
  364. read_lock_bh(&rt6_lock);
  365. fn = fib6_lookup(&ip6_routing_table, fl->nl_u.ip6_u.daddr,
  366.  fl->nl_u.ip6_u.saddr);
  367. restart:
  368. rt = fn->leaf;
  369. if ((rt->rt6i_flags & RTF_CACHE)) {
  370. if (ip6_rt_policy == 0) {
  371. rt = rt6_device_match(rt, fl->oif, strict);
  372. BACKTRACK();
  373. dst_clone(&rt->u.dst);
  374. goto out;
  375. }
  376. #ifdef CONFIG_RT6_POLICY
  377. if ((rt->rt6i_flags & RTF_FLOW)) {
  378. struct rt6_info *sprt;
  379. for (sprt = rt; sprt; sprt = sprt->u.next) {
  380. if (rt6_flow_match_out(sprt, sk)) {
  381. rt = sprt;
  382. dst_clone(&rt->u.dst);
  383. goto out;
  384. }
  385. }
  386. }
  387. #endif
  388. }
  389. if (rt->rt6i_flags & RTF_DEFAULT) {
  390. if (rt->rt6i_metric >= IP6_RT_PRIO_ADDRCONF)
  391. rt = rt6_best_dflt(rt, fl->oif);
  392. } else {
  393. rt = rt6_device_match(rt, fl->oif, strict);
  394. BACKTRACK();
  395. }
  396. if (ip6_rt_policy == 0) {
  397. if (!rt->rt6i_nexthop && !(rt->rt6i_flags & RTF_NONEXTHOP)) {
  398. read_unlock_bh(&rt6_lock);
  399. rt = rt6_cow(rt, fl->nl_u.ip6_u.daddr,
  400.      fl->nl_u.ip6_u.saddr);
  401. if (rt->u.dst.error != -EEXIST || --attempts <= 0)
  402. goto out2;
  403. /* Race condition! In the gap, when rt6_lock was
  404.    released someone could insert this route.  Relookup.
  405.  */
  406. goto relookup;
  407. }
  408. dst_clone(&rt->u.dst);
  409. } else {
  410. #ifdef CONFIG_RT6_POLICY
  411. rt = rt6_flow_lookup_out(rt, sk, fl);
  412. #else
  413. /* NEVER REACHED */
  414. #endif
  415. }
  416. out:
  417. read_unlock_bh(&rt6_lock);
  418. out2:
  419. rt->u.dst.lastuse = jiffies;
  420. rt->u.dst.__use++;
  421. return &rt->u.dst;
  422. }
  423. /*
  424.  * Destination cache support functions
  425.  */
  426. static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
  427. {
  428. struct rt6_info *rt;
  429. rt = (struct rt6_info *) dst;
  430. if (rt && rt->rt6i_node && (rt->rt6i_node->fn_sernum == cookie))
  431. return dst;
  432. dst_release(dst);
  433. return NULL;
  434. }
  435. static struct dst_entry *ip6_dst_reroute(struct dst_entry *dst, struct sk_buff *skb)
  436. {
  437. /*
  438.  * FIXME
  439.  */
  440. RDBG(("ip6_dst_reroute(%p,%p)[%p] (AIEEE)n", dst, skb,
  441.       __builtin_return_address(0)));
  442. return NULL;
  443. }
  444. static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
  445. {
  446. struct rt6_info *rt = (struct rt6_info *) dst;
  447. if (rt) {
  448. if (rt->rt6i_flags & RTF_CACHE)
  449. ip6_del_rt(rt);
  450. else
  451. dst_release(dst);
  452. }
  453. return NULL;
  454. }
  455. static void ip6_link_failure(struct sk_buff *skb)
  456. {
  457. struct rt6_info *rt;
  458. icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0, skb->dev);
  459. rt = (struct rt6_info *) skb->dst;
  460. if (rt) {
  461. if (rt->rt6i_flags&RTF_CACHE) {
  462. dst_set_expires(&rt->u.dst, 0);
  463. rt->rt6i_flags |= RTF_EXPIRES;
  464. } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT))
  465. rt->rt6i_node->fn_sernum = -1;
  466. }
  467. }
  468. static int ip6_dst_gc()
  469. {
  470. static unsigned expire = 30*HZ;
  471. static unsigned long last_gc;
  472. unsigned long now = jiffies;
  473. if ((long)(now - last_gc) < ip6_rt_gc_min_interval &&
  474.     atomic_read(&ip6_dst_ops.entries) <= ip6_rt_max_size)
  475. goto out;
  476. expire++;
  477. fib6_run_gc(expire);
  478. last_gc = now;
  479. if (atomic_read(&ip6_dst_ops.entries) < ip6_dst_ops.gc_thresh)
  480. expire = ip6_rt_gc_timeout>>1;
  481. out:
  482. expire -= expire>>ip6_rt_gc_elasticity;
  483. return (atomic_read(&ip6_dst_ops.entries) > ip6_rt_max_size);
  484. }
  485. /* Clean host part of a prefix. Not necessary in radix tree,
  486.    but results in cleaner routing tables.
  487.    Remove it only when all the things will work!
  488.  */
  489. static void ipv6_wash_prefix(struct in6_addr *pfx, int plen)
  490. {
  491. int b = plen&0x7;
  492. int o = (plen + 7)>>3;
  493. if (o < 16)
  494. memset(pfx->s6_addr + o, 0, 16 - o);
  495. if (b != 0)
  496. pfx->s6_addr[plen>>3] &= (0xFF<<(8-b));
  497. }
  498. static int ipv6_get_mtu(struct net_device *dev)
  499. {
  500. int mtu = IPV6_MIN_MTU;
  501. struct inet6_dev *idev;
  502. idev = in6_dev_get(dev);
  503. if (idev) {
  504. mtu = idev->cnf.mtu6;
  505. in6_dev_put(idev);
  506. }
  507. return mtu;
  508. }
  509. static int ipv6_get_hoplimit(struct net_device *dev)
  510. {
  511. int hoplimit = ipv6_devconf.hop_limit;
  512. struct inet6_dev *idev;
  513. idev = in6_dev_get(dev);
  514. if (idev) {
  515. hoplimit = idev->cnf.hop_limit;
  516. in6_dev_put(idev);
  517. }
  518. return hoplimit;
  519. }
  520. /*
  521.  *
  522.  */
  523. int ip6_route_add(struct in6_rtmsg *rtmsg)
  524. {
  525. int err;
  526. struct rt6_info *rt;
  527. struct net_device *dev = NULL;
  528. int addr_type;
  529. if (rtmsg->rtmsg_dst_len > 128 || rtmsg->rtmsg_src_len > 128)
  530. return -EINVAL;
  531. #ifndef CONFIG_IPV6_SUBTREES
  532. if (rtmsg->rtmsg_src_len)
  533. return -EINVAL;
  534. #endif
  535. if (rtmsg->rtmsg_metric == 0)
  536. rtmsg->rtmsg_metric = IP6_RT_PRIO_USER;
  537. rt = dst_alloc(&ip6_dst_ops);
  538. if (rt == NULL)
  539. return -ENOMEM;
  540. rt->u.dst.obsolete = -1;
  541. rt->rt6i_expires = rtmsg->rtmsg_info;
  542. addr_type = ipv6_addr_type(&rtmsg->rtmsg_dst);
  543. if (addr_type & IPV6_ADDR_MULTICAST)
  544. rt->u.dst.input = ip6_mc_input;
  545. else
  546. rt->u.dst.input = ip6_forward;
  547. rt->u.dst.output = ip6_output;
  548. if (rtmsg->rtmsg_ifindex) {
  549. dev = dev_get_by_index(rtmsg->rtmsg_ifindex);
  550. err = -ENODEV;
  551. if (dev == NULL)
  552. goto out;
  553. }
  554. ipv6_addr_copy(&rt->rt6i_dst.addr, &rtmsg->rtmsg_dst);
  555. rt->rt6i_dst.plen = rtmsg->rtmsg_dst_len;
  556. if (rt->rt6i_dst.plen == 128)
  557.        rt->u.dst.flags = DST_HOST;
  558. ipv6_wash_prefix(&rt->rt6i_dst.addr, rt->rt6i_dst.plen);
  559. #ifdef CONFIG_IPV6_SUBTREES
  560. ipv6_addr_copy(&rt->rt6i_src.addr, &rtmsg->rtmsg_src);
  561. rt->rt6i_src.plen = rtmsg->rtmsg_src_len;
  562. ipv6_wash_prefix(&rt->rt6i_src.addr, rt->rt6i_src.plen);
  563. #endif
  564. rt->rt6i_metric = rtmsg->rtmsg_metric;
  565. /* We cannot add true routes via loopback here,
  566.    they would result in kernel looping; promote them to reject routes
  567.  */
  568. if ((rtmsg->rtmsg_flags&RTF_REJECT) ||
  569.     (dev && (dev->flags&IFF_LOOPBACK) && !(addr_type&IPV6_ADDR_LOOPBACK))) {
  570. if (dev)
  571. dev_put(dev);
  572. dev = &loopback_dev;
  573. dev_hold(dev);
  574. rt->u.dst.output = ip6_pkt_discard;
  575. rt->u.dst.input = ip6_pkt_discard;
  576. rt->u.dst.error = -ENETUNREACH;
  577. rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
  578. goto install_route;
  579. }
  580. if (rtmsg->rtmsg_flags & RTF_GATEWAY) {
  581. struct in6_addr *gw_addr;
  582. int gwa_type;
  583. gw_addr = &rtmsg->rtmsg_gateway;
  584. ipv6_addr_copy(&rt->rt6i_gateway, &rtmsg->rtmsg_gateway);
  585. gwa_type = ipv6_addr_type(gw_addr);
  586. if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
  587. struct rt6_info *grt;
  588. /* IPv6 strictly inhibits using not link-local
  589.    addresses as nexthop address.
  590.    Otherwise, router will not able to send redirects.
  591.    It is very good, but in some (rare!) curcumstances
  592.    (SIT, PtP, NBMA NOARP links) it is handy to allow
  593.    some exceptions. --ANK
  594.  */
  595. err = -EINVAL;
  596. if (!(gwa_type&IPV6_ADDR_UNICAST))
  597. goto out;
  598. grt = rt6_lookup(gw_addr, NULL, rtmsg->rtmsg_ifindex, 1);
  599. err = -EHOSTUNREACH;
  600. if (grt == NULL)
  601. goto out;
  602. if (dev) {
  603. if (dev != grt->rt6i_dev) {
  604. dst_release(&grt->u.dst);
  605. goto out;
  606. }
  607. } else {
  608. dev = grt->rt6i_dev;
  609. dev_hold(dev);
  610. }
  611. if (!(grt->rt6i_flags&RTF_GATEWAY))
  612. err = 0;
  613. dst_release(&grt->u.dst);
  614. if (err)
  615. goto out;
  616. }
  617. err = -EINVAL;
  618. if (dev == NULL || (dev->flags&IFF_LOOPBACK))
  619. goto out;
  620. }
  621. err = -ENODEV;
  622. if (dev == NULL)
  623. goto out;
  624. if (rtmsg->rtmsg_flags & (RTF_GATEWAY|RTF_NONEXTHOP)) {
  625. rt->rt6i_nexthop = __neigh_lookup_errno(&nd_tbl, &rt->rt6i_gateway, dev);
  626. if (IS_ERR(rt->rt6i_nexthop)) {
  627. err = PTR_ERR(rt->rt6i_nexthop);
  628. rt->rt6i_nexthop = NULL;
  629. goto out;
  630. }
  631. }
  632. if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr))
  633. rt->rt6i_hoplimit = IPV6_DEFAULT_MCASTHOPS;
  634. else
  635. rt->rt6i_hoplimit = ipv6_get_hoplimit(dev);
  636. rt->rt6i_flags = rtmsg->rtmsg_flags;
  637. install_route:
  638. rt->u.dst.pmtu = ipv6_get_mtu(dev);
  639. rt->u.dst.advmss = max_t(unsigned int, rt->u.dst.pmtu - 60, ip6_rt_min_advmss);
  640. /* Maximal non-jumbo IPv6 payload is 65535 and corresponding
  641.    MSS is 65535 - tcp_header_size. 65535 is also valid and
  642.    means: "any MSS, rely only on pmtu discovery"
  643.  */
  644. if (rt->u.dst.advmss > 65535-20)
  645. rt->u.dst.advmss = 65535;
  646. rt->u.dst.dev = dev;
  647. return rt6_ins(rt);
  648. out:
  649. if (dev)
  650. dev_put(dev);
  651. dst_free((struct dst_entry *) rt);
  652. return err;
  653. }
  654. int ip6_del_rt(struct rt6_info *rt)
  655. {
  656. int err;
  657. write_lock_bh(&rt6_lock);
  658. spin_lock_bh(&rt6_dflt_lock);
  659. rt6_dflt_pointer = NULL;
  660. spin_unlock_bh(&rt6_dflt_lock);
  661. dst_release(&rt->u.dst);
  662. err = fib6_del(rt);
  663. write_unlock_bh(&rt6_lock);
  664. return err;
  665. }
  666. int ip6_route_del(struct in6_rtmsg *rtmsg)
  667. {
  668. struct fib6_node *fn;
  669. struct rt6_info *rt;
  670. int err = -ESRCH;
  671. read_lock_bh(&rt6_lock);
  672. fn = fib6_locate(&ip6_routing_table,
  673.  &rtmsg->rtmsg_dst, rtmsg->rtmsg_dst_len,
  674.  &rtmsg->rtmsg_src, rtmsg->rtmsg_src_len);
  675. if (fn) {
  676. for (rt = fn->leaf; rt; rt = rt->u.next) {
  677. if (rtmsg->rtmsg_ifindex &&
  678.     (rt->rt6i_dev == NULL ||
  679.      rt->rt6i_dev->ifindex != rtmsg->rtmsg_ifindex))
  680. continue;
  681. if (rtmsg->rtmsg_flags&RTF_GATEWAY &&
  682.     ipv6_addr_cmp(&rtmsg->rtmsg_gateway, &rt->rt6i_gateway))
  683. continue;
  684. if (rtmsg->rtmsg_metric &&
  685.     rtmsg->rtmsg_metric != rt->rt6i_metric)
  686. continue;
  687. dst_clone(&rt->u.dst);
  688. read_unlock_bh(&rt6_lock);
  689. return ip6_del_rt(rt);
  690. }
  691. }
  692. read_unlock_bh(&rt6_lock);
  693. return err;
  694. }
  695. /*
  696.  * Handle redirects
  697.  */
  698. void rt6_redirect(struct in6_addr *dest, struct in6_addr *saddr,
  699.   struct neighbour *neigh, int on_link)
  700. {
  701. struct rt6_info *rt, *nrt;
  702. /* Locate old route to this destination. */
  703. rt = rt6_lookup(dest, NULL, neigh->dev->ifindex, 1);
  704. if (rt == NULL)
  705. return;
  706. if (neigh->dev != rt->rt6i_dev)
  707. goto out;
  708. /* Redirect received -> path was valid.
  709.    Look, redirects are sent only in response to data packets,
  710.    so that this nexthop apparently is reachable. --ANK
  711.  */
  712. dst_confirm(&rt->u.dst);
  713. /* Duplicate redirect: silently ignore. */
  714. if (neigh == rt->u.dst.neighbour)
  715. goto out;
  716. /* Current route is on-link; redirect is always invalid.
  717.    
  718.    Seems, previous statement is not true. It could
  719.    be node, which looks for us as on-link (f.e. proxy ndisc)
  720.    But then router serving it might decide, that we should
  721.    know truth 8)8) --ANK (980726).
  722.  */
  723. if (!(rt->rt6i_flags&RTF_GATEWAY))
  724. goto out;
  725. /*
  726.  * RFC 1970 specifies that redirects should only be
  727.  * accepted if they come from the nexthop to the target.
  728.  * Due to the way default routers are chosen, this notion
  729.  * is a bit fuzzy and one might need to check all default
  730.  * routers.
  731.  */
  732. if (ipv6_addr_cmp(saddr, &rt->rt6i_gateway)) {
  733. if (rt->rt6i_flags & RTF_DEFAULT) {
  734. struct rt6_info *rt1;
  735. read_lock(&rt6_lock);
  736. for (rt1 = ip6_routing_table.leaf; rt1; rt1 = rt1->u.next) {
  737. if (!ipv6_addr_cmp(saddr, &rt1->rt6i_gateway)) {
  738. dst_clone(&rt1->u.dst);
  739. dst_release(&rt->u.dst);
  740. read_unlock(&rt6_lock);
  741. rt = rt1;
  742. goto source_ok;
  743. }
  744. }
  745. read_unlock(&rt6_lock);
  746. }
  747. if (net_ratelimit())
  748. printk(KERN_DEBUG "rt6_redirect: source isn't a valid nexthop "
  749.        "for redirect targetn");
  750. goto out;
  751. }
  752. source_ok:
  753. /*
  754.  * We have finally decided to accept it.
  755.  */
  756. nrt = ip6_rt_copy(rt);
  757. if (nrt == NULL)
  758. goto out;
  759. nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
  760. if (on_link)
  761. nrt->rt6i_flags &= ~RTF_GATEWAY;
  762. ipv6_addr_copy(&nrt->rt6i_dst.addr, dest);
  763. nrt->rt6i_dst.plen = 128;
  764. nrt->u.dst.flags |= DST_HOST;
  765. ipv6_addr_copy(&nrt->rt6i_gateway, (struct in6_addr*)neigh->primary_key);
  766. nrt->rt6i_nexthop = neigh_clone(neigh);
  767. /* Reset pmtu, it may be better */
  768. nrt->u.dst.pmtu = ipv6_get_mtu(neigh->dev);
  769. nrt->u.dst.advmss = max_t(unsigned int, nrt->u.dst.pmtu - 60, ip6_rt_min_advmss);
  770. if (rt->u.dst.advmss > 65535-20)
  771. rt->u.dst.advmss = 65535;
  772. nrt->rt6i_hoplimit = ipv6_get_hoplimit(neigh->dev);
  773. if (rt6_ins(nrt))
  774. goto out;
  775. if (rt->rt6i_flags&RTF_CACHE) {
  776. ip6_del_rt(rt);
  777. return;
  778. }
  779. out:
  780.         dst_release(&rt->u.dst);
  781. return;
  782. }
  783. /*
  784.  * Handle ICMP "packet too big" messages
  785.  * i.e. Path MTU discovery
  786.  */
  787. void rt6_pmtu_discovery(struct in6_addr *daddr, struct in6_addr *saddr,
  788. struct net_device *dev, u32 pmtu)
  789. {
  790. struct rt6_info *rt, *nrt;
  791. if (pmtu < IPV6_MIN_MTU) {
  792. if (net_ratelimit())
  793. printk(KERN_DEBUG "rt6_pmtu_discovery: invalid MTU value %dn",
  794.        pmtu);
  795. return;
  796. }
  797. rt = rt6_lookup(daddr, saddr, dev->ifindex, 0);
  798. if (rt == NULL)
  799. return;
  800. if (pmtu >= rt->u.dst.pmtu)
  801. goto out;
  802. /* New mtu received -> path was valid.
  803.    They are sent only in response to data packets,
  804.    so that this nexthop apparently is reachable. --ANK
  805.  */
  806. dst_confirm(&rt->u.dst);
  807. /* Host route. If it is static, it would be better
  808.    not to override it, but add new one, so that
  809.    when cache entry will expire old pmtu
  810.    would return automatically.
  811.  */
  812. if (rt->rt6i_flags & RTF_CACHE) {
  813. rt->u.dst.pmtu = pmtu;
  814. dst_set_expires(&rt->u.dst, ip6_rt_mtu_expires);
  815. rt->rt6i_flags |= RTF_MODIFIED|RTF_EXPIRES;
  816. goto out;
  817. }
  818. /* Network route.
  819.    Two cases are possible:
  820.    1. It is connected route. Action: COW
  821.    2. It is gatewayed route or NONEXTHOP route. Action: clone it.
  822.  */
  823. if (!rt->rt6i_nexthop && !(rt->rt6i_flags & RTF_NONEXTHOP)) {
  824. nrt = rt6_cow(rt, daddr, saddr);
  825. if (!nrt->u.dst.error) {
  826. nrt->u.dst.pmtu = pmtu;
  827. dst_set_expires(&rt->u.dst, ip6_rt_mtu_expires);
  828. nrt->rt6i_flags |= RTF_DYNAMIC|RTF_EXPIRES;
  829. dst_release(&nrt->u.dst);
  830. }
  831. } else {
  832. nrt = ip6_rt_copy(rt);
  833. if (nrt == NULL)
  834. goto out;
  835. ipv6_addr_copy(&nrt->rt6i_dst.addr, daddr);
  836. nrt->rt6i_dst.plen = 128;
  837. nrt->u.dst.flags |= DST_HOST;
  838. nrt->rt6i_nexthop = neigh_clone(rt->rt6i_nexthop);
  839. dst_set_expires(&rt->u.dst, ip6_rt_mtu_expires);
  840. nrt->rt6i_flags |= RTF_DYNAMIC|RTF_CACHE|RTF_EXPIRES;
  841. nrt->u.dst.pmtu = pmtu;
  842. rt6_ins(nrt);
  843. }
  844. out:
  845. dst_release(&rt->u.dst);
  846. }
  847. /*
  848.  * Misc support functions
  849.  */
  850. static struct rt6_info * ip6_rt_copy(struct rt6_info *ort)
  851. {
  852. struct rt6_info *rt;
  853. rt = dst_alloc(&ip6_dst_ops);
  854. if (rt) {
  855. rt->u.dst.input = ort->u.dst.input;
  856. rt->u.dst.output = ort->u.dst.output;
  857. memcpy(&rt->u.dst.mxlock, &ort->u.dst.mxlock, RTAX_MAX*sizeof(unsigned));
  858. rt->u.dst.dev = ort->u.dst.dev;
  859. if (rt->u.dst.dev)
  860. dev_hold(rt->u.dst.dev);
  861. rt->u.dst.lastuse = jiffies;
  862. rt->rt6i_hoplimit = ort->rt6i_hoplimit;
  863. rt->rt6i_expires = 0;
  864. ipv6_addr_copy(&rt->rt6i_gateway, &ort->rt6i_gateway);
  865. rt->rt6i_flags = ort->rt6i_flags & ~RTF_EXPIRES;
  866. rt->rt6i_metric = 0;
  867. memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
  868. #ifdef CONFIG_IPV6_SUBTREES
  869. memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
  870. #endif
  871. }
  872. return rt;
  873. }
  874. struct rt6_info *rt6_get_dflt_router(struct in6_addr *addr, struct net_device *dev)
  875. {
  876. struct rt6_info *rt;
  877. struct fib6_node *fn;
  878. fn = &ip6_routing_table;
  879. write_lock_bh(&rt6_lock);
  880. for (rt = fn->leaf; rt; rt=rt->u.next) {
  881. if (dev == rt->rt6i_dev &&
  882.     ipv6_addr_cmp(&rt->rt6i_gateway, addr) == 0)
  883. break;
  884. }
  885. if (rt)
  886. dst_clone(&rt->u.dst);
  887. write_unlock_bh(&rt6_lock);
  888. return rt;
  889. }
  890. struct rt6_info *rt6_add_dflt_router(struct in6_addr *gwaddr,
  891.      struct net_device *dev)
  892. {
  893. struct in6_rtmsg rtmsg;
  894. memset(&rtmsg, 0, sizeof(struct in6_rtmsg));
  895. rtmsg.rtmsg_type = RTMSG_NEWROUTE;
  896. ipv6_addr_copy(&rtmsg.rtmsg_gateway, gwaddr);
  897. rtmsg.rtmsg_metric = 1024;
  898. rtmsg.rtmsg_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT | RTF_UP;
  899. rtmsg.rtmsg_ifindex = dev->ifindex;
  900. ip6_route_add(&rtmsg);
  901. return rt6_get_dflt_router(gwaddr, dev);
  902. }
  903. void rt6_purge_dflt_routers(int last_resort)
  904. {
  905. struct rt6_info *rt;
  906. u32 flags;
  907. if (last_resort)
  908. flags = RTF_ALLONLINK;
  909. else
  910. flags = RTF_DEFAULT | RTF_ADDRCONF;
  911. restart:
  912. read_lock_bh(&rt6_lock);
  913. for (rt = ip6_routing_table.leaf; rt; rt = rt->u.next) {
  914. if (rt->rt6i_flags & flags) {
  915. dst_hold(&rt->u.dst);
  916. spin_lock_bh(&rt6_dflt_lock);
  917. rt6_dflt_pointer = NULL;
  918. spin_unlock_bh(&rt6_dflt_lock);
  919. read_unlock_bh(&rt6_lock);
  920. ip6_del_rt(rt);
  921. goto restart;
  922. }
  923. }
  924. read_unlock_bh(&rt6_lock);
  925. }
  926. int ipv6_route_ioctl(unsigned int cmd, void *arg)
  927. {
  928. struct in6_rtmsg rtmsg;
  929. int err;
  930. switch(cmd) {
  931. case SIOCADDRT: /* Add a route */
  932. case SIOCDELRT: /* Delete a route */
  933. if (!capable(CAP_NET_ADMIN))
  934. return -EPERM;
  935. err = copy_from_user(&rtmsg, arg,
  936.      sizeof(struct in6_rtmsg));
  937. if (err)
  938. return -EFAULT;
  939. rtnl_lock();
  940. switch (cmd) {
  941. case SIOCADDRT:
  942. err = ip6_route_add(&rtmsg);
  943. break;
  944. case SIOCDELRT:
  945. err = ip6_route_del(&rtmsg);
  946. break;
  947. default:
  948. err = -EINVAL;
  949. }
  950. rtnl_unlock();
  951. return err;
  952. };
  953. return -EINVAL;
  954. }
  955. /*
  956.  * Drop the packet on the floor
  957.  */
  958. int ip6_pkt_discard(struct sk_buff *skb)
  959. {
  960. IP6_INC_STATS(Ip6OutNoRoutes);
  961. icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0, skb->dev);
  962. kfree_skb(skb);
  963. return 0;
  964. }
  965. /*
  966.  * Add address
  967.  */
  968. int ip6_rt_addr_add(struct in6_addr *addr, struct net_device *dev)
  969. {
  970. struct rt6_info *rt;
  971. rt = dst_alloc(&ip6_dst_ops);
  972. if (rt == NULL)
  973. return -ENOMEM;
  974. rt->u.dst.flags = DST_HOST;
  975. rt->u.dst.input = ip6_input;
  976. rt->u.dst.output = ip6_output;
  977. rt->rt6i_dev = dev_get_by_name("lo");
  978. rt->u.dst.pmtu = ipv6_get_mtu(rt->rt6i_dev);
  979. rt->u.dst.advmss = max_t(unsigned int, rt->u.dst.pmtu - 60, ip6_rt_min_advmss);
  980. if (rt->u.dst.advmss > 65535-20)
  981. rt->u.dst.advmss = 65535;
  982. rt->rt6i_hoplimit = ipv6_get_hoplimit(rt->rt6i_dev);
  983. rt->u.dst.obsolete = -1;
  984. rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
  985. rt->rt6i_nexthop = ndisc_get_neigh(rt->rt6i_dev, &rt->rt6i_gateway);
  986. if (rt->rt6i_nexthop == NULL) {
  987. dst_free((struct dst_entry *) rt);
  988. return -ENOMEM;
  989. }
  990. ipv6_addr_copy(&rt->rt6i_dst.addr, addr);
  991. rt->rt6i_dst.plen = 128;
  992. rt6_ins(rt);
  993. return 0;
  994. }
  995. /* Delete address. Warning: you should check that this address
  996.    disappeared before calling this function.
  997.  */
  998. int ip6_rt_addr_del(struct in6_addr *addr, struct net_device *dev)
  999. {
  1000. struct rt6_info *rt;
  1001. int err = -ENOENT;
  1002. rt = rt6_lookup(addr, NULL, loopback_dev.ifindex, 1);
  1003. if (rt) {
  1004. if (rt->rt6i_dst.plen == 128)
  1005. err = ip6_del_rt(rt);
  1006. else
  1007. dst_release(&rt->u.dst);
  1008. }
  1009. return err;
  1010. }
  1011. #ifdef CONFIG_RT6_POLICY
  1012. static int rt6_flow_match_in(struct rt6_info *rt, struct sk_buff *skb)
  1013. {
  1014. struct flow_filter *frule;
  1015. struct pkt_filter *filter;
  1016. int res = 1;
  1017. if ((frule = rt->rt6i_filter) == NULL)
  1018. goto out;
  1019. if (frule->type != FLR_INPUT) {
  1020. res = 0;
  1021. goto out;
  1022. }
  1023. for (filter = frule->u.filter; filter; filter = filter->next) {
  1024. __u32 *word;
  1025. word = (__u32 *) skb->h.raw;
  1026. word += filter->offset;
  1027. if ((*word ^ filter->value) & filter->mask) {
  1028. res = 0;
  1029. break;
  1030. }
  1031. }
  1032. out:
  1033. return res;
  1034. }
  1035. static int rt6_flow_match_out(struct rt6_info *rt, struct sock *sk)
  1036. {
  1037. struct flow_filter *frule;
  1038. int res = 1;
  1039. if ((frule = rt->rt6i_filter) == NULL)
  1040. goto out;
  1041. if (frule->type != FLR_INPUT) {
  1042. res = 0;
  1043. goto out;
  1044. }
  1045. if (frule->u.sk != sk)
  1046. res = 0;
  1047. out:
  1048. return res;
  1049. }
  1050. static struct rt6_info *rt6_flow_lookup(struct rt6_info *rt,
  1051. struct in6_addr *daddr,
  1052. struct in6_addr *saddr,
  1053. struct fl_acc_args *args)
  1054. {
  1055. struct flow_rule *frule;
  1056. struct rt6_info *nrt = NULL;
  1057. struct pol_chain *pol;
  1058. for (pol = rt6_pol_list; pol; pol = pol->next) {
  1059. struct fib6_node *fn;
  1060. struct rt6_info *sprt;
  1061. fn = fib6_lookup(pol->rules, daddr, saddr);
  1062. do {
  1063. for (sprt = fn->leaf; sprt; sprt=sprt->u.next) {
  1064. int res;
  1065. frule = sprt->rt6i_flowr;
  1066. #if RT6_DEBUG >= 2
  1067. if (frule == NULL) {
  1068. printk(KERN_DEBUG "NULL flowrn");
  1069. goto error;
  1070. }
  1071. #endif
  1072. res = frule->ops->accept(rt, sprt, args, &nrt);
  1073. switch (res) {
  1074. case FLOWR_SELECT:
  1075. goto found;
  1076. case FLOWR_CLEAR:
  1077. goto next_policy;
  1078. case FLOWR_NODECISION:
  1079. break;
  1080. default:
  1081. goto error;
  1082. };
  1083. }
  1084. fn = fn->parent;
  1085. } while ((fn->fn_flags & RTN_TL_ROOT) == 0);
  1086. next_policy:
  1087. }
  1088. error:
  1089. dst_clone(&ip6_null_entry.u.dst);
  1090. return &ip6_null_entry;
  1091. found:
  1092. if (nrt == NULL)
  1093. goto error;
  1094. nrt->rt6i_flags |= RTF_CACHE;
  1095. dst_clone(&nrt->u.dst);
  1096. err = rt6_ins(nrt);
  1097. if (err)
  1098. nrt->u.dst.error = err;
  1099. return nrt;
  1100. }
  1101. #endif
  1102. static int fib6_ifdown(struct rt6_info *rt, void *arg)
  1103. {
  1104. if (((void*)rt->rt6i_dev == arg || arg == NULL) &&
  1105.     rt != &ip6_null_entry) {
  1106. RT6_TRACE("deleted by ifdown %pn", rt);
  1107. return -1;
  1108. }
  1109. return 0;
  1110. }
  1111. void rt6_ifdown(struct net_device *dev)
  1112. {
  1113. write_lock_bh(&rt6_lock);
  1114. fib6_clean_tree(&ip6_routing_table, fib6_ifdown, 0, dev);
  1115. write_unlock_bh(&rt6_lock);
  1116. }
  1117. struct rt6_mtu_change_arg
  1118. {
  1119. struct net_device *dev;
  1120. unsigned mtu;
  1121. };
  1122. static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
  1123. {
  1124. struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
  1125. /* In IPv6 pmtu discovery is not optional,
  1126.    so that RTAX_MTU lock cannot disable it.
  1127.    We still use this lock to block changes
  1128.    caused by addrconf/ndisc.
  1129. */
  1130. if (rt->rt6i_dev == arg->dev &&
  1131.     rt->u.dst.pmtu > arg->mtu &&
  1132.     !(rt->u.dst.mxlock&(1<<RTAX_MTU)))
  1133. rt->u.dst.pmtu = arg->mtu;
  1134. rt->u.dst.advmss = max_t(unsigned int, arg->mtu - 60, ip6_rt_min_advmss);
  1135. if (rt->u.dst.advmss > 65535-20)
  1136. rt->u.dst.advmss = 65535;
  1137. return 0;
  1138. }
  1139. void rt6_mtu_change(struct net_device *dev, unsigned mtu)
  1140. {
  1141. struct rt6_mtu_change_arg arg;
  1142. arg.dev = dev;
  1143. arg.mtu = mtu;
  1144. read_lock_bh(&rt6_lock);
  1145. fib6_clean_tree(&ip6_routing_table, rt6_mtu_change_route, 0, &arg);
  1146. read_unlock_bh(&rt6_lock);
  1147. }
  1148. static int inet6_rtm_to_rtmsg(struct rtmsg *r, struct rtattr **rta,
  1149.       struct in6_rtmsg *rtmsg)
  1150. {
  1151. memset(rtmsg, 0, sizeof(*rtmsg));
  1152. rtmsg->rtmsg_dst_len = r->rtm_dst_len;
  1153. rtmsg->rtmsg_src_len = r->rtm_src_len;
  1154. rtmsg->rtmsg_flags = RTF_UP;
  1155. if (r->rtm_type == RTN_UNREACHABLE)
  1156. rtmsg->rtmsg_flags |= RTF_REJECT;
  1157. if (rta[RTA_GATEWAY-1]) {
  1158. if (rta[RTA_GATEWAY-1]->rta_len != RTA_LENGTH(16))
  1159. return -EINVAL;
  1160. memcpy(&rtmsg->rtmsg_gateway, RTA_DATA(rta[RTA_GATEWAY-1]), 16);
  1161. rtmsg->rtmsg_flags |= RTF_GATEWAY;
  1162. }
  1163. if (rta[RTA_DST-1]) {
  1164. if (RTA_PAYLOAD(rta[RTA_DST-1]) < ((r->rtm_dst_len+7)>>3))
  1165. return -EINVAL;
  1166. memcpy(&rtmsg->rtmsg_dst, RTA_DATA(rta[RTA_DST-1]), ((r->rtm_dst_len+7)>>3));
  1167. }
  1168. if (rta[RTA_SRC-1]) {
  1169. if (RTA_PAYLOAD(rta[RTA_SRC-1]) < ((r->rtm_src_len+7)>>3))
  1170. return -EINVAL;
  1171. memcpy(&rtmsg->rtmsg_src, RTA_DATA(rta[RTA_SRC-1]), ((r->rtm_src_len+7)>>3));
  1172. }
  1173. if (rta[RTA_OIF-1]) {
  1174. if (rta[RTA_OIF-1]->rta_len != RTA_LENGTH(sizeof(int)))
  1175. return -EINVAL;
  1176. memcpy(&rtmsg->rtmsg_ifindex, RTA_DATA(rta[RTA_OIF-1]), sizeof(int));
  1177. }
  1178. if (rta[RTA_PRIORITY-1]) {
  1179. if (rta[RTA_PRIORITY-1]->rta_len != RTA_LENGTH(4))
  1180. return -EINVAL;
  1181. memcpy(&rtmsg->rtmsg_metric, RTA_DATA(rta[RTA_PRIORITY-1]), 4);
  1182. }
  1183. return 0;
  1184. }
  1185. int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
  1186. {
  1187. struct rtmsg *r = NLMSG_DATA(nlh);
  1188. struct in6_rtmsg rtmsg;
  1189. if (inet6_rtm_to_rtmsg(r, arg, &rtmsg))
  1190. return -EINVAL;
  1191. return ip6_route_del(&rtmsg);
  1192. }
  1193. int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
  1194. {
  1195. struct rtmsg *r = NLMSG_DATA(nlh);
  1196. struct in6_rtmsg rtmsg;
  1197. if (inet6_rtm_to_rtmsg(r, arg, &rtmsg))
  1198. return -EINVAL;
  1199. return ip6_route_add(&rtmsg);
  1200. }
  1201. struct rt6_rtnl_dump_arg
  1202. {
  1203. struct sk_buff *skb;
  1204. struct netlink_callback *cb;
  1205. };
  1206. static int rt6_fill_node(struct sk_buff *skb, struct rt6_info *rt,
  1207.  struct in6_addr *dst,
  1208.  struct in6_addr *src,
  1209.  int iif,
  1210.  int type, u32 pid, u32 seq)
  1211. {
  1212. struct rtmsg *rtm;
  1213. struct nlmsghdr  *nlh;
  1214. unsigned char  *b = skb->tail;
  1215. struct rta_cacheinfo ci;
  1216. nlh = NLMSG_PUT(skb, pid, seq, type, sizeof(*rtm));
  1217. rtm = NLMSG_DATA(nlh);
  1218. rtm->rtm_family = AF_INET6;
  1219. rtm->rtm_dst_len = rt->rt6i_dst.plen;
  1220. rtm->rtm_src_len = rt->rt6i_src.plen;
  1221. rtm->rtm_tos = 0;
  1222. rtm->rtm_table = RT_TABLE_MAIN;
  1223. if (rt->rt6i_flags&RTF_REJECT)
  1224. rtm->rtm_type = RTN_UNREACHABLE;
  1225. else if (rt->rt6i_dev && (rt->rt6i_dev->flags&IFF_LOOPBACK))
  1226. rtm->rtm_type = RTN_LOCAL;
  1227. else
  1228. rtm->rtm_type = RTN_UNICAST;
  1229. rtm->rtm_flags = 0;
  1230. rtm->rtm_scope = RT_SCOPE_UNIVERSE;
  1231. rtm->rtm_protocol = RTPROT_BOOT;
  1232. if (rt->rt6i_flags&RTF_DYNAMIC)
  1233. rtm->rtm_protocol = RTPROT_REDIRECT;
  1234. else if (rt->rt6i_flags&(RTF_ADDRCONF|RTF_ALLONLINK))
  1235. rtm->rtm_protocol = RTPROT_KERNEL;
  1236. else if (rt->rt6i_flags&RTF_DEFAULT)
  1237. rtm->rtm_protocol = RTPROT_RA;
  1238. if (rt->rt6i_flags&RTF_CACHE)
  1239. rtm->rtm_flags |= RTM_F_CLONED;
  1240. if (dst) {
  1241. RTA_PUT(skb, RTA_DST, 16, dst);
  1242.         rtm->rtm_dst_len = 128;
  1243. } else if (rtm->rtm_dst_len)
  1244. RTA_PUT(skb, RTA_DST, 16, &rt->rt6i_dst.addr);
  1245. #ifdef CONFIG_IPV6_SUBTREES
  1246. if (src) {
  1247. RTA_PUT(skb, RTA_SRC, 16, src);
  1248.         rtm->rtm_src_len = 128;
  1249. } else if (rtm->rtm_src_len)
  1250. RTA_PUT(skb, RTA_SRC, 16, &rt->rt6i_src.addr);
  1251. #endif
  1252. if (iif)
  1253. RTA_PUT(skb, RTA_IIF, 4, &iif);
  1254. else if (dst) {
  1255. struct in6_addr saddr_buf;
  1256. if (ipv6_get_saddr(&rt->u.dst, dst, &saddr_buf) == 0)
  1257. RTA_PUT(skb, RTA_PREFSRC, 16, &saddr_buf);
  1258. }
  1259. if (rtnetlink_put_metrics(skb, &rt->u.dst.mxlock) < 0)
  1260. goto rtattr_failure;
  1261. if (rt->u.dst.neighbour)
  1262. RTA_PUT(skb, RTA_GATEWAY, 16, &rt->u.dst.neighbour->primary_key);
  1263. if (rt->u.dst.dev)
  1264. RTA_PUT(skb, RTA_OIF, sizeof(int), &rt->rt6i_dev->ifindex);
  1265. RTA_PUT(skb, RTA_PRIORITY, 4, &rt->rt6i_metric);
  1266. ci.rta_lastuse = jiffies - rt->u.dst.lastuse;
  1267. if (rt->rt6i_expires)
  1268. ci.rta_expires = rt->rt6i_expires - jiffies;
  1269. else
  1270. ci.rta_expires = 0;
  1271. ci.rta_used = rt->u.dst.__use;
  1272. ci.rta_clntref = atomic_read(&rt->u.dst.__refcnt);
  1273. ci.rta_error = rt->u.dst.error;
  1274. ci.rta_id = 0;
  1275. ci.rta_ts = 0;
  1276. ci.rta_tsage = 0;
  1277. RTA_PUT(skb, RTA_CACHEINFO, sizeof(ci), &ci);
  1278. nlh->nlmsg_len = skb->tail - b;
  1279. return skb->len;
  1280. nlmsg_failure:
  1281. rtattr_failure:
  1282. skb_trim(skb, b - skb->data);
  1283. return -1;
  1284. }
  1285. static int rt6_dump_route(struct rt6_info *rt, void *p_arg)
  1286. {
  1287. struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
  1288. return rt6_fill_node(arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
  1289.      NETLINK_CB(arg->cb->skb).pid, arg->cb->nlh->nlmsg_seq);
  1290. }
  1291. static int fib6_dump_node(struct fib6_walker_t *w)
  1292. {
  1293. int res;
  1294. struct rt6_info *rt;
  1295. for (rt = w->leaf; rt; rt = rt->u.next) {
  1296. res = rt6_dump_route(rt, w->args);
  1297. if (res < 0) {
  1298. /* Frame is full, suspend walking */
  1299. w->leaf = rt;
  1300. return 1;
  1301. }
  1302. BUG_TRAP(res!=0);
  1303. }
  1304. w->leaf = NULL;
  1305. return 0;
  1306. }
  1307. static void fib6_dump_end(struct netlink_callback *cb)
  1308. {
  1309. struct fib6_walker_t *w = (void*)cb->args[0];
  1310. if (w) {
  1311. cb->args[0] = 0;
  1312. fib6_walker_unlink(w);
  1313. kfree(w);
  1314. }
  1315. if (cb->args[1]) {
  1316. cb->done = (void*)cb->args[1];
  1317. cb->args[1] = 0;
  1318. }
  1319. }
  1320. static int fib6_dump_done(struct netlink_callback *cb)
  1321. {
  1322. fib6_dump_end(cb);
  1323. return cb->done(cb);
  1324. }
  1325. int inet6_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
  1326. {
  1327. struct rt6_rtnl_dump_arg arg;
  1328. struct fib6_walker_t *w;
  1329. int res;
  1330. arg.skb = skb;
  1331. arg.cb = cb;
  1332. w = (void*)cb->args[0];
  1333. if (w == NULL) {
  1334. /* New dump:
  1335.  * 
  1336.  * 1. hook callback destructor.
  1337.  */
  1338. cb->args[1] = (long)cb->done;
  1339. cb->done = fib6_dump_done;
  1340. /*
  1341.  * 2. allocate and initialize walker.
  1342.  */
  1343. w = kmalloc(sizeof(*w), GFP_ATOMIC);
  1344. if (w == NULL)
  1345. return -ENOMEM;
  1346. RT6_TRACE("dump<%p", w);
  1347. memset(w, 0, sizeof(*w));
  1348. w->root = &ip6_routing_table;
  1349. w->func = fib6_dump_node;
  1350. w->args = &arg;
  1351. cb->args[0] = (long)w;
  1352. read_lock_bh(&rt6_lock);
  1353. res = fib6_walk(w);
  1354. read_unlock_bh(&rt6_lock);
  1355. } else {
  1356. w->args = &arg;
  1357. read_lock_bh(&rt6_lock);
  1358. res = fib6_walk_continue(w);
  1359. read_unlock_bh(&rt6_lock);
  1360. }
  1361. #if RT6_DEBUG >= 3
  1362. if (res <= 0 && skb->len == 0)
  1363. RT6_TRACE("%p>dump endn", w);
  1364. #endif
  1365. res = res < 0 ? res : skb->len;
  1366. /* res < 0 is an error. (really, impossible)
  1367.    res == 0 means that dump is complete, but skb still can contain data.
  1368.    res > 0 dump is not complete, but frame is full.
  1369.  */
  1370. /* Destroy walker, if dump of this table is complete. */
  1371. if (res <= 0)
  1372. fib6_dump_end(cb);
  1373. return res;
  1374. }
  1375. int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
  1376. {
  1377. struct rtattr **rta = arg;
  1378. int iif = 0;
  1379. int err;
  1380. struct sk_buff *skb;
  1381. struct flowi fl;
  1382. struct rt6_info *rt;
  1383. skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
  1384. if (skb == NULL)
  1385. return -ENOBUFS;
  1386. /* Reserve room for dummy headers, this skb can pass
  1387.    through good chunk of routing engine.
  1388.  */
  1389. skb->mac.raw = skb->data;
  1390. skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr));
  1391. fl.proto = 0;
  1392. fl.nl_u.ip6_u.daddr = NULL;
  1393. fl.nl_u.ip6_u.saddr = NULL;
  1394. fl.uli_u.icmpt.type = 0;
  1395. fl.uli_u.icmpt.code = 0;
  1396. if (rta[RTA_SRC-1])
  1397. fl.nl_u.ip6_u.saddr = (struct in6_addr*)RTA_DATA(rta[RTA_SRC-1]);
  1398. if (rta[RTA_DST-1])
  1399. fl.nl_u.ip6_u.daddr = (struct in6_addr*)RTA_DATA(rta[RTA_DST-1]);
  1400. if (rta[RTA_IIF-1])
  1401. memcpy(&iif, RTA_DATA(rta[RTA_IIF-1]), sizeof(int));
  1402. if (iif) {
  1403. struct net_device *dev;
  1404. dev = __dev_get_by_index(iif);
  1405. if (!dev)
  1406. return -ENODEV;
  1407. }
  1408. fl.oif = 0;
  1409. if (rta[RTA_OIF-1])
  1410. memcpy(&fl.oif, RTA_DATA(rta[RTA_OIF-1]), sizeof(int));
  1411. rt = (struct rt6_info*)ip6_route_output(NULL, &fl);
  1412. skb->dst = &rt->u.dst;
  1413. NETLINK_CB(skb).dst_pid = NETLINK_CB(in_skb).pid;
  1414. err = rt6_fill_node(skb, rt, 
  1415.     fl.nl_u.ip6_u.daddr,
  1416.     fl.nl_u.ip6_u.saddr,
  1417.     iif,
  1418.     RTM_NEWROUTE, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq);
  1419. if (err < 0)
  1420. return -EMSGSIZE;
  1421. err = netlink_unicast(rtnl, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
  1422. if (err < 0)
  1423. return err;
  1424. return 0;
  1425. }
  1426. void inet6_rt_notify(int event, struct rt6_info *rt)
  1427. {
  1428. struct sk_buff *skb;
  1429. int size = NLMSG_SPACE(sizeof(struct rtmsg)+256);
  1430. skb = alloc_skb(size, gfp_any());
  1431. if (!skb) {
  1432. netlink_set_err(rtnl, 0, RTMGRP_IPV6_ROUTE, ENOBUFS);
  1433. return;
  1434. }
  1435. if (rt6_fill_node(skb, rt, NULL, NULL, 0, event, 0, 0) < 0) {
  1436. kfree_skb(skb);
  1437. netlink_set_err(rtnl, 0, RTMGRP_IPV6_ROUTE, EINVAL);
  1438. return;
  1439. }
  1440. NETLINK_CB(skb).dst_groups = RTMGRP_IPV6_ROUTE;
  1441. netlink_broadcast(rtnl, skb, 0, RTMGRP_IPV6_ROUTE, gfp_any());
  1442. }
  1443. /*
  1444.  * /proc
  1445.  */
  1446. #ifdef CONFIG_PROC_FS
  1447. #define RT6_INFO_LEN (32 + 4 + 32 + 4 + 32 + 40 + 5 + 1)
  1448. struct rt6_proc_arg
  1449. {
  1450. char *buffer;
  1451. int offset;
  1452. int length;
  1453. int skip;
  1454. int len;
  1455. };
  1456. static int rt6_info_route(struct rt6_info *rt, void *p_arg)
  1457. {
  1458. struct rt6_proc_arg *arg = (struct rt6_proc_arg *) p_arg;
  1459. int i;
  1460. if (arg->skip < arg->offset / RT6_INFO_LEN) {
  1461. arg->skip++;
  1462. return 0;
  1463. }
  1464. if (arg->len >= arg->length)
  1465. return 0;
  1466. for (i=0; i<16; i++) {
  1467. sprintf(arg->buffer + arg->len, "%02x",
  1468. rt->rt6i_dst.addr.s6_addr[i]);
  1469. arg->len += 2;
  1470. }
  1471. arg->len += sprintf(arg->buffer + arg->len, " %02x ",
  1472.     rt->rt6i_dst.plen);
  1473. #ifdef CONFIG_IPV6_SUBTREES
  1474. for (i=0; i<16; i++) {
  1475. sprintf(arg->buffer + arg->len, "%02x",
  1476. rt->rt6i_src.addr.s6_addr[i]);
  1477. arg->len += 2;
  1478. }
  1479. arg->len += sprintf(arg->buffer + arg->len, " %02x ",
  1480.     rt->rt6i_src.plen);
  1481. #else
  1482. sprintf(arg->buffer + arg->len,
  1483. "00000000000000000000000000000000 00 ");
  1484. arg->len += 36;
  1485. #endif
  1486. if (rt->rt6i_nexthop) {
  1487. for (i=0; i<16; i++) {
  1488. sprintf(arg->buffer + arg->len, "%02x",
  1489. rt->rt6i_nexthop->primary_key[i]);
  1490. arg->len += 2;
  1491. }
  1492. } else {
  1493. sprintf(arg->buffer + arg->len,
  1494. "00000000000000000000000000000000");
  1495. arg->len += 32;
  1496. }
  1497. arg->len += sprintf(arg->buffer + arg->len,
  1498.     " %08x %08x %08x %08x %8sn",
  1499.     rt->rt6i_metric, atomic_read(&rt->u.dst.__refcnt),
  1500.     rt->u.dst.__use, rt->rt6i_flags, 
  1501.     rt->rt6i_dev ? rt->rt6i_dev->name : "");
  1502. return 0;
  1503. }
  1504. static int rt6_proc_info(char *buffer, char **start, off_t offset, int length)
  1505. {
  1506. struct rt6_proc_arg arg;
  1507. arg.buffer = buffer;
  1508. arg.offset = offset;
  1509. arg.length = length;
  1510. arg.skip = 0;
  1511. arg.len = 0;
  1512. read_lock_bh(&rt6_lock);
  1513. fib6_clean_tree(&ip6_routing_table, rt6_info_route, 0, &arg);
  1514. read_unlock_bh(&rt6_lock);
  1515. *start = buffer;
  1516. if (offset)
  1517. *start += offset % RT6_INFO_LEN;
  1518. arg.len -= offset % RT6_INFO_LEN;
  1519. if (arg.len > length)
  1520. arg.len = length;
  1521. if (arg.len < 0)
  1522. arg.len = 0;
  1523. return arg.len;
  1524. }
  1525. extern struct rt6_statistics rt6_stats;
  1526. static int rt6_proc_stats(char *buffer, char **start, off_t offset, int length)
  1527. {
  1528. int len;
  1529. len = sprintf(buffer, "%04x %04x %04x %04x %04x %04xn",
  1530.       rt6_stats.fib_nodes, rt6_stats.fib_route_nodes,
  1531.       rt6_stats.fib_rt_alloc, rt6_stats.fib_rt_entries,
  1532.       rt6_stats.fib_rt_cache,
  1533.       atomic_read(&ip6_dst_ops.entries));
  1534. len -= offset;
  1535. if (len > length)
  1536. len = length;
  1537. if(len < 0)
  1538. len = 0;
  1539. *start = buffer + offset;
  1540. return len;
  1541. }
  1542. #endif /* CONFIG_PROC_FS */
  1543. #ifdef CONFIG_SYSCTL
  1544. static int flush_delay;
  1545. static
  1546. int ipv6_sysctl_rtcache_flush(ctl_table *ctl, int write, struct file * filp,
  1547.       void *buffer, size_t *lenp)
  1548. {
  1549. if (write) {
  1550. proc_dointvec(ctl, write, filp, buffer, lenp);
  1551. if (flush_delay < 0)
  1552. flush_delay = 0;
  1553. fib6_run_gc((unsigned long)flush_delay);
  1554. return 0;
  1555. } else
  1556. return -EINVAL;
  1557. }
  1558. ctl_table ipv6_route_table[] = {
  1559.         {NET_IPV6_ROUTE_FLUSH, "flush",
  1560.          &flush_delay, sizeof(int), 0644, NULL,
  1561.          &ipv6_sysctl_rtcache_flush},
  1562. {NET_IPV6_ROUTE_GC_THRESH, "gc_thresh",
  1563.          &ip6_dst_ops.gc_thresh, sizeof(int), 0644, NULL,
  1564.          &proc_dointvec},
  1565. {NET_IPV6_ROUTE_MAX_SIZE, "max_size",
  1566.          &ip6_rt_max_size, sizeof(int), 0644, NULL,
  1567.          &proc_dointvec},
  1568. {NET_IPV6_ROUTE_GC_MIN_INTERVAL, "gc_min_interval",
  1569.          &ip6_rt_gc_min_interval, sizeof(int), 0644, NULL,
  1570.          &proc_dointvec_jiffies, &sysctl_jiffies},
  1571. {NET_IPV6_ROUTE_GC_TIMEOUT, "gc_timeout",
  1572.          &ip6_rt_gc_timeout, sizeof(int), 0644, NULL,
  1573.          &proc_dointvec_jiffies, &sysctl_jiffies},
  1574. {NET_IPV6_ROUTE_GC_INTERVAL, "gc_interval",
  1575.          &ip6_rt_gc_interval, sizeof(int), 0644, NULL,
  1576.          &proc_dointvec_jiffies, &sysctl_jiffies},
  1577. {NET_IPV6_ROUTE_GC_ELASTICITY, "gc_elasticity",
  1578.          &ip6_rt_gc_elasticity, sizeof(int), 0644, NULL,
  1579.          &proc_dointvec_jiffies, &sysctl_jiffies},
  1580. {NET_IPV6_ROUTE_MTU_EXPIRES, "mtu_expires",
  1581.          &ip6_rt_mtu_expires, sizeof(int), 0644, NULL,
  1582.          &proc_dointvec_jiffies, &sysctl_jiffies},
  1583. {NET_IPV6_ROUTE_MIN_ADVMSS, "min_adv_mss",
  1584.          &ip6_rt_min_advmss, sizeof(int), 0644, NULL,
  1585.          &proc_dointvec_jiffies, &sysctl_jiffies},
  1586.  {0}
  1587. };
  1588. #endif
  1589. void __init ip6_route_init(void)
  1590. {
  1591. ip6_dst_ops.kmem_cachep = kmem_cache_create("ip6_dst_cache",
  1592.      sizeof(struct rt6_info),
  1593.      0, SLAB_HWCACHE_ALIGN,
  1594.      NULL, NULL);
  1595. fib6_init();
  1596. #ifdef  CONFIG_PROC_FS
  1597. proc_net_create("ipv6_route", 0, rt6_proc_info);
  1598. proc_net_create("rt6_stats", 0, rt6_proc_stats);
  1599. #endif
  1600. }
  1601. #ifdef MODULE
  1602. void ip6_route_cleanup(void)
  1603. {
  1604. #ifdef CONFIG_PROC_FS
  1605. proc_net_remove("ipv6_route");
  1606. proc_net_remove("rt6_stats");
  1607. #endif
  1608. rt6_ifdown(NULL);
  1609. fib6_gc_cleanup();
  1610. }
  1611. #endif /* MODULE */