Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Linux INET6 implementation |
| 3 | * FIB front-end. |
| 4 | * |
| 5 | * Authors: |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 6 | * Pedro Roque <roque@di.fc.ul.pt> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * as published by the Free Software Foundation; either version |
| 11 | * 2 of the License, or (at your option) any later version. |
| 12 | */ |
| 13 | |
| 14 | /* Changes: |
| 15 | * |
| 16 | * YOSHIFUJI Hideaki @USAGI |
| 17 | * reworked default router selection. |
| 18 | * - respect outgoing interface |
| 19 | * - select from (probably) reachable routers (i.e. |
| 20 | * routers in REACHABLE, STALE, DELAY or PROBE states). |
| 21 | * - always select the same router if it is (probably) |
| 22 | * reachable. otherwise, round-robin the list. |
YOSHIFUJI Hideaki | c0bece9 | 2006-08-23 17:23:25 -0700 | [diff] [blame] | 23 | * Ville Nuorvala |
| 24 | * Fixed routing subtrees. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | */ |
| 26 | |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 27 | #define pr_fmt(fmt) "IPv6: " fmt |
| 28 | |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 29 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/errno.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 31 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/types.h> |
| 33 | #include <linux/times.h> |
| 34 | #include <linux/socket.h> |
| 35 | #include <linux/sockios.h> |
| 36 | #include <linux/net.h> |
| 37 | #include <linux/route.h> |
| 38 | #include <linux/netdevice.h> |
| 39 | #include <linux/in6.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 40 | #include <linux/mroute6.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/if_arp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/proc_fs.h> |
| 44 | #include <linux/seq_file.h> |
Daniel Lezcano | 5b7c931 | 2008-03-03 23:28:58 -0800 | [diff] [blame] | 45 | #include <linux/nsproxy.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 46 | #include <linux/slab.h> |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 47 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <net/snmp.h> |
| 49 | #include <net/ipv6.h> |
| 50 | #include <net/ip6_fib.h> |
| 51 | #include <net/ip6_route.h> |
| 52 | #include <net/ndisc.h> |
| 53 | #include <net/addrconf.h> |
| 54 | #include <net/tcp.h> |
| 55 | #include <linux/rtnetlink.h> |
| 56 | #include <net/dst.h> |
| 57 | #include <net/xfrm.h> |
Tom Tucker | 8d71740 | 2006-07-30 20:43:36 -0700 | [diff] [blame] | 58 | #include <net/netevent.h> |
Thomas Graf | 21713eb | 2006-08-15 00:35:24 -0700 | [diff] [blame] | 59 | #include <net/netlink.h> |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 60 | #include <net/nexthop.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | #include <asm/uaccess.h> |
| 63 | |
| 64 | #ifdef CONFIG_SYSCTL |
| 65 | #include <linux/sysctl.h> |
| 66 | #endif |
| 67 | |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 68 | enum rt6_nud_state { |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 69 | RT6_NUD_FAIL_HARD = -3, |
| 70 | RT6_NUD_FAIL_PROBE = -2, |
| 71 | RT6_NUD_FAIL_DO_RR = -1, |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 72 | RT6_NUD_SUCCEED = 1 |
| 73 | }; |
| 74 | |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 75 | static struct rt6_info *ip6_rt_copy(struct rt6_info *ort, |
Eric Dumazet | 21efcfa | 2011-07-19 20:18:36 +0000 | [diff] [blame] | 76 | const struct in6_addr *dest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie); |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 78 | static unsigned int ip6_default_advmss(const struct dst_entry *dst); |
Steffen Klassert | ebb762f | 2011-11-23 02:12:51 +0000 | [diff] [blame] | 79 | static unsigned int ip6_mtu(const struct dst_entry *dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | static struct dst_entry *ip6_negative_advice(struct dst_entry *); |
| 81 | static void ip6_dst_destroy(struct dst_entry *); |
| 82 | static void ip6_dst_ifdown(struct dst_entry *, |
| 83 | struct net_device *dev, int how); |
Daniel Lezcano | 569d364 | 2008-01-18 03:56:57 -0800 | [diff] [blame] | 84 | static int ip6_dst_gc(struct dst_ops *ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
| 86 | static int ip6_pkt_discard(struct sk_buff *skb); |
Eric Dumazet | aad8872 | 2014-04-15 13:47:15 -0400 | [diff] [blame] | 87 | static int ip6_pkt_discard_out(struct sock *sk, struct sk_buff *skb); |
Kamala R | 7150aed | 2013-12-02 19:55:21 +0530 | [diff] [blame] | 88 | static int ip6_pkt_prohibit(struct sk_buff *skb); |
Eric Dumazet | aad8872 | 2014-04-15 13:47:15 -0400 | [diff] [blame] | 89 | static int ip6_pkt_prohibit_out(struct sock *sk, struct sk_buff *skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | static void ip6_link_failure(struct sk_buff *skb); |
David S. Miller | 6700c27 | 2012-07-17 03:29:28 -0700 | [diff] [blame] | 91 | static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk, |
| 92 | struct sk_buff *skb, u32 mtu); |
| 93 | static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, |
| 94 | struct sk_buff *skb); |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 95 | static void rt6_dst_from_metrics_check(struct rt6_info *rt); |
Nicolas Dichtel | 52bd4c0 | 2013-06-28 17:35:48 +0200 | [diff] [blame] | 96 | static int rt6_score_route(struct rt6_info *rt, int oif, int strict); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 98 | #ifdef CONFIG_IPV6_ROUTE_INFO |
Daniel Lezcano | efa2cea | 2008-03-04 13:46:48 -0800 | [diff] [blame] | 99 | static struct rt6_info *rt6_add_route_info(struct net *net, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 100 | const struct in6_addr *prefix, int prefixlen, |
| 101 | const struct in6_addr *gwaddr, int ifindex, |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 102 | unsigned int pref); |
Daniel Lezcano | efa2cea | 2008-03-04 13:46:48 -0800 | [diff] [blame] | 103 | static struct rt6_info *rt6_get_route_info(struct net *net, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 104 | const struct in6_addr *prefix, int prefixlen, |
| 105 | const struct in6_addr *gwaddr, int ifindex); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 106 | #endif |
| 107 | |
David S. Miller | 0658254 | 2011-01-27 14:58:42 -0800 | [diff] [blame] | 108 | static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old) |
| 109 | { |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 110 | struct rt6_info *rt = (struct rt6_info *)dst; |
David S. Miller | 0658254 | 2011-01-27 14:58:42 -0800 | [diff] [blame] | 111 | |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 112 | if (rt->rt6i_flags & RTF_CACHE) |
| 113 | return NULL; |
| 114 | else |
Martin KaFai Lau | 3b47117 | 2015-02-12 16:14:08 -0800 | [diff] [blame] | 115 | return dst_cow_metrics_generic(dst, old); |
David S. Miller | 0658254 | 2011-01-27 14:58:42 -0800 | [diff] [blame] | 116 | } |
| 117 | |
David S. Miller | f894cbf | 2012-07-02 21:52:24 -0700 | [diff] [blame] | 118 | static inline const void *choose_neigh_daddr(struct rt6_info *rt, |
| 119 | struct sk_buff *skb, |
| 120 | const void *daddr) |
David S. Miller | 3923297 | 2012-01-26 15:22:32 -0500 | [diff] [blame] | 121 | { |
| 122 | struct in6_addr *p = &rt->rt6i_gateway; |
| 123 | |
David S. Miller | a7563f3 | 2012-01-26 16:29:16 -0500 | [diff] [blame] | 124 | if (!ipv6_addr_any(p)) |
David S. Miller | 3923297 | 2012-01-26 15:22:32 -0500 | [diff] [blame] | 125 | return (const void *) p; |
David S. Miller | f894cbf | 2012-07-02 21:52:24 -0700 | [diff] [blame] | 126 | else if (skb) |
| 127 | return &ipv6_hdr(skb)->daddr; |
David S. Miller | 3923297 | 2012-01-26 15:22:32 -0500 | [diff] [blame] | 128 | return daddr; |
| 129 | } |
| 130 | |
David S. Miller | f894cbf | 2012-07-02 21:52:24 -0700 | [diff] [blame] | 131 | static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst, |
| 132 | struct sk_buff *skb, |
| 133 | const void *daddr) |
David S. Miller | d3aaeb3 | 2011-07-18 00:40:17 -0700 | [diff] [blame] | 134 | { |
David S. Miller | 3923297 | 2012-01-26 15:22:32 -0500 | [diff] [blame] | 135 | struct rt6_info *rt = (struct rt6_info *) dst; |
| 136 | struct neighbour *n; |
| 137 | |
David S. Miller | f894cbf | 2012-07-02 21:52:24 -0700 | [diff] [blame] | 138 | daddr = choose_neigh_daddr(rt, skb, daddr); |
YOSHIFUJI Hideaki / 吉藤英明 | 8e022ee | 2013-01-17 12:53:09 +0000 | [diff] [blame] | 139 | n = __ipv6_neigh_lookup(dst->dev, daddr); |
David S. Miller | f83c779 | 2011-12-28 15:41:23 -0500 | [diff] [blame] | 140 | if (n) |
| 141 | return n; |
| 142 | return neigh_create(&nd_tbl, daddr, dst->dev); |
| 143 | } |
| 144 | |
Daniel Lezcano | 9a7ec3a | 2008-03-04 13:48:53 -0800 | [diff] [blame] | 145 | static struct dst_ops ip6_dst_ops_template = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | .family = AF_INET6, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | .gc = ip6_dst_gc, |
| 148 | .gc_thresh = 1024, |
| 149 | .check = ip6_dst_check, |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 150 | .default_advmss = ip6_default_advmss, |
Steffen Klassert | ebb762f | 2011-11-23 02:12:51 +0000 | [diff] [blame] | 151 | .mtu = ip6_mtu, |
David S. Miller | 0658254 | 2011-01-27 14:58:42 -0800 | [diff] [blame] | 152 | .cow_metrics = ipv6_cow_metrics, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | .destroy = ip6_dst_destroy, |
| 154 | .ifdown = ip6_dst_ifdown, |
| 155 | .negative_advice = ip6_negative_advice, |
| 156 | .link_failure = ip6_link_failure, |
| 157 | .update_pmtu = ip6_rt_update_pmtu, |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 158 | .redirect = rt6_do_redirect, |
Herbert Xu | 1ac06e0 | 2008-05-20 14:32:14 -0700 | [diff] [blame] | 159 | .local_out = __ip6_local_out, |
David S. Miller | d3aaeb3 | 2011-07-18 00:40:17 -0700 | [diff] [blame] | 160 | .neigh_lookup = ip6_neigh_lookup, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | }; |
| 162 | |
Steffen Klassert | ebb762f | 2011-11-23 02:12:51 +0000 | [diff] [blame] | 163 | static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst) |
Roland Dreier | ec831ea | 2011-01-31 13:16:00 -0800 | [diff] [blame] | 164 | { |
Steffen Klassert | 618f9bc | 2011-11-23 02:13:31 +0000 | [diff] [blame] | 165 | unsigned int mtu = dst_metric_raw(dst, RTAX_MTU); |
| 166 | |
| 167 | return mtu ? : dst->dev->mtu; |
Roland Dreier | ec831ea | 2011-01-31 13:16:00 -0800 | [diff] [blame] | 168 | } |
| 169 | |
David S. Miller | 6700c27 | 2012-07-17 03:29:28 -0700 | [diff] [blame] | 170 | static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk, |
| 171 | struct sk_buff *skb, u32 mtu) |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 172 | { |
| 173 | } |
| 174 | |
David S. Miller | 6700c27 | 2012-07-17 03:29:28 -0700 | [diff] [blame] | 175 | static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk, |
| 176 | struct sk_buff *skb) |
David S. Miller | b587ee3 | 2012-07-12 00:39:24 -0700 | [diff] [blame] | 177 | { |
| 178 | } |
| 179 | |
Held Bernhard | 0972ddb | 2011-04-24 22:07:32 +0000 | [diff] [blame] | 180 | static u32 *ip6_rt_blackhole_cow_metrics(struct dst_entry *dst, |
| 181 | unsigned long old) |
| 182 | { |
| 183 | return NULL; |
| 184 | } |
| 185 | |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 186 | static struct dst_ops ip6_dst_blackhole_ops = { |
| 187 | .family = AF_INET6, |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 188 | .destroy = ip6_dst_destroy, |
| 189 | .check = ip6_dst_check, |
Steffen Klassert | ebb762f | 2011-11-23 02:12:51 +0000 | [diff] [blame] | 190 | .mtu = ip6_blackhole_mtu, |
Eric Dumazet | 214f45c | 2011-02-18 11:39:01 -0800 | [diff] [blame] | 191 | .default_advmss = ip6_default_advmss, |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 192 | .update_pmtu = ip6_rt_blackhole_update_pmtu, |
David S. Miller | b587ee3 | 2012-07-12 00:39:24 -0700 | [diff] [blame] | 193 | .redirect = ip6_rt_blackhole_redirect, |
Held Bernhard | 0972ddb | 2011-04-24 22:07:32 +0000 | [diff] [blame] | 194 | .cow_metrics = ip6_rt_blackhole_cow_metrics, |
David S. Miller | d3aaeb3 | 2011-07-18 00:40:17 -0700 | [diff] [blame] | 195 | .neigh_lookup = ip6_neigh_lookup, |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 196 | }; |
| 197 | |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 198 | static const u32 ip6_template_metrics[RTAX_MAX] = { |
Li RongQing | 14edd87 | 2012-10-24 14:01:18 +0800 | [diff] [blame] | 199 | [RTAX_HOPLIMIT - 1] = 0, |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 200 | }; |
| 201 | |
Eric Dumazet | fb0af4c | 2012-09-11 21:47:51 +0000 | [diff] [blame] | 202 | static const struct rt6_info ip6_null_entry_template = { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 203 | .dst = { |
| 204 | .__refcnt = ATOMIC_INIT(1), |
| 205 | .__use = 1, |
Nicolas Dichtel | 2c20cbd | 2012-09-10 22:09:47 +0000 | [diff] [blame] | 206 | .obsolete = DST_OBSOLETE_FORCE_CHK, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 207 | .error = -ENETUNREACH, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 208 | .input = ip6_pkt_discard, |
| 209 | .output = ip6_pkt_discard_out, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | }, |
| 211 | .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), |
Jean-Mickael Guerin | 4f72427 | 2009-05-20 17:38:59 -0700 | [diff] [blame] | 212 | .rt6i_protocol = RTPROT_KERNEL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | .rt6i_metric = ~(u32) 0, |
| 214 | .rt6i_ref = ATOMIC_INIT(1), |
| 215 | }; |
| 216 | |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 217 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 218 | |
Eric Dumazet | fb0af4c | 2012-09-11 21:47:51 +0000 | [diff] [blame] | 219 | static const struct rt6_info ip6_prohibit_entry_template = { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 220 | .dst = { |
| 221 | .__refcnt = ATOMIC_INIT(1), |
| 222 | .__use = 1, |
Nicolas Dichtel | 2c20cbd | 2012-09-10 22:09:47 +0000 | [diff] [blame] | 223 | .obsolete = DST_OBSOLETE_FORCE_CHK, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 224 | .error = -EACCES, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 225 | .input = ip6_pkt_prohibit, |
| 226 | .output = ip6_pkt_prohibit_out, |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 227 | }, |
| 228 | .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), |
Jean-Mickael Guerin | 4f72427 | 2009-05-20 17:38:59 -0700 | [diff] [blame] | 229 | .rt6i_protocol = RTPROT_KERNEL, |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 230 | .rt6i_metric = ~(u32) 0, |
| 231 | .rt6i_ref = ATOMIC_INIT(1), |
| 232 | }; |
| 233 | |
Eric Dumazet | fb0af4c | 2012-09-11 21:47:51 +0000 | [diff] [blame] | 234 | static const struct rt6_info ip6_blk_hole_entry_template = { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 235 | .dst = { |
| 236 | .__refcnt = ATOMIC_INIT(1), |
| 237 | .__use = 1, |
Nicolas Dichtel | 2c20cbd | 2012-09-10 22:09:47 +0000 | [diff] [blame] | 238 | .obsolete = DST_OBSOLETE_FORCE_CHK, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 239 | .error = -EINVAL, |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 240 | .input = dst_discard, |
Eric Dumazet | aad8872 | 2014-04-15 13:47:15 -0400 | [diff] [blame] | 241 | .output = dst_discard_sk, |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 242 | }, |
| 243 | .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), |
Jean-Mickael Guerin | 4f72427 | 2009-05-20 17:38:59 -0700 | [diff] [blame] | 244 | .rt6i_protocol = RTPROT_KERNEL, |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 245 | .rt6i_metric = ~(u32) 0, |
| 246 | .rt6i_ref = ATOMIC_INIT(1), |
| 247 | }; |
| 248 | |
| 249 | #endif |
| 250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | /* allocate dst with ip6_dst_ops */ |
David S. Miller | 97bab73 | 2012-06-09 22:36:36 -0700 | [diff] [blame] | 252 | static inline struct rt6_info *ip6_dst_alloc(struct net *net, |
David S. Miller | 957c665 | 2011-06-24 15:25:00 -0700 | [diff] [blame] | 253 | struct net_device *dev, |
David S. Miller | 8b96d22 | 2012-06-11 02:01:56 -0700 | [diff] [blame] | 254 | int flags, |
| 255 | struct fib6_table *table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | { |
David S. Miller | 97bab73 | 2012-06-09 22:36:36 -0700 | [diff] [blame] | 257 | struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev, |
Nicolas Dichtel | 6f3118b | 2012-09-10 22:09:46 +0000 | [diff] [blame] | 258 | 0, DST_OBSOLETE_FORCE_CHK, flags); |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame] | 259 | |
David S. Miller | 97bab73 | 2012-06-09 22:36:36 -0700 | [diff] [blame] | 260 | if (rt) { |
Steffen Klassert | 8104891 | 2012-07-05 23:37:09 +0000 | [diff] [blame] | 261 | struct dst_entry *dst = &rt->dst; |
| 262 | |
| 263 | memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst)); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 264 | INIT_LIST_HEAD(&rt->rt6i_siblings); |
David S. Miller | 97bab73 | 2012-06-09 22:36:36 -0700 | [diff] [blame] | 265 | } |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame] | 266 | return rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | static void ip6_dst_destroy(struct dst_entry *dst) |
| 270 | { |
| 271 | struct rt6_info *rt = (struct rt6_info *)dst; |
| 272 | struct inet6_dev *idev = rt->rt6i_idev; |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 273 | struct dst_entry *from = dst->from; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 275 | dst_destroy_metrics_generic(dst); |
Yan, Zheng | 8e2ec63 | 2011-09-05 21:34:30 +0000 | [diff] [blame] | 276 | |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 277 | if (idev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | rt->rt6i_idev = NULL; |
| 279 | in6_dev_put(idev); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 280 | } |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 281 | |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 282 | dst->from = NULL; |
| 283 | dst_release(from); |
David S. Miller | b341936 | 2010-11-30 12:27:11 -0800 | [diff] [blame] | 284 | } |
| 285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev, |
| 287 | int how) |
| 288 | { |
| 289 | struct rt6_info *rt = (struct rt6_info *)dst; |
| 290 | struct inet6_dev *idev = rt->rt6i_idev; |
Denis V. Lunev | 5a3e55d | 2007-12-07 00:38:10 -0800 | [diff] [blame] | 291 | struct net_device *loopback_dev = |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 292 | dev_net(dev)->loopback_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
David S. Miller | 97cac08 | 2012-07-02 22:43:47 -0700 | [diff] [blame] | 294 | if (dev != loopback_dev) { |
| 295 | if (idev && idev->dev == dev) { |
| 296 | struct inet6_dev *loopback_idev = |
| 297 | in6_dev_get(loopback_dev); |
| 298 | if (loopback_idev) { |
| 299 | rt->rt6i_idev = loopback_idev; |
| 300 | in6_dev_put(idev); |
| 301 | } |
| 302 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | } |
| 305 | |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 306 | static bool rt6_check_expired(const struct rt6_info *rt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 308 | if (rt->rt6i_flags & RTF_EXPIRES) { |
| 309 | if (time_after(jiffies, rt->dst.expires)) |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 310 | return true; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 311 | } else if (rt->dst.from) { |
Li RongQing | 3fd91fb | 2012-09-13 19:54:57 +0000 | [diff] [blame] | 312 | return rt6_check_expired((struct rt6_info *) rt->dst.from); |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 313 | } |
Eric Dumazet | a50feda | 2012-05-18 18:57:34 +0000 | [diff] [blame] | 314 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } |
| 316 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 317 | /* Multipath route selection: |
| 318 | * Hash based function using packet header and flowlabel. |
| 319 | * Adapted from fib_info_hashfn() |
| 320 | */ |
| 321 | static int rt6_info_hash_nhsfn(unsigned int candidate_count, |
| 322 | const struct flowi6 *fl6) |
| 323 | { |
| 324 | unsigned int val = fl6->flowi6_proto; |
| 325 | |
YOSHIFUJI Hideaki / 吉藤英明 | c08977b | 2013-01-13 05:02:29 +0000 | [diff] [blame] | 326 | val ^= ipv6_addr_hash(&fl6->daddr); |
| 327 | val ^= ipv6_addr_hash(&fl6->saddr); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 328 | |
| 329 | /* Work only if this not encapsulated */ |
| 330 | switch (fl6->flowi6_proto) { |
| 331 | case IPPROTO_UDP: |
| 332 | case IPPROTO_TCP: |
| 333 | case IPPROTO_SCTP: |
Nicolas Dichtel | b3ce5ae | 2012-10-22 23:35:06 +0000 | [diff] [blame] | 334 | val ^= (__force u16)fl6->fl6_sport; |
| 335 | val ^= (__force u16)fl6->fl6_dport; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 336 | break; |
| 337 | |
| 338 | case IPPROTO_ICMPV6: |
Nicolas Dichtel | b3ce5ae | 2012-10-22 23:35:06 +0000 | [diff] [blame] | 339 | val ^= (__force u16)fl6->fl6_icmp_type; |
| 340 | val ^= (__force u16)fl6->fl6_icmp_code; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 341 | break; |
| 342 | } |
| 343 | /* RFC6438 recommands to use flowlabel */ |
Nicolas Dichtel | b3ce5ae | 2012-10-22 23:35:06 +0000 | [diff] [blame] | 344 | val ^= (__force u32)fl6->flowlabel; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 345 | |
| 346 | /* Perhaps, we need to tune, this function? */ |
| 347 | val = val ^ (val >> 7) ^ (val >> 12); |
| 348 | return val % candidate_count; |
| 349 | } |
| 350 | |
| 351 | static struct rt6_info *rt6_multipath_select(struct rt6_info *match, |
Nicolas Dichtel | 52bd4c0 | 2013-06-28 17:35:48 +0200 | [diff] [blame] | 352 | struct flowi6 *fl6, int oif, |
| 353 | int strict) |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 354 | { |
| 355 | struct rt6_info *sibling, *next_sibling; |
| 356 | int route_choosen; |
| 357 | |
| 358 | route_choosen = rt6_info_hash_nhsfn(match->rt6i_nsiblings + 1, fl6); |
| 359 | /* Don't change the route, if route_choosen == 0 |
| 360 | * (siblings does not include ourself) |
| 361 | */ |
| 362 | if (route_choosen) |
| 363 | list_for_each_entry_safe(sibling, next_sibling, |
| 364 | &match->rt6i_siblings, rt6i_siblings) { |
| 365 | route_choosen--; |
| 366 | if (route_choosen == 0) { |
Nicolas Dichtel | 52bd4c0 | 2013-06-28 17:35:48 +0200 | [diff] [blame] | 367 | if (rt6_score_route(sibling, oif, strict) < 0) |
| 368 | break; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 369 | match = sibling; |
| 370 | break; |
| 371 | } |
| 372 | } |
| 373 | return match; |
| 374 | } |
| 375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | /* |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 377 | * Route lookup. Any table->tb6_lock is implied. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | */ |
| 379 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 380 | static inline struct rt6_info *rt6_device_match(struct net *net, |
| 381 | struct rt6_info *rt, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 382 | const struct in6_addr *saddr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | int oif, |
YOSHIFUJI Hideaki | d420895 | 2008-06-27 20:14:54 -0700 | [diff] [blame] | 384 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | { |
| 386 | struct rt6_info *local = NULL; |
| 387 | struct rt6_info *sprt; |
| 388 | |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 389 | if (!oif && ipv6_addr_any(saddr)) |
| 390 | goto out; |
| 391 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 392 | for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) { |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 393 | struct net_device *dev = sprt->dst.dev; |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 394 | |
| 395 | if (oif) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | if (dev->ifindex == oif) |
| 397 | return sprt; |
| 398 | if (dev->flags & IFF_LOOPBACK) { |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 399 | if (!sprt->rt6i_idev || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | sprt->rt6i_idev->dev->ifindex != oif) { |
YOSHIFUJI Hideaki | d420895 | 2008-06-27 20:14:54 -0700 | [diff] [blame] | 401 | if (flags & RT6_LOOKUP_F_IFACE && oif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | continue; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 403 | if (local && (!oif || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | local->rt6i_idev->dev->ifindex == oif)) |
| 405 | continue; |
| 406 | } |
| 407 | local = sprt; |
| 408 | } |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 409 | } else { |
| 410 | if (ipv6_chk_addr(net, saddr, dev, |
| 411 | flags & RT6_LOOKUP_F_IFACE)) |
| 412 | return sprt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | } |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 414 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 416 | if (oif) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | if (local) |
| 418 | return local; |
| 419 | |
YOSHIFUJI Hideaki | d420895 | 2008-06-27 20:14:54 -0700 | [diff] [blame] | 420 | if (flags & RT6_LOOKUP_F_IFACE) |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 421 | return net->ipv6.ip6_null_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | } |
YOSHIFUJI Hideaki | dd3abc4 | 2008-07-02 18:30:18 +0900 | [diff] [blame] | 423 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | return rt; |
| 425 | } |
| 426 | |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 427 | #ifdef CONFIG_IPV6_ROUTER_PREF |
Hannes Frederic Sowa | c2f17e8 | 2013-10-21 06:17:15 +0200 | [diff] [blame] | 428 | struct __rt6_probe_work { |
| 429 | struct work_struct work; |
| 430 | struct in6_addr target; |
| 431 | struct net_device *dev; |
| 432 | }; |
| 433 | |
| 434 | static void rt6_probe_deferred(struct work_struct *w) |
| 435 | { |
| 436 | struct in6_addr mcaddr; |
| 437 | struct __rt6_probe_work *work = |
| 438 | container_of(w, struct __rt6_probe_work, work); |
| 439 | |
| 440 | addrconf_addr_solict_mult(&work->target, &mcaddr); |
| 441 | ndisc_send_ns(work->dev, NULL, &work->target, &mcaddr, NULL); |
| 442 | dev_put(work->dev); |
Michael Büsch | 662f553 | 2015-02-08 10:14:07 +0100 | [diff] [blame] | 443 | kfree(work); |
Hannes Frederic Sowa | c2f17e8 | 2013-10-21 06:17:15 +0200 | [diff] [blame] | 444 | } |
| 445 | |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 446 | static void rt6_probe(struct rt6_info *rt) |
| 447 | { |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 448 | struct neighbour *neigh; |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 449 | /* |
| 450 | * Okay, this does not seem to be appropriate |
| 451 | * for now, however, we need to check if it |
| 452 | * is really so; aka Router Reachability Probing. |
| 453 | * |
| 454 | * Router Reachability Probe MUST be rate-limited |
| 455 | * to no more than one per minute. |
| 456 | */ |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 457 | if (!rt || !(rt->rt6i_flags & RTF_GATEWAY)) |
Amerigo Wang | fdd6681 | 2012-09-10 02:48:44 +0000 | [diff] [blame] | 458 | return; |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 459 | rcu_read_lock_bh(); |
| 460 | neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway); |
| 461 | if (neigh) { |
| 462 | write_lock(&neigh->lock); |
| 463 | if (neigh->nud_state & NUD_VALID) |
| 464 | goto out; |
YOSHIFUJI Hideaki / 吉藤英明 | 7ff74a5 | 2013-01-17 12:53:02 +0000 | [diff] [blame] | 465 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 466 | |
| 467 | if (!neigh || |
YOSHIFUJI Hideaki | 52e1635 | 2006-03-20 17:05:47 -0800 | [diff] [blame] | 468 | time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) { |
Hannes Frederic Sowa | c2f17e8 | 2013-10-21 06:17:15 +0200 | [diff] [blame] | 469 | struct __rt6_probe_work *work; |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 470 | |
Hannes Frederic Sowa | c2f17e8 | 2013-10-21 06:17:15 +0200 | [diff] [blame] | 471 | work = kmalloc(sizeof(*work), GFP_ATOMIC); |
| 472 | |
| 473 | if (neigh && work) |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 474 | __neigh_set_probe_once(neigh); |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 475 | |
Hannes Frederic Sowa | c2f17e8 | 2013-10-21 06:17:15 +0200 | [diff] [blame] | 476 | if (neigh) |
| 477 | write_unlock(&neigh->lock); |
| 478 | |
| 479 | if (work) { |
| 480 | INIT_WORK(&work->work, rt6_probe_deferred); |
| 481 | work->target = rt->rt6i_gateway; |
| 482 | dev_hold(rt->dst.dev); |
| 483 | work->dev = rt->dst.dev; |
| 484 | schedule_work(&work->work); |
| 485 | } |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 486 | } else { |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 487 | out: |
| 488 | write_unlock(&neigh->lock); |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 489 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 2152cae | 2013-01-17 12:53:43 +0000 | [diff] [blame] | 490 | rcu_read_unlock_bh(); |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 491 | } |
| 492 | #else |
| 493 | static inline void rt6_probe(struct rt6_info *rt) |
| 494 | { |
YOSHIFUJI Hideaki | 2709725 | 2006-03-20 17:05:13 -0800 | [diff] [blame] | 495 | } |
| 496 | #endif |
| 497 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | /* |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 499 | * Default Router Selection (RFC 2461 6.3.6) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | */ |
Dave Jones | b6f99a2 | 2007-03-22 12:27:49 -0700 | [diff] [blame] | 501 | static inline int rt6_check_dev(struct rt6_info *rt, int oif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | { |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 503 | struct net_device *dev = rt->dst.dev; |
David S. Miller | 161980f | 2007-04-06 11:42:27 -0700 | [diff] [blame] | 504 | if (!oif || dev->ifindex == oif) |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 505 | return 2; |
David S. Miller | 161980f | 2007-04-06 11:42:27 -0700 | [diff] [blame] | 506 | if ((dev->flags & IFF_LOOPBACK) && |
| 507 | rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif) |
| 508 | return 1; |
| 509 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | } |
| 511 | |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 512 | static inline enum rt6_nud_state rt6_check_neigh(struct rt6_info *rt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | { |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 514 | struct neighbour *neigh; |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 515 | enum rt6_nud_state ret = RT6_NUD_FAIL_HARD; |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 516 | |
YOSHIFUJI Hideaki | 4d0c591 | 2006-05-26 13:23:41 -0700 | [diff] [blame] | 517 | if (rt->rt6i_flags & RTF_NONEXTHOP || |
| 518 | !(rt->rt6i_flags & RTF_GATEWAY)) |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 519 | return RT6_NUD_SUCCEED; |
YOSHIFUJI Hideaki / 吉藤英明 | 145a362 | 2013-01-17 12:53:38 +0000 | [diff] [blame] | 520 | |
| 521 | rcu_read_lock_bh(); |
| 522 | neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway); |
| 523 | if (neigh) { |
| 524 | read_lock(&neigh->lock); |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 525 | if (neigh->nud_state & NUD_VALID) |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 526 | ret = RT6_NUD_SUCCEED; |
YOSHIFUJI Hideaki | 398bcbe | 2008-01-19 00:35:16 -0800 | [diff] [blame] | 527 | #ifdef CONFIG_IPV6_ROUTER_PREF |
Paul Marks | a5a81f0 | 2012-12-03 10:26:54 +0000 | [diff] [blame] | 528 | else if (!(neigh->nud_state & NUD_FAILED)) |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 529 | ret = RT6_NUD_SUCCEED; |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 530 | else |
| 531 | ret = RT6_NUD_FAIL_PROBE; |
YOSHIFUJI Hideaki | 398bcbe | 2008-01-19 00:35:16 -0800 | [diff] [blame] | 532 | #endif |
YOSHIFUJI Hideaki / 吉藤英明 | 145a362 | 2013-01-17 12:53:38 +0000 | [diff] [blame] | 533 | read_unlock(&neigh->lock); |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 534 | } else { |
| 535 | ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ? |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 536 | RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR; |
Paul Marks | a5a81f0 | 2012-12-03 10:26:54 +0000 | [diff] [blame] | 537 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 145a362 | 2013-01-17 12:53:38 +0000 | [diff] [blame] | 538 | rcu_read_unlock_bh(); |
| 539 | |
Paul Marks | a5a81f0 | 2012-12-03 10:26:54 +0000 | [diff] [blame] | 540 | return ret; |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 541 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 543 | static int rt6_score_route(struct rt6_info *rt, int oif, |
| 544 | int strict) |
| 545 | { |
Paul Marks | a5a81f0 | 2012-12-03 10:26:54 +0000 | [diff] [blame] | 546 | int m; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 547 | |
YOSHIFUJI Hideaki | 4d0c591 | 2006-05-26 13:23:41 -0700 | [diff] [blame] | 548 | m = rt6_check_dev(rt, oif); |
YOSHIFUJI Hideaki | 77d16f4 | 2006-08-23 17:25:05 -0700 | [diff] [blame] | 549 | if (!m && (strict & RT6_LOOKUP_F_IFACE)) |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 550 | return RT6_NUD_FAIL_HARD; |
YOSHIFUJI Hideaki | ebacaaa | 2006-03-20 17:04:53 -0800 | [diff] [blame] | 551 | #ifdef CONFIG_IPV6_ROUTER_PREF |
| 552 | m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2; |
| 553 | #endif |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 554 | if (strict & RT6_LOOKUP_F_REACHABLE) { |
| 555 | int n = rt6_check_neigh(rt); |
| 556 | if (n < 0) |
| 557 | return n; |
| 558 | } |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 559 | return m; |
| 560 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 562 | static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict, |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 563 | int *mpri, struct rt6_info *match, |
| 564 | bool *do_rr) |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 565 | { |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 566 | int m; |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 567 | bool match_do_rr = false; |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 568 | |
| 569 | if (rt6_check_expired(rt)) |
| 570 | goto out; |
| 571 | |
| 572 | m = rt6_score_route(rt, oif, strict); |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 573 | if (m == RT6_NUD_FAIL_DO_RR) { |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 574 | match_do_rr = true; |
| 575 | m = 0; /* lowest valid score */ |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 576 | } else if (m == RT6_NUD_FAIL_HARD) { |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 577 | goto out; |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 578 | } |
| 579 | |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 580 | if (strict & RT6_LOOKUP_F_REACHABLE) |
| 581 | rt6_probe(rt); |
| 582 | |
Jiri Benc | 7e98056 | 2013-12-11 13:48:20 +0100 | [diff] [blame] | 583 | /* note that m can be RT6_NUD_FAIL_PROBE at this point */ |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 584 | if (m > *mpri) { |
| 585 | *do_rr = match_do_rr; |
| 586 | *mpri = m; |
| 587 | match = rt; |
| 588 | } |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 589 | out: |
| 590 | return match; |
| 591 | } |
| 592 | |
| 593 | static struct rt6_info *find_rr_leaf(struct fib6_node *fn, |
| 594 | struct rt6_info *rr_head, |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 595 | u32 metric, int oif, int strict, |
| 596 | bool *do_rr) |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 597 | { |
Steffen Klassert | 9fbdcfa | 2015-04-28 13:03:04 -0700 | [diff] [blame] | 598 | struct rt6_info *rt, *match, *cont; |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 599 | int mpri = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 601 | match = NULL; |
Steffen Klassert | 9fbdcfa | 2015-04-28 13:03:04 -0700 | [diff] [blame] | 602 | cont = NULL; |
| 603 | for (rt = rr_head; rt; rt = rt->dst.rt6_next) { |
| 604 | if (rt->rt6i_metric != metric) { |
| 605 | cont = rt; |
| 606 | break; |
| 607 | } |
| 608 | |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 609 | match = find_match(rt, oif, strict, &mpri, match, do_rr); |
Steffen Klassert | 9fbdcfa | 2015-04-28 13:03:04 -0700 | [diff] [blame] | 610 | } |
| 611 | |
| 612 | for (rt = fn->leaf; rt && rt != rr_head; rt = rt->dst.rt6_next) { |
| 613 | if (rt->rt6i_metric != metric) { |
| 614 | cont = rt; |
| 615 | break; |
| 616 | } |
| 617 | |
| 618 | match = find_match(rt, oif, strict, &mpri, match, do_rr); |
| 619 | } |
| 620 | |
| 621 | if (match || !cont) |
| 622 | return match; |
| 623 | |
| 624 | for (rt = cont; rt; rt = rt->dst.rt6_next) |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 625 | match = find_match(rt, oif, strict, &mpri, match, do_rr); |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 626 | |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 627 | return match; |
| 628 | } |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 629 | |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 630 | static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict) |
| 631 | { |
| 632 | struct rt6_info *match, *rt0; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 633 | struct net *net; |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 634 | bool do_rr = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 636 | rt0 = fn->rr_ptr; |
| 637 | if (!rt0) |
| 638 | fn->rr_ptr = rt0 = fn->leaf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 640 | match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict, |
| 641 | &do_rr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
Hannes Frederic Sowa | afc154e | 2013-07-11 12:43:42 +0200 | [diff] [blame] | 643 | if (do_rr) { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 644 | struct rt6_info *next = rt0->dst.rt6_next; |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 645 | |
YOSHIFUJI Hideaki | 554cfb7 | 2006-03-20 17:00:26 -0800 | [diff] [blame] | 646 | /* no entries matched; do round-robin */ |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 647 | if (!next || next->rt6i_metric != rt0->rt6i_metric) |
| 648 | next = fn->leaf; |
| 649 | |
| 650 | if (next != rt0) |
| 651 | fn->rr_ptr = next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | } |
| 653 | |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 654 | net = dev_net(rt0->dst.dev); |
Eric Dumazet | a02cec2 | 2010-09-22 20:43:57 +0000 | [diff] [blame] | 655 | return match ? match : net->ipv6.ip6_null_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | } |
| 657 | |
Martin KaFai Lau | 8b9df26 | 2015-05-22 20:55:59 -0700 | [diff] [blame] | 658 | static bool rt6_is_gw_or_nonexthop(const struct rt6_info *rt) |
| 659 | { |
| 660 | return (rt->rt6i_flags & (RTF_NONEXTHOP | RTF_GATEWAY)); |
| 661 | } |
| 662 | |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 663 | #ifdef CONFIG_IPV6_ROUTE_INFO |
| 664 | int rt6_route_rcv(struct net_device *dev, u8 *opt, int len, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 665 | const struct in6_addr *gwaddr) |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 666 | { |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 667 | struct net *net = dev_net(dev); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 668 | struct route_info *rinfo = (struct route_info *) opt; |
| 669 | struct in6_addr prefix_buf, *prefix; |
| 670 | unsigned int pref; |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 671 | unsigned long lifetime; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 672 | struct rt6_info *rt; |
| 673 | |
| 674 | if (len < sizeof(struct route_info)) { |
| 675 | return -EINVAL; |
| 676 | } |
| 677 | |
| 678 | /* Sanity check for prefix_len and length */ |
| 679 | if (rinfo->length > 3) { |
| 680 | return -EINVAL; |
| 681 | } else if (rinfo->prefix_len > 128) { |
| 682 | return -EINVAL; |
| 683 | } else if (rinfo->prefix_len > 64) { |
| 684 | if (rinfo->length < 2) { |
| 685 | return -EINVAL; |
| 686 | } |
| 687 | } else if (rinfo->prefix_len > 0) { |
| 688 | if (rinfo->length < 1) { |
| 689 | return -EINVAL; |
| 690 | } |
| 691 | } |
| 692 | |
| 693 | pref = rinfo->route_pref; |
| 694 | if (pref == ICMPV6_ROUTER_PREF_INVALID) |
Jens Rosenboom | 3933fc9 | 2009-09-10 06:25:11 +0000 | [diff] [blame] | 695 | return -EINVAL; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 696 | |
YOSHIFUJI Hideaki | 4bed72e | 2008-05-27 17:37:49 +0900 | [diff] [blame] | 697 | lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 698 | |
| 699 | if (rinfo->length == 3) |
| 700 | prefix = (struct in6_addr *)rinfo->prefix; |
| 701 | else { |
| 702 | /* this function is safe */ |
| 703 | ipv6_addr_prefix(&prefix_buf, |
| 704 | (struct in6_addr *)rinfo->prefix, |
| 705 | rinfo->prefix_len); |
| 706 | prefix = &prefix_buf; |
| 707 | } |
| 708 | |
Duan Jiong | f104a56 | 2013-11-08 09:56:53 +0800 | [diff] [blame] | 709 | if (rinfo->prefix_len == 0) |
| 710 | rt = rt6_get_dflt_router(gwaddr, dev); |
| 711 | else |
| 712 | rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, |
| 713 | gwaddr, dev->ifindex); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 714 | |
| 715 | if (rt && !lifetime) { |
Thomas Graf | e0a1ad73 | 2006-08-22 00:00:21 -0700 | [diff] [blame] | 716 | ip6_del_rt(rt); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 717 | rt = NULL; |
| 718 | } |
| 719 | |
| 720 | if (!rt && lifetime) |
Daniel Lezcano | efa2cea | 2008-03-04 13:46:48 -0800 | [diff] [blame] | 721 | rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex, |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 722 | pref); |
| 723 | else if (rt) |
| 724 | rt->rt6i_flags = RTF_ROUTEINFO | |
| 725 | (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref); |
| 726 | |
| 727 | if (rt) { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 728 | if (!addrconf_finite_timeout(lifetime)) |
| 729 | rt6_clean_expires(rt); |
| 730 | else |
| 731 | rt6_set_expires(rt, jiffies + HZ * lifetime); |
| 732 | |
Amerigo Wang | 94e187c | 2012-10-29 00:13:19 +0000 | [diff] [blame] | 733 | ip6_rt_put(rt); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 734 | } |
| 735 | return 0; |
| 736 | } |
| 737 | #endif |
| 738 | |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 739 | static struct fib6_node* fib6_backtrack(struct fib6_node *fn, |
| 740 | struct in6_addr *saddr) |
| 741 | { |
| 742 | struct fib6_node *pn; |
| 743 | while (1) { |
| 744 | if (fn->fn_flags & RTN_TL_ROOT) |
| 745 | return NULL; |
| 746 | pn = fn->parent; |
| 747 | if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) |
| 748 | fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr); |
| 749 | else |
| 750 | fn = pn; |
| 751 | if (fn->fn_flags & RTN_RTINFO) |
| 752 | return fn; |
| 753 | } |
| 754 | } |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 755 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 756 | static struct rt6_info *ip6_pol_route_lookup(struct net *net, |
| 757 | struct fib6_table *table, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 758 | struct flowi6 *fl6, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | { |
| 760 | struct fib6_node *fn; |
| 761 | struct rt6_info *rt; |
| 762 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 763 | read_lock_bh(&table->tb6_lock); |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 764 | fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 765 | restart: |
| 766 | rt = fn->leaf; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 767 | rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 768 | if (rt->rt6i_nsiblings && fl6->flowi6_oif == 0) |
Nicolas Dichtel | 52bd4c0 | 2013-06-28 17:35:48 +0200 | [diff] [blame] | 769 | rt = rt6_multipath_select(rt, fl6, fl6->flowi6_oif, flags); |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 770 | if (rt == net->ipv6.ip6_null_entry) { |
| 771 | fn = fib6_backtrack(fn, &fl6->saddr); |
| 772 | if (fn) |
| 773 | goto restart; |
| 774 | } |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 775 | dst_use(&rt->dst, jiffies); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 776 | read_unlock_bh(&table->tb6_lock); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 777 | return rt; |
| 778 | |
| 779 | } |
| 780 | |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 781 | struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6, |
Florian Westphal | ea6e574 | 2011-09-05 16:05:44 +0200 | [diff] [blame] | 782 | int flags) |
| 783 | { |
| 784 | return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup); |
| 785 | } |
| 786 | EXPORT_SYMBOL_GPL(ip6_route_lookup); |
| 787 | |
YOSHIFUJI Hideaki | 9acd9f3 | 2008-04-10 15:42:10 +0900 | [diff] [blame] | 788 | struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr, |
| 789 | const struct in6_addr *saddr, int oif, int strict) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 790 | { |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 791 | struct flowi6 fl6 = { |
| 792 | .flowi6_oif = oif, |
| 793 | .daddr = *daddr, |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 794 | }; |
| 795 | struct dst_entry *dst; |
YOSHIFUJI Hideaki | 77d16f4 | 2006-08-23 17:25:05 -0700 | [diff] [blame] | 796 | int flags = strict ? RT6_LOOKUP_F_IFACE : 0; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 797 | |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 798 | if (saddr) { |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 799 | memcpy(&fl6.saddr, saddr, sizeof(*saddr)); |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 800 | flags |= RT6_LOOKUP_F_HAS_SADDR; |
| 801 | } |
| 802 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 803 | dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 804 | if (dst->error == 0) |
| 805 | return (struct rt6_info *) dst; |
| 806 | |
| 807 | dst_release(dst); |
| 808 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | return NULL; |
| 810 | } |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 811 | EXPORT_SYMBOL(rt6_lookup); |
| 812 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 813 | /* ip6_ins_rt is called with FREE table->tb6_lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | It takes new route entry, the addition fails by any reason the |
| 815 | route is freed. In any case, if caller does not hold it, it may |
| 816 | be destroyed. |
| 817 | */ |
| 818 | |
Michal Kubeček | e5fd387 | 2014-03-27 13:04:08 +0100 | [diff] [blame] | 819 | static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info, |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 820 | struct mx6_config *mxc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | { |
| 822 | int err; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 823 | struct fib6_table *table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 825 | table = rt->rt6i_table; |
| 826 | write_lock_bh(&table->tb6_lock); |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 827 | err = fib6_add(&table->tb6_root, rt, info, mxc); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 828 | write_unlock_bh(&table->tb6_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
| 830 | return err; |
| 831 | } |
| 832 | |
Thomas Graf | 40e22e8 | 2006-08-22 00:00:45 -0700 | [diff] [blame] | 833 | int ip6_ins_rt(struct rt6_info *rt) |
| 834 | { |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 835 | struct nl_info info = { .nl_net = dev_net(rt->dst.dev), }; |
| 836 | struct mx6_config mxc = { .mx = NULL, }; |
| 837 | |
| 838 | return __ip6_ins_rt(rt, &info, &mxc); |
Thomas Graf | 40e22e8 | 2006-08-22 00:00:45 -0700 | [diff] [blame] | 839 | } |
| 840 | |
Martin KaFai Lau | 8b9df26 | 2015-05-22 20:55:59 -0700 | [diff] [blame] | 841 | static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort, |
| 842 | const struct in6_addr *daddr, |
| 843 | const struct in6_addr *saddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | struct rt6_info *rt; |
| 846 | |
| 847 | /* |
| 848 | * Clone the route. |
| 849 | */ |
| 850 | |
Eric Dumazet | 21efcfa | 2011-07-19 20:18:36 +0000 | [diff] [blame] | 851 | rt = ip6_rt_copy(ort, daddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | |
| 853 | if (rt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | rt->rt6i_flags |= RTF_CACHE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | |
Martin KaFai Lau | 8b9df26 | 2015-05-22 20:55:59 -0700 | [diff] [blame] | 856 | if (!rt6_is_gw_or_nonexthop(ort)) { |
| 857 | if (ort->rt6i_dst.plen != 128 && |
| 858 | ipv6_addr_equal(&ort->rt6i_dst.addr, daddr)) |
| 859 | rt->rt6i_flags |= RTF_ANYCAST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | #ifdef CONFIG_IPV6_SUBTREES |
Martin KaFai Lau | 8b9df26 | 2015-05-22 20:55:59 -0700 | [diff] [blame] | 861 | if (rt->rt6i_src.plen && saddr) { |
| 862 | rt->rt6i_src.addr = *saddr; |
| 863 | rt->rt6i_src.plen = 128; |
| 864 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | #endif |
Martin KaFai Lau | 8b9df26 | 2015-05-22 20:55:59 -0700 | [diff] [blame] | 866 | } |
YOSHIFUJI Hideaki | 95a9a5b | 2006-03-20 16:55:51 -0800 | [diff] [blame] | 867 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | |
YOSHIFUJI Hideaki | 95a9a5b | 2006-03-20 16:55:51 -0800 | [diff] [blame] | 869 | return rt; |
| 870 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 872 | static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 873 | struct flowi6 *fl6, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | { |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 875 | struct fib6_node *fn, *saved_fn; |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame^] | 876 | struct rt6_info *rt; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 877 | int strict = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | |
YOSHIFUJI Hideaki | 77d16f4 | 2006-08-23 17:25:05 -0700 | [diff] [blame] | 879 | strict |= flags & RT6_LOOKUP_F_IFACE; |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 880 | if (net->ipv6.devconf_all->forwarding == 0) |
| 881 | strict |= RT6_LOOKUP_F_REACHABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 883 | read_lock_bh(&table->tb6_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 885 | fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 886 | saved_fn = fn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 888 | redo_rt6_select: |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 889 | rt = rt6_select(fn, oif, strict); |
Nicolas Dichtel | 52bd4c0 | 2013-06-28 17:35:48 +0200 | [diff] [blame] | 890 | if (rt->rt6i_nsiblings) |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 891 | rt = rt6_multipath_select(rt, fl6, oif, strict); |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 892 | if (rt == net->ipv6.ip6_null_entry) { |
| 893 | fn = fib6_backtrack(fn, &fl6->saddr); |
| 894 | if (fn) |
| 895 | goto redo_rt6_select; |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 896 | else if (strict & RT6_LOOKUP_F_REACHABLE) { |
| 897 | /* also consider unreachable route */ |
| 898 | strict &= ~RT6_LOOKUP_F_REACHABLE; |
| 899 | fn = saved_fn; |
| 900 | goto redo_rt6_select; |
Martin KaFai Lau | 367efcb | 2014-10-20 13:42:45 -0700 | [diff] [blame] | 901 | } |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 902 | } |
| 903 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 904 | dst_hold(&rt->dst); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 905 | read_unlock_bh(&table->tb6_lock); |
YOSHIFUJI Hideaki | fb9de91 | 2006-03-20 16:59:08 -0800 | [diff] [blame] | 906 | |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 907 | rt6_dst_from_metrics_check(rt); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 908 | rt->dst.lastuse = jiffies; |
| 909 | rt->dst.__use++; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 910 | |
| 911 | return rt; |
| 912 | } |
| 913 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 914 | static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 915 | struct flowi6 *fl6, int flags) |
Pavel Emelyanov | 4acad72 | 2007-10-15 13:02:51 -0700 | [diff] [blame] | 916 | { |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 917 | return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags); |
Pavel Emelyanov | 4acad72 | 2007-10-15 13:02:51 -0700 | [diff] [blame] | 918 | } |
| 919 | |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 920 | static struct dst_entry *ip6_route_input_lookup(struct net *net, |
| 921 | struct net_device *dev, |
| 922 | struct flowi6 *fl6, int flags) |
| 923 | { |
| 924 | if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG) |
| 925 | flags |= RT6_LOOKUP_F_IFACE; |
| 926 | |
| 927 | return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input); |
| 928 | } |
| 929 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 930 | void ip6_route_input(struct sk_buff *skb) |
| 931 | { |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 932 | const struct ipv6hdr *iph = ipv6_hdr(skb); |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 933 | struct net *net = dev_net(skb->dev); |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 934 | int flags = RT6_LOOKUP_F_HAS_SADDR; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 935 | struct flowi6 fl6 = { |
| 936 | .flowi6_iif = skb->dev->ifindex, |
| 937 | .daddr = iph->daddr, |
| 938 | .saddr = iph->saddr, |
YOSHIFUJI Hideaki / 吉藤英明 | 6502ca5 | 2013-01-13 05:01:51 +0000 | [diff] [blame] | 939 | .flowlabel = ip6_flowinfo(iph), |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 940 | .flowi6_mark = skb->mark, |
| 941 | .flowi6_proto = iph->nexthdr, |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 942 | }; |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 943 | |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 944 | skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags)); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 945 | } |
| 946 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 947 | static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 948 | struct flowi6 *fl6, int flags) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 949 | { |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 950 | return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 951 | } |
| 952 | |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 953 | struct dst_entry *ip6_route_output(struct net *net, const struct sock *sk, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 954 | struct flowi6 *fl6) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 955 | { |
| 956 | int flags = 0; |
| 957 | |
Pavel Emelyanov | 1fb9489 | 2012-08-08 21:53:36 +0000 | [diff] [blame] | 958 | fl6->flowi6_iif = LOOPBACK_IFINDEX; |
David McCullough | 4dc27d1c | 2012-06-25 15:42:26 +0000 | [diff] [blame] | 959 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 960 | if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr)) |
YOSHIFUJI Hideaki | 77d16f4 | 2006-08-23 17:25:05 -0700 | [diff] [blame] | 961 | flags |= RT6_LOOKUP_F_IFACE; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 962 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 963 | if (!ipv6_addr_any(&fl6->saddr)) |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 964 | flags |= RT6_LOOKUP_F_HAS_SADDR; |
YOSHIFUJI Hideaki / 吉藤英明 | 0c9a2ac | 2010-03-07 00:14:44 +0000 | [diff] [blame] | 965 | else if (sk) |
| 966 | flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs); |
Thomas Graf | adaa70b | 2006-10-13 15:01:03 -0700 | [diff] [blame] | 967 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 968 | return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | } |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 970 | EXPORT_SYMBOL(ip6_route_output); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | |
David S. Miller | 2774c13 | 2011-03-01 14:59:04 -0800 | [diff] [blame] | 972 | struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig) |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 973 | { |
David S. Miller | 5c1e6aa | 2011-04-28 14:13:38 -0700 | [diff] [blame] | 974 | struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 975 | struct dst_entry *new = NULL; |
| 976 | |
David S. Miller | f5b0a87 | 2012-07-19 12:31:33 -0700 | [diff] [blame] | 977 | rt = dst_alloc(&ip6_dst_blackhole_ops, ort->dst.dev, 1, DST_OBSOLETE_NONE, 0); |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 978 | if (rt) { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 979 | new = &rt->dst; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 980 | |
Steffen Klassert | 8104891 | 2012-07-05 23:37:09 +0000 | [diff] [blame] | 981 | memset(new + 1, 0, sizeof(*rt) - sizeof(*new)); |
Steffen Klassert | 8104891 | 2012-07-05 23:37:09 +0000 | [diff] [blame] | 982 | |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 983 | new->__use = 1; |
Herbert Xu | 352e512 | 2007-11-13 21:34:06 -0800 | [diff] [blame] | 984 | new->input = dst_discard; |
Eric Dumazet | aad8872 | 2014-04-15 13:47:15 -0400 | [diff] [blame] | 985 | new->output = dst_discard_sk; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 986 | |
Eric Dumazet | 21efcfa | 2011-07-19 20:18:36 +0000 | [diff] [blame] | 987 | if (dst_metrics_read_only(&ort->dst)) |
| 988 | new->_metrics = ort->dst._metrics; |
| 989 | else |
| 990 | dst_copy_metrics(new, &ort->dst); |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 991 | rt->rt6i_idev = ort->rt6i_idev; |
| 992 | if (rt->rt6i_idev) |
| 993 | in6_dev_hold(rt->rt6i_idev); |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 994 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 995 | rt->rt6i_gateway = ort->rt6i_gateway; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 996 | rt->rt6i_flags = ort->rt6i_flags; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 997 | rt->rt6i_metric = 0; |
| 998 | |
| 999 | memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key)); |
| 1000 | #ifdef CONFIG_IPV6_SUBTREES |
| 1001 | memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key)); |
| 1002 | #endif |
| 1003 | |
| 1004 | dst_free(new); |
| 1005 | } |
| 1006 | |
David S. Miller | 69ead7a | 2011-03-01 14:45:33 -0800 | [diff] [blame] | 1007 | dst_release(dst_orig); |
| 1008 | return new ? new : ERR_PTR(-ENOMEM); |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 1009 | } |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 1010 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | /* |
| 1012 | * Destination cache support functions |
| 1013 | */ |
| 1014 | |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 1015 | static void rt6_dst_from_metrics_check(struct rt6_info *rt) |
| 1016 | { |
| 1017 | if (rt->dst.from && |
| 1018 | dst_metrics_ptr(&rt->dst) != dst_metrics_ptr(rt->dst.from)) |
| 1019 | dst_init_metrics(&rt->dst, dst_metrics_ptr(rt->dst.from), true); |
| 1020 | } |
| 1021 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie) |
| 1023 | { |
| 1024 | struct rt6_info *rt; |
| 1025 | |
| 1026 | rt = (struct rt6_info *) dst; |
| 1027 | |
Nicolas Dichtel | 6f3118b | 2012-09-10 22:09:46 +0000 | [diff] [blame] | 1028 | /* All IPV6 dsts are created with ->obsolete set to the value |
| 1029 | * DST_OBSOLETE_FORCE_CHK which forces validation calls down |
| 1030 | * into this function always. |
| 1031 | */ |
Hannes Frederic Sowa | e3bc10b | 2013-10-24 07:48:24 +0200 | [diff] [blame] | 1032 | if (!rt->rt6i_node || (rt->rt6i_node->fn_sernum != cookie)) |
| 1033 | return NULL; |
Li RongQing | a4477c4 | 2012-11-07 21:56:33 +0000 | [diff] [blame] | 1034 | |
Hannes Frederic Sowa | e3bc10b | 2013-10-24 07:48:24 +0200 | [diff] [blame] | 1035 | if (rt6_check_expired(rt)) |
| 1036 | return NULL; |
| 1037 | |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 1038 | rt6_dst_from_metrics_check(rt); |
| 1039 | |
Hannes Frederic Sowa | e3bc10b | 2013-10-24 07:48:24 +0200 | [diff] [blame] | 1040 | return dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | } |
| 1042 | |
| 1043 | static struct dst_entry *ip6_negative_advice(struct dst_entry *dst) |
| 1044 | { |
| 1045 | struct rt6_info *rt = (struct rt6_info *) dst; |
| 1046 | |
| 1047 | if (rt) { |
YOSHIFUJI Hideaki / 吉藤英明 | 54c1a85 | 2010-03-28 07:15:45 +0000 | [diff] [blame] | 1048 | if (rt->rt6i_flags & RTF_CACHE) { |
| 1049 | if (rt6_check_expired(rt)) { |
| 1050 | ip6_del_rt(rt); |
| 1051 | dst = NULL; |
| 1052 | } |
| 1053 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | dst_release(dst); |
YOSHIFUJI Hideaki / 吉藤英明 | 54c1a85 | 2010-03-28 07:15:45 +0000 | [diff] [blame] | 1055 | dst = NULL; |
| 1056 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 54c1a85 | 2010-03-28 07:15:45 +0000 | [diff] [blame] | 1058 | return dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | } |
| 1060 | |
| 1061 | static void ip6_link_failure(struct sk_buff *skb) |
| 1062 | { |
| 1063 | struct rt6_info *rt; |
| 1064 | |
Alexey Dobriyan | 3ffe533 | 2010-02-18 08:25:24 +0000 | [diff] [blame] | 1065 | icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 1067 | rt = (struct rt6_info *) skb_dst(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | if (rt) { |
Hannes Frederic Sowa | 1eb4f75 | 2013-07-10 23:00:57 +0200 | [diff] [blame] | 1069 | if (rt->rt6i_flags & RTF_CACHE) { |
| 1070 | dst_hold(&rt->dst); |
| 1071 | if (ip6_del_rt(rt)) |
| 1072 | dst_free(&rt->dst); |
| 1073 | } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | rt->rt6i_node->fn_sernum = -1; |
Hannes Frederic Sowa | 1eb4f75 | 2013-07-10 23:00:57 +0200 | [diff] [blame] | 1075 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | } |
| 1077 | } |
| 1078 | |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame^] | 1079 | static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu) |
| 1080 | { |
| 1081 | struct net *net = dev_net(rt->dst.dev); |
| 1082 | |
| 1083 | rt->rt6i_flags |= RTF_MODIFIED; |
| 1084 | rt->rt6i_pmtu = mtu; |
| 1085 | rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires); |
| 1086 | } |
| 1087 | |
| 1088 | static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk, |
| 1089 | const struct ipv6hdr *iph, u32 mtu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | { |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 1091 | struct rt6_info *rt6 = (struct rt6_info *)dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame^] | 1093 | if (rt6->rt6i_flags & RTF_LOCAL) |
| 1094 | return; |
| 1095 | |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 1096 | dst_confirm(dst); |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame^] | 1097 | mtu = max_t(u32, mtu, IPV6_MIN_MTU); |
| 1098 | if (mtu >= dst_mtu(dst)) |
| 1099 | return; |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 1100 | |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame^] | 1101 | if (rt6->rt6i_flags & RTF_CACHE) { |
| 1102 | rt6_do_update_pmtu(rt6, mtu); |
| 1103 | } else { |
| 1104 | const struct in6_addr *daddr, *saddr; |
| 1105 | struct rt6_info *nrt6; |
Hagen Paul Pfeifer | 9d28971 | 2015-01-15 22:34:25 +0100 | [diff] [blame] | 1106 | |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame^] | 1107 | if (iph) { |
| 1108 | daddr = &iph->daddr; |
| 1109 | saddr = &iph->saddr; |
| 1110 | } else if (sk) { |
| 1111 | daddr = &sk->sk_v6_daddr; |
| 1112 | saddr = &inet6_sk(sk)->saddr; |
| 1113 | } else { |
| 1114 | return; |
| 1115 | } |
| 1116 | nrt6 = ip6_rt_cache_alloc(rt6, daddr, saddr); |
| 1117 | if (nrt6) { |
| 1118 | rt6_do_update_pmtu(nrt6, mtu); |
| 1119 | |
| 1120 | /* ip6_ins_rt(nrt6) will bump the |
| 1121 | * rt6->rt6i_node->fn_sernum |
| 1122 | * which will fail the next rt6_check() and |
| 1123 | * invalidate the sk->sk_dst_cache. |
| 1124 | */ |
| 1125 | ip6_ins_rt(nrt6); |
| 1126 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | } |
| 1128 | } |
| 1129 | |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame^] | 1130 | static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk, |
| 1131 | struct sk_buff *skb, u32 mtu) |
| 1132 | { |
| 1133 | __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu); |
| 1134 | } |
| 1135 | |
David S. Miller | 42ae66c | 2012-06-15 20:01:57 -0700 | [diff] [blame] | 1136 | void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu, |
| 1137 | int oif, u32 mark) |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 1138 | { |
| 1139 | const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; |
| 1140 | struct dst_entry *dst; |
| 1141 | struct flowi6 fl6; |
| 1142 | |
| 1143 | memset(&fl6, 0, sizeof(fl6)); |
| 1144 | fl6.flowi6_oif = oif; |
Lorenzo Colitti | 1b3c61d | 2014-05-13 10:17:34 -0700 | [diff] [blame] | 1145 | fl6.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark); |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 1146 | fl6.daddr = iph->daddr; |
| 1147 | fl6.saddr = iph->saddr; |
YOSHIFUJI Hideaki / 吉藤英明 | 6502ca5 | 2013-01-13 05:01:51 +0000 | [diff] [blame] | 1148 | fl6.flowlabel = ip6_flowinfo(iph); |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 1149 | |
| 1150 | dst = ip6_route_output(net, NULL, &fl6); |
| 1151 | if (!dst->error) |
Martin KaFai Lau | 45e4fd2 | 2015-05-22 20:56:00 -0700 | [diff] [blame^] | 1152 | __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu)); |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 1153 | dst_release(dst); |
| 1154 | } |
| 1155 | EXPORT_SYMBOL_GPL(ip6_update_pmtu); |
| 1156 | |
| 1157 | void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu) |
| 1158 | { |
| 1159 | ip6_update_pmtu(skb, sock_net(sk), mtu, |
| 1160 | sk->sk_bound_dev_if, sk->sk_mark); |
| 1161 | } |
| 1162 | EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu); |
| 1163 | |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 1164 | /* Handle redirects */ |
| 1165 | struct ip6rd_flowi { |
| 1166 | struct flowi6 fl6; |
| 1167 | struct in6_addr gateway; |
| 1168 | }; |
| 1169 | |
| 1170 | static struct rt6_info *__ip6_route_redirect(struct net *net, |
| 1171 | struct fib6_table *table, |
| 1172 | struct flowi6 *fl6, |
| 1173 | int flags) |
| 1174 | { |
| 1175 | struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6; |
| 1176 | struct rt6_info *rt; |
| 1177 | struct fib6_node *fn; |
| 1178 | |
| 1179 | /* Get the "current" route for this destination and |
| 1180 | * check if the redirect has come from approriate router. |
| 1181 | * |
| 1182 | * RFC 4861 specifies that redirects should only be |
| 1183 | * accepted if they come from the nexthop to the target. |
| 1184 | * Due to the way the routes are chosen, this notion |
| 1185 | * is a bit fuzzy and one might need to check all possible |
| 1186 | * routes. |
| 1187 | */ |
| 1188 | |
| 1189 | read_lock_bh(&table->tb6_lock); |
| 1190 | fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); |
| 1191 | restart: |
| 1192 | for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) { |
| 1193 | if (rt6_check_expired(rt)) |
| 1194 | continue; |
| 1195 | if (rt->dst.error) |
| 1196 | break; |
| 1197 | if (!(rt->rt6i_flags & RTF_GATEWAY)) |
| 1198 | continue; |
| 1199 | if (fl6->flowi6_oif != rt->dst.dev->ifindex) |
| 1200 | continue; |
| 1201 | if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway)) |
| 1202 | continue; |
| 1203 | break; |
| 1204 | } |
| 1205 | |
| 1206 | if (!rt) |
| 1207 | rt = net->ipv6.ip6_null_entry; |
| 1208 | else if (rt->dst.error) { |
| 1209 | rt = net->ipv6.ip6_null_entry; |
Martin KaFai Lau | b0a1ba5 | 2015-01-20 19:16:02 -0800 | [diff] [blame] | 1210 | goto out; |
| 1211 | } |
| 1212 | |
| 1213 | if (rt == net->ipv6.ip6_null_entry) { |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 1214 | fn = fib6_backtrack(fn, &fl6->saddr); |
| 1215 | if (fn) |
| 1216 | goto restart; |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 1217 | } |
Martin KaFai Lau | a3c00e4 | 2014-10-20 13:42:43 -0700 | [diff] [blame] | 1218 | |
Martin KaFai Lau | b0a1ba5 | 2015-01-20 19:16:02 -0800 | [diff] [blame] | 1219 | out: |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 1220 | dst_hold(&rt->dst); |
| 1221 | |
| 1222 | read_unlock_bh(&table->tb6_lock); |
| 1223 | |
| 1224 | return rt; |
| 1225 | }; |
| 1226 | |
| 1227 | static struct dst_entry *ip6_route_redirect(struct net *net, |
| 1228 | const struct flowi6 *fl6, |
| 1229 | const struct in6_addr *gateway) |
| 1230 | { |
| 1231 | int flags = RT6_LOOKUP_F_HAS_SADDR; |
| 1232 | struct ip6rd_flowi rdfl; |
| 1233 | |
| 1234 | rdfl.fl6 = *fl6; |
| 1235 | rdfl.gateway = *gateway; |
| 1236 | |
| 1237 | return fib6_rule_lookup(net, &rdfl.fl6, |
| 1238 | flags, __ip6_route_redirect); |
| 1239 | } |
| 1240 | |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 1241 | void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark) |
| 1242 | { |
| 1243 | const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; |
| 1244 | struct dst_entry *dst; |
| 1245 | struct flowi6 fl6; |
| 1246 | |
| 1247 | memset(&fl6, 0, sizeof(fl6)); |
Julian Anastasov | e374c61 | 2014-04-28 10:51:56 +0300 | [diff] [blame] | 1248 | fl6.flowi6_iif = LOOPBACK_IFINDEX; |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 1249 | fl6.flowi6_oif = oif; |
| 1250 | fl6.flowi6_mark = mark; |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 1251 | fl6.daddr = iph->daddr; |
| 1252 | fl6.saddr = iph->saddr; |
YOSHIFUJI Hideaki / 吉藤英明 | 6502ca5 | 2013-01-13 05:01:51 +0000 | [diff] [blame] | 1253 | fl6.flowlabel = ip6_flowinfo(iph); |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 1254 | |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 1255 | dst = ip6_route_redirect(net, &fl6, &ipv6_hdr(skb)->saddr); |
| 1256 | rt6_do_redirect(dst, NULL, skb); |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 1257 | dst_release(dst); |
| 1258 | } |
| 1259 | EXPORT_SYMBOL_GPL(ip6_redirect); |
| 1260 | |
Duan Jiong | c92a59e | 2013-08-22 12:07:35 +0800 | [diff] [blame] | 1261 | void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif, |
| 1262 | u32 mark) |
| 1263 | { |
| 1264 | const struct ipv6hdr *iph = ipv6_hdr(skb); |
| 1265 | const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb); |
| 1266 | struct dst_entry *dst; |
| 1267 | struct flowi6 fl6; |
| 1268 | |
| 1269 | memset(&fl6, 0, sizeof(fl6)); |
Julian Anastasov | e374c61 | 2014-04-28 10:51:56 +0300 | [diff] [blame] | 1270 | fl6.flowi6_iif = LOOPBACK_IFINDEX; |
Duan Jiong | c92a59e | 2013-08-22 12:07:35 +0800 | [diff] [blame] | 1271 | fl6.flowi6_oif = oif; |
| 1272 | fl6.flowi6_mark = mark; |
Duan Jiong | c92a59e | 2013-08-22 12:07:35 +0800 | [diff] [blame] | 1273 | fl6.daddr = msg->dest; |
| 1274 | fl6.saddr = iph->daddr; |
| 1275 | |
Duan Jiong | b55b76b | 2013-09-04 19:44:21 +0800 | [diff] [blame] | 1276 | dst = ip6_route_redirect(net, &fl6, &iph->saddr); |
| 1277 | rt6_do_redirect(dst, NULL, skb); |
Duan Jiong | c92a59e | 2013-08-22 12:07:35 +0800 | [diff] [blame] | 1278 | dst_release(dst); |
| 1279 | } |
| 1280 | |
David S. Miller | 3a5ad2e | 2012-07-12 00:08:07 -0700 | [diff] [blame] | 1281 | void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk) |
| 1282 | { |
| 1283 | ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark); |
| 1284 | } |
| 1285 | EXPORT_SYMBOL_GPL(ip6_sk_redirect); |
| 1286 | |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 1287 | static unsigned int ip6_default_advmss(const struct dst_entry *dst) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | { |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 1289 | struct net_device *dev = dst->dev; |
| 1290 | unsigned int mtu = dst_mtu(dst); |
| 1291 | struct net *net = dev_net(dev); |
| 1292 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr); |
| 1294 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 1295 | if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss) |
| 1296 | mtu = net->ipv6.sysctl.ip6_rt_min_advmss; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | |
| 1298 | /* |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1299 | * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and |
| 1300 | * corresponding MSS is IPV6_MAXPLEN - tcp_header_size. |
| 1301 | * IPV6_MAXPLEN is also valid and means: "any MSS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | * rely only on pmtu discovery" |
| 1303 | */ |
| 1304 | if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr)) |
| 1305 | mtu = IPV6_MAXPLEN; |
| 1306 | return mtu; |
| 1307 | } |
| 1308 | |
Steffen Klassert | ebb762f | 2011-11-23 02:12:51 +0000 | [diff] [blame] | 1309 | static unsigned int ip6_mtu(const struct dst_entry *dst) |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 1310 | { |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 1311 | const struct rt6_info *rt = (const struct rt6_info *)dst; |
| 1312 | unsigned int mtu = rt->rt6i_pmtu; |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 1313 | struct inet6_dev *idev; |
Steffen Klassert | 618f9bc | 2011-11-23 02:13:31 +0000 | [diff] [blame] | 1314 | |
| 1315 | if (mtu) |
Eric Dumazet | 30f78d8 | 2014-04-10 21:23:36 -0700 | [diff] [blame] | 1316 | goto out; |
Steffen Klassert | 618f9bc | 2011-11-23 02:13:31 +0000 | [diff] [blame] | 1317 | |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 1318 | mtu = dst_metric_raw(dst, RTAX_MTU); |
| 1319 | if (mtu) |
| 1320 | goto out; |
| 1321 | |
Steffen Klassert | 618f9bc | 2011-11-23 02:13:31 +0000 | [diff] [blame] | 1322 | mtu = IPV6_MIN_MTU; |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 1323 | |
| 1324 | rcu_read_lock(); |
| 1325 | idev = __in6_dev_get(dst->dev); |
| 1326 | if (idev) |
| 1327 | mtu = idev->cnf.mtu6; |
| 1328 | rcu_read_unlock(); |
| 1329 | |
Eric Dumazet | 30f78d8 | 2014-04-10 21:23:36 -0700 | [diff] [blame] | 1330 | out: |
| 1331 | return min_t(unsigned int, mtu, IP6_MAX_MTU); |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 1332 | } |
| 1333 | |
YOSHIFUJI Hideaki | 3b00944 | 2007-12-06 16:11:48 -0800 | [diff] [blame] | 1334 | static struct dst_entry *icmp6_dst_gc_list; |
| 1335 | static DEFINE_SPINLOCK(icmp6_dst_lock); |
Thomas Graf | 5d0bbee | 2006-08-04 03:37:36 -0700 | [diff] [blame] | 1336 | |
YOSHIFUJI Hideaki | 3b00944 | 2007-12-06 16:11:48 -0800 | [diff] [blame] | 1337 | struct dst_entry *icmp6_dst_alloc(struct net_device *dev, |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 1338 | struct flowi6 *fl6) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | { |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 1340 | struct dst_entry *dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | struct rt6_info *rt; |
| 1342 | struct inet6_dev *idev = in6_dev_get(dev); |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 1343 | struct net *net = dev_net(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1345 | if (unlikely(!idev)) |
Eric Dumazet | 122bdf6 | 2012-03-14 21:13:11 +0000 | [diff] [blame] | 1346 | return ERR_PTR(-ENODEV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | |
David S. Miller | 8b96d22 | 2012-06-11 02:01:56 -0700 | [diff] [blame] | 1348 | rt = ip6_dst_alloc(net, dev, 0, NULL); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1349 | if (unlikely(!rt)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | in6_dev_put(idev); |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 1351 | dst = ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | goto out; |
| 1353 | } |
| 1354 | |
Yan, Zheng | 8e2ec63 | 2011-09-05 21:34:30 +0000 | [diff] [blame] | 1355 | rt->dst.flags |= DST_HOST; |
| 1356 | rt->dst.output = ip6_output; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1357 | atomic_set(&rt->dst.__refcnt, 1); |
Julian Anastasov | 550bab4 | 2013-10-20 15:43:04 +0300 | [diff] [blame] | 1358 | rt->rt6i_gateway = fl6->daddr; |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 1359 | rt->rt6i_dst.addr = fl6->daddr; |
Yan, Zheng | 8e2ec63 | 2011-09-05 21:34:30 +0000 | [diff] [blame] | 1360 | rt->rt6i_dst.plen = 128; |
| 1361 | rt->rt6i_idev = idev; |
Li RongQing | 14edd87 | 2012-10-24 14:01:18 +0800 | [diff] [blame] | 1362 | dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | |
YOSHIFUJI Hideaki | 3b00944 | 2007-12-06 16:11:48 -0800 | [diff] [blame] | 1364 | spin_lock_bh(&icmp6_dst_lock); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1365 | rt->dst.next = icmp6_dst_gc_list; |
| 1366 | icmp6_dst_gc_list = &rt->dst; |
YOSHIFUJI Hideaki | 3b00944 | 2007-12-06 16:11:48 -0800 | [diff] [blame] | 1367 | spin_unlock_bh(&icmp6_dst_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 1369 | fib6_force_start_gc(net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 1371 | dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0); |
| 1372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | out: |
David S. Miller | 87a1157 | 2011-12-06 17:04:13 -0500 | [diff] [blame] | 1374 | return dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | } |
| 1376 | |
Stephen Hemminger | 3d0f24a | 2008-07-22 14:35:50 -0700 | [diff] [blame] | 1377 | int icmp6_dst_gc(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | { |
Hagen Paul Pfeifer | e9476e9 | 2011-02-25 05:45:19 +0000 | [diff] [blame] | 1379 | struct dst_entry *dst, **pprev; |
Stephen Hemminger | 3d0f24a | 2008-07-22 14:35:50 -0700 | [diff] [blame] | 1380 | int more = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | |
YOSHIFUJI Hideaki | 3b00944 | 2007-12-06 16:11:48 -0800 | [diff] [blame] | 1382 | spin_lock_bh(&icmp6_dst_lock); |
| 1383 | pprev = &icmp6_dst_gc_list; |
Thomas Graf | 5d0bbee | 2006-08-04 03:37:36 -0700 | [diff] [blame] | 1384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | while ((dst = *pprev) != NULL) { |
| 1386 | if (!atomic_read(&dst->__refcnt)) { |
| 1387 | *pprev = dst->next; |
| 1388 | dst_free(dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | } else { |
| 1390 | pprev = &dst->next; |
Stephen Hemminger | 3d0f24a | 2008-07-22 14:35:50 -0700 | [diff] [blame] | 1391 | ++more; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | } |
| 1393 | } |
| 1394 | |
YOSHIFUJI Hideaki | 3b00944 | 2007-12-06 16:11:48 -0800 | [diff] [blame] | 1395 | spin_unlock_bh(&icmp6_dst_lock); |
Thomas Graf | 5d0bbee | 2006-08-04 03:37:36 -0700 | [diff] [blame] | 1396 | |
Stephen Hemminger | 3d0f24a | 2008-07-22 14:35:50 -0700 | [diff] [blame] | 1397 | return more; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | } |
| 1399 | |
David S. Miller | 1e493d1 | 2008-09-10 17:27:15 -0700 | [diff] [blame] | 1400 | static void icmp6_clean_all(int (*func)(struct rt6_info *rt, void *arg), |
| 1401 | void *arg) |
| 1402 | { |
| 1403 | struct dst_entry *dst, **pprev; |
| 1404 | |
| 1405 | spin_lock_bh(&icmp6_dst_lock); |
| 1406 | pprev = &icmp6_dst_gc_list; |
| 1407 | while ((dst = *pprev) != NULL) { |
| 1408 | struct rt6_info *rt = (struct rt6_info *) dst; |
| 1409 | if (func(rt, arg)) { |
| 1410 | *pprev = dst->next; |
| 1411 | dst_free(dst); |
| 1412 | } else { |
| 1413 | pprev = &dst->next; |
| 1414 | } |
| 1415 | } |
| 1416 | spin_unlock_bh(&icmp6_dst_lock); |
| 1417 | } |
| 1418 | |
Daniel Lezcano | 569d364 | 2008-01-18 03:56:57 -0800 | [diff] [blame] | 1419 | static int ip6_dst_gc(struct dst_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | { |
Alexey Dobriyan | 86393e5 | 2009-08-29 01:34:49 +0000 | [diff] [blame] | 1421 | struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops); |
Daniel Lezcano | 7019b78 | 2008-03-04 13:50:14 -0800 | [diff] [blame] | 1422 | int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval; |
| 1423 | int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size; |
| 1424 | int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity; |
| 1425 | int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout; |
| 1426 | unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc; |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 1427 | int entries; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 1429 | entries = dst_entries_get_fast(ops); |
Michal Kubeček | 49a18d8 | 2013-08-01 10:04:24 +0200 | [diff] [blame] | 1430 | if (time_after(rt_last_gc + rt_min_interval, jiffies) && |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 1431 | entries <= rt_max_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | goto out; |
| 1433 | |
Benjamin Thery | 6891a34 | 2008-03-04 13:49:47 -0800 | [diff] [blame] | 1434 | net->ipv6.ip6_rt_gc_expire++; |
Li RongQing | 1495664 | 2014-05-19 17:30:28 +0800 | [diff] [blame] | 1435 | fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true); |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 1436 | entries = dst_entries_get_slow(ops); |
| 1437 | if (entries < ops->gc_thresh) |
Daniel Lezcano | 7019b78 | 2008-03-04 13:50:14 -0800 | [diff] [blame] | 1438 | net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | out: |
Daniel Lezcano | 7019b78 | 2008-03-04 13:50:14 -0800 | [diff] [blame] | 1440 | net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity; |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 1441 | return entries > rt_max_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | } |
| 1443 | |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 1444 | static int ip6_convert_metrics(struct mx6_config *mxc, |
| 1445 | const struct fib6_config *cfg) |
| 1446 | { |
| 1447 | struct nlattr *nla; |
| 1448 | int remaining; |
| 1449 | u32 *mp; |
| 1450 | |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1451 | if (!cfg->fc_mx) |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 1452 | return 0; |
| 1453 | |
| 1454 | mp = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL); |
| 1455 | if (unlikely(!mp)) |
| 1456 | return -ENOMEM; |
| 1457 | |
| 1458 | nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) { |
| 1459 | int type = nla_type(nla); |
| 1460 | |
| 1461 | if (type) { |
Daniel Borkmann | ea69763 | 2015-01-05 23:57:47 +0100 | [diff] [blame] | 1462 | u32 val; |
| 1463 | |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 1464 | if (unlikely(type > RTAX_MAX)) |
| 1465 | goto err; |
Daniel Borkmann | ea69763 | 2015-01-05 23:57:47 +0100 | [diff] [blame] | 1466 | if (type == RTAX_CC_ALGO) { |
| 1467 | char tmp[TCP_CA_NAME_MAX]; |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 1468 | |
Daniel Borkmann | ea69763 | 2015-01-05 23:57:47 +0100 | [diff] [blame] | 1469 | nla_strlcpy(tmp, nla, sizeof(tmp)); |
| 1470 | val = tcp_ca_get_key_by_name(tmp); |
| 1471 | if (val == TCP_CA_UNSPEC) |
| 1472 | goto err; |
| 1473 | } else { |
| 1474 | val = nla_get_u32(nla); |
| 1475 | } |
| 1476 | |
| 1477 | mp[type - 1] = val; |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 1478 | __set_bit(type - 1, mxc->mx_valid); |
| 1479 | } |
| 1480 | } |
| 1481 | |
| 1482 | mxc->mx = mp; |
| 1483 | |
| 1484 | return 0; |
| 1485 | err: |
| 1486 | kfree(mp); |
| 1487 | return -EINVAL; |
| 1488 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1490 | int ip6_route_add(struct fib6_config *cfg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | { |
| 1492 | int err; |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 1493 | struct net *net = cfg->fc_nlinfo.nl_net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | struct rt6_info *rt = NULL; |
| 1495 | struct net_device *dev = NULL; |
| 1496 | struct inet6_dev *idev = NULL; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1497 | struct fib6_table *table; |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 1498 | struct mx6_config mxc = { .mx = NULL, }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | int addr_type; |
| 1500 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1501 | if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | return -EINVAL; |
| 1503 | #ifndef CONFIG_IPV6_SUBTREES |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1504 | if (cfg->fc_src_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | return -EINVAL; |
| 1506 | #endif |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1507 | if (cfg->fc_ifindex) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | err = -ENODEV; |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 1509 | dev = dev_get_by_index(net, cfg->fc_ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | if (!dev) |
| 1511 | goto out; |
| 1512 | idev = in6_dev_get(dev); |
| 1513 | if (!idev) |
| 1514 | goto out; |
| 1515 | } |
| 1516 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1517 | if (cfg->fc_metric == 0) |
| 1518 | cfg->fc_metric = IP6_RT_PRIO_USER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | |
Matti Vaittinen | d71314b | 2011-11-14 00:14:49 +0000 | [diff] [blame] | 1520 | err = -ENOBUFS; |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1521 | if (cfg->fc_nlinfo.nlh && |
| 1522 | !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) { |
Matti Vaittinen | d71314b | 2011-11-14 00:14:49 +0000 | [diff] [blame] | 1523 | table = fib6_get_table(net, cfg->fc_table); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1524 | if (!table) { |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 1525 | pr_warn("NLM_F_CREATE should be specified when creating new route\n"); |
Matti Vaittinen | d71314b | 2011-11-14 00:14:49 +0000 | [diff] [blame] | 1526 | table = fib6_new_table(net, cfg->fc_table); |
| 1527 | } |
| 1528 | } else { |
| 1529 | table = fib6_new_table(net, cfg->fc_table); |
| 1530 | } |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1531 | |
| 1532 | if (!table) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1533 | goto out; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1534 | |
Sabrina Dubroca | c88507f | 2014-03-06 17:51:57 +0100 | [diff] [blame] | 1535 | rt = ip6_dst_alloc(net, NULL, (cfg->fc_flags & RTF_ADDRCONF) ? 0 : DST_NOCOUNT, table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1537 | if (!rt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | err = -ENOMEM; |
| 1539 | goto out; |
| 1540 | } |
| 1541 | |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 1542 | if (cfg->fc_flags & RTF_EXPIRES) |
| 1543 | rt6_set_expires(rt, jiffies + |
| 1544 | clock_t_to_jiffies(cfg->fc_expires)); |
| 1545 | else |
| 1546 | rt6_clean_expires(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1548 | if (cfg->fc_protocol == RTPROT_UNSPEC) |
| 1549 | cfg->fc_protocol = RTPROT_BOOT; |
| 1550 | rt->rt6i_protocol = cfg->fc_protocol; |
| 1551 | |
| 1552 | addr_type = ipv6_addr_type(&cfg->fc_dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | |
| 1554 | if (addr_type & IPV6_ADDR_MULTICAST) |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1555 | rt->dst.input = ip6_mc_input; |
Maciej Żenczykowski | ab79ad1 | 2010-09-27 00:07:02 +0000 | [diff] [blame] | 1556 | else if (cfg->fc_flags & RTF_LOCAL) |
| 1557 | rt->dst.input = ip6_input; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | else |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1559 | rt->dst.input = ip6_forward; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1561 | rt->dst.output = ip6_output; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1563 | ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len); |
| 1564 | rt->rt6i_dst.plen = cfg->fc_dst_len; |
Martin KaFai Lau | afc4eef | 2015-04-28 13:03:07 -0700 | [diff] [blame] | 1565 | if (rt->rt6i_dst.plen == 128) |
Michal Kubeček | e5fd387 | 2014-03-27 13:04:08 +0100 | [diff] [blame] | 1566 | rt->dst.flags |= DST_HOST; |
Michal Kubeček | e5fd387 | 2014-03-27 13:04:08 +0100 | [diff] [blame] | 1567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1568 | #ifdef CONFIG_IPV6_SUBTREES |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1569 | ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len); |
| 1570 | rt->rt6i_src.plen = cfg->fc_src_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | #endif |
| 1572 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1573 | rt->rt6i_metric = cfg->fc_metric; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | |
| 1575 | /* We cannot add true routes via loopback here, |
| 1576 | they would result in kernel looping; promote them to reject routes |
| 1577 | */ |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1578 | if ((cfg->fc_flags & RTF_REJECT) || |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1579 | (dev && (dev->flags & IFF_LOOPBACK) && |
| 1580 | !(addr_type & IPV6_ADDR_LOOPBACK) && |
| 1581 | !(cfg->fc_flags & RTF_LOCAL))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | /* hold loopback dev/idev if we haven't done so. */ |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 1583 | if (dev != net->loopback_dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | if (dev) { |
| 1585 | dev_put(dev); |
| 1586 | in6_dev_put(idev); |
| 1587 | } |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 1588 | dev = net->loopback_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | dev_hold(dev); |
| 1590 | idev = in6_dev_get(dev); |
| 1591 | if (!idev) { |
| 1592 | err = -ENODEV; |
| 1593 | goto out; |
| 1594 | } |
| 1595 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP; |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 1597 | switch (cfg->fc_type) { |
| 1598 | case RTN_BLACKHOLE: |
| 1599 | rt->dst.error = -EINVAL; |
Eric Dumazet | aad8872 | 2014-04-15 13:47:15 -0400 | [diff] [blame] | 1600 | rt->dst.output = dst_discard_sk; |
Kamala R | 7150aed | 2013-12-02 19:55:21 +0530 | [diff] [blame] | 1601 | rt->dst.input = dst_discard; |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 1602 | break; |
| 1603 | case RTN_PROHIBIT: |
| 1604 | rt->dst.error = -EACCES; |
Kamala R | 7150aed | 2013-12-02 19:55:21 +0530 | [diff] [blame] | 1605 | rt->dst.output = ip6_pkt_prohibit_out; |
| 1606 | rt->dst.input = ip6_pkt_prohibit; |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 1607 | break; |
Nicolas Dichtel | b4949ab | 2012-09-06 05:53:35 +0000 | [diff] [blame] | 1608 | case RTN_THROW: |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 1609 | default: |
Kamala R | 7150aed | 2013-12-02 19:55:21 +0530 | [diff] [blame] | 1610 | rt->dst.error = (cfg->fc_type == RTN_THROW) ? -EAGAIN |
| 1611 | : -ENETUNREACH; |
| 1612 | rt->dst.output = ip6_pkt_discard_out; |
| 1613 | rt->dst.input = ip6_pkt_discard; |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 1614 | break; |
| 1615 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | goto install_route; |
| 1617 | } |
| 1618 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1619 | if (cfg->fc_flags & RTF_GATEWAY) { |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 1620 | const struct in6_addr *gw_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | int gwa_type; |
| 1622 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1623 | gw_addr = &cfg->fc_gateway; |
Florian Westphal | 48ed7b2 | 2015-05-21 00:25:41 +0200 | [diff] [blame] | 1624 | |
| 1625 | /* if gw_addr is local we will fail to detect this in case |
| 1626 | * address is still TENTATIVE (DAD in progress). rt6_lookup() |
| 1627 | * will return already-added prefix route via interface that |
| 1628 | * prefix route was assigned to, which might be non-loopback. |
| 1629 | */ |
| 1630 | err = -EINVAL; |
| 1631 | if (ipv6_chk_addr_and_flags(net, gw_addr, NULL, 0, 0)) |
| 1632 | goto out; |
| 1633 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 1634 | rt->rt6i_gateway = *gw_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | gwa_type = ipv6_addr_type(gw_addr); |
| 1636 | |
| 1637 | if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) { |
| 1638 | struct rt6_info *grt; |
| 1639 | |
| 1640 | /* IPv6 strictly inhibits using not link-local |
| 1641 | addresses as nexthop address. |
| 1642 | Otherwise, router will not able to send redirects. |
| 1643 | It is very good, but in some (rare!) circumstances |
| 1644 | (SIT, PtP, NBMA NOARP links) it is handy to allow |
| 1645 | some exceptions. --ANK |
| 1646 | */ |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1647 | if (!(gwa_type & IPV6_ADDR_UNICAST)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | goto out; |
| 1649 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 1650 | grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | |
| 1652 | err = -EHOSTUNREACH; |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1653 | if (!grt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | goto out; |
| 1655 | if (dev) { |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 1656 | if (dev != grt->dst.dev) { |
Amerigo Wang | 94e187c | 2012-10-29 00:13:19 +0000 | [diff] [blame] | 1657 | ip6_rt_put(grt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | goto out; |
| 1659 | } |
| 1660 | } else { |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 1661 | dev = grt->dst.dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | idev = grt->rt6i_idev; |
| 1663 | dev_hold(dev); |
| 1664 | in6_dev_hold(grt->rt6i_idev); |
| 1665 | } |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1666 | if (!(grt->rt6i_flags & RTF_GATEWAY)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | err = 0; |
Amerigo Wang | 94e187c | 2012-10-29 00:13:19 +0000 | [diff] [blame] | 1668 | ip6_rt_put(grt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | |
| 1670 | if (err) |
| 1671 | goto out; |
| 1672 | } |
| 1673 | err = -EINVAL; |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1674 | if (!dev || (dev->flags & IFF_LOOPBACK)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | goto out; |
| 1676 | } |
| 1677 | |
| 1678 | err = -ENODEV; |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1679 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | goto out; |
| 1681 | |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 1682 | if (!ipv6_addr_any(&cfg->fc_prefsrc)) { |
| 1683 | if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) { |
| 1684 | err = -EINVAL; |
| 1685 | goto out; |
| 1686 | } |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 1687 | rt->rt6i_prefsrc.addr = cfg->fc_prefsrc; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 1688 | rt->rt6i_prefsrc.plen = 128; |
| 1689 | } else |
| 1690 | rt->rt6i_prefsrc.plen = 0; |
| 1691 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1692 | rt->rt6i_flags = cfg->fc_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | |
| 1694 | install_route: |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1695 | rt->dst.dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | rt->rt6i_idev = idev; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1697 | rt->rt6i_table = table; |
Daniel Lezcano | 63152fc | 2008-03-03 23:31:11 -0800 | [diff] [blame] | 1698 | |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 1699 | cfg->fc_nlinfo.nl_net = dev_net(dev); |
Daniel Lezcano | 63152fc | 2008-03-03 23:31:11 -0800 | [diff] [blame] | 1700 | |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 1701 | err = ip6_convert_metrics(&mxc, cfg); |
| 1702 | if (err) |
| 1703 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 1705 | err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, &mxc); |
| 1706 | |
| 1707 | kfree(mxc.mx); |
| 1708 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | out: |
| 1710 | if (dev) |
| 1711 | dev_put(dev); |
| 1712 | if (idev) |
| 1713 | in6_dev_put(idev); |
| 1714 | if (rt) |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1715 | dst_free(&rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | return err; |
| 1717 | } |
| 1718 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1719 | static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | { |
| 1721 | int err; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1722 | struct fib6_table *table; |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 1723 | struct net *net = dev_net(rt->dst.dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | |
Gao feng | 6825a26 | 2012-09-19 19:25:34 +0000 | [diff] [blame] | 1725 | if (rt == net->ipv6.ip6_null_entry) { |
| 1726 | err = -ENOENT; |
| 1727 | goto out; |
| 1728 | } |
Patrick McHardy | 6c813a7 | 2006-08-06 22:22:47 -0700 | [diff] [blame] | 1729 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1730 | table = rt->rt6i_table; |
| 1731 | write_lock_bh(&table->tb6_lock); |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1732 | err = fib6_del(rt, info); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1733 | write_unlock_bh(&table->tb6_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | |
Gao feng | 6825a26 | 2012-09-19 19:25:34 +0000 | [diff] [blame] | 1735 | out: |
Amerigo Wang | 94e187c | 2012-10-29 00:13:19 +0000 | [diff] [blame] | 1736 | ip6_rt_put(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | return err; |
| 1738 | } |
| 1739 | |
Thomas Graf | e0a1ad73 | 2006-08-22 00:00:21 -0700 | [diff] [blame] | 1740 | int ip6_del_rt(struct rt6_info *rt) |
| 1741 | { |
Denis V. Lunev | 4d1169c | 2008-01-10 03:26:13 -0800 | [diff] [blame] | 1742 | struct nl_info info = { |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 1743 | .nl_net = dev_net(rt->dst.dev), |
Denis V. Lunev | 4d1169c | 2008-01-10 03:26:13 -0800 | [diff] [blame] | 1744 | }; |
Denis V. Lunev | 528c4ce | 2007-12-13 09:45:12 -0800 | [diff] [blame] | 1745 | return __ip6_del_rt(rt, &info); |
Thomas Graf | e0a1ad73 | 2006-08-22 00:00:21 -0700 | [diff] [blame] | 1746 | } |
| 1747 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1748 | static int ip6_route_del(struct fib6_config *cfg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | { |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1750 | struct fib6_table *table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | struct fib6_node *fn; |
| 1752 | struct rt6_info *rt; |
| 1753 | int err = -ESRCH; |
| 1754 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 1755 | table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1756 | if (!table) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1757 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1759 | read_lock_bh(&table->tb6_lock); |
| 1760 | |
| 1761 | fn = fib6_locate(&table->tb6_root, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1762 | &cfg->fc_dst, cfg->fc_dst_len, |
| 1763 | &cfg->fc_src, cfg->fc_src_len); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | if (fn) { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1766 | for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) { |
Martin KaFai Lau | 1f56a01 | 2015-04-28 13:03:03 -0700 | [diff] [blame] | 1767 | if ((rt->rt6i_flags & RTF_CACHE) && |
| 1768 | !(cfg->fc_flags & RTF_CACHE)) |
| 1769 | continue; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1770 | if (cfg->fc_ifindex && |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 1771 | (!rt->dst.dev || |
| 1772 | rt->dst.dev->ifindex != cfg->fc_ifindex)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | continue; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1774 | if (cfg->fc_flags & RTF_GATEWAY && |
| 1775 | !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | continue; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1777 | if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | continue; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1779 | dst_hold(&rt->dst); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1780 | read_unlock_bh(&table->tb6_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1782 | return __ip6_del_rt(rt, &cfg->fc_nlinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | } |
| 1784 | } |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1785 | read_unlock_bh(&table->tb6_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | |
| 1787 | return err; |
| 1788 | } |
| 1789 | |
David S. Miller | 6700c27 | 2012-07-17 03:29:28 -0700 | [diff] [blame] | 1790 | static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb) |
YOSHIFUJI Hideaki | a627945 | 2006-08-23 17:18:26 -0700 | [diff] [blame] | 1791 | { |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1792 | struct net *net = dev_net(skb->dev); |
YOSHIFUJI Hideaki | a627945 | 2006-08-23 17:18:26 -0700 | [diff] [blame] | 1793 | struct netevent_redirect netevent; |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1794 | struct rt6_info *rt, *nrt = NULL; |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1795 | struct ndisc_options ndopts; |
| 1796 | struct inet6_dev *in6_dev; |
| 1797 | struct neighbour *neigh; |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 1798 | struct rd_msg *msg; |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 1799 | int optlen, on_link; |
| 1800 | u8 *lladdr; |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1801 | |
Simon Horman | 29a3cad | 2013-05-28 20:34:26 +0000 | [diff] [blame] | 1802 | optlen = skb_tail_pointer(skb) - skb_transport_header(skb); |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 1803 | optlen -= sizeof(*msg); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1804 | |
| 1805 | if (optlen < 0) { |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 1806 | net_dbg_ratelimited("rt6_do_redirect: packet too short\n"); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1807 | return; |
| 1808 | } |
| 1809 | |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 1810 | msg = (struct rd_msg *)icmp6_hdr(skb); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1811 | |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 1812 | if (ipv6_addr_is_multicast(&msg->dest)) { |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 1813 | net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n"); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1814 | return; |
| 1815 | } |
| 1816 | |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 1817 | on_link = 0; |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 1818 | if (ipv6_addr_equal(&msg->dest, &msg->target)) { |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1819 | on_link = 1; |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 1820 | } else if (ipv6_addr_type(&msg->target) != |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1821 | (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) { |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 1822 | net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n"); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1823 | return; |
| 1824 | } |
| 1825 | |
| 1826 | in6_dev = __in6_dev_get(skb->dev); |
| 1827 | if (!in6_dev) |
| 1828 | return; |
| 1829 | if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects) |
| 1830 | return; |
| 1831 | |
| 1832 | /* RFC2461 8.1: |
| 1833 | * The IP source address of the Redirect MUST be the same as the current |
| 1834 | * first-hop router for the specified ICMP Destination Address. |
| 1835 | */ |
| 1836 | |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 1837 | if (!ndisc_parse_options(msg->opt, optlen, &ndopts)) { |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1838 | net_dbg_ratelimited("rt6_redirect: invalid ND options\n"); |
| 1839 | return; |
| 1840 | } |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 1841 | |
| 1842 | lladdr = NULL; |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1843 | if (ndopts.nd_opts_tgt_lladdr) { |
| 1844 | lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr, |
| 1845 | skb->dev); |
| 1846 | if (!lladdr) { |
| 1847 | net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n"); |
| 1848 | return; |
| 1849 | } |
| 1850 | } |
| 1851 | |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 1852 | rt = (struct rt6_info *) dst; |
| 1853 | if (rt == net->ipv6.ip6_null_entry) { |
| 1854 | net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n"); |
| 1855 | return; |
| 1856 | } |
| 1857 | |
| 1858 | /* Redirect received -> path was valid. |
| 1859 | * Look, redirects are sent only in response to data packets, |
| 1860 | * so that this nexthop apparently is reachable. --ANK |
| 1861 | */ |
| 1862 | dst_confirm(&rt->dst); |
| 1863 | |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 1864 | neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1); |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1865 | if (!neigh) |
| 1866 | return; |
| 1867 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | /* |
| 1869 | * We have finally decided to accept it. |
| 1870 | */ |
| 1871 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1872 | neigh_update(neigh, lladdr, NUD_STALE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | NEIGH_UPDATE_F_WEAK_OVERRIDE| |
| 1874 | NEIGH_UPDATE_F_OVERRIDE| |
| 1875 | (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER| |
| 1876 | NEIGH_UPDATE_F_ISROUTER)) |
| 1877 | ); |
| 1878 | |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 1879 | nrt = ip6_rt_copy(rt, &msg->dest); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1880 | if (!nrt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | goto out; |
| 1882 | |
| 1883 | nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE; |
| 1884 | if (on_link) |
| 1885 | nrt->rt6i_flags &= ~RTF_GATEWAY; |
| 1886 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 1887 | nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | |
Thomas Graf | 40e22e8 | 2006-08-22 00:00:45 -0700 | [diff] [blame] | 1889 | if (ip6_ins_rt(nrt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | goto out; |
| 1891 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1892 | netevent.old = &rt->dst; |
| 1893 | netevent.new = &nrt->dst; |
YOSHIFUJI Hideaki / 吉藤英明 | 71bcdba | 2013-01-05 16:34:51 +0000 | [diff] [blame] | 1894 | netevent.daddr = &msg->dest; |
YOSHIFUJI Hideaki / 吉藤英明 | 6059283 | 2013-01-14 09:28:27 +0000 | [diff] [blame] | 1895 | netevent.neigh = neigh; |
Tom Tucker | 8d71740 | 2006-07-30 20:43:36 -0700 | [diff] [blame] | 1896 | call_netevent_notifiers(NETEVENT_REDIRECT, &netevent); |
| 1897 | |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1898 | if (rt->rt6i_flags & RTF_CACHE) { |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 1899 | rt = (struct rt6_info *) dst_clone(&rt->dst); |
Thomas Graf | e0a1ad73 | 2006-08-22 00:00:21 -0700 | [diff] [blame] | 1900 | ip6_del_rt(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | } |
| 1902 | |
| 1903 | out: |
David S. Miller | e8599ff | 2012-07-11 23:43:53 -0700 | [diff] [blame] | 1904 | neigh_release(neigh); |
David S. Miller | 6e157b6 | 2012-07-12 00:05:02 -0700 | [diff] [blame] | 1905 | } |
| 1906 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | * Misc support functions |
| 1909 | */ |
| 1910 | |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 1911 | static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from) |
| 1912 | { |
| 1913 | BUG_ON(from->dst.from); |
| 1914 | |
| 1915 | rt->rt6i_flags &= ~RTF_EXPIRES; |
| 1916 | dst_hold(&from->dst); |
| 1917 | rt->dst.from = &from->dst; |
| 1918 | dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true); |
| 1919 | } |
| 1920 | |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 1921 | static struct rt6_info *ip6_rt_copy(struct rt6_info *ort, |
Eric Dumazet | 21efcfa | 2011-07-19 20:18:36 +0000 | [diff] [blame] | 1922 | const struct in6_addr *dest) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | { |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 1924 | struct net *net = dev_net(ort->dst.dev); |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 1925 | struct rt6_info *rt; |
| 1926 | |
| 1927 | if (ort->rt6i_flags & RTF_CACHE) |
| 1928 | ort = (struct rt6_info *)ort->dst.from; |
| 1929 | |
| 1930 | rt = ip6_dst_alloc(net, ort->dst.dev, 0, |
| 1931 | ort->rt6i_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | |
| 1933 | if (rt) { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1934 | rt->dst.input = ort->dst.input; |
| 1935 | rt->dst.output = ort->dst.output; |
Yan, Zheng | 8e2ec63 | 2011-09-05 21:34:30 +0000 | [diff] [blame] | 1936 | rt->dst.flags |= DST_HOST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 1938 | rt->rt6i_dst.addr = *dest; |
Yan, Zheng | 8e2ec63 | 2011-09-05 21:34:30 +0000 | [diff] [blame] | 1939 | rt->rt6i_dst.plen = 128; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1940 | rt->dst.error = ort->dst.error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1941 | rt->rt6i_idev = ort->rt6i_idev; |
| 1942 | if (rt->rt6i_idev) |
| 1943 | in6_dev_hold(rt->rt6i_idev); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1944 | rt->dst.lastuse = jiffies; |
Martin KaFai Lau | 2647a9b | 2015-05-22 20:55:58 -0700 | [diff] [blame] | 1945 | rt->rt6i_gateway = ort->rt6i_gateway; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 1946 | rt->rt6i_flags = ort->rt6i_flags; |
Li RongQing | 24f5b85 | 2013-12-19 12:40:26 +0800 | [diff] [blame] | 1947 | rt6_set_from(rt, ort); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | rt->rt6i_metric = 0; |
| 1949 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | #ifdef CONFIG_IPV6_SUBTREES |
| 1951 | memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key)); |
| 1952 | #endif |
Florian Westphal | 0f6c639 | 2011-05-20 11:27:24 +0000 | [diff] [blame] | 1953 | memcpy(&rt->rt6i_prefsrc, &ort->rt6i_prefsrc, sizeof(struct rt6key)); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1954 | rt->rt6i_table = ort->rt6i_table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1955 | } |
| 1956 | return rt; |
| 1957 | } |
| 1958 | |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 1959 | #ifdef CONFIG_IPV6_ROUTE_INFO |
Daniel Lezcano | efa2cea | 2008-03-04 13:46:48 -0800 | [diff] [blame] | 1960 | static struct rt6_info *rt6_get_route_info(struct net *net, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 1961 | const struct in6_addr *prefix, int prefixlen, |
| 1962 | const struct in6_addr *gwaddr, int ifindex) |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 1963 | { |
| 1964 | struct fib6_node *fn; |
| 1965 | struct rt6_info *rt = NULL; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1966 | struct fib6_table *table; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 1967 | |
Daniel Lezcano | efa2cea | 2008-03-04 13:46:48 -0800 | [diff] [blame] | 1968 | table = fib6_get_table(net, RT6_TABLE_INFO); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 1969 | if (!table) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 1970 | return NULL; |
| 1971 | |
Li RongQing | 5744dd9 | 2012-09-11 21:59:01 +0000 | [diff] [blame] | 1972 | read_lock_bh(&table->tb6_lock); |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 1973 | fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 1974 | if (!fn) |
| 1975 | goto out; |
| 1976 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1977 | for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) { |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 1978 | if (rt->dst.dev->ifindex != ifindex) |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 1979 | continue; |
| 1980 | if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY)) |
| 1981 | continue; |
| 1982 | if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr)) |
| 1983 | continue; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1984 | dst_hold(&rt->dst); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 1985 | break; |
| 1986 | } |
| 1987 | out: |
Li RongQing | 5744dd9 | 2012-09-11 21:59:01 +0000 | [diff] [blame] | 1988 | read_unlock_bh(&table->tb6_lock); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 1989 | return rt; |
| 1990 | } |
| 1991 | |
Daniel Lezcano | efa2cea | 2008-03-04 13:46:48 -0800 | [diff] [blame] | 1992 | static struct rt6_info *rt6_add_route_info(struct net *net, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 1993 | const struct in6_addr *prefix, int prefixlen, |
| 1994 | const struct in6_addr *gwaddr, int ifindex, |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 1995 | unsigned int pref) |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 1996 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 1997 | struct fib6_config cfg = { |
| 1998 | .fc_table = RT6_TABLE_INFO, |
Rami Rosen | 238fc7e | 2008-02-09 23:43:11 -0800 | [diff] [blame] | 1999 | .fc_metric = IP6_RT_PRIO_USER, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2000 | .fc_ifindex = ifindex, |
| 2001 | .fc_dst_len = prefixlen, |
| 2002 | .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO | |
| 2003 | RTF_UP | RTF_PREF(pref), |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2004 | .fc_nlinfo.portid = 0, |
Daniel Lezcano | efa2cea | 2008-03-04 13:46:48 -0800 | [diff] [blame] | 2005 | .fc_nlinfo.nlh = NULL, |
| 2006 | .fc_nlinfo.nl_net = net, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2007 | }; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 2008 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2009 | cfg.fc_dst = *prefix; |
| 2010 | cfg.fc_gateway = *gwaddr; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2011 | |
YOSHIFUJI Hideaki | e317da9 | 2006-03-20 17:06:42 -0800 | [diff] [blame] | 2012 | /* We should treat it as a default route if prefix length is 0. */ |
| 2013 | if (!prefixlen) |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2014 | cfg.fc_flags |= RTF_DEFAULT; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 2015 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2016 | ip6_route_add(&cfg); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 2017 | |
Daniel Lezcano | efa2cea | 2008-03-04 13:46:48 -0800 | [diff] [blame] | 2018 | return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex); |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 2019 | } |
| 2020 | #endif |
| 2021 | |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 2022 | struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev) |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2023 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | struct rt6_info *rt; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2025 | struct fib6_table *table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2026 | |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2027 | table = fib6_get_table(dev_net(dev), RT6_TABLE_DFLT); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2028 | if (!table) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2029 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2030 | |
Li RongQing | 5744dd9 | 2012-09-11 21:59:01 +0000 | [diff] [blame] | 2031 | read_lock_bh(&table->tb6_lock); |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 2032 | for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) { |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 2033 | if (dev == rt->dst.dev && |
YOSHIFUJI Hideaki | 045927f | 2006-03-20 17:00:48 -0800 | [diff] [blame] | 2034 | ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | ipv6_addr_equal(&rt->rt6i_gateway, addr)) |
| 2036 | break; |
| 2037 | } |
| 2038 | if (rt) |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2039 | dst_hold(&rt->dst); |
Li RongQing | 5744dd9 | 2012-09-11 21:59:01 +0000 | [diff] [blame] | 2040 | read_unlock_bh(&table->tb6_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | return rt; |
| 2042 | } |
| 2043 | |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 2044 | struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr, |
YOSHIFUJI Hideaki | ebacaaa | 2006-03-20 17:04:53 -0800 | [diff] [blame] | 2045 | struct net_device *dev, |
| 2046 | unsigned int pref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2048 | struct fib6_config cfg = { |
| 2049 | .fc_table = RT6_TABLE_DFLT, |
Rami Rosen | 238fc7e | 2008-02-09 23:43:11 -0800 | [diff] [blame] | 2050 | .fc_metric = IP6_RT_PRIO_USER, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2051 | .fc_ifindex = dev->ifindex, |
| 2052 | .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT | |
| 2053 | RTF_UP | RTF_EXPIRES | RTF_PREF(pref), |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2054 | .fc_nlinfo.portid = 0, |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2055 | .fc_nlinfo.nlh = NULL, |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2056 | .fc_nlinfo.nl_net = dev_net(dev), |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2057 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2059 | cfg.fc_gateway = *gwaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2060 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2061 | ip6_route_add(&cfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2062 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | return rt6_get_dflt_router(gwaddr, dev); |
| 2064 | } |
| 2065 | |
Daniel Lezcano | 7b4da53 | 2008-03-04 13:47:14 -0800 | [diff] [blame] | 2066 | void rt6_purge_dflt_routers(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | { |
| 2068 | struct rt6_info *rt; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2069 | struct fib6_table *table; |
| 2070 | |
| 2071 | /* NOTE: Keep consistent with rt6_get_dflt_router */ |
Daniel Lezcano | 7b4da53 | 2008-03-04 13:47:14 -0800 | [diff] [blame] | 2072 | table = fib6_get_table(net, RT6_TABLE_DFLT); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2073 | if (!table) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2074 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | |
| 2076 | restart: |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2077 | read_lock_bh(&table->tb6_lock); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2078 | for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) { |
Lorenzo Colitti | 3e8b0ac | 2013-03-03 20:46:46 +0000 | [diff] [blame] | 2079 | if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF) && |
| 2080 | (!rt->rt6i_idev || rt->rt6i_idev->cnf.accept_ra != 2)) { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2081 | dst_hold(&rt->dst); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2082 | read_unlock_bh(&table->tb6_lock); |
Thomas Graf | e0a1ad73 | 2006-08-22 00:00:21 -0700 | [diff] [blame] | 2083 | ip6_del_rt(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | goto restart; |
| 2085 | } |
| 2086 | } |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2087 | read_unlock_bh(&table->tb6_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2088 | } |
| 2089 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2090 | static void rtmsg_to_fib6_config(struct net *net, |
| 2091 | struct in6_rtmsg *rtmsg, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2092 | struct fib6_config *cfg) |
| 2093 | { |
| 2094 | memset(cfg, 0, sizeof(*cfg)); |
| 2095 | |
| 2096 | cfg->fc_table = RT6_TABLE_MAIN; |
| 2097 | cfg->fc_ifindex = rtmsg->rtmsg_ifindex; |
| 2098 | cfg->fc_metric = rtmsg->rtmsg_metric; |
| 2099 | cfg->fc_expires = rtmsg->rtmsg_info; |
| 2100 | cfg->fc_dst_len = rtmsg->rtmsg_dst_len; |
| 2101 | cfg->fc_src_len = rtmsg->rtmsg_src_len; |
| 2102 | cfg->fc_flags = rtmsg->rtmsg_flags; |
| 2103 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2104 | cfg->fc_nlinfo.nl_net = net; |
Benjamin Thery | f1243c2 | 2008-02-26 18:10:03 -0800 | [diff] [blame] | 2105 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2106 | cfg->fc_dst = rtmsg->rtmsg_dst; |
| 2107 | cfg->fc_src = rtmsg->rtmsg_src; |
| 2108 | cfg->fc_gateway = rtmsg->rtmsg_gateway; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2109 | } |
| 2110 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2111 | int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2113 | struct fib6_config cfg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | struct in6_rtmsg rtmsg; |
| 2115 | int err; |
| 2116 | |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 2117 | switch (cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | case SIOCADDRT: /* Add a route */ |
| 2119 | case SIOCDELRT: /* Delete a route */ |
Eric W. Biederman | af31f41 | 2012-11-16 03:03:06 +0000 | [diff] [blame] | 2120 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2121 | return -EPERM; |
| 2122 | err = copy_from_user(&rtmsg, arg, |
| 2123 | sizeof(struct in6_rtmsg)); |
| 2124 | if (err) |
| 2125 | return -EFAULT; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2126 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2127 | rtmsg_to_fib6_config(net, &rtmsg, &cfg); |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | rtnl_lock(); |
| 2130 | switch (cmd) { |
| 2131 | case SIOCADDRT: |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2132 | err = ip6_route_add(&cfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2133 | break; |
| 2134 | case SIOCDELRT: |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2135 | err = ip6_route_del(&cfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | break; |
| 2137 | default: |
| 2138 | err = -EINVAL; |
| 2139 | } |
| 2140 | rtnl_unlock(); |
| 2141 | |
| 2142 | return err; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 2143 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | |
| 2145 | return -EINVAL; |
| 2146 | } |
| 2147 | |
| 2148 | /* |
| 2149 | * Drop the packet on the floor |
| 2150 | */ |
| 2151 | |
Brian Haley | d5fdd6b | 2009-06-23 04:31:07 -0700 | [diff] [blame] | 2152 | static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | { |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 2154 | int type; |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 2155 | struct dst_entry *dst = skb_dst(skb); |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 2156 | switch (ipstats_mib_noroutes) { |
| 2157 | case IPSTATS_MIB_INNOROUTES: |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 2158 | type = ipv6_addr_type(&ipv6_hdr(skb)->daddr); |
Ulrich Weber | 45bb006 | 2010-02-25 23:28:58 +0000 | [diff] [blame] | 2159 | if (type == IPV6_ADDR_ANY) { |
Denis V. Lunev | 3bd653c | 2008-10-08 10:54:51 -0700 | [diff] [blame] | 2160 | IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst), |
| 2161 | IPSTATS_MIB_INADDRERRORS); |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 2162 | break; |
| 2163 | } |
| 2164 | /* FALLTHROUGH */ |
| 2165 | case IPSTATS_MIB_OUTNOROUTES: |
Denis V. Lunev | 3bd653c | 2008-10-08 10:54:51 -0700 | [diff] [blame] | 2166 | IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst), |
| 2167 | ipstats_mib_noroutes); |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 2168 | break; |
| 2169 | } |
Alexey Dobriyan | 3ffe533 | 2010-02-18 08:25:24 +0000 | [diff] [blame] | 2170 | icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | kfree_skb(skb); |
| 2172 | return 0; |
| 2173 | } |
| 2174 | |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 2175 | static int ip6_pkt_discard(struct sk_buff *skb) |
| 2176 | { |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 2177 | return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES); |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 2178 | } |
| 2179 | |
Eric Dumazet | aad8872 | 2014-04-15 13:47:15 -0400 | [diff] [blame] | 2180 | static int ip6_pkt_discard_out(struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 2182 | skb->dev = skb_dst(skb)->dev; |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 2183 | return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | } |
| 2185 | |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 2186 | static int ip6_pkt_prohibit(struct sk_buff *skb) |
| 2187 | { |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 2188 | return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES); |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 2189 | } |
| 2190 | |
Eric Dumazet | aad8872 | 2014-04-15 13:47:15 -0400 | [diff] [blame] | 2191 | static int ip6_pkt_prohibit_out(struct sock *sk, struct sk_buff *skb) |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 2192 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 2193 | skb->dev = skb_dst(skb)->dev; |
YOSHIFUJI Hideaki | 612f09e | 2007-04-13 16:18:02 -0700 | [diff] [blame] | 2194 | return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES); |
Thomas Graf | 9ce8ade | 2006-10-18 20:46:54 -0700 | [diff] [blame] | 2195 | } |
| 2196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2197 | /* |
| 2198 | * Allocate a dst for local (unicast / anycast) address. |
| 2199 | */ |
| 2200 | |
| 2201 | struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev, |
| 2202 | const struct in6_addr *addr, |
David S. Miller | 8f03151 | 2011-12-06 16:48:14 -0500 | [diff] [blame] | 2203 | bool anycast) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | { |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2205 | struct net *net = dev_net(idev->dev); |
Hannes Frederic Sowa | a3300ef | 2013-12-07 03:33:45 +0100 | [diff] [blame] | 2206 | struct rt6_info *rt = ip6_dst_alloc(net, net->loopback_dev, |
| 2207 | DST_NOCOUNT, NULL); |
| 2208 | if (!rt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | return ERR_PTR(-ENOMEM); |
| 2210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | in6_dev_hold(idev); |
| 2212 | |
David S. Miller | 11d53b4 | 2011-06-24 15:23:34 -0700 | [diff] [blame] | 2213 | rt->dst.flags |= DST_HOST; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2214 | rt->dst.input = ip6_input; |
| 2215 | rt->dst.output = ip6_output; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | rt->rt6i_idev = idev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | |
| 2218 | rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP; |
YOSHIFUJI Hideaki | 58c4fb8 | 2005-12-21 22:56:42 +0900 | [diff] [blame] | 2219 | if (anycast) |
| 2220 | rt->rt6i_flags |= RTF_ANYCAST; |
| 2221 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | rt->rt6i_flags |= RTF_LOCAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2223 | |
Julian Anastasov | 550bab4 | 2013-10-20 15:43:04 +0300 | [diff] [blame] | 2224 | rt->rt6i_gateway = *addr; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2225 | rt->rt6i_dst.addr = *addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | rt->rt6i_dst.plen = 128; |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2227 | rt->rt6i_table = fib6_get_table(net, RT6_TABLE_LOCAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2229 | atomic_set(&rt->dst.__refcnt, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | |
| 2231 | return rt; |
| 2232 | } |
| 2233 | |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 2234 | int ip6_route_get_saddr(struct net *net, |
| 2235 | struct rt6_info *rt, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 2236 | const struct in6_addr *daddr, |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 2237 | unsigned int prefs, |
| 2238 | struct in6_addr *saddr) |
| 2239 | { |
Markus Stenberg | e16e888 | 2015-05-05 13:36:59 +0300 | [diff] [blame] | 2240 | struct inet6_dev *idev = |
| 2241 | rt ? ip6_dst_idev((struct dst_entry *)rt) : NULL; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 2242 | int err = 0; |
Markus Stenberg | e16e888 | 2015-05-05 13:36:59 +0300 | [diff] [blame] | 2243 | if (rt && rt->rt6i_prefsrc.plen) |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2244 | *saddr = rt->rt6i_prefsrc.addr; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 2245 | else |
| 2246 | err = ipv6_dev_get_saddr(net, idev ? idev->dev : NULL, |
| 2247 | daddr, prefs, saddr); |
| 2248 | return err; |
| 2249 | } |
| 2250 | |
| 2251 | /* remove deleted ip from prefsrc entries */ |
| 2252 | struct arg_dev_net_ip { |
| 2253 | struct net_device *dev; |
| 2254 | struct net *net; |
| 2255 | struct in6_addr *addr; |
| 2256 | }; |
| 2257 | |
| 2258 | static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg) |
| 2259 | { |
| 2260 | struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev; |
| 2261 | struct net *net = ((struct arg_dev_net_ip *)arg)->net; |
| 2262 | struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr; |
| 2263 | |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 2264 | if (((void *)rt->dst.dev == dev || !dev) && |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 2265 | rt != net->ipv6.ip6_null_entry && |
| 2266 | ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) { |
| 2267 | /* remove prefsrc entry */ |
| 2268 | rt->rt6i_prefsrc.plen = 0; |
| 2269 | } |
| 2270 | return 0; |
| 2271 | } |
| 2272 | |
| 2273 | void rt6_remove_prefsrc(struct inet6_ifaddr *ifp) |
| 2274 | { |
| 2275 | struct net *net = dev_net(ifp->idev->dev); |
| 2276 | struct arg_dev_net_ip adni = { |
| 2277 | .dev = ifp->idev->dev, |
| 2278 | .net = net, |
| 2279 | .addr = &ifp->addr, |
| 2280 | }; |
Li RongQing | 0c3584d | 2013-12-27 16:32:38 +0800 | [diff] [blame] | 2281 | fib6_clean_all(net, fib6_remove_prefsrc, &adni); |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 2282 | } |
| 2283 | |
Duan Jiong | be7a010 | 2014-05-15 15:56:14 +0800 | [diff] [blame] | 2284 | #define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT | RTF_GATEWAY) |
| 2285 | #define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE) |
| 2286 | |
| 2287 | /* Remove routers and update dst entries when gateway turn into host. */ |
| 2288 | static int fib6_clean_tohost(struct rt6_info *rt, void *arg) |
| 2289 | { |
| 2290 | struct in6_addr *gateway = (struct in6_addr *)arg; |
| 2291 | |
| 2292 | if ((((rt->rt6i_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) || |
| 2293 | ((rt->rt6i_flags & RTF_CACHE_GATEWAY) == RTF_CACHE_GATEWAY)) && |
| 2294 | ipv6_addr_equal(gateway, &rt->rt6i_gateway)) { |
| 2295 | return -1; |
| 2296 | } |
| 2297 | return 0; |
| 2298 | } |
| 2299 | |
| 2300 | void rt6_clean_tohost(struct net *net, struct in6_addr *gateway) |
| 2301 | { |
| 2302 | fib6_clean_all(net, fib6_clean_tohost, gateway); |
| 2303 | } |
| 2304 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 2305 | struct arg_dev_net { |
| 2306 | struct net_device *dev; |
| 2307 | struct net *net; |
| 2308 | }; |
| 2309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2310 | static int fib6_ifdown(struct rt6_info *rt, void *arg) |
| 2311 | { |
stephen hemminger | bc3ef66 | 2010-12-16 17:42:40 +0000 | [diff] [blame] | 2312 | const struct arg_dev_net *adn = arg; |
| 2313 | const struct net_device *dev = adn->dev; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 2314 | |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 2315 | if ((rt->dst.dev == dev || !dev) && |
David S. Miller | c159d30 | 2011-12-26 15:24:36 -0500 | [diff] [blame] | 2316 | rt != adn->net->ipv6.ip6_null_entry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2317 | return -1; |
David S. Miller | c159d30 | 2011-12-26 15:24:36 -0500 | [diff] [blame] | 2318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | return 0; |
| 2320 | } |
| 2321 | |
Daniel Lezcano | f3db485 | 2008-03-03 23:27:06 -0800 | [diff] [blame] | 2322 | void rt6_ifdown(struct net *net, struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | { |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 2324 | struct arg_dev_net adn = { |
| 2325 | .dev = dev, |
| 2326 | .net = net, |
| 2327 | }; |
| 2328 | |
Li RongQing | 0c3584d | 2013-12-27 16:32:38 +0800 | [diff] [blame] | 2329 | fib6_clean_all(net, fib6_ifdown, &adn); |
David S. Miller | 1e493d1 | 2008-09-10 17:27:15 -0700 | [diff] [blame] | 2330 | icmp6_clean_all(fib6_ifdown, &adn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | } |
| 2332 | |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 2333 | struct rt6_mtu_change_arg { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2334 | struct net_device *dev; |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 2335 | unsigned int mtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2336 | }; |
| 2337 | |
| 2338 | static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg) |
| 2339 | { |
| 2340 | struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg; |
| 2341 | struct inet6_dev *idev; |
| 2342 | |
| 2343 | /* In IPv6 pmtu discovery is not optional, |
| 2344 | so that RTAX_MTU lock cannot disable it. |
| 2345 | We still use this lock to block changes |
| 2346 | caused by addrconf/ndisc. |
| 2347 | */ |
| 2348 | |
| 2349 | idev = __in6_dev_get(arg->dev); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2350 | if (!idev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2351 | return 0; |
| 2352 | |
| 2353 | /* For administrative MTU increase, there is no way to discover |
| 2354 | IPv6 PMTU increase, so PMTU increase should be updated here. |
| 2355 | Since RFC 1981 doesn't include administrative MTU increase |
| 2356 | update PMTU increase is a MUST. (i.e. jumbo frame) |
| 2357 | */ |
| 2358 | /* |
| 2359 | If new MTU is less than route PMTU, this new MTU will be the |
| 2360 | lowest MTU in the path, update the route PMTU to reflect PMTU |
| 2361 | decreases; if new MTU is greater than route PMTU, and the |
| 2362 | old MTU is the lowest MTU in the path, update the route PMTU |
| 2363 | to reflect the increase. In this case if the other nodes' MTU |
| 2364 | also have the lowest MTU, TOO BIG MESSAGE will be lead to |
| 2365 | PMTU discouvery. |
| 2366 | */ |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 2367 | if (rt->dst.dev == arg->dev && |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 2368 | !dst_metric_locked(&rt->dst, RTAX_MTU)) { |
| 2369 | if (rt->rt6i_flags & RTF_CACHE) { |
| 2370 | /* For RTF_CACHE with rt6i_pmtu == 0 |
| 2371 | * (i.e. a redirected route), |
| 2372 | * the metrics of its rt->dst.from has already |
| 2373 | * been updated. |
| 2374 | */ |
| 2375 | if (rt->rt6i_pmtu && rt->rt6i_pmtu > arg->mtu) |
| 2376 | rt->rt6i_pmtu = arg->mtu; |
| 2377 | } else if (dst_mtu(&rt->dst) >= arg->mtu || |
| 2378 | (dst_mtu(&rt->dst) < arg->mtu && |
| 2379 | dst_mtu(&rt->dst) == idev->cnf.mtu6)) { |
| 2380 | dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu); |
| 2381 | } |
Simon Arlott | 566cfd8 | 2007-07-26 00:09:55 -0700 | [diff] [blame] | 2382 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | return 0; |
| 2384 | } |
| 2385 | |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 2386 | void rt6_mtu_change(struct net_device *dev, unsigned int mtu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | { |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2388 | struct rt6_mtu_change_arg arg = { |
| 2389 | .dev = dev, |
| 2390 | .mtu = mtu, |
| 2391 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2392 | |
Li RongQing | 0c3584d | 2013-12-27 16:32:38 +0800 | [diff] [blame] | 2393 | fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2394 | } |
| 2395 | |
Patrick McHardy | ef7c79e | 2007-06-05 12:38:30 -0700 | [diff] [blame] | 2396 | static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = { |
Thomas Graf | 5176f91 | 2006-08-26 20:13:18 -0700 | [diff] [blame] | 2397 | [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) }, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2398 | [RTA_OIF] = { .type = NLA_U32 }, |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2399 | [RTA_IIF] = { .type = NLA_U32 }, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2400 | [RTA_PRIORITY] = { .type = NLA_U32 }, |
| 2401 | [RTA_METRICS] = { .type = NLA_NESTED }, |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 2402 | [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) }, |
Lubomir Rintel | c78ba6d | 2015-03-11 15:39:21 +0100 | [diff] [blame] | 2403 | [RTA_PREF] = { .type = NLA_U8 }, |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2404 | }; |
| 2405 | |
| 2406 | static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 2407 | struct fib6_config *cfg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2408 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2409 | struct rtmsg *rtm; |
| 2410 | struct nlattr *tb[RTA_MAX+1]; |
Lubomir Rintel | c78ba6d | 2015-03-11 15:39:21 +0100 | [diff] [blame] | 2411 | unsigned int pref; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2412 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2413 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2414 | err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy); |
| 2415 | if (err < 0) |
| 2416 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2418 | err = -EINVAL; |
| 2419 | rtm = nlmsg_data(nlh); |
| 2420 | memset(cfg, 0, sizeof(*cfg)); |
| 2421 | |
| 2422 | cfg->fc_table = rtm->rtm_table; |
| 2423 | cfg->fc_dst_len = rtm->rtm_dst_len; |
| 2424 | cfg->fc_src_len = rtm->rtm_src_len; |
| 2425 | cfg->fc_flags = RTF_UP; |
| 2426 | cfg->fc_protocol = rtm->rtm_protocol; |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 2427 | cfg->fc_type = rtm->rtm_type; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2428 | |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 2429 | if (rtm->rtm_type == RTN_UNREACHABLE || |
| 2430 | rtm->rtm_type == RTN_BLACKHOLE || |
Nicolas Dichtel | b4949ab | 2012-09-06 05:53:35 +0000 | [diff] [blame] | 2431 | rtm->rtm_type == RTN_PROHIBIT || |
| 2432 | rtm->rtm_type == RTN_THROW) |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2433 | cfg->fc_flags |= RTF_REJECT; |
| 2434 | |
Maciej Żenczykowski | ab79ad1 | 2010-09-27 00:07:02 +0000 | [diff] [blame] | 2435 | if (rtm->rtm_type == RTN_LOCAL) |
| 2436 | cfg->fc_flags |= RTF_LOCAL; |
| 2437 | |
Martin KaFai Lau | 1f56a01 | 2015-04-28 13:03:03 -0700 | [diff] [blame] | 2438 | if (rtm->rtm_flags & RTM_F_CLONED) |
| 2439 | cfg->fc_flags |= RTF_CACHE; |
| 2440 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2441 | cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2442 | cfg->fc_nlinfo.nlh = nlh; |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 2443 | cfg->fc_nlinfo.nl_net = sock_net(skb->sk); |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2444 | |
| 2445 | if (tb[RTA_GATEWAY]) { |
Jiri Benc | 67b61f6 | 2015-03-29 16:59:26 +0200 | [diff] [blame] | 2446 | cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]); |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2447 | cfg->fc_flags |= RTF_GATEWAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | } |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2449 | |
| 2450 | if (tb[RTA_DST]) { |
| 2451 | int plen = (rtm->rtm_dst_len + 7) >> 3; |
| 2452 | |
| 2453 | if (nla_len(tb[RTA_DST]) < plen) |
| 2454 | goto errout; |
| 2455 | |
| 2456 | nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | } |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2458 | |
| 2459 | if (tb[RTA_SRC]) { |
| 2460 | int plen = (rtm->rtm_src_len + 7) >> 3; |
| 2461 | |
| 2462 | if (nla_len(tb[RTA_SRC]) < plen) |
| 2463 | goto errout; |
| 2464 | |
| 2465 | nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2466 | } |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2467 | |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 2468 | if (tb[RTA_PREFSRC]) |
Jiri Benc | 67b61f6 | 2015-03-29 16:59:26 +0200 | [diff] [blame] | 2469 | cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]); |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 2470 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2471 | if (tb[RTA_OIF]) |
| 2472 | cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]); |
| 2473 | |
| 2474 | if (tb[RTA_PRIORITY]) |
| 2475 | cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]); |
| 2476 | |
| 2477 | if (tb[RTA_METRICS]) { |
| 2478 | cfg->fc_mx = nla_data(tb[RTA_METRICS]); |
| 2479 | cfg->fc_mx_len = nla_len(tb[RTA_METRICS]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2480 | } |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2481 | |
| 2482 | if (tb[RTA_TABLE]) |
| 2483 | cfg->fc_table = nla_get_u32(tb[RTA_TABLE]); |
| 2484 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 2485 | if (tb[RTA_MULTIPATH]) { |
| 2486 | cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]); |
| 2487 | cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]); |
| 2488 | } |
| 2489 | |
Lubomir Rintel | c78ba6d | 2015-03-11 15:39:21 +0100 | [diff] [blame] | 2490 | if (tb[RTA_PREF]) { |
| 2491 | pref = nla_get_u8(tb[RTA_PREF]); |
| 2492 | if (pref != ICMPV6_ROUTER_PREF_LOW && |
| 2493 | pref != ICMPV6_ROUTER_PREF_HIGH) |
| 2494 | pref = ICMPV6_ROUTER_PREF_MEDIUM; |
| 2495 | cfg->fc_flags |= RTF_PREF(pref); |
| 2496 | } |
| 2497 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2498 | err = 0; |
| 2499 | errout: |
| 2500 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2501 | } |
| 2502 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 2503 | static int ip6_route_multipath(struct fib6_config *cfg, int add) |
| 2504 | { |
| 2505 | struct fib6_config r_cfg; |
| 2506 | struct rtnexthop *rtnh; |
| 2507 | int remaining; |
| 2508 | int attrlen; |
| 2509 | int err = 0, last_err = 0; |
| 2510 | |
Michal Kubeček | 35f1b4e | 2015-05-18 20:53:55 +0200 | [diff] [blame] | 2511 | remaining = cfg->fc_mp_len; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 2512 | beginning: |
| 2513 | rtnh = (struct rtnexthop *)cfg->fc_mp; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 2514 | |
| 2515 | /* Parse a Multipath Entry */ |
| 2516 | while (rtnh_ok(rtnh, remaining)) { |
| 2517 | memcpy(&r_cfg, cfg, sizeof(*cfg)); |
| 2518 | if (rtnh->rtnh_ifindex) |
| 2519 | r_cfg.fc_ifindex = rtnh->rtnh_ifindex; |
| 2520 | |
| 2521 | attrlen = rtnh_attrlen(rtnh); |
| 2522 | if (attrlen > 0) { |
| 2523 | struct nlattr *nla, *attrs = rtnh_attrs(rtnh); |
| 2524 | |
| 2525 | nla = nla_find(attrs, attrlen, RTA_GATEWAY); |
| 2526 | if (nla) { |
Jiri Benc | 67b61f6 | 2015-03-29 16:59:26 +0200 | [diff] [blame] | 2527 | r_cfg.fc_gateway = nla_get_in6_addr(nla); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 2528 | r_cfg.fc_flags |= RTF_GATEWAY; |
| 2529 | } |
| 2530 | } |
| 2531 | err = add ? ip6_route_add(&r_cfg) : ip6_route_del(&r_cfg); |
| 2532 | if (err) { |
| 2533 | last_err = err; |
| 2534 | /* If we are trying to remove a route, do not stop the |
| 2535 | * loop when ip6_route_del() fails (because next hop is |
| 2536 | * already gone), we should try to remove all next hops. |
| 2537 | */ |
| 2538 | if (add) { |
| 2539 | /* If add fails, we should try to delete all |
| 2540 | * next hops that have been already added. |
| 2541 | */ |
| 2542 | add = 0; |
Michal Kubeček | 35f1b4e | 2015-05-18 20:53:55 +0200 | [diff] [blame] | 2543 | remaining = cfg->fc_mp_len - remaining; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 2544 | goto beginning; |
| 2545 | } |
| 2546 | } |
Nicolas Dichtel | 1a72418 | 2012-11-01 22:58:22 +0000 | [diff] [blame] | 2547 | /* Because each route is added like a single route we remove |
Michal Kubeček | 2759647 | 2015-05-18 20:54:00 +0200 | [diff] [blame] | 2548 | * these flags after the first nexthop: if there is a collision, |
| 2549 | * we have already failed to add the first nexthop: |
| 2550 | * fib6_add_rt2node() has rejected it; when replacing, old |
| 2551 | * nexthops have been replaced by first new, the rest should |
| 2552 | * be added to it. |
Nicolas Dichtel | 1a72418 | 2012-11-01 22:58:22 +0000 | [diff] [blame] | 2553 | */ |
Michal Kubeček | 2759647 | 2015-05-18 20:54:00 +0200 | [diff] [blame] | 2554 | cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL | |
| 2555 | NLM_F_REPLACE); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 2556 | rtnh = rtnh_next(rtnh, &remaining); |
| 2557 | } |
| 2558 | |
| 2559 | return last_err; |
| 2560 | } |
| 2561 | |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 2562 | static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2563 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2564 | struct fib6_config cfg; |
| 2565 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2566 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2567 | err = rtm_to_fib6_config(skb, nlh, &cfg); |
| 2568 | if (err < 0) |
| 2569 | return err; |
| 2570 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 2571 | if (cfg.fc_mp) |
| 2572 | return ip6_route_multipath(&cfg, 0); |
| 2573 | else |
| 2574 | return ip6_route_del(&cfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | } |
| 2576 | |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 2577 | static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2578 | { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2579 | struct fib6_config cfg; |
| 2580 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2581 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2582 | err = rtm_to_fib6_config(skb, nlh, &cfg); |
| 2583 | if (err < 0) |
| 2584 | return err; |
| 2585 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 2586 | if (cfg.fc_mp) |
| 2587 | return ip6_route_multipath(&cfg, 1); |
| 2588 | else |
| 2589 | return ip6_route_add(&cfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | } |
| 2591 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 2592 | static inline size_t rt6_nlmsg_size(void) |
| 2593 | { |
| 2594 | return NLMSG_ALIGN(sizeof(struct rtmsg)) |
| 2595 | + nla_total_size(16) /* RTA_SRC */ |
| 2596 | + nla_total_size(16) /* RTA_DST */ |
| 2597 | + nla_total_size(16) /* RTA_GATEWAY */ |
| 2598 | + nla_total_size(16) /* RTA_PREFSRC */ |
| 2599 | + nla_total_size(4) /* RTA_TABLE */ |
| 2600 | + nla_total_size(4) /* RTA_IIF */ |
| 2601 | + nla_total_size(4) /* RTA_OIF */ |
| 2602 | + nla_total_size(4) /* RTA_PRIORITY */ |
Noriaki TAKAMIYA | 6a2b9ce | 2007-01-23 22:09:41 -0800 | [diff] [blame] | 2603 | + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */ |
Daniel Borkmann | ea69763 | 2015-01-05 23:57:47 +0100 | [diff] [blame] | 2604 | + nla_total_size(sizeof(struct rta_cacheinfo)) |
Lubomir Rintel | c78ba6d | 2015-03-11 15:39:21 +0100 | [diff] [blame] | 2605 | + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */ |
| 2606 | + nla_total_size(1); /* RTA_PREF */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 2607 | } |
| 2608 | |
Brian Haley | 191cd58 | 2008-08-14 15:33:21 -0700 | [diff] [blame] | 2609 | static int rt6_fill_node(struct net *net, |
| 2610 | struct sk_buff *skb, struct rt6_info *rt, |
Jamal Hadi Salim | 0d51aa8 | 2005-06-21 13:51:04 -0700 | [diff] [blame] | 2611 | struct in6_addr *dst, struct in6_addr *src, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2612 | int iif, int type, u32 portid, u32 seq, |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2613 | int prefix, int nowait, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2614 | { |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 2615 | u32 metrics[RTAX_MAX]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2616 | struct rtmsg *rtm; |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 2617 | struct nlmsghdr *nlh; |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 2618 | long expires; |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 2619 | u32 table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2620 | |
| 2621 | if (prefix) { /* user wants prefix routes only */ |
| 2622 | if (!(rt->rt6i_flags & RTF_PREFIX_RT)) { |
| 2623 | /* success since this is not a prefix route */ |
| 2624 | return 1; |
| 2625 | } |
| 2626 | } |
| 2627 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2628 | nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2629 | if (!nlh) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 2630 | return -EMSGSIZE; |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 2631 | |
| 2632 | rtm = nlmsg_data(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2633 | rtm->rtm_family = AF_INET6; |
| 2634 | rtm->rtm_dst_len = rt->rt6i_dst.plen; |
| 2635 | rtm->rtm_src_len = rt->rt6i_src.plen; |
| 2636 | rtm->rtm_tos = 0; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2637 | if (rt->rt6i_table) |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 2638 | table = rt->rt6i_table->tb6_id; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2639 | else |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 2640 | table = RT6_TABLE_UNSPEC; |
| 2641 | rtm->rtm_table = table; |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2642 | if (nla_put_u32(skb, RTA_TABLE, table)) |
| 2643 | goto nla_put_failure; |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 2644 | if (rt->rt6i_flags & RTF_REJECT) { |
| 2645 | switch (rt->dst.error) { |
| 2646 | case -EINVAL: |
| 2647 | rtm->rtm_type = RTN_BLACKHOLE; |
| 2648 | break; |
| 2649 | case -EACCES: |
| 2650 | rtm->rtm_type = RTN_PROHIBIT; |
| 2651 | break; |
Nicolas Dichtel | b4949ab | 2012-09-06 05:53:35 +0000 | [diff] [blame] | 2652 | case -EAGAIN: |
| 2653 | rtm->rtm_type = RTN_THROW; |
| 2654 | break; |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 2655 | default: |
| 2656 | rtm->rtm_type = RTN_UNREACHABLE; |
| 2657 | break; |
| 2658 | } |
| 2659 | } |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2660 | else if (rt->rt6i_flags & RTF_LOCAL) |
Maciej Żenczykowski | ab79ad1 | 2010-09-27 00:07:02 +0000 | [diff] [blame] | 2661 | rtm->rtm_type = RTN_LOCAL; |
David S. Miller | d191854 | 2011-12-28 20:19:20 -0500 | [diff] [blame] | 2662 | else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2663 | rtm->rtm_type = RTN_LOCAL; |
| 2664 | else |
| 2665 | rtm->rtm_type = RTN_UNICAST; |
| 2666 | rtm->rtm_flags = 0; |
| 2667 | rtm->rtm_scope = RT_SCOPE_UNIVERSE; |
| 2668 | rtm->rtm_protocol = rt->rt6i_protocol; |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2669 | if (rt->rt6i_flags & RTF_DYNAMIC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2670 | rtm->rtm_protocol = RTPROT_REDIRECT; |
Denis Ovsienko | f0396f60 | 2012-07-10 04:45:50 +0000 | [diff] [blame] | 2671 | else if (rt->rt6i_flags & RTF_ADDRCONF) { |
| 2672 | if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ROUTEINFO)) |
| 2673 | rtm->rtm_protocol = RTPROT_RA; |
| 2674 | else |
| 2675 | rtm->rtm_protocol = RTPROT_KERNEL; |
| 2676 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2677 | |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2678 | if (rt->rt6i_flags & RTF_CACHE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | rtm->rtm_flags |= RTM_F_CLONED; |
| 2680 | |
| 2681 | if (dst) { |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 2682 | if (nla_put_in6_addr(skb, RTA_DST, dst)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2683 | goto nla_put_failure; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2684 | rtm->rtm_dst_len = 128; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2685 | } else if (rtm->rtm_dst_len) |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 2686 | if (nla_put_in6_addr(skb, RTA_DST, &rt->rt6i_dst.addr)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2687 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2688 | #ifdef CONFIG_IPV6_SUBTREES |
| 2689 | if (src) { |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 2690 | if (nla_put_in6_addr(skb, RTA_SRC, src)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2691 | goto nla_put_failure; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2692 | rtm->rtm_src_len = 128; |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2693 | } else if (rtm->rtm_src_len && |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 2694 | nla_put_in6_addr(skb, RTA_SRC, &rt->rt6i_src.addr)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2695 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2696 | #endif |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2697 | if (iif) { |
| 2698 | #ifdef CONFIG_IPV6_MROUTE |
| 2699 | if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) { |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 2700 | int err = ip6mr_get_route(net, skb, rtm, nowait); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2701 | if (err <= 0) { |
| 2702 | if (!nowait) { |
| 2703 | if (err == 0) |
| 2704 | return 0; |
| 2705 | goto nla_put_failure; |
| 2706 | } else { |
| 2707 | if (err == -EMSGSIZE) |
| 2708 | goto nla_put_failure; |
| 2709 | } |
| 2710 | } |
| 2711 | } else |
| 2712 | #endif |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2713 | if (nla_put_u32(skb, RTA_IIF, iif)) |
| 2714 | goto nla_put_failure; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2715 | } else if (dst) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2716 | struct in6_addr saddr_buf; |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2717 | if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 && |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 2718 | nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2719 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | } |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 2721 | |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 2722 | if (rt->rt6i_prefsrc.plen) { |
| 2723 | struct in6_addr saddr_buf; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2724 | saddr_buf = rt->rt6i_prefsrc.addr; |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 2725 | if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2726 | goto nla_put_failure; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 2727 | } |
| 2728 | |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 2729 | memcpy(metrics, dst_metrics_ptr(&rt->dst), sizeof(metrics)); |
| 2730 | if (rt->rt6i_pmtu) |
| 2731 | metrics[RTAX_MTU - 1] = rt->rt6i_pmtu; |
| 2732 | if (rtnetlink_put_metrics(skb, metrics) < 0) |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 2733 | goto nla_put_failure; |
| 2734 | |
YOSHIFUJI Hideaki / 吉藤英明 | dd0cbf2 | 2013-01-17 12:53:15 +0000 | [diff] [blame] | 2735 | if (rt->rt6i_flags & RTF_GATEWAY) { |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 2736 | if (nla_put_in6_addr(skb, RTA_GATEWAY, &rt->rt6i_gateway) < 0) |
Eric Dumazet | 94f826b | 2012-03-27 09:53:52 +0000 | [diff] [blame] | 2737 | goto nla_put_failure; |
Eric Dumazet | 94f826b | 2012-03-27 09:53:52 +0000 | [diff] [blame] | 2738 | } |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 2739 | |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2740 | if (rt->dst.dev && |
| 2741 | nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex)) |
| 2742 | goto nla_put_failure; |
| 2743 | if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric)) |
| 2744 | goto nla_put_failure; |
Li Wei | 8253947 | 2012-07-29 16:01:30 +0000 | [diff] [blame] | 2745 | |
| 2746 | expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0; |
YOSHIFUJI Hideaki | 69cdf8f | 2008-05-19 16:55:13 -0700 | [diff] [blame] | 2747 | |
David S. Miller | 87a5069 | 2012-07-10 05:06:14 -0700 | [diff] [blame] | 2748 | if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0) |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 2749 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2750 | |
Lubomir Rintel | c78ba6d | 2015-03-11 15:39:21 +0100 | [diff] [blame] | 2751 | if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt->rt6i_flags))) |
| 2752 | goto nla_put_failure; |
| 2753 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 2754 | nlmsg_end(skb, nlh); |
| 2755 | return 0; |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 2756 | |
| 2757 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 2758 | nlmsg_cancel(skb, nlh); |
| 2759 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2760 | } |
| 2761 | |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 2762 | int rt6_dump_route(struct rt6_info *rt, void *p_arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2763 | { |
| 2764 | struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg; |
| 2765 | int prefix; |
| 2766 | |
Thomas Graf | 2d7202b | 2006-08-22 00:01:27 -0700 | [diff] [blame] | 2767 | if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) { |
| 2768 | struct rtmsg *rtm = nlmsg_data(arg->cb->nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2769 | prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0; |
| 2770 | } else |
| 2771 | prefix = 0; |
| 2772 | |
Brian Haley | 191cd58 | 2008-08-14 15:33:21 -0700 | [diff] [blame] | 2773 | return rt6_fill_node(arg->net, |
| 2774 | arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2775 | NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq, |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2776 | prefix, 0, NLM_F_MULTI); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | } |
| 2778 | |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 2779 | static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 2781 | struct net *net = sock_net(in_skb->sk); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2782 | struct nlattr *tb[RTA_MAX+1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2783 | struct rt6_info *rt; |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2784 | struct sk_buff *skb; |
| 2785 | struct rtmsg *rtm; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 2786 | struct flowi6 fl6; |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 2787 | int err, iif = 0, oif = 0; |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2788 | |
| 2789 | err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy); |
| 2790 | if (err < 0) |
| 2791 | goto errout; |
| 2792 | |
| 2793 | err = -EINVAL; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 2794 | memset(&fl6, 0, sizeof(fl6)); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2795 | |
| 2796 | if (tb[RTA_SRC]) { |
| 2797 | if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr)) |
| 2798 | goto errout; |
| 2799 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2800 | fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2801 | } |
| 2802 | |
| 2803 | if (tb[RTA_DST]) { |
| 2804 | if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr)) |
| 2805 | goto errout; |
| 2806 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2807 | fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2808 | } |
| 2809 | |
| 2810 | if (tb[RTA_IIF]) |
| 2811 | iif = nla_get_u32(tb[RTA_IIF]); |
| 2812 | |
| 2813 | if (tb[RTA_OIF]) |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 2814 | oif = nla_get_u32(tb[RTA_OIF]); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2815 | |
Lorenzo Colitti | 2e47b29 | 2014-05-15 16:38:41 -0700 | [diff] [blame] | 2816 | if (tb[RTA_MARK]) |
| 2817 | fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]); |
| 2818 | |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2819 | if (iif) { |
| 2820 | struct net_device *dev; |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 2821 | int flags = 0; |
| 2822 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2823 | dev = __dev_get_by_index(net, iif); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2824 | if (!dev) { |
| 2825 | err = -ENODEV; |
| 2826 | goto errout; |
| 2827 | } |
Shmulik Ladkani | 72331bc | 2012-04-01 04:03:45 +0000 | [diff] [blame] | 2828 | |
| 2829 | fl6.flowi6_iif = iif; |
| 2830 | |
| 2831 | if (!ipv6_addr_any(&fl6.saddr)) |
| 2832 | flags |= RT6_LOOKUP_F_HAS_SADDR; |
| 2833 | |
| 2834 | rt = (struct rt6_info *)ip6_route_input_lookup(net, dev, &fl6, |
| 2835 | flags); |
| 2836 | } else { |
| 2837 | fl6.flowi6_oif = oif; |
| 2838 | |
| 2839 | rt = (struct rt6_info *)ip6_route_output(net, NULL, &fl6); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2840 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2841 | |
| 2842 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2843 | if (!skb) { |
Amerigo Wang | 94e187c | 2012-10-29 00:13:19 +0000 | [diff] [blame] | 2844 | ip6_rt_put(rt); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2845 | err = -ENOBUFS; |
| 2846 | goto errout; |
| 2847 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | |
| 2849 | /* Reserve room for dummy headers, this skb can pass |
| 2850 | through good chunk of routing engine. |
| 2851 | */ |
Arnaldo Carvalho de Melo | 459a98e | 2007-03-19 15:30:44 -0700 | [diff] [blame] | 2852 | skb_reset_mac_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2853 | skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr)); |
| 2854 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2855 | skb_dst_set(skb, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2856 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 2857 | err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2858 | RTM_NEWROUTE, NETLINK_CB(in_skb).portid, |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2859 | nlh->nlmsg_seq, 0, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2860 | if (err < 0) { |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2861 | kfree_skb(skb); |
| 2862 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2863 | } |
| 2864 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2865 | err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid); |
Thomas Graf | ab364a6 | 2006-08-22 00:01:47 -0700 | [diff] [blame] | 2866 | errout: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2868 | } |
| 2869 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2870 | void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2871 | { |
| 2872 | struct sk_buff *skb; |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2873 | struct net *net = info->nl_net; |
Denis V. Lunev | 528c4ce | 2007-12-13 09:45:12 -0800 | [diff] [blame] | 2874 | u32 seq; |
| 2875 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2876 | |
Denis V. Lunev | 528c4ce | 2007-12-13 09:45:12 -0800 | [diff] [blame] | 2877 | err = -ENOBUFS; |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2878 | seq = info->nlh ? info->nlh->nlmsg_seq : 0; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 2879 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 2880 | skb = nlmsg_new(rt6_nlmsg_size(), gfp_any()); |
David S. Miller | 3830847 | 2011-12-03 18:02:47 -0500 | [diff] [blame] | 2881 | if (!skb) |
Thomas Graf | 21713eb | 2006-08-15 00:35:24 -0700 | [diff] [blame] | 2882 | goto errout; |
| 2883 | |
Brian Haley | 191cd58 | 2008-08-14 15:33:21 -0700 | [diff] [blame] | 2884 | err = rt6_fill_node(net, skb, rt, NULL, NULL, 0, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2885 | event, info->portid, seq, 0, 0, 0); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 2886 | if (err < 0) { |
| 2887 | /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */ |
| 2888 | WARN_ON(err == -EMSGSIZE); |
| 2889 | kfree_skb(skb); |
| 2890 | goto errout; |
| 2891 | } |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2892 | rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE, |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 2893 | info->nlh, gfp_any()); |
| 2894 | return; |
Thomas Graf | 21713eb | 2006-08-15 00:35:24 -0700 | [diff] [blame] | 2895 | errout: |
| 2896 | if (err < 0) |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 2897 | rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2898 | } |
| 2899 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 2900 | static int ip6_route_dev_notify(struct notifier_block *this, |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 2901 | unsigned long event, void *ptr) |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 2902 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 2903 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 2904 | struct net *net = dev_net(dev); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 2905 | |
| 2906 | if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2907 | net->ipv6.ip6_null_entry->dst.dev = dev; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 2908 | net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev); |
| 2909 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2910 | net->ipv6.ip6_prohibit_entry->dst.dev = dev; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 2911 | net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2912 | net->ipv6.ip6_blk_hole_entry->dst.dev = dev; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 2913 | net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev); |
| 2914 | #endif |
| 2915 | } |
| 2916 | |
| 2917 | return NOTIFY_OK; |
| 2918 | } |
| 2919 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2920 | /* |
| 2921 | * /proc |
| 2922 | */ |
| 2923 | |
| 2924 | #ifdef CONFIG_PROC_FS |
| 2925 | |
Alexey Dobriyan | 33120b3 | 2007-11-06 05:27:11 -0800 | [diff] [blame] | 2926 | static const struct file_operations ipv6_route_proc_fops = { |
| 2927 | .owner = THIS_MODULE, |
| 2928 | .open = ipv6_route_open, |
| 2929 | .read = seq_read, |
| 2930 | .llseek = seq_lseek, |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2931 | .release = seq_release_net, |
Alexey Dobriyan | 33120b3 | 2007-11-06 05:27:11 -0800 | [diff] [blame] | 2932 | }; |
| 2933 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2934 | static int rt6_stats_seq_show(struct seq_file *seq, void *v) |
| 2935 | { |
Daniel Lezcano | 69ddb80 | 2008-03-04 13:46:23 -0800 | [diff] [blame] | 2936 | struct net *net = (struct net *)seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2937 | seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n", |
Daniel Lezcano | 69ddb80 | 2008-03-04 13:46:23 -0800 | [diff] [blame] | 2938 | net->ipv6.rt6_stats->fib_nodes, |
| 2939 | net->ipv6.rt6_stats->fib_route_nodes, |
| 2940 | net->ipv6.rt6_stats->fib_rt_alloc, |
| 2941 | net->ipv6.rt6_stats->fib_rt_entries, |
| 2942 | net->ipv6.rt6_stats->fib_rt_cache, |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 2943 | dst_entries_get_slow(&net->ipv6.ip6_dst_ops), |
Daniel Lezcano | 69ddb80 | 2008-03-04 13:46:23 -0800 | [diff] [blame] | 2944 | net->ipv6.rt6_stats->fib_discarded_routes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | |
| 2946 | return 0; |
| 2947 | } |
| 2948 | |
| 2949 | static int rt6_stats_seq_open(struct inode *inode, struct file *file) |
| 2950 | { |
Pavel Emelyanov | de05c55 | 2008-07-18 04:07:21 -0700 | [diff] [blame] | 2951 | return single_open_net(inode, file, rt6_stats_seq_show); |
Daniel Lezcano | 69ddb80 | 2008-03-04 13:46:23 -0800 | [diff] [blame] | 2952 | } |
| 2953 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 2954 | static const struct file_operations rt6_stats_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2955 | .owner = THIS_MODULE, |
| 2956 | .open = rt6_stats_seq_open, |
| 2957 | .read = seq_read, |
| 2958 | .llseek = seq_lseek, |
Pavel Emelyanov | b6fcbdb | 2008-07-18 04:07:44 -0700 | [diff] [blame] | 2959 | .release = single_release_net, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2960 | }; |
| 2961 | #endif /* CONFIG_PROC_FS */ |
| 2962 | |
| 2963 | #ifdef CONFIG_SYSCTL |
| 2964 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2965 | static |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 2966 | int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2967 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 2968 | { |
Lucian Adrian Grijincu | c486da3 | 2011-02-24 19:48:03 +0000 | [diff] [blame] | 2969 | struct net *net; |
| 2970 | int delay; |
| 2971 | if (!write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2972 | return -EINVAL; |
Lucian Adrian Grijincu | c486da3 | 2011-02-24 19:48:03 +0000 | [diff] [blame] | 2973 | |
| 2974 | net = (struct net *)ctl->extra1; |
| 2975 | delay = net->ipv6.sysctl.flush_delay; |
| 2976 | proc_dointvec(ctl, write, buffer, lenp, ppos); |
Michal Kubeček | 2ac3ac8 | 2013-08-01 10:04:14 +0200 | [diff] [blame] | 2977 | fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0); |
Lucian Adrian Grijincu | c486da3 | 2011-02-24 19:48:03 +0000 | [diff] [blame] | 2978 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2979 | } |
| 2980 | |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 2981 | struct ctl_table ipv6_route_table_template[] = { |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2982 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | .procname = "flush", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 2984 | .data = &init_net.ipv6.sysctl.flush_delay, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2985 | .maxlen = sizeof(int), |
Dave Jones | 89c8b3a1 | 2005-04-28 12:11:49 -0700 | [diff] [blame] | 2986 | .mode = 0200, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 2987 | .proc_handler = ipv6_sysctl_rtcache_flush |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2988 | }, |
| 2989 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2990 | .procname = "gc_thresh", |
Daniel Lezcano | 9a7ec3a | 2008-03-04 13:48:53 -0800 | [diff] [blame] | 2991 | .data = &ip6_dst_ops_template.gc_thresh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2992 | .maxlen = sizeof(int), |
| 2993 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 2994 | .proc_handler = proc_dointvec, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2995 | }, |
| 2996 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2997 | .procname = "max_size", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 2998 | .data = &init_net.ipv6.sysctl.ip6_rt_max_size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2999 | .maxlen = sizeof(int), |
| 3000 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 3001 | .proc_handler = proc_dointvec, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3002 | }, |
| 3003 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3004 | .procname = "gc_min_interval", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 3005 | .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | .maxlen = sizeof(int), |
| 3007 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 3008 | .proc_handler = proc_dointvec_jiffies, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3009 | }, |
| 3010 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3011 | .procname = "gc_timeout", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 3012 | .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3013 | .maxlen = sizeof(int), |
| 3014 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 3015 | .proc_handler = proc_dointvec_jiffies, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3016 | }, |
| 3017 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3018 | .procname = "gc_interval", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 3019 | .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3020 | .maxlen = sizeof(int), |
| 3021 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 3022 | .proc_handler = proc_dointvec_jiffies, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3023 | }, |
| 3024 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3025 | .procname = "gc_elasticity", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 3026 | .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3027 | .maxlen = sizeof(int), |
| 3028 | .mode = 0644, |
Min Zhang | f3d3f61 | 2010-08-14 22:42:51 -0700 | [diff] [blame] | 3029 | .proc_handler = proc_dointvec, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3030 | }, |
| 3031 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3032 | .procname = "mtu_expires", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 3033 | .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3034 | .maxlen = sizeof(int), |
| 3035 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 3036 | .proc_handler = proc_dointvec_jiffies, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3037 | }, |
| 3038 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3039 | .procname = "min_adv_mss", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 3040 | .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3041 | .maxlen = sizeof(int), |
| 3042 | .mode = 0644, |
Min Zhang | f3d3f61 | 2010-08-14 22:42:51 -0700 | [diff] [blame] | 3043 | .proc_handler = proc_dointvec, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3044 | }, |
| 3045 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3046 | .procname = "gc_min_interval_ms", |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 3047 | .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3048 | .maxlen = sizeof(int), |
| 3049 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 3050 | .proc_handler = proc_dointvec_ms_jiffies, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3051 | }, |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 3052 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3053 | }; |
| 3054 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 3055 | struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net) |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 3056 | { |
| 3057 | struct ctl_table *table; |
| 3058 | |
| 3059 | table = kmemdup(ipv6_route_table_template, |
| 3060 | sizeof(ipv6_route_table_template), |
| 3061 | GFP_KERNEL); |
YOSHIFUJI Hideaki | 5ee0910 | 2008-02-28 00:24:28 +0900 | [diff] [blame] | 3062 | |
| 3063 | if (table) { |
| 3064 | table[0].data = &net->ipv6.sysctl.flush_delay; |
Lucian Adrian Grijincu | c486da3 | 2011-02-24 19:48:03 +0000 | [diff] [blame] | 3065 | table[0].extra1 = net; |
Alexey Dobriyan | 86393e5 | 2009-08-29 01:34:49 +0000 | [diff] [blame] | 3066 | table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh; |
YOSHIFUJI Hideaki | 5ee0910 | 2008-02-28 00:24:28 +0900 | [diff] [blame] | 3067 | table[2].data = &net->ipv6.sysctl.ip6_rt_max_size; |
| 3068 | table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval; |
| 3069 | table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout; |
| 3070 | table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval; |
| 3071 | table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity; |
| 3072 | table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires; |
| 3073 | table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss; |
Alexey Dobriyan | 9c69fab | 2009-12-18 20:11:03 -0800 | [diff] [blame] | 3074 | table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval; |
Eric W. Biederman | 464dc80 | 2012-11-16 03:02:59 +0000 | [diff] [blame] | 3075 | |
| 3076 | /* Don't export sysctls to unprivileged users */ |
| 3077 | if (net->user_ns != &init_user_ns) |
| 3078 | table[0].procname = NULL; |
YOSHIFUJI Hideaki | 5ee0910 | 2008-02-28 00:24:28 +0900 | [diff] [blame] | 3079 | } |
| 3080 | |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 3081 | return table; |
| 3082 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3083 | #endif |
| 3084 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 3085 | static int __net_init ip6_route_net_init(struct net *net) |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 3086 | { |
Pavel Emelyanov | 633d424 | 2008-04-21 14:25:23 -0700 | [diff] [blame] | 3087 | int ret = -ENOMEM; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3088 | |
Alexey Dobriyan | 86393e5 | 2009-08-29 01:34:49 +0000 | [diff] [blame] | 3089 | memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template, |
| 3090 | sizeof(net->ipv6.ip6_dst_ops)); |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 3091 | |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 3092 | if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0) |
| 3093 | goto out_ip6_dst_ops; |
| 3094 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3095 | net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template, |
| 3096 | sizeof(*net->ipv6.ip6_null_entry), |
| 3097 | GFP_KERNEL); |
| 3098 | if (!net->ipv6.ip6_null_entry) |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 3099 | goto out_ip6_dst_entries; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 3100 | net->ipv6.ip6_null_entry->dst.path = |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3101 | (struct dst_entry *)net->ipv6.ip6_null_entry; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 3102 | net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops; |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 3103 | dst_init_metrics(&net->ipv6.ip6_null_entry->dst, |
| 3104 | ip6_template_metrics, true); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3105 | |
| 3106 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 3107 | net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template, |
| 3108 | sizeof(*net->ipv6.ip6_prohibit_entry), |
| 3109 | GFP_KERNEL); |
Peter Zijlstra | 68fffc6 | 2008-10-07 14:12:10 -0700 | [diff] [blame] | 3110 | if (!net->ipv6.ip6_prohibit_entry) |
| 3111 | goto out_ip6_null_entry; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 3112 | net->ipv6.ip6_prohibit_entry->dst.path = |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3113 | (struct dst_entry *)net->ipv6.ip6_prohibit_entry; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 3114 | net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops; |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 3115 | dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst, |
| 3116 | ip6_template_metrics, true); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3117 | |
| 3118 | net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template, |
| 3119 | sizeof(*net->ipv6.ip6_blk_hole_entry), |
| 3120 | GFP_KERNEL); |
Peter Zijlstra | 68fffc6 | 2008-10-07 14:12:10 -0700 | [diff] [blame] | 3121 | if (!net->ipv6.ip6_blk_hole_entry) |
| 3122 | goto out_ip6_prohibit_entry; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 3123 | net->ipv6.ip6_blk_hole_entry->dst.path = |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3124 | (struct dst_entry *)net->ipv6.ip6_blk_hole_entry; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 3125 | net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops; |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 3126 | dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst, |
| 3127 | ip6_template_metrics, true); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3128 | #endif |
| 3129 | |
Peter Zijlstra | b339a47c | 2008-10-07 14:15:00 -0700 | [diff] [blame] | 3130 | net->ipv6.sysctl.flush_delay = 0; |
| 3131 | net->ipv6.sysctl.ip6_rt_max_size = 4096; |
| 3132 | net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2; |
| 3133 | net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ; |
| 3134 | net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ; |
| 3135 | net->ipv6.sysctl.ip6_rt_gc_elasticity = 9; |
| 3136 | net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ; |
| 3137 | net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40; |
| 3138 | |
Benjamin Thery | 6891a34 | 2008-03-04 13:49:47 -0800 | [diff] [blame] | 3139 | net->ipv6.ip6_rt_gc_expire = 30*HZ; |
| 3140 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3141 | ret = 0; |
| 3142 | out: |
| 3143 | return ret; |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 3144 | |
Peter Zijlstra | 68fffc6 | 2008-10-07 14:12:10 -0700 | [diff] [blame] | 3145 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 3146 | out_ip6_prohibit_entry: |
| 3147 | kfree(net->ipv6.ip6_prohibit_entry); |
| 3148 | out_ip6_null_entry: |
| 3149 | kfree(net->ipv6.ip6_null_entry); |
| 3150 | #endif |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 3151 | out_ip6_dst_entries: |
| 3152 | dst_entries_destroy(&net->ipv6.ip6_dst_ops); |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 3153 | out_ip6_dst_ops: |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 3154 | goto out; |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 3155 | } |
| 3156 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 3157 | static void __net_exit ip6_route_net_exit(struct net *net) |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 3158 | { |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3159 | kfree(net->ipv6.ip6_null_entry); |
| 3160 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 3161 | kfree(net->ipv6.ip6_prohibit_entry); |
| 3162 | kfree(net->ipv6.ip6_blk_hole_entry); |
| 3163 | #endif |
Xiaotian Feng | 41bb78b | 2010-11-02 16:11:05 +0000 | [diff] [blame] | 3164 | dst_entries_destroy(&net->ipv6.ip6_dst_ops); |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 3165 | } |
| 3166 | |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 3167 | static int __net_init ip6_route_net_init_late(struct net *net) |
| 3168 | { |
| 3169 | #ifdef CONFIG_PROC_FS |
Gao feng | d4beaa6 | 2013-02-18 01:34:54 +0000 | [diff] [blame] | 3170 | proc_create("ipv6_route", 0, net->proc_net, &ipv6_route_proc_fops); |
| 3171 | proc_create("rt6_stats", S_IRUGO, net->proc_net, &rt6_stats_seq_fops); |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 3172 | #endif |
| 3173 | return 0; |
| 3174 | } |
| 3175 | |
| 3176 | static void __net_exit ip6_route_net_exit_late(struct net *net) |
| 3177 | { |
| 3178 | #ifdef CONFIG_PROC_FS |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 3179 | remove_proc_entry("ipv6_route", net->proc_net); |
| 3180 | remove_proc_entry("rt6_stats", net->proc_net); |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 3181 | #endif |
| 3182 | } |
| 3183 | |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 3184 | static struct pernet_operations ip6_route_net_ops = { |
| 3185 | .init = ip6_route_net_init, |
| 3186 | .exit = ip6_route_net_exit, |
| 3187 | }; |
| 3188 | |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 3189 | static int __net_init ipv6_inetpeer_init(struct net *net) |
| 3190 | { |
| 3191 | struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL); |
| 3192 | |
| 3193 | if (!bp) |
| 3194 | return -ENOMEM; |
| 3195 | inet_peer_base_init(bp); |
| 3196 | net->ipv6.peers = bp; |
| 3197 | return 0; |
| 3198 | } |
| 3199 | |
| 3200 | static void __net_exit ipv6_inetpeer_exit(struct net *net) |
| 3201 | { |
| 3202 | struct inet_peer_base *bp = net->ipv6.peers; |
| 3203 | |
| 3204 | net->ipv6.peers = NULL; |
David S. Miller | 56a6b24 | 2012-06-09 16:32:41 -0700 | [diff] [blame] | 3205 | inetpeer_invalidate_tree(bp); |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 3206 | kfree(bp); |
| 3207 | } |
| 3208 | |
David S. Miller | 2b823f7 | 2012-06-09 19:00:16 -0700 | [diff] [blame] | 3209 | static struct pernet_operations ipv6_inetpeer_ops = { |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 3210 | .init = ipv6_inetpeer_init, |
| 3211 | .exit = ipv6_inetpeer_exit, |
| 3212 | }; |
| 3213 | |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 3214 | static struct pernet_operations ip6_route_net_late_ops = { |
| 3215 | .init = ip6_route_net_init_late, |
| 3216 | .exit = ip6_route_net_exit_late, |
| 3217 | }; |
| 3218 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3219 | static struct notifier_block ip6_route_dev_notifier = { |
| 3220 | .notifier_call = ip6_route_dev_notify, |
| 3221 | .priority = 0, |
| 3222 | }; |
| 3223 | |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3224 | int __init ip6_route_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3225 | { |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3226 | int ret; |
| 3227 | |
Daniel Lezcano | 9a7ec3a | 2008-03-04 13:48:53 -0800 | [diff] [blame] | 3228 | ret = -ENOMEM; |
| 3229 | ip6_dst_ops_template.kmem_cachep = |
| 3230 | kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0, |
| 3231 | SLAB_HWCACHE_ALIGN, NULL); |
| 3232 | if (!ip6_dst_ops_template.kmem_cachep) |
Fernando Carrijo | c19a28e | 2009-01-07 18:09:08 -0800 | [diff] [blame] | 3233 | goto out; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 3234 | |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 3235 | ret = dst_entries_init(&ip6_dst_blackhole_ops); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3236 | if (ret) |
Daniel Lezcano | bdb3289 | 2008-03-04 13:48:10 -0800 | [diff] [blame] | 3237 | goto out_kmem_cache; |
Daniel Lezcano | bdb3289 | 2008-03-04 13:48:10 -0800 | [diff] [blame] | 3238 | |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 3239 | ret = register_pernet_subsys(&ipv6_inetpeer_ops); |
| 3240 | if (ret) |
David S. Miller | e8803b6 | 2012-06-16 01:12:19 -0700 | [diff] [blame] | 3241 | goto out_dst_entries; |
Thomas Graf | 2a0c451 | 2012-06-14 23:00:17 +0000 | [diff] [blame] | 3242 | |
David S. Miller | 7e52b33 | 2012-06-15 15:51:55 -0700 | [diff] [blame] | 3243 | ret = register_pernet_subsys(&ip6_route_net_ops); |
| 3244 | if (ret) |
| 3245 | goto out_register_inetpeer; |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 3246 | |
Arnaud Ebalard | 5dc121e | 2008-10-01 02:37:56 -0700 | [diff] [blame] | 3247 | ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep; |
| 3248 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3249 | /* Registering of the loopback is done before this portion of code, |
| 3250 | * the loopback reference in rt6_info will not be taken, do it |
| 3251 | * manually for init_net */ |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 3252 | init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3253 | init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); |
| 3254 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 3255 | init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3256 | init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 3257 | init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3258 | init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); |
| 3259 | #endif |
David S. Miller | e8803b6 | 2012-06-16 01:12:19 -0700 | [diff] [blame] | 3260 | ret = fib6_init(); |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3261 | if (ret) |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3262 | goto out_register_subsys; |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3263 | |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3264 | ret = xfrm6_init(); |
| 3265 | if (ret) |
David S. Miller | e8803b6 | 2012-06-16 01:12:19 -0700 | [diff] [blame] | 3266 | goto out_fib6_init; |
Daniel Lezcano | c35b7e7 | 2007-12-08 00:14:11 -0800 | [diff] [blame] | 3267 | |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3268 | ret = fib6_rules_init(); |
| 3269 | if (ret) |
| 3270 | goto xfrm6_init; |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 3271 | |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 3272 | ret = register_pernet_subsys(&ip6_route_net_late_ops); |
| 3273 | if (ret) |
| 3274 | goto fib6_rules_init; |
| 3275 | |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3276 | ret = -ENOBUFS; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 3277 | if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) || |
| 3278 | __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) || |
| 3279 | __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL)) |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 3280 | goto out_register_late_subsys; |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3281 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3282 | ret = register_netdevice_notifier(&ip6_route_dev_notifier); |
Daniel Lezcano | cdb1876 | 2008-03-04 13:45:33 -0800 | [diff] [blame] | 3283 | if (ret) |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 3284 | goto out_register_late_subsys; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3285 | |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3286 | out: |
| 3287 | return ret; |
| 3288 | |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 3289 | out_register_late_subsys: |
| 3290 | unregister_pernet_subsys(&ip6_route_net_late_ops); |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3291 | fib6_rules_init: |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3292 | fib6_rules_cleanup(); |
| 3293 | xfrm6_init: |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3294 | xfrm6_fini(); |
Thomas Graf | 2a0c451 | 2012-06-14 23:00:17 +0000 | [diff] [blame] | 3295 | out_fib6_init: |
| 3296 | fib6_gc_cleanup(); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3297 | out_register_subsys: |
| 3298 | unregister_pernet_subsys(&ip6_route_net_ops); |
David S. Miller | 7e52b33 | 2012-06-15 15:51:55 -0700 | [diff] [blame] | 3299 | out_register_inetpeer: |
| 3300 | unregister_pernet_subsys(&ipv6_inetpeer_ops); |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 3301 | out_dst_entries: |
| 3302 | dst_entries_destroy(&ip6_dst_blackhole_ops); |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3303 | out_kmem_cache: |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 3304 | kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep); |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 3305 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3306 | } |
| 3307 | |
| 3308 | void ip6_route_cleanup(void) |
| 3309 | { |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3310 | unregister_netdevice_notifier(&ip6_route_dev_notifier); |
Thomas Graf | d189634 | 2012-06-18 12:08:33 +0000 | [diff] [blame] | 3311 | unregister_pernet_subsys(&ip6_route_net_late_ops); |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 3312 | fib6_rules_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3313 | xfrm6_fini(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3314 | fib6_gc_cleanup(); |
David S. Miller | c3426b4 | 2012-06-09 16:27:05 -0700 | [diff] [blame] | 3315 | unregister_pernet_subsys(&ipv6_inetpeer_ops); |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 3316 | unregister_pernet_subsys(&ip6_route_net_ops); |
Xiaotian Feng | 41bb78b | 2010-11-02 16:11:05 +0000 | [diff] [blame] | 3317 | dst_entries_destroy(&ip6_dst_blackhole_ops); |
Benjamin Thery | f2fc6a5 | 2008-03-04 13:49:23 -0800 | [diff] [blame] | 3318 | kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3319 | } |