blob: cf6fdeabb6f21c992ae7009a7723f856d54cbd8a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux INET6 implementation
3 * FIB front-end.
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * 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 Hideakic0bece92006-08-23 17:23:25 -070023 * Ville Nuorvala
24 * Fixed routing subtrees.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
26
Randy Dunlap4fc268d2006-01-11 12:17:47 -080027#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/errno.h>
29#include <linux/types.h>
30#include <linux/times.h>
31#include <linux/socket.h>
32#include <linux/sockios.h>
33#include <linux/net.h>
34#include <linux/route.h>
35#include <linux/netdevice.h>
36#include <linux/in6.h>
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090037#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/proc_fs.h>
41#include <linux/seq_file.h>
Daniel Lezcano5b7c9312008-03-03 23:28:58 -080042#include <linux/nsproxy.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020044#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <net/snmp.h>
46#include <net/ipv6.h>
47#include <net/ip6_fib.h>
48#include <net/ip6_route.h>
49#include <net/ndisc.h>
50#include <net/addrconf.h>
51#include <net/tcp.h>
52#include <linux/rtnetlink.h>
53#include <net/dst.h>
54#include <net/xfrm.h>
Tom Tucker8d717402006-07-30 20:43:36 -070055#include <net/netevent.h>
Thomas Graf21713eb2006-08-15 00:35:24 -070056#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#include <asm/uaccess.h>
59
60#ifdef CONFIG_SYSCTL
61#include <linux/sysctl.h>
62#endif
63
64/* Set to 3 to get tracing. */
65#define RT6_DEBUG 2
66
67#if RT6_DEBUG >= 3
68#define RDBG(x) printk x
69#define RT6_TRACE(x...) printk(KERN_DEBUG x)
70#else
71#define RDBG(x)
72#define RT6_TRACE(x...) do { ; } while (0)
73#endif
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static struct rt6_info * ip6_rt_copy(struct rt6_info *ort);
76static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080077static unsigned int ip6_default_advmss(const struct dst_entry *dst);
David S. Millerd33e4552010-12-14 13:01:14 -080078static unsigned int ip6_default_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static struct dst_entry *ip6_negative_advice(struct dst_entry *);
80static void ip6_dst_destroy(struct dst_entry *);
81static void ip6_dst_ifdown(struct dst_entry *,
82 struct net_device *dev, int how);
Daniel Lezcano569d3642008-01-18 03:56:57 -080083static int ip6_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85static int ip6_pkt_discard(struct sk_buff *skb);
86static int ip6_pkt_discard_out(struct sk_buff *skb);
87static void ip6_link_failure(struct sk_buff *skb);
88static void ip6_rt_update_pmtu(struct dst_entry *dst, u32 mtu);
89
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -080090#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -080091static struct rt6_info *rt6_add_route_info(struct net *net,
92 struct in6_addr *prefix, int prefixlen,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -080093 struct in6_addr *gwaddr, int ifindex,
94 unsigned pref);
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -080095static struct rt6_info *rt6_get_route_info(struct net *net,
96 struct in6_addr *prefix, int prefixlen,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -080097 struct in6_addr *gwaddr, int ifindex);
98#endif
99
David S. Miller06582542011-01-27 14:58:42 -0800100static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old)
101{
102 struct rt6_info *rt = (struct rt6_info *) dst;
103 struct inet_peer *peer;
104 u32 *p = NULL;
105
106 if (!rt->rt6i_peer)
107 rt6_bind_peer(rt, 1);
108
109 peer = rt->rt6i_peer;
110 if (peer) {
111 u32 *old_p = __DST_METRICS_PTR(old);
112 unsigned long prev, new;
113
114 p = peer->metrics;
115 if (inet_metrics_new(peer))
116 memcpy(p, old_p, sizeof(u32) * RTAX_MAX);
117
118 new = (unsigned long) p;
119 prev = cmpxchg(&dst->_metrics, old, new);
120
121 if (prev != old) {
122 p = __DST_METRICS_PTR(prev);
123 if (prev & DST_METRICS_READ_ONLY)
124 p = NULL;
125 }
126 }
127 return p;
128}
129
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -0800130static struct dst_ops ip6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .family = AF_INET6,
Harvey Harrison09640e62009-02-01 00:45:17 -0800132 .protocol = cpu_to_be16(ETH_P_IPV6),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 .gc = ip6_dst_gc,
134 .gc_thresh = 1024,
135 .check = ip6_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800136 .default_advmss = ip6_default_advmss,
David S. Millerd33e4552010-12-14 13:01:14 -0800137 .default_mtu = ip6_default_mtu,
David S. Miller06582542011-01-27 14:58:42 -0800138 .cow_metrics = ipv6_cow_metrics,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .destroy = ip6_dst_destroy,
140 .ifdown = ip6_dst_ifdown,
141 .negative_advice = ip6_negative_advice,
142 .link_failure = ip6_link_failure,
143 .update_pmtu = ip6_rt_update_pmtu,
Herbert Xu1ac06e02008-05-20 14:32:14 -0700144 .local_out = __ip6_local_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145};
146
Roland Dreierec831ea2011-01-31 13:16:00 -0800147static unsigned int ip6_blackhole_default_mtu(const struct dst_entry *dst)
148{
149 return 0;
150}
151
David S. Miller14e50e52007-05-24 18:17:54 -0700152static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, u32 mtu)
153{
154}
155
156static struct dst_ops ip6_dst_blackhole_ops = {
157 .family = AF_INET6,
Harvey Harrison09640e62009-02-01 00:45:17 -0800158 .protocol = cpu_to_be16(ETH_P_IPV6),
David S. Miller14e50e52007-05-24 18:17:54 -0700159 .destroy = ip6_dst_destroy,
160 .check = ip6_dst_check,
Roland Dreierec831ea2011-01-31 13:16:00 -0800161 .default_mtu = ip6_blackhole_default_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -0800162 .default_advmss = ip6_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -0700163 .update_pmtu = ip6_rt_blackhole_update_pmtu,
David S. Miller14e50e52007-05-24 18:17:54 -0700164};
165
David S. Miller62fa8a82011-01-26 20:51:05 -0800166static const u32 ip6_template_metrics[RTAX_MAX] = {
167 [RTAX_HOPLIMIT - 1] = 255,
168};
169
Daniel Lezcanobdb32892008-03-04 13:48:10 -0800170static struct rt6_info ip6_null_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700171 .dst = {
172 .__refcnt = ATOMIC_INIT(1),
173 .__use = 1,
174 .obsolete = -1,
175 .error = -ENETUNREACH,
Changli Gaod8d1f302010-06-10 23:31:35 -0700176 .input = ip6_pkt_discard,
177 .output = ip6_pkt_discard_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 },
179 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700180 .rt6i_protocol = RTPROT_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 .rt6i_metric = ~(u32) 0,
182 .rt6i_ref = ATOMIC_INIT(1),
183};
184
Thomas Graf101367c2006-08-04 03:39:02 -0700185#ifdef CONFIG_IPV6_MULTIPLE_TABLES
186
David S. Miller6723ab52006-10-18 21:20:57 -0700187static int ip6_pkt_prohibit(struct sk_buff *skb);
188static int ip6_pkt_prohibit_out(struct sk_buff *skb);
David S. Miller6723ab52006-10-18 21:20:57 -0700189
Adrian Bunk280a34c2008-04-21 02:29:32 -0700190static struct rt6_info ip6_prohibit_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700191 .dst = {
192 .__refcnt = ATOMIC_INIT(1),
193 .__use = 1,
194 .obsolete = -1,
195 .error = -EACCES,
Changli Gaod8d1f302010-06-10 23:31:35 -0700196 .input = ip6_pkt_prohibit,
197 .output = ip6_pkt_prohibit_out,
Thomas Graf101367c2006-08-04 03:39:02 -0700198 },
199 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700200 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700201 .rt6i_metric = ~(u32) 0,
202 .rt6i_ref = ATOMIC_INIT(1),
203};
204
Daniel Lezcanobdb32892008-03-04 13:48:10 -0800205static struct rt6_info ip6_blk_hole_entry_template = {
Changli Gaod8d1f302010-06-10 23:31:35 -0700206 .dst = {
207 .__refcnt = ATOMIC_INIT(1),
208 .__use = 1,
209 .obsolete = -1,
210 .error = -EINVAL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700211 .input = dst_discard,
212 .output = dst_discard,
Thomas Graf101367c2006-08-04 03:39:02 -0700213 },
214 .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP),
Jean-Mickael Guerin4f724272009-05-20 17:38:59 -0700215 .rt6i_protocol = RTPROT_KERNEL,
Thomas Graf101367c2006-08-04 03:39:02 -0700216 .rt6i_metric = ~(u32) 0,
217 .rt6i_ref = ATOMIC_INIT(1),
218};
219
220#endif
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/* allocate dst with ip6_dst_ops */
Benjamin Theryf2fc6a52008-03-04 13:49:23 -0800223static inline struct rt6_info *ip6_dst_alloc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
David S. Miller3c7bd1a2011-02-16 14:08:44 -0800225 return (struct rt6_info *)dst_alloc(ops, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
228static void ip6_dst_destroy(struct dst_entry *dst)
229{
230 struct rt6_info *rt = (struct rt6_info *)dst;
231 struct inet6_dev *idev = rt->rt6i_idev;
David S. Millerb3419362010-11-30 12:27:11 -0800232 struct inet_peer *peer = rt->rt6i_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 if (idev != NULL) {
235 rt->rt6i_idev = NULL;
236 in6_dev_put(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900237 }
David S. Millerb3419362010-11-30 12:27:11 -0800238 if (peer) {
David S. Millerb3419362010-11-30 12:27:11 -0800239 rt->rt6i_peer = NULL;
240 inet_putpeer(peer);
241 }
242}
243
David S. Miller6431cbc2011-02-07 20:38:06 -0800244static atomic_t __rt6_peer_genid = ATOMIC_INIT(0);
245
246static u32 rt6_peer_genid(void)
247{
248 return atomic_read(&__rt6_peer_genid);
249}
250
David S. Millerb3419362010-11-30 12:27:11 -0800251void rt6_bind_peer(struct rt6_info *rt, int create)
252{
253 struct inet_peer *peer;
254
David S. Millerb3419362010-11-30 12:27:11 -0800255 peer = inet_getpeer_v6(&rt->rt6i_dst.addr, create);
256 if (peer && cmpxchg(&rt->rt6i_peer, NULL, peer) != NULL)
257 inet_putpeer(peer);
David S. Miller6431cbc2011-02-07 20:38:06 -0800258 else
259 rt->rt6i_peer_genid = rt6_peer_genid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
263 int how)
264{
265 struct rt6_info *rt = (struct rt6_info *)dst;
266 struct inet6_dev *idev = rt->rt6i_idev;
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800267 struct net_device *loopback_dev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900268 dev_net(dev)->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800270 if (dev != loopback_dev && idev != NULL && idev->dev == dev) {
271 struct inet6_dev *loopback_idev =
272 in6_dev_get(loopback_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (loopback_idev != NULL) {
274 rt->rt6i_idev = loopback_idev;
275 in6_dev_put(idev);
276 }
277 }
278}
279
280static __inline__ int rt6_check_expired(const struct rt6_info *rt)
281{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000282 return (rt->rt6i_flags & RTF_EXPIRES) &&
283 time_after(jiffies, rt->rt6i_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Thomas Grafc71099a2006-08-04 23:20:06 -0700286static inline int rt6_need_strict(struct in6_addr *daddr)
287{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000288 return ipv6_addr_type(daddr) &
289 (IPV6_ADDR_MULTICAST | IPV6_ADDR_LINKLOCAL | IPV6_ADDR_LOOPBACK);
Thomas Grafc71099a2006-08-04 23:20:06 -0700290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/*
Thomas Grafc71099a2006-08-04 23:20:06 -0700293 * Route lookup. Any table->tb6_lock is implied.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
295
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800296static inline struct rt6_info *rt6_device_match(struct net *net,
297 struct rt6_info *rt,
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900298 struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 int oif,
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700300 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 struct rt6_info *local = NULL;
303 struct rt6_info *sprt;
304
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900305 if (!oif && ipv6_addr_any(saddr))
306 goto out;
307
Changli Gaod8d1f302010-06-10 23:31:35 -0700308 for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900309 struct net_device *dev = sprt->rt6i_dev;
310
311 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (dev->ifindex == oif)
313 return sprt;
314 if (dev->flags & IFF_LOOPBACK) {
315 if (sprt->rt6i_idev == NULL ||
316 sprt->rt6i_idev->dev->ifindex != oif) {
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700317 if (flags & RT6_LOOKUP_F_IFACE && oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 continue;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900319 if (local && (!oif ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 local->rt6i_idev->dev->ifindex == oif))
321 continue;
322 }
323 local = sprt;
324 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900325 } else {
326 if (ipv6_chk_addr(net, saddr, dev,
327 flags & RT6_LOOKUP_F_IFACE))
328 return sprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900332 if (oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (local)
334 return local;
335
YOSHIFUJI Hideakid4208952008-06-27 20:14:54 -0700336 if (flags & RT6_LOOKUP_F_IFACE)
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800337 return net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900339out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return rt;
341}
342
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800343#ifdef CONFIG_IPV6_ROUTER_PREF
344static void rt6_probe(struct rt6_info *rt)
345{
346 struct neighbour *neigh = rt ? rt->rt6i_nexthop : NULL;
347 /*
348 * Okay, this does not seem to be appropriate
349 * for now, however, we need to check if it
350 * is really so; aka Router Reachability Probing.
351 *
352 * Router Reachability Probe MUST be rate-limited
353 * to no more than one per minute.
354 */
355 if (!neigh || (neigh->nud_state & NUD_VALID))
356 return;
357 read_lock_bh(&neigh->lock);
358 if (!(neigh->nud_state & NUD_VALID) &&
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800359 time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) {
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800360 struct in6_addr mcaddr;
361 struct in6_addr *target;
362
363 neigh->updated = jiffies;
364 read_unlock_bh(&neigh->lock);
365
366 target = (struct in6_addr *)&neigh->primary_key;
367 addrconf_addr_solict_mult(target, &mcaddr);
368 ndisc_send_ns(rt->rt6i_dev, NULL, target, &mcaddr, NULL);
369 } else
370 read_unlock_bh(&neigh->lock);
371}
372#else
373static inline void rt6_probe(struct rt6_info *rt)
374{
YOSHIFUJI Hideaki27097252006-03-20 17:05:13 -0800375}
376#endif
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/*
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800379 * Default Router Selection (RFC 2461 6.3.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 */
Dave Jonesb6f99a22007-03-22 12:27:49 -0700381static inline int rt6_check_dev(struct rt6_info *rt, int oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800383 struct net_device *dev = rt->rt6i_dev;
David S. Miller161980f2007-04-06 11:42:27 -0700384 if (!oif || dev->ifindex == oif)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800385 return 2;
David S. Miller161980f2007-04-06 11:42:27 -0700386 if ((dev->flags & IFF_LOOPBACK) &&
387 rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
388 return 1;
389 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
Dave Jonesb6f99a22007-03-22 12:27:49 -0700392static inline int rt6_check_neigh(struct rt6_info *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800394 struct neighbour *neigh = rt->rt6i_nexthop;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800395 int m;
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700396 if (rt->rt6i_flags & RTF_NONEXTHOP ||
397 !(rt->rt6i_flags & RTF_GATEWAY))
398 m = 1;
399 else if (neigh) {
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800400 read_lock_bh(&neigh->lock);
401 if (neigh->nud_state & NUD_VALID)
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700402 m = 2;
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800403#ifdef CONFIG_IPV6_ROUTER_PREF
404 else if (neigh->nud_state & NUD_FAILED)
405 m = 0;
406#endif
407 else
YOSHIFUJI Hideakiea73ee22006-11-06 09:45:44 -0800408 m = 1;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800409 read_unlock_bh(&neigh->lock);
YOSHIFUJI Hideaki398bcbe2008-01-19 00:35:16 -0800410 } else
411 m = 0;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800412 return m;
413}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800415static int rt6_score_route(struct rt6_info *rt, int oif,
416 int strict)
417{
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700418 int m, n;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900419
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700420 m = rt6_check_dev(rt, oif);
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700421 if (!m && (strict & RT6_LOOKUP_F_IFACE))
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800422 return -1;
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -0800423#ifdef CONFIG_IPV6_ROUTER_PREF
424 m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
425#endif
YOSHIFUJI Hideaki4d0c5912006-05-26 13:23:41 -0700426 n = rt6_check_neigh(rt);
YOSHIFUJI Hideaki557e92e2006-11-06 09:45:45 -0800427 if (!n && (strict & RT6_LOOKUP_F_REACHABLE))
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800428 return -1;
429 return m;
430}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
David S. Millerf11e6652007-03-24 20:36:25 -0700432static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
433 int *mpri, struct rt6_info *match)
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800434{
David S. Millerf11e6652007-03-24 20:36:25 -0700435 int m;
436
437 if (rt6_check_expired(rt))
438 goto out;
439
440 m = rt6_score_route(rt, oif, strict);
441 if (m < 0)
442 goto out;
443
444 if (m > *mpri) {
445 if (strict & RT6_LOOKUP_F_REACHABLE)
446 rt6_probe(match);
447 *mpri = m;
448 match = rt;
449 } else if (strict & RT6_LOOKUP_F_REACHABLE) {
450 rt6_probe(rt);
451 }
452
453out:
454 return match;
455}
456
457static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
458 struct rt6_info *rr_head,
459 u32 metric, int oif, int strict)
460{
461 struct rt6_info *rt, *match;
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800462 int mpri = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
David S. Millerf11e6652007-03-24 20:36:25 -0700464 match = NULL;
465 for (rt = rr_head; rt && rt->rt6i_metric == metric;
Changli Gaod8d1f302010-06-10 23:31:35 -0700466 rt = rt->dst.rt6_next)
David S. Millerf11e6652007-03-24 20:36:25 -0700467 match = find_match(rt, oif, strict, &mpri, match);
468 for (rt = fn->leaf; rt && rt != rr_head && rt->rt6i_metric == metric;
Changli Gaod8d1f302010-06-10 23:31:35 -0700469 rt = rt->dst.rt6_next)
David S. Millerf11e6652007-03-24 20:36:25 -0700470 match = find_match(rt, oif, strict, &mpri, match);
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800471
David S. Millerf11e6652007-03-24 20:36:25 -0700472 return match;
473}
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800474
David S. Millerf11e6652007-03-24 20:36:25 -0700475static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
476{
477 struct rt6_info *match, *rt0;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800478 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
David S. Millerf11e6652007-03-24 20:36:25 -0700480 RT6_TRACE("%s(fn->leaf=%p, oif=%d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800481 __func__, fn->leaf, oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
David S. Millerf11e6652007-03-24 20:36:25 -0700483 rt0 = fn->rr_ptr;
484 if (!rt0)
485 fn->rr_ptr = rt0 = fn->leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
David S. Millerf11e6652007-03-24 20:36:25 -0700487 match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800489 if (!match &&
David S. Millerf11e6652007-03-24 20:36:25 -0700490 (strict & RT6_LOOKUP_F_REACHABLE)) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700491 struct rt6_info *next = rt0->dst.rt6_next;
David S. Millerf11e6652007-03-24 20:36:25 -0700492
YOSHIFUJI Hideaki554cfb72006-03-20 17:00:26 -0800493 /* no entries matched; do round-robin */
David S. Millerf11e6652007-03-24 20:36:25 -0700494 if (!next || next->rt6i_metric != rt0->rt6i_metric)
495 next = fn->leaf;
496
497 if (next != rt0)
498 fn->rr_ptr = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500
David S. Millerf11e6652007-03-24 20:36:25 -0700501 RT6_TRACE("%s() => %p\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800502 __func__, match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900504 net = dev_net(rt0->rt6i_dev);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000505 return match ? match : net->ipv6.ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800508#ifdef CONFIG_IPV6_ROUTE_INFO
509int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
510 struct in6_addr *gwaddr)
511{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900512 struct net *net = dev_net(dev);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800513 struct route_info *rinfo = (struct route_info *) opt;
514 struct in6_addr prefix_buf, *prefix;
515 unsigned int pref;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900516 unsigned long lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800517 struct rt6_info *rt;
518
519 if (len < sizeof(struct route_info)) {
520 return -EINVAL;
521 }
522
523 /* Sanity check for prefix_len and length */
524 if (rinfo->length > 3) {
525 return -EINVAL;
526 } else if (rinfo->prefix_len > 128) {
527 return -EINVAL;
528 } else if (rinfo->prefix_len > 64) {
529 if (rinfo->length < 2) {
530 return -EINVAL;
531 }
532 } else if (rinfo->prefix_len > 0) {
533 if (rinfo->length < 1) {
534 return -EINVAL;
535 }
536 }
537
538 pref = rinfo->route_pref;
539 if (pref == ICMPV6_ROUTER_PREF_INVALID)
Jens Rosenboom3933fc92009-09-10 06:25:11 +0000540 return -EINVAL;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800541
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900542 lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800543
544 if (rinfo->length == 3)
545 prefix = (struct in6_addr *)rinfo->prefix;
546 else {
547 /* this function is safe */
548 ipv6_addr_prefix(&prefix_buf,
549 (struct in6_addr *)rinfo->prefix,
550 rinfo->prefix_len);
551 prefix = &prefix_buf;
552 }
553
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800554 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, gwaddr,
555 dev->ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800556
557 if (rt && !lifetime) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700558 ip6_del_rt(rt);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800559 rt = NULL;
560 }
561
562 if (!rt && lifetime)
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -0800563 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800564 pref);
565 else if (rt)
566 rt->rt6i_flags = RTF_ROUTEINFO |
567 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
568
569 if (rt) {
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900570 if (!addrconf_finite_timeout(lifetime)) {
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800571 rt->rt6i_flags &= ~RTF_EXPIRES;
572 } else {
573 rt->rt6i_expires = jiffies + HZ * lifetime;
574 rt->rt6i_flags |= RTF_EXPIRES;
575 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700576 dst_release(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800577 }
578 return 0;
579}
580#endif
581
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800582#define BACKTRACK(__net, saddr) \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700583do { \
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800584 if (rt == __net->ipv6.ip6_null_entry) { \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700585 struct fib6_node *pn; \
Ville Nuorvalae0eda7b2006-10-16 22:11:11 -0700586 while (1) { \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700587 if (fn->fn_flags & RTN_TL_ROOT) \
588 goto out; \
589 pn = fn->parent; \
590 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) \
Kim Nordlund8bce65b2006-12-13 16:38:29 -0800591 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr); \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700592 else \
593 fn = pn; \
594 if (fn->fn_flags & RTN_RTINFO) \
595 goto restart; \
Thomas Grafc71099a2006-08-04 23:20:06 -0700596 } \
Thomas Grafc71099a2006-08-04 23:20:06 -0700597 } \
YOSHIFUJI Hideaki982f56f2006-08-23 17:22:39 -0700598} while(0)
Thomas Grafc71099a2006-08-04 23:20:06 -0700599
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800600static struct rt6_info *ip6_pol_route_lookup(struct net *net,
601 struct fib6_table *table,
Thomas Grafc71099a2006-08-04 23:20:06 -0700602 struct flowi *fl, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct fib6_node *fn;
605 struct rt6_info *rt;
606
Thomas Grafc71099a2006-08-04 23:20:06 -0700607 read_lock_bh(&table->tb6_lock);
608 fn = fib6_lookup(&table->tb6_root, &fl->fl6_dst, &fl->fl6_src);
609restart:
610 rt = fn->leaf;
YOSHIFUJI Hideakidd3abc42008-07-02 18:30:18 +0900611 rt = rt6_device_match(net, rt, &fl->fl6_src, fl->oif, flags);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800612 BACKTRACK(net, &fl->fl6_src);
Thomas Grafc71099a2006-08-04 23:20:06 -0700613out:
Changli Gaod8d1f302010-06-10 23:31:35 -0700614 dst_use(&rt->dst, jiffies);
Thomas Grafc71099a2006-08-04 23:20:06 -0700615 read_unlock_bh(&table->tb6_lock);
Thomas Grafc71099a2006-08-04 23:20:06 -0700616 return rt;
617
618}
619
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +0900620struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
621 const struct in6_addr *saddr, int oif, int strict)
Thomas Grafc71099a2006-08-04 23:20:06 -0700622{
623 struct flowi fl = {
624 .oif = oif,
Changli Gao58116622010-11-12 18:43:55 +0000625 .fl6_dst = *daddr,
Thomas Grafc71099a2006-08-04 23:20:06 -0700626 };
627 struct dst_entry *dst;
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700628 int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
Thomas Grafc71099a2006-08-04 23:20:06 -0700629
Thomas Grafadaa70b2006-10-13 15:01:03 -0700630 if (saddr) {
631 memcpy(&fl.fl6_src, saddr, sizeof(*saddr));
632 flags |= RT6_LOOKUP_F_HAS_SADDR;
633 }
634
Daniel Lezcano606a2b42008-03-04 13:45:59 -0800635 dst = fib6_rule_lookup(net, &fl, flags, ip6_pol_route_lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700636 if (dst->error == 0)
637 return (struct rt6_info *) dst;
638
639 dst_release(dst);
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return NULL;
642}
643
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900644EXPORT_SYMBOL(rt6_lookup);
645
Thomas Grafc71099a2006-08-04 23:20:06 -0700646/* ip6_ins_rt is called with FREE table->tb6_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 It takes new route entry, the addition fails by any reason the
648 route is freed. In any case, if caller does not hold it, it may
649 be destroyed.
650 */
651
Thomas Graf86872cb2006-08-22 00:01:08 -0700652static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
654 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -0700655 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Thomas Grafc71099a2006-08-04 23:20:06 -0700657 table = rt->rt6i_table;
658 write_lock_bh(&table->tb6_lock);
Thomas Graf86872cb2006-08-22 00:01:08 -0700659 err = fib6_add(&table->tb6_root, rt, info);
Thomas Grafc71099a2006-08-04 23:20:06 -0700660 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 return err;
663}
664
Thomas Graf40e22e82006-08-22 00:00:45 -0700665int ip6_ins_rt(struct rt6_info *rt)
666{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800667 struct nl_info info = {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900668 .nl_net = dev_net(rt->rt6i_dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -0800669 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -0800670 return __ip6_ins_rt(rt, &info);
Thomas Graf40e22e82006-08-22 00:00:45 -0700671}
672
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800673static struct rt6_info *rt6_alloc_cow(struct rt6_info *ort, struct in6_addr *daddr,
674 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 struct rt6_info *rt;
677
678 /*
679 * Clone the route.
680 */
681
682 rt = ip6_rt_copy(ort);
683
684 if (rt) {
David S. Miller14deae42009-01-04 16:04:39 -0800685 struct neighbour *neigh;
686 int attempts = !in_softirq();
687
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900688 if (!(rt->rt6i_flags&RTF_GATEWAY)) {
689 if (rt->rt6i_dst.plen != 128 &&
690 ipv6_addr_equal(&rt->rt6i_dst.addr, daddr))
691 rt->rt6i_flags |= RTF_ANYCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 ipv6_addr_copy(&rt->rt6i_gateway, daddr);
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +0900695 ipv6_addr_copy(&rt->rt6i_dst.addr, daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 rt->rt6i_dst.plen = 128;
697 rt->rt6i_flags |= RTF_CACHE;
Changli Gaod8d1f302010-06-10 23:31:35 -0700698 rt->dst.flags |= DST_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700#ifdef CONFIG_IPV6_SUBTREES
701 if (rt->rt6i_src.plen && saddr) {
702 ipv6_addr_copy(&rt->rt6i_src.addr, saddr);
703 rt->rt6i_src.plen = 128;
704 }
705#endif
706
David S. Miller14deae42009-01-04 16:04:39 -0800707 retry:
708 neigh = ndisc_get_neigh(rt->rt6i_dev, &rt->rt6i_gateway);
709 if (IS_ERR(neigh)) {
710 struct net *net = dev_net(rt->rt6i_dev);
711 int saved_rt_min_interval =
712 net->ipv6.sysctl.ip6_rt_gc_min_interval;
713 int saved_rt_elasticity =
714 net->ipv6.sysctl.ip6_rt_gc_elasticity;
715
716 if (attempts-- > 0) {
717 net->ipv6.sysctl.ip6_rt_gc_elasticity = 1;
718 net->ipv6.sysctl.ip6_rt_gc_min_interval = 0;
719
Alexey Dobriyan86393e52009-08-29 01:34:49 +0000720 ip6_dst_gc(&net->ipv6.ip6_dst_ops);
David S. Miller14deae42009-01-04 16:04:39 -0800721
722 net->ipv6.sysctl.ip6_rt_gc_elasticity =
723 saved_rt_elasticity;
724 net->ipv6.sysctl.ip6_rt_gc_min_interval =
725 saved_rt_min_interval;
726 goto retry;
727 }
728
729 if (net_ratelimit())
730 printk(KERN_WARNING
Ulrich Weber7e1b33e2010-09-27 15:02:18 -0700731 "ipv6: Neighbour table overflow.\n");
Changli Gaod8d1f302010-06-10 23:31:35 -0700732 dst_free(&rt->dst);
David S. Miller14deae42009-01-04 16:04:39 -0800733 return NULL;
734 }
735 rt->rt6i_nexthop = neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
YOSHIFUJI Hideaki95a9a5b2006-03-20 16:55:51 -0800739 return rt;
740}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800742static struct rt6_info *rt6_alloc_clone(struct rt6_info *ort, struct in6_addr *daddr)
743{
744 struct rt6_info *rt = ip6_rt_copy(ort);
745 if (rt) {
746 ipv6_addr_copy(&rt->rt6i_dst.addr, daddr);
747 rt->rt6i_dst.plen = 128;
748 rt->rt6i_flags |= RTF_CACHE;
Changli Gaod8d1f302010-06-10 23:31:35 -0700749 rt->dst.flags |= DST_HOST;
YOSHIFUJI Hideaki299d9932006-03-20 16:58:32 -0800750 rt->rt6i_nexthop = neigh_clone(ort->rt6i_nexthop);
751 }
752 return rt;
753}
754
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800755static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif,
756 struct flowi *fl, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
758 struct fib6_node *fn;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800759 struct rt6_info *rt, *nrt;
Thomas Grafc71099a2006-08-04 23:20:06 -0700760 int strict = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 int attempts = 3;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800762 int err;
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700763 int reachable = net->ipv6.devconf_all->forwarding ? 0 : RT6_LOOKUP_F_REACHABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700765 strict |= flags & RT6_LOOKUP_F_IFACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767relookup:
Thomas Grafc71099a2006-08-04 23:20:06 -0700768 read_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800770restart_2:
Thomas Grafc71099a2006-08-04 23:20:06 -0700771 fn = fib6_lookup(&table->tb6_root, &fl->fl6_dst, &fl->fl6_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773restart:
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700774 rt = rt6_select(fn, oif, strict | reachable);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800775
776 BACKTRACK(net, &fl->fl6_src);
777 if (rt == net->ipv6.ip6_null_entry ||
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800778 rt->rt6i_flags & RTF_CACHE)
YOSHIFUJI Hideaki1ddef0442006-03-20 17:01:24 -0800779 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Changli Gaod8d1f302010-06-10 23:31:35 -0700781 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -0700782 read_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideakifb9de912006-03-20 16:59:08 -0800783
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800784 if (!rt->rt6i_nexthop && !(rt->rt6i_flags & RTF_NONEXTHOP))
YOSHIFUJI Hideakie40cf352006-03-20 16:59:27 -0800785 nrt = rt6_alloc_cow(rt, &fl->fl6_dst, &fl->fl6_src);
David S. Millerd80bc0f2011-01-24 16:01:58 -0800786 else
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800787 nrt = rt6_alloc_clone(rt, &fl->fl6_dst);
YOSHIFUJI Hideakie40cf352006-03-20 16:59:27 -0800788
Changli Gaod8d1f302010-06-10 23:31:35 -0700789 dst_release(&rt->dst);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800790 rt = nrt ? : net->ipv6.ip6_null_entry;
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800791
Changli Gaod8d1f302010-06-10 23:31:35 -0700792 dst_hold(&rt->dst);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800793 if (nrt) {
Thomas Graf40e22e82006-08-22 00:00:45 -0700794 err = ip6_ins_rt(nrt);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800795 if (!err)
796 goto out2;
797 }
798
799 if (--attempts <= 0)
800 goto out2;
801
802 /*
Thomas Grafc71099a2006-08-04 23:20:06 -0700803 * Race condition! In the gap, when table->tb6_lock was
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800804 * released someone could insert this route. Relookup.
805 */
Changli Gaod8d1f302010-06-10 23:31:35 -0700806 dst_release(&rt->dst);
YOSHIFUJI Hideaki519fbd82006-03-20 17:00:05 -0800807 goto relookup;
808
809out:
YOSHIFUJI Hideaki8238dd02006-03-20 17:04:35 -0800810 if (reachable) {
811 reachable = 0;
812 goto restart_2;
813 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700814 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -0700815 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816out2:
Changli Gaod8d1f302010-06-10 23:31:35 -0700817 rt->dst.lastuse = jiffies;
818 rt->dst.__use++;
Thomas Grafc71099a2006-08-04 23:20:06 -0700819
820 return rt;
821}
822
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800823static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700824 struct flowi *fl, int flags)
825{
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800826 return ip6_pol_route(net, table, fl->iif, fl, flags);
Pavel Emelyanov4acad722007-10-15 13:02:51 -0700827}
828
Thomas Grafc71099a2006-08-04 23:20:06 -0700829void ip6_route_input(struct sk_buff *skb)
830{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700831 struct ipv6hdr *iph = ipv6_hdr(skb);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900832 struct net *net = dev_net(skb->dev);
Thomas Grafadaa70b2006-10-13 15:01:03 -0700833 int flags = RT6_LOOKUP_F_HAS_SADDR;
Thomas Grafc71099a2006-08-04 23:20:06 -0700834 struct flowi fl = {
835 .iif = skb->dev->ifindex,
Changli Gao58116622010-11-12 18:43:55 +0000836 .fl6_dst = iph->daddr,
837 .fl6_src = iph->saddr,
838 .fl6_flowlabel = (* (__be32 *) iph)&IPV6_FLOWINFO_MASK,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900839 .mark = skb->mark,
Thomas Grafc71099a2006-08-04 23:20:06 -0700840 .proto = iph->nexthdr,
841 };
Thomas Grafadaa70b2006-10-13 15:01:03 -0700842
Thomas Goff1d6e55f2009-01-27 22:39:59 -0800843 if (rt6_need_strict(&iph->daddr) && skb->dev->type != ARPHRD_PIMREG)
Thomas Grafadaa70b2006-10-13 15:01:03 -0700844 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -0700845
Eric Dumazetadf30902009-06-02 05:19:30 +0000846 skb_dst_set(skb, fib6_rule_lookup(net, &fl, flags, ip6_pol_route_input));
Thomas Grafc71099a2006-08-04 23:20:06 -0700847}
848
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800849static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
Thomas Grafc71099a2006-08-04 23:20:06 -0700850 struct flowi *fl, int flags)
851{
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800852 return ip6_pol_route(net, table, fl->oif, fl, flags);
Thomas Grafc71099a2006-08-04 23:20:06 -0700853}
854
Daniel Lezcano4591db42008-03-05 10:48:10 -0800855struct dst_entry * ip6_route_output(struct net *net, struct sock *sk,
856 struct flowi *fl)
Thomas Grafc71099a2006-08-04 23:20:06 -0700857{
858 int flags = 0;
859
Brian Haley6057fd72010-05-28 23:02:35 -0700860 if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl->fl6_dst))
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -0700861 flags |= RT6_LOOKUP_F_IFACE;
Thomas Grafc71099a2006-08-04 23:20:06 -0700862
Thomas Grafadaa70b2006-10-13 15:01:03 -0700863 if (!ipv6_addr_any(&fl->fl6_src))
864 flags |= RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +0000865 else if (sk)
866 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
Thomas Grafadaa70b2006-10-13 15:01:03 -0700867
Daniel Lezcano4591db42008-03-05 10:48:10 -0800868 return fib6_rule_lookup(net, fl, flags, ip6_pol_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900871EXPORT_SYMBOL(ip6_route_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
David S. Miller69ead7a2011-03-01 14:45:33 -0800873struct dst_entry *ip6_dst_blackhole(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -0700874{
David S. Miller69ead7a2011-03-01 14:45:33 -0800875 struct rt6_info *rt = dst_alloc(&ip6_dst_blackhole_ops, 1);
876 struct rt6_info *ort = (struct rt6_info *) dst_orig;
David S. Miller14e50e52007-05-24 18:17:54 -0700877 struct dst_entry *new = NULL;
878
879 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700880 new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -0700881
David S. Miller14e50e52007-05-24 18:17:54 -0700882 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -0800883 new->input = dst_discard;
884 new->output = dst_discard;
David S. Miller14e50e52007-05-24 18:17:54 -0700885
David S. Millerdefb3512010-12-08 21:16:57 -0800886 dst_copy_metrics(new, &ort->dst);
Changli Gaod8d1f302010-06-10 23:31:35 -0700887 new->dev = ort->dst.dev;
David S. Miller14e50e52007-05-24 18:17:54 -0700888 if (new->dev)
889 dev_hold(new->dev);
890 rt->rt6i_idev = ort->rt6i_idev;
891 if (rt->rt6i_idev)
892 in6_dev_hold(rt->rt6i_idev);
893 rt->rt6i_expires = 0;
894
895 ipv6_addr_copy(&rt->rt6i_gateway, &ort->rt6i_gateway);
896 rt->rt6i_flags = ort->rt6i_flags & ~RTF_EXPIRES;
897 rt->rt6i_metric = 0;
898
899 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
900#ifdef CONFIG_IPV6_SUBTREES
901 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
902#endif
903
904 dst_free(new);
905 }
906
David S. Miller69ead7a2011-03-01 14:45:33 -0800907 dst_release(dst_orig);
908 return new ? new : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -0700909}
910EXPORT_SYMBOL_GPL(ip6_dst_blackhole);
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912/*
913 * Destination cache support functions
914 */
915
916static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
917{
918 struct rt6_info *rt;
919
920 rt = (struct rt6_info *) dst;
921
David S. Miller6431cbc2011-02-07 20:38:06 -0800922 if (rt->rt6i_node && (rt->rt6i_node->fn_sernum == cookie)) {
923 if (rt->rt6i_peer_genid != rt6_peer_genid()) {
924 if (!rt->rt6i_peer)
925 rt6_bind_peer(rt, 0);
926 rt->rt6i_peer_genid = rt6_peer_genid();
927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return dst;
David S. Miller6431cbc2011-02-07 20:38:06 -0800929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return NULL;
931}
932
933static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
934{
935 struct rt6_info *rt = (struct rt6_info *) dst;
936
937 if (rt) {
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +0000938 if (rt->rt6i_flags & RTF_CACHE) {
939 if (rt6_check_expired(rt)) {
940 ip6_del_rt(rt);
941 dst = NULL;
942 }
943 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 dst_release(dst);
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +0000945 dst = NULL;
946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
YOSHIFUJI Hideaki / 吉藤英明54c1a852010-03-28 07:15:45 +0000948 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
951static void ip6_link_failure(struct sk_buff *skb)
952{
953 struct rt6_info *rt;
954
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000955 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Eric Dumazetadf30902009-06-02 05:19:30 +0000957 rt = (struct rt6_info *) skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (rt) {
959 if (rt->rt6i_flags&RTF_CACHE) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700960 dst_set_expires(&rt->dst, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 rt->rt6i_flags |= RTF_EXPIRES;
962 } else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT))
963 rt->rt6i_node->fn_sernum = -1;
964 }
965}
966
967static void ip6_rt_update_pmtu(struct dst_entry *dst, u32 mtu)
968{
969 struct rt6_info *rt6 = (struct rt6_info*)dst;
970
971 if (mtu < dst_mtu(dst) && rt6->rt6i_dst.plen == 128) {
972 rt6->rt6i_flags |= RTF_MODIFIED;
973 if (mtu < IPV6_MIN_MTU) {
David S. Millerdefb3512010-12-08 21:16:57 -0800974 u32 features = dst_metric(dst, RTAX_FEATURES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 mtu = IPV6_MIN_MTU;
David S. Millerdefb3512010-12-08 21:16:57 -0800976 features |= RTAX_FEATURE_ALLFRAG;
977 dst_metric_set(dst, RTAX_FEATURES, features);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
David S. Millerdefb3512010-12-08 21:16:57 -0800979 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981}
982
David S. Miller0dbaee32010-12-13 12:52:14 -0800983static unsigned int ip6_default_advmss(const struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
David S. Miller0dbaee32010-12-13 12:52:14 -0800985 struct net_device *dev = dst->dev;
986 unsigned int mtu = dst_mtu(dst);
987 struct net *net = dev_net(dev);
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
990
Daniel Lezcano55786892008-03-04 13:47:47 -0800991 if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
992 mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900995 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
996 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
997 * IPV6_MAXPLEN is also valid and means: "any MSS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 * rely only on pmtu discovery"
999 */
1000 if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
1001 mtu = IPV6_MAXPLEN;
1002 return mtu;
1003}
1004
David S. Millerd33e4552010-12-14 13:01:14 -08001005static unsigned int ip6_default_mtu(const struct dst_entry *dst)
1006{
1007 unsigned int mtu = IPV6_MIN_MTU;
1008 struct inet6_dev *idev;
1009
1010 rcu_read_lock();
1011 idev = __in6_dev_get(dst->dev);
1012 if (idev)
1013 mtu = idev->cnf.mtu6;
1014 rcu_read_unlock();
1015
1016 return mtu;
1017}
1018
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001019static struct dst_entry *icmp6_dst_gc_list;
1020static DEFINE_SPINLOCK(icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001021
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001022struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 struct neighbour *neigh,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001024 const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
1026 struct rt6_info *rt;
1027 struct inet6_dev *idev = in6_dev_get(dev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001028 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 if (unlikely(idev == NULL))
1031 return NULL;
1032
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001033 rt = ip6_dst_alloc(&net->ipv6.ip6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (unlikely(rt == NULL)) {
1035 in6_dev_put(idev);
1036 goto out;
1037 }
1038
1039 dev_hold(dev);
1040 if (neigh)
1041 neigh_hold(neigh);
David S. Miller14deae42009-01-04 16:04:39 -08001042 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 neigh = ndisc_get_neigh(dev, addr);
David S. Miller14deae42009-01-04 16:04:39 -08001044 if (IS_ERR(neigh))
1045 neigh = NULL;
1046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 rt->rt6i_dev = dev;
1049 rt->rt6i_idev = idev;
1050 rt->rt6i_nexthop = neigh;
Changli Gaod8d1f302010-06-10 23:31:35 -07001051 atomic_set(&rt->dst.__refcnt, 1);
David S. Millerdefb3512010-12-08 21:16:57 -08001052 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 255);
Changli Gaod8d1f302010-06-10 23:31:35 -07001053 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055#if 0 /* there's no chance to use these for ndisc */
Changli Gaod8d1f302010-06-10 23:31:35 -07001056 rt->dst.flags = ipv6_addr_type(addr) & IPV6_ADDR_UNICAST
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001057 ? DST_HOST
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 : 0;
1059 ipv6_addr_copy(&rt->rt6i_dst.addr, addr);
1060 rt->rt6i_dst.plen = 128;
1061#endif
1062
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001063 spin_lock_bh(&icmp6_dst_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001064 rt->dst.next = icmp6_dst_gc_list;
1065 icmp6_dst_gc_list = &rt->dst;
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001066 spin_unlock_bh(&icmp6_dst_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Daniel Lezcano55786892008-03-04 13:47:47 -08001068 fib6_force_start_gc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070out:
Changli Gaod8d1f302010-06-10 23:31:35 -07001071 return &rt->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
1073
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001074int icmp6_dst_gc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
Hagen Paul Pfeifere9476e92011-02-25 05:45:19 +00001076 struct dst_entry *dst, **pprev;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001077 int more = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001079 spin_lock_bh(&icmp6_dst_lock);
1080 pprev = &icmp6_dst_gc_list;
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 while ((dst = *pprev) != NULL) {
1083 if (!atomic_read(&dst->__refcnt)) {
1084 *pprev = dst->next;
1085 dst_free(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 } else {
1087 pprev = &dst->next;
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001088 ++more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
1090 }
1091
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -08001092 spin_unlock_bh(&icmp6_dst_lock);
Thomas Graf5d0bbee2006-08-04 03:37:36 -07001093
Stephen Hemminger3d0f24a2008-07-22 14:35:50 -07001094 return more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095}
1096
David S. Miller1e493d12008-09-10 17:27:15 -07001097static void icmp6_clean_all(int (*func)(struct rt6_info *rt, void *arg),
1098 void *arg)
1099{
1100 struct dst_entry *dst, **pprev;
1101
1102 spin_lock_bh(&icmp6_dst_lock);
1103 pprev = &icmp6_dst_gc_list;
1104 while ((dst = *pprev) != NULL) {
1105 struct rt6_info *rt = (struct rt6_info *) dst;
1106 if (func(rt, arg)) {
1107 *pprev = dst->next;
1108 dst_free(dst);
1109 } else {
1110 pprev = &dst->next;
1111 }
1112 }
1113 spin_unlock_bh(&icmp6_dst_lock);
1114}
1115
Daniel Lezcano569d3642008-01-18 03:56:57 -08001116static int ip6_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 unsigned long now = jiffies;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001119 struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001120 int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
1121 int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
1122 int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
1123 int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
1124 unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001125 int entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Eric Dumazetfc66f952010-10-08 06:37:34 +00001127 entries = dst_entries_get_fast(ops);
Daniel Lezcano7019b782008-03-04 13:50:14 -08001128 if (time_after(rt_last_gc + rt_min_interval, now) &&
Eric Dumazetfc66f952010-10-08 06:37:34 +00001129 entries <= rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 goto out;
1131
Benjamin Thery6891a342008-03-04 13:49:47 -08001132 net->ipv6.ip6_rt_gc_expire++;
1133 fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net);
1134 net->ipv6.ip6_rt_last_gc = now;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001135 entries = dst_entries_get_slow(ops);
1136 if (entries < ops->gc_thresh)
Daniel Lezcano7019b782008-03-04 13:50:14 -08001137 net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138out:
Daniel Lezcano7019b782008-03-04 13:50:14 -08001139 net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001140 return entries > rt_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
1143/* Clean host part of a prefix. Not necessary in radix tree,
1144 but results in cleaner routing tables.
1145
1146 Remove it only when all the things will work!
1147 */
1148
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001149int ip6_dst_hoplimit(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
David S. Miller5170ae82010-12-12 21:35:57 -08001151 int hoplimit = dst_metric_raw(dst, RTAX_HOPLIMIT);
David S. Millera02e4b72010-12-12 21:39:02 -08001152 if (hoplimit == 0) {
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001153 struct net_device *dev = dst->dev;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001154 struct inet6_dev *idev;
1155
1156 rcu_read_lock();
1157 idev = __in6_dev_get(dev);
1158 if (idev)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001159 hoplimit = idev->cnf.hop_limit;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001160 else
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07001161 hoplimit = dev_net(dev)->ipv6.devconf_all->hop_limit;
Eric Dumazetc68f24c2010-06-14 04:46:20 +00001162 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164 return hoplimit;
1165}
David S. Millerabbf46a2010-12-12 21:14:46 -08001166EXPORT_SYMBOL(ip6_dst_hoplimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168/*
1169 *
1170 */
1171
Thomas Graf86872cb2006-08-22 00:01:08 -07001172int ip6_route_add(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
1174 int err;
Daniel Lezcano55786892008-03-04 13:47:47 -08001175 struct net *net = cfg->fc_nlinfo.nl_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 struct rt6_info *rt = NULL;
1177 struct net_device *dev = NULL;
1178 struct inet6_dev *idev = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001179 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 int addr_type;
1181
Thomas Graf86872cb2006-08-22 00:01:08 -07001182 if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return -EINVAL;
1184#ifndef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001185 if (cfg->fc_src_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return -EINVAL;
1187#endif
Thomas Graf86872cb2006-08-22 00:01:08 -07001188 if (cfg->fc_ifindex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 err = -ENODEV;
Daniel Lezcano55786892008-03-04 13:47:47 -08001190 dev = dev_get_by_index(net, cfg->fc_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (!dev)
1192 goto out;
1193 idev = in6_dev_get(dev);
1194 if (!idev)
1195 goto out;
1196 }
1197
Thomas Graf86872cb2006-08-22 00:01:08 -07001198 if (cfg->fc_metric == 0)
1199 cfg->fc_metric = IP6_RT_PRIO_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Daniel Lezcano55786892008-03-04 13:47:47 -08001201 table = fib6_new_table(net, cfg->fc_table);
Thomas Grafc71099a2006-08-04 23:20:06 -07001202 if (table == NULL) {
1203 err = -ENOBUFS;
1204 goto out;
1205 }
1206
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001207 rt = ip6_dst_alloc(&net->ipv6.ip6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 if (rt == NULL) {
1210 err = -ENOMEM;
1211 goto out;
1212 }
1213
Changli Gaod8d1f302010-06-10 23:31:35 -07001214 rt->dst.obsolete = -1;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07001215 rt->rt6i_expires = (cfg->fc_flags & RTF_EXPIRES) ?
1216 jiffies + clock_t_to_jiffies(cfg->fc_expires) :
1217 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Thomas Graf86872cb2006-08-22 00:01:08 -07001219 if (cfg->fc_protocol == RTPROT_UNSPEC)
1220 cfg->fc_protocol = RTPROT_BOOT;
1221 rt->rt6i_protocol = cfg->fc_protocol;
1222
1223 addr_type = ipv6_addr_type(&cfg->fc_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 if (addr_type & IPV6_ADDR_MULTICAST)
Changli Gaod8d1f302010-06-10 23:31:35 -07001226 rt->dst.input = ip6_mc_input;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001227 else if (cfg->fc_flags & RTF_LOCAL)
1228 rt->dst.input = ip6_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 else
Changli Gaod8d1f302010-06-10 23:31:35 -07001230 rt->dst.input = ip6_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Changli Gaod8d1f302010-06-10 23:31:35 -07001232 rt->dst.output = ip6_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Thomas Graf86872cb2006-08-22 00:01:08 -07001234 ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
1235 rt->rt6i_dst.plen = cfg->fc_dst_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (rt->rt6i_dst.plen == 128)
Changli Gaod8d1f302010-06-10 23:31:35 -07001237 rt->dst.flags = DST_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239#ifdef CONFIG_IPV6_SUBTREES
Thomas Graf86872cb2006-08-22 00:01:08 -07001240 ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
1241 rt->rt6i_src.plen = cfg->fc_src_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242#endif
1243
Thomas Graf86872cb2006-08-22 00:01:08 -07001244 rt->rt6i_metric = cfg->fc_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 /* We cannot add true routes via loopback here,
1247 they would result in kernel looping; promote them to reject routes
1248 */
Thomas Graf86872cb2006-08-22 00:01:08 -07001249 if ((cfg->fc_flags & RTF_REJECT) ||
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00001250 (dev && (dev->flags&IFF_LOOPBACK) && !(addr_type&IPV6_ADDR_LOOPBACK)
1251 && !(cfg->fc_flags&RTF_LOCAL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 /* hold loopback dev/idev if we haven't done so. */
Daniel Lezcano55786892008-03-04 13:47:47 -08001253 if (dev != net->loopback_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (dev) {
1255 dev_put(dev);
1256 in6_dev_put(idev);
1257 }
Daniel Lezcano55786892008-03-04 13:47:47 -08001258 dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 dev_hold(dev);
1260 idev = in6_dev_get(dev);
1261 if (!idev) {
1262 err = -ENODEV;
1263 goto out;
1264 }
1265 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001266 rt->dst.output = ip6_pkt_discard_out;
1267 rt->dst.input = ip6_pkt_discard;
1268 rt->dst.error = -ENETUNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
1270 goto install_route;
1271 }
1272
Thomas Graf86872cb2006-08-22 00:01:08 -07001273 if (cfg->fc_flags & RTF_GATEWAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 struct in6_addr *gw_addr;
1275 int gwa_type;
1276
Thomas Graf86872cb2006-08-22 00:01:08 -07001277 gw_addr = &cfg->fc_gateway;
1278 ipv6_addr_copy(&rt->rt6i_gateway, gw_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 gwa_type = ipv6_addr_type(gw_addr);
1280
1281 if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
1282 struct rt6_info *grt;
1283
1284 /* IPv6 strictly inhibits using not link-local
1285 addresses as nexthop address.
1286 Otherwise, router will not able to send redirects.
1287 It is very good, but in some (rare!) circumstances
1288 (SIT, PtP, NBMA NOARP links) it is handy to allow
1289 some exceptions. --ANK
1290 */
1291 err = -EINVAL;
1292 if (!(gwa_type&IPV6_ADDR_UNICAST))
1293 goto out;
1294
Daniel Lezcano55786892008-03-04 13:47:47 -08001295 grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 err = -EHOSTUNREACH;
1298 if (grt == NULL)
1299 goto out;
1300 if (dev) {
1301 if (dev != grt->rt6i_dev) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001302 dst_release(&grt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 goto out;
1304 }
1305 } else {
1306 dev = grt->rt6i_dev;
1307 idev = grt->rt6i_idev;
1308 dev_hold(dev);
1309 in6_dev_hold(grt->rt6i_idev);
1310 }
1311 if (!(grt->rt6i_flags&RTF_GATEWAY))
1312 err = 0;
Changli Gaod8d1f302010-06-10 23:31:35 -07001313 dst_release(&grt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 if (err)
1316 goto out;
1317 }
1318 err = -EINVAL;
1319 if (dev == NULL || (dev->flags&IFF_LOOPBACK))
1320 goto out;
1321 }
1322
1323 err = -ENODEV;
1324 if (dev == NULL)
1325 goto out;
1326
Thomas Graf86872cb2006-08-22 00:01:08 -07001327 if (cfg->fc_flags & (RTF_GATEWAY | RTF_NONEXTHOP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 rt->rt6i_nexthop = __neigh_lookup_errno(&nd_tbl, &rt->rt6i_gateway, dev);
1329 if (IS_ERR(rt->rt6i_nexthop)) {
1330 err = PTR_ERR(rt->rt6i_nexthop);
1331 rt->rt6i_nexthop = NULL;
1332 goto out;
1333 }
1334 }
1335
Thomas Graf86872cb2006-08-22 00:01:08 -07001336 rt->rt6i_flags = cfg->fc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338install_route:
Thomas Graf86872cb2006-08-22 00:01:08 -07001339 if (cfg->fc_mx) {
1340 struct nlattr *nla;
1341 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Thomas Graf86872cb2006-08-22 00:01:08 -07001343 nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
Thomas Graf8f4c1f92007-09-12 14:44:36 +02001344 int type = nla_type(nla);
Thomas Graf86872cb2006-08-22 00:01:08 -07001345
1346 if (type) {
1347 if (type > RTAX_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 err = -EINVAL;
1349 goto out;
1350 }
Thomas Graf86872cb2006-08-22 00:01:08 -07001351
David S. Millerdefb3512010-12-08 21:16:57 -08001352 dst_metric_set(&rt->dst, type, nla_get_u32(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
1355 }
1356
Changli Gaod8d1f302010-06-10 23:31:35 -07001357 rt->dst.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 rt->rt6i_idev = idev;
Thomas Grafc71099a2006-08-04 23:20:06 -07001359 rt->rt6i_table = table;
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001360
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001361 cfg->fc_nlinfo.nl_net = dev_net(dev);
Daniel Lezcano63152fc2008-03-03 23:31:11 -08001362
Thomas Graf86872cb2006-08-22 00:01:08 -07001363 return __ip6_ins_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365out:
1366 if (dev)
1367 dev_put(dev);
1368 if (idev)
1369 in6_dev_put(idev);
1370 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001371 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 return err;
1373}
1374
Thomas Graf86872cb2006-08-22 00:01:08 -07001375static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
1377 int err;
Thomas Grafc71099a2006-08-04 23:20:06 -07001378 struct fib6_table *table;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001379 struct net *net = dev_net(rt->rt6i_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001381 if (rt == net->ipv6.ip6_null_entry)
Patrick McHardy6c813a72006-08-06 22:22:47 -07001382 return -ENOENT;
1383
Thomas Grafc71099a2006-08-04 23:20:06 -07001384 table = rt->rt6i_table;
1385 write_lock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Thomas Graf86872cb2006-08-22 00:01:08 -07001387 err = fib6_del(rt, info);
Changli Gaod8d1f302010-06-10 23:31:35 -07001388 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Thomas Grafc71099a2006-08-04 23:20:06 -07001390 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 return err;
1393}
1394
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001395int ip6_del_rt(struct rt6_info *rt)
1396{
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001397 struct nl_info info = {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001398 .nl_net = dev_net(rt->rt6i_dev),
Denis V. Lunev4d1169c2008-01-10 03:26:13 -08001399 };
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08001400 return __ip6_del_rt(rt, &info);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001401}
1402
Thomas Graf86872cb2006-08-22 00:01:08 -07001403static int ip6_route_del(struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Thomas Grafc71099a2006-08-04 23:20:06 -07001405 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 struct fib6_node *fn;
1407 struct rt6_info *rt;
1408 int err = -ESRCH;
1409
Daniel Lezcano55786892008-03-04 13:47:47 -08001410 table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
Thomas Grafc71099a2006-08-04 23:20:06 -07001411 if (table == NULL)
1412 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Thomas Grafc71099a2006-08-04 23:20:06 -07001414 read_lock_bh(&table->tb6_lock);
1415
1416 fn = fib6_locate(&table->tb6_root,
Thomas Graf86872cb2006-08-22 00:01:08 -07001417 &cfg->fc_dst, cfg->fc_dst_len,
1418 &cfg->fc_src, cfg->fc_src_len);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (fn) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001421 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
Thomas Graf86872cb2006-08-22 00:01:08 -07001422 if (cfg->fc_ifindex &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 (rt->rt6i_dev == NULL ||
Thomas Graf86872cb2006-08-22 00:01:08 -07001424 rt->rt6i_dev->ifindex != cfg->fc_ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001426 if (cfg->fc_flags & RTF_GATEWAY &&
1427 !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 continue;
Thomas Graf86872cb2006-08-22 00:01:08 -07001429 if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001431 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001432 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Thomas Graf86872cb2006-08-22 00:01:08 -07001434 return __ip6_del_rt(rt, &cfg->fc_nlinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001437 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 return err;
1440}
1441
1442/*
1443 * Handle redirects
1444 */
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001445struct ip6rd_flowi {
1446 struct flowi fl;
1447 struct in6_addr gateway;
1448};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001450static struct rt6_info *__ip6_route_redirect(struct net *net,
1451 struct fib6_table *table,
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001452 struct flowi *fl,
1453 int flags)
1454{
1455 struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl;
1456 struct rt6_info *rt;
1457 struct fib6_node *fn;
Thomas Grafc71099a2006-08-04 23:20:06 -07001458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 /*
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001460 * Get the "current" route for this destination and
1461 * check if the redirect has come from approriate router.
1462 *
1463 * RFC 2461 specifies that redirects should only be
1464 * accepted if they come from the nexthop to the target.
1465 * Due to the way the routes are chosen, this notion
1466 * is a bit fuzzy and one might need to check all possible
1467 * routes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Thomas Grafc71099a2006-08-04 23:20:06 -07001470 read_lock_bh(&table->tb6_lock);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001471 fn = fib6_lookup(&table->tb6_root, &fl->fl6_dst, &fl->fl6_src);
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001472restart:
Changli Gaod8d1f302010-06-10 23:31:35 -07001473 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001474 /*
1475 * Current route is on-link; redirect is always invalid.
1476 *
1477 * Seems, previous statement is not true. It could
1478 * be node, which looks for us as on-link (f.e. proxy ndisc)
1479 * But then router serving it might decide, that we should
1480 * know truth 8)8) --ANK (980726).
1481 */
1482 if (rt6_check_expired(rt))
1483 continue;
1484 if (!(rt->rt6i_flags & RTF_GATEWAY))
1485 continue;
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001486 if (fl->oif != rt->rt6i_dev->ifindex)
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001487 continue;
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001488 if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001489 continue;
1490 break;
1491 }
YOSHIFUJI Hideakie843b9e2006-03-20 17:07:49 -08001492
YOSHIFUJI Hideakicb15d9c2006-08-23 17:23:11 -07001493 if (!rt)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001494 rt = net->ipv6.ip6_null_entry;
1495 BACKTRACK(net, &fl->fl6_src);
YOSHIFUJI Hideakicb15d9c2006-08-23 17:23:11 -07001496out:
Changli Gaod8d1f302010-06-10 23:31:35 -07001497 dst_hold(&rt->dst);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001498
1499 read_unlock_bh(&table->tb6_lock);
1500
1501 return rt;
1502};
1503
1504static struct rt6_info *ip6_route_redirect(struct in6_addr *dest,
1505 struct in6_addr *src,
1506 struct in6_addr *gateway,
1507 struct net_device *dev)
1508{
Thomas Grafadaa70b2006-10-13 15:01:03 -07001509 int flags = RT6_LOOKUP_F_HAS_SADDR;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001510 struct net *net = dev_net(dev);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001511 struct ip6rd_flowi rdfl = {
1512 .fl = {
1513 .oif = dev->ifindex,
Changli Gao58116622010-11-12 18:43:55 +00001514 .fl6_dst = *dest,
1515 .fl6_src = *src,
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001516 },
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001517 };
Thomas Grafadaa70b2006-10-13 15:01:03 -07001518
Brian Haley86c36ce2009-10-07 13:58:01 -07001519 ipv6_addr_copy(&rdfl.gateway, gateway);
1520
Thomas Grafadaa70b2006-10-13 15:01:03 -07001521 if (rt6_need_strict(dest))
1522 flags |= RT6_LOOKUP_F_IFACE;
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001523
Daniel Lezcano55786892008-03-04 13:47:47 -08001524 return (struct rt6_info *)fib6_rule_lookup(net, (struct flowi *)&rdfl,
Daniel Lezcano58f09b72008-03-03 23:25:27 -08001525 flags, __ip6_route_redirect);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001526}
1527
1528void rt6_redirect(struct in6_addr *dest, struct in6_addr *src,
1529 struct in6_addr *saddr,
1530 struct neighbour *neigh, u8 *lladdr, int on_link)
1531{
1532 struct rt6_info *rt, *nrt = NULL;
1533 struct netevent_redirect netevent;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001534 struct net *net = dev_net(neigh->dev);
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001535
1536 rt = ip6_route_redirect(dest, src, saddr, neigh->dev);
1537
Daniel Lezcano8ed67782008-03-04 13:48:30 -08001538 if (rt == net->ipv6.ip6_null_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 if (net_ratelimit())
1540 printk(KERN_DEBUG "rt6_redirect: source isn't a valid nexthop "
1541 "for redirect target\n");
YOSHIFUJI Hideakia6279452006-08-23 17:18:26 -07001542 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 /*
1546 * We have finally decided to accept it.
1547 */
1548
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001549 neigh_update(neigh, lladdr, NUD_STALE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 NEIGH_UPDATE_F_WEAK_OVERRIDE|
1551 NEIGH_UPDATE_F_OVERRIDE|
1552 (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
1553 NEIGH_UPDATE_F_ISROUTER))
1554 );
1555
1556 /*
1557 * Redirect received -> path was valid.
1558 * Look, redirects are sent only in response to data packets,
1559 * so that this nexthop apparently is reachable. --ANK
1560 */
Changli Gaod8d1f302010-06-10 23:31:35 -07001561 dst_confirm(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 /* Duplicate redirect: silently ignore. */
Changli Gaod8d1f302010-06-10 23:31:35 -07001564 if (neigh == rt->dst.neighbour)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 goto out;
1566
1567 nrt = ip6_rt_copy(rt);
1568 if (nrt == NULL)
1569 goto out;
1570
1571 nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
1572 if (on_link)
1573 nrt->rt6i_flags &= ~RTF_GATEWAY;
1574
1575 ipv6_addr_copy(&nrt->rt6i_dst.addr, dest);
1576 nrt->rt6i_dst.plen = 128;
Changli Gaod8d1f302010-06-10 23:31:35 -07001577 nrt->dst.flags |= DST_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 ipv6_addr_copy(&nrt->rt6i_gateway, (struct in6_addr*)neigh->primary_key);
1580 nrt->rt6i_nexthop = neigh_clone(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Thomas Graf40e22e82006-08-22 00:00:45 -07001582 if (ip6_ins_rt(nrt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 goto out;
1584
Changli Gaod8d1f302010-06-10 23:31:35 -07001585 netevent.old = &rt->dst;
1586 netevent.new = &nrt->dst;
Tom Tucker8d717402006-07-30 20:43:36 -07001587 call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 if (rt->rt6i_flags&RTF_CACHE) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001590 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 return;
1592 }
1593
1594out:
Changli Gaod8d1f302010-06-10 23:31:35 -07001595 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597
1598/*
1599 * Handle ICMP "packet too big" messages
1600 * i.e. Path MTU discovery
1601 */
1602
Maciej Żenczykowskiae878ae2010-10-03 14:49:00 -07001603static void rt6_do_pmtu_disc(struct in6_addr *daddr, struct in6_addr *saddr,
1604 struct net *net, u32 pmtu, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
1606 struct rt6_info *rt, *nrt;
1607 int allfrag = 0;
Andrey Vagind3052b52010-12-11 15:20:11 +00001608again:
Maciej Żenczykowskiae878ae2010-10-03 14:49:00 -07001609 rt = rt6_lookup(net, daddr, saddr, ifindex, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 if (rt == NULL)
1611 return;
1612
Andrey Vagind3052b52010-12-11 15:20:11 +00001613 if (rt6_check_expired(rt)) {
1614 ip6_del_rt(rt);
1615 goto again;
1616 }
1617
Changli Gaod8d1f302010-06-10 23:31:35 -07001618 if (pmtu >= dst_mtu(&rt->dst))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 goto out;
1620
1621 if (pmtu < IPV6_MIN_MTU) {
1622 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001623 * According to RFC2460, PMTU is set to the IPv6 Minimum Link
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 * MTU (1280) and a fragment header should always be included
1625 * after a node receiving Too Big message reporting PMTU is
1626 * less than the IPv6 Minimum Link MTU.
1627 */
1628 pmtu = IPV6_MIN_MTU;
1629 allfrag = 1;
1630 }
1631
1632 /* New mtu received -> path was valid.
1633 They are sent only in response to data packets,
1634 so that this nexthop apparently is reachable. --ANK
1635 */
Changli Gaod8d1f302010-06-10 23:31:35 -07001636 dst_confirm(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 /* Host route. If it is static, it would be better
1639 not to override it, but add new one, so that
1640 when cache entry will expire old pmtu
1641 would return automatically.
1642 */
1643 if (rt->rt6i_flags & RTF_CACHE) {
David S. Millerdefb3512010-12-08 21:16:57 -08001644 dst_metric_set(&rt->dst, RTAX_MTU, pmtu);
1645 if (allfrag) {
1646 u32 features = dst_metric(&rt->dst, RTAX_FEATURES);
1647 features |= RTAX_FEATURE_ALLFRAG;
1648 dst_metric_set(&rt->dst, RTAX_FEATURES, features);
1649 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001650 dst_set_expires(&rt->dst, net->ipv6.sysctl.ip6_rt_mtu_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 rt->rt6i_flags |= RTF_MODIFIED|RTF_EXPIRES;
1652 goto out;
1653 }
1654
1655 /* Network route.
1656 Two cases are possible:
1657 1. It is connected route. Action: COW
1658 2. It is gatewayed route or NONEXTHOP route. Action: clone it.
1659 */
YOSHIFUJI Hideakid5315b52006-03-20 16:58:48 -08001660 if (!rt->rt6i_nexthop && !(rt->rt6i_flags & RTF_NONEXTHOP))
YOSHIFUJI Hideakia1e78362006-03-20 16:56:32 -08001661 nrt = rt6_alloc_cow(rt, daddr, saddr);
YOSHIFUJI Hideakid5315b52006-03-20 16:58:48 -08001662 else
1663 nrt = rt6_alloc_clone(rt, daddr);
YOSHIFUJI Hideakia1e78362006-03-20 16:56:32 -08001664
YOSHIFUJI Hideakid5315b52006-03-20 16:58:48 -08001665 if (nrt) {
David S. Millerdefb3512010-12-08 21:16:57 -08001666 dst_metric_set(&nrt->dst, RTAX_MTU, pmtu);
1667 if (allfrag) {
1668 u32 features = dst_metric(&nrt->dst, RTAX_FEATURES);
1669 features |= RTAX_FEATURE_ALLFRAG;
1670 dst_metric_set(&nrt->dst, RTAX_FEATURES, features);
1671 }
YOSHIFUJI Hideakia1e78362006-03-20 16:56:32 -08001672
1673 /* According to RFC 1981, detecting PMTU increase shouldn't be
1674 * happened within 5 mins, the recommended timer is 10 mins.
1675 * Here this route expiration time is set to ip6_rt_mtu_expires
1676 * which is 10 mins. After 10 mins the decreased pmtu is expired
1677 * and detecting PMTU increase will be automatically happened.
1678 */
Changli Gaod8d1f302010-06-10 23:31:35 -07001679 dst_set_expires(&nrt->dst, net->ipv6.sysctl.ip6_rt_mtu_expires);
YOSHIFUJI Hideakia1e78362006-03-20 16:56:32 -08001680 nrt->rt6i_flags |= RTF_DYNAMIC|RTF_EXPIRES;
1681
Thomas Graf40e22e82006-08-22 00:00:45 -07001682 ip6_ins_rt(nrt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684out:
Changli Gaod8d1f302010-06-10 23:31:35 -07001685 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686}
1687
Maciej Żenczykowskiae878ae2010-10-03 14:49:00 -07001688void rt6_pmtu_discovery(struct in6_addr *daddr, struct in6_addr *saddr,
1689 struct net_device *dev, u32 pmtu)
1690{
1691 struct net *net = dev_net(dev);
1692
1693 /*
1694 * RFC 1981 states that a node "MUST reduce the size of the packets it
1695 * is sending along the path" that caused the Packet Too Big message.
1696 * Since it's not possible in the general case to determine which
1697 * interface was used to send the original packet, we update the MTU
1698 * on the interface that will be used to send future packets. We also
1699 * update the MTU on the interface that received the Packet Too Big in
1700 * case the original packet was forced out that interface with
1701 * SO_BINDTODEVICE or similar. This is the next best thing to the
1702 * correct behaviour, which would be to update the MTU on all
1703 * interfaces.
1704 */
1705 rt6_do_pmtu_disc(daddr, saddr, net, pmtu, 0);
1706 rt6_do_pmtu_disc(daddr, saddr, net, pmtu, dev->ifindex);
1707}
1708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709/*
1710 * Misc support functions
1711 */
1712
1713static struct rt6_info * ip6_rt_copy(struct rt6_info *ort)
1714{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001715 struct net *net = dev_net(ort->rt6i_dev);
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001716 struct rt6_info *rt = ip6_dst_alloc(&net->ipv6.ip6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001719 rt->dst.input = ort->dst.input;
1720 rt->dst.output = ort->dst.output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
David S. Millerdefb3512010-12-08 21:16:57 -08001722 dst_copy_metrics(&rt->dst, &ort->dst);
Changli Gaod8d1f302010-06-10 23:31:35 -07001723 rt->dst.error = ort->dst.error;
1724 rt->dst.dev = ort->dst.dev;
1725 if (rt->dst.dev)
1726 dev_hold(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 rt->rt6i_idev = ort->rt6i_idev;
1728 if (rt->rt6i_idev)
1729 in6_dev_hold(rt->rt6i_idev);
Changli Gaod8d1f302010-06-10 23:31:35 -07001730 rt->dst.lastuse = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 rt->rt6i_expires = 0;
1732
1733 ipv6_addr_copy(&rt->rt6i_gateway, &ort->rt6i_gateway);
1734 rt->rt6i_flags = ort->rt6i_flags & ~RTF_EXPIRES;
1735 rt->rt6i_metric = 0;
1736
1737 memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
1738#ifdef CONFIG_IPV6_SUBTREES
1739 memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
1740#endif
Thomas Grafc71099a2006-08-04 23:20:06 -07001741 rt->rt6i_table = ort->rt6i_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743 return rt;
1744}
1745
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001746#ifdef CONFIG_IPV6_ROUTE_INFO
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001747static struct rt6_info *rt6_get_route_info(struct net *net,
1748 struct in6_addr *prefix, int prefixlen,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001749 struct in6_addr *gwaddr, int ifindex)
1750{
1751 struct fib6_node *fn;
1752 struct rt6_info *rt = NULL;
Thomas Grafc71099a2006-08-04 23:20:06 -07001753 struct fib6_table *table;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001754
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001755 table = fib6_get_table(net, RT6_TABLE_INFO);
Thomas Grafc71099a2006-08-04 23:20:06 -07001756 if (table == NULL)
1757 return NULL;
1758
1759 write_lock_bh(&table->tb6_lock);
1760 fn = fib6_locate(&table->tb6_root, prefix ,prefixlen, NULL, 0);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001761 if (!fn)
1762 goto out;
1763
Changli Gaod8d1f302010-06-10 23:31:35 -07001764 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001765 if (rt->rt6i_dev->ifindex != ifindex)
1766 continue;
1767 if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
1768 continue;
1769 if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
1770 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001771 dst_hold(&rt->dst);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001772 break;
1773 }
1774out:
Thomas Grafc71099a2006-08-04 23:20:06 -07001775 write_unlock_bh(&table->tb6_lock);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001776 return rt;
1777}
1778
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001779static struct rt6_info *rt6_add_route_info(struct net *net,
1780 struct in6_addr *prefix, int prefixlen,
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001781 struct in6_addr *gwaddr, int ifindex,
1782 unsigned pref)
1783{
Thomas Graf86872cb2006-08-22 00:01:08 -07001784 struct fib6_config cfg = {
1785 .fc_table = RT6_TABLE_INFO,
Rami Rosen238fc7e2008-02-09 23:43:11 -08001786 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07001787 .fc_ifindex = ifindex,
1788 .fc_dst_len = prefixlen,
1789 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
1790 RTF_UP | RTF_PREF(pref),
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001791 .fc_nlinfo.pid = 0,
1792 .fc_nlinfo.nlh = NULL,
1793 .fc_nlinfo.nl_net = net,
Thomas Graf86872cb2006-08-22 00:01:08 -07001794 };
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001795
Thomas Graf86872cb2006-08-22 00:01:08 -07001796 ipv6_addr_copy(&cfg.fc_dst, prefix);
1797 ipv6_addr_copy(&cfg.fc_gateway, gwaddr);
1798
YOSHIFUJI Hideakie317da92006-03-20 17:06:42 -08001799 /* We should treat it as a default route if prefix length is 0. */
1800 if (!prefixlen)
Thomas Graf86872cb2006-08-22 00:01:08 -07001801 cfg.fc_flags |= RTF_DEFAULT;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001802
Thomas Graf86872cb2006-08-22 00:01:08 -07001803 ip6_route_add(&cfg);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001804
Daniel Lezcanoefa2cea2008-03-04 13:46:48 -08001805 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex);
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08001806}
1807#endif
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809struct rt6_info *rt6_get_dflt_router(struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001810{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001812 struct fib6_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001814 table = fib6_get_table(dev_net(dev), RT6_TABLE_DFLT);
Thomas Grafc71099a2006-08-04 23:20:06 -07001815 if (table == NULL)
1816 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Thomas Grafc71099a2006-08-04 23:20:06 -07001818 write_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001819 for (rt = table->tb6_root.leaf; rt; rt=rt->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 if (dev == rt->rt6i_dev &&
YOSHIFUJI Hideaki045927f2006-03-20 17:00:48 -08001821 ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 ipv6_addr_equal(&rt->rt6i_gateway, addr))
1823 break;
1824 }
1825 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001826 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001827 write_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return rt;
1829}
1830
1831struct rt6_info *rt6_add_dflt_router(struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -08001832 struct net_device *dev,
1833 unsigned int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Thomas Graf86872cb2006-08-22 00:01:08 -07001835 struct fib6_config cfg = {
1836 .fc_table = RT6_TABLE_DFLT,
Rami Rosen238fc7e2008-02-09 23:43:11 -08001837 .fc_metric = IP6_RT_PRIO_USER,
Thomas Graf86872cb2006-08-22 00:01:08 -07001838 .fc_ifindex = dev->ifindex,
1839 .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
1840 RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
Daniel Lezcano55786892008-03-04 13:47:47 -08001841 .fc_nlinfo.pid = 0,
1842 .fc_nlinfo.nlh = NULL,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001843 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001844 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Thomas Graf86872cb2006-08-22 00:01:08 -07001846 ipv6_addr_copy(&cfg.fc_gateway, gwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Thomas Graf86872cb2006-08-22 00:01:08 -07001848 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 return rt6_get_dflt_router(gwaddr, dev);
1851}
1852
Daniel Lezcano7b4da532008-03-04 13:47:14 -08001853void rt6_purge_dflt_routers(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
1855 struct rt6_info *rt;
Thomas Grafc71099a2006-08-04 23:20:06 -07001856 struct fib6_table *table;
1857
1858 /* NOTE: Keep consistent with rt6_get_dflt_router */
Daniel Lezcano7b4da532008-03-04 13:47:14 -08001859 table = fib6_get_table(net, RT6_TABLE_DFLT);
Thomas Grafc71099a2006-08-04 23:20:06 -07001860 if (table == NULL)
1861 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863restart:
Thomas Grafc71099a2006-08-04 23:20:06 -07001864 read_lock_bh(&table->tb6_lock);
Changli Gaod8d1f302010-06-10 23:31:35 -07001865 for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001867 dst_hold(&rt->dst);
Thomas Grafc71099a2006-08-04 23:20:06 -07001868 read_unlock_bh(&table->tb6_lock);
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001869 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 goto restart;
1871 }
1872 }
Thomas Grafc71099a2006-08-04 23:20:06 -07001873 read_unlock_bh(&table->tb6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875
Daniel Lezcano55786892008-03-04 13:47:47 -08001876static void rtmsg_to_fib6_config(struct net *net,
1877 struct in6_rtmsg *rtmsg,
Thomas Graf86872cb2006-08-22 00:01:08 -07001878 struct fib6_config *cfg)
1879{
1880 memset(cfg, 0, sizeof(*cfg));
1881
1882 cfg->fc_table = RT6_TABLE_MAIN;
1883 cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
1884 cfg->fc_metric = rtmsg->rtmsg_metric;
1885 cfg->fc_expires = rtmsg->rtmsg_info;
1886 cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
1887 cfg->fc_src_len = rtmsg->rtmsg_src_len;
1888 cfg->fc_flags = rtmsg->rtmsg_flags;
1889
Daniel Lezcano55786892008-03-04 13:47:47 -08001890 cfg->fc_nlinfo.nl_net = net;
Benjamin Theryf1243c22008-02-26 18:10:03 -08001891
Thomas Graf86872cb2006-08-22 00:01:08 -07001892 ipv6_addr_copy(&cfg->fc_dst, &rtmsg->rtmsg_dst);
1893 ipv6_addr_copy(&cfg->fc_src, &rtmsg->rtmsg_src);
1894 ipv6_addr_copy(&cfg->fc_gateway, &rtmsg->rtmsg_gateway);
1895}
1896
Daniel Lezcano55786892008-03-04 13:47:47 -08001897int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
Thomas Graf86872cb2006-08-22 00:01:08 -07001899 struct fib6_config cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 struct in6_rtmsg rtmsg;
1901 int err;
1902
1903 switch(cmd) {
1904 case SIOCADDRT: /* Add a route */
1905 case SIOCDELRT: /* Delete a route */
1906 if (!capable(CAP_NET_ADMIN))
1907 return -EPERM;
1908 err = copy_from_user(&rtmsg, arg,
1909 sizeof(struct in6_rtmsg));
1910 if (err)
1911 return -EFAULT;
Thomas Graf86872cb2006-08-22 00:01:08 -07001912
Daniel Lezcano55786892008-03-04 13:47:47 -08001913 rtmsg_to_fib6_config(net, &rtmsg, &cfg);
Thomas Graf86872cb2006-08-22 00:01:08 -07001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 rtnl_lock();
1916 switch (cmd) {
1917 case SIOCADDRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07001918 err = ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 break;
1920 case SIOCDELRT:
Thomas Graf86872cb2006-08-22 00:01:08 -07001921 err = ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 break;
1923 default:
1924 err = -EINVAL;
1925 }
1926 rtnl_unlock();
1927
1928 return err;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 return -EINVAL;
1932}
1933
1934/*
1935 * Drop the packet on the floor
1936 */
1937
Brian Haleyd5fdd6b2009-06-23 04:31:07 -07001938static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001940 int type;
Eric Dumazetadf30902009-06-02 05:19:30 +00001941 struct dst_entry *dst = skb_dst(skb);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001942 switch (ipstats_mib_noroutes) {
1943 case IPSTATS_MIB_INNOROUTES:
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001944 type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
Ulrich Weber45bb0062010-02-25 23:28:58 +00001945 if (type == IPV6_ADDR_ANY) {
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001946 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
1947 IPSTATS_MIB_INADDRERRORS);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001948 break;
1949 }
1950 /* FALLTHROUGH */
1951 case IPSTATS_MIB_OUTNOROUTES:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -07001952 IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
1953 ipstats_mib_noroutes);
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001954 break;
1955 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001956 icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 kfree_skb(skb);
1958 return 0;
1959}
1960
Thomas Graf9ce8ade2006-10-18 20:46:54 -07001961static int ip6_pkt_discard(struct sk_buff *skb)
1962{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001963 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07001964}
1965
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001966static int ip6_pkt_discard_out(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
Eric Dumazetadf30902009-06-02 05:19:30 +00001968 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001969 return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970}
1971
David S. Miller6723ab52006-10-18 21:20:57 -07001972#ifdef CONFIG_IPV6_MULTIPLE_TABLES
1973
Thomas Graf9ce8ade2006-10-18 20:46:54 -07001974static int ip6_pkt_prohibit(struct sk_buff *skb)
1975{
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001976 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07001977}
1978
1979static int ip6_pkt_prohibit_out(struct sk_buff *skb)
1980{
Eric Dumazetadf30902009-06-02 05:19:30 +00001981 skb->dev = skb_dst(skb)->dev;
YOSHIFUJI Hideaki612f09e2007-04-13 16:18:02 -07001982 return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
Thomas Graf9ce8ade2006-10-18 20:46:54 -07001983}
1984
David S. Miller6723ab52006-10-18 21:20:57 -07001985#endif
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987/*
1988 * Allocate a dst for local (unicast / anycast) address.
1989 */
1990
1991struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
1992 const struct in6_addr *addr,
1993 int anycast)
1994{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001995 struct net *net = dev_net(idev->dev);
Alexey Dobriyan86393e52009-08-29 01:34:49 +00001996 struct rt6_info *rt = ip6_dst_alloc(&net->ipv6.ip6_dst_ops);
David S. Miller14deae42009-01-04 16:04:39 -08001997 struct neighbour *neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Ben Greear40385652010-11-08 12:33:48 +00001999 if (rt == NULL) {
2000 if (net_ratelimit())
2001 pr_warning("IPv6: Maximum number of routes reached,"
2002 " consider increasing route/max_size.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 return ERR_PTR(-ENOMEM);
Ben Greear40385652010-11-08 12:33:48 +00002004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
Daniel Lezcano55786892008-03-04 13:47:47 -08002006 dev_hold(net->loopback_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 in6_dev_hold(idev);
2008
Changli Gaod8d1f302010-06-10 23:31:35 -07002009 rt->dst.flags = DST_HOST;
2010 rt->dst.input = ip6_input;
2011 rt->dst.output = ip6_output;
Daniel Lezcano55786892008-03-04 13:47:47 -08002012 rt->rt6i_dev = net->loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 rt->rt6i_idev = idev;
David S. Millerdefb3512010-12-08 21:16:57 -08002014 dst_metric_set(&rt->dst, RTAX_HOPLIMIT, -1);
Changli Gaod8d1f302010-06-10 23:31:35 -07002015 rt->dst.obsolete = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
2017 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
YOSHIFUJI Hideaki58c4fb82005-12-21 22:56:42 +09002018 if (anycast)
2019 rt->rt6i_flags |= RTF_ANYCAST;
2020 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 rt->rt6i_flags |= RTF_LOCAL;
David S. Miller14deae42009-01-04 16:04:39 -08002022 neigh = ndisc_get_neigh(rt->rt6i_dev, &rt->rt6i_gateway);
2023 if (IS_ERR(neigh)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002024 dst_free(&rt->dst);
David S. Miller14deae42009-01-04 16:04:39 -08002025
2026 /* We are casting this because that is the return
2027 * value type. But an errno encoded pointer is the
2028 * same regardless of the underlying pointer type,
2029 * and that's what we are returning. So this is OK.
2030 */
2031 return (struct rt6_info *) neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 }
David S. Miller14deae42009-01-04 16:04:39 -08002033 rt->rt6i_nexthop = neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 ipv6_addr_copy(&rt->rt6i_dst.addr, addr);
2036 rt->rt6i_dst.plen = 128;
Daniel Lezcano55786892008-03-04 13:47:47 -08002037 rt->rt6i_table = fib6_get_table(net, RT6_TABLE_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Changli Gaod8d1f302010-06-10 23:31:35 -07002039 atomic_set(&rt->dst.__refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 return rt;
2042}
2043
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002044struct arg_dev_net {
2045 struct net_device *dev;
2046 struct net *net;
2047};
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049static int fib6_ifdown(struct rt6_info *rt, void *arg)
2050{
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002051 const struct arg_dev_net *adn = arg;
2052 const struct net_device *dev = adn->dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002053
stephen hemmingerbc3ef662010-12-16 17:42:40 +00002054 if ((rt->rt6i_dev == dev || dev == NULL) &&
2055 rt != adn->net->ipv6.ip6_null_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 RT6_TRACE("deleted by ifdown %p\n", rt);
2057 return -1;
2058 }
2059 return 0;
2060}
2061
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002062void rt6_ifdown(struct net *net, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002064 struct arg_dev_net adn = {
2065 .dev = dev,
2066 .net = net,
2067 };
2068
2069 fib6_clean_all(net, fib6_ifdown, 0, &adn);
David S. Miller1e493d12008-09-10 17:27:15 -07002070 icmp6_clean_all(fib6_ifdown, &adn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071}
2072
2073struct rt6_mtu_change_arg
2074{
2075 struct net_device *dev;
2076 unsigned mtu;
2077};
2078
2079static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
2080{
2081 struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
2082 struct inet6_dev *idev;
2083
2084 /* In IPv6 pmtu discovery is not optional,
2085 so that RTAX_MTU lock cannot disable it.
2086 We still use this lock to block changes
2087 caused by addrconf/ndisc.
2088 */
2089
2090 idev = __in6_dev_get(arg->dev);
2091 if (idev == NULL)
2092 return 0;
2093
2094 /* For administrative MTU increase, there is no way to discover
2095 IPv6 PMTU increase, so PMTU increase should be updated here.
2096 Since RFC 1981 doesn't include administrative MTU increase
2097 update PMTU increase is a MUST. (i.e. jumbo frame)
2098 */
2099 /*
2100 If new MTU is less than route PMTU, this new MTU will be the
2101 lowest MTU in the path, update the route PMTU to reflect PMTU
2102 decreases; if new MTU is greater than route PMTU, and the
2103 old MTU is the lowest MTU in the path, update the route PMTU
2104 to reflect the increase. In this case if the other nodes' MTU
2105 also have the lowest MTU, TOO BIG MESSAGE will be lead to
2106 PMTU discouvery.
2107 */
2108 if (rt->rt6i_dev == arg->dev &&
Changli Gaod8d1f302010-06-10 23:31:35 -07002109 !dst_metric_locked(&rt->dst, RTAX_MTU) &&
2110 (dst_mtu(&rt->dst) >= arg->mtu ||
2111 (dst_mtu(&rt->dst) < arg->mtu &&
2112 dst_mtu(&rt->dst) == idev->cnf.mtu6))) {
David S. Millerdefb3512010-12-08 21:16:57 -08002113 dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
Simon Arlott566cfd82007-07-26 00:09:55 -07002114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 return 0;
2116}
2117
2118void rt6_mtu_change(struct net_device *dev, unsigned mtu)
2119{
Thomas Grafc71099a2006-08-04 23:20:06 -07002120 struct rt6_mtu_change_arg arg = {
2121 .dev = dev,
2122 .mtu = mtu,
2123 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002125 fib6_clean_all(dev_net(dev), rt6_mtu_change_route, 0, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126}
2127
Patrick McHardyef7c79e2007-06-05 12:38:30 -07002128static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
Thomas Graf5176f912006-08-26 20:13:18 -07002129 [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) },
Thomas Graf86872cb2006-08-22 00:01:08 -07002130 [RTA_OIF] = { .type = NLA_U32 },
Thomas Grafab364a62006-08-22 00:01:47 -07002131 [RTA_IIF] = { .type = NLA_U32 },
Thomas Graf86872cb2006-08-22 00:01:08 -07002132 [RTA_PRIORITY] = { .type = NLA_U32 },
2133 [RTA_METRICS] = { .type = NLA_NESTED },
2134};
2135
2136static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
2137 struct fib6_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
Thomas Graf86872cb2006-08-22 00:01:08 -07002139 struct rtmsg *rtm;
2140 struct nlattr *tb[RTA_MAX+1];
2141 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Thomas Graf86872cb2006-08-22 00:01:08 -07002143 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2144 if (err < 0)
2145 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Thomas Graf86872cb2006-08-22 00:01:08 -07002147 err = -EINVAL;
2148 rtm = nlmsg_data(nlh);
2149 memset(cfg, 0, sizeof(*cfg));
2150
2151 cfg->fc_table = rtm->rtm_table;
2152 cfg->fc_dst_len = rtm->rtm_dst_len;
2153 cfg->fc_src_len = rtm->rtm_src_len;
2154 cfg->fc_flags = RTF_UP;
2155 cfg->fc_protocol = rtm->rtm_protocol;
2156
2157 if (rtm->rtm_type == RTN_UNREACHABLE)
2158 cfg->fc_flags |= RTF_REJECT;
2159
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002160 if (rtm->rtm_type == RTN_LOCAL)
2161 cfg->fc_flags |= RTF_LOCAL;
2162
Thomas Graf86872cb2006-08-22 00:01:08 -07002163 cfg->fc_nlinfo.pid = NETLINK_CB(skb).pid;
2164 cfg->fc_nlinfo.nlh = nlh;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002165 cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
Thomas Graf86872cb2006-08-22 00:01:08 -07002166
2167 if (tb[RTA_GATEWAY]) {
2168 nla_memcpy(&cfg->fc_gateway, tb[RTA_GATEWAY], 16);
2169 cfg->fc_flags |= RTF_GATEWAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002171
2172 if (tb[RTA_DST]) {
2173 int plen = (rtm->rtm_dst_len + 7) >> 3;
2174
2175 if (nla_len(tb[RTA_DST]) < plen)
2176 goto errout;
2177
2178 nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002180
2181 if (tb[RTA_SRC]) {
2182 int plen = (rtm->rtm_src_len + 7) >> 3;
2183
2184 if (nla_len(tb[RTA_SRC]) < plen)
2185 goto errout;
2186
2187 nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002189
2190 if (tb[RTA_OIF])
2191 cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
2192
2193 if (tb[RTA_PRIORITY])
2194 cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
2195
2196 if (tb[RTA_METRICS]) {
2197 cfg->fc_mx = nla_data(tb[RTA_METRICS]);
2198 cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 }
Thomas Graf86872cb2006-08-22 00:01:08 -07002200
2201 if (tb[RTA_TABLE])
2202 cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
2203
2204 err = 0;
2205errout:
2206 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207}
2208
Thomas Grafc127ea22007-03-22 11:58:32 -07002209static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210{
Thomas Graf86872cb2006-08-22 00:01:08 -07002211 struct fib6_config cfg;
2212 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Thomas Graf86872cb2006-08-22 00:01:08 -07002214 err = rtm_to_fib6_config(skb, nlh, &cfg);
2215 if (err < 0)
2216 return err;
2217
2218 return ip6_route_del(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219}
2220
Thomas Grafc127ea22007-03-22 11:58:32 -07002221static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222{
Thomas Graf86872cb2006-08-22 00:01:08 -07002223 struct fib6_config cfg;
2224 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Thomas Graf86872cb2006-08-22 00:01:08 -07002226 err = rtm_to_fib6_config(skb, nlh, &cfg);
2227 if (err < 0)
2228 return err;
2229
2230 return ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231}
2232
Thomas Graf339bf982006-11-10 14:10:15 -08002233static inline size_t rt6_nlmsg_size(void)
2234{
2235 return NLMSG_ALIGN(sizeof(struct rtmsg))
2236 + nla_total_size(16) /* RTA_SRC */
2237 + nla_total_size(16) /* RTA_DST */
2238 + nla_total_size(16) /* RTA_GATEWAY */
2239 + nla_total_size(16) /* RTA_PREFSRC */
2240 + nla_total_size(4) /* RTA_TABLE */
2241 + nla_total_size(4) /* RTA_IIF */
2242 + nla_total_size(4) /* RTA_OIF */
2243 + nla_total_size(4) /* RTA_PRIORITY */
Noriaki TAKAMIYA6a2b9ce2007-01-23 22:09:41 -08002244 + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
Thomas Graf339bf982006-11-10 14:10:15 -08002245 + nla_total_size(sizeof(struct rta_cacheinfo));
2246}
2247
Brian Haley191cd582008-08-14 15:33:21 -07002248static int rt6_fill_node(struct net *net,
2249 struct sk_buff *skb, struct rt6_info *rt,
Jamal Hadi Salim0d51aa82005-06-21 13:51:04 -07002250 struct in6_addr *dst, struct in6_addr *src,
2251 int iif, int type, u32 pid, u32 seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002252 int prefix, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
2254 struct rtmsg *rtm;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002255 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08002256 long expires;
Patrick McHardy9e762a42006-08-10 23:09:48 -07002257 u32 table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259 if (prefix) { /* user wants prefix routes only */
2260 if (!(rt->rt6i_flags & RTF_PREFIX_RT)) {
2261 /* success since this is not a prefix route */
2262 return 1;
2263 }
2264 }
2265
Thomas Graf2d7202b2006-08-22 00:01:27 -07002266 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*rtm), flags);
2267 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08002268 return -EMSGSIZE;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002269
2270 rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 rtm->rtm_family = AF_INET6;
2272 rtm->rtm_dst_len = rt->rt6i_dst.plen;
2273 rtm->rtm_src_len = rt->rt6i_src.plen;
2274 rtm->rtm_tos = 0;
Thomas Grafc71099a2006-08-04 23:20:06 -07002275 if (rt->rt6i_table)
Patrick McHardy9e762a42006-08-10 23:09:48 -07002276 table = rt->rt6i_table->tb6_id;
Thomas Grafc71099a2006-08-04 23:20:06 -07002277 else
Patrick McHardy9e762a42006-08-10 23:09:48 -07002278 table = RT6_TABLE_UNSPEC;
2279 rtm->rtm_table = table;
Thomas Graf2d7202b2006-08-22 00:01:27 -07002280 NLA_PUT_U32(skb, RTA_TABLE, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 if (rt->rt6i_flags&RTF_REJECT)
2282 rtm->rtm_type = RTN_UNREACHABLE;
Maciej Żenczykowskiab79ad12010-09-27 00:07:02 +00002283 else if (rt->rt6i_flags&RTF_LOCAL)
2284 rtm->rtm_type = RTN_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 else if (rt->rt6i_dev && (rt->rt6i_dev->flags&IFF_LOOPBACK))
2286 rtm->rtm_type = RTN_LOCAL;
2287 else
2288 rtm->rtm_type = RTN_UNICAST;
2289 rtm->rtm_flags = 0;
2290 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
2291 rtm->rtm_protocol = rt->rt6i_protocol;
2292 if (rt->rt6i_flags&RTF_DYNAMIC)
2293 rtm->rtm_protocol = RTPROT_REDIRECT;
2294 else if (rt->rt6i_flags & RTF_ADDRCONF)
2295 rtm->rtm_protocol = RTPROT_KERNEL;
2296 else if (rt->rt6i_flags&RTF_DEFAULT)
2297 rtm->rtm_protocol = RTPROT_RA;
2298
2299 if (rt->rt6i_flags&RTF_CACHE)
2300 rtm->rtm_flags |= RTM_F_CLONED;
2301
2302 if (dst) {
Thomas Graf2d7202b2006-08-22 00:01:27 -07002303 NLA_PUT(skb, RTA_DST, 16, dst);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002304 rtm->rtm_dst_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 } else if (rtm->rtm_dst_len)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002306 NLA_PUT(skb, RTA_DST, 16, &rt->rt6i_dst.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307#ifdef CONFIG_IPV6_SUBTREES
2308 if (src) {
Thomas Graf2d7202b2006-08-22 00:01:27 -07002309 NLA_PUT(skb, RTA_SRC, 16, src);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002310 rtm->rtm_src_len = 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 } else if (rtm->rtm_src_len)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002312 NLA_PUT(skb, RTA_SRC, 16, &rt->rt6i_src.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002314 if (iif) {
2315#ifdef CONFIG_IPV6_MROUTE
2316 if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
Benjamin Thery8229efd2008-12-10 16:30:15 -08002317 int err = ip6mr_get_route(net, skb, rtm, nowait);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002318 if (err <= 0) {
2319 if (!nowait) {
2320 if (err == 0)
2321 return 0;
2322 goto nla_put_failure;
2323 } else {
2324 if (err == -EMSGSIZE)
2325 goto nla_put_failure;
2326 }
2327 }
2328 } else
2329#endif
2330 NLA_PUT_U32(skb, RTA_IIF, iif);
2331 } else if (dst) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002332 struct inet6_dev *idev = ip6_dst_idev(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 struct in6_addr saddr_buf;
Brian Haley191cd582008-08-14 15:33:21 -07002334 if (ipv6_dev_get_saddr(net, idev ? idev->dev : NULL,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09002335 dst, 0, &saddr_buf) == 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002336 NLA_PUT(skb, RTA_PREFSRC, 16, &saddr_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 }
Thomas Graf2d7202b2006-08-22 00:01:27 -07002338
David S. Millerdefb3512010-12-08 21:16:57 -08002339 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002340 goto nla_put_failure;
2341
Changli Gaod8d1f302010-06-10 23:31:35 -07002342 if (rt->dst.neighbour)
2343 NLA_PUT(skb, RTA_GATEWAY, 16, &rt->dst.neighbour->primary_key);
Thomas Graf2d7202b2006-08-22 00:01:27 -07002344
Changli Gaod8d1f302010-06-10 23:31:35 -07002345 if (rt->dst.dev)
Thomas Graf2d7202b2006-08-22 00:01:27 -07002346 NLA_PUT_U32(skb, RTA_OIF, rt->rt6i_dev->ifindex);
2347
2348 NLA_PUT_U32(skb, RTA_PRIORITY, rt->rt6i_metric);
Thomas Grafe3703b32006-11-27 09:27:07 -08002349
YOSHIFUJI Hideaki36e3dea2008-05-13 02:52:55 +09002350 if (!(rt->rt6i_flags & RTF_EXPIRES))
2351 expires = 0;
2352 else if (rt->rt6i_expires - jiffies < INT_MAX)
2353 expires = rt->rt6i_expires - jiffies;
2354 else
2355 expires = INT_MAX;
YOSHIFUJI Hideaki69cdf8f2008-05-19 16:55:13 -07002356
Changli Gaod8d1f302010-06-10 23:31:35 -07002357 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, 0, 0,
2358 expires, rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08002359 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Thomas Graf2d7202b2006-08-22 00:01:27 -07002361 return nlmsg_end(skb, nlh);
2362
2363nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08002364 nlmsg_cancel(skb, nlh);
2365 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366}
2367
Patrick McHardy1b43af52006-08-10 23:11:17 -07002368int rt6_dump_route(struct rt6_info *rt, void *p_arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369{
2370 struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
2371 int prefix;
2372
Thomas Graf2d7202b2006-08-22 00:01:27 -07002373 if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
2374 struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0;
2376 } else
2377 prefix = 0;
2378
Brian Haley191cd582008-08-14 15:33:21 -07002379 return rt6_fill_node(arg->net,
2380 arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 NETLINK_CB(arg->cb->skb).pid, arg->cb->nlh->nlmsg_seq,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002382 prefix, 0, NLM_F_MULTI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383}
2384
Thomas Grafc127ea22007-03-22 11:58:32 -07002385static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002387 struct net *net = sock_net(in_skb->sk);
Thomas Grafab364a62006-08-22 00:01:47 -07002388 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 struct rt6_info *rt;
Thomas Grafab364a62006-08-22 00:01:47 -07002390 struct sk_buff *skb;
2391 struct rtmsg *rtm;
2392 struct flowi fl;
2393 int err, iif = 0;
2394
2395 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2396 if (err < 0)
2397 goto errout;
2398
2399 err = -EINVAL;
2400 memset(&fl, 0, sizeof(fl));
2401
2402 if (tb[RTA_SRC]) {
2403 if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
2404 goto errout;
2405
2406 ipv6_addr_copy(&fl.fl6_src, nla_data(tb[RTA_SRC]));
2407 }
2408
2409 if (tb[RTA_DST]) {
2410 if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
2411 goto errout;
2412
2413 ipv6_addr_copy(&fl.fl6_dst, nla_data(tb[RTA_DST]));
2414 }
2415
2416 if (tb[RTA_IIF])
2417 iif = nla_get_u32(tb[RTA_IIF]);
2418
2419 if (tb[RTA_OIF])
2420 fl.oif = nla_get_u32(tb[RTA_OIF]);
2421
2422 if (iif) {
2423 struct net_device *dev;
Daniel Lezcano55786892008-03-04 13:47:47 -08002424 dev = __dev_get_by_index(net, iif);
Thomas Grafab364a62006-08-22 00:01:47 -07002425 if (!dev) {
2426 err = -ENODEV;
2427 goto errout;
2428 }
2429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
2431 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
Thomas Grafab364a62006-08-22 00:01:47 -07002432 if (skb == NULL) {
2433 err = -ENOBUFS;
2434 goto errout;
2435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437 /* Reserve room for dummy headers, this skb can pass
2438 through good chunk of routing engine.
2439 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002440 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr));
2442
Daniel Lezcano8a3edd82008-03-07 11:14:16 -08002443 rt = (struct rt6_info*) ip6_route_output(net, NULL, &fl);
Changli Gaod8d1f302010-06-10 23:31:35 -07002444 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Brian Haley191cd582008-08-14 15:33:21 -07002446 err = rt6_fill_node(net, skb, rt, &fl.fl6_dst, &fl.fl6_src, iif,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 RTM_NEWROUTE, NETLINK_CB(in_skb).pid,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002448 nlh->nlmsg_seq, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 if (err < 0) {
Thomas Grafab364a62006-08-22 00:01:47 -07002450 kfree_skb(skb);
2451 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 }
2453
Daniel Lezcano55786892008-03-04 13:47:47 -08002454 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).pid);
Thomas Grafab364a62006-08-22 00:01:47 -07002455errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457}
2458
Thomas Graf86872cb2006-08-22 00:01:08 -07002459void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460{
2461 struct sk_buff *skb;
Daniel Lezcano55786892008-03-04 13:47:47 -08002462 struct net *net = info->nl_net;
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002463 u32 seq;
2464 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Denis V. Lunev528c4ce2007-12-13 09:45:12 -08002466 err = -ENOBUFS;
2467 seq = info->nlh != NULL ? info->nlh->nlmsg_seq : 0;
Thomas Graf86872cb2006-08-22 00:01:08 -07002468
Thomas Graf339bf982006-11-10 14:10:15 -08002469 skb = nlmsg_new(rt6_nlmsg_size(), gfp_any());
Thomas Graf21713eb2006-08-15 00:35:24 -07002470 if (skb == NULL)
2471 goto errout;
2472
Brian Haley191cd582008-08-14 15:33:21 -07002473 err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09002474 event, info->pid, seq, 0, 0, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08002475 if (err < 0) {
2476 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
2477 WARN_ON(err == -EMSGSIZE);
2478 kfree_skb(skb);
2479 goto errout;
2480 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002481 rtnl_notify(skb, net, info->pid, RTNLGRP_IPV6_ROUTE,
2482 info->nlh, gfp_any());
2483 return;
Thomas Graf21713eb2006-08-15 00:35:24 -07002484errout:
2485 if (err < 0)
Daniel Lezcano55786892008-03-04 13:47:47 -08002486 rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487}
2488
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002489static int ip6_route_dev_notify(struct notifier_block *this,
2490 unsigned long event, void *data)
2491{
2492 struct net_device *dev = (struct net_device *)data;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002493 struct net *net = dev_net(dev);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002494
2495 if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002496 net->ipv6.ip6_null_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002497 net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
2498#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07002499 net->ipv6.ip6_prohibit_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002500 net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07002501 net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002502 net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
2503#endif
2504 }
2505
2506 return NOTIFY_OK;
2507}
2508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509/*
2510 * /proc
2511 */
2512
2513#ifdef CONFIG_PROC_FS
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515struct rt6_proc_arg
2516{
2517 char *buffer;
2518 int offset;
2519 int length;
2520 int skip;
2521 int len;
2522};
2523
2524static int rt6_info_route(struct rt6_info *rt, void *p_arg)
2525{
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002526 struct seq_file *m = p_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002528 seq_printf(m, "%pi6 %02x ", &rt->rt6i_dst.addr, rt->rt6i_dst.plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
2530#ifdef CONFIG_IPV6_SUBTREES
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002531 seq_printf(m, "%pi6 %02x ", &rt->rt6i_src.addr, rt->rt6i_src.plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532#else
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002533 seq_puts(m, "00000000000000000000000000000000 00 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534#endif
2535
2536 if (rt->rt6i_nexthop) {
Harvey Harrison4b7a4272008-10-29 12:50:24 -07002537 seq_printf(m, "%pi6", rt->rt6i_nexthop->primary_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 } else {
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002539 seq_puts(m, "00000000000000000000000000000000");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 }
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002541 seq_printf(m, " %08x %08x %08x %08x %8s\n",
Changli Gaod8d1f302010-06-10 23:31:35 -07002542 rt->rt6i_metric, atomic_read(&rt->dst.__refcnt),
2543 rt->dst.__use, rt->rt6i_flags,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002544 rt->rt6i_dev ? rt->rt6i_dev->name : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 return 0;
2546}
2547
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002548static int ipv6_route_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549{
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002550 struct net *net = (struct net *)m->private;
2551 fib6_clean_all(net, rt6_info_route, 0, m);
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553}
2554
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002555static int ipv6_route_open(struct inode *inode, struct file *file)
2556{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07002557 return single_open_net(inode, file, ipv6_route_show);
Daniel Lezcanof3db4852008-03-03 23:27:06 -08002558}
2559
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002560static const struct file_operations ipv6_route_proc_fops = {
2561 .owner = THIS_MODULE,
2562 .open = ipv6_route_open,
2563 .read = seq_read,
2564 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07002565 .release = single_release_net,
Alexey Dobriyan33120b32007-11-06 05:27:11 -08002566};
2567
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568static int rt6_stats_seq_show(struct seq_file *seq, void *v)
2569{
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002570 struct net *net = (struct net *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002572 net->ipv6.rt6_stats->fib_nodes,
2573 net->ipv6.rt6_stats->fib_route_nodes,
2574 net->ipv6.rt6_stats->fib_rt_alloc,
2575 net->ipv6.rt6_stats->fib_rt_entries,
2576 net->ipv6.rt6_stats->fib_rt_cache,
Eric Dumazetfc66f952010-10-08 06:37:34 +00002577 dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002578 net->ipv6.rt6_stats->fib_discarded_routes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
2580 return 0;
2581}
2582
2583static int rt6_stats_seq_open(struct inode *inode, struct file *file)
2584{
Pavel Emelyanovde05c552008-07-18 04:07:21 -07002585 return single_open_net(inode, file, rt6_stats_seq_show);
Daniel Lezcano69ddb802008-03-04 13:46:23 -08002586}
2587
Arjan van de Ven9a321442007-02-12 00:55:35 -08002588static const struct file_operations rt6_stats_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 .owner = THIS_MODULE,
2590 .open = rt6_stats_seq_open,
2591 .read = seq_read,
2592 .llseek = seq_lseek,
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -07002593 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594};
2595#endif /* CONFIG_PROC_FS */
2596
2597#ifdef CONFIG_SYSCTL
2598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002600int ipv6_sysctl_rtcache_flush(ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 void __user *buffer, size_t *lenp, loff_t *ppos)
2602{
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08002603 struct net *net = current->nsproxy->net_ns;
2604 int delay = net->ipv6.sysctl.flush_delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (write) {
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002606 proc_dointvec(ctl, write, buffer, lenp, ppos);
Daniel Lezcano5b7c9312008-03-03 23:28:58 -08002607 fib6_run_gc(delay <= 0 ? ~0UL : (unsigned long)delay, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 return 0;
2609 } else
2610 return -EINVAL;
2611}
2612
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002613ctl_table ipv6_route_table_template[] = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002614 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 .procname = "flush",
Daniel Lezcano49905092008-01-10 03:01:01 -08002616 .data = &init_net.ipv6.sysctl.flush_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 .maxlen = sizeof(int),
Dave Jones89c8b3a12005-04-28 12:11:49 -07002618 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002619 .proc_handler = ipv6_sysctl_rtcache_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 },
2621 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 .procname = "gc_thresh",
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08002623 .data = &ip6_dst_ops_template.gc_thresh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 .maxlen = sizeof(int),
2625 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002626 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 },
2628 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 .procname = "max_size",
Daniel Lezcano49905092008-01-10 03:01:01 -08002630 .data = &init_net.ipv6.sysctl.ip6_rt_max_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 .maxlen = sizeof(int),
2632 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002633 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 },
2635 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 .procname = "gc_min_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08002637 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 .maxlen = sizeof(int),
2639 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002640 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 },
2642 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 .procname = "gc_timeout",
Daniel Lezcano49905092008-01-10 03:01:01 -08002644 .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 .maxlen = sizeof(int),
2646 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002647 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 },
2649 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 .procname = "gc_interval",
Daniel Lezcano49905092008-01-10 03:01:01 -08002651 .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 .maxlen = sizeof(int),
2653 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002654 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 },
2656 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 .procname = "gc_elasticity",
Daniel Lezcano49905092008-01-10 03:01:01 -08002658 .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 .maxlen = sizeof(int),
2660 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07002661 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 },
2663 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 .procname = "mtu_expires",
Daniel Lezcano49905092008-01-10 03:01:01 -08002665 .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 .maxlen = sizeof(int),
2667 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002668 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 },
2670 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 .procname = "min_adv_mss",
Daniel Lezcano49905092008-01-10 03:01:01 -08002672 .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 .maxlen = sizeof(int),
2674 .mode = 0644,
Min Zhangf3d3f612010-08-14 22:42:51 -07002675 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 },
2677 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 .procname = "gc_min_interval_ms",
Daniel Lezcano49905092008-01-10 03:01:01 -08002679 .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 .maxlen = sizeof(int),
2681 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08002682 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08002684 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685};
2686
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002687struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002688{
2689 struct ctl_table *table;
2690
2691 table = kmemdup(ipv6_route_table_template,
2692 sizeof(ipv6_route_table_template),
2693 GFP_KERNEL);
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002694
2695 if (table) {
2696 table[0].data = &net->ipv6.sysctl.flush_delay;
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002697 table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002698 table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
2699 table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
2700 table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
2701 table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
2702 table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
2703 table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
2704 table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
Alexey Dobriyan9c69fab2009-12-18 20:11:03 -08002705 table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +09002706 }
2707
Daniel Lezcano760f2d02008-01-10 02:53:43 -08002708 return table;
2709}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710#endif
2711
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002712static int __net_init ip6_route_net_init(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002713{
Pavel Emelyanov633d424b2008-04-21 14:25:23 -07002714 int ret = -ENOMEM;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002715
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002716 memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
2717 sizeof(net->ipv6.ip6_dst_ops));
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002718
Eric Dumazetfc66f952010-10-08 06:37:34 +00002719 if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
2720 goto out_ip6_dst_ops;
2721
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002722 net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
2723 sizeof(*net->ipv6.ip6_null_entry),
2724 GFP_KERNEL);
2725 if (!net->ipv6.ip6_null_entry)
Eric Dumazetfc66f952010-10-08 06:37:34 +00002726 goto out_ip6_dst_entries;
Changli Gaod8d1f302010-06-10 23:31:35 -07002727 net->ipv6.ip6_null_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002728 (struct dst_entry *)net->ipv6.ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07002729 net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08002730 dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
2731 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002732
2733#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2734 net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
2735 sizeof(*net->ipv6.ip6_prohibit_entry),
2736 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07002737 if (!net->ipv6.ip6_prohibit_entry)
2738 goto out_ip6_null_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07002739 net->ipv6.ip6_prohibit_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002740 (struct dst_entry *)net->ipv6.ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07002741 net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08002742 dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
2743 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002744
2745 net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
2746 sizeof(*net->ipv6.ip6_blk_hole_entry),
2747 GFP_KERNEL);
Peter Zijlstra68fffc62008-10-07 14:12:10 -07002748 if (!net->ipv6.ip6_blk_hole_entry)
2749 goto out_ip6_prohibit_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07002750 net->ipv6.ip6_blk_hole_entry->dst.path =
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002751 (struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
Changli Gaod8d1f302010-06-10 23:31:35 -07002752 net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
David S. Miller62fa8a82011-01-26 20:51:05 -08002753 dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
2754 ip6_template_metrics, true);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002755#endif
2756
Peter Zijlstrab339a47c2008-10-07 14:15:00 -07002757 net->ipv6.sysctl.flush_delay = 0;
2758 net->ipv6.sysctl.ip6_rt_max_size = 4096;
2759 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
2760 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
2761 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
2762 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
2763 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
2764 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
2765
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002766#ifdef CONFIG_PROC_FS
2767 proc_net_fops_create(net, "ipv6_route", 0, &ipv6_route_proc_fops);
2768 proc_net_fops_create(net, "rt6_stats", S_IRUGO, &rt6_stats_seq_fops);
2769#endif
Benjamin Thery6891a342008-03-04 13:49:47 -08002770 net->ipv6.ip6_rt_gc_expire = 30*HZ;
2771
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002772 ret = 0;
2773out:
2774 return ret;
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002775
Peter Zijlstra68fffc62008-10-07 14:12:10 -07002776#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2777out_ip6_prohibit_entry:
2778 kfree(net->ipv6.ip6_prohibit_entry);
2779out_ip6_null_entry:
2780 kfree(net->ipv6.ip6_null_entry);
2781#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00002782out_ip6_dst_entries:
2783 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002784out_ip6_dst_ops:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002785 goto out;
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002786}
2787
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002788static void __net_exit ip6_route_net_exit(struct net *net)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002789{
2790#ifdef CONFIG_PROC_FS
2791 proc_net_remove(net, "ipv6_route");
2792 proc_net_remove(net, "rt6_stats");
2793#endif
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002794 kfree(net->ipv6.ip6_null_entry);
2795#ifdef CONFIG_IPV6_MULTIPLE_TABLES
2796 kfree(net->ipv6.ip6_prohibit_entry);
2797 kfree(net->ipv6.ip6_blk_hole_entry);
2798#endif
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00002799 dst_entries_destroy(&net->ipv6.ip6_dst_ops);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002800}
2801
2802static struct pernet_operations ip6_route_net_ops = {
2803 .init = ip6_route_net_init,
2804 .exit = ip6_route_net_exit,
2805};
2806
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002807static struct notifier_block ip6_route_dev_notifier = {
2808 .notifier_call = ip6_route_dev_notify,
2809 .priority = 0,
2810};
2811
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002812int __init ip6_route_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813{
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002814 int ret;
2815
Daniel Lezcano9a7ec3a2008-03-04 13:48:53 -08002816 ret = -ENOMEM;
2817 ip6_dst_ops_template.kmem_cachep =
2818 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
2819 SLAB_HWCACHE_ALIGN, NULL);
2820 if (!ip6_dst_ops_template.kmem_cachep)
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08002821 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07002822
Eric Dumazetfc66f952010-10-08 06:37:34 +00002823 ret = dst_entries_init(&ip6_dst_blackhole_ops);
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002824 if (ret)
Daniel Lezcanobdb32892008-03-04 13:48:10 -08002825 goto out_kmem_cache;
Daniel Lezcanobdb32892008-03-04 13:48:10 -08002826
Eric Dumazetfc66f952010-10-08 06:37:34 +00002827 ret = register_pernet_subsys(&ip6_route_net_ops);
2828 if (ret)
2829 goto out_dst_entries;
2830
Arnaud Ebalard5dc121e2008-10-01 02:37:56 -07002831 ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
2832
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002833 /* Registering of the loopback is done before this portion of code,
2834 * the loopback reference in rt6_info will not be taken, do it
2835 * manually for init_net */
Changli Gaod8d1f302010-06-10 23:31:35 -07002836 init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002837 init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
2838 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
Changli Gaod8d1f302010-06-10 23:31:35 -07002839 init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002840 init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
Changli Gaod8d1f302010-06-10 23:31:35 -07002841 init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002842 init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
2843 #endif
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002844 ret = fib6_init();
2845 if (ret)
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002846 goto out_register_subsys;
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002847
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002848 ret = xfrm6_init();
2849 if (ret)
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002850 goto out_fib6_init;
Daniel Lezcanoc35b7e72007-12-08 00:14:11 -08002851
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002852 ret = fib6_rules_init();
2853 if (ret)
2854 goto xfrm6_init;
Daniel Lezcano7e5449c2007-12-08 00:14:54 -08002855
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002856 ret = -ENOBUFS;
2857 if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL) ||
2858 __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL) ||
2859 __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL))
2860 goto fib6_rules_init;
2861
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002862 ret = register_netdevice_notifier(&ip6_route_dev_notifier);
Daniel Lezcanocdb18762008-03-04 13:45:33 -08002863 if (ret)
2864 goto fib6_rules_init;
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002865
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002866out:
2867 return ret;
2868
2869fib6_rules_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002870 fib6_rules_cleanup();
2871xfrm6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002872 xfrm6_fini();
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002873out_fib6_init:
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002874 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002875out_register_subsys:
2876 unregister_pernet_subsys(&ip6_route_net_ops);
Eric Dumazetfc66f952010-10-08 06:37:34 +00002877out_dst_entries:
2878 dst_entries_destroy(&ip6_dst_blackhole_ops);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002879out_kmem_cache:
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002880 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Daniel Lezcano433d49c2007-12-07 00:43:48 -08002881 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882}
2883
2884void ip6_route_cleanup(void)
2885{
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002886 unregister_netdevice_notifier(&ip6_route_dev_notifier);
Thomas Graf101367c2006-08-04 03:39:02 -07002887 fib6_rules_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 xfrm6_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 fib6_gc_cleanup();
Daniel Lezcano8ed67782008-03-04 13:48:30 -08002890 unregister_pernet_subsys(&ip6_route_net_ops);
Xiaotian Feng41bb78b2010-11-02 16:11:05 +00002891 dst_entries_destroy(&ip6_dst_blackhole_ops);
Benjamin Theryf2fc6a52008-03-04 13:49:23 -08002892 kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893}