xref: /openbmc/linux/net/ipv6/route.c (revision a2de86f63cfc92f7aaf11e7b9d9f2150946a1622)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  *	Linux INET6 implementation
31da177e4SLinus Torvalds  *	FIB front-end.
41da177e4SLinus Torvalds  *
51da177e4SLinus Torvalds  *	Authors:
61da177e4SLinus Torvalds  *	Pedro Roque		<roque@di.fc.ul.pt>
71da177e4SLinus Torvalds  *
81da177e4SLinus Torvalds  *	This program is free software; you can redistribute it and/or
91da177e4SLinus Torvalds  *      modify it under the terms of the GNU General Public License
101da177e4SLinus Torvalds  *      as published by the Free Software Foundation; either version
111da177e4SLinus Torvalds  *      2 of the License, or (at your option) any later version.
121da177e4SLinus Torvalds  */
131da177e4SLinus Torvalds 
141da177e4SLinus Torvalds /*	Changes:
151da177e4SLinus Torvalds  *
161da177e4SLinus Torvalds  *	YOSHIFUJI Hideaki @USAGI
171da177e4SLinus Torvalds  *		reworked default router selection.
181da177e4SLinus Torvalds  *		- respect outgoing interface
191da177e4SLinus Torvalds  *		- select from (probably) reachable routers (i.e.
201da177e4SLinus Torvalds  *		routers in REACHABLE, STALE, DELAY or PROBE states).
211da177e4SLinus Torvalds  *		- always select the same router if it is (probably)
221da177e4SLinus Torvalds  *		reachable.  otherwise, round-robin the list.
23c0bece9fSYOSHIFUJI Hideaki  *	Ville Nuorvala
24c0bece9fSYOSHIFUJI Hideaki  *		Fixed routing subtrees.
251da177e4SLinus Torvalds  */
261da177e4SLinus Torvalds 
27f3213831SJoe Perches #define pr_fmt(fmt) "IPv6: " fmt
28f3213831SJoe Perches 
294fc268d2SRandy Dunlap #include <linux/capability.h>
301da177e4SLinus Torvalds #include <linux/errno.h>
31bc3b2d7fSPaul Gortmaker #include <linux/export.h>
321da177e4SLinus Torvalds #include <linux/types.h>
331da177e4SLinus Torvalds #include <linux/times.h>
341da177e4SLinus Torvalds #include <linux/socket.h>
351da177e4SLinus Torvalds #include <linux/sockios.h>
361da177e4SLinus Torvalds #include <linux/net.h>
371da177e4SLinus Torvalds #include <linux/route.h>
381da177e4SLinus Torvalds #include <linux/netdevice.h>
391da177e4SLinus Torvalds #include <linux/in6.h>
407bc570c8SYOSHIFUJI Hideaki #include <linux/mroute6.h>
411da177e4SLinus Torvalds #include <linux/init.h>
421da177e4SLinus Torvalds #include <linux/if_arp.h>
431da177e4SLinus Torvalds #include <linux/proc_fs.h>
441da177e4SLinus Torvalds #include <linux/seq_file.h>
455b7c931dSDaniel Lezcano #include <linux/nsproxy.h>
465a0e3ad6STejun Heo #include <linux/slab.h>
47457c4cbcSEric W. Biederman #include <net/net_namespace.h>
481da177e4SLinus Torvalds #include <net/snmp.h>
491da177e4SLinus Torvalds #include <net/ipv6.h>
501da177e4SLinus Torvalds #include <net/ip6_fib.h>
511da177e4SLinus Torvalds #include <net/ip6_route.h>
521da177e4SLinus Torvalds #include <net/ndisc.h>
531da177e4SLinus Torvalds #include <net/addrconf.h>
541da177e4SLinus Torvalds #include <net/tcp.h>
551da177e4SLinus Torvalds #include <linux/rtnetlink.h>
561da177e4SLinus Torvalds #include <net/dst.h>
571da177e4SLinus Torvalds #include <net/xfrm.h>
588d71740cSTom Tucker #include <net/netevent.h>
5921713ebcSThomas Graf #include <net/netlink.h>
601da177e4SLinus Torvalds 
611da177e4SLinus Torvalds #include <asm/uaccess.h>
621da177e4SLinus Torvalds 
631da177e4SLinus Torvalds #ifdef CONFIG_SYSCTL
641da177e4SLinus Torvalds #include <linux/sysctl.h>
651da177e4SLinus Torvalds #endif
661da177e4SLinus Torvalds 
671716a961SGao feng static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
6821efcfa0SEric Dumazet 				    const struct in6_addr *dest);
691da177e4SLinus Torvalds static struct dst_entry	*ip6_dst_check(struct dst_entry *dst, u32 cookie);
700dbaee3bSDavid S. Miller static unsigned int	 ip6_default_advmss(const struct dst_entry *dst);
71ebb762f2SSteffen Klassert static unsigned int	 ip6_mtu(const struct dst_entry *dst);
721da177e4SLinus Torvalds static struct dst_entry *ip6_negative_advice(struct dst_entry *);
731da177e4SLinus Torvalds static void		ip6_dst_destroy(struct dst_entry *);
741da177e4SLinus Torvalds static void		ip6_dst_ifdown(struct dst_entry *,
751da177e4SLinus Torvalds 				       struct net_device *dev, int how);
76569d3645SDaniel Lezcano static int		 ip6_dst_gc(struct dst_ops *ops);
771da177e4SLinus Torvalds 
781da177e4SLinus Torvalds static int		ip6_pkt_discard(struct sk_buff *skb);
791da177e4SLinus Torvalds static int		ip6_pkt_discard_out(struct sk_buff *skb);
801da177e4SLinus Torvalds static void		ip6_link_failure(struct sk_buff *skb);
811da177e4SLinus Torvalds static void		ip6_rt_update_pmtu(struct dst_entry *dst, u32 mtu);
821da177e4SLinus Torvalds 
8370ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO
84efa2cea0SDaniel Lezcano static struct rt6_info *rt6_add_route_info(struct net *net,
85b71d1d42SEric Dumazet 					   const struct in6_addr *prefix, int prefixlen,
86b71d1d42SEric Dumazet 					   const struct in6_addr *gwaddr, int ifindex,
8795c96174SEric Dumazet 					   unsigned int pref);
88efa2cea0SDaniel Lezcano static struct rt6_info *rt6_get_route_info(struct net *net,
89b71d1d42SEric Dumazet 					   const struct in6_addr *prefix, int prefixlen,
90b71d1d42SEric Dumazet 					   const struct in6_addr *gwaddr, int ifindex);
9170ceb4f5SYOSHIFUJI Hideaki #endif
9270ceb4f5SYOSHIFUJI Hideaki 
9306582540SDavid S. Miller static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old)
9406582540SDavid S. Miller {
9506582540SDavid S. Miller 	struct rt6_info *rt = (struct rt6_info *) dst;
9606582540SDavid S. Miller 	struct inet_peer *peer;
9706582540SDavid S. Miller 	u32 *p = NULL;
9806582540SDavid S. Miller 
998e2ec639SYan, Zheng 	if (!(rt->dst.flags & DST_HOST))
1008e2ec639SYan, Zheng 		return NULL;
1018e2ec639SYan, Zheng 
102fbfe95a4SDavid S. Miller 	peer = rt6_get_peer_create(rt);
10306582540SDavid S. Miller 	if (peer) {
10406582540SDavid S. Miller 		u32 *old_p = __DST_METRICS_PTR(old);
10506582540SDavid S. Miller 		unsigned long prev, new;
10606582540SDavid S. Miller 
10706582540SDavid S. Miller 		p = peer->metrics;
10806582540SDavid S. Miller 		if (inet_metrics_new(peer))
10906582540SDavid S. Miller 			memcpy(p, old_p, sizeof(u32) * RTAX_MAX);
11006582540SDavid S. Miller 
11106582540SDavid S. Miller 		new = (unsigned long) p;
11206582540SDavid S. Miller 		prev = cmpxchg(&dst->_metrics, old, new);
11306582540SDavid S. Miller 
11406582540SDavid S. Miller 		if (prev != old) {
11506582540SDavid S. Miller 			p = __DST_METRICS_PTR(prev);
11606582540SDavid S. Miller 			if (prev & DST_METRICS_READ_ONLY)
11706582540SDavid S. Miller 				p = NULL;
11806582540SDavid S. Miller 		}
11906582540SDavid S. Miller 	}
12006582540SDavid S. Miller 	return p;
12106582540SDavid S. Miller }
12206582540SDavid S. Miller 
123f894cbf8SDavid S. Miller static inline const void *choose_neigh_daddr(struct rt6_info *rt,
124f894cbf8SDavid S. Miller 					     struct sk_buff *skb,
125f894cbf8SDavid S. Miller 					     const void *daddr)
12639232973SDavid S. Miller {
12739232973SDavid S. Miller 	struct in6_addr *p = &rt->rt6i_gateway;
12839232973SDavid S. Miller 
129a7563f34SDavid S. Miller 	if (!ipv6_addr_any(p))
13039232973SDavid S. Miller 		return (const void *) p;
131f894cbf8SDavid S. Miller 	else if (skb)
132f894cbf8SDavid S. Miller 		return &ipv6_hdr(skb)->daddr;
13339232973SDavid S. Miller 	return daddr;
13439232973SDavid S. Miller }
13539232973SDavid S. Miller 
136f894cbf8SDavid S. Miller static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst,
137f894cbf8SDavid S. Miller 					  struct sk_buff *skb,
138f894cbf8SDavid S. Miller 					  const void *daddr)
139d3aaeb38SDavid S. Miller {
14039232973SDavid S. Miller 	struct rt6_info *rt = (struct rt6_info *) dst;
14139232973SDavid S. Miller 	struct neighbour *n;
14239232973SDavid S. Miller 
143f894cbf8SDavid S. Miller 	daddr = choose_neigh_daddr(rt, skb, daddr);
14439232973SDavid S. Miller 	n = __ipv6_neigh_lookup(&nd_tbl, dst->dev, daddr);
145f83c7790SDavid S. Miller 	if (n)
146f83c7790SDavid S. Miller 		return n;
147f83c7790SDavid S. Miller 	return neigh_create(&nd_tbl, daddr, dst->dev);
148f83c7790SDavid S. Miller }
149f83c7790SDavid S. Miller 
1508ade06c6SDavid S. Miller static int rt6_bind_neighbour(struct rt6_info *rt, struct net_device *dev)
151f83c7790SDavid S. Miller {
1528ade06c6SDavid S. Miller 	struct neighbour *n = __ipv6_neigh_lookup(&nd_tbl, dev, &rt->rt6i_gateway);
1538ade06c6SDavid S. Miller 	if (!n) {
1548ade06c6SDavid S. Miller 		n = neigh_create(&nd_tbl, &rt->rt6i_gateway, dev);
155f83c7790SDavid S. Miller 		if (IS_ERR(n))
156f83c7790SDavid S. Miller 			return PTR_ERR(n);
1578ade06c6SDavid S. Miller 	}
15897cac082SDavid S. Miller 	rt->n = n;
159f83c7790SDavid S. Miller 
160f83c7790SDavid S. Miller 	return 0;
161d3aaeb38SDavid S. Miller }
162d3aaeb38SDavid S. Miller 
1639a7ec3a9SDaniel Lezcano static struct dst_ops ip6_dst_ops_template = {
1641da177e4SLinus Torvalds 	.family			=	AF_INET6,
16509640e63SHarvey Harrison 	.protocol		=	cpu_to_be16(ETH_P_IPV6),
1661da177e4SLinus Torvalds 	.gc			=	ip6_dst_gc,
1671da177e4SLinus Torvalds 	.gc_thresh		=	1024,
1681da177e4SLinus Torvalds 	.check			=	ip6_dst_check,
1690dbaee3bSDavid S. Miller 	.default_advmss		=	ip6_default_advmss,
170ebb762f2SSteffen Klassert 	.mtu			=	ip6_mtu,
17106582540SDavid S. Miller 	.cow_metrics		=	ipv6_cow_metrics,
1721da177e4SLinus Torvalds 	.destroy		=	ip6_dst_destroy,
1731da177e4SLinus Torvalds 	.ifdown			=	ip6_dst_ifdown,
1741da177e4SLinus Torvalds 	.negative_advice	=	ip6_negative_advice,
1751da177e4SLinus Torvalds 	.link_failure		=	ip6_link_failure,
1761da177e4SLinus Torvalds 	.update_pmtu		=	ip6_rt_update_pmtu,
1771ac06e03SHerbert Xu 	.local_out		=	__ip6_local_out,
178d3aaeb38SDavid S. Miller 	.neigh_lookup		=	ip6_neigh_lookup,
1791da177e4SLinus Torvalds };
1801da177e4SLinus Torvalds 
181ebb762f2SSteffen Klassert static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst)
182ec831ea7SRoland Dreier {
183618f9bc7SSteffen Klassert 	unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
184618f9bc7SSteffen Klassert 
185618f9bc7SSteffen Klassert 	return mtu ? : dst->dev->mtu;
186ec831ea7SRoland Dreier }
187ec831ea7SRoland Dreier 
18814e50e57SDavid S. Miller static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, u32 mtu)
18914e50e57SDavid S. Miller {
19014e50e57SDavid S. Miller }
19114e50e57SDavid S. Miller 
1920972ddb2SHeld Bernhard static u32 *ip6_rt_blackhole_cow_metrics(struct dst_entry *dst,
1930972ddb2SHeld Bernhard 					 unsigned long old)
1940972ddb2SHeld Bernhard {
1950972ddb2SHeld Bernhard 	return NULL;
1960972ddb2SHeld Bernhard }
1970972ddb2SHeld Bernhard 
19814e50e57SDavid S. Miller static struct dst_ops ip6_dst_blackhole_ops = {
19914e50e57SDavid S. Miller 	.family			=	AF_INET6,
20009640e63SHarvey Harrison 	.protocol		=	cpu_to_be16(ETH_P_IPV6),
20114e50e57SDavid S. Miller 	.destroy		=	ip6_dst_destroy,
20214e50e57SDavid S. Miller 	.check			=	ip6_dst_check,
203ebb762f2SSteffen Klassert 	.mtu			=	ip6_blackhole_mtu,
204214f45c9SEric Dumazet 	.default_advmss		=	ip6_default_advmss,
20514e50e57SDavid S. Miller 	.update_pmtu		=	ip6_rt_blackhole_update_pmtu,
2060972ddb2SHeld Bernhard 	.cow_metrics		=	ip6_rt_blackhole_cow_metrics,
207d3aaeb38SDavid S. Miller 	.neigh_lookup		=	ip6_neigh_lookup,
20814e50e57SDavid S. Miller };
20914e50e57SDavid S. Miller 
21062fa8a84SDavid S. Miller static const u32 ip6_template_metrics[RTAX_MAX] = {
21162fa8a84SDavid S. Miller 	[RTAX_HOPLIMIT - 1] = 255,
21262fa8a84SDavid S. Miller };
21362fa8a84SDavid S. Miller 
214bdb3289fSDaniel Lezcano static struct rt6_info ip6_null_entry_template = {
2151da177e4SLinus Torvalds 	.dst = {
2161da177e4SLinus Torvalds 		.__refcnt	= ATOMIC_INIT(1),
2171da177e4SLinus Torvalds 		.__use		= 1,
2181da177e4SLinus Torvalds 		.obsolete	= -1,
2191da177e4SLinus Torvalds 		.error		= -ENETUNREACH,
2201da177e4SLinus Torvalds 		.input		= ip6_pkt_discard,
2211da177e4SLinus Torvalds 		.output		= ip6_pkt_discard_out,
2221da177e4SLinus Torvalds 	},
2231da177e4SLinus Torvalds 	.rt6i_flags	= (RTF_REJECT | RTF_NONEXTHOP),
2244f724279SJean-Mickael Guerin 	.rt6i_protocol  = RTPROT_KERNEL,
2251da177e4SLinus Torvalds 	.rt6i_metric	= ~(u32) 0,
2261da177e4SLinus Torvalds 	.rt6i_ref	= ATOMIC_INIT(1),
2271da177e4SLinus Torvalds };
2281da177e4SLinus Torvalds 
229101367c2SThomas Graf #ifdef CONFIG_IPV6_MULTIPLE_TABLES
230101367c2SThomas Graf 
2316723ab54SDavid S. Miller static int ip6_pkt_prohibit(struct sk_buff *skb);
2326723ab54SDavid S. Miller static int ip6_pkt_prohibit_out(struct sk_buff *skb);
2336723ab54SDavid S. Miller 
234280a34c8SAdrian Bunk static struct rt6_info ip6_prohibit_entry_template = {
235101367c2SThomas Graf 	.dst = {
236101367c2SThomas Graf 		.__refcnt	= ATOMIC_INIT(1),
237101367c2SThomas Graf 		.__use		= 1,
238101367c2SThomas Graf 		.obsolete	= -1,
239101367c2SThomas Graf 		.error		= -EACCES,
2409ce8ade0SThomas Graf 		.input		= ip6_pkt_prohibit,
2419ce8ade0SThomas Graf 		.output		= ip6_pkt_prohibit_out,
242101367c2SThomas Graf 	},
243101367c2SThomas Graf 	.rt6i_flags	= (RTF_REJECT | RTF_NONEXTHOP),
2444f724279SJean-Mickael Guerin 	.rt6i_protocol  = RTPROT_KERNEL,
245101367c2SThomas Graf 	.rt6i_metric	= ~(u32) 0,
246101367c2SThomas Graf 	.rt6i_ref	= ATOMIC_INIT(1),
247101367c2SThomas Graf };
248101367c2SThomas Graf 
249bdb3289fSDaniel Lezcano static struct rt6_info ip6_blk_hole_entry_template = {
250101367c2SThomas Graf 	.dst = {
251101367c2SThomas Graf 		.__refcnt	= ATOMIC_INIT(1),
252101367c2SThomas Graf 		.__use		= 1,
253101367c2SThomas Graf 		.obsolete	= -1,
254101367c2SThomas Graf 		.error		= -EINVAL,
255352e512cSHerbert Xu 		.input		= dst_discard,
256352e512cSHerbert Xu 		.output		= dst_discard,
257101367c2SThomas Graf 	},
258101367c2SThomas Graf 	.rt6i_flags	= (RTF_REJECT | RTF_NONEXTHOP),
2594f724279SJean-Mickael Guerin 	.rt6i_protocol  = RTPROT_KERNEL,
260101367c2SThomas Graf 	.rt6i_metric	= ~(u32) 0,
261101367c2SThomas Graf 	.rt6i_ref	= ATOMIC_INIT(1),
262101367c2SThomas Graf };
263101367c2SThomas Graf 
264101367c2SThomas Graf #endif
265101367c2SThomas Graf 
2661da177e4SLinus Torvalds /* allocate dst with ip6_dst_ops */
26797bab73fSDavid S. Miller static inline struct rt6_info *ip6_dst_alloc(struct net *net,
268957c665fSDavid S. Miller 					     struct net_device *dev,
2698b96d22dSDavid S. Miller 					     int flags,
2708b96d22dSDavid S. Miller 					     struct fib6_table *table)
2711da177e4SLinus Torvalds {
27297bab73fSDavid S. Miller 	struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
27397bab73fSDavid S. Miller 					0, 0, flags);
274cf911662SDavid S. Miller 
27597bab73fSDavid S. Miller 	if (rt) {
276*a2de86f6SSteffen Klassert 		memset(&rt->n, 0,
277fbe58186SMadalin Bucur 		       sizeof(*rt) - sizeof(struct dst_entry));
2788b96d22dSDavid S. Miller 		rt6_init_peer(rt, table ? &table->tb6_peers : net->ipv6.peers);
27997bab73fSDavid S. Miller 	}
280cf911662SDavid S. Miller 	return rt;
2811da177e4SLinus Torvalds }
2821da177e4SLinus Torvalds 
2831da177e4SLinus Torvalds static void ip6_dst_destroy(struct dst_entry *dst)
2841da177e4SLinus Torvalds {
2851da177e4SLinus Torvalds 	struct rt6_info *rt = (struct rt6_info *)dst;
2861da177e4SLinus Torvalds 	struct inet6_dev *idev = rt->rt6i_idev;
2871da177e4SLinus Torvalds 
28897cac082SDavid S. Miller 	if (rt->n)
28997cac082SDavid S. Miller 		neigh_release(rt->n);
29097cac082SDavid S. Miller 
2918e2ec639SYan, Zheng 	if (!(rt->dst.flags & DST_HOST))
2928e2ec639SYan, Zheng 		dst_destroy_metrics_generic(dst);
2938e2ec639SYan, Zheng 
29438308473SDavid S. Miller 	if (idev) {
2951da177e4SLinus Torvalds 		rt->rt6i_idev = NULL;
2961da177e4SLinus Torvalds 		in6_dev_put(idev);
2971da177e4SLinus Torvalds 	}
2981716a961SGao feng 
2991716a961SGao feng 	if (!(rt->rt6i_flags & RTF_EXPIRES) && dst->from)
3001716a961SGao feng 		dst_release(dst->from);
3011716a961SGao feng 
30297bab73fSDavid S. Miller 	if (rt6_has_peer(rt)) {
30397bab73fSDavid S. Miller 		struct inet_peer *peer = rt6_peer_ptr(rt);
304b3419363SDavid S. Miller 		inet_putpeer(peer);
305b3419363SDavid S. Miller 	}
306b3419363SDavid S. Miller }
307b3419363SDavid S. Miller 
3086431cbc2SDavid S. Miller static atomic_t __rt6_peer_genid = ATOMIC_INIT(0);
3096431cbc2SDavid S. Miller 
3106431cbc2SDavid S. Miller static u32 rt6_peer_genid(void)
3116431cbc2SDavid S. Miller {
3126431cbc2SDavid S. Miller 	return atomic_read(&__rt6_peer_genid);
3136431cbc2SDavid S. Miller }
3146431cbc2SDavid S. Miller 
315b3419363SDavid S. Miller void rt6_bind_peer(struct rt6_info *rt, int create)
316b3419363SDavid S. Miller {
31797bab73fSDavid S. Miller 	struct inet_peer_base *base;
318b3419363SDavid S. Miller 	struct inet_peer *peer;
319b3419363SDavid S. Miller 
32097bab73fSDavid S. Miller 	base = inetpeer_base_ptr(rt->_rt6i_peer);
32197bab73fSDavid S. Miller 	if (!base)
32297bab73fSDavid S. Miller 		return;
32397bab73fSDavid S. Miller 
32497bab73fSDavid S. Miller 	peer = inet_getpeer_v6(base, &rt->rt6i_dst.addr, create);
3257b34ca2aSDavid S. Miller 	if (peer) {
32697bab73fSDavid S. Miller 		if (!rt6_set_peer(rt, peer))
327b3419363SDavid S. Miller 			inet_putpeer(peer);
3286431cbc2SDavid S. Miller 		else
3296431cbc2SDavid S. Miller 			rt->rt6i_peer_genid = rt6_peer_genid();
3301da177e4SLinus Torvalds 	}
3317b34ca2aSDavid S. Miller }
3321da177e4SLinus Torvalds 
3331da177e4SLinus Torvalds static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
3341da177e4SLinus Torvalds 			   int how)
3351da177e4SLinus Torvalds {
3361da177e4SLinus Torvalds 	struct rt6_info *rt = (struct rt6_info *)dst;
3371da177e4SLinus Torvalds 	struct inet6_dev *idev = rt->rt6i_idev;
3385a3e55d6SDenis V. Lunev 	struct net_device *loopback_dev =
339c346dca1SYOSHIFUJI Hideaki 		dev_net(dev)->loopback_dev;
3401da177e4SLinus Torvalds 
34197cac082SDavid S. Miller 	if (dev != loopback_dev) {
34297cac082SDavid S. Miller 		if (idev && idev->dev == dev) {
3435a3e55d6SDenis V. Lunev 			struct inet6_dev *loopback_idev =
3445a3e55d6SDenis V. Lunev 				in6_dev_get(loopback_dev);
34538308473SDavid S. Miller 			if (loopback_idev) {
3461da177e4SLinus Torvalds 				rt->rt6i_idev = loopback_idev;
3471da177e4SLinus Torvalds 				in6_dev_put(idev);
3481da177e4SLinus Torvalds 			}
3491da177e4SLinus Torvalds 		}
35097cac082SDavid S. Miller 		if (rt->n && rt->n->dev == dev) {
35197cac082SDavid S. Miller 			rt->n->dev = loopback_dev;
35297cac082SDavid S. Miller 			dev_hold(loopback_dev);
35397cac082SDavid S. Miller 			dev_put(dev);
35497cac082SDavid S. Miller 		}
35597cac082SDavid S. Miller 	}
3561da177e4SLinus Torvalds }
3571da177e4SLinus Torvalds 
358a50feda5SEric Dumazet static bool rt6_check_expired(const struct rt6_info *rt)
3591da177e4SLinus Torvalds {
3601716a961SGao feng 	struct rt6_info *ort = NULL;
3611716a961SGao feng 
3621716a961SGao feng 	if (rt->rt6i_flags & RTF_EXPIRES) {
3631716a961SGao feng 		if (time_after(jiffies, rt->dst.expires))
364a50feda5SEric Dumazet 			return true;
3651716a961SGao feng 	} else if (rt->dst.from) {
3661716a961SGao feng 		ort = (struct rt6_info *) rt->dst.from;
3671716a961SGao feng 		return (ort->rt6i_flags & RTF_EXPIRES) &&
3681716a961SGao feng 			time_after(jiffies, ort->dst.expires);
3691716a961SGao feng 	}
370a50feda5SEric Dumazet 	return false;
3711da177e4SLinus Torvalds }
3721da177e4SLinus Torvalds 
373a50feda5SEric Dumazet static bool rt6_need_strict(const struct in6_addr *daddr)
374c71099acSThomas Graf {
375a02cec21SEric Dumazet 	return ipv6_addr_type(daddr) &
376a02cec21SEric Dumazet 		(IPV6_ADDR_MULTICAST | IPV6_ADDR_LINKLOCAL | IPV6_ADDR_LOOPBACK);
377c71099acSThomas Graf }
378c71099acSThomas Graf 
3791da177e4SLinus Torvalds /*
380c71099acSThomas Graf  *	Route lookup. Any table->tb6_lock is implied.
3811da177e4SLinus Torvalds  */
3821da177e4SLinus Torvalds 
3838ed67789SDaniel Lezcano static inline struct rt6_info *rt6_device_match(struct net *net,
3848ed67789SDaniel Lezcano 						    struct rt6_info *rt,
385b71d1d42SEric Dumazet 						    const struct in6_addr *saddr,
3861da177e4SLinus Torvalds 						    int oif,
387d420895eSYOSHIFUJI Hideaki 						    int flags)
3881da177e4SLinus Torvalds {
3891da177e4SLinus Torvalds 	struct rt6_info *local = NULL;
3901da177e4SLinus Torvalds 	struct rt6_info *sprt;
3911da177e4SLinus Torvalds 
392dd3abc4eSYOSHIFUJI Hideaki 	if (!oif && ipv6_addr_any(saddr))
393dd3abc4eSYOSHIFUJI Hideaki 		goto out;
394dd3abc4eSYOSHIFUJI Hideaki 
395d8d1f30bSChangli Gao 	for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) {
396d1918542SDavid S. Miller 		struct net_device *dev = sprt->dst.dev;
397dd3abc4eSYOSHIFUJI Hideaki 
398dd3abc4eSYOSHIFUJI Hideaki 		if (oif) {
3991da177e4SLinus Torvalds 			if (dev->ifindex == oif)
4001da177e4SLinus Torvalds 				return sprt;
4011da177e4SLinus Torvalds 			if (dev->flags & IFF_LOOPBACK) {
40238308473SDavid S. Miller 				if (!sprt->rt6i_idev ||
4031da177e4SLinus Torvalds 				    sprt->rt6i_idev->dev->ifindex != oif) {
404d420895eSYOSHIFUJI Hideaki 					if (flags & RT6_LOOKUP_F_IFACE && oif)
4051da177e4SLinus Torvalds 						continue;
4061da177e4SLinus Torvalds 					if (local && (!oif ||
4071da177e4SLinus Torvalds 						      local->rt6i_idev->dev->ifindex == oif))
4081da177e4SLinus Torvalds 						continue;
4091da177e4SLinus Torvalds 				}
4101da177e4SLinus Torvalds 				local = sprt;
4111da177e4SLinus Torvalds 			}
412dd3abc4eSYOSHIFUJI Hideaki 		} else {
413dd3abc4eSYOSHIFUJI Hideaki 			if (ipv6_chk_addr(net, saddr, dev,
414dd3abc4eSYOSHIFUJI Hideaki 					  flags & RT6_LOOKUP_F_IFACE))
415dd3abc4eSYOSHIFUJI Hideaki 				return sprt;
416dd3abc4eSYOSHIFUJI Hideaki 		}
4171da177e4SLinus Torvalds 	}
4181da177e4SLinus Torvalds 
419dd3abc4eSYOSHIFUJI Hideaki 	if (oif) {
4201da177e4SLinus Torvalds 		if (local)
4211da177e4SLinus Torvalds 			return local;
4221da177e4SLinus Torvalds 
423d420895eSYOSHIFUJI Hideaki 		if (flags & RT6_LOOKUP_F_IFACE)
4248ed67789SDaniel Lezcano 			return net->ipv6.ip6_null_entry;
4251da177e4SLinus Torvalds 	}
426dd3abc4eSYOSHIFUJI Hideaki out:
4271da177e4SLinus Torvalds 	return rt;
4281da177e4SLinus Torvalds }
4291da177e4SLinus Torvalds 
43027097255SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF
43127097255SYOSHIFUJI Hideaki static void rt6_probe(struct rt6_info *rt)
43227097255SYOSHIFUJI Hideaki {
433f2c31e32SEric Dumazet 	struct neighbour *neigh;
43427097255SYOSHIFUJI Hideaki 	/*
43527097255SYOSHIFUJI Hideaki 	 * Okay, this does not seem to be appropriate
43627097255SYOSHIFUJI Hideaki 	 * for now, however, we need to check if it
43727097255SYOSHIFUJI Hideaki 	 * is really so; aka Router Reachability Probing.
43827097255SYOSHIFUJI Hideaki 	 *
43927097255SYOSHIFUJI Hideaki 	 * Router Reachability Probe MUST be rate-limited
44027097255SYOSHIFUJI Hideaki 	 * to no more than one per minute.
44127097255SYOSHIFUJI Hideaki 	 */
442f2c31e32SEric Dumazet 	rcu_read_lock();
44397cac082SDavid S. Miller 	neigh = rt ? rt->n : NULL;
44427097255SYOSHIFUJI Hideaki 	if (!neigh || (neigh->nud_state & NUD_VALID))
445f2c31e32SEric Dumazet 		goto out;
44627097255SYOSHIFUJI Hideaki 	read_lock_bh(&neigh->lock);
44727097255SYOSHIFUJI Hideaki 	if (!(neigh->nud_state & NUD_VALID) &&
44852e16356SYOSHIFUJI Hideaki 	    time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) {
44927097255SYOSHIFUJI Hideaki 		struct in6_addr mcaddr;
45027097255SYOSHIFUJI Hideaki 		struct in6_addr *target;
45127097255SYOSHIFUJI Hideaki 
45227097255SYOSHIFUJI Hideaki 		neigh->updated = jiffies;
45327097255SYOSHIFUJI Hideaki 		read_unlock_bh(&neigh->lock);
45427097255SYOSHIFUJI Hideaki 
45527097255SYOSHIFUJI Hideaki 		target = (struct in6_addr *)&neigh->primary_key;
45627097255SYOSHIFUJI Hideaki 		addrconf_addr_solict_mult(target, &mcaddr);
457d1918542SDavid S. Miller 		ndisc_send_ns(rt->dst.dev, NULL, target, &mcaddr, NULL);
458f2c31e32SEric Dumazet 	} else {
45927097255SYOSHIFUJI Hideaki 		read_unlock_bh(&neigh->lock);
46027097255SYOSHIFUJI Hideaki 	}
461f2c31e32SEric Dumazet out:
462f2c31e32SEric Dumazet 	rcu_read_unlock();
463f2c31e32SEric Dumazet }
46427097255SYOSHIFUJI Hideaki #else
46527097255SYOSHIFUJI Hideaki static inline void rt6_probe(struct rt6_info *rt)
46627097255SYOSHIFUJI Hideaki {
46727097255SYOSHIFUJI Hideaki }
46827097255SYOSHIFUJI Hideaki #endif
46927097255SYOSHIFUJI Hideaki 
4701da177e4SLinus Torvalds /*
471554cfb7eSYOSHIFUJI Hideaki  * Default Router Selection (RFC 2461 6.3.6)
4721da177e4SLinus Torvalds  */
473b6f99a21SDave Jones static inline int rt6_check_dev(struct rt6_info *rt, int oif)
4741da177e4SLinus Torvalds {
475d1918542SDavid S. Miller 	struct net_device *dev = rt->dst.dev;
476161980f4SDavid S. Miller 	if (!oif || dev->ifindex == oif)
477554cfb7eSYOSHIFUJI Hideaki 		return 2;
478161980f4SDavid S. Miller 	if ((dev->flags & IFF_LOOPBACK) &&
479161980f4SDavid S. Miller 	    rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif)
480161980f4SDavid S. Miller 		return 1;
481554cfb7eSYOSHIFUJI Hideaki 	return 0;
4821da177e4SLinus Torvalds }
4831da177e4SLinus Torvalds 
484b6f99a21SDave Jones static inline int rt6_check_neigh(struct rt6_info *rt)
4851da177e4SLinus Torvalds {
486f2c31e32SEric Dumazet 	struct neighbour *neigh;
487398bcbebSYOSHIFUJI Hideaki 	int m;
488f2c31e32SEric Dumazet 
489f2c31e32SEric Dumazet 	rcu_read_lock();
49097cac082SDavid S. Miller 	neigh = rt->n;
4914d0c5911SYOSHIFUJI Hideaki 	if (rt->rt6i_flags & RTF_NONEXTHOP ||
4924d0c5911SYOSHIFUJI Hideaki 	    !(rt->rt6i_flags & RTF_GATEWAY))
4934d0c5911SYOSHIFUJI Hideaki 		m = 1;
4944d0c5911SYOSHIFUJI Hideaki 	else if (neigh) {
4951da177e4SLinus Torvalds 		read_lock_bh(&neigh->lock);
496554cfb7eSYOSHIFUJI Hideaki 		if (neigh->nud_state & NUD_VALID)
4974d0c5911SYOSHIFUJI Hideaki 			m = 2;
498398bcbebSYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF
499398bcbebSYOSHIFUJI Hideaki 		else if (neigh->nud_state & NUD_FAILED)
500398bcbebSYOSHIFUJI Hideaki 			m = 0;
501398bcbebSYOSHIFUJI Hideaki #endif
502398bcbebSYOSHIFUJI Hideaki 		else
503ea73ee23SYOSHIFUJI Hideaki 			m = 1;
5041da177e4SLinus Torvalds 		read_unlock_bh(&neigh->lock);
505398bcbebSYOSHIFUJI Hideaki 	} else
506398bcbebSYOSHIFUJI Hideaki 		m = 0;
507f2c31e32SEric Dumazet 	rcu_read_unlock();
508554cfb7eSYOSHIFUJI Hideaki 	return m;
5091da177e4SLinus Torvalds }
5101da177e4SLinus Torvalds 
511554cfb7eSYOSHIFUJI Hideaki static int rt6_score_route(struct rt6_info *rt, int oif,
512554cfb7eSYOSHIFUJI Hideaki 			   int strict)
513554cfb7eSYOSHIFUJI Hideaki {
5144d0c5911SYOSHIFUJI Hideaki 	int m, n;
5154d0c5911SYOSHIFUJI Hideaki 
5164d0c5911SYOSHIFUJI Hideaki 	m = rt6_check_dev(rt, oif);
51777d16f45SYOSHIFUJI Hideaki 	if (!m && (strict & RT6_LOOKUP_F_IFACE))
518554cfb7eSYOSHIFUJI Hideaki 		return -1;
519ebacaaa0SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF
520ebacaaa0SYOSHIFUJI Hideaki 	m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2;
521ebacaaa0SYOSHIFUJI Hideaki #endif
5224d0c5911SYOSHIFUJI Hideaki 	n = rt6_check_neigh(rt);
523557e92efSYOSHIFUJI Hideaki 	if (!n && (strict & RT6_LOOKUP_F_REACHABLE))
524554cfb7eSYOSHIFUJI Hideaki 		return -1;
525554cfb7eSYOSHIFUJI Hideaki 	return m;
526554cfb7eSYOSHIFUJI Hideaki }
527554cfb7eSYOSHIFUJI Hideaki 
528f11e6659SDavid S. Miller static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict,
529f11e6659SDavid S. Miller 				   int *mpri, struct rt6_info *match)
530554cfb7eSYOSHIFUJI Hideaki {
531554cfb7eSYOSHIFUJI Hideaki 	int m;
532554cfb7eSYOSHIFUJI Hideaki 
533554cfb7eSYOSHIFUJI Hideaki 	if (rt6_check_expired(rt))
534f11e6659SDavid S. Miller 		goto out;
535554cfb7eSYOSHIFUJI Hideaki 
536554cfb7eSYOSHIFUJI Hideaki 	m = rt6_score_route(rt, oif, strict);
537554cfb7eSYOSHIFUJI Hideaki 	if (m < 0)
538f11e6659SDavid S. Miller 		goto out;
539554cfb7eSYOSHIFUJI Hideaki 
540f11e6659SDavid S. Miller 	if (m > *mpri) {
541ea659e07SYOSHIFUJI Hideaki 		if (strict & RT6_LOOKUP_F_REACHABLE)
54227097255SYOSHIFUJI Hideaki 			rt6_probe(match);
543f11e6659SDavid S. Miller 		*mpri = m;
544554cfb7eSYOSHIFUJI Hideaki 		match = rt;
545ea659e07SYOSHIFUJI Hideaki 	} else if (strict & RT6_LOOKUP_F_REACHABLE) {
54627097255SYOSHIFUJI Hideaki 		rt6_probe(rt);
5471da177e4SLinus Torvalds 	}
548f11e6659SDavid S. Miller 
549f11e6659SDavid S. Miller out:
550f11e6659SDavid S. Miller 	return match;
5511da177e4SLinus Torvalds }
5521da177e4SLinus Torvalds 
553f11e6659SDavid S. Miller static struct rt6_info *find_rr_leaf(struct fib6_node *fn,
554f11e6659SDavid S. Miller 				     struct rt6_info *rr_head,
555f11e6659SDavid S. Miller 				     u32 metric, int oif, int strict)
556f11e6659SDavid S. Miller {
557f11e6659SDavid S. Miller 	struct rt6_info *rt, *match;
558f11e6659SDavid S. Miller 	int mpri = -1;
559f11e6659SDavid S. Miller 
560f11e6659SDavid S. Miller 	match = NULL;
561f11e6659SDavid S. Miller 	for (rt = rr_head; rt && rt->rt6i_metric == metric;
562d8d1f30bSChangli Gao 	     rt = rt->dst.rt6_next)
563f11e6659SDavid S. Miller 		match = find_match(rt, oif, strict, &mpri, match);
564f11e6659SDavid S. Miller 	for (rt = fn->leaf; rt && rt != rr_head && rt->rt6i_metric == metric;
565d8d1f30bSChangli Gao 	     rt = rt->dst.rt6_next)
566f11e6659SDavid S. Miller 		match = find_match(rt, oif, strict, &mpri, match);
567f11e6659SDavid S. Miller 
568f11e6659SDavid S. Miller 	return match;
569f11e6659SDavid S. Miller }
570f11e6659SDavid S. Miller 
571f11e6659SDavid S. Miller static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict)
572f11e6659SDavid S. Miller {
573f11e6659SDavid S. Miller 	struct rt6_info *match, *rt0;
5748ed67789SDaniel Lezcano 	struct net *net;
575f11e6659SDavid S. Miller 
576f11e6659SDavid S. Miller 	rt0 = fn->rr_ptr;
577f11e6659SDavid S. Miller 	if (!rt0)
578f11e6659SDavid S. Miller 		fn->rr_ptr = rt0 = fn->leaf;
579f11e6659SDavid S. Miller 
580f11e6659SDavid S. Miller 	match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict);
581f11e6659SDavid S. Miller 
582554cfb7eSYOSHIFUJI Hideaki 	if (!match &&
583f11e6659SDavid S. Miller 	    (strict & RT6_LOOKUP_F_REACHABLE)) {
584d8d1f30bSChangli Gao 		struct rt6_info *next = rt0->dst.rt6_next;
585f11e6659SDavid S. Miller 
586554cfb7eSYOSHIFUJI Hideaki 		/* no entries matched; do round-robin */
587f11e6659SDavid S. Miller 		if (!next || next->rt6i_metric != rt0->rt6i_metric)
588f11e6659SDavid S. Miller 			next = fn->leaf;
589f11e6659SDavid S. Miller 
590f11e6659SDavid S. Miller 		if (next != rt0)
591f11e6659SDavid S. Miller 			fn->rr_ptr = next;
592554cfb7eSYOSHIFUJI Hideaki 	}
593554cfb7eSYOSHIFUJI Hideaki 
594d1918542SDavid S. Miller 	net = dev_net(rt0->dst.dev);
595a02cec21SEric Dumazet 	return match ? match : net->ipv6.ip6_null_entry;
5961da177e4SLinus Torvalds }
5971da177e4SLinus Torvalds 
59870ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO
59970ceb4f5SYOSHIFUJI Hideaki int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
600b71d1d42SEric Dumazet 		  const struct in6_addr *gwaddr)
60170ceb4f5SYOSHIFUJI Hideaki {
602c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(dev);
60370ceb4f5SYOSHIFUJI Hideaki 	struct route_info *rinfo = (struct route_info *) opt;
60470ceb4f5SYOSHIFUJI Hideaki 	struct in6_addr prefix_buf, *prefix;
60570ceb4f5SYOSHIFUJI Hideaki 	unsigned int pref;
6064bed72e4SYOSHIFUJI Hideaki 	unsigned long lifetime;
60770ceb4f5SYOSHIFUJI Hideaki 	struct rt6_info *rt;
60870ceb4f5SYOSHIFUJI Hideaki 
60970ceb4f5SYOSHIFUJI Hideaki 	if (len < sizeof(struct route_info)) {
61070ceb4f5SYOSHIFUJI Hideaki 		return -EINVAL;
61170ceb4f5SYOSHIFUJI Hideaki 	}
61270ceb4f5SYOSHIFUJI Hideaki 
61370ceb4f5SYOSHIFUJI Hideaki 	/* Sanity check for prefix_len and length */
61470ceb4f5SYOSHIFUJI Hideaki 	if (rinfo->length > 3) {
61570ceb4f5SYOSHIFUJI Hideaki 		return -EINVAL;
61670ceb4f5SYOSHIFUJI Hideaki 	} else if (rinfo->prefix_len > 128) {
61770ceb4f5SYOSHIFUJI Hideaki 		return -EINVAL;
61870ceb4f5SYOSHIFUJI Hideaki 	} else if (rinfo->prefix_len > 64) {
61970ceb4f5SYOSHIFUJI Hideaki 		if (rinfo->length < 2) {
62070ceb4f5SYOSHIFUJI Hideaki 			return -EINVAL;
62170ceb4f5SYOSHIFUJI Hideaki 		}
62270ceb4f5SYOSHIFUJI Hideaki 	} else if (rinfo->prefix_len > 0) {
62370ceb4f5SYOSHIFUJI Hideaki 		if (rinfo->length < 1) {
62470ceb4f5SYOSHIFUJI Hideaki 			return -EINVAL;
62570ceb4f5SYOSHIFUJI Hideaki 		}
62670ceb4f5SYOSHIFUJI Hideaki 	}
62770ceb4f5SYOSHIFUJI Hideaki 
62870ceb4f5SYOSHIFUJI Hideaki 	pref = rinfo->route_pref;
62970ceb4f5SYOSHIFUJI Hideaki 	if (pref == ICMPV6_ROUTER_PREF_INVALID)
6303933fc95SJens Rosenboom 		return -EINVAL;
63170ceb4f5SYOSHIFUJI Hideaki 
6324bed72e4SYOSHIFUJI Hideaki 	lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
63370ceb4f5SYOSHIFUJI Hideaki 
63470ceb4f5SYOSHIFUJI Hideaki 	if (rinfo->length == 3)
63570ceb4f5SYOSHIFUJI Hideaki 		prefix = (struct in6_addr *)rinfo->prefix;
63670ceb4f5SYOSHIFUJI Hideaki 	else {
63770ceb4f5SYOSHIFUJI Hideaki 		/* this function is safe */
63870ceb4f5SYOSHIFUJI Hideaki 		ipv6_addr_prefix(&prefix_buf,
63970ceb4f5SYOSHIFUJI Hideaki 				 (struct in6_addr *)rinfo->prefix,
64070ceb4f5SYOSHIFUJI Hideaki 				 rinfo->prefix_len);
64170ceb4f5SYOSHIFUJI Hideaki 		prefix = &prefix_buf;
64270ceb4f5SYOSHIFUJI Hideaki 	}
64370ceb4f5SYOSHIFUJI Hideaki 
644efa2cea0SDaniel Lezcano 	rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, gwaddr,
645efa2cea0SDaniel Lezcano 				dev->ifindex);
64670ceb4f5SYOSHIFUJI Hideaki 
64770ceb4f5SYOSHIFUJI Hideaki 	if (rt && !lifetime) {
648e0a1ad73SThomas Graf 		ip6_del_rt(rt);
64970ceb4f5SYOSHIFUJI Hideaki 		rt = NULL;
65070ceb4f5SYOSHIFUJI Hideaki 	}
65170ceb4f5SYOSHIFUJI Hideaki 
65270ceb4f5SYOSHIFUJI Hideaki 	if (!rt && lifetime)
653efa2cea0SDaniel Lezcano 		rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex,
65470ceb4f5SYOSHIFUJI Hideaki 					pref);
65570ceb4f5SYOSHIFUJI Hideaki 	else if (rt)
65670ceb4f5SYOSHIFUJI Hideaki 		rt->rt6i_flags = RTF_ROUTEINFO |
65770ceb4f5SYOSHIFUJI Hideaki 				 (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
65870ceb4f5SYOSHIFUJI Hideaki 
65970ceb4f5SYOSHIFUJI Hideaki 	if (rt) {
6601716a961SGao feng 		if (!addrconf_finite_timeout(lifetime))
6611716a961SGao feng 			rt6_clean_expires(rt);
6621716a961SGao feng 		else
6631716a961SGao feng 			rt6_set_expires(rt, jiffies + HZ * lifetime);
6641716a961SGao feng 
665d8d1f30bSChangli Gao 		dst_release(&rt->dst);
66670ceb4f5SYOSHIFUJI Hideaki 	}
66770ceb4f5SYOSHIFUJI Hideaki 	return 0;
66870ceb4f5SYOSHIFUJI Hideaki }
66970ceb4f5SYOSHIFUJI Hideaki #endif
67070ceb4f5SYOSHIFUJI Hideaki 
6718ed67789SDaniel Lezcano #define BACKTRACK(__net, saddr)			\
672982f56f3SYOSHIFUJI Hideaki do { \
6738ed67789SDaniel Lezcano 	if (rt == __net->ipv6.ip6_null_entry) {	\
674982f56f3SYOSHIFUJI Hideaki 		struct fib6_node *pn; \
675e0eda7bbSVille Nuorvala 		while (1) { \
676982f56f3SYOSHIFUJI Hideaki 			if (fn->fn_flags & RTN_TL_ROOT) \
677c71099acSThomas Graf 				goto out; \
678982f56f3SYOSHIFUJI Hideaki 			pn = fn->parent; \
679982f56f3SYOSHIFUJI Hideaki 			if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) \
6808bce65b9SKim Nordlund 				fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr); \
681982f56f3SYOSHIFUJI Hideaki 			else \
682982f56f3SYOSHIFUJI Hideaki 				fn = pn; \
683c71099acSThomas Graf 			if (fn->fn_flags & RTN_RTINFO) \
684c71099acSThomas Graf 				goto restart; \
685c71099acSThomas Graf 		} \
686982f56f3SYOSHIFUJI Hideaki 	} \
687982f56f3SYOSHIFUJI Hideaki } while (0)
688c71099acSThomas Graf 
6898ed67789SDaniel Lezcano static struct rt6_info *ip6_pol_route_lookup(struct net *net,
6908ed67789SDaniel Lezcano 					     struct fib6_table *table,
6914c9483b2SDavid S. Miller 					     struct flowi6 *fl6, int flags)
6921da177e4SLinus Torvalds {
6931da177e4SLinus Torvalds 	struct fib6_node *fn;
6941da177e4SLinus Torvalds 	struct rt6_info *rt;
6951da177e4SLinus Torvalds 
696c71099acSThomas Graf 	read_lock_bh(&table->tb6_lock);
6974c9483b2SDavid S. Miller 	fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
698c71099acSThomas Graf restart:
699c71099acSThomas Graf 	rt = fn->leaf;
7004c9483b2SDavid S. Miller 	rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags);
7014c9483b2SDavid S. Miller 	BACKTRACK(net, &fl6->saddr);
702c71099acSThomas Graf out:
703d8d1f30bSChangli Gao 	dst_use(&rt->dst, jiffies);
704c71099acSThomas Graf 	read_unlock_bh(&table->tb6_lock);
7051da177e4SLinus Torvalds 	return rt;
706c71099acSThomas Graf 
707c71099acSThomas Graf }
708c71099acSThomas Graf 
709ea6e574eSFlorian Westphal struct dst_entry * ip6_route_lookup(struct net *net, struct flowi6 *fl6,
710ea6e574eSFlorian Westphal 				    int flags)
711ea6e574eSFlorian Westphal {
712ea6e574eSFlorian Westphal 	return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup);
713ea6e574eSFlorian Westphal }
714ea6e574eSFlorian Westphal EXPORT_SYMBOL_GPL(ip6_route_lookup);
715ea6e574eSFlorian Westphal 
7169acd9f3aSYOSHIFUJI Hideaki struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
7179acd9f3aSYOSHIFUJI Hideaki 			    const struct in6_addr *saddr, int oif, int strict)
718c71099acSThomas Graf {
7194c9483b2SDavid S. Miller 	struct flowi6 fl6 = {
7204c9483b2SDavid S. Miller 		.flowi6_oif = oif,
7214c9483b2SDavid S. Miller 		.daddr = *daddr,
722c71099acSThomas Graf 	};
723c71099acSThomas Graf 	struct dst_entry *dst;
72477d16f45SYOSHIFUJI Hideaki 	int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
725c71099acSThomas Graf 
726adaa70bbSThomas Graf 	if (saddr) {
7274c9483b2SDavid S. Miller 		memcpy(&fl6.saddr, saddr, sizeof(*saddr));
728adaa70bbSThomas Graf 		flags |= RT6_LOOKUP_F_HAS_SADDR;
729adaa70bbSThomas Graf 	}
730adaa70bbSThomas Graf 
7314c9483b2SDavid S. Miller 	dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup);
732c71099acSThomas Graf 	if (dst->error == 0)
733c71099acSThomas Graf 		return (struct rt6_info *) dst;
734c71099acSThomas Graf 
735c71099acSThomas Graf 	dst_release(dst);
736c71099acSThomas Graf 
7371da177e4SLinus Torvalds 	return NULL;
7381da177e4SLinus Torvalds }
7391da177e4SLinus Torvalds 
7407159039aSYOSHIFUJI Hideaki EXPORT_SYMBOL(rt6_lookup);
7417159039aSYOSHIFUJI Hideaki 
742c71099acSThomas Graf /* ip6_ins_rt is called with FREE table->tb6_lock.
7431da177e4SLinus Torvalds    It takes new route entry, the addition fails by any reason the
7441da177e4SLinus Torvalds    route is freed. In any case, if caller does not hold it, it may
7451da177e4SLinus Torvalds    be destroyed.
7461da177e4SLinus Torvalds  */
7471da177e4SLinus Torvalds 
74886872cb5SThomas Graf static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info)
7491da177e4SLinus Torvalds {
7501da177e4SLinus Torvalds 	int err;
751c71099acSThomas Graf 	struct fib6_table *table;
7521da177e4SLinus Torvalds 
753c71099acSThomas Graf 	table = rt->rt6i_table;
754c71099acSThomas Graf 	write_lock_bh(&table->tb6_lock);
75586872cb5SThomas Graf 	err = fib6_add(&table->tb6_root, rt, info);
756c71099acSThomas Graf 	write_unlock_bh(&table->tb6_lock);
7571da177e4SLinus Torvalds 
7581da177e4SLinus Torvalds 	return err;
7591da177e4SLinus Torvalds }
7601da177e4SLinus Torvalds 
76140e22e8fSThomas Graf int ip6_ins_rt(struct rt6_info *rt)
76240e22e8fSThomas Graf {
7634d1169c1SDenis V. Lunev 	struct nl_info info = {
764d1918542SDavid S. Miller 		.nl_net = dev_net(rt->dst.dev),
7654d1169c1SDenis V. Lunev 	};
766528c4cebSDenis V. Lunev 	return __ip6_ins_rt(rt, &info);
76740e22e8fSThomas Graf }
76840e22e8fSThomas Graf 
7691716a961SGao feng static struct rt6_info *rt6_alloc_cow(struct rt6_info *ort,
77021efcfa0SEric Dumazet 				      const struct in6_addr *daddr,
771b71d1d42SEric Dumazet 				      const struct in6_addr *saddr)
7721da177e4SLinus Torvalds {
7731da177e4SLinus Torvalds 	struct rt6_info *rt;
7741da177e4SLinus Torvalds 
7751da177e4SLinus Torvalds 	/*
7761da177e4SLinus Torvalds 	 *	Clone the route.
7771da177e4SLinus Torvalds 	 */
7781da177e4SLinus Torvalds 
77921efcfa0SEric Dumazet 	rt = ip6_rt_copy(ort, daddr);
7801da177e4SLinus Torvalds 
7811da177e4SLinus Torvalds 	if (rt) {
78214deae41SDavid S. Miller 		int attempts = !in_softirq();
78314deae41SDavid S. Miller 
78458c4fb86SYOSHIFUJI Hideaki 		if (!(rt->rt6i_flags & RTF_GATEWAY)) {
785bb3c3686SDavid S. Miller 			if (ort->rt6i_dst.plen != 128 &&
78621efcfa0SEric Dumazet 			    ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
78758c4fb86SYOSHIFUJI Hideaki 				rt->rt6i_flags |= RTF_ANYCAST;
7884e3fd7a0SAlexey Dobriyan 			rt->rt6i_gateway = *daddr;
78958c4fb86SYOSHIFUJI Hideaki 		}
7901da177e4SLinus Torvalds 
7911da177e4SLinus Torvalds 		rt->rt6i_flags |= RTF_CACHE;
7921da177e4SLinus Torvalds 
7931da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES
7941da177e4SLinus Torvalds 		if (rt->rt6i_src.plen && saddr) {
7954e3fd7a0SAlexey Dobriyan 			rt->rt6i_src.addr = *saddr;
7961da177e4SLinus Torvalds 			rt->rt6i_src.plen = 128;
7971da177e4SLinus Torvalds 		}
7981da177e4SLinus Torvalds #endif
7991da177e4SLinus Torvalds 
80014deae41SDavid S. Miller 	retry:
8018ade06c6SDavid S. Miller 		if (rt6_bind_neighbour(rt, rt->dst.dev)) {
802d1918542SDavid S. Miller 			struct net *net = dev_net(rt->dst.dev);
80314deae41SDavid S. Miller 			int saved_rt_min_interval =
80414deae41SDavid S. Miller 				net->ipv6.sysctl.ip6_rt_gc_min_interval;
80514deae41SDavid S. Miller 			int saved_rt_elasticity =
80614deae41SDavid S. Miller 				net->ipv6.sysctl.ip6_rt_gc_elasticity;
80714deae41SDavid S. Miller 
80814deae41SDavid S. Miller 			if (attempts-- > 0) {
80914deae41SDavid S. Miller 				net->ipv6.sysctl.ip6_rt_gc_elasticity = 1;
81014deae41SDavid S. Miller 				net->ipv6.sysctl.ip6_rt_gc_min_interval = 0;
81114deae41SDavid S. Miller 
81286393e52SAlexey Dobriyan 				ip6_dst_gc(&net->ipv6.ip6_dst_ops);
81314deae41SDavid S. Miller 
81414deae41SDavid S. Miller 				net->ipv6.sysctl.ip6_rt_gc_elasticity =
81514deae41SDavid S. Miller 					saved_rt_elasticity;
81614deae41SDavid S. Miller 				net->ipv6.sysctl.ip6_rt_gc_min_interval =
81714deae41SDavid S. Miller 					saved_rt_min_interval;
81814deae41SDavid S. Miller 				goto retry;
81914deae41SDavid S. Miller 			}
82014deae41SDavid S. Miller 
821f3213831SJoe Perches 			net_warn_ratelimited("Neighbour table overflow\n");
822d8d1f30bSChangli Gao 			dst_free(&rt->dst);
82314deae41SDavid S. Miller 			return NULL;
82414deae41SDavid S. Miller 		}
82595a9a5baSYOSHIFUJI Hideaki 	}
8261da177e4SLinus Torvalds 
8271da177e4SLinus Torvalds 	return rt;
8281da177e4SLinus Torvalds }
82995a9a5baSYOSHIFUJI Hideaki 
83021efcfa0SEric Dumazet static struct rt6_info *rt6_alloc_clone(struct rt6_info *ort,
83121efcfa0SEric Dumazet 					const struct in6_addr *daddr)
832299d9939SYOSHIFUJI Hideaki {
83321efcfa0SEric Dumazet 	struct rt6_info *rt = ip6_rt_copy(ort, daddr);
83421efcfa0SEric Dumazet 
835299d9939SYOSHIFUJI Hideaki 	if (rt) {
836299d9939SYOSHIFUJI Hideaki 		rt->rt6i_flags |= RTF_CACHE;
83797cac082SDavid S. Miller 		rt->n = neigh_clone(ort->n);
838299d9939SYOSHIFUJI Hideaki 	}
839299d9939SYOSHIFUJI Hideaki 	return rt;
840299d9939SYOSHIFUJI Hideaki }
841299d9939SYOSHIFUJI Hideaki 
8428ed67789SDaniel Lezcano static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif,
8434c9483b2SDavid S. Miller 				      struct flowi6 *fl6, int flags)
8441da177e4SLinus Torvalds {
8451da177e4SLinus Torvalds 	struct fib6_node *fn;
846519fbd87SYOSHIFUJI Hideaki 	struct rt6_info *rt, *nrt;
847c71099acSThomas Graf 	int strict = 0;
8481da177e4SLinus Torvalds 	int attempts = 3;
849519fbd87SYOSHIFUJI Hideaki 	int err;
85053b7997fSYOSHIFUJI Hideaki 	int reachable = net->ipv6.devconf_all->forwarding ? 0 : RT6_LOOKUP_F_REACHABLE;
8511da177e4SLinus Torvalds 
85277d16f45SYOSHIFUJI Hideaki 	strict |= flags & RT6_LOOKUP_F_IFACE;
8531da177e4SLinus Torvalds 
8541da177e4SLinus Torvalds relookup:
855c71099acSThomas Graf 	read_lock_bh(&table->tb6_lock);
8561da177e4SLinus Torvalds 
8578238dd06SYOSHIFUJI Hideaki restart_2:
8584c9483b2SDavid S. Miller 	fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
8591da177e4SLinus Torvalds 
8601da177e4SLinus Torvalds restart:
8614acad72dSPavel Emelyanov 	rt = rt6_select(fn, oif, strict | reachable);
8628ed67789SDaniel Lezcano 
8634c9483b2SDavid S. Miller 	BACKTRACK(net, &fl6->saddr);
8648ed67789SDaniel Lezcano 	if (rt == net->ipv6.ip6_null_entry ||
8658238dd06SYOSHIFUJI Hideaki 	    rt->rt6i_flags & RTF_CACHE)
8661da177e4SLinus Torvalds 		goto out;
8671da177e4SLinus Torvalds 
868d8d1f30bSChangli Gao 	dst_hold(&rt->dst);
869c71099acSThomas Graf 	read_unlock_bh(&table->tb6_lock);
8701da177e4SLinus Torvalds 
87197cac082SDavid S. Miller 	if (!rt->n && !(rt->rt6i_flags & RTF_NONEXTHOP))
8724c9483b2SDavid S. Miller 		nrt = rt6_alloc_cow(rt, &fl6->daddr, &fl6->saddr);
8737343ff31SDavid S. Miller 	else if (!(rt->dst.flags & DST_HOST))
8744c9483b2SDavid S. Miller 		nrt = rt6_alloc_clone(rt, &fl6->daddr);
8757343ff31SDavid S. Miller 	else
8767343ff31SDavid S. Miller 		goto out2;
8771da177e4SLinus Torvalds 
878d8d1f30bSChangli Gao 	dst_release(&rt->dst);
8798ed67789SDaniel Lezcano 	rt = nrt ? : net->ipv6.ip6_null_entry;
8801da177e4SLinus Torvalds 
881d8d1f30bSChangli Gao 	dst_hold(&rt->dst);
882e40cf353SYOSHIFUJI Hideaki 	if (nrt) {
88340e22e8fSThomas Graf 		err = ip6_ins_rt(nrt);
884e40cf353SYOSHIFUJI Hideaki 		if (!err)
885e40cf353SYOSHIFUJI Hideaki 			goto out2;
886e40cf353SYOSHIFUJI Hideaki 	}
887e40cf353SYOSHIFUJI Hideaki 
888e40cf353SYOSHIFUJI Hideaki 	if (--attempts <= 0)
8891da177e4SLinus Torvalds 		goto out2;
8901da177e4SLinus Torvalds 
891519fbd87SYOSHIFUJI Hideaki 	/*
892c71099acSThomas Graf 	 * Race condition! In the gap, when table->tb6_lock was
893519fbd87SYOSHIFUJI Hideaki 	 * released someone could insert this route.  Relookup.
8941da177e4SLinus Torvalds 	 */
895d8d1f30bSChangli Gao 	dst_release(&rt->dst);
8961da177e4SLinus Torvalds 	goto relookup;
897e40cf353SYOSHIFUJI Hideaki 
898519fbd87SYOSHIFUJI Hideaki out:
8998238dd06SYOSHIFUJI Hideaki 	if (reachable) {
9008238dd06SYOSHIFUJI Hideaki 		reachable = 0;
9018238dd06SYOSHIFUJI Hideaki 		goto restart_2;
9028238dd06SYOSHIFUJI Hideaki 	}
903d8d1f30bSChangli Gao 	dst_hold(&rt->dst);
904c71099acSThomas Graf 	read_unlock_bh(&table->tb6_lock);
9051da177e4SLinus Torvalds out2:
906d8d1f30bSChangli Gao 	rt->dst.lastuse = jiffies;
907d8d1f30bSChangli Gao 	rt->dst.__use++;
908c71099acSThomas Graf 
909c71099acSThomas Graf 	return rt;
910c71099acSThomas Graf }
911c71099acSThomas Graf 
9128ed67789SDaniel Lezcano static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table,
9134c9483b2SDavid S. Miller 					    struct flowi6 *fl6, int flags)
9144acad72dSPavel Emelyanov {
9154c9483b2SDavid S. Miller 	return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags);
9164acad72dSPavel Emelyanov }
9174acad72dSPavel Emelyanov 
91872331bc0SShmulik Ladkani static struct dst_entry *ip6_route_input_lookup(struct net *net,
91972331bc0SShmulik Ladkani 						struct net_device *dev,
92072331bc0SShmulik Ladkani 						struct flowi6 *fl6, int flags)
92172331bc0SShmulik Ladkani {
92272331bc0SShmulik Ladkani 	if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
92372331bc0SShmulik Ladkani 		flags |= RT6_LOOKUP_F_IFACE;
92472331bc0SShmulik Ladkani 
92572331bc0SShmulik Ladkani 	return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input);
92672331bc0SShmulik Ladkani }
92772331bc0SShmulik Ladkani 
928c71099acSThomas Graf void ip6_route_input(struct sk_buff *skb)
929c71099acSThomas Graf {
930b71d1d42SEric Dumazet 	const struct ipv6hdr *iph = ipv6_hdr(skb);
931c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(skb->dev);
932adaa70bbSThomas Graf 	int flags = RT6_LOOKUP_F_HAS_SADDR;
9334c9483b2SDavid S. Miller 	struct flowi6 fl6 = {
9344c9483b2SDavid S. Miller 		.flowi6_iif = skb->dev->ifindex,
9354c9483b2SDavid S. Miller 		.daddr = iph->daddr,
9364c9483b2SDavid S. Miller 		.saddr = iph->saddr,
9374c9483b2SDavid S. Miller 		.flowlabel = (* (__be32 *) iph) & IPV6_FLOWINFO_MASK,
9384c9483b2SDavid S. Miller 		.flowi6_mark = skb->mark,
9394c9483b2SDavid S. Miller 		.flowi6_proto = iph->nexthdr,
940c71099acSThomas Graf 	};
941adaa70bbSThomas Graf 
94272331bc0SShmulik Ladkani 	skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags));
943c71099acSThomas Graf }
944c71099acSThomas Graf 
9458ed67789SDaniel Lezcano static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table,
9464c9483b2SDavid S. Miller 					     struct flowi6 *fl6, int flags)
947c71099acSThomas Graf {
9484c9483b2SDavid S. Miller 	return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags);
949c71099acSThomas Graf }
950c71099acSThomas Graf 
9519c7a4f9cSFlorian Westphal struct dst_entry * ip6_route_output(struct net *net, const struct sock *sk,
9524c9483b2SDavid S. Miller 				    struct flowi6 *fl6)
953c71099acSThomas Graf {
954c71099acSThomas Graf 	int flags = 0;
955c71099acSThomas Graf 
9564dc27d1cSDavid McCullough 	fl6->flowi6_iif = net->loopback_dev->ifindex;
9574dc27d1cSDavid McCullough 
9584c9483b2SDavid S. Miller 	if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr))
95977d16f45SYOSHIFUJI Hideaki 		flags |= RT6_LOOKUP_F_IFACE;
960c71099acSThomas Graf 
9614c9483b2SDavid S. Miller 	if (!ipv6_addr_any(&fl6->saddr))
962adaa70bbSThomas Graf 		flags |= RT6_LOOKUP_F_HAS_SADDR;
9630c9a2ac1SYOSHIFUJI Hideaki / 吉藤英明 	else if (sk)
9640c9a2ac1SYOSHIFUJI Hideaki / 吉藤英明 		flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
965adaa70bbSThomas Graf 
9664c9483b2SDavid S. Miller 	return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output);
9671da177e4SLinus Torvalds }
9681da177e4SLinus Torvalds 
9697159039aSYOSHIFUJI Hideaki EXPORT_SYMBOL(ip6_route_output);
9701da177e4SLinus Torvalds 
9712774c131SDavid S. Miller struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
97214e50e57SDavid S. Miller {
9735c1e6aa3SDavid S. Miller 	struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
97414e50e57SDavid S. Miller 	struct dst_entry *new = NULL;
97514e50e57SDavid S. Miller 
9765c1e6aa3SDavid S. Miller 	rt = dst_alloc(&ip6_dst_blackhole_ops, ort->dst.dev, 1, 0, 0);
97714e50e57SDavid S. Miller 	if (rt) {
978cf911662SDavid S. Miller 		memset(&rt->rt6i_table, 0, sizeof(*rt) - sizeof(struct dst_entry));
97997bab73fSDavid S. Miller 		rt6_init_peer(rt, net->ipv6.peers);
980cf911662SDavid S. Miller 
981d8d1f30bSChangli Gao 		new = &rt->dst;
98214e50e57SDavid S. Miller 
98314e50e57SDavid S. Miller 		new->__use = 1;
984352e512cSHerbert Xu 		new->input = dst_discard;
985352e512cSHerbert Xu 		new->output = dst_discard;
98614e50e57SDavid S. Miller 
98721efcfa0SEric Dumazet 		if (dst_metrics_read_only(&ort->dst))
98821efcfa0SEric Dumazet 			new->_metrics = ort->dst._metrics;
98921efcfa0SEric Dumazet 		else
990defb3519SDavid S. Miller 			dst_copy_metrics(new, &ort->dst);
99114e50e57SDavid S. Miller 		rt->rt6i_idev = ort->rt6i_idev;
99214e50e57SDavid S. Miller 		if (rt->rt6i_idev)
99314e50e57SDavid S. Miller 			in6_dev_hold(rt->rt6i_idev);
99414e50e57SDavid S. Miller 
9954e3fd7a0SAlexey Dobriyan 		rt->rt6i_gateway = ort->rt6i_gateway;
9961716a961SGao feng 		rt->rt6i_flags = ort->rt6i_flags;
9971716a961SGao feng 		rt6_clean_expires(rt);
99814e50e57SDavid S. Miller 		rt->rt6i_metric = 0;
99914e50e57SDavid S. Miller 
100014e50e57SDavid S. Miller 		memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
100114e50e57SDavid S. Miller #ifdef CONFIG_IPV6_SUBTREES
100214e50e57SDavid S. Miller 		memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
100314e50e57SDavid S. Miller #endif
100414e50e57SDavid S. Miller 
100514e50e57SDavid S. Miller 		dst_free(new);
100614e50e57SDavid S. Miller 	}
100714e50e57SDavid S. Miller 
100869ead7afSDavid S. Miller 	dst_release(dst_orig);
100969ead7afSDavid S. Miller 	return new ? new : ERR_PTR(-ENOMEM);
101014e50e57SDavid S. Miller }
101114e50e57SDavid S. Miller 
10121da177e4SLinus Torvalds /*
10131da177e4SLinus Torvalds  *	Destination cache support functions
10141da177e4SLinus Torvalds  */
10151da177e4SLinus Torvalds 
10161da177e4SLinus Torvalds static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
10171da177e4SLinus Torvalds {
10181da177e4SLinus Torvalds 	struct rt6_info *rt;
10191da177e4SLinus Torvalds 
10201da177e4SLinus Torvalds 	rt = (struct rt6_info *) dst;
10211da177e4SLinus Torvalds 
10226431cbc2SDavid S. Miller 	if (rt->rt6i_node && (rt->rt6i_node->fn_sernum == cookie)) {
10236431cbc2SDavid S. Miller 		if (rt->rt6i_peer_genid != rt6_peer_genid()) {
102497bab73fSDavid S. Miller 			if (!rt6_has_peer(rt))
10256431cbc2SDavid S. Miller 				rt6_bind_peer(rt, 0);
10266431cbc2SDavid S. Miller 			rt->rt6i_peer_genid = rt6_peer_genid();
10276431cbc2SDavid S. Miller 		}
10281da177e4SLinus Torvalds 		return dst;
10296431cbc2SDavid S. Miller 	}
10301da177e4SLinus Torvalds 	return NULL;
10311da177e4SLinus Torvalds }
10321da177e4SLinus Torvalds 
10331da177e4SLinus Torvalds static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
10341da177e4SLinus Torvalds {
10351da177e4SLinus Torvalds 	struct rt6_info *rt = (struct rt6_info *) dst;
10361da177e4SLinus Torvalds 
10371da177e4SLinus Torvalds 	if (rt) {
103854c1a859SYOSHIFUJI Hideaki / 吉藤英明 		if (rt->rt6i_flags & RTF_CACHE) {
103954c1a859SYOSHIFUJI Hideaki / 吉藤英明 			if (rt6_check_expired(rt)) {
1040e0a1ad73SThomas Graf 				ip6_del_rt(rt);
104154c1a859SYOSHIFUJI Hideaki / 吉藤英明 				dst = NULL;
10421da177e4SLinus Torvalds 			}
104354c1a859SYOSHIFUJI Hideaki / 吉藤英明 		} else {
104454c1a859SYOSHIFUJI Hideaki / 吉藤英明 			dst_release(dst);
104554c1a859SYOSHIFUJI Hideaki / 吉藤英明 			dst = NULL;
104654c1a859SYOSHIFUJI Hideaki / 吉藤英明 		}
104754c1a859SYOSHIFUJI Hideaki / 吉藤英明 	}
104854c1a859SYOSHIFUJI Hideaki / 吉藤英明 	return dst;
10491da177e4SLinus Torvalds }
10501da177e4SLinus Torvalds 
10511da177e4SLinus Torvalds static void ip6_link_failure(struct sk_buff *skb)
10521da177e4SLinus Torvalds {
10531da177e4SLinus Torvalds 	struct rt6_info *rt;
10541da177e4SLinus Torvalds 
10553ffe533cSAlexey Dobriyan 	icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
10561da177e4SLinus Torvalds 
1057adf30907SEric Dumazet 	rt = (struct rt6_info *) skb_dst(skb);
10581da177e4SLinus Torvalds 	if (rt) {
10591716a961SGao feng 		if (rt->rt6i_flags & RTF_CACHE)
10601716a961SGao feng 			rt6_update_expires(rt, 0);
10611716a961SGao feng 		else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT))
10621da177e4SLinus Torvalds 			rt->rt6i_node->fn_sernum = -1;
10631da177e4SLinus Torvalds 	}
10641da177e4SLinus Torvalds }
10651da177e4SLinus Torvalds 
10661da177e4SLinus Torvalds static void ip6_rt_update_pmtu(struct dst_entry *dst, u32 mtu)
10671da177e4SLinus Torvalds {
10681da177e4SLinus Torvalds 	struct rt6_info *rt6 = (struct rt6_info*)dst;
10691da177e4SLinus Torvalds 
107081aded24SDavid S. Miller 	dst_confirm(dst);
10711da177e4SLinus Torvalds 	if (mtu < dst_mtu(dst) && rt6->rt6i_dst.plen == 128) {
107281aded24SDavid S. Miller 		struct net *net = dev_net(dst->dev);
107381aded24SDavid S. Miller 
10741da177e4SLinus Torvalds 		rt6->rt6i_flags |= RTF_MODIFIED;
10751da177e4SLinus Torvalds 		if (mtu < IPV6_MIN_MTU) {
1076defb3519SDavid S. Miller 			u32 features = dst_metric(dst, RTAX_FEATURES);
10771da177e4SLinus Torvalds 			mtu = IPV6_MIN_MTU;
1078defb3519SDavid S. Miller 			features |= RTAX_FEATURE_ALLFRAG;
1079defb3519SDavid S. Miller 			dst_metric_set(dst, RTAX_FEATURES, features);
10801da177e4SLinus Torvalds 		}
1081defb3519SDavid S. Miller 		dst_metric_set(dst, RTAX_MTU, mtu);
108281aded24SDavid S. Miller 		rt6_update_expires(rt6, net->ipv6.sysctl.ip6_rt_mtu_expires);
10831da177e4SLinus Torvalds 	}
10841da177e4SLinus Torvalds }
10851da177e4SLinus Torvalds 
108642ae66c8SDavid S. Miller void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
108742ae66c8SDavid S. Miller 		     int oif, u32 mark)
108881aded24SDavid S. Miller {
108981aded24SDavid S. Miller 	const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
109081aded24SDavid S. Miller 	struct dst_entry *dst;
109181aded24SDavid S. Miller 	struct flowi6 fl6;
109281aded24SDavid S. Miller 
109381aded24SDavid S. Miller 	memset(&fl6, 0, sizeof(fl6));
109481aded24SDavid S. Miller 	fl6.flowi6_oif = oif;
109581aded24SDavid S. Miller 	fl6.flowi6_mark = mark;
109681aded24SDavid S. Miller 	fl6.flowi6_flags = FLOWI_FLAG_PRECOW_METRICS;
109781aded24SDavid S. Miller 	fl6.daddr = iph->daddr;
109881aded24SDavid S. Miller 	fl6.saddr = iph->saddr;
109981aded24SDavid S. Miller 	fl6.flowlabel = (*(__be32 *) iph) & IPV6_FLOWINFO_MASK;
110081aded24SDavid S. Miller 
110181aded24SDavid S. Miller 	dst = ip6_route_output(net, NULL, &fl6);
110281aded24SDavid S. Miller 	if (!dst->error)
110381aded24SDavid S. Miller 		ip6_rt_update_pmtu(dst, ntohl(mtu));
110481aded24SDavid S. Miller 	dst_release(dst);
110581aded24SDavid S. Miller }
110681aded24SDavid S. Miller EXPORT_SYMBOL_GPL(ip6_update_pmtu);
110781aded24SDavid S. Miller 
110881aded24SDavid S. Miller void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
110981aded24SDavid S. Miller {
111081aded24SDavid S. Miller 	ip6_update_pmtu(skb, sock_net(sk), mtu,
111181aded24SDavid S. Miller 			sk->sk_bound_dev_if, sk->sk_mark);
111281aded24SDavid S. Miller }
111381aded24SDavid S. Miller EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
111481aded24SDavid S. Miller 
11150dbaee3bSDavid S. Miller static unsigned int ip6_default_advmss(const struct dst_entry *dst)
11161da177e4SLinus Torvalds {
11170dbaee3bSDavid S. Miller 	struct net_device *dev = dst->dev;
11180dbaee3bSDavid S. Miller 	unsigned int mtu = dst_mtu(dst);
11190dbaee3bSDavid S. Miller 	struct net *net = dev_net(dev);
11200dbaee3bSDavid S. Miller 
11211da177e4SLinus Torvalds 	mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
11221da177e4SLinus Torvalds 
11235578689aSDaniel Lezcano 	if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
11245578689aSDaniel Lezcano 		mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
11251da177e4SLinus Torvalds 
11261da177e4SLinus Torvalds 	/*
11271da177e4SLinus Torvalds 	 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
11281da177e4SLinus Torvalds 	 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
11291da177e4SLinus Torvalds 	 * IPV6_MAXPLEN is also valid and means: "any MSS,
11301da177e4SLinus Torvalds 	 * rely only on pmtu discovery"
11311da177e4SLinus Torvalds 	 */
11321da177e4SLinus Torvalds 	if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
11331da177e4SLinus Torvalds 		mtu = IPV6_MAXPLEN;
11341da177e4SLinus Torvalds 	return mtu;
11351da177e4SLinus Torvalds }
11361da177e4SLinus Torvalds 
1137ebb762f2SSteffen Klassert static unsigned int ip6_mtu(const struct dst_entry *dst)
1138d33e4553SDavid S. Miller {
1139d33e4553SDavid S. Miller 	struct inet6_dev *idev;
1140618f9bc7SSteffen Klassert 	unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
1141618f9bc7SSteffen Klassert 
1142618f9bc7SSteffen Klassert 	if (mtu)
1143618f9bc7SSteffen Klassert 		return mtu;
1144618f9bc7SSteffen Klassert 
1145618f9bc7SSteffen Klassert 	mtu = IPV6_MIN_MTU;
1146d33e4553SDavid S. Miller 
1147d33e4553SDavid S. Miller 	rcu_read_lock();
1148d33e4553SDavid S. Miller 	idev = __in6_dev_get(dst->dev);
1149d33e4553SDavid S. Miller 	if (idev)
1150d33e4553SDavid S. Miller 		mtu = idev->cnf.mtu6;
1151d33e4553SDavid S. Miller 	rcu_read_unlock();
1152d33e4553SDavid S. Miller 
1153d33e4553SDavid S. Miller 	return mtu;
1154d33e4553SDavid S. Miller }
1155d33e4553SDavid S. Miller 
11563b00944cSYOSHIFUJI Hideaki static struct dst_entry *icmp6_dst_gc_list;
11573b00944cSYOSHIFUJI Hideaki static DEFINE_SPINLOCK(icmp6_dst_lock);
11585d0bbeebSThomas Graf 
11593b00944cSYOSHIFUJI Hideaki struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
11601da177e4SLinus Torvalds 				  struct neighbour *neigh,
116187a11578SDavid S. Miller 				  struct flowi6 *fl6)
11621da177e4SLinus Torvalds {
116387a11578SDavid S. Miller 	struct dst_entry *dst;
11641da177e4SLinus Torvalds 	struct rt6_info *rt;
11651da177e4SLinus Torvalds 	struct inet6_dev *idev = in6_dev_get(dev);
1166c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(dev);
11671da177e4SLinus Torvalds 
116838308473SDavid S. Miller 	if (unlikely(!idev))
1169122bdf67SEric Dumazet 		return ERR_PTR(-ENODEV);
11701da177e4SLinus Torvalds 
11718b96d22dSDavid S. Miller 	rt = ip6_dst_alloc(net, dev, 0, NULL);
117238308473SDavid S. Miller 	if (unlikely(!rt)) {
11731da177e4SLinus Torvalds 		in6_dev_put(idev);
117487a11578SDavid S. Miller 		dst = ERR_PTR(-ENOMEM);
11751da177e4SLinus Torvalds 		goto out;
11761da177e4SLinus Torvalds 	}
11771da177e4SLinus Torvalds 
11781da177e4SLinus Torvalds 	if (neigh)
11791da177e4SLinus Torvalds 		neigh_hold(neigh);
118014deae41SDavid S. Miller 	else {
1181f894cbf8SDavid S. Miller 		neigh = ip6_neigh_lookup(&rt->dst, NULL, &fl6->daddr);
1182b43faac6SDavid S. Miller 		if (IS_ERR(neigh)) {
1183252c3d84SRongQing.Li 			in6_dev_put(idev);
1184b43faac6SDavid S. Miller 			dst_free(&rt->dst);
1185b43faac6SDavid S. Miller 			return ERR_CAST(neigh);
1186b43faac6SDavid S. Miller 		}
118714deae41SDavid S. Miller 	}
11881da177e4SLinus Torvalds 
11898e2ec639SYan, Zheng 	rt->dst.flags |= DST_HOST;
11908e2ec639SYan, Zheng 	rt->dst.output  = ip6_output;
119197cac082SDavid S. Miller 	rt->n = neigh;
1192d8d1f30bSChangli Gao 	atomic_set(&rt->dst.__refcnt, 1);
119387a11578SDavid S. Miller 	rt->rt6i_dst.addr = fl6->daddr;
11948e2ec639SYan, Zheng 	rt->rt6i_dst.plen = 128;
11958e2ec639SYan, Zheng 	rt->rt6i_idev     = idev;
11967011687fSGao feng 	dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 255);
11971da177e4SLinus Torvalds 
11983b00944cSYOSHIFUJI Hideaki 	spin_lock_bh(&icmp6_dst_lock);
1199d8d1f30bSChangli Gao 	rt->dst.next = icmp6_dst_gc_list;
1200d8d1f30bSChangli Gao 	icmp6_dst_gc_list = &rt->dst;
12013b00944cSYOSHIFUJI Hideaki 	spin_unlock_bh(&icmp6_dst_lock);
12021da177e4SLinus Torvalds 
12035578689aSDaniel Lezcano 	fib6_force_start_gc(net);
12041da177e4SLinus Torvalds 
120587a11578SDavid S. Miller 	dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
120687a11578SDavid S. Miller 
12071da177e4SLinus Torvalds out:
120887a11578SDavid S. Miller 	return dst;
12091da177e4SLinus Torvalds }
12101da177e4SLinus Torvalds 
12113d0f24a7SStephen Hemminger int icmp6_dst_gc(void)
12121da177e4SLinus Torvalds {
1213e9476e95SHagen Paul Pfeifer 	struct dst_entry *dst, **pprev;
12143d0f24a7SStephen Hemminger 	int more = 0;
12151da177e4SLinus Torvalds 
12163b00944cSYOSHIFUJI Hideaki 	spin_lock_bh(&icmp6_dst_lock);
12173b00944cSYOSHIFUJI Hideaki 	pprev = &icmp6_dst_gc_list;
12185d0bbeebSThomas Graf 
12191da177e4SLinus Torvalds 	while ((dst = *pprev) != NULL) {
12201da177e4SLinus Torvalds 		if (!atomic_read(&dst->__refcnt)) {
12211da177e4SLinus Torvalds 			*pprev = dst->next;
12221da177e4SLinus Torvalds 			dst_free(dst);
12231da177e4SLinus Torvalds 		} else {
12241da177e4SLinus Torvalds 			pprev = &dst->next;
12253d0f24a7SStephen Hemminger 			++more;
12261da177e4SLinus Torvalds 		}
12271da177e4SLinus Torvalds 	}
12281da177e4SLinus Torvalds 
12293b00944cSYOSHIFUJI Hideaki 	spin_unlock_bh(&icmp6_dst_lock);
12305d0bbeebSThomas Graf 
12313d0f24a7SStephen Hemminger 	return more;
12321da177e4SLinus Torvalds }
12331da177e4SLinus Torvalds 
12341e493d19SDavid S. Miller static void icmp6_clean_all(int (*func)(struct rt6_info *rt, void *arg),
12351e493d19SDavid S. Miller 			    void *arg)
12361e493d19SDavid S. Miller {
12371e493d19SDavid S. Miller 	struct dst_entry *dst, **pprev;
12381e493d19SDavid S. Miller 
12391e493d19SDavid S. Miller 	spin_lock_bh(&icmp6_dst_lock);
12401e493d19SDavid S. Miller 	pprev = &icmp6_dst_gc_list;
12411e493d19SDavid S. Miller 	while ((dst = *pprev) != NULL) {
12421e493d19SDavid S. Miller 		struct rt6_info *rt = (struct rt6_info *) dst;
12431e493d19SDavid S. Miller 		if (func(rt, arg)) {
12441e493d19SDavid S. Miller 			*pprev = dst->next;
12451e493d19SDavid S. Miller 			dst_free(dst);
12461e493d19SDavid S. Miller 		} else {
12471e493d19SDavid S. Miller 			pprev = &dst->next;
12481e493d19SDavid S. Miller 		}
12491e493d19SDavid S. Miller 	}
12501e493d19SDavid S. Miller 	spin_unlock_bh(&icmp6_dst_lock);
12511e493d19SDavid S. Miller }
12521e493d19SDavid S. Miller 
1253569d3645SDaniel Lezcano static int ip6_dst_gc(struct dst_ops *ops)
12541da177e4SLinus Torvalds {
12551da177e4SLinus Torvalds 	unsigned long now = jiffies;
125686393e52SAlexey Dobriyan 	struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
12577019b78eSDaniel Lezcano 	int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
12587019b78eSDaniel Lezcano 	int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
12597019b78eSDaniel Lezcano 	int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
12607019b78eSDaniel Lezcano 	int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
12617019b78eSDaniel Lezcano 	unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
1262fc66f95cSEric Dumazet 	int entries;
12631da177e4SLinus Torvalds 
1264fc66f95cSEric Dumazet 	entries = dst_entries_get_fast(ops);
12657019b78eSDaniel Lezcano 	if (time_after(rt_last_gc + rt_min_interval, now) &&
1266fc66f95cSEric Dumazet 	    entries <= rt_max_size)
12671da177e4SLinus Torvalds 		goto out;
12681da177e4SLinus Torvalds 
12696891a346SBenjamin Thery 	net->ipv6.ip6_rt_gc_expire++;
12706891a346SBenjamin Thery 	fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net);
12716891a346SBenjamin Thery 	net->ipv6.ip6_rt_last_gc = now;
1272fc66f95cSEric Dumazet 	entries = dst_entries_get_slow(ops);
1273fc66f95cSEric Dumazet 	if (entries < ops->gc_thresh)
12747019b78eSDaniel Lezcano 		net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
12751da177e4SLinus Torvalds out:
12767019b78eSDaniel Lezcano 	net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
1277fc66f95cSEric Dumazet 	return entries > rt_max_size;
12781da177e4SLinus Torvalds }
12791da177e4SLinus Torvalds 
12801da177e4SLinus Torvalds /* Clean host part of a prefix. Not necessary in radix tree,
12811da177e4SLinus Torvalds    but results in cleaner routing tables.
12821da177e4SLinus Torvalds 
12831da177e4SLinus Torvalds    Remove it only when all the things will work!
12841da177e4SLinus Torvalds  */
12851da177e4SLinus Torvalds 
12866b75d090SYOSHIFUJI Hideaki int ip6_dst_hoplimit(struct dst_entry *dst)
12871da177e4SLinus Torvalds {
12885170ae82SDavid S. Miller 	int hoplimit = dst_metric_raw(dst, RTAX_HOPLIMIT);
1289a02e4b7dSDavid S. Miller 	if (hoplimit == 0) {
12906b75d090SYOSHIFUJI Hideaki 		struct net_device *dev = dst->dev;
1291c68f24ccSEric Dumazet 		struct inet6_dev *idev;
1292c68f24ccSEric Dumazet 
1293c68f24ccSEric Dumazet 		rcu_read_lock();
1294c68f24ccSEric Dumazet 		idev = __in6_dev_get(dev);
1295c68f24ccSEric Dumazet 		if (idev)
12961da177e4SLinus Torvalds 			hoplimit = idev->cnf.hop_limit;
1297c68f24ccSEric Dumazet 		else
129853b7997fSYOSHIFUJI Hideaki 			hoplimit = dev_net(dev)->ipv6.devconf_all->hop_limit;
1299c68f24ccSEric Dumazet 		rcu_read_unlock();
13001da177e4SLinus Torvalds 	}
13011da177e4SLinus Torvalds 	return hoplimit;
13021da177e4SLinus Torvalds }
1303abbf46aeSDavid S. Miller EXPORT_SYMBOL(ip6_dst_hoplimit);
13041da177e4SLinus Torvalds 
13051da177e4SLinus Torvalds /*
13061da177e4SLinus Torvalds  *
13071da177e4SLinus Torvalds  */
13081da177e4SLinus Torvalds 
130986872cb5SThomas Graf int ip6_route_add(struct fib6_config *cfg)
13101da177e4SLinus Torvalds {
13111da177e4SLinus Torvalds 	int err;
13125578689aSDaniel Lezcano 	struct net *net = cfg->fc_nlinfo.nl_net;
13131da177e4SLinus Torvalds 	struct rt6_info *rt = NULL;
13141da177e4SLinus Torvalds 	struct net_device *dev = NULL;
13151da177e4SLinus Torvalds 	struct inet6_dev *idev = NULL;
1316c71099acSThomas Graf 	struct fib6_table *table;
13171da177e4SLinus Torvalds 	int addr_type;
13181da177e4SLinus Torvalds 
131986872cb5SThomas Graf 	if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128)
13201da177e4SLinus Torvalds 		return -EINVAL;
13211da177e4SLinus Torvalds #ifndef CONFIG_IPV6_SUBTREES
132286872cb5SThomas Graf 	if (cfg->fc_src_len)
13231da177e4SLinus Torvalds 		return -EINVAL;
13241da177e4SLinus Torvalds #endif
132586872cb5SThomas Graf 	if (cfg->fc_ifindex) {
13261da177e4SLinus Torvalds 		err = -ENODEV;
13275578689aSDaniel Lezcano 		dev = dev_get_by_index(net, cfg->fc_ifindex);
13281da177e4SLinus Torvalds 		if (!dev)
13291da177e4SLinus Torvalds 			goto out;
13301da177e4SLinus Torvalds 		idev = in6_dev_get(dev);
13311da177e4SLinus Torvalds 		if (!idev)
13321da177e4SLinus Torvalds 			goto out;
13331da177e4SLinus Torvalds 	}
13341da177e4SLinus Torvalds 
133586872cb5SThomas Graf 	if (cfg->fc_metric == 0)
133686872cb5SThomas Graf 		cfg->fc_metric = IP6_RT_PRIO_USER;
13371da177e4SLinus Torvalds 
1338c71099acSThomas Graf 	err = -ENOBUFS;
133938308473SDavid S. Miller 	if (cfg->fc_nlinfo.nlh &&
1340d71314b4SMatti Vaittinen 	    !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
1341d71314b4SMatti Vaittinen 		table = fib6_get_table(net, cfg->fc_table);
134238308473SDavid S. Miller 		if (!table) {
1343f3213831SJoe Perches 			pr_warn("NLM_F_CREATE should be specified when creating new route\n");
1344d71314b4SMatti Vaittinen 			table = fib6_new_table(net, cfg->fc_table);
1345d71314b4SMatti Vaittinen 		}
1346d71314b4SMatti Vaittinen 	} else {
1347d71314b4SMatti Vaittinen 		table = fib6_new_table(net, cfg->fc_table);
1348d71314b4SMatti Vaittinen 	}
134938308473SDavid S. Miller 
135038308473SDavid S. Miller 	if (!table)
1351c71099acSThomas Graf 		goto out;
1352c71099acSThomas Graf 
13538b96d22dSDavid S. Miller 	rt = ip6_dst_alloc(net, NULL, DST_NOCOUNT, table);
13541da177e4SLinus Torvalds 
135538308473SDavid S. Miller 	if (!rt) {
13561da177e4SLinus Torvalds 		err = -ENOMEM;
13571da177e4SLinus Torvalds 		goto out;
13581da177e4SLinus Torvalds 	}
13591da177e4SLinus Torvalds 
1360d8d1f30bSChangli Gao 	rt->dst.obsolete = -1;
13611716a961SGao feng 
13621716a961SGao feng 	if (cfg->fc_flags & RTF_EXPIRES)
13631716a961SGao feng 		rt6_set_expires(rt, jiffies +
13641716a961SGao feng 				clock_t_to_jiffies(cfg->fc_expires));
13651716a961SGao feng 	else
13661716a961SGao feng 		rt6_clean_expires(rt);
13671da177e4SLinus Torvalds 
136886872cb5SThomas Graf 	if (cfg->fc_protocol == RTPROT_UNSPEC)
136986872cb5SThomas Graf 		cfg->fc_protocol = RTPROT_BOOT;
137086872cb5SThomas Graf 	rt->rt6i_protocol = cfg->fc_protocol;
137186872cb5SThomas Graf 
137286872cb5SThomas Graf 	addr_type = ipv6_addr_type(&cfg->fc_dst);
13731da177e4SLinus Torvalds 
13741da177e4SLinus Torvalds 	if (addr_type & IPV6_ADDR_MULTICAST)
1375d8d1f30bSChangli Gao 		rt->dst.input = ip6_mc_input;
1376ab79ad14SMaciej Żenczykowski 	else if (cfg->fc_flags & RTF_LOCAL)
1377ab79ad14SMaciej Żenczykowski 		rt->dst.input = ip6_input;
13781da177e4SLinus Torvalds 	else
1379d8d1f30bSChangli Gao 		rt->dst.input = ip6_forward;
13801da177e4SLinus Torvalds 
1381d8d1f30bSChangli Gao 	rt->dst.output = ip6_output;
13821da177e4SLinus Torvalds 
138386872cb5SThomas Graf 	ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
138486872cb5SThomas Graf 	rt->rt6i_dst.plen = cfg->fc_dst_len;
13851da177e4SLinus Torvalds 	if (rt->rt6i_dst.plen == 128)
138611d53b49SDavid S. Miller 	       rt->dst.flags |= DST_HOST;
13871da177e4SLinus Torvalds 
13888e2ec639SYan, Zheng 	if (!(rt->dst.flags & DST_HOST) && cfg->fc_mx) {
13898e2ec639SYan, Zheng 		u32 *metrics = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL);
13908e2ec639SYan, Zheng 		if (!metrics) {
13918e2ec639SYan, Zheng 			err = -ENOMEM;
13928e2ec639SYan, Zheng 			goto out;
13938e2ec639SYan, Zheng 		}
13948e2ec639SYan, Zheng 		dst_init_metrics(&rt->dst, metrics, 0);
13958e2ec639SYan, Zheng 	}
13961da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES
139786872cb5SThomas Graf 	ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len);
139886872cb5SThomas Graf 	rt->rt6i_src.plen = cfg->fc_src_len;
13991da177e4SLinus Torvalds #endif
14001da177e4SLinus Torvalds 
140186872cb5SThomas Graf 	rt->rt6i_metric = cfg->fc_metric;
14021da177e4SLinus Torvalds 
14031da177e4SLinus Torvalds 	/* We cannot add true routes via loopback here,
14041da177e4SLinus Torvalds 	   they would result in kernel looping; promote them to reject routes
14051da177e4SLinus Torvalds 	 */
140686872cb5SThomas Graf 	if ((cfg->fc_flags & RTF_REJECT) ||
140738308473SDavid S. Miller 	    (dev && (dev->flags & IFF_LOOPBACK) &&
140838308473SDavid S. Miller 	     !(addr_type & IPV6_ADDR_LOOPBACK) &&
140938308473SDavid S. Miller 	     !(cfg->fc_flags & RTF_LOCAL))) {
14101da177e4SLinus Torvalds 		/* hold loopback dev/idev if we haven't done so. */
14115578689aSDaniel Lezcano 		if (dev != net->loopback_dev) {
14121da177e4SLinus Torvalds 			if (dev) {
14131da177e4SLinus Torvalds 				dev_put(dev);
14141da177e4SLinus Torvalds 				in6_dev_put(idev);
14151da177e4SLinus Torvalds 			}
14165578689aSDaniel Lezcano 			dev = net->loopback_dev;
14171da177e4SLinus Torvalds 			dev_hold(dev);
14181da177e4SLinus Torvalds 			idev = in6_dev_get(dev);
14191da177e4SLinus Torvalds 			if (!idev) {
14201da177e4SLinus Torvalds 				err = -ENODEV;
14211da177e4SLinus Torvalds 				goto out;
14221da177e4SLinus Torvalds 			}
14231da177e4SLinus Torvalds 		}
1424d8d1f30bSChangli Gao 		rt->dst.output = ip6_pkt_discard_out;
1425d8d1f30bSChangli Gao 		rt->dst.input = ip6_pkt_discard;
1426d8d1f30bSChangli Gao 		rt->dst.error = -ENETUNREACH;
14271da177e4SLinus Torvalds 		rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP;
14281da177e4SLinus Torvalds 		goto install_route;
14291da177e4SLinus Torvalds 	}
14301da177e4SLinus Torvalds 
143186872cb5SThomas Graf 	if (cfg->fc_flags & RTF_GATEWAY) {
1432b71d1d42SEric Dumazet 		const struct in6_addr *gw_addr;
14331da177e4SLinus Torvalds 		int gwa_type;
14341da177e4SLinus Torvalds 
143586872cb5SThomas Graf 		gw_addr = &cfg->fc_gateway;
14364e3fd7a0SAlexey Dobriyan 		rt->rt6i_gateway = *gw_addr;
14371da177e4SLinus Torvalds 		gwa_type = ipv6_addr_type(gw_addr);
14381da177e4SLinus Torvalds 
14391da177e4SLinus Torvalds 		if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) {
14401da177e4SLinus Torvalds 			struct rt6_info *grt;
14411da177e4SLinus Torvalds 
14421da177e4SLinus Torvalds 			/* IPv6 strictly inhibits using not link-local
14431da177e4SLinus Torvalds 			   addresses as nexthop address.
14441da177e4SLinus Torvalds 			   Otherwise, router will not able to send redirects.
14451da177e4SLinus Torvalds 			   It is very good, but in some (rare!) circumstances
14461da177e4SLinus Torvalds 			   (SIT, PtP, NBMA NOARP links) it is handy to allow
14471da177e4SLinus Torvalds 			   some exceptions. --ANK
14481da177e4SLinus Torvalds 			 */
14491da177e4SLinus Torvalds 			err = -EINVAL;
14501da177e4SLinus Torvalds 			if (!(gwa_type & IPV6_ADDR_UNICAST))
14511da177e4SLinus Torvalds 				goto out;
14521da177e4SLinus Torvalds 
14535578689aSDaniel Lezcano 			grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1);
14541da177e4SLinus Torvalds 
14551da177e4SLinus Torvalds 			err = -EHOSTUNREACH;
145638308473SDavid S. Miller 			if (!grt)
14571da177e4SLinus Torvalds 				goto out;
14581da177e4SLinus Torvalds 			if (dev) {
1459d1918542SDavid S. Miller 				if (dev != grt->dst.dev) {
1460d8d1f30bSChangli Gao 					dst_release(&grt->dst);
14611da177e4SLinus Torvalds 					goto out;
14621da177e4SLinus Torvalds 				}
14631da177e4SLinus Torvalds 			} else {
1464d1918542SDavid S. Miller 				dev = grt->dst.dev;
14651da177e4SLinus Torvalds 				idev = grt->rt6i_idev;
14661da177e4SLinus Torvalds 				dev_hold(dev);
14671da177e4SLinus Torvalds 				in6_dev_hold(grt->rt6i_idev);
14681da177e4SLinus Torvalds 			}
14691da177e4SLinus Torvalds 			if (!(grt->rt6i_flags & RTF_GATEWAY))
14701da177e4SLinus Torvalds 				err = 0;
1471d8d1f30bSChangli Gao 			dst_release(&grt->dst);
14721da177e4SLinus Torvalds 
14731da177e4SLinus Torvalds 			if (err)
14741da177e4SLinus Torvalds 				goto out;
14751da177e4SLinus Torvalds 		}
14761da177e4SLinus Torvalds 		err = -EINVAL;
147738308473SDavid S. Miller 		if (!dev || (dev->flags & IFF_LOOPBACK))
14781da177e4SLinus Torvalds 			goto out;
14791da177e4SLinus Torvalds 	}
14801da177e4SLinus Torvalds 
14811da177e4SLinus Torvalds 	err = -ENODEV;
148238308473SDavid S. Miller 	if (!dev)
14831da177e4SLinus Torvalds 		goto out;
14841da177e4SLinus Torvalds 
1485c3968a85SDaniel Walter 	if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
1486c3968a85SDaniel Walter 		if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
1487c3968a85SDaniel Walter 			err = -EINVAL;
1488c3968a85SDaniel Walter 			goto out;
1489c3968a85SDaniel Walter 		}
14904e3fd7a0SAlexey Dobriyan 		rt->rt6i_prefsrc.addr = cfg->fc_prefsrc;
1491c3968a85SDaniel Walter 		rt->rt6i_prefsrc.plen = 128;
1492c3968a85SDaniel Walter 	} else
1493c3968a85SDaniel Walter 		rt->rt6i_prefsrc.plen = 0;
1494c3968a85SDaniel Walter 
149586872cb5SThomas Graf 	if (cfg->fc_flags & (RTF_GATEWAY | RTF_NONEXTHOP)) {
14968ade06c6SDavid S. Miller 		err = rt6_bind_neighbour(rt, dev);
1497f83c7790SDavid S. Miller 		if (err)
14981da177e4SLinus Torvalds 			goto out;
14991da177e4SLinus Torvalds 	}
15001da177e4SLinus Torvalds 
150186872cb5SThomas Graf 	rt->rt6i_flags = cfg->fc_flags;
15021da177e4SLinus Torvalds 
15031da177e4SLinus Torvalds install_route:
150486872cb5SThomas Graf 	if (cfg->fc_mx) {
150586872cb5SThomas Graf 		struct nlattr *nla;
150686872cb5SThomas Graf 		int remaining;
15071da177e4SLinus Torvalds 
150886872cb5SThomas Graf 		nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) {
15098f4c1f9bSThomas Graf 			int type = nla_type(nla);
151086872cb5SThomas Graf 
151186872cb5SThomas Graf 			if (type) {
151286872cb5SThomas Graf 				if (type > RTAX_MAX) {
15131da177e4SLinus Torvalds 					err = -EINVAL;
15141da177e4SLinus Torvalds 					goto out;
15151da177e4SLinus Torvalds 				}
151686872cb5SThomas Graf 
1517defb3519SDavid S. Miller 				dst_metric_set(&rt->dst, type, nla_get_u32(nla));
15181da177e4SLinus Torvalds 			}
15191da177e4SLinus Torvalds 		}
15201da177e4SLinus Torvalds 	}
15211da177e4SLinus Torvalds 
1522d8d1f30bSChangli Gao 	rt->dst.dev = dev;
15231da177e4SLinus Torvalds 	rt->rt6i_idev = idev;
1524c71099acSThomas Graf 	rt->rt6i_table = table;
152563152fc0SDaniel Lezcano 
1526c346dca1SYOSHIFUJI Hideaki 	cfg->fc_nlinfo.nl_net = dev_net(dev);
152763152fc0SDaniel Lezcano 
152886872cb5SThomas Graf 	return __ip6_ins_rt(rt, &cfg->fc_nlinfo);
15291da177e4SLinus Torvalds 
15301da177e4SLinus Torvalds out:
15311da177e4SLinus Torvalds 	if (dev)
15321da177e4SLinus Torvalds 		dev_put(dev);
15331da177e4SLinus Torvalds 	if (idev)
15341da177e4SLinus Torvalds 		in6_dev_put(idev);
15351da177e4SLinus Torvalds 	if (rt)
1536d8d1f30bSChangli Gao 		dst_free(&rt->dst);
15371da177e4SLinus Torvalds 	return err;
15381da177e4SLinus Torvalds }
15391da177e4SLinus Torvalds 
154086872cb5SThomas Graf static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info)
15411da177e4SLinus Torvalds {
15421da177e4SLinus Torvalds 	int err;
1543c71099acSThomas Graf 	struct fib6_table *table;
1544d1918542SDavid S. Miller 	struct net *net = dev_net(rt->dst.dev);
15451da177e4SLinus Torvalds 
15468ed67789SDaniel Lezcano 	if (rt == net->ipv6.ip6_null_entry)
15476c813a72SPatrick McHardy 		return -ENOENT;
15486c813a72SPatrick McHardy 
1549c71099acSThomas Graf 	table = rt->rt6i_table;
1550c71099acSThomas Graf 	write_lock_bh(&table->tb6_lock);
15511da177e4SLinus Torvalds 
155286872cb5SThomas Graf 	err = fib6_del(rt, info);
1553d8d1f30bSChangli Gao 	dst_release(&rt->dst);
15541da177e4SLinus Torvalds 
1555c71099acSThomas Graf 	write_unlock_bh(&table->tb6_lock);
15561da177e4SLinus Torvalds 
15571da177e4SLinus Torvalds 	return err;
15581da177e4SLinus Torvalds }
15591da177e4SLinus Torvalds 
1560e0a1ad73SThomas Graf int ip6_del_rt(struct rt6_info *rt)
1561e0a1ad73SThomas Graf {
15624d1169c1SDenis V. Lunev 	struct nl_info info = {
1563d1918542SDavid S. Miller 		.nl_net = dev_net(rt->dst.dev),
15644d1169c1SDenis V. Lunev 	};
1565528c4cebSDenis V. Lunev 	return __ip6_del_rt(rt, &info);
1566e0a1ad73SThomas Graf }
1567e0a1ad73SThomas Graf 
156886872cb5SThomas Graf static int ip6_route_del(struct fib6_config *cfg)
15691da177e4SLinus Torvalds {
1570c71099acSThomas Graf 	struct fib6_table *table;
15711da177e4SLinus Torvalds 	struct fib6_node *fn;
15721da177e4SLinus Torvalds 	struct rt6_info *rt;
15731da177e4SLinus Torvalds 	int err = -ESRCH;
15741da177e4SLinus Torvalds 
15755578689aSDaniel Lezcano 	table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
157638308473SDavid S. Miller 	if (!table)
1577c71099acSThomas Graf 		return err;
15781da177e4SLinus Torvalds 
1579c71099acSThomas Graf 	read_lock_bh(&table->tb6_lock);
1580c71099acSThomas Graf 
1581c71099acSThomas Graf 	fn = fib6_locate(&table->tb6_root,
158286872cb5SThomas Graf 			 &cfg->fc_dst, cfg->fc_dst_len,
158386872cb5SThomas Graf 			 &cfg->fc_src, cfg->fc_src_len);
15841da177e4SLinus Torvalds 
15851da177e4SLinus Torvalds 	if (fn) {
1586d8d1f30bSChangli Gao 		for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
158786872cb5SThomas Graf 			if (cfg->fc_ifindex &&
1588d1918542SDavid S. Miller 			    (!rt->dst.dev ||
1589d1918542SDavid S. Miller 			     rt->dst.dev->ifindex != cfg->fc_ifindex))
15901da177e4SLinus Torvalds 				continue;
159186872cb5SThomas Graf 			if (cfg->fc_flags & RTF_GATEWAY &&
159286872cb5SThomas Graf 			    !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
15931da177e4SLinus Torvalds 				continue;
159486872cb5SThomas Graf 			if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric)
15951da177e4SLinus Torvalds 				continue;
1596d8d1f30bSChangli Gao 			dst_hold(&rt->dst);
1597c71099acSThomas Graf 			read_unlock_bh(&table->tb6_lock);
15981da177e4SLinus Torvalds 
159986872cb5SThomas Graf 			return __ip6_del_rt(rt, &cfg->fc_nlinfo);
16001da177e4SLinus Torvalds 		}
16011da177e4SLinus Torvalds 	}
1602c71099acSThomas Graf 	read_unlock_bh(&table->tb6_lock);
16031da177e4SLinus Torvalds 
16041da177e4SLinus Torvalds 	return err;
16051da177e4SLinus Torvalds }
16061da177e4SLinus Torvalds 
16071da177e4SLinus Torvalds /*
16081da177e4SLinus Torvalds  *	Handle redirects
16091da177e4SLinus Torvalds  */
1610a6279458SYOSHIFUJI Hideaki struct ip6rd_flowi {
16114c9483b2SDavid S. Miller 	struct flowi6 fl6;
1612a6279458SYOSHIFUJI Hideaki 	struct in6_addr gateway;
1613a6279458SYOSHIFUJI Hideaki };
16141da177e4SLinus Torvalds 
16158ed67789SDaniel Lezcano static struct rt6_info *__ip6_route_redirect(struct net *net,
16168ed67789SDaniel Lezcano 					     struct fib6_table *table,
16174c9483b2SDavid S. Miller 					     struct flowi6 *fl6,
1618a6279458SYOSHIFUJI Hideaki 					     int flags)
1619a6279458SYOSHIFUJI Hideaki {
16204c9483b2SDavid S. Miller 	struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
1621a6279458SYOSHIFUJI Hideaki 	struct rt6_info *rt;
1622a6279458SYOSHIFUJI Hideaki 	struct fib6_node *fn;
1623c71099acSThomas Graf 
1624e843b9e1SYOSHIFUJI Hideaki 	/*
1625e843b9e1SYOSHIFUJI Hideaki 	 * Get the "current" route for this destination and
1626e843b9e1SYOSHIFUJI Hideaki 	 * check if the redirect has come from approriate router.
1627e843b9e1SYOSHIFUJI Hideaki 	 *
1628e843b9e1SYOSHIFUJI Hideaki 	 * RFC 2461 specifies that redirects should only be
1629e843b9e1SYOSHIFUJI Hideaki 	 * accepted if they come from the nexthop to the target.
1630e843b9e1SYOSHIFUJI Hideaki 	 * Due to the way the routes are chosen, this notion
1631e843b9e1SYOSHIFUJI Hideaki 	 * is a bit fuzzy and one might need to check all possible
1632e843b9e1SYOSHIFUJI Hideaki 	 * routes.
1633e843b9e1SYOSHIFUJI Hideaki 	 */
16341da177e4SLinus Torvalds 
1635c71099acSThomas Graf 	read_lock_bh(&table->tb6_lock);
16364c9483b2SDavid S. Miller 	fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
1637e843b9e1SYOSHIFUJI Hideaki restart:
1638d8d1f30bSChangli Gao 	for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
16391da177e4SLinus Torvalds 		/*
16401da177e4SLinus Torvalds 		 * Current route is on-link; redirect is always invalid.
16411da177e4SLinus Torvalds 		 *
16421da177e4SLinus Torvalds 		 * Seems, previous statement is not true. It could
16431da177e4SLinus Torvalds 		 * be node, which looks for us as on-link (f.e. proxy ndisc)
16441da177e4SLinus Torvalds 		 * But then router serving it might decide, that we should
16451da177e4SLinus Torvalds 		 * know truth 8)8) --ANK (980726).
16461da177e4SLinus Torvalds 		 */
1647e843b9e1SYOSHIFUJI Hideaki 		if (rt6_check_expired(rt))
1648e843b9e1SYOSHIFUJI Hideaki 			continue;
16491da177e4SLinus Torvalds 		if (!(rt->rt6i_flags & RTF_GATEWAY))
1650e843b9e1SYOSHIFUJI Hideaki 			continue;
1651d1918542SDavid S. Miller 		if (fl6->flowi6_oif != rt->dst.dev->ifindex)
1652e843b9e1SYOSHIFUJI Hideaki 			continue;
1653a6279458SYOSHIFUJI Hideaki 		if (!ipv6_addr_equal(&rdfl->gateway, &rt->rt6i_gateway))
1654e843b9e1SYOSHIFUJI Hideaki 			continue;
1655e843b9e1SYOSHIFUJI Hideaki 		break;
1656e843b9e1SYOSHIFUJI Hideaki 	}
1657a6279458SYOSHIFUJI Hideaki 
1658cb15d9c2SYOSHIFUJI Hideaki 	if (!rt)
16598ed67789SDaniel Lezcano 		rt = net->ipv6.ip6_null_entry;
16604c9483b2SDavid S. Miller 	BACKTRACK(net, &fl6->saddr);
1661cb15d9c2SYOSHIFUJI Hideaki out:
1662d8d1f30bSChangli Gao 	dst_hold(&rt->dst);
1663a6279458SYOSHIFUJI Hideaki 
1664c71099acSThomas Graf 	read_unlock_bh(&table->tb6_lock);
16651da177e4SLinus Torvalds 
1666a6279458SYOSHIFUJI Hideaki 	return rt;
1667a6279458SYOSHIFUJI Hideaki };
1668a6279458SYOSHIFUJI Hideaki 
1669b71d1d42SEric Dumazet static struct rt6_info *ip6_route_redirect(const struct in6_addr *dest,
1670b71d1d42SEric Dumazet 					   const struct in6_addr *src,
1671b71d1d42SEric Dumazet 					   const struct in6_addr *gateway,
1672a6279458SYOSHIFUJI Hideaki 					   struct net_device *dev)
1673a6279458SYOSHIFUJI Hideaki {
1674adaa70bbSThomas Graf 	int flags = RT6_LOOKUP_F_HAS_SADDR;
1675c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(dev);
1676a6279458SYOSHIFUJI Hideaki 	struct ip6rd_flowi rdfl = {
16774c9483b2SDavid S. Miller 		.fl6 = {
16784c9483b2SDavid S. Miller 			.flowi6_oif = dev->ifindex,
16794c9483b2SDavid S. Miller 			.daddr = *dest,
16804c9483b2SDavid S. Miller 			.saddr = *src,
1681a6279458SYOSHIFUJI Hideaki 		},
1682a6279458SYOSHIFUJI Hideaki 	};
1683adaa70bbSThomas Graf 
16844e3fd7a0SAlexey Dobriyan 	rdfl.gateway = *gateway;
168586c36ce4SBrian Haley 
1686adaa70bbSThomas Graf 	if (rt6_need_strict(dest))
1687adaa70bbSThomas Graf 		flags |= RT6_LOOKUP_F_IFACE;
1688a6279458SYOSHIFUJI Hideaki 
16894c9483b2SDavid S. Miller 	return (struct rt6_info *)fib6_rule_lookup(net, &rdfl.fl6,
169058f09b78SDaniel Lezcano 						   flags, __ip6_route_redirect);
1691a6279458SYOSHIFUJI Hideaki }
1692a6279458SYOSHIFUJI Hideaki 
1693b71d1d42SEric Dumazet void rt6_redirect(const struct in6_addr *dest, const struct in6_addr *src,
1694b71d1d42SEric Dumazet 		  const struct in6_addr *saddr,
1695a6279458SYOSHIFUJI Hideaki 		  struct neighbour *neigh, u8 *lladdr, int on_link)
1696a6279458SYOSHIFUJI Hideaki {
1697a6279458SYOSHIFUJI Hideaki 	struct rt6_info *rt, *nrt = NULL;
1698a6279458SYOSHIFUJI Hideaki 	struct netevent_redirect netevent;
1699c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(neigh->dev);
17001d248b1cSDavid S. Miller 	struct neighbour *old_neigh;
1701a6279458SYOSHIFUJI Hideaki 
1702a6279458SYOSHIFUJI Hideaki 	rt = ip6_route_redirect(dest, src, saddr, neigh->dev);
1703a6279458SYOSHIFUJI Hideaki 
17048ed67789SDaniel Lezcano 	if (rt == net->ipv6.ip6_null_entry) {
1705e87cc472SJoe Perches 		net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
1706a6279458SYOSHIFUJI Hideaki 		goto out;
17071da177e4SLinus Torvalds 	}
17081da177e4SLinus Torvalds 
17091da177e4SLinus Torvalds 	/*
17101da177e4SLinus Torvalds 	 *	We have finally decided to accept it.
17111da177e4SLinus Torvalds 	 */
17121da177e4SLinus Torvalds 
17131da177e4SLinus Torvalds 	neigh_update(neigh, lladdr, NUD_STALE,
17141da177e4SLinus Torvalds 		     NEIGH_UPDATE_F_WEAK_OVERRIDE|
17151da177e4SLinus Torvalds 		     NEIGH_UPDATE_F_OVERRIDE|
17161da177e4SLinus Torvalds 		     (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
17171da177e4SLinus Torvalds 				     NEIGH_UPDATE_F_ISROUTER))
17181da177e4SLinus Torvalds 		     );
17191da177e4SLinus Torvalds 
17201da177e4SLinus Torvalds 	/*
17211da177e4SLinus Torvalds 	 * Redirect received -> path was valid.
17221da177e4SLinus Torvalds 	 * Look, redirects are sent only in response to data packets,
17231da177e4SLinus Torvalds 	 * so that this nexthop apparently is reachable. --ANK
17241da177e4SLinus Torvalds 	 */
1725d8d1f30bSChangli Gao 	dst_confirm(&rt->dst);
17261da177e4SLinus Torvalds 
17271da177e4SLinus Torvalds 	/* Duplicate redirect: silently ignore. */
172897cac082SDavid S. Miller 	old_neigh = rt->n;
17291d248b1cSDavid S. Miller 	if (neigh == old_neigh)
17301da177e4SLinus Torvalds 		goto out;
17311da177e4SLinus Torvalds 
173221efcfa0SEric Dumazet 	nrt = ip6_rt_copy(rt, dest);
173338308473SDavid S. Miller 	if (!nrt)
17341da177e4SLinus Torvalds 		goto out;
17351da177e4SLinus Torvalds 
17361da177e4SLinus Torvalds 	nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
17371da177e4SLinus Torvalds 	if (on_link)
17381da177e4SLinus Torvalds 		nrt->rt6i_flags &= ~RTF_GATEWAY;
17391da177e4SLinus Torvalds 
17404e3fd7a0SAlexey Dobriyan 	nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
174197cac082SDavid S. Miller 	nrt->n = neigh_clone(neigh);
17421da177e4SLinus Torvalds 
174340e22e8fSThomas Graf 	if (ip6_ins_rt(nrt))
17441da177e4SLinus Torvalds 		goto out;
17451da177e4SLinus Torvalds 
1746d8d1f30bSChangli Gao 	netevent.old = &rt->dst;
17471d248b1cSDavid S. Miller 	netevent.old_neigh = old_neigh;
1748d8d1f30bSChangli Gao 	netevent.new = &nrt->dst;
17491d248b1cSDavid S. Miller 	netevent.new_neigh = neigh;
17501d248b1cSDavid S. Miller 	netevent.daddr = dest;
17518d71740cSTom Tucker 	call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
17528d71740cSTom Tucker 
17531da177e4SLinus Torvalds 	if (rt->rt6i_flags & RTF_CACHE) {
1754e0a1ad73SThomas Graf 		ip6_del_rt(rt);
17551da177e4SLinus Torvalds 		return;
17561da177e4SLinus Torvalds 	}
17571da177e4SLinus Torvalds 
17581da177e4SLinus Torvalds out:
1759d8d1f30bSChangli Gao 	dst_release(&rt->dst);
17601da177e4SLinus Torvalds }
17611da177e4SLinus Torvalds 
17621da177e4SLinus Torvalds /*
17631da177e4SLinus Torvalds  *	Misc support functions
17641da177e4SLinus Torvalds  */
17651da177e4SLinus Torvalds 
17661716a961SGao feng static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
176721efcfa0SEric Dumazet 				    const struct in6_addr *dest)
17681da177e4SLinus Torvalds {
1769d1918542SDavid S. Miller 	struct net *net = dev_net(ort->dst.dev);
17708b96d22dSDavid S. Miller 	struct rt6_info *rt = ip6_dst_alloc(net, ort->dst.dev, 0,
17718b96d22dSDavid S. Miller 					    ort->rt6i_table);
17721da177e4SLinus Torvalds 
17731da177e4SLinus Torvalds 	if (rt) {
1774d8d1f30bSChangli Gao 		rt->dst.input = ort->dst.input;
1775d8d1f30bSChangli Gao 		rt->dst.output = ort->dst.output;
17768e2ec639SYan, Zheng 		rt->dst.flags |= DST_HOST;
17771da177e4SLinus Torvalds 
17784e3fd7a0SAlexey Dobriyan 		rt->rt6i_dst.addr = *dest;
17798e2ec639SYan, Zheng 		rt->rt6i_dst.plen = 128;
1780defb3519SDavid S. Miller 		dst_copy_metrics(&rt->dst, &ort->dst);
1781d8d1f30bSChangli Gao 		rt->dst.error = ort->dst.error;
17821da177e4SLinus Torvalds 		rt->rt6i_idev = ort->rt6i_idev;
17831da177e4SLinus Torvalds 		if (rt->rt6i_idev)
17841da177e4SLinus Torvalds 			in6_dev_hold(rt->rt6i_idev);
1785d8d1f30bSChangli Gao 		rt->dst.lastuse = jiffies;
17861da177e4SLinus Torvalds 
17874e3fd7a0SAlexey Dobriyan 		rt->rt6i_gateway = ort->rt6i_gateway;
17881716a961SGao feng 		rt->rt6i_flags = ort->rt6i_flags;
17891716a961SGao feng 		if ((ort->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) ==
17901716a961SGao feng 		    (RTF_DEFAULT | RTF_ADDRCONF))
17911716a961SGao feng 			rt6_set_from(rt, ort);
17921716a961SGao feng 		else
17931716a961SGao feng 			rt6_clean_expires(rt);
17941da177e4SLinus Torvalds 		rt->rt6i_metric = 0;
17951da177e4SLinus Torvalds 
17961da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES
17971da177e4SLinus Torvalds 		memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
17981da177e4SLinus Torvalds #endif
17990f6c6392SFlorian Westphal 		memcpy(&rt->rt6i_prefsrc, &ort->rt6i_prefsrc, sizeof(struct rt6key));
1800c71099acSThomas Graf 		rt->rt6i_table = ort->rt6i_table;
18011da177e4SLinus Torvalds 	}
18021da177e4SLinus Torvalds 	return rt;
18031da177e4SLinus Torvalds }
18041da177e4SLinus Torvalds 
180570ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO
1806efa2cea0SDaniel Lezcano static struct rt6_info *rt6_get_route_info(struct net *net,
1807b71d1d42SEric Dumazet 					   const struct in6_addr *prefix, int prefixlen,
1808b71d1d42SEric Dumazet 					   const struct in6_addr *gwaddr, int ifindex)
180970ceb4f5SYOSHIFUJI Hideaki {
181070ceb4f5SYOSHIFUJI Hideaki 	struct fib6_node *fn;
181170ceb4f5SYOSHIFUJI Hideaki 	struct rt6_info *rt = NULL;
1812c71099acSThomas Graf 	struct fib6_table *table;
181370ceb4f5SYOSHIFUJI Hideaki 
1814efa2cea0SDaniel Lezcano 	table = fib6_get_table(net, RT6_TABLE_INFO);
181538308473SDavid S. Miller 	if (!table)
1816c71099acSThomas Graf 		return NULL;
1817c71099acSThomas Graf 
1818c71099acSThomas Graf 	write_lock_bh(&table->tb6_lock);
1819c71099acSThomas Graf 	fn = fib6_locate(&table->tb6_root, prefix ,prefixlen, NULL, 0);
182070ceb4f5SYOSHIFUJI Hideaki 	if (!fn)
182170ceb4f5SYOSHIFUJI Hideaki 		goto out;
182270ceb4f5SYOSHIFUJI Hideaki 
1823d8d1f30bSChangli Gao 	for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
1824d1918542SDavid S. Miller 		if (rt->dst.dev->ifindex != ifindex)
182570ceb4f5SYOSHIFUJI Hideaki 			continue;
182670ceb4f5SYOSHIFUJI Hideaki 		if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY))
182770ceb4f5SYOSHIFUJI Hideaki 			continue;
182870ceb4f5SYOSHIFUJI Hideaki 		if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr))
182970ceb4f5SYOSHIFUJI Hideaki 			continue;
1830d8d1f30bSChangli Gao 		dst_hold(&rt->dst);
183170ceb4f5SYOSHIFUJI Hideaki 		break;
183270ceb4f5SYOSHIFUJI Hideaki 	}
183370ceb4f5SYOSHIFUJI Hideaki out:
1834c71099acSThomas Graf 	write_unlock_bh(&table->tb6_lock);
183570ceb4f5SYOSHIFUJI Hideaki 	return rt;
183670ceb4f5SYOSHIFUJI Hideaki }
183770ceb4f5SYOSHIFUJI Hideaki 
1838efa2cea0SDaniel Lezcano static struct rt6_info *rt6_add_route_info(struct net *net,
1839b71d1d42SEric Dumazet 					   const struct in6_addr *prefix, int prefixlen,
1840b71d1d42SEric Dumazet 					   const struct in6_addr *gwaddr, int ifindex,
184195c96174SEric Dumazet 					   unsigned int pref)
184270ceb4f5SYOSHIFUJI Hideaki {
184386872cb5SThomas Graf 	struct fib6_config cfg = {
184486872cb5SThomas Graf 		.fc_table	= RT6_TABLE_INFO,
1845238fc7eaSRami Rosen 		.fc_metric	= IP6_RT_PRIO_USER,
184686872cb5SThomas Graf 		.fc_ifindex	= ifindex,
184786872cb5SThomas Graf 		.fc_dst_len	= prefixlen,
184886872cb5SThomas Graf 		.fc_flags	= RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
184986872cb5SThomas Graf 				  RTF_UP | RTF_PREF(pref),
1850efa2cea0SDaniel Lezcano 		.fc_nlinfo.pid = 0,
1851efa2cea0SDaniel Lezcano 		.fc_nlinfo.nlh = NULL,
1852efa2cea0SDaniel Lezcano 		.fc_nlinfo.nl_net = net,
185386872cb5SThomas Graf 	};
185470ceb4f5SYOSHIFUJI Hideaki 
18554e3fd7a0SAlexey Dobriyan 	cfg.fc_dst = *prefix;
18564e3fd7a0SAlexey Dobriyan 	cfg.fc_gateway = *gwaddr;
185786872cb5SThomas Graf 
1858e317da96SYOSHIFUJI Hideaki 	/* We should treat it as a default route if prefix length is 0. */
1859e317da96SYOSHIFUJI Hideaki 	if (!prefixlen)
186086872cb5SThomas Graf 		cfg.fc_flags |= RTF_DEFAULT;
186170ceb4f5SYOSHIFUJI Hideaki 
186286872cb5SThomas Graf 	ip6_route_add(&cfg);
186370ceb4f5SYOSHIFUJI Hideaki 
1864efa2cea0SDaniel Lezcano 	return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex);
186570ceb4f5SYOSHIFUJI Hideaki }
186670ceb4f5SYOSHIFUJI Hideaki #endif
186770ceb4f5SYOSHIFUJI Hideaki 
1868b71d1d42SEric Dumazet struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev)
18691da177e4SLinus Torvalds {
18701da177e4SLinus Torvalds 	struct rt6_info *rt;
1871c71099acSThomas Graf 	struct fib6_table *table;
18721da177e4SLinus Torvalds 
1873c346dca1SYOSHIFUJI Hideaki 	table = fib6_get_table(dev_net(dev), RT6_TABLE_DFLT);
187438308473SDavid S. Miller 	if (!table)
1875c71099acSThomas Graf 		return NULL;
18761da177e4SLinus Torvalds 
1877c71099acSThomas Graf 	write_lock_bh(&table->tb6_lock);
1878d8d1f30bSChangli Gao 	for (rt = table->tb6_root.leaf; rt; rt=rt->dst.rt6_next) {
1879d1918542SDavid S. Miller 		if (dev == rt->dst.dev &&
1880045927ffSYOSHIFUJI Hideaki 		    ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
18811da177e4SLinus Torvalds 		    ipv6_addr_equal(&rt->rt6i_gateway, addr))
18821da177e4SLinus Torvalds 			break;
18831da177e4SLinus Torvalds 	}
18841da177e4SLinus Torvalds 	if (rt)
1885d8d1f30bSChangli Gao 		dst_hold(&rt->dst);
1886c71099acSThomas Graf 	write_unlock_bh(&table->tb6_lock);
18871da177e4SLinus Torvalds 	return rt;
18881da177e4SLinus Torvalds }
18891da177e4SLinus Torvalds 
1890b71d1d42SEric Dumazet struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr,
1891ebacaaa0SYOSHIFUJI Hideaki 				     struct net_device *dev,
1892ebacaaa0SYOSHIFUJI Hideaki 				     unsigned int pref)
18931da177e4SLinus Torvalds {
189486872cb5SThomas Graf 	struct fib6_config cfg = {
189586872cb5SThomas Graf 		.fc_table	= RT6_TABLE_DFLT,
1896238fc7eaSRami Rosen 		.fc_metric	= IP6_RT_PRIO_USER,
189786872cb5SThomas Graf 		.fc_ifindex	= dev->ifindex,
189886872cb5SThomas Graf 		.fc_flags	= RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
189986872cb5SThomas Graf 				  RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
19005578689aSDaniel Lezcano 		.fc_nlinfo.pid = 0,
19015578689aSDaniel Lezcano 		.fc_nlinfo.nlh = NULL,
1902c346dca1SYOSHIFUJI Hideaki 		.fc_nlinfo.nl_net = dev_net(dev),
190386872cb5SThomas Graf 	};
19041da177e4SLinus Torvalds 
19054e3fd7a0SAlexey Dobriyan 	cfg.fc_gateway = *gwaddr;
19061da177e4SLinus Torvalds 
190786872cb5SThomas Graf 	ip6_route_add(&cfg);
19081da177e4SLinus Torvalds 
19091da177e4SLinus Torvalds 	return rt6_get_dflt_router(gwaddr, dev);
19101da177e4SLinus Torvalds }
19111da177e4SLinus Torvalds 
19127b4da532SDaniel Lezcano void rt6_purge_dflt_routers(struct net *net)
19131da177e4SLinus Torvalds {
19141da177e4SLinus Torvalds 	struct rt6_info *rt;
1915c71099acSThomas Graf 	struct fib6_table *table;
1916c71099acSThomas Graf 
1917c71099acSThomas Graf 	/* NOTE: Keep consistent with rt6_get_dflt_router */
19187b4da532SDaniel Lezcano 	table = fib6_get_table(net, RT6_TABLE_DFLT);
191938308473SDavid S. Miller 	if (!table)
1920c71099acSThomas Graf 		return;
19211da177e4SLinus Torvalds 
19221da177e4SLinus Torvalds restart:
1923c71099acSThomas Graf 	read_lock_bh(&table->tb6_lock);
1924d8d1f30bSChangli Gao 	for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) {
19251da177e4SLinus Torvalds 		if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) {
1926d8d1f30bSChangli Gao 			dst_hold(&rt->dst);
1927c71099acSThomas Graf 			read_unlock_bh(&table->tb6_lock);
1928e0a1ad73SThomas Graf 			ip6_del_rt(rt);
19291da177e4SLinus Torvalds 			goto restart;
19301da177e4SLinus Torvalds 		}
19311da177e4SLinus Torvalds 	}
1932c71099acSThomas Graf 	read_unlock_bh(&table->tb6_lock);
19331da177e4SLinus Torvalds }
19341da177e4SLinus Torvalds 
19355578689aSDaniel Lezcano static void rtmsg_to_fib6_config(struct net *net,
19365578689aSDaniel Lezcano 				 struct in6_rtmsg *rtmsg,
193786872cb5SThomas Graf 				 struct fib6_config *cfg)
193886872cb5SThomas Graf {
193986872cb5SThomas Graf 	memset(cfg, 0, sizeof(*cfg));
194086872cb5SThomas Graf 
194186872cb5SThomas Graf 	cfg->fc_table = RT6_TABLE_MAIN;
194286872cb5SThomas Graf 	cfg->fc_ifindex = rtmsg->rtmsg_ifindex;
194386872cb5SThomas Graf 	cfg->fc_metric = rtmsg->rtmsg_metric;
194486872cb5SThomas Graf 	cfg->fc_expires = rtmsg->rtmsg_info;
194586872cb5SThomas Graf 	cfg->fc_dst_len = rtmsg->rtmsg_dst_len;
194686872cb5SThomas Graf 	cfg->fc_src_len = rtmsg->rtmsg_src_len;
194786872cb5SThomas Graf 	cfg->fc_flags = rtmsg->rtmsg_flags;
194886872cb5SThomas Graf 
19495578689aSDaniel Lezcano 	cfg->fc_nlinfo.nl_net = net;
1950f1243c2dSBenjamin Thery 
19514e3fd7a0SAlexey Dobriyan 	cfg->fc_dst = rtmsg->rtmsg_dst;
19524e3fd7a0SAlexey Dobriyan 	cfg->fc_src = rtmsg->rtmsg_src;
19534e3fd7a0SAlexey Dobriyan 	cfg->fc_gateway = rtmsg->rtmsg_gateway;
195486872cb5SThomas Graf }
195586872cb5SThomas Graf 
19565578689aSDaniel Lezcano int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg)
19571da177e4SLinus Torvalds {
195886872cb5SThomas Graf 	struct fib6_config cfg;
19591da177e4SLinus Torvalds 	struct in6_rtmsg rtmsg;
19601da177e4SLinus Torvalds 	int err;
19611da177e4SLinus Torvalds 
19621da177e4SLinus Torvalds 	switch(cmd) {
19631da177e4SLinus Torvalds 	case SIOCADDRT:		/* Add a route */
19641da177e4SLinus Torvalds 	case SIOCDELRT:		/* Delete a route */
19651da177e4SLinus Torvalds 		if (!capable(CAP_NET_ADMIN))
19661da177e4SLinus Torvalds 			return -EPERM;
19671da177e4SLinus Torvalds 		err = copy_from_user(&rtmsg, arg,
19681da177e4SLinus Torvalds 				     sizeof(struct in6_rtmsg));
19691da177e4SLinus Torvalds 		if (err)
19701da177e4SLinus Torvalds 			return -EFAULT;
19711da177e4SLinus Torvalds 
19725578689aSDaniel Lezcano 		rtmsg_to_fib6_config(net, &rtmsg, &cfg);
197386872cb5SThomas Graf 
19741da177e4SLinus Torvalds 		rtnl_lock();
19751da177e4SLinus Torvalds 		switch (cmd) {
19761da177e4SLinus Torvalds 		case SIOCADDRT:
197786872cb5SThomas Graf 			err = ip6_route_add(&cfg);
19781da177e4SLinus Torvalds 			break;
19791da177e4SLinus Torvalds 		case SIOCDELRT:
198086872cb5SThomas Graf 			err = ip6_route_del(&cfg);
19811da177e4SLinus Torvalds 			break;
19821da177e4SLinus Torvalds 		default:
19831da177e4SLinus Torvalds 			err = -EINVAL;
19841da177e4SLinus Torvalds 		}
19851da177e4SLinus Torvalds 		rtnl_unlock();
19861da177e4SLinus Torvalds 
19871da177e4SLinus Torvalds 		return err;
19883ff50b79SStephen Hemminger 	}
19891da177e4SLinus Torvalds 
19901da177e4SLinus Torvalds 	return -EINVAL;
19911da177e4SLinus Torvalds }
19921da177e4SLinus Torvalds 
19931da177e4SLinus Torvalds /*
19941da177e4SLinus Torvalds  *	Drop the packet on the floor
19951da177e4SLinus Torvalds  */
19961da177e4SLinus Torvalds 
1997d5fdd6baSBrian Haley static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
19981da177e4SLinus Torvalds {
1999612f09e8SYOSHIFUJI Hideaki 	int type;
2000adf30907SEric Dumazet 	struct dst_entry *dst = skb_dst(skb);
2001612f09e8SYOSHIFUJI Hideaki 	switch (ipstats_mib_noroutes) {
2002612f09e8SYOSHIFUJI Hideaki 	case IPSTATS_MIB_INNOROUTES:
20030660e03fSArnaldo Carvalho de Melo 		type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
200445bb0060SUlrich Weber 		if (type == IPV6_ADDR_ANY) {
20053bd653c8SDenis V. Lunev 			IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
20063bd653c8SDenis V. Lunev 				      IPSTATS_MIB_INADDRERRORS);
2007612f09e8SYOSHIFUJI Hideaki 			break;
2008612f09e8SYOSHIFUJI Hideaki 		}
2009612f09e8SYOSHIFUJI Hideaki 		/* FALLTHROUGH */
2010612f09e8SYOSHIFUJI Hideaki 	case IPSTATS_MIB_OUTNOROUTES:
20113bd653c8SDenis V. Lunev 		IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
20123bd653c8SDenis V. Lunev 			      ipstats_mib_noroutes);
2013612f09e8SYOSHIFUJI Hideaki 		break;
2014612f09e8SYOSHIFUJI Hideaki 	}
20153ffe533cSAlexey Dobriyan 	icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
20161da177e4SLinus Torvalds 	kfree_skb(skb);
20171da177e4SLinus Torvalds 	return 0;
20181da177e4SLinus Torvalds }
20191da177e4SLinus Torvalds 
20209ce8ade0SThomas Graf static int ip6_pkt_discard(struct sk_buff *skb)
20219ce8ade0SThomas Graf {
2022612f09e8SYOSHIFUJI Hideaki 	return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
20239ce8ade0SThomas Graf }
20249ce8ade0SThomas Graf 
202520380731SArnaldo Carvalho de Melo static int ip6_pkt_discard_out(struct sk_buff *skb)
20261da177e4SLinus Torvalds {
2027adf30907SEric Dumazet 	skb->dev = skb_dst(skb)->dev;
2028612f09e8SYOSHIFUJI Hideaki 	return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
20291da177e4SLinus Torvalds }
20301da177e4SLinus Torvalds 
20316723ab54SDavid S. Miller #ifdef CONFIG_IPV6_MULTIPLE_TABLES
20326723ab54SDavid S. Miller 
20339ce8ade0SThomas Graf static int ip6_pkt_prohibit(struct sk_buff *skb)
20349ce8ade0SThomas Graf {
2035612f09e8SYOSHIFUJI Hideaki 	return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
20369ce8ade0SThomas Graf }
20379ce8ade0SThomas Graf 
20389ce8ade0SThomas Graf static int ip6_pkt_prohibit_out(struct sk_buff *skb)
20399ce8ade0SThomas Graf {
2040adf30907SEric Dumazet 	skb->dev = skb_dst(skb)->dev;
2041612f09e8SYOSHIFUJI Hideaki 	return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
20429ce8ade0SThomas Graf }
20439ce8ade0SThomas Graf 
20446723ab54SDavid S. Miller #endif
20456723ab54SDavid S. Miller 
20461da177e4SLinus Torvalds /*
20471da177e4SLinus Torvalds  *	Allocate a dst for local (unicast / anycast) address.
20481da177e4SLinus Torvalds  */
20491da177e4SLinus Torvalds 
20501da177e4SLinus Torvalds struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
20511da177e4SLinus Torvalds 				    const struct in6_addr *addr,
20528f031519SDavid S. Miller 				    bool anycast)
20531da177e4SLinus Torvalds {
2054c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(idev->dev);
20558b96d22dSDavid S. Miller 	struct rt6_info *rt = ip6_dst_alloc(net, net->loopback_dev, 0, NULL);
2056f83c7790SDavid S. Miller 	int err;
20571da177e4SLinus Torvalds 
205838308473SDavid S. Miller 	if (!rt) {
2059f3213831SJoe Perches 		net_warn_ratelimited("Maximum number of routes reached, consider increasing route/max_size\n");
20601da177e4SLinus Torvalds 		return ERR_PTR(-ENOMEM);
206140385653SBen Greear 	}
20621da177e4SLinus Torvalds 
20631da177e4SLinus Torvalds 	in6_dev_hold(idev);
20641da177e4SLinus Torvalds 
206511d53b49SDavid S. Miller 	rt->dst.flags |= DST_HOST;
2066d8d1f30bSChangli Gao 	rt->dst.input = ip6_input;
2067d8d1f30bSChangli Gao 	rt->dst.output = ip6_output;
20681da177e4SLinus Torvalds 	rt->rt6i_idev = idev;
2069d8d1f30bSChangli Gao 	rt->dst.obsolete = -1;
20701da177e4SLinus Torvalds 
20711da177e4SLinus Torvalds 	rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;
207258c4fb86SYOSHIFUJI Hideaki 	if (anycast)
207358c4fb86SYOSHIFUJI Hideaki 		rt->rt6i_flags |= RTF_ANYCAST;
207458c4fb86SYOSHIFUJI Hideaki 	else
20751da177e4SLinus Torvalds 		rt->rt6i_flags |= RTF_LOCAL;
20768ade06c6SDavid S. Miller 	err = rt6_bind_neighbour(rt, rt->dst.dev);
2077f83c7790SDavid S. Miller 	if (err) {
2078d8d1f30bSChangli Gao 		dst_free(&rt->dst);
2079f83c7790SDavid S. Miller 		return ERR_PTR(err);
20801da177e4SLinus Torvalds 	}
20811da177e4SLinus Torvalds 
20824e3fd7a0SAlexey Dobriyan 	rt->rt6i_dst.addr = *addr;
20831da177e4SLinus Torvalds 	rt->rt6i_dst.plen = 128;
20845578689aSDaniel Lezcano 	rt->rt6i_table = fib6_get_table(net, RT6_TABLE_LOCAL);
20851da177e4SLinus Torvalds 
2086d8d1f30bSChangli Gao 	atomic_set(&rt->dst.__refcnt, 1);
20871da177e4SLinus Torvalds 
20881da177e4SLinus Torvalds 	return rt;
20891da177e4SLinus Torvalds }
20901da177e4SLinus Torvalds 
2091c3968a85SDaniel Walter int ip6_route_get_saddr(struct net *net,
2092c3968a85SDaniel Walter 			struct rt6_info *rt,
2093b71d1d42SEric Dumazet 			const struct in6_addr *daddr,
2094c3968a85SDaniel Walter 			unsigned int prefs,
2095c3968a85SDaniel Walter 			struct in6_addr *saddr)
2096c3968a85SDaniel Walter {
2097c3968a85SDaniel Walter 	struct inet6_dev *idev = ip6_dst_idev((struct dst_entry*)rt);
2098c3968a85SDaniel Walter 	int err = 0;
2099c3968a85SDaniel Walter 	if (rt->rt6i_prefsrc.plen)
21004e3fd7a0SAlexey Dobriyan 		*saddr = rt->rt6i_prefsrc.addr;
2101c3968a85SDaniel Walter 	else
2102c3968a85SDaniel Walter 		err = ipv6_dev_get_saddr(net, idev ? idev->dev : NULL,
2103c3968a85SDaniel Walter 					 daddr, prefs, saddr);
2104c3968a85SDaniel Walter 	return err;
2105c3968a85SDaniel Walter }
2106c3968a85SDaniel Walter 
2107c3968a85SDaniel Walter /* remove deleted ip from prefsrc entries */
2108c3968a85SDaniel Walter struct arg_dev_net_ip {
2109c3968a85SDaniel Walter 	struct net_device *dev;
2110c3968a85SDaniel Walter 	struct net *net;
2111c3968a85SDaniel Walter 	struct in6_addr *addr;
2112c3968a85SDaniel Walter };
2113c3968a85SDaniel Walter 
2114c3968a85SDaniel Walter static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg)
2115c3968a85SDaniel Walter {
2116c3968a85SDaniel Walter 	struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
2117c3968a85SDaniel Walter 	struct net *net = ((struct arg_dev_net_ip *)arg)->net;
2118c3968a85SDaniel Walter 	struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
2119c3968a85SDaniel Walter 
2120d1918542SDavid S. Miller 	if (((void *)rt->dst.dev == dev || !dev) &&
2121c3968a85SDaniel Walter 	    rt != net->ipv6.ip6_null_entry &&
2122c3968a85SDaniel Walter 	    ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) {
2123c3968a85SDaniel Walter 		/* remove prefsrc entry */
2124c3968a85SDaniel Walter 		rt->rt6i_prefsrc.plen = 0;
2125c3968a85SDaniel Walter 	}
2126c3968a85SDaniel Walter 	return 0;
2127c3968a85SDaniel Walter }
2128c3968a85SDaniel Walter 
2129c3968a85SDaniel Walter void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
2130c3968a85SDaniel Walter {
2131c3968a85SDaniel Walter 	struct net *net = dev_net(ifp->idev->dev);
2132c3968a85SDaniel Walter 	struct arg_dev_net_ip adni = {
2133c3968a85SDaniel Walter 		.dev = ifp->idev->dev,
2134c3968a85SDaniel Walter 		.net = net,
2135c3968a85SDaniel Walter 		.addr = &ifp->addr,
2136c3968a85SDaniel Walter 	};
2137c3968a85SDaniel Walter 	fib6_clean_all(net, fib6_remove_prefsrc, 0, &adni);
2138c3968a85SDaniel Walter }
2139c3968a85SDaniel Walter 
21408ed67789SDaniel Lezcano struct arg_dev_net {
21418ed67789SDaniel Lezcano 	struct net_device *dev;
21428ed67789SDaniel Lezcano 	struct net *net;
21438ed67789SDaniel Lezcano };
21448ed67789SDaniel Lezcano 
21451da177e4SLinus Torvalds static int fib6_ifdown(struct rt6_info *rt, void *arg)
21461da177e4SLinus Torvalds {
2147bc3ef660Sstephen hemminger 	const struct arg_dev_net *adn = arg;
2148bc3ef660Sstephen hemminger 	const struct net_device *dev = adn->dev;
21498ed67789SDaniel Lezcano 
2150d1918542SDavid S. Miller 	if ((rt->dst.dev == dev || !dev) &&
2151c159d30cSDavid S. Miller 	    rt != adn->net->ipv6.ip6_null_entry)
21521da177e4SLinus Torvalds 		return -1;
2153c159d30cSDavid S. Miller 
21541da177e4SLinus Torvalds 	return 0;
21551da177e4SLinus Torvalds }
21561da177e4SLinus Torvalds 
2157f3db4851SDaniel Lezcano void rt6_ifdown(struct net *net, struct net_device *dev)
21581da177e4SLinus Torvalds {
21598ed67789SDaniel Lezcano 	struct arg_dev_net adn = {
21608ed67789SDaniel Lezcano 		.dev = dev,
21618ed67789SDaniel Lezcano 		.net = net,
21628ed67789SDaniel Lezcano 	};
21638ed67789SDaniel Lezcano 
21648ed67789SDaniel Lezcano 	fib6_clean_all(net, fib6_ifdown, 0, &adn);
21651e493d19SDavid S. Miller 	icmp6_clean_all(fib6_ifdown, &adn);
21661da177e4SLinus Torvalds }
21671da177e4SLinus Torvalds 
216895c96174SEric Dumazet struct rt6_mtu_change_arg {
21691da177e4SLinus Torvalds 	struct net_device *dev;
217095c96174SEric Dumazet 	unsigned int mtu;
21711da177e4SLinus Torvalds };
21721da177e4SLinus Torvalds 
21731da177e4SLinus Torvalds static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
21741da177e4SLinus Torvalds {
21751da177e4SLinus Torvalds 	struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
21761da177e4SLinus Torvalds 	struct inet6_dev *idev;
21771da177e4SLinus Torvalds 
21781da177e4SLinus Torvalds 	/* In IPv6 pmtu discovery is not optional,
21791da177e4SLinus Torvalds 	   so that RTAX_MTU lock cannot disable it.
21801da177e4SLinus Torvalds 	   We still use this lock to block changes
21811da177e4SLinus Torvalds 	   caused by addrconf/ndisc.
21821da177e4SLinus Torvalds 	*/
21831da177e4SLinus Torvalds 
21841da177e4SLinus Torvalds 	idev = __in6_dev_get(arg->dev);
218538308473SDavid S. Miller 	if (!idev)
21861da177e4SLinus Torvalds 		return 0;
21871da177e4SLinus Torvalds 
21881da177e4SLinus Torvalds 	/* For administrative MTU increase, there is no way to discover
21891da177e4SLinus Torvalds 	   IPv6 PMTU increase, so PMTU increase should be updated here.
21901da177e4SLinus Torvalds 	   Since RFC 1981 doesn't include administrative MTU increase
21911da177e4SLinus Torvalds 	   update PMTU increase is a MUST. (i.e. jumbo frame)
21921da177e4SLinus Torvalds 	 */
21931da177e4SLinus Torvalds 	/*
21941da177e4SLinus Torvalds 	   If new MTU is less than route PMTU, this new MTU will be the
21951da177e4SLinus Torvalds 	   lowest MTU in the path, update the route PMTU to reflect PMTU
21961da177e4SLinus Torvalds 	   decreases; if new MTU is greater than route PMTU, and the
21971da177e4SLinus Torvalds 	   old MTU is the lowest MTU in the path, update the route PMTU
21981da177e4SLinus Torvalds 	   to reflect the increase. In this case if the other nodes' MTU
21991da177e4SLinus Torvalds 	   also have the lowest MTU, TOO BIG MESSAGE will be lead to
22001da177e4SLinus Torvalds 	   PMTU discouvery.
22011da177e4SLinus Torvalds 	 */
2202d1918542SDavid S. Miller 	if (rt->dst.dev == arg->dev &&
2203d8d1f30bSChangli Gao 	    !dst_metric_locked(&rt->dst, RTAX_MTU) &&
2204d8d1f30bSChangli Gao 	    (dst_mtu(&rt->dst) >= arg->mtu ||
2205d8d1f30bSChangli Gao 	     (dst_mtu(&rt->dst) < arg->mtu &&
2206d8d1f30bSChangli Gao 	      dst_mtu(&rt->dst) == idev->cnf.mtu6))) {
2207defb3519SDavid S. Miller 		dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu);
2208566cfd8fSSimon Arlott 	}
22091da177e4SLinus Torvalds 	return 0;
22101da177e4SLinus Torvalds }
22111da177e4SLinus Torvalds 
221295c96174SEric Dumazet void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
22131da177e4SLinus Torvalds {
2214c71099acSThomas Graf 	struct rt6_mtu_change_arg arg = {
2215c71099acSThomas Graf 		.dev = dev,
2216c71099acSThomas Graf 		.mtu = mtu,
2217c71099acSThomas Graf 	};
22181da177e4SLinus Torvalds 
2219c346dca1SYOSHIFUJI Hideaki 	fib6_clean_all(dev_net(dev), rt6_mtu_change_route, 0, &arg);
22201da177e4SLinus Torvalds }
22211da177e4SLinus Torvalds 
2222ef7c79edSPatrick McHardy static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
22235176f91eSThomas Graf 	[RTA_GATEWAY]           = { .len = sizeof(struct in6_addr) },
222486872cb5SThomas Graf 	[RTA_OIF]               = { .type = NLA_U32 },
2225ab364a6fSThomas Graf 	[RTA_IIF]		= { .type = NLA_U32 },
222686872cb5SThomas Graf 	[RTA_PRIORITY]          = { .type = NLA_U32 },
222786872cb5SThomas Graf 	[RTA_METRICS]           = { .type = NLA_NESTED },
222886872cb5SThomas Graf };
222986872cb5SThomas Graf 
223086872cb5SThomas Graf static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
223186872cb5SThomas Graf 			      struct fib6_config *cfg)
22321da177e4SLinus Torvalds {
223386872cb5SThomas Graf 	struct rtmsg *rtm;
223486872cb5SThomas Graf 	struct nlattr *tb[RTA_MAX+1];
223586872cb5SThomas Graf 	int err;
22361da177e4SLinus Torvalds 
223786872cb5SThomas Graf 	err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
223886872cb5SThomas Graf 	if (err < 0)
223986872cb5SThomas Graf 		goto errout;
22401da177e4SLinus Torvalds 
224186872cb5SThomas Graf 	err = -EINVAL;
224286872cb5SThomas Graf 	rtm = nlmsg_data(nlh);
224386872cb5SThomas Graf 	memset(cfg, 0, sizeof(*cfg));
224486872cb5SThomas Graf 
224586872cb5SThomas Graf 	cfg->fc_table = rtm->rtm_table;
224686872cb5SThomas Graf 	cfg->fc_dst_len = rtm->rtm_dst_len;
224786872cb5SThomas Graf 	cfg->fc_src_len = rtm->rtm_src_len;
224886872cb5SThomas Graf 	cfg->fc_flags = RTF_UP;
224986872cb5SThomas Graf 	cfg->fc_protocol = rtm->rtm_protocol;
225086872cb5SThomas Graf 
225186872cb5SThomas Graf 	if (rtm->rtm_type == RTN_UNREACHABLE)
225286872cb5SThomas Graf 		cfg->fc_flags |= RTF_REJECT;
225386872cb5SThomas Graf 
2254ab79ad14SMaciej Żenczykowski 	if (rtm->rtm_type == RTN_LOCAL)
2255ab79ad14SMaciej Żenczykowski 		cfg->fc_flags |= RTF_LOCAL;
2256ab79ad14SMaciej Żenczykowski 
225786872cb5SThomas Graf 	cfg->fc_nlinfo.pid = NETLINK_CB(skb).pid;
225886872cb5SThomas Graf 	cfg->fc_nlinfo.nlh = nlh;
22593b1e0a65SYOSHIFUJI Hideaki 	cfg->fc_nlinfo.nl_net = sock_net(skb->sk);
226086872cb5SThomas Graf 
226186872cb5SThomas Graf 	if (tb[RTA_GATEWAY]) {
226286872cb5SThomas Graf 		nla_memcpy(&cfg->fc_gateway, tb[RTA_GATEWAY], 16);
226386872cb5SThomas Graf 		cfg->fc_flags |= RTF_GATEWAY;
22641da177e4SLinus Torvalds 	}
226586872cb5SThomas Graf 
226686872cb5SThomas Graf 	if (tb[RTA_DST]) {
226786872cb5SThomas Graf 		int plen = (rtm->rtm_dst_len + 7) >> 3;
226886872cb5SThomas Graf 
226986872cb5SThomas Graf 		if (nla_len(tb[RTA_DST]) < plen)
227086872cb5SThomas Graf 			goto errout;
227186872cb5SThomas Graf 
227286872cb5SThomas Graf 		nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
22731da177e4SLinus Torvalds 	}
227486872cb5SThomas Graf 
227586872cb5SThomas Graf 	if (tb[RTA_SRC]) {
227686872cb5SThomas Graf 		int plen = (rtm->rtm_src_len + 7) >> 3;
227786872cb5SThomas Graf 
227886872cb5SThomas Graf 		if (nla_len(tb[RTA_SRC]) < plen)
227986872cb5SThomas Graf 			goto errout;
228086872cb5SThomas Graf 
228186872cb5SThomas Graf 		nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
22821da177e4SLinus Torvalds 	}
228386872cb5SThomas Graf 
2284c3968a85SDaniel Walter 	if (tb[RTA_PREFSRC])
2285c3968a85SDaniel Walter 		nla_memcpy(&cfg->fc_prefsrc, tb[RTA_PREFSRC], 16);
2286c3968a85SDaniel Walter 
228786872cb5SThomas Graf 	if (tb[RTA_OIF])
228886872cb5SThomas Graf 		cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
228986872cb5SThomas Graf 
229086872cb5SThomas Graf 	if (tb[RTA_PRIORITY])
229186872cb5SThomas Graf 		cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
229286872cb5SThomas Graf 
229386872cb5SThomas Graf 	if (tb[RTA_METRICS]) {
229486872cb5SThomas Graf 		cfg->fc_mx = nla_data(tb[RTA_METRICS]);
229586872cb5SThomas Graf 		cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
22961da177e4SLinus Torvalds 	}
229786872cb5SThomas Graf 
229886872cb5SThomas Graf 	if (tb[RTA_TABLE])
229986872cb5SThomas Graf 		cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
230086872cb5SThomas Graf 
230186872cb5SThomas Graf 	err = 0;
230286872cb5SThomas Graf errout:
230386872cb5SThomas Graf 	return err;
23041da177e4SLinus Torvalds }
23051da177e4SLinus Torvalds 
2306c127ea2cSThomas Graf static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
23071da177e4SLinus Torvalds {
230886872cb5SThomas Graf 	struct fib6_config cfg;
230986872cb5SThomas Graf 	int err;
23101da177e4SLinus Torvalds 
231186872cb5SThomas Graf 	err = rtm_to_fib6_config(skb, nlh, &cfg);
231286872cb5SThomas Graf 	if (err < 0)
231386872cb5SThomas Graf 		return err;
231486872cb5SThomas Graf 
231586872cb5SThomas Graf 	return ip6_route_del(&cfg);
23161da177e4SLinus Torvalds }
23171da177e4SLinus Torvalds 
2318c127ea2cSThomas Graf static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
23191da177e4SLinus Torvalds {
232086872cb5SThomas Graf 	struct fib6_config cfg;
232186872cb5SThomas Graf 	int err;
23221da177e4SLinus Torvalds 
232386872cb5SThomas Graf 	err = rtm_to_fib6_config(skb, nlh, &cfg);
232486872cb5SThomas Graf 	if (err < 0)
232586872cb5SThomas Graf 		return err;
232686872cb5SThomas Graf 
232786872cb5SThomas Graf 	return ip6_route_add(&cfg);
23281da177e4SLinus Torvalds }
23291da177e4SLinus Torvalds 
2330339bf98fSThomas Graf static inline size_t rt6_nlmsg_size(void)
2331339bf98fSThomas Graf {
2332339bf98fSThomas Graf 	return NLMSG_ALIGN(sizeof(struct rtmsg))
2333339bf98fSThomas Graf 	       + nla_total_size(16) /* RTA_SRC */
2334339bf98fSThomas Graf 	       + nla_total_size(16) /* RTA_DST */
2335339bf98fSThomas Graf 	       + nla_total_size(16) /* RTA_GATEWAY */
2336339bf98fSThomas Graf 	       + nla_total_size(16) /* RTA_PREFSRC */
2337339bf98fSThomas Graf 	       + nla_total_size(4) /* RTA_TABLE */
2338339bf98fSThomas Graf 	       + nla_total_size(4) /* RTA_IIF */
2339339bf98fSThomas Graf 	       + nla_total_size(4) /* RTA_OIF */
2340339bf98fSThomas Graf 	       + nla_total_size(4) /* RTA_PRIORITY */
23416a2b9ce0SNoriaki TAKAMIYA 	       + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
2342339bf98fSThomas Graf 	       + nla_total_size(sizeof(struct rta_cacheinfo));
2343339bf98fSThomas Graf }
2344339bf98fSThomas Graf 
2345191cd582SBrian Haley static int rt6_fill_node(struct net *net,
2346191cd582SBrian Haley 			 struct sk_buff *skb, struct rt6_info *rt,
23470d51aa80SJamal Hadi Salim 			 struct in6_addr *dst, struct in6_addr *src,
23480d51aa80SJamal Hadi Salim 			 int iif, int type, u32 pid, u32 seq,
23497bc570c8SYOSHIFUJI Hideaki 			 int prefix, int nowait, unsigned int flags)
23501da177e4SLinus Torvalds {
2351346f870bSDavid S. Miller 	const struct inet_peer *peer;
23521da177e4SLinus Torvalds 	struct rtmsg *rtm;
23531da177e4SLinus Torvalds 	struct nlmsghdr *nlh;
2354e3703b3dSThomas Graf 	long expires;
23559e762a4aSPatrick McHardy 	u32 table;
2356f2c31e32SEric Dumazet 	struct neighbour *n;
2357346f870bSDavid S. Miller 	u32 ts, tsage;
23581da177e4SLinus Torvalds 
23591da177e4SLinus Torvalds 	if (prefix) {	/* user wants prefix routes only */
23601da177e4SLinus Torvalds 		if (!(rt->rt6i_flags & RTF_PREFIX_RT)) {
23611da177e4SLinus Torvalds 			/* success since this is not a prefix route */
23621da177e4SLinus Torvalds 			return 1;
23631da177e4SLinus Torvalds 		}
23641da177e4SLinus Torvalds 	}
23651da177e4SLinus Torvalds 
23662d7202bfSThomas Graf 	nlh = nlmsg_put(skb, pid, seq, type, sizeof(*rtm), flags);
236738308473SDavid S. Miller 	if (!nlh)
236826932566SPatrick McHardy 		return -EMSGSIZE;
23692d7202bfSThomas Graf 
23702d7202bfSThomas Graf 	rtm = nlmsg_data(nlh);
23711da177e4SLinus Torvalds 	rtm->rtm_family = AF_INET6;
23721da177e4SLinus Torvalds 	rtm->rtm_dst_len = rt->rt6i_dst.plen;
23731da177e4SLinus Torvalds 	rtm->rtm_src_len = rt->rt6i_src.plen;
23741da177e4SLinus Torvalds 	rtm->rtm_tos = 0;
2375c71099acSThomas Graf 	if (rt->rt6i_table)
23769e762a4aSPatrick McHardy 		table = rt->rt6i_table->tb6_id;
2377c71099acSThomas Graf 	else
23789e762a4aSPatrick McHardy 		table = RT6_TABLE_UNSPEC;
23799e762a4aSPatrick McHardy 	rtm->rtm_table = table;
2380c78679e8SDavid S. Miller 	if (nla_put_u32(skb, RTA_TABLE, table))
2381c78679e8SDavid S. Miller 		goto nla_put_failure;
23821da177e4SLinus Torvalds 	if (rt->rt6i_flags & RTF_REJECT)
23831da177e4SLinus Torvalds 		rtm->rtm_type = RTN_UNREACHABLE;
2384ab79ad14SMaciej Żenczykowski 	else if (rt->rt6i_flags & RTF_LOCAL)
2385ab79ad14SMaciej Żenczykowski 		rtm->rtm_type = RTN_LOCAL;
2386d1918542SDavid S. Miller 	else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK))
23871da177e4SLinus Torvalds 		rtm->rtm_type = RTN_LOCAL;
23881da177e4SLinus Torvalds 	else
23891da177e4SLinus Torvalds 		rtm->rtm_type = RTN_UNICAST;
23901da177e4SLinus Torvalds 	rtm->rtm_flags = 0;
23911da177e4SLinus Torvalds 	rtm->rtm_scope = RT_SCOPE_UNIVERSE;
23921da177e4SLinus Torvalds 	rtm->rtm_protocol = rt->rt6i_protocol;
23931da177e4SLinus Torvalds 	if (rt->rt6i_flags & RTF_DYNAMIC)
23941da177e4SLinus Torvalds 		rtm->rtm_protocol = RTPROT_REDIRECT;
23951da177e4SLinus Torvalds 	else if (rt->rt6i_flags & RTF_ADDRCONF)
23961da177e4SLinus Torvalds 		rtm->rtm_protocol = RTPROT_KERNEL;
23971da177e4SLinus Torvalds 	else if (rt->rt6i_flags & RTF_DEFAULT)
23981da177e4SLinus Torvalds 		rtm->rtm_protocol = RTPROT_RA;
23991da177e4SLinus Torvalds 
24001da177e4SLinus Torvalds 	if (rt->rt6i_flags & RTF_CACHE)
24011da177e4SLinus Torvalds 		rtm->rtm_flags |= RTM_F_CLONED;
24021da177e4SLinus Torvalds 
24031da177e4SLinus Torvalds 	if (dst) {
2404c78679e8SDavid S. Miller 		if (nla_put(skb, RTA_DST, 16, dst))
2405c78679e8SDavid S. Miller 			goto nla_put_failure;
24061da177e4SLinus Torvalds 		rtm->rtm_dst_len = 128;
24071da177e4SLinus Torvalds 	} else if (rtm->rtm_dst_len)
2408c78679e8SDavid S. Miller 		if (nla_put(skb, RTA_DST, 16, &rt->rt6i_dst.addr))
2409c78679e8SDavid S. Miller 			goto nla_put_failure;
24101da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES
24111da177e4SLinus Torvalds 	if (src) {
2412c78679e8SDavid S. Miller 		if (nla_put(skb, RTA_SRC, 16, src))
2413c78679e8SDavid S. Miller 			goto nla_put_failure;
24141da177e4SLinus Torvalds 		rtm->rtm_src_len = 128;
2415c78679e8SDavid S. Miller 	} else if (rtm->rtm_src_len &&
2416c78679e8SDavid S. Miller 		   nla_put(skb, RTA_SRC, 16, &rt->rt6i_src.addr))
2417c78679e8SDavid S. Miller 		goto nla_put_failure;
24181da177e4SLinus Torvalds #endif
24197bc570c8SYOSHIFUJI Hideaki 	if (iif) {
24207bc570c8SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_MROUTE
24217bc570c8SYOSHIFUJI Hideaki 		if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) {
24228229efdaSBenjamin Thery 			int err = ip6mr_get_route(net, skb, rtm, nowait);
24237bc570c8SYOSHIFUJI Hideaki 			if (err <= 0) {
24247bc570c8SYOSHIFUJI Hideaki 				if (!nowait) {
24257bc570c8SYOSHIFUJI Hideaki 					if (err == 0)
24267bc570c8SYOSHIFUJI Hideaki 						return 0;
24277bc570c8SYOSHIFUJI Hideaki 					goto nla_put_failure;
24287bc570c8SYOSHIFUJI Hideaki 				} else {
24297bc570c8SYOSHIFUJI Hideaki 					if (err == -EMSGSIZE)
24307bc570c8SYOSHIFUJI Hideaki 						goto nla_put_failure;
24317bc570c8SYOSHIFUJI Hideaki 				}
24327bc570c8SYOSHIFUJI Hideaki 			}
24337bc570c8SYOSHIFUJI Hideaki 		} else
24347bc570c8SYOSHIFUJI Hideaki #endif
2435c78679e8SDavid S. Miller 			if (nla_put_u32(skb, RTA_IIF, iif))
2436c78679e8SDavid S. Miller 				goto nla_put_failure;
24377bc570c8SYOSHIFUJI Hideaki 	} else if (dst) {
24381da177e4SLinus Torvalds 		struct in6_addr saddr_buf;
2439c78679e8SDavid S. Miller 		if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 &&
2440c78679e8SDavid S. Miller 		    nla_put(skb, RTA_PREFSRC, 16, &saddr_buf))
2441c78679e8SDavid S. Miller 			goto nla_put_failure;
2442c3968a85SDaniel Walter 	}
2443c3968a85SDaniel Walter 
2444c3968a85SDaniel Walter 	if (rt->rt6i_prefsrc.plen) {
2445c3968a85SDaniel Walter 		struct in6_addr saddr_buf;
24464e3fd7a0SAlexey Dobriyan 		saddr_buf = rt->rt6i_prefsrc.addr;
2447c78679e8SDavid S. Miller 		if (nla_put(skb, RTA_PREFSRC, 16, &saddr_buf))
2448c78679e8SDavid S. Miller 			goto nla_put_failure;
24491da177e4SLinus Torvalds 	}
24502d7202bfSThomas Graf 
2451defb3519SDavid S. Miller 	if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
24522d7202bfSThomas Graf 		goto nla_put_failure;
24532d7202bfSThomas Graf 
2454f2c31e32SEric Dumazet 	rcu_read_lock();
245597cac082SDavid S. Miller 	n = rt->n;
245694f826b8SEric Dumazet 	if (n) {
245794f826b8SEric Dumazet 		if (nla_put(skb, RTA_GATEWAY, 16, &n->primary_key) < 0) {
245894f826b8SEric Dumazet 			rcu_read_unlock();
245994f826b8SEric Dumazet 			goto nla_put_failure;
246094f826b8SEric Dumazet 		}
246194f826b8SEric Dumazet 	}
2462f2c31e32SEric Dumazet 	rcu_read_unlock();
24632d7202bfSThomas Graf 
2464c78679e8SDavid S. Miller 	if (rt->dst.dev &&
2465c78679e8SDavid S. Miller 	    nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex))
2466c78679e8SDavid S. Miller 		goto nla_put_failure;
2467c78679e8SDavid S. Miller 	if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric))
2468c78679e8SDavid S. Miller 		goto nla_put_failure;
246936e3deaeSYOSHIFUJI Hideaki 	if (!(rt->rt6i_flags & RTF_EXPIRES))
247036e3deaeSYOSHIFUJI Hideaki 		expires = 0;
2471d1918542SDavid S. Miller 	else if (rt->dst.expires - jiffies < INT_MAX)
2472d1918542SDavid S. Miller 		expires = rt->dst.expires - jiffies;
247336e3deaeSYOSHIFUJI Hideaki 	else
247436e3deaeSYOSHIFUJI Hideaki 		expires = INT_MAX;
247569cdf8f9SYOSHIFUJI Hideaki 
247697bab73fSDavid S. Miller 	peer = NULL;
247797bab73fSDavid S. Miller 	if (rt6_has_peer(rt))
247897bab73fSDavid S. Miller 		peer = rt6_peer_ptr(rt);
2479346f870bSDavid S. Miller 	ts = tsage = 0;
2480346f870bSDavid S. Miller 	if (peer && peer->tcp_ts_stamp) {
2481346f870bSDavid S. Miller 		ts = peer->tcp_ts;
2482346f870bSDavid S. Miller 		tsage = get_seconds() - peer->tcp_ts_stamp;
2483346f870bSDavid S. Miller 	}
2484346f870bSDavid S. Miller 
2485346f870bSDavid S. Miller 	if (rtnl_put_cacheinfo(skb, &rt->dst, 0, ts, tsage,
2486d8d1f30bSChangli Gao 			       expires, rt->dst.error) < 0)
2487e3703b3dSThomas Graf 		goto nla_put_failure;
24881da177e4SLinus Torvalds 
24892d7202bfSThomas Graf 	return nlmsg_end(skb, nlh);
24902d7202bfSThomas Graf 
24912d7202bfSThomas Graf nla_put_failure:
249226932566SPatrick McHardy 	nlmsg_cancel(skb, nlh);
249326932566SPatrick McHardy 	return -EMSGSIZE;
24941da177e4SLinus Torvalds }
24951da177e4SLinus Torvalds 
24961b43af54SPatrick McHardy int rt6_dump_route(struct rt6_info *rt, void *p_arg)
24971da177e4SLinus Torvalds {
24981da177e4SLinus Torvalds 	struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
24991da177e4SLinus Torvalds 	int prefix;
25001da177e4SLinus Torvalds 
25012d7202bfSThomas Graf 	if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
25022d7202bfSThomas Graf 		struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
25031da177e4SLinus Torvalds 		prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0;
25041da177e4SLinus Torvalds 	} else
25051da177e4SLinus Torvalds 		prefix = 0;
25061da177e4SLinus Torvalds 
2507191cd582SBrian Haley 	return rt6_fill_node(arg->net,
2508191cd582SBrian Haley 		     arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
25091da177e4SLinus Torvalds 		     NETLINK_CB(arg->cb->skb).pid, arg->cb->nlh->nlmsg_seq,
25107bc570c8SYOSHIFUJI Hideaki 		     prefix, 0, NLM_F_MULTI);
25111da177e4SLinus Torvalds }
25121da177e4SLinus Torvalds 
2513c127ea2cSThomas Graf static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
25141da177e4SLinus Torvalds {
25153b1e0a65SYOSHIFUJI Hideaki 	struct net *net = sock_net(in_skb->sk);
2516ab364a6fSThomas Graf 	struct nlattr *tb[RTA_MAX+1];
25171da177e4SLinus Torvalds 	struct rt6_info *rt;
2518ab364a6fSThomas Graf 	struct sk_buff *skb;
2519ab364a6fSThomas Graf 	struct rtmsg *rtm;
25204c9483b2SDavid S. Miller 	struct flowi6 fl6;
252172331bc0SShmulik Ladkani 	int err, iif = 0, oif = 0;
2522ab364a6fSThomas Graf 
2523ab364a6fSThomas Graf 	err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy);
2524ab364a6fSThomas Graf 	if (err < 0)
2525ab364a6fSThomas Graf 		goto errout;
2526ab364a6fSThomas Graf 
2527ab364a6fSThomas Graf 	err = -EINVAL;
25284c9483b2SDavid S. Miller 	memset(&fl6, 0, sizeof(fl6));
2529ab364a6fSThomas Graf 
2530ab364a6fSThomas Graf 	if (tb[RTA_SRC]) {
2531ab364a6fSThomas Graf 		if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
2532ab364a6fSThomas Graf 			goto errout;
2533ab364a6fSThomas Graf 
25344e3fd7a0SAlexey Dobriyan 		fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
2535ab364a6fSThomas Graf 	}
2536ab364a6fSThomas Graf 
2537ab364a6fSThomas Graf 	if (tb[RTA_DST]) {
2538ab364a6fSThomas Graf 		if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
2539ab364a6fSThomas Graf 			goto errout;
2540ab364a6fSThomas Graf 
25414e3fd7a0SAlexey Dobriyan 		fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
2542ab364a6fSThomas Graf 	}
2543ab364a6fSThomas Graf 
2544ab364a6fSThomas Graf 	if (tb[RTA_IIF])
2545ab364a6fSThomas Graf 		iif = nla_get_u32(tb[RTA_IIF]);
2546ab364a6fSThomas Graf 
2547ab364a6fSThomas Graf 	if (tb[RTA_OIF])
254872331bc0SShmulik Ladkani 		oif = nla_get_u32(tb[RTA_OIF]);
2549ab364a6fSThomas Graf 
2550ab364a6fSThomas Graf 	if (iif) {
2551ab364a6fSThomas Graf 		struct net_device *dev;
255272331bc0SShmulik Ladkani 		int flags = 0;
255372331bc0SShmulik Ladkani 
25545578689aSDaniel Lezcano 		dev = __dev_get_by_index(net, iif);
2555ab364a6fSThomas Graf 		if (!dev) {
2556ab364a6fSThomas Graf 			err = -ENODEV;
2557ab364a6fSThomas Graf 			goto errout;
2558ab364a6fSThomas Graf 		}
255972331bc0SShmulik Ladkani 
256072331bc0SShmulik Ladkani 		fl6.flowi6_iif = iif;
256172331bc0SShmulik Ladkani 
256272331bc0SShmulik Ladkani 		if (!ipv6_addr_any(&fl6.saddr))
256372331bc0SShmulik Ladkani 			flags |= RT6_LOOKUP_F_HAS_SADDR;
256472331bc0SShmulik Ladkani 
256572331bc0SShmulik Ladkani 		rt = (struct rt6_info *)ip6_route_input_lookup(net, dev, &fl6,
256672331bc0SShmulik Ladkani 							       flags);
256772331bc0SShmulik Ladkani 	} else {
256872331bc0SShmulik Ladkani 		fl6.flowi6_oif = oif;
256972331bc0SShmulik Ladkani 
257072331bc0SShmulik Ladkani 		rt = (struct rt6_info *)ip6_route_output(net, NULL, &fl6);
2571ab364a6fSThomas Graf 	}
25721da177e4SLinus Torvalds 
25731da177e4SLinus Torvalds 	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
257438308473SDavid S. Miller 	if (!skb) {
25752173bff5SShmulik Ladkani 		dst_release(&rt->dst);
2576ab364a6fSThomas Graf 		err = -ENOBUFS;
2577ab364a6fSThomas Graf 		goto errout;
2578ab364a6fSThomas Graf 	}
25791da177e4SLinus Torvalds 
25801da177e4SLinus Torvalds 	/* Reserve room for dummy headers, this skb can pass
25811da177e4SLinus Torvalds 	   through good chunk of routing engine.
25821da177e4SLinus Torvalds 	 */
2583459a98edSArnaldo Carvalho de Melo 	skb_reset_mac_header(skb);
25841da177e4SLinus Torvalds 	skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr));
25851da177e4SLinus Torvalds 
2586d8d1f30bSChangli Gao 	skb_dst_set(skb, &rt->dst);
25871da177e4SLinus Torvalds 
25884c9483b2SDavid S. Miller 	err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
25891da177e4SLinus Torvalds 			    RTM_NEWROUTE, NETLINK_CB(in_skb).pid,
25907bc570c8SYOSHIFUJI Hideaki 			    nlh->nlmsg_seq, 0, 0, 0);
25911da177e4SLinus Torvalds 	if (err < 0) {
2592ab364a6fSThomas Graf 		kfree_skb(skb);
2593ab364a6fSThomas Graf 		goto errout;
25941da177e4SLinus Torvalds 	}
25951da177e4SLinus Torvalds 
25965578689aSDaniel Lezcano 	err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).pid);
2597ab364a6fSThomas Graf errout:
25981da177e4SLinus Torvalds 	return err;
25991da177e4SLinus Torvalds }
26001da177e4SLinus Torvalds 
260186872cb5SThomas Graf void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info)
26021da177e4SLinus Torvalds {
26031da177e4SLinus Torvalds 	struct sk_buff *skb;
26045578689aSDaniel Lezcano 	struct net *net = info->nl_net;
2605528c4cebSDenis V. Lunev 	u32 seq;
2606528c4cebSDenis V. Lunev 	int err;
26070d51aa80SJamal Hadi Salim 
2608528c4cebSDenis V. Lunev 	err = -ENOBUFS;
260938308473SDavid S. Miller 	seq = info->nlh ? info->nlh->nlmsg_seq : 0;
261086872cb5SThomas Graf 
2611339bf98fSThomas Graf 	skb = nlmsg_new(rt6_nlmsg_size(), gfp_any());
261238308473SDavid S. Miller 	if (!skb)
261321713ebcSThomas Graf 		goto errout;
26141da177e4SLinus Torvalds 
2615191cd582SBrian Haley 	err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
26167bc570c8SYOSHIFUJI Hideaki 				event, info->pid, seq, 0, 0, 0);
261726932566SPatrick McHardy 	if (err < 0) {
261826932566SPatrick McHardy 		/* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
261926932566SPatrick McHardy 		WARN_ON(err == -EMSGSIZE);
262026932566SPatrick McHardy 		kfree_skb(skb);
262126932566SPatrick McHardy 		goto errout;
262226932566SPatrick McHardy 	}
26231ce85fe4SPablo Neira Ayuso 	rtnl_notify(skb, net, info->pid, RTNLGRP_IPV6_ROUTE,
26245578689aSDaniel Lezcano 		    info->nlh, gfp_any());
26251ce85fe4SPablo Neira Ayuso 	return;
262621713ebcSThomas Graf errout:
262721713ebcSThomas Graf 	if (err < 0)
26285578689aSDaniel Lezcano 		rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
26291da177e4SLinus Torvalds }
26301da177e4SLinus Torvalds 
26318ed67789SDaniel Lezcano static int ip6_route_dev_notify(struct notifier_block *this,
26328ed67789SDaniel Lezcano 				unsigned long event, void *data)
26338ed67789SDaniel Lezcano {
26348ed67789SDaniel Lezcano 	struct net_device *dev = (struct net_device *)data;
2635c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(dev);
26368ed67789SDaniel Lezcano 
26378ed67789SDaniel Lezcano 	if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) {
2638d8d1f30bSChangli Gao 		net->ipv6.ip6_null_entry->dst.dev = dev;
26398ed67789SDaniel Lezcano 		net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
26408ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES
2641d8d1f30bSChangli Gao 		net->ipv6.ip6_prohibit_entry->dst.dev = dev;
26428ed67789SDaniel Lezcano 		net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
2643d8d1f30bSChangli Gao 		net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
26448ed67789SDaniel Lezcano 		net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
26458ed67789SDaniel Lezcano #endif
26468ed67789SDaniel Lezcano 	}
26478ed67789SDaniel Lezcano 
26488ed67789SDaniel Lezcano 	return NOTIFY_OK;
26498ed67789SDaniel Lezcano }
26508ed67789SDaniel Lezcano 
26511da177e4SLinus Torvalds /*
26521da177e4SLinus Torvalds  *	/proc
26531da177e4SLinus Torvalds  */
26541da177e4SLinus Torvalds 
26551da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS
26561da177e4SLinus Torvalds 
26571da177e4SLinus Torvalds struct rt6_proc_arg
26581da177e4SLinus Torvalds {
26591da177e4SLinus Torvalds 	char *buffer;
26601da177e4SLinus Torvalds 	int offset;
26611da177e4SLinus Torvalds 	int length;
26621da177e4SLinus Torvalds 	int skip;
26631da177e4SLinus Torvalds 	int len;
26641da177e4SLinus Torvalds };
26651da177e4SLinus Torvalds 
26661da177e4SLinus Torvalds static int rt6_info_route(struct rt6_info *rt, void *p_arg)
26671da177e4SLinus Torvalds {
266833120b30SAlexey Dobriyan 	struct seq_file *m = p_arg;
266969cce1d1SDavid S. Miller 	struct neighbour *n;
26701da177e4SLinus Torvalds 
26714b7a4274SHarvey Harrison 	seq_printf(m, "%pi6 %02x ", &rt->rt6i_dst.addr, rt->rt6i_dst.plen);
26721da177e4SLinus Torvalds 
26731da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES
26744b7a4274SHarvey Harrison 	seq_printf(m, "%pi6 %02x ", &rt->rt6i_src.addr, rt->rt6i_src.plen);
26751da177e4SLinus Torvalds #else
267633120b30SAlexey Dobriyan 	seq_puts(m, "00000000000000000000000000000000 00 ");
26771da177e4SLinus Torvalds #endif
2678f2c31e32SEric Dumazet 	rcu_read_lock();
267997cac082SDavid S. Miller 	n = rt->n;
268069cce1d1SDavid S. Miller 	if (n) {
268169cce1d1SDavid S. Miller 		seq_printf(m, "%pi6", n->primary_key);
26821da177e4SLinus Torvalds 	} else {
268333120b30SAlexey Dobriyan 		seq_puts(m, "00000000000000000000000000000000");
26841da177e4SLinus Torvalds 	}
2685f2c31e32SEric Dumazet 	rcu_read_unlock();
268633120b30SAlexey Dobriyan 	seq_printf(m, " %08x %08x %08x %08x %8s\n",
2687d8d1f30bSChangli Gao 		   rt->rt6i_metric, atomic_read(&rt->dst.__refcnt),
2688d8d1f30bSChangli Gao 		   rt->dst.__use, rt->rt6i_flags,
2689d1918542SDavid S. Miller 		   rt->dst.dev ? rt->dst.dev->name : "");
26901da177e4SLinus Torvalds 	return 0;
26911da177e4SLinus Torvalds }
26921da177e4SLinus Torvalds 
269333120b30SAlexey Dobriyan static int ipv6_route_show(struct seq_file *m, void *v)
26941da177e4SLinus Torvalds {
2695f3db4851SDaniel Lezcano 	struct net *net = (struct net *)m->private;
269632b293a5SJosh Hunt 	fib6_clean_all_ro(net, rt6_info_route, 0, m);
269733120b30SAlexey Dobriyan 	return 0;
26981da177e4SLinus Torvalds }
26991da177e4SLinus Torvalds 
270033120b30SAlexey Dobriyan static int ipv6_route_open(struct inode *inode, struct file *file)
270133120b30SAlexey Dobriyan {
2702de05c557SPavel Emelyanov 	return single_open_net(inode, file, ipv6_route_show);
2703f3db4851SDaniel Lezcano }
2704f3db4851SDaniel Lezcano 
270533120b30SAlexey Dobriyan static const struct file_operations ipv6_route_proc_fops = {
270633120b30SAlexey Dobriyan 	.owner		= THIS_MODULE,
270733120b30SAlexey Dobriyan 	.open		= ipv6_route_open,
270833120b30SAlexey Dobriyan 	.read		= seq_read,
270933120b30SAlexey Dobriyan 	.llseek		= seq_lseek,
2710b6fcbdb4SPavel Emelyanov 	.release	= single_release_net,
271133120b30SAlexey Dobriyan };
271233120b30SAlexey Dobriyan 
27131da177e4SLinus Torvalds static int rt6_stats_seq_show(struct seq_file *seq, void *v)
27141da177e4SLinus Torvalds {
271569ddb805SDaniel Lezcano 	struct net *net = (struct net *)seq->private;
27161da177e4SLinus Torvalds 	seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
271769ddb805SDaniel Lezcano 		   net->ipv6.rt6_stats->fib_nodes,
271869ddb805SDaniel Lezcano 		   net->ipv6.rt6_stats->fib_route_nodes,
271969ddb805SDaniel Lezcano 		   net->ipv6.rt6_stats->fib_rt_alloc,
272069ddb805SDaniel Lezcano 		   net->ipv6.rt6_stats->fib_rt_entries,
272169ddb805SDaniel Lezcano 		   net->ipv6.rt6_stats->fib_rt_cache,
2722fc66f95cSEric Dumazet 		   dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
272369ddb805SDaniel Lezcano 		   net->ipv6.rt6_stats->fib_discarded_routes);
27241da177e4SLinus Torvalds 
27251da177e4SLinus Torvalds 	return 0;
27261da177e4SLinus Torvalds }
27271da177e4SLinus Torvalds 
27281da177e4SLinus Torvalds static int rt6_stats_seq_open(struct inode *inode, struct file *file)
27291da177e4SLinus Torvalds {
2730de05c557SPavel Emelyanov 	return single_open_net(inode, file, rt6_stats_seq_show);
273169ddb805SDaniel Lezcano }
273269ddb805SDaniel Lezcano 
27339a32144eSArjan van de Ven static const struct file_operations rt6_stats_seq_fops = {
27341da177e4SLinus Torvalds 	.owner	 = THIS_MODULE,
27351da177e4SLinus Torvalds 	.open	 = rt6_stats_seq_open,
27361da177e4SLinus Torvalds 	.read	 = seq_read,
27371da177e4SLinus Torvalds 	.llseek	 = seq_lseek,
2738b6fcbdb4SPavel Emelyanov 	.release = single_release_net,
27391da177e4SLinus Torvalds };
27401da177e4SLinus Torvalds #endif	/* CONFIG_PROC_FS */
27411da177e4SLinus Torvalds 
27421da177e4SLinus Torvalds #ifdef CONFIG_SYSCTL
27431da177e4SLinus Torvalds 
27441da177e4SLinus Torvalds static
27458d65af78SAlexey Dobriyan int ipv6_sysctl_rtcache_flush(ctl_table *ctl, int write,
27461da177e4SLinus Torvalds 			      void __user *buffer, size_t *lenp, loff_t *ppos)
27471da177e4SLinus Torvalds {
2748c486da34SLucian Adrian Grijincu 	struct net *net;
2749c486da34SLucian Adrian Grijincu 	int delay;
2750c486da34SLucian Adrian Grijincu 	if (!write)
2751c486da34SLucian Adrian Grijincu 		return -EINVAL;
2752c486da34SLucian Adrian Grijincu 
2753c486da34SLucian Adrian Grijincu 	net = (struct net *)ctl->extra1;
2754c486da34SLucian Adrian Grijincu 	delay = net->ipv6.sysctl.flush_delay;
27558d65af78SAlexey Dobriyan 	proc_dointvec(ctl, write, buffer, lenp, ppos);
27565b7c931dSDaniel Lezcano 	fib6_run_gc(delay <= 0 ? ~0UL : (unsigned long)delay, net);
27571da177e4SLinus Torvalds 	return 0;
27581da177e4SLinus Torvalds }
27591da177e4SLinus Torvalds 
2760760f2d01SDaniel Lezcano ctl_table ipv6_route_table_template[] = {
27611da177e4SLinus Torvalds 	{
27621da177e4SLinus Torvalds 		.procname	=	"flush",
27634990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.flush_delay,
27641da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
276589c8b3a1SDave Jones 		.mode		=	0200,
27666d9f239aSAlexey Dobriyan 		.proc_handler	=	ipv6_sysctl_rtcache_flush
27671da177e4SLinus Torvalds 	},
27681da177e4SLinus Torvalds 	{
27691da177e4SLinus Torvalds 		.procname	=	"gc_thresh",
27709a7ec3a9SDaniel Lezcano 		.data		=	&ip6_dst_ops_template.gc_thresh,
27711da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
27721da177e4SLinus Torvalds 		.mode		=	0644,
27736d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec,
27741da177e4SLinus Torvalds 	},
27751da177e4SLinus Torvalds 	{
27761da177e4SLinus Torvalds 		.procname	=	"max_size",
27774990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_max_size,
27781da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
27791da177e4SLinus Torvalds 		.mode		=	0644,
27806d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec,
27811da177e4SLinus Torvalds 	},
27821da177e4SLinus Torvalds 	{
27831da177e4SLinus Torvalds 		.procname	=	"gc_min_interval",
27844990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
27851da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
27861da177e4SLinus Torvalds 		.mode		=	0644,
27876d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec_jiffies,
27881da177e4SLinus Torvalds 	},
27891da177e4SLinus Torvalds 	{
27901da177e4SLinus Torvalds 		.procname	=	"gc_timeout",
27914990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_gc_timeout,
27921da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
27931da177e4SLinus Torvalds 		.mode		=	0644,
27946d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec_jiffies,
27951da177e4SLinus Torvalds 	},
27961da177e4SLinus Torvalds 	{
27971da177e4SLinus Torvalds 		.procname	=	"gc_interval",
27984990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_gc_interval,
27991da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
28001da177e4SLinus Torvalds 		.mode		=	0644,
28016d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec_jiffies,
28021da177e4SLinus Torvalds 	},
28031da177e4SLinus Torvalds 	{
28041da177e4SLinus Torvalds 		.procname	=	"gc_elasticity",
28054990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
28061da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
28071da177e4SLinus Torvalds 		.mode		=	0644,
2808f3d3f616SMin Zhang 		.proc_handler	=	proc_dointvec,
28091da177e4SLinus Torvalds 	},
28101da177e4SLinus Torvalds 	{
28111da177e4SLinus Torvalds 		.procname	=	"mtu_expires",
28124990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_mtu_expires,
28131da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
28141da177e4SLinus Torvalds 		.mode		=	0644,
28156d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec_jiffies,
28161da177e4SLinus Torvalds 	},
28171da177e4SLinus Torvalds 	{
28181da177e4SLinus Torvalds 		.procname	=	"min_adv_mss",
28194990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_min_advmss,
28201da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
28211da177e4SLinus Torvalds 		.mode		=	0644,
2822f3d3f616SMin Zhang 		.proc_handler	=	proc_dointvec,
28231da177e4SLinus Torvalds 	},
28241da177e4SLinus Torvalds 	{
28251da177e4SLinus Torvalds 		.procname	=	"gc_min_interval_ms",
28264990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
28271da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
28281da177e4SLinus Torvalds 		.mode		=	0644,
28296d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec_ms_jiffies,
28301da177e4SLinus Torvalds 	},
2831f8572d8fSEric W. Biederman 	{ }
28321da177e4SLinus Torvalds };
28331da177e4SLinus Torvalds 
28342c8c1e72SAlexey Dobriyan struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
2835760f2d01SDaniel Lezcano {
2836760f2d01SDaniel Lezcano 	struct ctl_table *table;
2837760f2d01SDaniel Lezcano 
2838760f2d01SDaniel Lezcano 	table = kmemdup(ipv6_route_table_template,
2839760f2d01SDaniel Lezcano 			sizeof(ipv6_route_table_template),
2840760f2d01SDaniel Lezcano 			GFP_KERNEL);
28415ee09105SYOSHIFUJI Hideaki 
28425ee09105SYOSHIFUJI Hideaki 	if (table) {
28435ee09105SYOSHIFUJI Hideaki 		table[0].data = &net->ipv6.sysctl.flush_delay;
2844c486da34SLucian Adrian Grijincu 		table[0].extra1 = net;
284586393e52SAlexey Dobriyan 		table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
28465ee09105SYOSHIFUJI Hideaki 		table[2].data = &net->ipv6.sysctl.ip6_rt_max_size;
28475ee09105SYOSHIFUJI Hideaki 		table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
28485ee09105SYOSHIFUJI Hideaki 		table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
28495ee09105SYOSHIFUJI Hideaki 		table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
28505ee09105SYOSHIFUJI Hideaki 		table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
28515ee09105SYOSHIFUJI Hideaki 		table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
28525ee09105SYOSHIFUJI Hideaki 		table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
28539c69fabeSAlexey Dobriyan 		table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
28545ee09105SYOSHIFUJI Hideaki 	}
28555ee09105SYOSHIFUJI Hideaki 
2856760f2d01SDaniel Lezcano 	return table;
2857760f2d01SDaniel Lezcano }
28581da177e4SLinus Torvalds #endif
28591da177e4SLinus Torvalds 
28602c8c1e72SAlexey Dobriyan static int __net_init ip6_route_net_init(struct net *net)
2861cdb18761SDaniel Lezcano {
2862633d424bSPavel Emelyanov 	int ret = -ENOMEM;
28638ed67789SDaniel Lezcano 
286486393e52SAlexey Dobriyan 	memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
286586393e52SAlexey Dobriyan 	       sizeof(net->ipv6.ip6_dst_ops));
2866f2fc6a54SBenjamin Thery 
2867fc66f95cSEric Dumazet 	if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
2868fc66f95cSEric Dumazet 		goto out_ip6_dst_ops;
2869fc66f95cSEric Dumazet 
28708ed67789SDaniel Lezcano 	net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
28718ed67789SDaniel Lezcano 					   sizeof(*net->ipv6.ip6_null_entry),
28728ed67789SDaniel Lezcano 					   GFP_KERNEL);
28738ed67789SDaniel Lezcano 	if (!net->ipv6.ip6_null_entry)
2874fc66f95cSEric Dumazet 		goto out_ip6_dst_entries;
2875d8d1f30bSChangli Gao 	net->ipv6.ip6_null_entry->dst.path =
28768ed67789SDaniel Lezcano 		(struct dst_entry *)net->ipv6.ip6_null_entry;
2877d8d1f30bSChangli Gao 	net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
287862fa8a84SDavid S. Miller 	dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
287962fa8a84SDavid S. Miller 			 ip6_template_metrics, true);
28808ed67789SDaniel Lezcano 
28818ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES
28828ed67789SDaniel Lezcano 	net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
28838ed67789SDaniel Lezcano 					       sizeof(*net->ipv6.ip6_prohibit_entry),
28848ed67789SDaniel Lezcano 					       GFP_KERNEL);
288568fffc67SPeter Zijlstra 	if (!net->ipv6.ip6_prohibit_entry)
288668fffc67SPeter Zijlstra 		goto out_ip6_null_entry;
2887d8d1f30bSChangli Gao 	net->ipv6.ip6_prohibit_entry->dst.path =
28888ed67789SDaniel Lezcano 		(struct dst_entry *)net->ipv6.ip6_prohibit_entry;
2889d8d1f30bSChangli Gao 	net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
289062fa8a84SDavid S. Miller 	dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
289162fa8a84SDavid S. Miller 			 ip6_template_metrics, true);
28928ed67789SDaniel Lezcano 
28938ed67789SDaniel Lezcano 	net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
28948ed67789SDaniel Lezcano 					       sizeof(*net->ipv6.ip6_blk_hole_entry),
28958ed67789SDaniel Lezcano 					       GFP_KERNEL);
289668fffc67SPeter Zijlstra 	if (!net->ipv6.ip6_blk_hole_entry)
289768fffc67SPeter Zijlstra 		goto out_ip6_prohibit_entry;
2898d8d1f30bSChangli Gao 	net->ipv6.ip6_blk_hole_entry->dst.path =
28998ed67789SDaniel Lezcano 		(struct dst_entry *)net->ipv6.ip6_blk_hole_entry;
2900d8d1f30bSChangli Gao 	net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
290162fa8a84SDavid S. Miller 	dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
290262fa8a84SDavid S. Miller 			 ip6_template_metrics, true);
29038ed67789SDaniel Lezcano #endif
29048ed67789SDaniel Lezcano 
2905b339a47cSPeter Zijlstra 	net->ipv6.sysctl.flush_delay = 0;
2906b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_max_size = 4096;
2907b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
2908b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
2909b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
2910b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
2911b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
2912b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
2913b339a47cSPeter Zijlstra 
29146891a346SBenjamin Thery 	net->ipv6.ip6_rt_gc_expire = 30*HZ;
29156891a346SBenjamin Thery 
29168ed67789SDaniel Lezcano 	ret = 0;
29178ed67789SDaniel Lezcano out:
29188ed67789SDaniel Lezcano 	return ret;
2919f2fc6a54SBenjamin Thery 
292068fffc67SPeter Zijlstra #ifdef CONFIG_IPV6_MULTIPLE_TABLES
292168fffc67SPeter Zijlstra out_ip6_prohibit_entry:
292268fffc67SPeter Zijlstra 	kfree(net->ipv6.ip6_prohibit_entry);
292368fffc67SPeter Zijlstra out_ip6_null_entry:
292468fffc67SPeter Zijlstra 	kfree(net->ipv6.ip6_null_entry);
292568fffc67SPeter Zijlstra #endif
2926fc66f95cSEric Dumazet out_ip6_dst_entries:
2927fc66f95cSEric Dumazet 	dst_entries_destroy(&net->ipv6.ip6_dst_ops);
2928f2fc6a54SBenjamin Thery out_ip6_dst_ops:
2929f2fc6a54SBenjamin Thery 	goto out;
2930cdb18761SDaniel Lezcano }
2931cdb18761SDaniel Lezcano 
29322c8c1e72SAlexey Dobriyan static void __net_exit ip6_route_net_exit(struct net *net)
2933cdb18761SDaniel Lezcano {
29348ed67789SDaniel Lezcano 	kfree(net->ipv6.ip6_null_entry);
29358ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES
29368ed67789SDaniel Lezcano 	kfree(net->ipv6.ip6_prohibit_entry);
29378ed67789SDaniel Lezcano 	kfree(net->ipv6.ip6_blk_hole_entry);
29388ed67789SDaniel Lezcano #endif
293941bb78b4SXiaotian Feng 	dst_entries_destroy(&net->ipv6.ip6_dst_ops);
2940cdb18761SDaniel Lezcano }
2941cdb18761SDaniel Lezcano 
2942d189634eSThomas Graf static int __net_init ip6_route_net_init_late(struct net *net)
2943d189634eSThomas Graf {
2944d189634eSThomas Graf #ifdef CONFIG_PROC_FS
2945d189634eSThomas Graf 	proc_net_fops_create(net, "ipv6_route", 0, &ipv6_route_proc_fops);
2946d189634eSThomas Graf 	proc_net_fops_create(net, "rt6_stats", S_IRUGO, &rt6_stats_seq_fops);
2947d189634eSThomas Graf #endif
2948d189634eSThomas Graf 	return 0;
2949d189634eSThomas Graf }
2950d189634eSThomas Graf 
2951d189634eSThomas Graf static void __net_exit ip6_route_net_exit_late(struct net *net)
2952d189634eSThomas Graf {
2953d189634eSThomas Graf #ifdef CONFIG_PROC_FS
2954d189634eSThomas Graf 	proc_net_remove(net, "ipv6_route");
2955d189634eSThomas Graf 	proc_net_remove(net, "rt6_stats");
2956d189634eSThomas Graf #endif
2957d189634eSThomas Graf }
2958d189634eSThomas Graf 
2959cdb18761SDaniel Lezcano static struct pernet_operations ip6_route_net_ops = {
2960cdb18761SDaniel Lezcano 	.init = ip6_route_net_init,
2961cdb18761SDaniel Lezcano 	.exit = ip6_route_net_exit,
2962cdb18761SDaniel Lezcano };
2963cdb18761SDaniel Lezcano 
2964c3426b47SDavid S. Miller static int __net_init ipv6_inetpeer_init(struct net *net)
2965c3426b47SDavid S. Miller {
2966c3426b47SDavid S. Miller 	struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
2967c3426b47SDavid S. Miller 
2968c3426b47SDavid S. Miller 	if (!bp)
2969c3426b47SDavid S. Miller 		return -ENOMEM;
2970c3426b47SDavid S. Miller 	inet_peer_base_init(bp);
2971c3426b47SDavid S. Miller 	net->ipv6.peers = bp;
2972c3426b47SDavid S. Miller 	return 0;
2973c3426b47SDavid S. Miller }
2974c3426b47SDavid S. Miller 
2975c3426b47SDavid S. Miller static void __net_exit ipv6_inetpeer_exit(struct net *net)
2976c3426b47SDavid S. Miller {
2977c3426b47SDavid S. Miller 	struct inet_peer_base *bp = net->ipv6.peers;
2978c3426b47SDavid S. Miller 
2979c3426b47SDavid S. Miller 	net->ipv6.peers = NULL;
298056a6b248SDavid S. Miller 	inetpeer_invalidate_tree(bp);
2981c3426b47SDavid S. Miller 	kfree(bp);
2982c3426b47SDavid S. Miller }
2983c3426b47SDavid S. Miller 
29842b823f72SDavid S. Miller static struct pernet_operations ipv6_inetpeer_ops = {
2985c3426b47SDavid S. Miller 	.init	=	ipv6_inetpeer_init,
2986c3426b47SDavid S. Miller 	.exit	=	ipv6_inetpeer_exit,
2987c3426b47SDavid S. Miller };
2988c3426b47SDavid S. Miller 
2989d189634eSThomas Graf static struct pernet_operations ip6_route_net_late_ops = {
2990d189634eSThomas Graf 	.init = ip6_route_net_init_late,
2991d189634eSThomas Graf 	.exit = ip6_route_net_exit_late,
2992d189634eSThomas Graf };
2993d189634eSThomas Graf 
29948ed67789SDaniel Lezcano static struct notifier_block ip6_route_dev_notifier = {
29958ed67789SDaniel Lezcano 	.notifier_call = ip6_route_dev_notify,
29968ed67789SDaniel Lezcano 	.priority = 0,
29978ed67789SDaniel Lezcano };
29988ed67789SDaniel Lezcano 
2999433d49c3SDaniel Lezcano int __init ip6_route_init(void)
30001da177e4SLinus Torvalds {
3001433d49c3SDaniel Lezcano 	int ret;
3002433d49c3SDaniel Lezcano 
30039a7ec3a9SDaniel Lezcano 	ret = -ENOMEM;
30049a7ec3a9SDaniel Lezcano 	ip6_dst_ops_template.kmem_cachep =
30059a7ec3a9SDaniel Lezcano 		kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
30069a7ec3a9SDaniel Lezcano 				  SLAB_HWCACHE_ALIGN, NULL);
30079a7ec3a9SDaniel Lezcano 	if (!ip6_dst_ops_template.kmem_cachep)
3008c19a28e1SFernando Carrijo 		goto out;
300914e50e57SDavid S. Miller 
3010fc66f95cSEric Dumazet 	ret = dst_entries_init(&ip6_dst_blackhole_ops);
30118ed67789SDaniel Lezcano 	if (ret)
3012bdb3289fSDaniel Lezcano 		goto out_kmem_cache;
3013bdb3289fSDaniel Lezcano 
3014c3426b47SDavid S. Miller 	ret = register_pernet_subsys(&ipv6_inetpeer_ops);
3015c3426b47SDavid S. Miller 	if (ret)
3016e8803b6cSDavid S. Miller 		goto out_dst_entries;
30172a0c451aSThomas Graf 
30187e52b33bSDavid S. Miller 	ret = register_pernet_subsys(&ip6_route_net_ops);
30197e52b33bSDavid S. Miller 	if (ret)
30207e52b33bSDavid S. Miller 		goto out_register_inetpeer;
3021c3426b47SDavid S. Miller 
30225dc121e9SArnaud Ebalard 	ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
30235dc121e9SArnaud Ebalard 
30248ed67789SDaniel Lezcano 	/* Registering of the loopback is done before this portion of code,
30258ed67789SDaniel Lezcano 	 * the loopback reference in rt6_info will not be taken, do it
30268ed67789SDaniel Lezcano 	 * manually for init_net */
3027d8d1f30bSChangli Gao 	init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
30288ed67789SDaniel Lezcano 	init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3029bdb3289fSDaniel Lezcano   #ifdef CONFIG_IPV6_MULTIPLE_TABLES
3030d8d1f30bSChangli Gao 	init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
30318ed67789SDaniel Lezcano 	init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3032d8d1f30bSChangli Gao 	init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
30338ed67789SDaniel Lezcano 	init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
3034bdb3289fSDaniel Lezcano   #endif
3035e8803b6cSDavid S. Miller 	ret = fib6_init();
3036433d49c3SDaniel Lezcano 	if (ret)
30378ed67789SDaniel Lezcano 		goto out_register_subsys;
3038433d49c3SDaniel Lezcano 
3039433d49c3SDaniel Lezcano 	ret = xfrm6_init();
3040433d49c3SDaniel Lezcano 	if (ret)
3041e8803b6cSDavid S. Miller 		goto out_fib6_init;
3042c35b7e72SDaniel Lezcano 
3043433d49c3SDaniel Lezcano 	ret = fib6_rules_init();
3044433d49c3SDaniel Lezcano 	if (ret)
3045433d49c3SDaniel Lezcano 		goto xfrm6_init;
30467e5449c2SDaniel Lezcano 
3047d189634eSThomas Graf 	ret = register_pernet_subsys(&ip6_route_net_late_ops);
3048d189634eSThomas Graf 	if (ret)
3049d189634eSThomas Graf 		goto fib6_rules_init;
3050d189634eSThomas Graf 
3051433d49c3SDaniel Lezcano 	ret = -ENOBUFS;
3052c7ac8679SGreg Rose 	if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) ||
3053c7ac8679SGreg Rose 	    __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) ||
3054c7ac8679SGreg Rose 	    __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL))
3055d189634eSThomas Graf 		goto out_register_late_subsys;
3056433d49c3SDaniel Lezcano 
30578ed67789SDaniel Lezcano 	ret = register_netdevice_notifier(&ip6_route_dev_notifier);
3058cdb18761SDaniel Lezcano 	if (ret)
3059d189634eSThomas Graf 		goto out_register_late_subsys;
30608ed67789SDaniel Lezcano 
3061433d49c3SDaniel Lezcano out:
3062433d49c3SDaniel Lezcano 	return ret;
3063433d49c3SDaniel Lezcano 
3064d189634eSThomas Graf out_register_late_subsys:
3065d189634eSThomas Graf 	unregister_pernet_subsys(&ip6_route_net_late_ops);
3066433d49c3SDaniel Lezcano fib6_rules_init:
3067433d49c3SDaniel Lezcano 	fib6_rules_cleanup();
3068433d49c3SDaniel Lezcano xfrm6_init:
3069433d49c3SDaniel Lezcano 	xfrm6_fini();
30702a0c451aSThomas Graf out_fib6_init:
30712a0c451aSThomas Graf 	fib6_gc_cleanup();
30728ed67789SDaniel Lezcano out_register_subsys:
30738ed67789SDaniel Lezcano 	unregister_pernet_subsys(&ip6_route_net_ops);
30747e52b33bSDavid S. Miller out_register_inetpeer:
30757e52b33bSDavid S. Miller 	unregister_pernet_subsys(&ipv6_inetpeer_ops);
3076fc66f95cSEric Dumazet out_dst_entries:
3077fc66f95cSEric Dumazet 	dst_entries_destroy(&ip6_dst_blackhole_ops);
3078433d49c3SDaniel Lezcano out_kmem_cache:
3079f2fc6a54SBenjamin Thery 	kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
3080433d49c3SDaniel Lezcano 	goto out;
30811da177e4SLinus Torvalds }
30821da177e4SLinus Torvalds 
30831da177e4SLinus Torvalds void ip6_route_cleanup(void)
30841da177e4SLinus Torvalds {
30858ed67789SDaniel Lezcano 	unregister_netdevice_notifier(&ip6_route_dev_notifier);
3086d189634eSThomas Graf 	unregister_pernet_subsys(&ip6_route_net_late_ops);
3087101367c2SThomas Graf 	fib6_rules_cleanup();
30881da177e4SLinus Torvalds 	xfrm6_fini();
30891da177e4SLinus Torvalds 	fib6_gc_cleanup();
3090c3426b47SDavid S. Miller 	unregister_pernet_subsys(&ipv6_inetpeer_ops);
30918ed67789SDaniel Lezcano 	unregister_pernet_subsys(&ip6_route_net_ops);
309241bb78b4SXiaotian Feng 	dst_entries_destroy(&ip6_dst_blackhole_ops);
3093f2fc6a54SBenjamin Thery 	kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
30941da177e4SLinus Torvalds }
3095