xref: /openbmc/linux/net/ipv6/route.c (revision aafc2e3285c2d7a79b7ee15221c19fbeca7b1509)
12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  *	Linux INET6 implementation
41da177e4SLinus Torvalds  *	FIB front-end.
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  *	Authors:
71da177e4SLinus Torvalds  *	Pedro Roque		<roque@di.fc.ul.pt>
81da177e4SLinus Torvalds  */
91da177e4SLinus Torvalds 
101da177e4SLinus Torvalds /*	Changes:
111da177e4SLinus Torvalds  *
121da177e4SLinus Torvalds  *	YOSHIFUJI Hideaki @USAGI
131da177e4SLinus Torvalds  *		reworked default router selection.
141da177e4SLinus Torvalds  *		- respect outgoing interface
151da177e4SLinus Torvalds  *		- select from (probably) reachable routers (i.e.
161da177e4SLinus Torvalds  *		routers in REACHABLE, STALE, DELAY or PROBE states).
171da177e4SLinus Torvalds  *		- always select the same router if it is (probably)
181da177e4SLinus Torvalds  *		reachable.  otherwise, round-robin the list.
19c0bece9fSYOSHIFUJI Hideaki  *	Ville Nuorvala
20c0bece9fSYOSHIFUJI Hideaki  *		Fixed routing subtrees.
211da177e4SLinus Torvalds  */
221da177e4SLinus Torvalds 
23f3213831SJoe Perches #define pr_fmt(fmt) "IPv6: " fmt
24f3213831SJoe Perches 
254fc268d2SRandy Dunlap #include <linux/capability.h>
261da177e4SLinus Torvalds #include <linux/errno.h>
27bc3b2d7fSPaul Gortmaker #include <linux/export.h>
281da177e4SLinus Torvalds #include <linux/types.h>
291da177e4SLinus Torvalds #include <linux/times.h>
301da177e4SLinus Torvalds #include <linux/socket.h>
311da177e4SLinus Torvalds #include <linux/sockios.h>
321da177e4SLinus Torvalds #include <linux/net.h>
331da177e4SLinus Torvalds #include <linux/route.h>
341da177e4SLinus Torvalds #include <linux/netdevice.h>
351da177e4SLinus Torvalds #include <linux/in6.h>
367bc570c8SYOSHIFUJI Hideaki #include <linux/mroute6.h>
371da177e4SLinus Torvalds #include <linux/init.h>
381da177e4SLinus Torvalds #include <linux/if_arp.h>
391da177e4SLinus Torvalds #include <linux/proc_fs.h>
401da177e4SLinus Torvalds #include <linux/seq_file.h>
415b7c931dSDaniel Lezcano #include <linux/nsproxy.h>
425a0e3ad6STejun Heo #include <linux/slab.h>
4335732d01SWei Wang #include <linux/jhash.h>
444785305cSEric Dumazet #include <linux/siphash.h>
45457c4cbcSEric W. Biederman #include <net/net_namespace.h>
461da177e4SLinus Torvalds #include <net/snmp.h>
471da177e4SLinus Torvalds #include <net/ipv6.h>
481da177e4SLinus Torvalds #include <net/ip6_fib.h>
491da177e4SLinus Torvalds #include <net/ip6_route.h>
501da177e4SLinus Torvalds #include <net/ndisc.h>
511da177e4SLinus Torvalds #include <net/addrconf.h>
521da177e4SLinus Torvalds #include <net/tcp.h>
531da177e4SLinus Torvalds #include <linux/rtnetlink.h>
541da177e4SLinus Torvalds #include <net/dst.h>
55904af04dSJiri Benc #include <net/dst_metadata.h>
561da177e4SLinus Torvalds #include <net/xfrm.h>
578d71740cSTom Tucker #include <net/netevent.h>
5821713ebcSThomas Graf #include <net/netlink.h>
593c618c1dSDavid Ahern #include <net/rtnh.h>
6019e42e45SRoopa Prabhu #include <net/lwtunnel.h>
61904af04dSJiri Benc #include <net/ip_tunnels.h>
62ca254490SDavid Ahern #include <net/l3mdev.h>
63eacb9384SRoopa Prabhu #include <net/ip.h>
647c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
65951cf368SYonghong Song #include <linux/btf_ids.h>
661da177e4SLinus Torvalds 
671da177e4SLinus Torvalds #ifdef CONFIG_SYSCTL
681da177e4SLinus Torvalds #include <linux/sysctl.h>
691da177e4SLinus Torvalds #endif
701da177e4SLinus Torvalds 
7130d444d3SDavid Ahern static int ip6_rt_type_to_error(u8 fib6_type);
7230d444d3SDavid Ahern 
7330d444d3SDavid Ahern #define CREATE_TRACE_POINTS
7430d444d3SDavid Ahern #include <trace/events/fib6.h>
7530d444d3SDavid Ahern EXPORT_TRACEPOINT_SYMBOL_GPL(fib6_table_lookup);
7630d444d3SDavid Ahern #undef CREATE_TRACE_POINTS
7730d444d3SDavid Ahern 
78afc154e9SHannes Frederic Sowa enum rt6_nud_state {
797e980569SJiri Benc 	RT6_NUD_FAIL_HARD = -3,
807e980569SJiri Benc 	RT6_NUD_FAIL_PROBE = -2,
817e980569SJiri Benc 	RT6_NUD_FAIL_DO_RR = -1,
82afc154e9SHannes Frederic Sowa 	RT6_NUD_SUCCEED = 1
83afc154e9SHannes Frederic Sowa };
84afc154e9SHannes Frederic Sowa 
85bbd807dfSBrian Vazquez INDIRECT_CALLABLE_SCOPE
86bbd807dfSBrian Vazquez struct dst_entry	*ip6_dst_check(struct dst_entry *dst, u32 cookie);
870dbaee3bSDavid S. Miller static unsigned int	 ip6_default_advmss(const struct dst_entry *dst);
88f67fbeaeSBrian Vazquez INDIRECT_CALLABLE_SCOPE
89f67fbeaeSBrian Vazquez unsigned int		ip6_mtu(const struct dst_entry *dst);
901da177e4SLinus Torvalds static struct dst_entry *ip6_negative_advice(struct dst_entry *);
911da177e4SLinus Torvalds static void		ip6_dst_destroy(struct dst_entry *);
921da177e4SLinus Torvalds static void		ip6_dst_ifdown(struct dst_entry *,
931da177e4SLinus Torvalds 				       struct net_device *dev, int how);
94569d3645SDaniel Lezcano static int		 ip6_dst_gc(struct dst_ops *ops);
951da177e4SLinus Torvalds 
961da177e4SLinus Torvalds static int		ip6_pkt_discard(struct sk_buff *skb);
97ede2059dSEric W. Biederman static int		ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb);
987150aedeSKamala R static int		ip6_pkt_prohibit(struct sk_buff *skb);
99ede2059dSEric W. Biederman static int		ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb);
1001da177e4SLinus Torvalds static void		ip6_link_failure(struct sk_buff *skb);
1016700c270SDavid S. Miller static void		ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
102bd085ef6SHangbin Liu 					   struct sk_buff *skb, u32 mtu,
103bd085ef6SHangbin Liu 					   bool confirm_neigh);
1046700c270SDavid S. Miller static void		rt6_do_redirect(struct dst_entry *dst, struct sock *sk,
1056700c270SDavid S. Miller 					struct sk_buff *skb);
106702cea56SDavid Ahern static int rt6_score_route(const struct fib6_nh *nh, u32 fib6_flags, int oif,
107702cea56SDavid Ahern 			   int strict);
108a1b7a1f0SDavid Ahern static size_t rt6_nlmsg_size(struct fib6_info *f6i);
109d4ead6b3SDavid Ahern static int rt6_fill_node(struct net *net, struct sk_buff *skb,
1108d1c802bSDavid Ahern 			 struct fib6_info *rt, struct dst_entry *dst,
111d4ead6b3SDavid Ahern 			 struct in6_addr *dest, struct in6_addr *src,
11216a16cd3SDavid Ahern 			 int iif, int type, u32 portid, u32 seq,
11316a16cd3SDavid Ahern 			 unsigned int flags);
1147e4b5128SDavid Ahern static struct rt6_info *rt6_find_cached_rt(const struct fib6_result *res,
115510e2cedSWei Wang 					   const struct in6_addr *daddr,
116510e2cedSWei Wang 					   const struct in6_addr *saddr);
1171da177e4SLinus Torvalds 
11870ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO
1198d1c802bSDavid Ahern static struct fib6_info *rt6_add_route_info(struct net *net,
120b71d1d42SEric Dumazet 					   const struct in6_addr *prefix, int prefixlen,
121830218c1SDavid Ahern 					   const struct in6_addr *gwaddr,
122830218c1SDavid Ahern 					   struct net_device *dev,
12395c96174SEric Dumazet 					   unsigned int pref);
1248d1c802bSDavid Ahern static struct fib6_info *rt6_get_route_info(struct net *net,
125b71d1d42SEric Dumazet 					   const struct in6_addr *prefix, int prefixlen,
126830218c1SDavid Ahern 					   const struct in6_addr *gwaddr,
127830218c1SDavid Ahern 					   struct net_device *dev);
12870ceb4f5SYOSHIFUJI Hideaki #endif
12970ceb4f5SYOSHIFUJI Hideaki 
1308d0b94afSMartin KaFai Lau struct uncached_list {
1318d0b94afSMartin KaFai Lau 	spinlock_t		lock;
1328d0b94afSMartin KaFai Lau 	struct list_head	head;
1338d0b94afSMartin KaFai Lau };
1348d0b94afSMartin KaFai Lau 
1358d0b94afSMartin KaFai Lau static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list);
1368d0b94afSMartin KaFai Lau 
137510c321bSXin Long void rt6_uncached_list_add(struct rt6_info *rt)
1388d0b94afSMartin KaFai Lau {
1398d0b94afSMartin KaFai Lau 	struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list);
1408d0b94afSMartin KaFai Lau 
1418d0b94afSMartin KaFai Lau 	rt->rt6i_uncached_list = ul;
1428d0b94afSMartin KaFai Lau 
1438d0b94afSMartin KaFai Lau 	spin_lock_bh(&ul->lock);
1448d0b94afSMartin KaFai Lau 	list_add_tail(&rt->rt6i_uncached, &ul->head);
1458d0b94afSMartin KaFai Lau 	spin_unlock_bh(&ul->lock);
1468d0b94afSMartin KaFai Lau }
1478d0b94afSMartin KaFai Lau 
148510c321bSXin Long void rt6_uncached_list_del(struct rt6_info *rt)
1498d0b94afSMartin KaFai Lau {
1508d0b94afSMartin KaFai Lau 	if (!list_empty(&rt->rt6i_uncached)) {
1518d0b94afSMartin KaFai Lau 		struct uncached_list *ul = rt->rt6i_uncached_list;
15281eb8447SWei Wang 		struct net *net = dev_net(rt->dst.dev);
1538d0b94afSMartin KaFai Lau 
1548d0b94afSMartin KaFai Lau 		spin_lock_bh(&ul->lock);
1558d0b94afSMartin KaFai Lau 		list_del(&rt->rt6i_uncached);
15681eb8447SWei Wang 		atomic_dec(&net->ipv6.rt6_stats->fib_rt_uncache);
1578d0b94afSMartin KaFai Lau 		spin_unlock_bh(&ul->lock);
1588d0b94afSMartin KaFai Lau 	}
1598d0b94afSMartin KaFai Lau }
1608d0b94afSMartin KaFai Lau 
1618d0b94afSMartin KaFai Lau static void rt6_uncached_list_flush_dev(struct net *net, struct net_device *dev)
1628d0b94afSMartin KaFai Lau {
1638d0b94afSMartin KaFai Lau 	struct net_device *loopback_dev = net->loopback_dev;
1648d0b94afSMartin KaFai Lau 	int cpu;
1658d0b94afSMartin KaFai Lau 
166e332bc67SEric W. Biederman 	if (dev == loopback_dev)
167e332bc67SEric W. Biederman 		return;
168e332bc67SEric W. Biederman 
1698d0b94afSMartin KaFai Lau 	for_each_possible_cpu(cpu) {
1708d0b94afSMartin KaFai Lau 		struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
1718d0b94afSMartin KaFai Lau 		struct rt6_info *rt;
1728d0b94afSMartin KaFai Lau 
1738d0b94afSMartin KaFai Lau 		spin_lock_bh(&ul->lock);
1748d0b94afSMartin KaFai Lau 		list_for_each_entry(rt, &ul->head, rt6i_uncached) {
1758d0b94afSMartin KaFai Lau 			struct inet6_dev *rt_idev = rt->rt6i_idev;
1768d0b94afSMartin KaFai Lau 			struct net_device *rt_dev = rt->dst.dev;
1778d0b94afSMartin KaFai Lau 
178e332bc67SEric W. Biederman 			if (rt_idev->dev == dev) {
1798d0b94afSMartin KaFai Lau 				rt->rt6i_idev = in6_dev_get(loopback_dev);
1808d0b94afSMartin KaFai Lau 				in6_dev_put(rt_idev);
1818d0b94afSMartin KaFai Lau 			}
1828d0b94afSMartin KaFai Lau 
183e332bc67SEric W. Biederman 			if (rt_dev == dev) {
1848d7017fdSMahesh Bandewar 				rt->dst.dev = blackhole_netdev;
1859038c320SEric Dumazet 				dev_replace_track(rt_dev, blackhole_netdev,
1869038c320SEric Dumazet 						  &rt->dst.dev_tracker,
1879038c320SEric Dumazet 						  GFP_ATOMIC);
1888d0b94afSMartin KaFai Lau 			}
1898d0b94afSMartin KaFai Lau 		}
1908d0b94afSMartin KaFai Lau 		spin_unlock_bh(&ul->lock);
1918d0b94afSMartin KaFai Lau 	}
1928d0b94afSMartin KaFai Lau }
1938d0b94afSMartin KaFai Lau 
194f8a1b43bSDavid Ahern static inline const void *choose_neigh_daddr(const struct in6_addr *p,
195f894cbf8SDavid S. Miller 					     struct sk_buff *skb,
196f894cbf8SDavid S. Miller 					     const void *daddr)
19739232973SDavid S. Miller {
198a7563f34SDavid S. Miller 	if (!ipv6_addr_any(p))
19939232973SDavid S. Miller 		return (const void *) p;
200f894cbf8SDavid S. Miller 	else if (skb)
201f894cbf8SDavid S. Miller 		return &ipv6_hdr(skb)->daddr;
20239232973SDavid S. Miller 	return daddr;
20339232973SDavid S. Miller }
20439232973SDavid S. Miller 
205f8a1b43bSDavid Ahern struct neighbour *ip6_neigh_lookup(const struct in6_addr *gw,
206f8a1b43bSDavid Ahern 				   struct net_device *dev,
207f894cbf8SDavid S. Miller 				   struct sk_buff *skb,
208f894cbf8SDavid S. Miller 				   const void *daddr)
209d3aaeb38SDavid S. Miller {
21039232973SDavid S. Miller 	struct neighbour *n;
21139232973SDavid S. Miller 
212f8a1b43bSDavid Ahern 	daddr = choose_neigh_daddr(gw, skb, daddr);
213f8a1b43bSDavid Ahern 	n = __ipv6_neigh_lookup(dev, daddr);
214f83c7790SDavid S. Miller 	if (n)
215f83c7790SDavid S. Miller 		return n;
2167adf3246SStefano Brivio 
2177adf3246SStefano Brivio 	n = neigh_create(&nd_tbl, daddr, dev);
2187adf3246SStefano Brivio 	return IS_ERR(n) ? NULL : n;
219f8a1b43bSDavid Ahern }
220f8a1b43bSDavid Ahern 
221f8a1b43bSDavid Ahern static struct neighbour *ip6_dst_neigh_lookup(const struct dst_entry *dst,
222f8a1b43bSDavid Ahern 					      struct sk_buff *skb,
223f8a1b43bSDavid Ahern 					      const void *daddr)
224f8a1b43bSDavid Ahern {
225f8a1b43bSDavid Ahern 	const struct rt6_info *rt = container_of(dst, struct rt6_info, dst);
226f8a1b43bSDavid Ahern 
2272c6b55f4SNicolas Dichtel 	return ip6_neigh_lookup(rt6_nexthop(rt, &in6addr_any),
2282c6b55f4SNicolas Dichtel 				dst->dev, skb, daddr);
229f83c7790SDavid S. Miller }
230f83c7790SDavid S. Miller 
23163fca65dSJulian Anastasov static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr)
23263fca65dSJulian Anastasov {
23363fca65dSJulian Anastasov 	struct net_device *dev = dst->dev;
23463fca65dSJulian Anastasov 	struct rt6_info *rt = (struct rt6_info *)dst;
23563fca65dSJulian Anastasov 
236cbfd6891SStefano Brivio 	daddr = choose_neigh_daddr(rt6_nexthop(rt, &in6addr_any), NULL, daddr);
23763fca65dSJulian Anastasov 	if (!daddr)
23863fca65dSJulian Anastasov 		return;
23963fca65dSJulian Anastasov 	if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
24063fca65dSJulian Anastasov 		return;
24163fca65dSJulian Anastasov 	if (ipv6_addr_is_multicast((const struct in6_addr *)daddr))
24263fca65dSJulian Anastasov 		return;
24363fca65dSJulian Anastasov 	__ipv6_confirm_neigh(dev, daddr);
24463fca65dSJulian Anastasov }
24563fca65dSJulian Anastasov 
2469a7ec3a9SDaniel Lezcano static struct dst_ops ip6_dst_ops_template = {
2471da177e4SLinus Torvalds 	.family			=	AF_INET6,
2481da177e4SLinus Torvalds 	.gc			=	ip6_dst_gc,
2491da177e4SLinus Torvalds 	.gc_thresh		=	1024,
2501da177e4SLinus Torvalds 	.check			=	ip6_dst_check,
2510dbaee3bSDavid S. Miller 	.default_advmss		=	ip6_default_advmss,
252ebb762f2SSteffen Klassert 	.mtu			=	ip6_mtu,
253d4ead6b3SDavid Ahern 	.cow_metrics		=	dst_cow_metrics_generic,
2541da177e4SLinus Torvalds 	.destroy		=	ip6_dst_destroy,
2551da177e4SLinus Torvalds 	.ifdown			=	ip6_dst_ifdown,
2561da177e4SLinus Torvalds 	.negative_advice	=	ip6_negative_advice,
2571da177e4SLinus Torvalds 	.link_failure		=	ip6_link_failure,
2581da177e4SLinus Torvalds 	.update_pmtu		=	ip6_rt_update_pmtu,
2596e157b6aSDavid S. Miller 	.redirect		=	rt6_do_redirect,
2609f8955ccSEric W. Biederman 	.local_out		=	__ip6_local_out,
261f8a1b43bSDavid Ahern 	.neigh_lookup		=	ip6_dst_neigh_lookup,
26263fca65dSJulian Anastasov 	.confirm_neigh		=	ip6_confirm_neigh,
2631da177e4SLinus Torvalds };
2641da177e4SLinus Torvalds 
26514e50e57SDavid S. Miller static struct dst_ops ip6_dst_blackhole_ops = {
26614e50e57SDavid S. Miller 	.family			= AF_INET6,
267214f45c9SEric Dumazet 	.default_advmss		= ip6_default_advmss,
268f8a1b43bSDavid Ahern 	.neigh_lookup		= ip6_dst_neigh_lookup,
269c4c877b2SDaniel Borkmann 	.check			= ip6_dst_check,
270c4c877b2SDaniel Borkmann 	.destroy		= ip6_dst_destroy,
271c4c877b2SDaniel Borkmann 	.cow_metrics		= dst_cow_metrics_generic,
272c4c877b2SDaniel Borkmann 	.update_pmtu		= dst_blackhole_update_pmtu,
273c4c877b2SDaniel Borkmann 	.redirect		= dst_blackhole_redirect,
274c4c877b2SDaniel Borkmann 	.mtu			= dst_blackhole_mtu,
27514e50e57SDavid S. Miller };
27614e50e57SDavid S. Miller 
27762fa8a84SDavid S. Miller static const u32 ip6_template_metrics[RTAX_MAX] = {
27814edd87dSLi RongQing 	[RTAX_HOPLIMIT - 1] = 0,
27962fa8a84SDavid S. Miller };
28062fa8a84SDavid S. Miller 
2818d1c802bSDavid Ahern static const struct fib6_info fib6_null_entry_template = {
28293c2fb25SDavid Ahern 	.fib6_flags	= (RTF_REJECT | RTF_NONEXTHOP),
28393c2fb25SDavid Ahern 	.fib6_protocol  = RTPROT_KERNEL,
28493c2fb25SDavid Ahern 	.fib6_metric	= ~(u32)0,
285f05713e0SEric Dumazet 	.fib6_ref	= REFCOUNT_INIT(1),
286421842edSDavid Ahern 	.fib6_type	= RTN_UNREACHABLE,
287421842edSDavid Ahern 	.fib6_metrics	= (struct dst_metrics *)&dst_default_metrics,
288421842edSDavid Ahern };
289421842edSDavid Ahern 
290fb0af4c7SEric Dumazet static const struct rt6_info ip6_null_entry_template = {
2911da177e4SLinus Torvalds 	.dst = {
2921da177e4SLinus Torvalds 		.__refcnt	= ATOMIC_INIT(1),
2931da177e4SLinus Torvalds 		.__use		= 1,
2942c20cbd7SNicolas Dichtel 		.obsolete	= DST_OBSOLETE_FORCE_CHK,
2951da177e4SLinus Torvalds 		.error		= -ENETUNREACH,
2961da177e4SLinus Torvalds 		.input		= ip6_pkt_discard,
2971da177e4SLinus Torvalds 		.output		= ip6_pkt_discard_out,
2981da177e4SLinus Torvalds 	},
2991da177e4SLinus Torvalds 	.rt6i_flags	= (RTF_REJECT | RTF_NONEXTHOP),
3001da177e4SLinus Torvalds };
3011da177e4SLinus Torvalds 
302101367c2SThomas Graf #ifdef CONFIG_IPV6_MULTIPLE_TABLES
303101367c2SThomas Graf 
304fb0af4c7SEric Dumazet static const struct rt6_info ip6_prohibit_entry_template = {
305101367c2SThomas Graf 	.dst = {
306101367c2SThomas Graf 		.__refcnt	= ATOMIC_INIT(1),
307101367c2SThomas Graf 		.__use		= 1,
3082c20cbd7SNicolas Dichtel 		.obsolete	= DST_OBSOLETE_FORCE_CHK,
309101367c2SThomas Graf 		.error		= -EACCES,
3109ce8ade0SThomas Graf 		.input		= ip6_pkt_prohibit,
3119ce8ade0SThomas Graf 		.output		= ip6_pkt_prohibit_out,
312101367c2SThomas Graf 	},
313101367c2SThomas Graf 	.rt6i_flags	= (RTF_REJECT | RTF_NONEXTHOP),
314101367c2SThomas Graf };
315101367c2SThomas Graf 
316fb0af4c7SEric Dumazet static const struct rt6_info ip6_blk_hole_entry_template = {
317101367c2SThomas Graf 	.dst = {
318101367c2SThomas Graf 		.__refcnt	= ATOMIC_INIT(1),
319101367c2SThomas Graf 		.__use		= 1,
3202c20cbd7SNicolas Dichtel 		.obsolete	= DST_OBSOLETE_FORCE_CHK,
321101367c2SThomas Graf 		.error		= -EINVAL,
322352e512cSHerbert Xu 		.input		= dst_discard,
323ede2059dSEric W. Biederman 		.output		= dst_discard_out,
324101367c2SThomas Graf 	},
325101367c2SThomas Graf 	.rt6i_flags	= (RTF_REJECT | RTF_NONEXTHOP),
326101367c2SThomas Graf };
327101367c2SThomas Graf 
328101367c2SThomas Graf #endif
329101367c2SThomas Graf 
330ebfa45f0SMartin KaFai Lau static void rt6_info_init(struct rt6_info *rt)
331ebfa45f0SMartin KaFai Lau {
3328f2a83b4SKees Cook 	memset_after(rt, 0, dst);
333ebfa45f0SMartin KaFai Lau 	INIT_LIST_HEAD(&rt->rt6i_uncached);
334ebfa45f0SMartin KaFai Lau }
335ebfa45f0SMartin KaFai Lau 
3361da177e4SLinus Torvalds /* allocate dst with ip6_dst_ops */
33793531c67SDavid Ahern struct rt6_info *ip6_dst_alloc(struct net *net, struct net_device *dev,
338ad706862SMartin KaFai Lau 			       int flags)
3391da177e4SLinus Torvalds {
34097bab73fSDavid S. Miller 	struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev,
341b2a9c0edSWei Wang 					1, DST_OBSOLETE_FORCE_CHK, flags);
342cf911662SDavid S. Miller 
34381eb8447SWei Wang 	if (rt) {
344ebfa45f0SMartin KaFai Lau 		rt6_info_init(rt);
34581eb8447SWei Wang 		atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc);
34681eb8447SWei Wang 	}
3478104891bSSteffen Klassert 
348cf911662SDavid S. Miller 	return rt;
3491da177e4SLinus Torvalds }
3509ab179d8SDavid Ahern EXPORT_SYMBOL(ip6_dst_alloc);
351d52d3997SMartin KaFai Lau 
3521da177e4SLinus Torvalds static void ip6_dst_destroy(struct dst_entry *dst)
3531da177e4SLinus Torvalds {
3541da177e4SLinus Torvalds 	struct rt6_info *rt = (struct rt6_info *)dst;
355a68886a6SDavid Ahern 	struct fib6_info *from;
3568d0b94afSMartin KaFai Lau 	struct inet6_dev *idev;
3571da177e4SLinus Torvalds 
3581620a336SDavid Ahern 	ip_dst_metrics_put(dst);
3598d0b94afSMartin KaFai Lau 	rt6_uncached_list_del(rt);
3608d0b94afSMartin KaFai Lau 
3618d0b94afSMartin KaFai Lau 	idev = rt->rt6i_idev;
36238308473SDavid S. Miller 	if (idev) {
3631da177e4SLinus Torvalds 		rt->rt6i_idev = NULL;
3641da177e4SLinus Torvalds 		in6_dev_put(idev);
3651da177e4SLinus Torvalds 	}
3661716a961SGao feng 
3670e233874SEric Dumazet 	from = xchg((__force struct fib6_info **)&rt->from, NULL);
36893531c67SDavid Ahern 	fib6_info_release(from);
369b3419363SDavid S. Miller }
370b3419363SDavid S. Miller 
3711da177e4SLinus Torvalds static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
3721da177e4SLinus Torvalds 			   int how)
3731da177e4SLinus Torvalds {
3741da177e4SLinus Torvalds 	struct rt6_info *rt = (struct rt6_info *)dst;
3751da177e4SLinus Torvalds 	struct inet6_dev *idev = rt->rt6i_idev;
3765a3e55d6SDenis V. Lunev 	struct net_device *loopback_dev =
377c346dca1SYOSHIFUJI Hideaki 		dev_net(dev)->loopback_dev;
3781da177e4SLinus Torvalds 
379e5645f51SWei Wang 	if (idev && idev->dev != loopback_dev) {
380e5645f51SWei Wang 		struct inet6_dev *loopback_idev = in6_dev_get(loopback_dev);
38138308473SDavid S. Miller 		if (loopback_idev) {
3821da177e4SLinus Torvalds 			rt->rt6i_idev = loopback_idev;
3831da177e4SLinus Torvalds 			in6_dev_put(idev);
3841da177e4SLinus Torvalds 		}
3851da177e4SLinus Torvalds 	}
38697cac082SDavid S. Miller }
3871da177e4SLinus Torvalds 
3885973fb1eSMartin KaFai Lau static bool __rt6_check_expired(const struct rt6_info *rt)
3895973fb1eSMartin KaFai Lau {
3905973fb1eSMartin KaFai Lau 	if (rt->rt6i_flags & RTF_EXPIRES)
3915973fb1eSMartin KaFai Lau 		return time_after(jiffies, rt->dst.expires);
3925973fb1eSMartin KaFai Lau 	else
3935973fb1eSMartin KaFai Lau 		return false;
3945973fb1eSMartin KaFai Lau }
3955973fb1eSMartin KaFai Lau 
396a50feda5SEric Dumazet static bool rt6_check_expired(const struct rt6_info *rt)
3971da177e4SLinus Torvalds {
398a68886a6SDavid Ahern 	struct fib6_info *from;
399a68886a6SDavid Ahern 
400a68886a6SDavid Ahern 	from = rcu_dereference(rt->from);
401a68886a6SDavid Ahern 
4021716a961SGao feng 	if (rt->rt6i_flags & RTF_EXPIRES) {
4031716a961SGao feng 		if (time_after(jiffies, rt->dst.expires))
404a50feda5SEric Dumazet 			return true;
405a68886a6SDavid Ahern 	} else if (from) {
4061e2ea8adSXin Long 		return rt->dst.obsolete != DST_OBSOLETE_FORCE_CHK ||
407a68886a6SDavid Ahern 			fib6_check_expired(from);
4081716a961SGao feng 	}
409a50feda5SEric Dumazet 	return false;
4101da177e4SLinus Torvalds }
4111da177e4SLinus Torvalds 
412b1d40991SDavid Ahern void fib6_select_path(const struct net *net, struct fib6_result *res,
413b1d40991SDavid Ahern 		      struct flowi6 *fl6, int oif, bool have_oif_match,
414b1d40991SDavid Ahern 		      const struct sk_buff *skb, int strict)
41551ebd318SNicolas Dichtel {
4168d1c802bSDavid Ahern 	struct fib6_info *sibling, *next_sibling;
417b1d40991SDavid Ahern 	struct fib6_info *match = res->f6i;
418b1d40991SDavid Ahern 
41934fe5a1cSDavid Ahern 	if (!match->nh && (!match->fib6_nsiblings || have_oif_match))
420b1d40991SDavid Ahern 		goto out;
42151ebd318SNicolas Dichtel 
42234fe5a1cSDavid Ahern 	if (match->nh && have_oif_match && res->nh)
42334fe5a1cSDavid Ahern 		return;
42434fe5a1cSDavid Ahern 
425b673d6ccSJakub Sitnicki 	/* We might have already computed the hash for ICMPv6 errors. In such
426b673d6ccSJakub Sitnicki 	 * case it will always be non-zero. Otherwise now is the time to do it.
427b673d6ccSJakub Sitnicki 	 */
428f88d8ea6SDavid Ahern 	if (!fl6->mp_hash &&
429f88d8ea6SDavid Ahern 	    (!match->nh || nexthop_is_multipath(match->nh)))
430b4bac172SDavid Ahern 		fl6->mp_hash = rt6_multipath_hash(net, fl6, skb, NULL);
431b673d6ccSJakub Sitnicki 
432f88d8ea6SDavid Ahern 	if (unlikely(match->nh)) {
433f88d8ea6SDavid Ahern 		nexthop_path_fib6_result(res, fl6->mp_hash);
434f88d8ea6SDavid Ahern 		return;
435f88d8ea6SDavid Ahern 	}
436f88d8ea6SDavid Ahern 
4371cf844c7SDavid Ahern 	if (fl6->mp_hash <= atomic_read(&match->fib6_nh->fib_nh_upper_bound))
438b1d40991SDavid Ahern 		goto out;
439bbfcd776SIdo Schimmel 
44093c2fb25SDavid Ahern 	list_for_each_entry_safe(sibling, next_sibling, &match->fib6_siblings,
44193c2fb25SDavid Ahern 				 fib6_siblings) {
4421cf844c7SDavid Ahern 		const struct fib6_nh *nh = sibling->fib6_nh;
4435e670d84SDavid Ahern 		int nh_upper_bound;
4445e670d84SDavid Ahern 
445702cea56SDavid Ahern 		nh_upper_bound = atomic_read(&nh->fib_nh_upper_bound);
4465e670d84SDavid Ahern 		if (fl6->mp_hash > nh_upper_bound)
4473d709f69SIdo Schimmel 			continue;
448702cea56SDavid Ahern 		if (rt6_score_route(nh, sibling->fib6_flags, oif, strict) < 0)
44952bd4c0cSNicolas Dichtel 			break;
45051ebd318SNicolas Dichtel 		match = sibling;
45151ebd318SNicolas Dichtel 		break;
45251ebd318SNicolas Dichtel 	}
4533d709f69SIdo Schimmel 
454b1d40991SDavid Ahern out:
455b1d40991SDavid Ahern 	res->f6i = match;
4561cf844c7SDavid Ahern 	res->nh = match->fib6_nh;
45751ebd318SNicolas Dichtel }
45851ebd318SNicolas Dichtel 
4591da177e4SLinus Torvalds /*
46066f5d6ceSWei Wang  *	Route lookup. rcu_read_lock() should be held.
4611da177e4SLinus Torvalds  */
4621da177e4SLinus Torvalds 
4630c59d006SDavid Ahern static bool __rt6_device_match(struct net *net, const struct fib6_nh *nh,
4640c59d006SDavid Ahern 			       const struct in6_addr *saddr, int oif, int flags)
4650c59d006SDavid Ahern {
4660c59d006SDavid Ahern 	const struct net_device *dev;
4670c59d006SDavid Ahern 
4680c59d006SDavid Ahern 	if (nh->fib_nh_flags & RTNH_F_DEAD)
4690c59d006SDavid Ahern 		return false;
4700c59d006SDavid Ahern 
4710c59d006SDavid Ahern 	dev = nh->fib_nh_dev;
4720c59d006SDavid Ahern 	if (oif) {
4730c59d006SDavid Ahern 		if (dev->ifindex == oif)
4740c59d006SDavid Ahern 			return true;
4750c59d006SDavid Ahern 	} else {
4760c59d006SDavid Ahern 		if (ipv6_chk_addr(net, saddr, dev,
4770c59d006SDavid Ahern 				  flags & RT6_LOOKUP_F_IFACE))
4780c59d006SDavid Ahern 			return true;
4790c59d006SDavid Ahern 	}
4800c59d006SDavid Ahern 
4810c59d006SDavid Ahern 	return false;
4820c59d006SDavid Ahern }
4830c59d006SDavid Ahern 
484962b6803SDavid Ahern struct fib6_nh_dm_arg {
485962b6803SDavid Ahern 	struct net		*net;
486962b6803SDavid Ahern 	const struct in6_addr	*saddr;
487962b6803SDavid Ahern 	int			oif;
488962b6803SDavid Ahern 	int			flags;
489962b6803SDavid Ahern 	struct fib6_nh		*nh;
490962b6803SDavid Ahern };
491962b6803SDavid Ahern 
492962b6803SDavid Ahern static int __rt6_nh_dev_match(struct fib6_nh *nh, void *_arg)
493962b6803SDavid Ahern {
494962b6803SDavid Ahern 	struct fib6_nh_dm_arg *arg = _arg;
495962b6803SDavid Ahern 
496962b6803SDavid Ahern 	arg->nh = nh;
497962b6803SDavid Ahern 	return __rt6_device_match(arg->net, nh, arg->saddr, arg->oif,
498962b6803SDavid Ahern 				  arg->flags);
499962b6803SDavid Ahern }
500962b6803SDavid Ahern 
501962b6803SDavid Ahern /* returns fib6_nh from nexthop or NULL */
502962b6803SDavid Ahern static struct fib6_nh *rt6_nh_dev_match(struct net *net, struct nexthop *nh,
503962b6803SDavid Ahern 					struct fib6_result *res,
504962b6803SDavid Ahern 					const struct in6_addr *saddr,
505962b6803SDavid Ahern 					int oif, int flags)
506962b6803SDavid Ahern {
507962b6803SDavid Ahern 	struct fib6_nh_dm_arg arg = {
508962b6803SDavid Ahern 		.net   = net,
509962b6803SDavid Ahern 		.saddr = saddr,
510962b6803SDavid Ahern 		.oif   = oif,
511962b6803SDavid Ahern 		.flags = flags,
512962b6803SDavid Ahern 	};
513962b6803SDavid Ahern 
514962b6803SDavid Ahern 	if (nexthop_is_blackhole(nh))
515962b6803SDavid Ahern 		return NULL;
516962b6803SDavid Ahern 
517962b6803SDavid Ahern 	if (nexthop_for_each_fib6_nh(nh, __rt6_nh_dev_match, &arg))
518962b6803SDavid Ahern 		return arg.nh;
519962b6803SDavid Ahern 
520962b6803SDavid Ahern 	return NULL;
521962b6803SDavid Ahern }
522962b6803SDavid Ahern 
52375ef7389SDavid Ahern static void rt6_device_match(struct net *net, struct fib6_result *res,
52475ef7389SDavid Ahern 			     const struct in6_addr *saddr, int oif, int flags)
5251da177e4SLinus Torvalds {
52675ef7389SDavid Ahern 	struct fib6_info *f6i = res->f6i;
52775ef7389SDavid Ahern 	struct fib6_info *spf6i;
52875ef7389SDavid Ahern 	struct fib6_nh *nh;
5291da177e4SLinus Torvalds 
53075ef7389SDavid Ahern 	if (!oif && ipv6_addr_any(saddr)) {
531f88d8ea6SDavid Ahern 		if (unlikely(f6i->nh)) {
532f88d8ea6SDavid Ahern 			nh = nexthop_fib6_nh(f6i->nh);
533f88d8ea6SDavid Ahern 			if (nexthop_is_blackhole(f6i->nh))
534f88d8ea6SDavid Ahern 				goto out_blackhole;
535f88d8ea6SDavid Ahern 		} else {
5361cf844c7SDavid Ahern 			nh = f6i->fib6_nh;
537f88d8ea6SDavid Ahern 		}
5387d21fec9SDavid Ahern 		if (!(nh->fib_nh_flags & RTNH_F_DEAD))
5397d21fec9SDavid Ahern 			goto out;
5401da177e4SLinus Torvalds 	}
5411da177e4SLinus Torvalds 
54275ef7389SDavid Ahern 	for (spf6i = f6i; spf6i; spf6i = rcu_dereference(spf6i->fib6_next)) {
543962b6803SDavid Ahern 		bool matched = false;
544962b6803SDavid Ahern 
545962b6803SDavid Ahern 		if (unlikely(spf6i->nh)) {
546962b6803SDavid Ahern 			nh = rt6_nh_dev_match(net, spf6i->nh, res, saddr,
547962b6803SDavid Ahern 					      oif, flags);
548962b6803SDavid Ahern 			if (nh)
549962b6803SDavid Ahern 				matched = true;
550962b6803SDavid Ahern 		} else {
5511cf844c7SDavid Ahern 			nh = spf6i->fib6_nh;
552962b6803SDavid Ahern 			if (__rt6_device_match(net, nh, saddr, oif, flags))
553962b6803SDavid Ahern 				matched = true;
554962b6803SDavid Ahern 		}
555962b6803SDavid Ahern 		if (matched) {
55675ef7389SDavid Ahern 			res->f6i = spf6i;
5577d21fec9SDavid Ahern 			goto out;
55875ef7389SDavid Ahern 		}
55975ef7389SDavid Ahern 	}
5601da177e4SLinus Torvalds 
56175ef7389SDavid Ahern 	if (oif && flags & RT6_LOOKUP_F_IFACE) {
56275ef7389SDavid Ahern 		res->f6i = net->ipv6.fib6_null_entry;
5631cf844c7SDavid Ahern 		nh = res->f6i->fib6_nh;
5647d21fec9SDavid Ahern 		goto out;
56575ef7389SDavid Ahern 	}
56675ef7389SDavid Ahern 
567f88d8ea6SDavid Ahern 	if (unlikely(f6i->nh)) {
568f88d8ea6SDavid Ahern 		nh = nexthop_fib6_nh(f6i->nh);
569f88d8ea6SDavid Ahern 		if (nexthop_is_blackhole(f6i->nh))
570f88d8ea6SDavid Ahern 			goto out_blackhole;
571f88d8ea6SDavid Ahern 	} else {
5721cf844c7SDavid Ahern 		nh = f6i->fib6_nh;
573f88d8ea6SDavid Ahern 	}
574f88d8ea6SDavid Ahern 
5757d21fec9SDavid Ahern 	if (nh->fib_nh_flags & RTNH_F_DEAD) {
57675ef7389SDavid Ahern 		res->f6i = net->ipv6.fib6_null_entry;
5771cf844c7SDavid Ahern 		nh = res->f6i->fib6_nh;
57875ef7389SDavid Ahern 	}
5797d21fec9SDavid Ahern out:
5807d21fec9SDavid Ahern 	res->nh = nh;
5817d21fec9SDavid Ahern 	res->fib6_type = res->f6i->fib6_type;
5827d21fec9SDavid Ahern 	res->fib6_flags = res->f6i->fib6_flags;
583f88d8ea6SDavid Ahern 	return;
584f88d8ea6SDavid Ahern 
585f88d8ea6SDavid Ahern out_blackhole:
586f88d8ea6SDavid Ahern 	res->fib6_flags |= RTF_REJECT;
587f88d8ea6SDavid Ahern 	res->fib6_type = RTN_BLACKHOLE;
588f88d8ea6SDavid Ahern 	res->nh = nh;
5891da177e4SLinus Torvalds }
5901da177e4SLinus Torvalds 
59127097255SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF
592c2f17e82SHannes Frederic Sowa struct __rt6_probe_work {
593c2f17e82SHannes Frederic Sowa 	struct work_struct work;
594c2f17e82SHannes Frederic Sowa 	struct in6_addr target;
595c2f17e82SHannes Frederic Sowa 	struct net_device *dev;
596fb67510bSEric Dumazet 	netdevice_tracker dev_tracker;
597c2f17e82SHannes Frederic Sowa };
598c2f17e82SHannes Frederic Sowa 
599c2f17e82SHannes Frederic Sowa static void rt6_probe_deferred(struct work_struct *w)
600c2f17e82SHannes Frederic Sowa {
601c2f17e82SHannes Frederic Sowa 	struct in6_addr mcaddr;
602c2f17e82SHannes Frederic Sowa 	struct __rt6_probe_work *work =
603c2f17e82SHannes Frederic Sowa 		container_of(w, struct __rt6_probe_work, work);
604c2f17e82SHannes Frederic Sowa 
605c2f17e82SHannes Frederic Sowa 	addrconf_addr_solict_mult(&work->target, &mcaddr);
606adc176c5SErik Nordmark 	ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0);
607fb67510bSEric Dumazet 	dev_put_track(work->dev, &work->dev_tracker);
608662f5533SMichael Büsch 	kfree(work);
609c2f17e82SHannes Frederic Sowa }
610c2f17e82SHannes Frederic Sowa 
611cc3a86c8SDavid Ahern static void rt6_probe(struct fib6_nh *fib6_nh)
61227097255SYOSHIFUJI Hideaki {
613f547fac6SSabrina Dubroca 	struct __rt6_probe_work *work = NULL;
6145e670d84SDavid Ahern 	const struct in6_addr *nh_gw;
6151bef4c22SEric Dumazet 	unsigned long last_probe;
616f2c31e32SEric Dumazet 	struct neighbour *neigh;
6175e670d84SDavid Ahern 	struct net_device *dev;
618f547fac6SSabrina Dubroca 	struct inet6_dev *idev;
6195e670d84SDavid Ahern 
62027097255SYOSHIFUJI Hideaki 	/*
62127097255SYOSHIFUJI Hideaki 	 * Okay, this does not seem to be appropriate
62227097255SYOSHIFUJI Hideaki 	 * for now, however, we need to check if it
62327097255SYOSHIFUJI Hideaki 	 * is really so; aka Router Reachability Probing.
62427097255SYOSHIFUJI Hideaki 	 *
62527097255SYOSHIFUJI Hideaki 	 * Router Reachability Probe MUST be rate-limited
62627097255SYOSHIFUJI Hideaki 	 * to no more than one per minute.
62727097255SYOSHIFUJI Hideaki 	 */
628004b3942SHangbin Liu 	if (!fib6_nh->fib_nh_gw_family)
629fdd6681dSAmerigo Wang 		return;
6305e670d84SDavid Ahern 
631cc3a86c8SDavid Ahern 	nh_gw = &fib6_nh->fib_nh_gw6;
632cc3a86c8SDavid Ahern 	dev = fib6_nh->fib_nh_dev;
6332152caeaSYOSHIFUJI Hideaki / 吉藤英明 	rcu_read_lock_bh();
6341bef4c22SEric Dumazet 	last_probe = READ_ONCE(fib6_nh->last_probe);
635f547fac6SSabrina Dubroca 	idev = __in6_dev_get(dev);
6365e670d84SDavid Ahern 	neigh = __ipv6_neigh_lookup_noref(dev, nh_gw);
6372152caeaSYOSHIFUJI Hideaki / 吉藤英明 	if (neigh) {
6388d6c31bfSMartin KaFai Lau 		if (neigh->nud_state & NUD_VALID)
6398d6c31bfSMartin KaFai Lau 			goto out;
6408d6c31bfSMartin KaFai Lau 
6412152caeaSYOSHIFUJI Hideaki / 吉藤英明 		write_lock(&neigh->lock);
642990edb42SMartin KaFai Lau 		if (!(neigh->nud_state & NUD_VALID) &&
643990edb42SMartin KaFai Lau 		    time_after(jiffies,
644dcd1f572SDavid Ahern 			       neigh->updated + idev->cnf.rtr_probe_interval)) {
645c2f17e82SHannes Frederic Sowa 			work = kmalloc(sizeof(*work), GFP_ATOMIC);
646990edb42SMartin KaFai Lau 			if (work)
6477e980569SJiri Benc 				__neigh_set_probe_once(neigh);
648990edb42SMartin KaFai Lau 		}
649c2f17e82SHannes Frederic Sowa 		write_unlock(&neigh->lock);
6501bef4c22SEric Dumazet 	} else if (time_after(jiffies, last_probe +
651f547fac6SSabrina Dubroca 				       idev->cnf.rtr_probe_interval)) {
652990edb42SMartin KaFai Lau 		work = kmalloc(sizeof(*work), GFP_ATOMIC);
653990edb42SMartin KaFai Lau 	}
654c2f17e82SHannes Frederic Sowa 
6551bef4c22SEric Dumazet 	if (!work || cmpxchg(&fib6_nh->last_probe,
6561bef4c22SEric Dumazet 			     last_probe, jiffies) != last_probe) {
6571bef4c22SEric Dumazet 		kfree(work);
6581bef4c22SEric Dumazet 	} else {
659c2f17e82SHannes Frederic Sowa 		INIT_WORK(&work->work, rt6_probe_deferred);
6605e670d84SDavid Ahern 		work->target = *nh_gw;
6618b40a9d5SEric Dumazet 		dev_hold_track(dev, &work->dev_tracker, GFP_ATOMIC);
6625e670d84SDavid Ahern 		work->dev = dev;
663c2f17e82SHannes Frederic Sowa 		schedule_work(&work->work);
664c2f17e82SHannes Frederic Sowa 	}
665990edb42SMartin KaFai Lau 
6668d6c31bfSMartin KaFai Lau out:
6672152caeaSYOSHIFUJI Hideaki / 吉藤英明 	rcu_read_unlock_bh();
668f2c31e32SEric Dumazet }
66927097255SYOSHIFUJI Hideaki #else
670cc3a86c8SDavid Ahern static inline void rt6_probe(struct fib6_nh *fib6_nh)
67127097255SYOSHIFUJI Hideaki {
67227097255SYOSHIFUJI Hideaki }
67327097255SYOSHIFUJI Hideaki #endif
67427097255SYOSHIFUJI Hideaki 
6751da177e4SLinus Torvalds /*
676554cfb7eSYOSHIFUJI Hideaki  * Default Router Selection (RFC 2461 6.3.6)
6771da177e4SLinus Torvalds  */
6781ba9a895SDavid Ahern static enum rt6_nud_state rt6_check_neigh(const struct fib6_nh *fib6_nh)
6791da177e4SLinus Torvalds {
680afc154e9SHannes Frederic Sowa 	enum rt6_nud_state ret = RT6_NUD_FAIL_HARD;
6815e670d84SDavid Ahern 	struct neighbour *neigh;
682f2c31e32SEric Dumazet 
683145a3621SYOSHIFUJI Hideaki / 吉藤英明 	rcu_read_lock_bh();
6841ba9a895SDavid Ahern 	neigh = __ipv6_neigh_lookup_noref(fib6_nh->fib_nh_dev,
6851ba9a895SDavid Ahern 					  &fib6_nh->fib_nh_gw6);
686145a3621SYOSHIFUJI Hideaki / 吉藤英明 	if (neigh) {
687145a3621SYOSHIFUJI Hideaki / 吉藤英明 		read_lock(&neigh->lock);
688554cfb7eSYOSHIFUJI Hideaki 		if (neigh->nud_state & NUD_VALID)
689afc154e9SHannes Frederic Sowa 			ret = RT6_NUD_SUCCEED;
690398bcbebSYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF
691a5a81f0bSPaul Marks 		else if (!(neigh->nud_state & NUD_FAILED))
692afc154e9SHannes Frederic Sowa 			ret = RT6_NUD_SUCCEED;
6937e980569SJiri Benc 		else
6947e980569SJiri Benc 			ret = RT6_NUD_FAIL_PROBE;
695398bcbebSYOSHIFUJI Hideaki #endif
696145a3621SYOSHIFUJI Hideaki / 吉藤英明 		read_unlock(&neigh->lock);
697afc154e9SHannes Frederic Sowa 	} else {
698afc154e9SHannes Frederic Sowa 		ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ?
6997e980569SJiri Benc 		      RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR;
700a5a81f0bSPaul Marks 	}
701145a3621SYOSHIFUJI Hideaki / 吉藤英明 	rcu_read_unlock_bh();
702145a3621SYOSHIFUJI Hideaki / 吉藤英明 
703a5a81f0bSPaul Marks 	return ret;
7041da177e4SLinus Torvalds }
7051da177e4SLinus Torvalds 
706702cea56SDavid Ahern static int rt6_score_route(const struct fib6_nh *nh, u32 fib6_flags, int oif,
707702cea56SDavid Ahern 			   int strict)
708554cfb7eSYOSHIFUJI Hideaki {
7096e1809a5SDavid Ahern 	int m = 0;
7104d0c5911SYOSHIFUJI Hideaki 
7116e1809a5SDavid Ahern 	if (!oif || nh->fib_nh_dev->ifindex == oif)
7126e1809a5SDavid Ahern 		m = 2;
7136e1809a5SDavid Ahern 
71477d16f45SYOSHIFUJI Hideaki 	if (!m && (strict & RT6_LOOKUP_F_IFACE))
715afc154e9SHannes Frederic Sowa 		return RT6_NUD_FAIL_HARD;
716ebacaaa0SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF
717702cea56SDavid Ahern 	m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(fib6_flags)) << 2;
718ebacaaa0SYOSHIFUJI Hideaki #endif
7191ba9a895SDavid Ahern 	if ((strict & RT6_LOOKUP_F_REACHABLE) &&
720702cea56SDavid Ahern 	    !(fib6_flags & RTF_NONEXTHOP) && nh->fib_nh_gw_family) {
7211ba9a895SDavid Ahern 		int n = rt6_check_neigh(nh);
722afc154e9SHannes Frederic Sowa 		if (n < 0)
723afc154e9SHannes Frederic Sowa 			return n;
724afc154e9SHannes Frederic Sowa 	}
725554cfb7eSYOSHIFUJI Hideaki 	return m;
726554cfb7eSYOSHIFUJI Hideaki }
727554cfb7eSYOSHIFUJI Hideaki 
72828679ed1SDavid Ahern static bool find_match(struct fib6_nh *nh, u32 fib6_flags,
72928679ed1SDavid Ahern 		       int oif, int strict, int *mpri, bool *do_rr)
730554cfb7eSYOSHIFUJI Hideaki {
731afc154e9SHannes Frederic Sowa 	bool match_do_rr = false;
73228679ed1SDavid Ahern 	bool rc = false;
73328679ed1SDavid Ahern 	int m;
73435103d11SAndy Gospodarek 
73528679ed1SDavid Ahern 	if (nh->fib_nh_flags & RTNH_F_DEAD)
7368067bb8cSIdo Schimmel 		goto out;
7378067bb8cSIdo Schimmel 
73828679ed1SDavid Ahern 	if (ip6_ignore_linkdown(nh->fib_nh_dev) &&
73928679ed1SDavid Ahern 	    nh->fib_nh_flags & RTNH_F_LINKDOWN &&
740d5d32e4bSDavid Ahern 	    !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE))
74135103d11SAndy Gospodarek 		goto out;
742554cfb7eSYOSHIFUJI Hideaki 
74328679ed1SDavid Ahern 	m = rt6_score_route(nh, fib6_flags, oif, strict);
7447e980569SJiri Benc 	if (m == RT6_NUD_FAIL_DO_RR) {
745afc154e9SHannes Frederic Sowa 		match_do_rr = true;
746afc154e9SHannes Frederic Sowa 		m = 0; /* lowest valid score */
7477e980569SJiri Benc 	} else if (m == RT6_NUD_FAIL_HARD) {
748f11e6659SDavid S. Miller 		goto out;
7491da177e4SLinus Torvalds 	}
750f11e6659SDavid S. Miller 
751afc154e9SHannes Frederic Sowa 	if (strict & RT6_LOOKUP_F_REACHABLE)
75228679ed1SDavid Ahern 		rt6_probe(nh);
753afc154e9SHannes Frederic Sowa 
7547e980569SJiri Benc 	/* note that m can be RT6_NUD_FAIL_PROBE at this point */
755afc154e9SHannes Frederic Sowa 	if (m > *mpri) {
756afc154e9SHannes Frederic Sowa 		*do_rr = match_do_rr;
757afc154e9SHannes Frederic Sowa 		*mpri = m;
75828679ed1SDavid Ahern 		rc = true;
759afc154e9SHannes Frederic Sowa 	}
760f11e6659SDavid S. Miller out:
76128679ed1SDavid Ahern 	return rc;
7621da177e4SLinus Torvalds }
7631da177e4SLinus Torvalds 
76417a5984eSDavid Ahern struct fib6_nh_frl_arg {
76517a5984eSDavid Ahern 	u32		flags;
76617a5984eSDavid Ahern 	int		oif;
76717a5984eSDavid Ahern 	int		strict;
76817a5984eSDavid Ahern 	int		*mpri;
76917a5984eSDavid Ahern 	bool		*do_rr;
77017a5984eSDavid Ahern 	struct fib6_nh	*nh;
77117a5984eSDavid Ahern };
77217a5984eSDavid Ahern 
77317a5984eSDavid Ahern static int rt6_nh_find_match(struct fib6_nh *nh, void *_arg)
77417a5984eSDavid Ahern {
77517a5984eSDavid Ahern 	struct fib6_nh_frl_arg *arg = _arg;
77617a5984eSDavid Ahern 
77717a5984eSDavid Ahern 	arg->nh = nh;
77817a5984eSDavid Ahern 	return find_match(nh, arg->flags, arg->oif, arg->strict,
77917a5984eSDavid Ahern 			  arg->mpri, arg->do_rr);
78017a5984eSDavid Ahern }
78117a5984eSDavid Ahern 
782b7bc4b6aSDavid Ahern static void __find_rr_leaf(struct fib6_info *f6i_start,
78330c15f03SDavid Ahern 			   struct fib6_info *nomatch, u32 metric,
784b7bc4b6aSDavid Ahern 			   struct fib6_result *res, struct fib6_info **cont,
78530c15f03SDavid Ahern 			   int oif, int strict, bool *do_rr, int *mpri)
78630c15f03SDavid Ahern {
787b7bc4b6aSDavid Ahern 	struct fib6_info *f6i;
78830c15f03SDavid Ahern 
789b7bc4b6aSDavid Ahern 	for (f6i = f6i_start;
790b7bc4b6aSDavid Ahern 	     f6i && f6i != nomatch;
791b7bc4b6aSDavid Ahern 	     f6i = rcu_dereference(f6i->fib6_next)) {
79217a5984eSDavid Ahern 		bool matched = false;
79330c15f03SDavid Ahern 		struct fib6_nh *nh;
79430c15f03SDavid Ahern 
795b7bc4b6aSDavid Ahern 		if (cont && f6i->fib6_metric != metric) {
796b7bc4b6aSDavid Ahern 			*cont = f6i;
79730c15f03SDavid Ahern 			return;
79830c15f03SDavid Ahern 		}
79930c15f03SDavid Ahern 
800b7bc4b6aSDavid Ahern 		if (fib6_check_expired(f6i))
80130c15f03SDavid Ahern 			continue;
80230c15f03SDavid Ahern 
80317a5984eSDavid Ahern 		if (unlikely(f6i->nh)) {
80417a5984eSDavid Ahern 			struct fib6_nh_frl_arg arg = {
80517a5984eSDavid Ahern 				.flags  = f6i->fib6_flags,
80617a5984eSDavid Ahern 				.oif    = oif,
80717a5984eSDavid Ahern 				.strict = strict,
80817a5984eSDavid Ahern 				.mpri   = mpri,
80917a5984eSDavid Ahern 				.do_rr  = do_rr
81017a5984eSDavid Ahern 			};
81117a5984eSDavid Ahern 
81217a5984eSDavid Ahern 			if (nexthop_is_blackhole(f6i->nh)) {
81317a5984eSDavid Ahern 				res->fib6_flags = RTF_REJECT;
81417a5984eSDavid Ahern 				res->fib6_type = RTN_BLACKHOLE;
81517a5984eSDavid Ahern 				res->f6i = f6i;
81617a5984eSDavid Ahern 				res->nh = nexthop_fib6_nh(f6i->nh);
81717a5984eSDavid Ahern 				return;
81817a5984eSDavid Ahern 			}
81917a5984eSDavid Ahern 			if (nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_find_match,
82017a5984eSDavid Ahern 						     &arg)) {
82117a5984eSDavid Ahern 				matched = true;
82217a5984eSDavid Ahern 				nh = arg.nh;
82317a5984eSDavid Ahern 			}
82417a5984eSDavid Ahern 		} else {
8251cf844c7SDavid Ahern 			nh = f6i->fib6_nh;
82617a5984eSDavid Ahern 			if (find_match(nh, f6i->fib6_flags, oif, strict,
82717a5984eSDavid Ahern 				       mpri, do_rr))
82817a5984eSDavid Ahern 				matched = true;
82917a5984eSDavid Ahern 		}
83017a5984eSDavid Ahern 		if (matched) {
831b7bc4b6aSDavid Ahern 			res->f6i = f6i;
832b7bc4b6aSDavid Ahern 			res->nh = nh;
8337d21fec9SDavid Ahern 			res->fib6_flags = f6i->fib6_flags;
8347d21fec9SDavid Ahern 			res->fib6_type = f6i->fib6_type;
835b7bc4b6aSDavid Ahern 		}
83630c15f03SDavid Ahern 	}
83730c15f03SDavid Ahern }
83830c15f03SDavid Ahern 
839b7bc4b6aSDavid Ahern static void find_rr_leaf(struct fib6_node *fn, struct fib6_info *leaf,
840b7bc4b6aSDavid Ahern 			 struct fib6_info *rr_head, int oif, int strict,
841b7bc4b6aSDavid Ahern 			 bool *do_rr, struct fib6_result *res)
842f11e6659SDavid S. Miller {
843b7bc4b6aSDavid Ahern 	u32 metric = rr_head->fib6_metric;
844b7bc4b6aSDavid Ahern 	struct fib6_info *cont = NULL;
845f11e6659SDavid S. Miller 	int mpri = -1;
846f11e6659SDavid S. Miller 
847b7bc4b6aSDavid Ahern 	__find_rr_leaf(rr_head, NULL, metric, res, &cont,
84830c15f03SDavid Ahern 		       oif, strict, do_rr, &mpri);
8499fbdcfafSSteffen Klassert 
850b7bc4b6aSDavid Ahern 	__find_rr_leaf(leaf, rr_head, metric, res, &cont,
85130c15f03SDavid Ahern 		       oif, strict, do_rr, &mpri);
8529fbdcfafSSteffen Klassert 
853b7bc4b6aSDavid Ahern 	if (res->f6i || !cont)
854b7bc4b6aSDavid Ahern 		return;
8559fbdcfafSSteffen Klassert 
856b7bc4b6aSDavid Ahern 	__find_rr_leaf(cont, NULL, metric, res, NULL,
85730c15f03SDavid Ahern 		       oif, strict, do_rr, &mpri);
858f11e6659SDavid S. Miller }
859f11e6659SDavid S. Miller 
860b7bc4b6aSDavid Ahern static void rt6_select(struct net *net, struct fib6_node *fn, int oif,
861b7bc4b6aSDavid Ahern 		       struct fib6_result *res, int strict)
862f11e6659SDavid S. Miller {
8638d1c802bSDavid Ahern 	struct fib6_info *leaf = rcu_dereference(fn->leaf);
864b7bc4b6aSDavid Ahern 	struct fib6_info *rt0;
865afc154e9SHannes Frederic Sowa 	bool do_rr = false;
86617ecf590SWei Wang 	int key_plen;
867f11e6659SDavid S. Miller 
868b7bc4b6aSDavid Ahern 	/* make sure this function or its helpers sets f6i */
869b7bc4b6aSDavid Ahern 	res->f6i = NULL;
870b7bc4b6aSDavid Ahern 
871421842edSDavid Ahern 	if (!leaf || leaf == net->ipv6.fib6_null_entry)
872b7bc4b6aSDavid Ahern 		goto out;
8738d1040e8SWei Wang 
87466f5d6ceSWei Wang 	rt0 = rcu_dereference(fn->rr_ptr);
875f11e6659SDavid S. Miller 	if (!rt0)
87666f5d6ceSWei Wang 		rt0 = leaf;
877f11e6659SDavid S. Miller 
87817ecf590SWei Wang 	/* Double check to make sure fn is not an intermediate node
87917ecf590SWei Wang 	 * and fn->leaf does not points to its child's leaf
88017ecf590SWei Wang 	 * (This might happen if all routes under fn are deleted from
88117ecf590SWei Wang 	 * the tree and fib6_repair_tree() is called on the node.)
88217ecf590SWei Wang 	 */
88393c2fb25SDavid Ahern 	key_plen = rt0->fib6_dst.plen;
88417ecf590SWei Wang #ifdef CONFIG_IPV6_SUBTREES
88593c2fb25SDavid Ahern 	if (rt0->fib6_src.plen)
88693c2fb25SDavid Ahern 		key_plen = rt0->fib6_src.plen;
88717ecf590SWei Wang #endif
88817ecf590SWei Wang 	if (fn->fn_bit != key_plen)
889b7bc4b6aSDavid Ahern 		goto out;
89017ecf590SWei Wang 
891b7bc4b6aSDavid Ahern 	find_rr_leaf(fn, leaf, rt0, oif, strict, &do_rr, res);
892afc154e9SHannes Frederic Sowa 	if (do_rr) {
8938fb11a9aSDavid Ahern 		struct fib6_info *next = rcu_dereference(rt0->fib6_next);
894f11e6659SDavid S. Miller 
895554cfb7eSYOSHIFUJI Hideaki 		/* no entries matched; do round-robin */
89693c2fb25SDavid Ahern 		if (!next || next->fib6_metric != rt0->fib6_metric)
8978d1040e8SWei Wang 			next = leaf;
898f11e6659SDavid S. Miller 
89966f5d6ceSWei Wang 		if (next != rt0) {
90093c2fb25SDavid Ahern 			spin_lock_bh(&leaf->fib6_table->tb6_lock);
90166f5d6ceSWei Wang 			/* make sure next is not being deleted from the tree */
90293c2fb25SDavid Ahern 			if (next->fib6_node)
90366f5d6ceSWei Wang 				rcu_assign_pointer(fn->rr_ptr, next);
90493c2fb25SDavid Ahern 			spin_unlock_bh(&leaf->fib6_table->tb6_lock);
90566f5d6ceSWei Wang 		}
906554cfb7eSYOSHIFUJI Hideaki 	}
907554cfb7eSYOSHIFUJI Hideaki 
908b7bc4b6aSDavid Ahern out:
909b7bc4b6aSDavid Ahern 	if (!res->f6i) {
910b7bc4b6aSDavid Ahern 		res->f6i = net->ipv6.fib6_null_entry;
9111cf844c7SDavid Ahern 		res->nh = res->f6i->fib6_nh;
9127d21fec9SDavid Ahern 		res->fib6_flags = res->f6i->fib6_flags;
9137d21fec9SDavid Ahern 		res->fib6_type = res->f6i->fib6_type;
914b7bc4b6aSDavid Ahern 	}
9151da177e4SLinus Torvalds }
9161da177e4SLinus Torvalds 
91785bd05deSDavid Ahern static bool rt6_is_gw_or_nonexthop(const struct fib6_result *res)
9188b9df265SMartin KaFai Lau {
91985bd05deSDavid Ahern 	return (res->f6i->fib6_flags & RTF_NONEXTHOP) ||
92085bd05deSDavid Ahern 	       res->nh->fib_nh_gw_family;
9218b9df265SMartin KaFai Lau }
9228b9df265SMartin KaFai Lau 
92370ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO
92470ceb4f5SYOSHIFUJI Hideaki int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
925b71d1d42SEric Dumazet 		  const struct in6_addr *gwaddr)
92670ceb4f5SYOSHIFUJI Hideaki {
927c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(dev);
92870ceb4f5SYOSHIFUJI Hideaki 	struct route_info *rinfo = (struct route_info *) opt;
92970ceb4f5SYOSHIFUJI Hideaki 	struct in6_addr prefix_buf, *prefix;
93070ceb4f5SYOSHIFUJI Hideaki 	unsigned int pref;
9314bed72e4SYOSHIFUJI Hideaki 	unsigned long lifetime;
9328d1c802bSDavid Ahern 	struct fib6_info *rt;
93370ceb4f5SYOSHIFUJI Hideaki 
93470ceb4f5SYOSHIFUJI Hideaki 	if (len < sizeof(struct route_info)) {
93570ceb4f5SYOSHIFUJI Hideaki 		return -EINVAL;
93670ceb4f5SYOSHIFUJI Hideaki 	}
93770ceb4f5SYOSHIFUJI Hideaki 
93870ceb4f5SYOSHIFUJI Hideaki 	/* Sanity check for prefix_len and length */
93970ceb4f5SYOSHIFUJI Hideaki 	if (rinfo->length > 3) {
94070ceb4f5SYOSHIFUJI Hideaki 		return -EINVAL;
94170ceb4f5SYOSHIFUJI Hideaki 	} else if (rinfo->prefix_len > 128) {
94270ceb4f5SYOSHIFUJI Hideaki 		return -EINVAL;
94370ceb4f5SYOSHIFUJI Hideaki 	} else if (rinfo->prefix_len > 64) {
94470ceb4f5SYOSHIFUJI Hideaki 		if (rinfo->length < 2) {
94570ceb4f5SYOSHIFUJI Hideaki 			return -EINVAL;
94670ceb4f5SYOSHIFUJI Hideaki 		}
94770ceb4f5SYOSHIFUJI Hideaki 	} else if (rinfo->prefix_len > 0) {
94870ceb4f5SYOSHIFUJI Hideaki 		if (rinfo->length < 1) {
94970ceb4f5SYOSHIFUJI Hideaki 			return -EINVAL;
95070ceb4f5SYOSHIFUJI Hideaki 		}
95170ceb4f5SYOSHIFUJI Hideaki 	}
95270ceb4f5SYOSHIFUJI Hideaki 
95370ceb4f5SYOSHIFUJI Hideaki 	pref = rinfo->route_pref;
95470ceb4f5SYOSHIFUJI Hideaki 	if (pref == ICMPV6_ROUTER_PREF_INVALID)
9553933fc95SJens Rosenboom 		return -EINVAL;
95670ceb4f5SYOSHIFUJI Hideaki 
9574bed72e4SYOSHIFUJI Hideaki 	lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ);
95870ceb4f5SYOSHIFUJI Hideaki 
95970ceb4f5SYOSHIFUJI Hideaki 	if (rinfo->length == 3)
96070ceb4f5SYOSHIFUJI Hideaki 		prefix = (struct in6_addr *)rinfo->prefix;
96170ceb4f5SYOSHIFUJI Hideaki 	else {
96270ceb4f5SYOSHIFUJI Hideaki 		/* this function is safe */
96370ceb4f5SYOSHIFUJI Hideaki 		ipv6_addr_prefix(&prefix_buf,
96470ceb4f5SYOSHIFUJI Hideaki 				 (struct in6_addr *)rinfo->prefix,
96570ceb4f5SYOSHIFUJI Hideaki 				 rinfo->prefix_len);
96670ceb4f5SYOSHIFUJI Hideaki 		prefix = &prefix_buf;
96770ceb4f5SYOSHIFUJI Hideaki 	}
96870ceb4f5SYOSHIFUJI Hideaki 
969f104a567SDuan Jiong 	if (rinfo->prefix_len == 0)
970afb1d4b5SDavid Ahern 		rt = rt6_get_dflt_router(net, gwaddr, dev);
971f104a567SDuan Jiong 	else
972f104a567SDuan Jiong 		rt = rt6_get_route_info(net, prefix, rinfo->prefix_len,
973830218c1SDavid Ahern 					gwaddr, dev);
97470ceb4f5SYOSHIFUJI Hideaki 
97570ceb4f5SYOSHIFUJI Hideaki 	if (rt && !lifetime) {
97611dd74b3SRoopa Prabhu 		ip6_del_rt(net, rt, false);
97770ceb4f5SYOSHIFUJI Hideaki 		rt = NULL;
97870ceb4f5SYOSHIFUJI Hideaki 	}
97970ceb4f5SYOSHIFUJI Hideaki 
98070ceb4f5SYOSHIFUJI Hideaki 	if (!rt && lifetime)
981830218c1SDavid Ahern 		rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr,
982830218c1SDavid Ahern 					dev, pref);
98370ceb4f5SYOSHIFUJI Hideaki 	else if (rt)
98493c2fb25SDavid Ahern 		rt->fib6_flags = RTF_ROUTEINFO |
98593c2fb25SDavid Ahern 				 (rt->fib6_flags & ~RTF_PREF_MASK) | RTF_PREF(pref);
98670ceb4f5SYOSHIFUJI Hideaki 
98770ceb4f5SYOSHIFUJI Hideaki 	if (rt) {
9881716a961SGao feng 		if (!addrconf_finite_timeout(lifetime))
98914895687SDavid Ahern 			fib6_clean_expires(rt);
9901716a961SGao feng 		else
99114895687SDavid Ahern 			fib6_set_expires(rt, jiffies + HZ * lifetime);
9921716a961SGao feng 
99393531c67SDavid Ahern 		fib6_info_release(rt);
99470ceb4f5SYOSHIFUJI Hideaki 	}
99570ceb4f5SYOSHIFUJI Hideaki 	return 0;
99670ceb4f5SYOSHIFUJI Hideaki }
99770ceb4f5SYOSHIFUJI Hideaki #endif
99870ceb4f5SYOSHIFUJI Hideaki 
999ae90d867SDavid Ahern /*
1000ae90d867SDavid Ahern  *	Misc support functions
1001ae90d867SDavid Ahern  */
1002ae90d867SDavid Ahern 
1003ae90d867SDavid Ahern /* called with rcu_lock held */
10040d161581SDavid Ahern static struct net_device *ip6_rt_get_dev_rcu(const struct fib6_result *res)
1005ae90d867SDavid Ahern {
10060d161581SDavid Ahern 	struct net_device *dev = res->nh->fib_nh_dev;
1007ae90d867SDavid Ahern 
10087d21fec9SDavid Ahern 	if (res->fib6_flags & (RTF_LOCAL | RTF_ANYCAST)) {
1009ae90d867SDavid Ahern 		/* for copies of local routes, dst->dev needs to be the
1010ae90d867SDavid Ahern 		 * device if it is a master device, the master device if
1011ae90d867SDavid Ahern 		 * device is enslaved, and the loopback as the default
1012ae90d867SDavid Ahern 		 */
1013ae90d867SDavid Ahern 		if (netif_is_l3_slave(dev) &&
10147d21fec9SDavid Ahern 		    !rt6_need_strict(&res->f6i->fib6_dst.addr))
1015ae90d867SDavid Ahern 			dev = l3mdev_master_dev_rcu(dev);
1016ae90d867SDavid Ahern 		else if (!netif_is_l3_master(dev))
1017ae90d867SDavid Ahern 			dev = dev_net(dev)->loopback_dev;
1018ae90d867SDavid Ahern 		/* last case is netif_is_l3_master(dev) is true in which
1019ae90d867SDavid Ahern 		 * case we want dev returned to be dev
1020ae90d867SDavid Ahern 		 */
1021ae90d867SDavid Ahern 	}
1022ae90d867SDavid Ahern 
1023ae90d867SDavid Ahern 	return dev;
1024ae90d867SDavid Ahern }
1025ae90d867SDavid Ahern 
10266edb3c96SDavid Ahern static const int fib6_prop[RTN_MAX + 1] = {
10276edb3c96SDavid Ahern 	[RTN_UNSPEC]	= 0,
10286edb3c96SDavid Ahern 	[RTN_UNICAST]	= 0,
10296edb3c96SDavid Ahern 	[RTN_LOCAL]	= 0,
10306edb3c96SDavid Ahern 	[RTN_BROADCAST]	= 0,
10316edb3c96SDavid Ahern 	[RTN_ANYCAST]	= 0,
10326edb3c96SDavid Ahern 	[RTN_MULTICAST]	= 0,
10336edb3c96SDavid Ahern 	[RTN_BLACKHOLE]	= -EINVAL,
10346edb3c96SDavid Ahern 	[RTN_UNREACHABLE] = -EHOSTUNREACH,
10356edb3c96SDavid Ahern 	[RTN_PROHIBIT]	= -EACCES,
10366edb3c96SDavid Ahern 	[RTN_THROW]	= -EAGAIN,
10376edb3c96SDavid Ahern 	[RTN_NAT]	= -EINVAL,
10386edb3c96SDavid Ahern 	[RTN_XRESOLVE]	= -EINVAL,
10396edb3c96SDavid Ahern };
10406edb3c96SDavid Ahern 
10416edb3c96SDavid Ahern static int ip6_rt_type_to_error(u8 fib6_type)
10426edb3c96SDavid Ahern {
10436edb3c96SDavid Ahern 	return fib6_prop[fib6_type];
10446edb3c96SDavid Ahern }
10456edb3c96SDavid Ahern 
10468d1c802bSDavid Ahern static unsigned short fib6_info_dst_flags(struct fib6_info *rt)
10473b6761d1SDavid Ahern {
10483b6761d1SDavid Ahern 	unsigned short flags = 0;
10493b6761d1SDavid Ahern 
10503b6761d1SDavid Ahern 	if (rt->dst_nocount)
10513b6761d1SDavid Ahern 		flags |= DST_NOCOUNT;
10523b6761d1SDavid Ahern 	if (rt->dst_nopolicy)
10533b6761d1SDavid Ahern 		flags |= DST_NOPOLICY;
10543b6761d1SDavid Ahern 
10553b6761d1SDavid Ahern 	return flags;
10563b6761d1SDavid Ahern }
10573b6761d1SDavid Ahern 
10587d21fec9SDavid Ahern static void ip6_rt_init_dst_reject(struct rt6_info *rt, u8 fib6_type)
10596edb3c96SDavid Ahern {
10607d21fec9SDavid Ahern 	rt->dst.error = ip6_rt_type_to_error(fib6_type);
10616edb3c96SDavid Ahern 
10627d21fec9SDavid Ahern 	switch (fib6_type) {
10636edb3c96SDavid Ahern 	case RTN_BLACKHOLE:
10646edb3c96SDavid Ahern 		rt->dst.output = dst_discard_out;
10656edb3c96SDavid Ahern 		rt->dst.input = dst_discard;
10666edb3c96SDavid Ahern 		break;
10676edb3c96SDavid Ahern 	case RTN_PROHIBIT:
10686edb3c96SDavid Ahern 		rt->dst.output = ip6_pkt_prohibit_out;
10696edb3c96SDavid Ahern 		rt->dst.input = ip6_pkt_prohibit;
10706edb3c96SDavid Ahern 		break;
10716edb3c96SDavid Ahern 	case RTN_THROW:
10726edb3c96SDavid Ahern 	case RTN_UNREACHABLE:
10736edb3c96SDavid Ahern 	default:
10746edb3c96SDavid Ahern 		rt->dst.output = ip6_pkt_discard_out;
10756edb3c96SDavid Ahern 		rt->dst.input = ip6_pkt_discard;
10766edb3c96SDavid Ahern 		break;
10776edb3c96SDavid Ahern 	}
10786edb3c96SDavid Ahern }
10796edb3c96SDavid Ahern 
10800d161581SDavid Ahern static void ip6_rt_init_dst(struct rt6_info *rt, const struct fib6_result *res)
10816edb3c96SDavid Ahern {
10827d21fec9SDavid Ahern 	struct fib6_info *f6i = res->f6i;
10830d161581SDavid Ahern 
10847d21fec9SDavid Ahern 	if (res->fib6_flags & RTF_REJECT) {
10857d21fec9SDavid Ahern 		ip6_rt_init_dst_reject(rt, res->fib6_type);
10866edb3c96SDavid Ahern 		return;
10876edb3c96SDavid Ahern 	}
10886edb3c96SDavid Ahern 
10896edb3c96SDavid Ahern 	rt->dst.error = 0;
10906edb3c96SDavid Ahern 	rt->dst.output = ip6_output;
10916edb3c96SDavid Ahern 
10927d21fec9SDavid Ahern 	if (res->fib6_type == RTN_LOCAL || res->fib6_type == RTN_ANYCAST) {
10936edb3c96SDavid Ahern 		rt->dst.input = ip6_input;
10947d21fec9SDavid Ahern 	} else if (ipv6_addr_type(&f6i->fib6_dst.addr) & IPV6_ADDR_MULTICAST) {
10956edb3c96SDavid Ahern 		rt->dst.input = ip6_mc_input;
10966edb3c96SDavid Ahern 	} else {
10976edb3c96SDavid Ahern 		rt->dst.input = ip6_forward;
10986edb3c96SDavid Ahern 	}
10996edb3c96SDavid Ahern 
11000d161581SDavid Ahern 	if (res->nh->fib_nh_lws) {
11010d161581SDavid Ahern 		rt->dst.lwtstate = lwtstate_get(res->nh->fib_nh_lws);
11026edb3c96SDavid Ahern 		lwtunnel_set_redirect(&rt->dst);
11036edb3c96SDavid Ahern 	}
11046edb3c96SDavid Ahern 
11056edb3c96SDavid Ahern 	rt->dst.lastuse = jiffies;
11066edb3c96SDavid Ahern }
11076edb3c96SDavid Ahern 
1108e873e4b9SWei Wang /* Caller must already hold reference to @from */
11098d1c802bSDavid Ahern static void rt6_set_from(struct rt6_info *rt, struct fib6_info *from)
1110ae90d867SDavid Ahern {
1111ae90d867SDavid Ahern 	rt->rt6i_flags &= ~RTF_EXPIRES;
1112a68886a6SDavid Ahern 	rcu_assign_pointer(rt->from, from);
1113e1255ed4SDavid Ahern 	ip_dst_init_metrics(&rt->dst, from->fib6_metrics);
1114ae90d867SDavid Ahern }
1115ae90d867SDavid Ahern 
11160d161581SDavid Ahern /* Caller must already hold reference to f6i in result */
11170d161581SDavid Ahern static void ip6_rt_copy_init(struct rt6_info *rt, const struct fib6_result *res)
1118ae90d867SDavid Ahern {
11190d161581SDavid Ahern 	const struct fib6_nh *nh = res->nh;
11200d161581SDavid Ahern 	const struct net_device *dev = nh->fib_nh_dev;
11210d161581SDavid Ahern 	struct fib6_info *f6i = res->f6i;
1122dcd1f572SDavid Ahern 
11230d161581SDavid Ahern 	ip6_rt_init_dst(rt, res);
11246edb3c96SDavid Ahern 
11250d161581SDavid Ahern 	rt->rt6i_dst = f6i->fib6_dst;
1126dcd1f572SDavid Ahern 	rt->rt6i_idev = dev ? in6_dev_get(dev) : NULL;
11277d21fec9SDavid Ahern 	rt->rt6i_flags = res->fib6_flags;
11280d161581SDavid Ahern 	if (nh->fib_nh_gw_family) {
11290d161581SDavid Ahern 		rt->rt6i_gateway = nh->fib_nh_gw6;
11302b2450caSDavid Ahern 		rt->rt6i_flags |= RTF_GATEWAY;
11312b2450caSDavid Ahern 	}
11320d161581SDavid Ahern 	rt6_set_from(rt, f6i);
1133ae90d867SDavid Ahern #ifdef CONFIG_IPV6_SUBTREES
11340d161581SDavid Ahern 	rt->rt6i_src = f6i->fib6_src;
1135ae90d867SDavid Ahern #endif
1136ae90d867SDavid Ahern }
1137ae90d867SDavid Ahern 
1138a3c00e46SMartin KaFai Lau static struct fib6_node* fib6_backtrack(struct fib6_node *fn,
1139a3c00e46SMartin KaFai Lau 					struct in6_addr *saddr)
1140a3c00e46SMartin KaFai Lau {
114166f5d6ceSWei Wang 	struct fib6_node *pn, *sn;
1142a3c00e46SMartin KaFai Lau 	while (1) {
1143a3c00e46SMartin KaFai Lau 		if (fn->fn_flags & RTN_TL_ROOT)
1144a3c00e46SMartin KaFai Lau 			return NULL;
114566f5d6ceSWei Wang 		pn = rcu_dereference(fn->parent);
114666f5d6ceSWei Wang 		sn = FIB6_SUBTREE(pn);
114766f5d6ceSWei Wang 		if (sn && sn != fn)
11486454743bSDavid Ahern 			fn = fib6_node_lookup(sn, NULL, saddr);
1149a3c00e46SMartin KaFai Lau 		else
1150a3c00e46SMartin KaFai Lau 			fn = pn;
1151a3c00e46SMartin KaFai Lau 		if (fn->fn_flags & RTN_RTINFO)
1152a3c00e46SMartin KaFai Lau 			return fn;
1153a3c00e46SMartin KaFai Lau 	}
1154a3c00e46SMartin KaFai Lau }
1155c71099acSThomas Graf 
115610585b43SDavid Ahern static bool ip6_hold_safe(struct net *net, struct rt6_info **prt)
1157d3843fe5SWei Wang {
1158d3843fe5SWei Wang 	struct rt6_info *rt = *prt;
1159d3843fe5SWei Wang 
1160d3843fe5SWei Wang 	if (dst_hold_safe(&rt->dst))
1161d3843fe5SWei Wang 		return true;
116210585b43SDavid Ahern 	if (net) {
1163d3843fe5SWei Wang 		rt = net->ipv6.ip6_null_entry;
1164d3843fe5SWei Wang 		dst_hold(&rt->dst);
1165d3843fe5SWei Wang 	} else {
1166d3843fe5SWei Wang 		rt = NULL;
1167d3843fe5SWei Wang 	}
1168d3843fe5SWei Wang 	*prt = rt;
1169d3843fe5SWei Wang 	return false;
1170d3843fe5SWei Wang }
1171d3843fe5SWei Wang 
1172dec9b0e2SDavid Ahern /* called with rcu_lock held */
11739b6b35abSDavid Ahern static struct rt6_info *ip6_create_rt_rcu(const struct fib6_result *res)
1174dec9b0e2SDavid Ahern {
11759b6b35abSDavid Ahern 	struct net_device *dev = res->nh->fib_nh_dev;
11769b6b35abSDavid Ahern 	struct fib6_info *f6i = res->f6i;
11779b6b35abSDavid Ahern 	unsigned short flags;
1178dec9b0e2SDavid Ahern 	struct rt6_info *nrt;
1179dec9b0e2SDavid Ahern 
11809b6b35abSDavid Ahern 	if (!fib6_info_hold_safe(f6i))
11811c87e79aSXin Long 		goto fallback;
1182e873e4b9SWei Wang 
11839b6b35abSDavid Ahern 	flags = fib6_info_dst_flags(f6i);
118493531c67SDavid Ahern 	nrt = ip6_dst_alloc(dev_net(dev), dev, flags);
11851c87e79aSXin Long 	if (!nrt) {
11869b6b35abSDavid Ahern 		fib6_info_release(f6i);
11871c87e79aSXin Long 		goto fallback;
11881c87e79aSXin Long 	}
1189dec9b0e2SDavid Ahern 
11900d161581SDavid Ahern 	ip6_rt_copy_init(nrt, res);
11911c87e79aSXin Long 	return nrt;
11921c87e79aSXin Long 
11931c87e79aSXin Long fallback:
11941c87e79aSXin Long 	nrt = dev_net(dev)->ipv6.ip6_null_entry;
11951c87e79aSXin Long 	dst_hold(&nrt->dst);
1196dec9b0e2SDavid Ahern 	return nrt;
1197dec9b0e2SDavid Ahern }
1198dec9b0e2SDavid Ahern 
119955cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_lookup(struct net *net,
12008ed67789SDaniel Lezcano 					     struct fib6_table *table,
1201b75cc8f9SDavid Ahern 					     struct flowi6 *fl6,
1202b75cc8f9SDavid Ahern 					     const struct sk_buff *skb,
1203b75cc8f9SDavid Ahern 					     int flags)
12041da177e4SLinus Torvalds {
1205b1d40991SDavid Ahern 	struct fib6_result res = {};
12061da177e4SLinus Torvalds 	struct fib6_node *fn;
120723fb93a4SDavid Ahern 	struct rt6_info *rt;
12081da177e4SLinus Torvalds 
1209b6cdbc85SDavid Ahern 	if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
1210b6cdbc85SDavid Ahern 		flags &= ~RT6_LOOKUP_F_IFACE;
1211b6cdbc85SDavid Ahern 
121266f5d6ceSWei Wang 	rcu_read_lock();
12136454743bSDavid Ahern 	fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
1214c71099acSThomas Graf restart:
1215b1d40991SDavid Ahern 	res.f6i = rcu_dereference(fn->leaf);
1216b1d40991SDavid Ahern 	if (!res.f6i)
1217b1d40991SDavid Ahern 		res.f6i = net->ipv6.fib6_null_entry;
1218af52a52cSDavid Ahern 	else
121975ef7389SDavid Ahern 		rt6_device_match(net, &res, &fl6->saddr, fl6->flowi6_oif,
122075ef7389SDavid Ahern 				 flags);
1221af52a52cSDavid Ahern 
1222b1d40991SDavid Ahern 	if (res.f6i == net->ipv6.fib6_null_entry) {
1223a3c00e46SMartin KaFai Lau 		fn = fib6_backtrack(fn, &fl6->saddr);
1224a3c00e46SMartin KaFai Lau 		if (fn)
1225a3c00e46SMartin KaFai Lau 			goto restart;
1226af52a52cSDavid Ahern 
1227af52a52cSDavid Ahern 		rt = net->ipv6.ip6_null_entry;
1228af52a52cSDavid Ahern 		dst_hold(&rt->dst);
1229af52a52cSDavid Ahern 		goto out;
1230f88d8ea6SDavid Ahern 	} else if (res.fib6_flags & RTF_REJECT) {
1231f88d8ea6SDavid Ahern 		goto do_create;
1232a3c00e46SMartin KaFai Lau 	}
12332b760fcfSWei Wang 
1234b1d40991SDavid Ahern 	fib6_select_path(net, &res, fl6, fl6->flowi6_oif,
1235b1d40991SDavid Ahern 			 fl6->flowi6_oif != 0, skb, flags);
1236b1d40991SDavid Ahern 
12374c9483b2SDavid S. Miller 	/* Search through exception table */
12387e4b5128SDavid Ahern 	rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr);
123923fb93a4SDavid Ahern 	if (rt) {
124010585b43SDavid Ahern 		if (ip6_hold_safe(net, &rt))
1241d3843fe5SWei Wang 			dst_use_noref(&rt->dst, jiffies);
124223fb93a4SDavid Ahern 	} else {
1243f88d8ea6SDavid Ahern do_create:
12449b6b35abSDavid Ahern 		rt = ip6_create_rt_rcu(&res);
1245dec9b0e2SDavid Ahern 	}
1246d3843fe5SWei Wang 
1247af52a52cSDavid Ahern out:
12488ff2e5b2SDavid Ahern 	trace_fib6_table_lookup(net, &res, table, fl6);
1249af52a52cSDavid Ahern 
125066f5d6ceSWei Wang 	rcu_read_unlock();
1251b811580dSDavid Ahern 
12521da177e4SLinus Torvalds 	return rt;
1253c71099acSThomas Graf }
1254c71099acSThomas Graf 
1255ea6e574eSFlorian Westphal struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6,
1256b75cc8f9SDavid Ahern 				   const struct sk_buff *skb, int flags)
1257ea6e574eSFlorian Westphal {
1258b75cc8f9SDavid Ahern 	return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_lookup);
1259ea6e574eSFlorian Westphal }
1260ea6e574eSFlorian Westphal EXPORT_SYMBOL_GPL(ip6_route_lookup);
1261ea6e574eSFlorian Westphal 
12629acd9f3aSYOSHIFUJI Hideaki struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr,
1263b75cc8f9SDavid Ahern 			    const struct in6_addr *saddr, int oif,
1264b75cc8f9SDavid Ahern 			    const struct sk_buff *skb, int strict)
1265c71099acSThomas Graf {
12664c9483b2SDavid S. Miller 	struct flowi6 fl6 = {
12674c9483b2SDavid S. Miller 		.flowi6_oif = oif,
12684c9483b2SDavid S. Miller 		.daddr = *daddr,
1269c71099acSThomas Graf 	};
1270c71099acSThomas Graf 	struct dst_entry *dst;
127177d16f45SYOSHIFUJI Hideaki 	int flags = strict ? RT6_LOOKUP_F_IFACE : 0;
1272c71099acSThomas Graf 
1273adaa70bbSThomas Graf 	if (saddr) {
12744c9483b2SDavid S. Miller 		memcpy(&fl6.saddr, saddr, sizeof(*saddr));
1275adaa70bbSThomas Graf 		flags |= RT6_LOOKUP_F_HAS_SADDR;
1276adaa70bbSThomas Graf 	}
1277adaa70bbSThomas Graf 
1278b75cc8f9SDavid Ahern 	dst = fib6_rule_lookup(net, &fl6, skb, flags, ip6_pol_route_lookup);
1279c71099acSThomas Graf 	if (dst->error == 0)
1280c71099acSThomas Graf 		return (struct rt6_info *) dst;
1281c71099acSThomas Graf 
1282c71099acSThomas Graf 	dst_release(dst);
1283c71099acSThomas Graf 
12841da177e4SLinus Torvalds 	return NULL;
12851da177e4SLinus Torvalds }
12867159039aSYOSHIFUJI Hideaki EXPORT_SYMBOL(rt6_lookup);
12877159039aSYOSHIFUJI Hideaki 
1288c71099acSThomas Graf /* ip6_ins_rt is called with FREE table->tb6_lock.
12891cfb71eeSWei Wang  * It takes new route entry, the addition fails by any reason the
12901cfb71eeSWei Wang  * route is released.
12911cfb71eeSWei Wang  * Caller must hold dst before calling it.
12921da177e4SLinus Torvalds  */
12931da177e4SLinus Torvalds 
12948d1c802bSDavid Ahern static int __ip6_ins_rt(struct fib6_info *rt, struct nl_info *info,
1295333c4301SDavid Ahern 			struct netlink_ext_ack *extack)
12961da177e4SLinus Torvalds {
12971da177e4SLinus Torvalds 	int err;
1298c71099acSThomas Graf 	struct fib6_table *table;
12991da177e4SLinus Torvalds 
130093c2fb25SDavid Ahern 	table = rt->fib6_table;
130166f5d6ceSWei Wang 	spin_lock_bh(&table->tb6_lock);
1302d4ead6b3SDavid Ahern 	err = fib6_add(&table->tb6_root, rt, info, extack);
130366f5d6ceSWei Wang 	spin_unlock_bh(&table->tb6_lock);
13041da177e4SLinus Torvalds 
13051da177e4SLinus Torvalds 	return err;
13061da177e4SLinus Torvalds }
13071da177e4SLinus Torvalds 
13088d1c802bSDavid Ahern int ip6_ins_rt(struct net *net, struct fib6_info *rt)
130940e22e8fSThomas Graf {
1310afb1d4b5SDavid Ahern 	struct nl_info info = {	.nl_net = net, };
1311e715b6d3SFlorian Westphal 
1312d4ead6b3SDavid Ahern 	return __ip6_ins_rt(rt, &info, NULL);
131340e22e8fSThomas Graf }
131440e22e8fSThomas Graf 
131585bd05deSDavid Ahern static struct rt6_info *ip6_rt_cache_alloc(const struct fib6_result *res,
131621efcfa0SEric Dumazet 					   const struct in6_addr *daddr,
1317b71d1d42SEric Dumazet 					   const struct in6_addr *saddr)
13181da177e4SLinus Torvalds {
131985bd05deSDavid Ahern 	struct fib6_info *f6i = res->f6i;
13204832c30dSDavid Ahern 	struct net_device *dev;
13211da177e4SLinus Torvalds 	struct rt6_info *rt;
13221da177e4SLinus Torvalds 
13231da177e4SLinus Torvalds 	/*
13241da177e4SLinus Torvalds 	 *	Clone the route.
13251da177e4SLinus Torvalds 	 */
13261da177e4SLinus Torvalds 
132785bd05deSDavid Ahern 	if (!fib6_info_hold_safe(f6i))
1328e873e4b9SWei Wang 		return NULL;
1329e873e4b9SWei Wang 
13300d161581SDavid Ahern 	dev = ip6_rt_get_dev_rcu(res);
133193531c67SDavid Ahern 	rt = ip6_dst_alloc(dev_net(dev), dev, 0);
1332e873e4b9SWei Wang 	if (!rt) {
133385bd05deSDavid Ahern 		fib6_info_release(f6i);
133483a09abdSMartin KaFai Lau 		return NULL;
1335e873e4b9SWei Wang 	}
133683a09abdSMartin KaFai Lau 
13370d161581SDavid Ahern 	ip6_rt_copy_init(rt, res);
13388b9df265SMartin KaFai Lau 	rt->rt6i_flags |= RTF_CACHE;
133983a09abdSMartin KaFai Lau 	rt->rt6i_dst.addr = *daddr;
134083a09abdSMartin KaFai Lau 	rt->rt6i_dst.plen = 128;
13418b9df265SMartin KaFai Lau 
134285bd05deSDavid Ahern 	if (!rt6_is_gw_or_nonexthop(res)) {
134385bd05deSDavid Ahern 		if (f6i->fib6_dst.plen != 128 &&
134485bd05deSDavid Ahern 		    ipv6_addr_equal(&f6i->fib6_dst.addr, daddr))
134558c4fb86SYOSHIFUJI Hideaki 			rt->rt6i_flags |= RTF_ANYCAST;
13461da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES
13471da177e4SLinus Torvalds 		if (rt->rt6i_src.plen && saddr) {
13484e3fd7a0SAlexey Dobriyan 			rt->rt6i_src.addr = *saddr;
13491da177e4SLinus Torvalds 			rt->rt6i_src.plen = 128;
13501da177e4SLinus Torvalds 		}
13511da177e4SLinus Torvalds #endif
135295a9a5baSYOSHIFUJI Hideaki 	}
135395a9a5baSYOSHIFUJI Hideaki 
1354299d9939SYOSHIFUJI Hideaki 	return rt;
1355299d9939SYOSHIFUJI Hideaki }
1356299d9939SYOSHIFUJI Hideaki 
1357db3fedeeSDavid Ahern static struct rt6_info *ip6_rt_pcpu_alloc(const struct fib6_result *res)
1358d52d3997SMartin KaFai Lau {
1359db3fedeeSDavid Ahern 	struct fib6_info *f6i = res->f6i;
1360db3fedeeSDavid Ahern 	unsigned short flags = fib6_info_dst_flags(f6i);
13614832c30dSDavid Ahern 	struct net_device *dev;
1362d52d3997SMartin KaFai Lau 	struct rt6_info *pcpu_rt;
1363d52d3997SMartin KaFai Lau 
1364db3fedeeSDavid Ahern 	if (!fib6_info_hold_safe(f6i))
1365e873e4b9SWei Wang 		return NULL;
1366e873e4b9SWei Wang 
13674832c30dSDavid Ahern 	rcu_read_lock();
13680d161581SDavid Ahern 	dev = ip6_rt_get_dev_rcu(res);
1369d8882935SEric Dumazet 	pcpu_rt = ip6_dst_alloc(dev_net(dev), dev, flags | DST_NOCOUNT);
13704832c30dSDavid Ahern 	rcu_read_unlock();
1371e873e4b9SWei Wang 	if (!pcpu_rt) {
1372db3fedeeSDavid Ahern 		fib6_info_release(f6i);
1373d52d3997SMartin KaFai Lau 		return NULL;
1374e873e4b9SWei Wang 	}
13750d161581SDavid Ahern 	ip6_rt_copy_init(pcpu_rt, res);
1376d52d3997SMartin KaFai Lau 	pcpu_rt->rt6i_flags |= RTF_PCPU;
13778f34e53bSDavid Ahern 
13788f34e53bSDavid Ahern 	if (f6i->nh)
13798f34e53bSDavid Ahern 		pcpu_rt->sernum = rt_genid_ipv6(dev_net(dev));
13808f34e53bSDavid Ahern 
1381d52d3997SMartin KaFai Lau 	return pcpu_rt;
1382d52d3997SMartin KaFai Lau }
1383d52d3997SMartin KaFai Lau 
13848f34e53bSDavid Ahern static bool rt6_is_valid(const struct rt6_info *rt6)
13858f34e53bSDavid Ahern {
13868f34e53bSDavid Ahern 	return rt6->sernum == rt_genid_ipv6(dev_net(rt6->dst.dev));
13878f34e53bSDavid Ahern }
13888f34e53bSDavid Ahern 
138966f5d6ceSWei Wang /* It should be called with rcu_read_lock() acquired */
1390db3fedeeSDavid Ahern static struct rt6_info *rt6_get_pcpu_route(const struct fib6_result *res)
1391d52d3997SMartin KaFai Lau {
1392c353071aSEric Dumazet 	struct rt6_info *pcpu_rt;
1393d52d3997SMartin KaFai Lau 
1394c353071aSEric Dumazet 	pcpu_rt = this_cpu_read(*res->nh->rt6i_pcpu);
1395d52d3997SMartin KaFai Lau 
13968f34e53bSDavid Ahern 	if (pcpu_rt && pcpu_rt->sernum && !rt6_is_valid(pcpu_rt)) {
13978f34e53bSDavid Ahern 		struct rt6_info *prev, **p;
13988f34e53bSDavid Ahern 
13998f34e53bSDavid Ahern 		p = this_cpu_ptr(res->nh->rt6i_pcpu);
14008f34e53bSDavid Ahern 		prev = xchg(p, NULL);
14018f34e53bSDavid Ahern 		if (prev) {
14028f34e53bSDavid Ahern 			dst_dev_put(&prev->dst);
14038f34e53bSDavid Ahern 			dst_release(&prev->dst);
14048f34e53bSDavid Ahern 		}
14058f34e53bSDavid Ahern 
14068f34e53bSDavid Ahern 		pcpu_rt = NULL;
14078f34e53bSDavid Ahern 	}
14088f34e53bSDavid Ahern 
1409a73e4195SMartin KaFai Lau 	return pcpu_rt;
1410a73e4195SMartin KaFai Lau }
1411a73e4195SMartin KaFai Lau 
1412afb1d4b5SDavid Ahern static struct rt6_info *rt6_make_pcpu_route(struct net *net,
1413db3fedeeSDavid Ahern 					    const struct fib6_result *res)
1414a73e4195SMartin KaFai Lau {
1415a73e4195SMartin KaFai Lau 	struct rt6_info *pcpu_rt, *prev, **p;
1416d52d3997SMartin KaFai Lau 
1417db3fedeeSDavid Ahern 	pcpu_rt = ip6_rt_pcpu_alloc(res);
14180e09edccSWei Wang 	if (!pcpu_rt)
14190e09edccSWei Wang 		return NULL;
1420d52d3997SMartin KaFai Lau 
1421f40b6ae2SDavid Ahern 	p = this_cpu_ptr(res->nh->rt6i_pcpu);
1422d52d3997SMartin KaFai Lau 	prev = cmpxchg(p, NULL, pcpu_rt);
1423951f788aSEric Dumazet 	BUG_ON(prev);
1424a94b9367SWei Wang 
142561fb0d01SEric Dumazet 	if (res->f6i->fib6_destroying) {
142661fb0d01SEric Dumazet 		struct fib6_info *from;
142761fb0d01SEric Dumazet 
142861fb0d01SEric Dumazet 		from = xchg((__force struct fib6_info **)&pcpu_rt->from, NULL);
142961fb0d01SEric Dumazet 		fib6_info_release(from);
143061fb0d01SEric Dumazet 	}
143161fb0d01SEric Dumazet 
1432d52d3997SMartin KaFai Lau 	return pcpu_rt;
1433d52d3997SMartin KaFai Lau }
1434d52d3997SMartin KaFai Lau 
143535732d01SWei Wang /* exception hash table implementation
143635732d01SWei Wang  */
143735732d01SWei Wang static DEFINE_SPINLOCK(rt6_exception_lock);
143835732d01SWei Wang 
143935732d01SWei Wang /* Remove rt6_ex from hash table and free the memory
144035732d01SWei Wang  * Caller must hold rt6_exception_lock
144135732d01SWei Wang  */
144235732d01SWei Wang static void rt6_remove_exception(struct rt6_exception_bucket *bucket,
144335732d01SWei Wang 				 struct rt6_exception *rt6_ex)
144435732d01SWei Wang {
1445f5b51fe8SPaolo Abeni 	struct fib6_info *from;
1446b2427e67SColin Ian King 	struct net *net;
144781eb8447SWei Wang 
144835732d01SWei Wang 	if (!bucket || !rt6_ex)
144935732d01SWei Wang 		return;
1450b2427e67SColin Ian King 
1451b2427e67SColin Ian King 	net = dev_net(rt6_ex->rt6i->dst.dev);
1452f5b51fe8SPaolo Abeni 	net->ipv6.rt6_stats->fib_rt_cache--;
1453f5b51fe8SPaolo Abeni 
1454f5b51fe8SPaolo Abeni 	/* purge completely the exception to allow releasing the held resources:
1455f5b51fe8SPaolo Abeni 	 * some [sk] cache may keep the dst around for unlimited time
1456f5b51fe8SPaolo Abeni 	 */
14570e233874SEric Dumazet 	from = xchg((__force struct fib6_info **)&rt6_ex->rt6i->from, NULL);
1458f5b51fe8SPaolo Abeni 	fib6_info_release(from);
1459f5b51fe8SPaolo Abeni 	dst_dev_put(&rt6_ex->rt6i->dst);
1460f5b51fe8SPaolo Abeni 
146135732d01SWei Wang 	hlist_del_rcu(&rt6_ex->hlist);
146277634cc6SDavid Ahern 	dst_release(&rt6_ex->rt6i->dst);
146335732d01SWei Wang 	kfree_rcu(rt6_ex, rcu);
146435732d01SWei Wang 	WARN_ON_ONCE(!bucket->depth);
146535732d01SWei Wang 	bucket->depth--;
146635732d01SWei Wang }
146735732d01SWei Wang 
146835732d01SWei Wang /* Remove oldest rt6_ex in bucket and free the memory
146935732d01SWei Wang  * Caller must hold rt6_exception_lock
147035732d01SWei Wang  */
147135732d01SWei Wang static void rt6_exception_remove_oldest(struct rt6_exception_bucket *bucket)
147235732d01SWei Wang {
147335732d01SWei Wang 	struct rt6_exception *rt6_ex, *oldest = NULL;
147435732d01SWei Wang 
147535732d01SWei Wang 	if (!bucket)
147635732d01SWei Wang 		return;
147735732d01SWei Wang 
147835732d01SWei Wang 	hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
147935732d01SWei Wang 		if (!oldest || time_before(rt6_ex->stamp, oldest->stamp))
148035732d01SWei Wang 			oldest = rt6_ex;
148135732d01SWei Wang 	}
148235732d01SWei Wang 	rt6_remove_exception(bucket, oldest);
148335732d01SWei Wang }
148435732d01SWei Wang 
148535732d01SWei Wang static u32 rt6_exception_hash(const struct in6_addr *dst,
148635732d01SWei Wang 			      const struct in6_addr *src)
148735732d01SWei Wang {
148849ecc2e9SEric Dumazet 	static siphash_aligned_key_t rt6_exception_key;
14894785305cSEric Dumazet 	struct {
14904785305cSEric Dumazet 		struct in6_addr dst;
14914785305cSEric Dumazet 		struct in6_addr src;
14924785305cSEric Dumazet 	} __aligned(SIPHASH_ALIGNMENT) combined = {
14934785305cSEric Dumazet 		.dst = *dst,
14944785305cSEric Dumazet 	};
14954785305cSEric Dumazet 	u64 val;
149635732d01SWei Wang 
14974785305cSEric Dumazet 	net_get_random_once(&rt6_exception_key, sizeof(rt6_exception_key));
149835732d01SWei Wang 
149935732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES
150035732d01SWei Wang 	if (src)
15014785305cSEric Dumazet 		combined.src = *src;
150235732d01SWei Wang #endif
15034785305cSEric Dumazet 	val = siphash(&combined, sizeof(combined), &rt6_exception_key);
15044785305cSEric Dumazet 
15054785305cSEric Dumazet 	return hash_64(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT);
150635732d01SWei Wang }
150735732d01SWei Wang 
150835732d01SWei Wang /* Helper function to find the cached rt in the hash table
150935732d01SWei Wang  * and update bucket pointer to point to the bucket for this
151035732d01SWei Wang  * (daddr, saddr) pair
151135732d01SWei Wang  * Caller must hold rt6_exception_lock
151235732d01SWei Wang  */
151335732d01SWei Wang static struct rt6_exception *
151435732d01SWei Wang __rt6_find_exception_spinlock(struct rt6_exception_bucket **bucket,
151535732d01SWei Wang 			      const struct in6_addr *daddr,
151635732d01SWei Wang 			      const struct in6_addr *saddr)
151735732d01SWei Wang {
151835732d01SWei Wang 	struct rt6_exception *rt6_ex;
151935732d01SWei Wang 	u32 hval;
152035732d01SWei Wang 
152135732d01SWei Wang 	if (!(*bucket) || !daddr)
152235732d01SWei Wang 		return NULL;
152335732d01SWei Wang 
152435732d01SWei Wang 	hval = rt6_exception_hash(daddr, saddr);
152535732d01SWei Wang 	*bucket += hval;
152635732d01SWei Wang 
152735732d01SWei Wang 	hlist_for_each_entry(rt6_ex, &(*bucket)->chain, hlist) {
152835732d01SWei Wang 		struct rt6_info *rt6 = rt6_ex->rt6i;
152935732d01SWei Wang 		bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
153035732d01SWei Wang 
153135732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES
153235732d01SWei Wang 		if (matched && saddr)
153335732d01SWei Wang 			matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
153435732d01SWei Wang #endif
153535732d01SWei Wang 		if (matched)
153635732d01SWei Wang 			return rt6_ex;
153735732d01SWei Wang 	}
153835732d01SWei Wang 	return NULL;
153935732d01SWei Wang }
154035732d01SWei Wang 
154135732d01SWei Wang /* Helper function to find the cached rt in the hash table
154235732d01SWei Wang  * and update bucket pointer to point to the bucket for this
154335732d01SWei Wang  * (daddr, saddr) pair
154435732d01SWei Wang  * Caller must hold rcu_read_lock()
154535732d01SWei Wang  */
154635732d01SWei Wang static struct rt6_exception *
154735732d01SWei Wang __rt6_find_exception_rcu(struct rt6_exception_bucket **bucket,
154835732d01SWei Wang 			 const struct in6_addr *daddr,
154935732d01SWei Wang 			 const struct in6_addr *saddr)
155035732d01SWei Wang {
155135732d01SWei Wang 	struct rt6_exception *rt6_ex;
155235732d01SWei Wang 	u32 hval;
155335732d01SWei Wang 
155435732d01SWei Wang 	WARN_ON_ONCE(!rcu_read_lock_held());
155535732d01SWei Wang 
155635732d01SWei Wang 	if (!(*bucket) || !daddr)
155735732d01SWei Wang 		return NULL;
155835732d01SWei Wang 
155935732d01SWei Wang 	hval = rt6_exception_hash(daddr, saddr);
156035732d01SWei Wang 	*bucket += hval;
156135732d01SWei Wang 
156235732d01SWei Wang 	hlist_for_each_entry_rcu(rt6_ex, &(*bucket)->chain, hlist) {
156335732d01SWei Wang 		struct rt6_info *rt6 = rt6_ex->rt6i;
156435732d01SWei Wang 		bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr);
156535732d01SWei Wang 
156635732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES
156735732d01SWei Wang 		if (matched && saddr)
156835732d01SWei Wang 			matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr);
156935732d01SWei Wang #endif
157035732d01SWei Wang 		if (matched)
157135732d01SWei Wang 			return rt6_ex;
157235732d01SWei Wang 	}
157335732d01SWei Wang 	return NULL;
157435732d01SWei Wang }
157535732d01SWei Wang 
1576b748f260SDavid Ahern static unsigned int fib6_mtu(const struct fib6_result *res)
157735732d01SWei Wang {
1578b748f260SDavid Ahern 	const struct fib6_nh *nh = res->nh;
1579d4ead6b3SDavid Ahern 	unsigned int mtu;
1580d4ead6b3SDavid Ahern 
1581b748f260SDavid Ahern 	if (res->f6i->fib6_pmtu) {
1582b748f260SDavid Ahern 		mtu = res->f6i->fib6_pmtu;
1583dcd1f572SDavid Ahern 	} else {
1584b748f260SDavid Ahern 		struct net_device *dev = nh->fib_nh_dev;
1585dcd1f572SDavid Ahern 		struct inet6_dev *idev;
1586dcd1f572SDavid Ahern 
1587dcd1f572SDavid Ahern 		rcu_read_lock();
1588dcd1f572SDavid Ahern 		idev = __in6_dev_get(dev);
1589dcd1f572SDavid Ahern 		mtu = idev->cnf.mtu6;
1590dcd1f572SDavid Ahern 		rcu_read_unlock();
1591dcd1f572SDavid Ahern 	}
1592dcd1f572SDavid Ahern 
1593d4ead6b3SDavid Ahern 	mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
1594d4ead6b3SDavid Ahern 
1595b748f260SDavid Ahern 	return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu);
1596d4ead6b3SDavid Ahern }
1597d4ead6b3SDavid Ahern 
1598cc5c073aSDavid Ahern #define FIB6_EXCEPTION_BUCKET_FLUSHED  0x1UL
1599cc5c073aSDavid Ahern 
1600cc5c073aSDavid Ahern /* used when the flushed bit is not relevant, only access to the bucket
1601cc5c073aSDavid Ahern  * (ie., all bucket users except rt6_insert_exception);
1602cc5c073aSDavid Ahern  *
1603cc5c073aSDavid Ahern  * called under rcu lock; sometimes called with rt6_exception_lock held
1604cc5c073aSDavid Ahern  */
1605cc5c073aSDavid Ahern static
1606cc5c073aSDavid Ahern struct rt6_exception_bucket *fib6_nh_get_excptn_bucket(const struct fib6_nh *nh,
1607cc5c073aSDavid Ahern 						       spinlock_t *lock)
1608cc5c073aSDavid Ahern {
1609cc5c073aSDavid Ahern 	struct rt6_exception_bucket *bucket;
1610cc5c073aSDavid Ahern 
1611cc5c073aSDavid Ahern 	if (lock)
1612cc5c073aSDavid Ahern 		bucket = rcu_dereference_protected(nh->rt6i_exception_bucket,
1613cc5c073aSDavid Ahern 						   lockdep_is_held(lock));
1614cc5c073aSDavid Ahern 	else
1615cc5c073aSDavid Ahern 		bucket = rcu_dereference(nh->rt6i_exception_bucket);
1616cc5c073aSDavid Ahern 
1617cc5c073aSDavid Ahern 	/* remove bucket flushed bit if set */
1618cc5c073aSDavid Ahern 	if (bucket) {
1619cc5c073aSDavid Ahern 		unsigned long p = (unsigned long)bucket;
1620cc5c073aSDavid Ahern 
1621cc5c073aSDavid Ahern 		p &= ~FIB6_EXCEPTION_BUCKET_FLUSHED;
1622cc5c073aSDavid Ahern 		bucket = (struct rt6_exception_bucket *)p;
1623cc5c073aSDavid Ahern 	}
1624cc5c073aSDavid Ahern 
1625cc5c073aSDavid Ahern 	return bucket;
1626cc5c073aSDavid Ahern }
1627cc5c073aSDavid Ahern 
1628cc5c073aSDavid Ahern static bool fib6_nh_excptn_bucket_flushed(struct rt6_exception_bucket *bucket)
1629cc5c073aSDavid Ahern {
1630cc5c073aSDavid Ahern 	unsigned long p = (unsigned long)bucket;
1631cc5c073aSDavid Ahern 
1632cc5c073aSDavid Ahern 	return !!(p & FIB6_EXCEPTION_BUCKET_FLUSHED);
1633cc5c073aSDavid Ahern }
1634cc5c073aSDavid Ahern 
1635cc5c073aSDavid Ahern /* called with rt6_exception_lock held */
1636cc5c073aSDavid Ahern static void fib6_nh_excptn_bucket_set_flushed(struct fib6_nh *nh,
1637cc5c073aSDavid Ahern 					      spinlock_t *lock)
1638cc5c073aSDavid Ahern {
1639cc5c073aSDavid Ahern 	struct rt6_exception_bucket *bucket;
1640cc5c073aSDavid Ahern 	unsigned long p;
1641cc5c073aSDavid Ahern 
1642cc5c073aSDavid Ahern 	bucket = rcu_dereference_protected(nh->rt6i_exception_bucket,
1643cc5c073aSDavid Ahern 					   lockdep_is_held(lock));
1644cc5c073aSDavid Ahern 
1645cc5c073aSDavid Ahern 	p = (unsigned long)bucket;
1646cc5c073aSDavid Ahern 	p |= FIB6_EXCEPTION_BUCKET_FLUSHED;
1647cc5c073aSDavid Ahern 	bucket = (struct rt6_exception_bucket *)p;
1648cc5c073aSDavid Ahern 	rcu_assign_pointer(nh->rt6i_exception_bucket, bucket);
1649cc5c073aSDavid Ahern }
1650cc5c073aSDavid Ahern 
165135732d01SWei Wang static int rt6_insert_exception(struct rt6_info *nrt,
16525012f0a5SDavid Ahern 				const struct fib6_result *res)
165335732d01SWei Wang {
16545e670d84SDavid Ahern 	struct net *net = dev_net(nrt->dst.dev);
165535732d01SWei Wang 	struct rt6_exception_bucket *bucket;
1656cc5c073aSDavid Ahern 	struct fib6_info *f6i = res->f6i;
165735732d01SWei Wang 	struct in6_addr *src_key = NULL;
165835732d01SWei Wang 	struct rt6_exception *rt6_ex;
1659cc5c073aSDavid Ahern 	struct fib6_nh *nh = res->nh;
1660a00df2caSEric Dumazet 	int max_depth;
166135732d01SWei Wang 	int err = 0;
166235732d01SWei Wang 
166335732d01SWei Wang 	spin_lock_bh(&rt6_exception_lock);
166435732d01SWei Wang 
1665cc5c073aSDavid Ahern 	bucket = rcu_dereference_protected(nh->rt6i_exception_bucket,
166635732d01SWei Wang 					  lockdep_is_held(&rt6_exception_lock));
166735732d01SWei Wang 	if (!bucket) {
166835732d01SWei Wang 		bucket = kcalloc(FIB6_EXCEPTION_BUCKET_SIZE, sizeof(*bucket),
166935732d01SWei Wang 				 GFP_ATOMIC);
167035732d01SWei Wang 		if (!bucket) {
167135732d01SWei Wang 			err = -ENOMEM;
167235732d01SWei Wang 			goto out;
167335732d01SWei Wang 		}
1674cc5c073aSDavid Ahern 		rcu_assign_pointer(nh->rt6i_exception_bucket, bucket);
1675cc5c073aSDavid Ahern 	} else if (fib6_nh_excptn_bucket_flushed(bucket)) {
1676cc5c073aSDavid Ahern 		err = -EINVAL;
1677cc5c073aSDavid Ahern 		goto out;
167835732d01SWei Wang 	}
167935732d01SWei Wang 
168035732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES
16815012f0a5SDavid Ahern 	/* fib6_src.plen != 0 indicates f6i is in subtree
168235732d01SWei Wang 	 * and exception table is indexed by a hash of
16835012f0a5SDavid Ahern 	 * both fib6_dst and fib6_src.
168435732d01SWei Wang 	 * Otherwise, the exception table is indexed by
16855012f0a5SDavid Ahern 	 * a hash of only fib6_dst.
168635732d01SWei Wang 	 */
16875012f0a5SDavid Ahern 	if (f6i->fib6_src.plen)
168835732d01SWei Wang 		src_key = &nrt->rt6i_src.addr;
168935732d01SWei Wang #endif
16905012f0a5SDavid Ahern 	/* rt6_mtu_change() might lower mtu on f6i.
1691f5bbe7eeSWei Wang 	 * Only insert this exception route if its mtu
16925012f0a5SDavid Ahern 	 * is less than f6i's mtu value.
1693f5bbe7eeSWei Wang 	 */
1694b748f260SDavid Ahern 	if (dst_metric_raw(&nrt->dst, RTAX_MTU) >= fib6_mtu(res)) {
1695f5bbe7eeSWei Wang 		err = -EINVAL;
1696f5bbe7eeSWei Wang 		goto out;
1697f5bbe7eeSWei Wang 	}
169860006a48SWei Wang 
169935732d01SWei Wang 	rt6_ex = __rt6_find_exception_spinlock(&bucket, &nrt->rt6i_dst.addr,
170035732d01SWei Wang 					       src_key);
170135732d01SWei Wang 	if (rt6_ex)
170235732d01SWei Wang 		rt6_remove_exception(bucket, rt6_ex);
170335732d01SWei Wang 
170435732d01SWei Wang 	rt6_ex = kzalloc(sizeof(*rt6_ex), GFP_ATOMIC);
170535732d01SWei Wang 	if (!rt6_ex) {
170635732d01SWei Wang 		err = -ENOMEM;
170735732d01SWei Wang 		goto out;
170835732d01SWei Wang 	}
170935732d01SWei Wang 	rt6_ex->rt6i = nrt;
171035732d01SWei Wang 	rt6_ex->stamp = jiffies;
171135732d01SWei Wang 	hlist_add_head_rcu(&rt6_ex->hlist, &bucket->chain);
171235732d01SWei Wang 	bucket->depth++;
171381eb8447SWei Wang 	net->ipv6.rt6_stats->fib_rt_cache++;
171435732d01SWei Wang 
1715a00df2caSEric Dumazet 	/* Randomize max depth to avoid some side channels attacks. */
1716a00df2caSEric Dumazet 	max_depth = FIB6_MAX_DEPTH + prandom_u32_max(FIB6_MAX_DEPTH);
1717a00df2caSEric Dumazet 	while (bucket->depth > max_depth)
171835732d01SWei Wang 		rt6_exception_remove_oldest(bucket);
171935732d01SWei Wang 
172035732d01SWei Wang out:
172135732d01SWei Wang 	spin_unlock_bh(&rt6_exception_lock);
172235732d01SWei Wang 
172335732d01SWei Wang 	/* Update fn->fn_sernum to invalidate all cached dst */
1724b886d5f2SPaolo Abeni 	if (!err) {
17255012f0a5SDavid Ahern 		spin_lock_bh(&f6i->fib6_table->tb6_lock);
17265012f0a5SDavid Ahern 		fib6_update_sernum(net, f6i);
17275012f0a5SDavid Ahern 		spin_unlock_bh(&f6i->fib6_table->tb6_lock);
1728b886d5f2SPaolo Abeni 		fib6_force_start_gc(net);
1729b886d5f2SPaolo Abeni 	}
173035732d01SWei Wang 
173135732d01SWei Wang 	return err;
173235732d01SWei Wang }
173335732d01SWei Wang 
1734c0b220cfSDavid Ahern static void fib6_nh_flush_exceptions(struct fib6_nh *nh, struct fib6_info *from)
173535732d01SWei Wang {
173635732d01SWei Wang 	struct rt6_exception_bucket *bucket;
173735732d01SWei Wang 	struct rt6_exception *rt6_ex;
173835732d01SWei Wang 	struct hlist_node *tmp;
173935732d01SWei Wang 	int i;
174035732d01SWei Wang 
174135732d01SWei Wang 	spin_lock_bh(&rt6_exception_lock);
174235732d01SWei Wang 
1743cc5c073aSDavid Ahern 	bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock);
174435732d01SWei Wang 	if (!bucket)
174535732d01SWei Wang 		goto out;
174635732d01SWei Wang 
1747cc5c073aSDavid Ahern 	/* Prevent rt6_insert_exception() to recreate the bucket list */
1748cc5c073aSDavid Ahern 	if (!from)
1749cc5c073aSDavid Ahern 		fib6_nh_excptn_bucket_set_flushed(nh, &rt6_exception_lock);
1750cc5c073aSDavid Ahern 
175135732d01SWei Wang 	for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
1752cc5c073aSDavid Ahern 		hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist) {
1753cc5c073aSDavid Ahern 			if (!from ||
1754cc5c073aSDavid Ahern 			    rcu_access_pointer(rt6_ex->rt6i->from) == from)
175535732d01SWei Wang 				rt6_remove_exception(bucket, rt6_ex);
1756cc5c073aSDavid Ahern 		}
1757cc5c073aSDavid Ahern 		WARN_ON_ONCE(!from && bucket->depth);
175835732d01SWei Wang 		bucket++;
175935732d01SWei Wang 	}
176035732d01SWei Wang out:
176135732d01SWei Wang 	spin_unlock_bh(&rt6_exception_lock);
176235732d01SWei Wang }
176335732d01SWei Wang 
1764e659ba31SDavid Ahern static int rt6_nh_flush_exceptions(struct fib6_nh *nh, void *arg)
1765e659ba31SDavid Ahern {
1766e659ba31SDavid Ahern 	struct fib6_info *f6i = arg;
1767e659ba31SDavid Ahern 
1768e659ba31SDavid Ahern 	fib6_nh_flush_exceptions(nh, f6i);
1769e659ba31SDavid Ahern 
1770e659ba31SDavid Ahern 	return 0;
1771e659ba31SDavid Ahern }
1772e659ba31SDavid Ahern 
1773c0b220cfSDavid Ahern void rt6_flush_exceptions(struct fib6_info *f6i)
1774c0b220cfSDavid Ahern {
1775e659ba31SDavid Ahern 	if (f6i->nh)
1776e659ba31SDavid Ahern 		nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_flush_exceptions,
1777e659ba31SDavid Ahern 					 f6i);
1778e659ba31SDavid Ahern 	else
17791cf844c7SDavid Ahern 		fib6_nh_flush_exceptions(f6i->fib6_nh, f6i);
1780c0b220cfSDavid Ahern }
1781c0b220cfSDavid Ahern 
178235732d01SWei Wang /* Find cached rt in the hash table inside passed in rt
178335732d01SWei Wang  * Caller has to hold rcu_read_lock()
178435732d01SWei Wang  */
17857e4b5128SDavid Ahern static struct rt6_info *rt6_find_cached_rt(const struct fib6_result *res,
1786510e2cedSWei Wang 					   const struct in6_addr *daddr,
1787510e2cedSWei Wang 					   const struct in6_addr *saddr)
178835732d01SWei Wang {
1789510e2cedSWei Wang 	const struct in6_addr *src_key = NULL;
179035732d01SWei Wang 	struct rt6_exception_bucket *bucket;
179135732d01SWei Wang 	struct rt6_exception *rt6_ex;
17927e4b5128SDavid Ahern 	struct rt6_info *ret = NULL;
179335732d01SWei Wang 
179435732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES
17957e4b5128SDavid Ahern 	/* fib6i_src.plen != 0 indicates f6i is in subtree
179635732d01SWei Wang 	 * and exception table is indexed by a hash of
17977e4b5128SDavid Ahern 	 * both fib6_dst and fib6_src.
1798510e2cedSWei Wang 	 * However, the src addr used to create the hash
1799510e2cedSWei Wang 	 * might not be exactly the passed in saddr which
1800510e2cedSWei Wang 	 * is a /128 addr from the flow.
1801510e2cedSWei Wang 	 * So we need to use f6i->fib6_src to redo lookup
1802510e2cedSWei Wang 	 * if the passed in saddr does not find anything.
1803510e2cedSWei Wang 	 * (See the logic in ip6_rt_cache_alloc() on how
1804510e2cedSWei Wang 	 * rt->rt6i_src is updated.)
180535732d01SWei Wang 	 */
18067e4b5128SDavid Ahern 	if (res->f6i->fib6_src.plen)
180735732d01SWei Wang 		src_key = saddr;
1808510e2cedSWei Wang find_ex:
180935732d01SWei Wang #endif
1810cc5c073aSDavid Ahern 	bucket = fib6_nh_get_excptn_bucket(res->nh, NULL);
181135732d01SWei Wang 	rt6_ex = __rt6_find_exception_rcu(&bucket, daddr, src_key);
181235732d01SWei Wang 
181335732d01SWei Wang 	if (rt6_ex && !rt6_check_expired(rt6_ex->rt6i))
18147e4b5128SDavid Ahern 		ret = rt6_ex->rt6i;
181535732d01SWei Wang 
1816510e2cedSWei Wang #ifdef CONFIG_IPV6_SUBTREES
1817510e2cedSWei Wang 	/* Use fib6_src as src_key and redo lookup */
1818510e2cedSWei Wang 	if (!ret && src_key && src_key != &res->f6i->fib6_src.addr) {
1819510e2cedSWei Wang 		src_key = &res->f6i->fib6_src.addr;
1820510e2cedSWei Wang 		goto find_ex;
1821510e2cedSWei Wang 	}
1822510e2cedSWei Wang #endif
1823510e2cedSWei Wang 
18247e4b5128SDavid Ahern 	return ret;
182535732d01SWei Wang }
182635732d01SWei Wang 
182735732d01SWei Wang /* Remove the passed in cached rt from the hash table that contains it */
1828cc5c073aSDavid Ahern static int fib6_nh_remove_exception(const struct fib6_nh *nh, int plen,
1829c0b220cfSDavid Ahern 				    const struct rt6_info *rt)
183035732d01SWei Wang {
1831c0b220cfSDavid Ahern 	const struct in6_addr *src_key = NULL;
183235732d01SWei Wang 	struct rt6_exception_bucket *bucket;
183335732d01SWei Wang 	struct rt6_exception *rt6_ex;
183435732d01SWei Wang 	int err;
183535732d01SWei Wang 
1836cc5c073aSDavid Ahern 	if (!rcu_access_pointer(nh->rt6i_exception_bucket))
183735732d01SWei Wang 		return -ENOENT;
183835732d01SWei Wang 
183935732d01SWei Wang 	spin_lock_bh(&rt6_exception_lock);
1840cc5c073aSDavid Ahern 	bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock);
1841cc5c073aSDavid Ahern 
184235732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES
1843cc5c073aSDavid Ahern 	/* rt6i_src.plen != 0 indicates 'from' is in subtree
1844cc5c073aSDavid Ahern 	 * and exception table is indexed by a hash of
1845cc5c073aSDavid Ahern 	 * both rt6i_dst and rt6i_src.
184635732d01SWei Wang 	 * Otherwise, the exception table is indexed by
184735732d01SWei Wang 	 * a hash of only rt6i_dst.
184835732d01SWei Wang 	 */
1849c0b220cfSDavid Ahern 	if (plen)
185035732d01SWei Wang 		src_key = &rt->rt6i_src.addr;
185135732d01SWei Wang #endif
185235732d01SWei Wang 	rt6_ex = __rt6_find_exception_spinlock(&bucket,
185335732d01SWei Wang 					       &rt->rt6i_dst.addr,
185435732d01SWei Wang 					       src_key);
185535732d01SWei Wang 	if (rt6_ex) {
185635732d01SWei Wang 		rt6_remove_exception(bucket, rt6_ex);
185735732d01SWei Wang 		err = 0;
185835732d01SWei Wang 	} else {
185935732d01SWei Wang 		err = -ENOENT;
186035732d01SWei Wang 	}
186135732d01SWei Wang 
186235732d01SWei Wang 	spin_unlock_bh(&rt6_exception_lock);
186335732d01SWei Wang 	return err;
186435732d01SWei Wang }
186535732d01SWei Wang 
1866e659ba31SDavid Ahern struct fib6_nh_excptn_arg {
1867e659ba31SDavid Ahern 	struct rt6_info	*rt;
1868e659ba31SDavid Ahern 	int		plen;
1869e659ba31SDavid Ahern };
1870e659ba31SDavid Ahern 
1871e659ba31SDavid Ahern static int rt6_nh_remove_exception_rt(struct fib6_nh *nh, void *_arg)
1872e659ba31SDavid Ahern {
1873e659ba31SDavid Ahern 	struct fib6_nh_excptn_arg *arg = _arg;
1874e659ba31SDavid Ahern 	int err;
1875e659ba31SDavid Ahern 
1876e659ba31SDavid Ahern 	err = fib6_nh_remove_exception(nh, arg->plen, arg->rt);
1877e659ba31SDavid Ahern 	if (err == 0)
1878e659ba31SDavid Ahern 		return 1;
1879e659ba31SDavid Ahern 
1880e659ba31SDavid Ahern 	return 0;
1881e659ba31SDavid Ahern }
1882e659ba31SDavid Ahern 
1883c0b220cfSDavid Ahern static int rt6_remove_exception_rt(struct rt6_info *rt)
1884c0b220cfSDavid Ahern {
1885c0b220cfSDavid Ahern 	struct fib6_info *from;
1886c0b220cfSDavid Ahern 
1887c0b220cfSDavid Ahern 	from = rcu_dereference(rt->from);
1888cc5c073aSDavid Ahern 	if (!from || !(rt->rt6i_flags & RTF_CACHE))
1889c0b220cfSDavid Ahern 		return -EINVAL;
1890c0b220cfSDavid Ahern 
1891e659ba31SDavid Ahern 	if (from->nh) {
1892e659ba31SDavid Ahern 		struct fib6_nh_excptn_arg arg = {
1893e659ba31SDavid Ahern 			.rt = rt,
1894e659ba31SDavid Ahern 			.plen = from->fib6_src.plen
1895e659ba31SDavid Ahern 		};
1896e659ba31SDavid Ahern 		int rc;
1897e659ba31SDavid Ahern 
1898e659ba31SDavid Ahern 		/* rc = 1 means an entry was found */
1899e659ba31SDavid Ahern 		rc = nexthop_for_each_fib6_nh(from->nh,
1900e659ba31SDavid Ahern 					      rt6_nh_remove_exception_rt,
1901e659ba31SDavid Ahern 					      &arg);
1902e659ba31SDavid Ahern 		return rc ? 0 : -ENOENT;
1903e659ba31SDavid Ahern 	}
1904e659ba31SDavid Ahern 
19051cf844c7SDavid Ahern 	return fib6_nh_remove_exception(from->fib6_nh,
1906cc5c073aSDavid Ahern 					from->fib6_src.plen, rt);
1907c0b220cfSDavid Ahern }
1908c0b220cfSDavid Ahern 
190935732d01SWei Wang /* Find rt6_ex which contains the passed in rt cache and
191035732d01SWei Wang  * refresh its stamp
191135732d01SWei Wang  */
1912cc5c073aSDavid Ahern static void fib6_nh_update_exception(const struct fib6_nh *nh, int plen,
1913c0b220cfSDavid Ahern 				     const struct rt6_info *rt)
191435732d01SWei Wang {
1915c0b220cfSDavid Ahern 	const struct in6_addr *src_key = NULL;
191635732d01SWei Wang 	struct rt6_exception_bucket *bucket;
191735732d01SWei Wang 	struct rt6_exception *rt6_ex;
1918193f3685SPaolo Abeni 
1919cc5c073aSDavid Ahern 	bucket = fib6_nh_get_excptn_bucket(nh, NULL);
192035732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES
1921cc5c073aSDavid Ahern 	/* rt6i_src.plen != 0 indicates 'from' is in subtree
1922cc5c073aSDavid Ahern 	 * and exception table is indexed by a hash of
1923cc5c073aSDavid Ahern 	 * both rt6i_dst and rt6i_src.
192435732d01SWei Wang 	 * Otherwise, the exception table is indexed by
192535732d01SWei Wang 	 * a hash of only rt6i_dst.
192635732d01SWei Wang 	 */
1927c0b220cfSDavid Ahern 	if (plen)
192835732d01SWei Wang 		src_key = &rt->rt6i_src.addr;
192935732d01SWei Wang #endif
1930cc5c073aSDavid Ahern 	rt6_ex = __rt6_find_exception_rcu(&bucket, &rt->rt6i_dst.addr, src_key);
193135732d01SWei Wang 	if (rt6_ex)
193235732d01SWei Wang 		rt6_ex->stamp = jiffies;
1933c0b220cfSDavid Ahern }
193435732d01SWei Wang 
1935e659ba31SDavid Ahern struct fib6_nh_match_arg {
1936e659ba31SDavid Ahern 	const struct net_device *dev;
1937e659ba31SDavid Ahern 	const struct in6_addr	*gw;
1938e659ba31SDavid Ahern 	struct fib6_nh		*match;
1939e659ba31SDavid Ahern };
1940e659ba31SDavid Ahern 
1941e659ba31SDavid Ahern /* determine if fib6_nh has given device and gateway */
1942e659ba31SDavid Ahern static int fib6_nh_find_match(struct fib6_nh *nh, void *_arg)
1943e659ba31SDavid Ahern {
1944e659ba31SDavid Ahern 	struct fib6_nh_match_arg *arg = _arg;
1945e659ba31SDavid Ahern 
1946e659ba31SDavid Ahern 	if (arg->dev != nh->fib_nh_dev ||
1947e659ba31SDavid Ahern 	    (arg->gw && !nh->fib_nh_gw_family) ||
1948e659ba31SDavid Ahern 	    (!arg->gw && nh->fib_nh_gw_family) ||
1949e659ba31SDavid Ahern 	    (arg->gw && !ipv6_addr_equal(arg->gw, &nh->fib_nh_gw6)))
1950e659ba31SDavid Ahern 		return 0;
1951e659ba31SDavid Ahern 
1952e659ba31SDavid Ahern 	arg->match = nh;
1953e659ba31SDavid Ahern 
1954e659ba31SDavid Ahern 	/* found a match, break the loop */
1955e659ba31SDavid Ahern 	return 1;
1956e659ba31SDavid Ahern }
1957e659ba31SDavid Ahern 
1958c0b220cfSDavid Ahern static void rt6_update_exception_stamp_rt(struct rt6_info *rt)
1959c0b220cfSDavid Ahern {
1960c0b220cfSDavid Ahern 	struct fib6_info *from;
1961e659ba31SDavid Ahern 	struct fib6_nh *fib6_nh;
1962c0b220cfSDavid Ahern 
1963c0b220cfSDavid Ahern 	rcu_read_lock();
1964c0b220cfSDavid Ahern 
1965c0b220cfSDavid Ahern 	from = rcu_dereference(rt->from);
1966c0b220cfSDavid Ahern 	if (!from || !(rt->rt6i_flags & RTF_CACHE))
1967c0b220cfSDavid Ahern 		goto unlock;
1968c0b220cfSDavid Ahern 
1969e659ba31SDavid Ahern 	if (from->nh) {
1970e659ba31SDavid Ahern 		struct fib6_nh_match_arg arg = {
1971e659ba31SDavid Ahern 			.dev = rt->dst.dev,
1972e659ba31SDavid Ahern 			.gw = &rt->rt6i_gateway,
1973e659ba31SDavid Ahern 		};
1974e659ba31SDavid Ahern 
1975e659ba31SDavid Ahern 		nexthop_for_each_fib6_nh(from->nh, fib6_nh_find_match, &arg);
1976e659ba31SDavid Ahern 
1977e659ba31SDavid Ahern 		if (!arg.match)
1978cff6a327SDavid Ahern 			goto unlock;
1979e659ba31SDavid Ahern 		fib6_nh = arg.match;
1980e659ba31SDavid Ahern 	} else {
1981e659ba31SDavid Ahern 		fib6_nh = from->fib6_nh;
1982e659ba31SDavid Ahern 	}
1983e659ba31SDavid Ahern 	fib6_nh_update_exception(fib6_nh, from->fib6_src.plen, rt);
1984193f3685SPaolo Abeni unlock:
198535732d01SWei Wang 	rcu_read_unlock();
198635732d01SWei Wang }
198735732d01SWei Wang 
1988e9fa1495SStefano Brivio static bool rt6_mtu_change_route_allowed(struct inet6_dev *idev,
1989e9fa1495SStefano Brivio 					 struct rt6_info *rt, int mtu)
1990e9fa1495SStefano Brivio {
1991e9fa1495SStefano Brivio 	/* If the new MTU is lower than the route PMTU, this new MTU will be the
1992e9fa1495SStefano Brivio 	 * lowest MTU in the path: always allow updating the route PMTU to
1993e9fa1495SStefano Brivio 	 * reflect PMTU decreases.
1994e9fa1495SStefano Brivio 	 *
1995e9fa1495SStefano Brivio 	 * If the new MTU is higher, and the route PMTU is equal to the local
1996e9fa1495SStefano Brivio 	 * MTU, this means the old MTU is the lowest in the path, so allow
1997e9fa1495SStefano Brivio 	 * updating it: if other nodes now have lower MTUs, PMTU discovery will
1998e9fa1495SStefano Brivio 	 * handle this.
1999e9fa1495SStefano Brivio 	 */
2000e9fa1495SStefano Brivio 
2001e9fa1495SStefano Brivio 	if (dst_mtu(&rt->dst) >= mtu)
2002e9fa1495SStefano Brivio 		return true;
2003e9fa1495SStefano Brivio 
2004e9fa1495SStefano Brivio 	if (dst_mtu(&rt->dst) == idev->cnf.mtu6)
2005e9fa1495SStefano Brivio 		return true;
2006e9fa1495SStefano Brivio 
2007e9fa1495SStefano Brivio 	return false;
2008e9fa1495SStefano Brivio }
2009e9fa1495SStefano Brivio 
2010e9fa1495SStefano Brivio static void rt6_exceptions_update_pmtu(struct inet6_dev *idev,
2011cc5c073aSDavid Ahern 				       const struct fib6_nh *nh, int mtu)
2012f5bbe7eeSWei Wang {
2013f5bbe7eeSWei Wang 	struct rt6_exception_bucket *bucket;
2014f5bbe7eeSWei Wang 	struct rt6_exception *rt6_ex;
2015f5bbe7eeSWei Wang 	int i;
2016f5bbe7eeSWei Wang 
2017cc5c073aSDavid Ahern 	bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock);
2018e9fa1495SStefano Brivio 	if (!bucket)
2019e9fa1495SStefano Brivio 		return;
2020e9fa1495SStefano Brivio 
2021f5bbe7eeSWei Wang 	for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
2022f5bbe7eeSWei Wang 		hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
2023f5bbe7eeSWei Wang 			struct rt6_info *entry = rt6_ex->rt6i;
2024e9fa1495SStefano Brivio 
2025e9fa1495SStefano Brivio 			/* For RTF_CACHE with rt6i_pmtu == 0 (i.e. a redirected
2026d4ead6b3SDavid Ahern 			 * route), the metrics of its rt->from have already
2027f5bbe7eeSWei Wang 			 * been updated.
2028f5bbe7eeSWei Wang 			 */
2029d4ead6b3SDavid Ahern 			if (dst_metric_raw(&entry->dst, RTAX_MTU) &&
2030e9fa1495SStefano Brivio 			    rt6_mtu_change_route_allowed(idev, entry, mtu))
2031d4ead6b3SDavid Ahern 				dst_metric_set(&entry->dst, RTAX_MTU, mtu);
2032f5bbe7eeSWei Wang 		}
2033f5bbe7eeSWei Wang 		bucket++;
2034f5bbe7eeSWei Wang 	}
2035f5bbe7eeSWei Wang }
2036f5bbe7eeSWei Wang 
2037b16cb459SWei Wang #define RTF_CACHE_GATEWAY	(RTF_GATEWAY | RTF_CACHE)
2038b16cb459SWei Wang 
2039cc5c073aSDavid Ahern static void fib6_nh_exceptions_clean_tohost(const struct fib6_nh *nh,
2040cc5c073aSDavid Ahern 					    const struct in6_addr *gateway)
2041b16cb459SWei Wang {
2042b16cb459SWei Wang 	struct rt6_exception_bucket *bucket;
2043b16cb459SWei Wang 	struct rt6_exception *rt6_ex;
2044b16cb459SWei Wang 	struct hlist_node *tmp;
2045b16cb459SWei Wang 	int i;
2046b16cb459SWei Wang 
2047cc5c073aSDavid Ahern 	if (!rcu_access_pointer(nh->rt6i_exception_bucket))
2048b16cb459SWei Wang 		return;
2049b16cb459SWei Wang 
2050b16cb459SWei Wang 	spin_lock_bh(&rt6_exception_lock);
2051cc5c073aSDavid Ahern 	bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock);
2052b16cb459SWei Wang 	if (bucket) {
2053b16cb459SWei Wang 		for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
2054b16cb459SWei Wang 			hlist_for_each_entry_safe(rt6_ex, tmp,
2055b16cb459SWei Wang 						  &bucket->chain, hlist) {
2056b16cb459SWei Wang 				struct rt6_info *entry = rt6_ex->rt6i;
2057b16cb459SWei Wang 
2058b16cb459SWei Wang 				if ((entry->rt6i_flags & RTF_CACHE_GATEWAY) ==
2059b16cb459SWei Wang 				    RTF_CACHE_GATEWAY &&
2060b16cb459SWei Wang 				    ipv6_addr_equal(gateway,
2061b16cb459SWei Wang 						    &entry->rt6i_gateway)) {
2062b16cb459SWei Wang 					rt6_remove_exception(bucket, rt6_ex);
2063b16cb459SWei Wang 				}
2064b16cb459SWei Wang 			}
2065b16cb459SWei Wang 			bucket++;
2066b16cb459SWei Wang 		}
2067b16cb459SWei Wang 	}
2068b16cb459SWei Wang 
2069b16cb459SWei Wang 	spin_unlock_bh(&rt6_exception_lock);
2070b16cb459SWei Wang }
2071b16cb459SWei Wang 
2072c757faa8SWei Wang static void rt6_age_examine_exception(struct rt6_exception_bucket *bucket,
2073c757faa8SWei Wang 				      struct rt6_exception *rt6_ex,
2074c757faa8SWei Wang 				      struct fib6_gc_args *gc_args,
2075c757faa8SWei Wang 				      unsigned long now)
2076c757faa8SWei Wang {
2077c757faa8SWei Wang 	struct rt6_info *rt = rt6_ex->rt6i;
2078c757faa8SWei Wang 
20791859bac0SPaolo Abeni 	/* we are pruning and obsoleting aged-out and non gateway exceptions
20801859bac0SPaolo Abeni 	 * even if others have still references to them, so that on next
20811859bac0SPaolo Abeni 	 * dst_check() such references can be dropped.
20821859bac0SPaolo Abeni 	 * EXPIRES exceptions - e.g. pmtu-generated ones are pruned when
20831859bac0SPaolo Abeni 	 * expired, independently from their aging, as per RFC 8201 section 4
20841859bac0SPaolo Abeni 	 */
208531afeb42SWei Wang 	if (!(rt->rt6i_flags & RTF_EXPIRES)) {
208631afeb42SWei Wang 		if (time_after_eq(now, rt->dst.lastuse + gc_args->timeout)) {
2087c757faa8SWei Wang 			RT6_TRACE("aging clone %p\n", rt);
2088c757faa8SWei Wang 			rt6_remove_exception(bucket, rt6_ex);
2089c757faa8SWei Wang 			return;
209031afeb42SWei Wang 		}
209131afeb42SWei Wang 	} else if (time_after(jiffies, rt->dst.expires)) {
209231afeb42SWei Wang 		RT6_TRACE("purging expired route %p\n", rt);
209331afeb42SWei Wang 		rt6_remove_exception(bucket, rt6_ex);
209431afeb42SWei Wang 		return;
209531afeb42SWei Wang 	}
209631afeb42SWei Wang 
209731afeb42SWei Wang 	if (rt->rt6i_flags & RTF_GATEWAY) {
2098c757faa8SWei Wang 		struct neighbour *neigh;
2099c757faa8SWei Wang 
21001bfa26ffSEric Dumazet 		neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
21011bfa26ffSEric Dumazet 
2102b7a320c3SXu Jia 		if (!(neigh && (neigh->flags & NTF_ROUTER))) {
2103c757faa8SWei Wang 			RT6_TRACE("purging route %p via non-router but gateway\n",
2104c757faa8SWei Wang 				  rt);
2105c757faa8SWei Wang 			rt6_remove_exception(bucket, rt6_ex);
2106c757faa8SWei Wang 			return;
2107c757faa8SWei Wang 		}
2108c757faa8SWei Wang 	}
210931afeb42SWei Wang 
2110c757faa8SWei Wang 	gc_args->more++;
2111c757faa8SWei Wang }
2112c757faa8SWei Wang 
2113cc5c073aSDavid Ahern static void fib6_nh_age_exceptions(const struct fib6_nh *nh,
2114c757faa8SWei Wang 				   struct fib6_gc_args *gc_args,
2115c757faa8SWei Wang 				   unsigned long now)
2116c757faa8SWei Wang {
2117c757faa8SWei Wang 	struct rt6_exception_bucket *bucket;
2118c757faa8SWei Wang 	struct rt6_exception *rt6_ex;
2119c757faa8SWei Wang 	struct hlist_node *tmp;
2120c757faa8SWei Wang 	int i;
2121c757faa8SWei Wang 
2122cc5c073aSDavid Ahern 	if (!rcu_access_pointer(nh->rt6i_exception_bucket))
2123c757faa8SWei Wang 		return;
2124c757faa8SWei Wang 
21251bfa26ffSEric Dumazet 	rcu_read_lock_bh();
21261bfa26ffSEric Dumazet 	spin_lock(&rt6_exception_lock);
2127cc5c073aSDavid Ahern 	bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock);
2128c757faa8SWei Wang 	if (bucket) {
2129c757faa8SWei Wang 		for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
2130c757faa8SWei Wang 			hlist_for_each_entry_safe(rt6_ex, tmp,
2131c757faa8SWei Wang 						  &bucket->chain, hlist) {
2132c757faa8SWei Wang 				rt6_age_examine_exception(bucket, rt6_ex,
2133c757faa8SWei Wang 							  gc_args, now);
2134c757faa8SWei Wang 			}
2135c757faa8SWei Wang 			bucket++;
2136c757faa8SWei Wang 		}
2137c757faa8SWei Wang 	}
21381bfa26ffSEric Dumazet 	spin_unlock(&rt6_exception_lock);
21391bfa26ffSEric Dumazet 	rcu_read_unlock_bh();
2140c757faa8SWei Wang }
2141c757faa8SWei Wang 
2142e659ba31SDavid Ahern struct fib6_nh_age_excptn_arg {
2143e659ba31SDavid Ahern 	struct fib6_gc_args	*gc_args;
2144e659ba31SDavid Ahern 	unsigned long		now;
2145e659ba31SDavid Ahern };
2146e659ba31SDavid Ahern 
2147e659ba31SDavid Ahern static int rt6_nh_age_exceptions(struct fib6_nh *nh, void *_arg)
2148e659ba31SDavid Ahern {
2149e659ba31SDavid Ahern 	struct fib6_nh_age_excptn_arg *arg = _arg;
2150e659ba31SDavid Ahern 
2151e659ba31SDavid Ahern 	fib6_nh_age_exceptions(nh, arg->gc_args, arg->now);
2152e659ba31SDavid Ahern 	return 0;
2153e659ba31SDavid Ahern }
2154e659ba31SDavid Ahern 
2155cc5c073aSDavid Ahern void rt6_age_exceptions(struct fib6_info *f6i,
2156c0b220cfSDavid Ahern 			struct fib6_gc_args *gc_args,
2157c0b220cfSDavid Ahern 			unsigned long now)
2158c0b220cfSDavid Ahern {
2159e659ba31SDavid Ahern 	if (f6i->nh) {
2160e659ba31SDavid Ahern 		struct fib6_nh_age_excptn_arg arg = {
2161e659ba31SDavid Ahern 			.gc_args = gc_args,
2162e659ba31SDavid Ahern 			.now = now
2163e659ba31SDavid Ahern 		};
2164e659ba31SDavid Ahern 
2165e659ba31SDavid Ahern 		nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_age_exceptions,
2166e659ba31SDavid Ahern 					 &arg);
2167e659ba31SDavid Ahern 	} else {
21681cf844c7SDavid Ahern 		fib6_nh_age_exceptions(f6i->fib6_nh, gc_args, now);
2169c0b220cfSDavid Ahern 	}
2170e659ba31SDavid Ahern }
2171c0b220cfSDavid Ahern 
21721d053da9SDavid Ahern /* must be called with rcu lock held */
2173effda4ddSDavid Ahern int fib6_table_lookup(struct net *net, struct fib6_table *table, int oif,
2174effda4ddSDavid Ahern 		      struct flowi6 *fl6, struct fib6_result *res, int strict)
21751da177e4SLinus Torvalds {
2176367efcb9SMartin KaFai Lau 	struct fib6_node *fn, *saved_fn;
21771da177e4SLinus Torvalds 
21786454743bSDavid Ahern 	fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
2179367efcb9SMartin KaFai Lau 	saved_fn = fn;
21801da177e4SLinus Torvalds 
2181ca254490SDavid Ahern 	if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
2182ca254490SDavid Ahern 		oif = 0;
2183ca254490SDavid Ahern 
2184a3c00e46SMartin KaFai Lau redo_rt6_select:
2185effda4ddSDavid Ahern 	rt6_select(net, fn, oif, res, strict);
2186effda4ddSDavid Ahern 	if (res->f6i == net->ipv6.fib6_null_entry) {
2187a3c00e46SMartin KaFai Lau 		fn = fib6_backtrack(fn, &fl6->saddr);
2188a3c00e46SMartin KaFai Lau 		if (fn)
2189a3c00e46SMartin KaFai Lau 			goto redo_rt6_select;
2190367efcb9SMartin KaFai Lau 		else if (strict & RT6_LOOKUP_F_REACHABLE) {
2191367efcb9SMartin KaFai Lau 			/* also consider unreachable route */
2192367efcb9SMartin KaFai Lau 			strict &= ~RT6_LOOKUP_F_REACHABLE;
2193367efcb9SMartin KaFai Lau 			fn = saved_fn;
2194367efcb9SMartin KaFai Lau 			goto redo_rt6_select;
2195367efcb9SMartin KaFai Lau 		}
2196a3c00e46SMartin KaFai Lau 	}
2197a3c00e46SMartin KaFai Lau 
2198effda4ddSDavid Ahern 	trace_fib6_table_lookup(net, res, table, fl6);
2199d52d3997SMartin KaFai Lau 
2200effda4ddSDavid Ahern 	return 0;
22011d053da9SDavid Ahern }
22021d053da9SDavid Ahern 
22031d053da9SDavid Ahern struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table,
22041d053da9SDavid Ahern 			       int oif, struct flowi6 *fl6,
22051d053da9SDavid Ahern 			       const struct sk_buff *skb, int flags)
22061d053da9SDavid Ahern {
2207b1d40991SDavid Ahern 	struct fib6_result res = {};
22080e09edccSWei Wang 	struct rt6_info *rt = NULL;
22091d053da9SDavid Ahern 	int strict = 0;
22101d053da9SDavid Ahern 
22110e09edccSWei Wang 	WARN_ON_ONCE((flags & RT6_LOOKUP_F_DST_NOREF) &&
22120e09edccSWei Wang 		     !rcu_read_lock_held());
22130e09edccSWei Wang 
22141d053da9SDavid Ahern 	strict |= flags & RT6_LOOKUP_F_IFACE;
22151d053da9SDavid Ahern 	strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE;
22161d053da9SDavid Ahern 	if (net->ipv6.devconf_all->forwarding == 0)
22171d053da9SDavid Ahern 		strict |= RT6_LOOKUP_F_REACHABLE;
22181d053da9SDavid Ahern 
22191d053da9SDavid Ahern 	rcu_read_lock();
22201d053da9SDavid Ahern 
2221effda4ddSDavid Ahern 	fib6_table_lookup(net, table, oif, fl6, &res, strict);
22220e09edccSWei Wang 	if (res.f6i == net->ipv6.fib6_null_entry)
22230e09edccSWei Wang 		goto out;
222423fb93a4SDavid Ahern 
2225b1d40991SDavid Ahern 	fib6_select_path(net, &res, fl6, oif, false, skb, strict);
2226d83009d4SDavid Ahern 
222723fb93a4SDavid Ahern 	/*Search through exception table */
22287e4b5128SDavid Ahern 	rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr);
222923fb93a4SDavid Ahern 	if (rt) {
22300e09edccSWei Wang 		goto out;
22313da59bd9SMartin KaFai Lau 	} else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) &&
2232b1d40991SDavid Ahern 			    !res.nh->fib_nh_gw_family)) {
22333da59bd9SMartin KaFai Lau 		/* Create a RTF_CACHE clone which will not be
22343da59bd9SMartin KaFai Lau 		 * owned by the fib6 tree.  It is for the special case where
22353da59bd9SMartin KaFai Lau 		 * the daddr in the skb during the neighbor look-up is different
22363da59bd9SMartin KaFai Lau 		 * from the fl6->daddr used to look-up route here.
22373da59bd9SMartin KaFai Lau 		 */
22380e09edccSWei Wang 		rt = ip6_rt_cache_alloc(&res, &fl6->daddr, NULL);
22393da59bd9SMartin KaFai Lau 
22400e09edccSWei Wang 		if (rt) {
22410e09edccSWei Wang 			/* 1 refcnt is taken during ip6_rt_cache_alloc().
22420e09edccSWei Wang 			 * As rt6_uncached_list_add() does not consume refcnt,
22430e09edccSWei Wang 			 * this refcnt is always returned to the caller even
22440e09edccSWei Wang 			 * if caller sets RT6_LOOKUP_F_DST_NOREF flag.
22450e09edccSWei Wang 			 */
22460e09edccSWei Wang 			rt6_uncached_list_add(rt);
22470e09edccSWei Wang 			atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache);
22484d85cd0cSDavid Ahern 			rcu_read_unlock();
22493da59bd9SMartin KaFai Lau 
22500e09edccSWei Wang 			return rt;
22511cfb71eeSWei Wang 		}
2252d52d3997SMartin KaFai Lau 	} else {
2253d52d3997SMartin KaFai Lau 		/* Get a percpu copy */
2254951f788aSEric Dumazet 		local_bh_disable();
22550e09edccSWei Wang 		rt = rt6_get_pcpu_route(&res);
2256d52d3997SMartin KaFai Lau 
22570e09edccSWei Wang 		if (!rt)
22580e09edccSWei Wang 			rt = rt6_make_pcpu_route(net, &res);
225993531c67SDavid Ahern 
2260951f788aSEric Dumazet 		local_bh_enable();
22610e09edccSWei Wang 	}
22620e09edccSWei Wang out:
22630e09edccSWei Wang 	if (!rt)
22640e09edccSWei Wang 		rt = net->ipv6.ip6_null_entry;
22650e09edccSWei Wang 	if (!(flags & RT6_LOOKUP_F_DST_NOREF))
22660e09edccSWei Wang 		ip6_hold_safe(net, &rt);
2267951f788aSEric Dumazet 	rcu_read_unlock();
2268d4bea421SDavid Ahern 
22690e09edccSWei Wang 	return rt;
2270c71099acSThomas Graf }
22719ff74384SDavid Ahern EXPORT_SYMBOL_GPL(ip6_pol_route);
2272c71099acSThomas Graf 
227355cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_input(struct net *net,
2274b75cc8f9SDavid Ahern 					    struct fib6_table *table,
2275b75cc8f9SDavid Ahern 					    struct flowi6 *fl6,
2276b75cc8f9SDavid Ahern 					    const struct sk_buff *skb,
2277b75cc8f9SDavid Ahern 					    int flags)
22784acad72dSPavel Emelyanov {
2279b75cc8f9SDavid Ahern 	return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, skb, flags);
22804acad72dSPavel Emelyanov }
22814acad72dSPavel Emelyanov 
2282d409b847SMahesh Bandewar struct dst_entry *ip6_route_input_lookup(struct net *net,
228372331bc0SShmulik Ladkani 					 struct net_device *dev,
2284b75cc8f9SDavid Ahern 					 struct flowi6 *fl6,
2285b75cc8f9SDavid Ahern 					 const struct sk_buff *skb,
2286b75cc8f9SDavid Ahern 					 int flags)
228772331bc0SShmulik Ladkani {
228872331bc0SShmulik Ladkani 	if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG)
228972331bc0SShmulik Ladkani 		flags |= RT6_LOOKUP_F_IFACE;
229072331bc0SShmulik Ladkani 
2291b75cc8f9SDavid Ahern 	return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_input);
229272331bc0SShmulik Ladkani }
2293d409b847SMahesh Bandewar EXPORT_SYMBOL_GPL(ip6_route_input_lookup);
229472331bc0SShmulik Ladkani 
229523aebdacSJakub Sitnicki static void ip6_multipath_l3_keys(const struct sk_buff *skb,
22965e5d6fedSRoopa Prabhu 				  struct flow_keys *keys,
22975e5d6fedSRoopa Prabhu 				  struct flow_keys *flkeys)
229823aebdacSJakub Sitnicki {
229923aebdacSJakub Sitnicki 	const struct ipv6hdr *outer_iph = ipv6_hdr(skb);
230023aebdacSJakub Sitnicki 	const struct ipv6hdr *key_iph = outer_iph;
23015e5d6fedSRoopa Prabhu 	struct flow_keys *_flkeys = flkeys;
230223aebdacSJakub Sitnicki 	const struct ipv6hdr *inner_iph;
230323aebdacSJakub Sitnicki 	const struct icmp6hdr *icmph;
230423aebdacSJakub Sitnicki 	struct ipv6hdr _inner_iph;
2305cea67a2dSEric Dumazet 	struct icmp6hdr _icmph;
230623aebdacSJakub Sitnicki 
230723aebdacSJakub Sitnicki 	if (likely(outer_iph->nexthdr != IPPROTO_ICMPV6))
230823aebdacSJakub Sitnicki 		goto out;
230923aebdacSJakub Sitnicki 
2310cea67a2dSEric Dumazet 	icmph = skb_header_pointer(skb, skb_transport_offset(skb),
2311cea67a2dSEric Dumazet 				   sizeof(_icmph), &_icmph);
2312cea67a2dSEric Dumazet 	if (!icmph)
2313cea67a2dSEric Dumazet 		goto out;
2314cea67a2dSEric Dumazet 
231554074f1dSMatteo Croce 	if (!icmpv6_is_err(icmph->icmp6_type))
231623aebdacSJakub Sitnicki 		goto out;
231723aebdacSJakub Sitnicki 
231823aebdacSJakub Sitnicki 	inner_iph = skb_header_pointer(skb,
231923aebdacSJakub Sitnicki 				       skb_transport_offset(skb) + sizeof(*icmph),
232023aebdacSJakub Sitnicki 				       sizeof(_inner_iph), &_inner_iph);
232123aebdacSJakub Sitnicki 	if (!inner_iph)
232223aebdacSJakub Sitnicki 		goto out;
232323aebdacSJakub Sitnicki 
232423aebdacSJakub Sitnicki 	key_iph = inner_iph;
23255e5d6fedSRoopa Prabhu 	_flkeys = NULL;
232623aebdacSJakub Sitnicki out:
23275e5d6fedSRoopa Prabhu 	if (_flkeys) {
23285e5d6fedSRoopa Prabhu 		keys->addrs.v6addrs.src = _flkeys->addrs.v6addrs.src;
23295e5d6fedSRoopa Prabhu 		keys->addrs.v6addrs.dst = _flkeys->addrs.v6addrs.dst;
23305e5d6fedSRoopa Prabhu 		keys->tags.flow_label = _flkeys->tags.flow_label;
23315e5d6fedSRoopa Prabhu 		keys->basic.ip_proto = _flkeys->basic.ip_proto;
23325e5d6fedSRoopa Prabhu 	} else {
233323aebdacSJakub Sitnicki 		keys->addrs.v6addrs.src = key_iph->saddr;
233423aebdacSJakub Sitnicki 		keys->addrs.v6addrs.dst = key_iph->daddr;
2335fa1be7e0SMichal Kubecek 		keys->tags.flow_label = ip6_flowlabel(key_iph);
233623aebdacSJakub Sitnicki 		keys->basic.ip_proto = key_iph->nexthdr;
233723aebdacSJakub Sitnicki 	}
23385e5d6fedSRoopa Prabhu }
233923aebdacSJakub Sitnicki 
234073c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_outer(const struct net *net,
234173c2c5cbSIdo Schimmel 					   const struct sk_buff *skb,
234273c2c5cbSIdo Schimmel 					   bool *p_has_inner)
234373c2c5cbSIdo Schimmel {
234473c2c5cbSIdo Schimmel 	u32 hash_fields = ip6_multipath_hash_fields(net);
234573c2c5cbSIdo Schimmel 	struct flow_keys keys, hash_keys;
234673c2c5cbSIdo Schimmel 
234773c2c5cbSIdo Schimmel 	if (!(hash_fields & FIB_MULTIPATH_HASH_FIELD_OUTER_MASK))
234873c2c5cbSIdo Schimmel 		return 0;
234973c2c5cbSIdo Schimmel 
235073c2c5cbSIdo Schimmel 	memset(&hash_keys, 0, sizeof(hash_keys));
235173c2c5cbSIdo Schimmel 	skb_flow_dissect_flow_keys(skb, &keys, FLOW_DISSECTOR_F_STOP_AT_ENCAP);
235273c2c5cbSIdo Schimmel 
235373c2c5cbSIdo Schimmel 	hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
235473c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_IP)
235573c2c5cbSIdo Schimmel 		hash_keys.addrs.v6addrs.src = keys.addrs.v6addrs.src;
235673c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_IP)
235773c2c5cbSIdo Schimmel 		hash_keys.addrs.v6addrs.dst = keys.addrs.v6addrs.dst;
235873c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_IP_PROTO)
235973c2c5cbSIdo Schimmel 		hash_keys.basic.ip_proto = keys.basic.ip_proto;
236073c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_FLOWLABEL)
236173c2c5cbSIdo Schimmel 		hash_keys.tags.flow_label = keys.tags.flow_label;
236273c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_PORT)
236373c2c5cbSIdo Schimmel 		hash_keys.ports.src = keys.ports.src;
236473c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_PORT)
236573c2c5cbSIdo Schimmel 		hash_keys.ports.dst = keys.ports.dst;
236673c2c5cbSIdo Schimmel 
236773c2c5cbSIdo Schimmel 	*p_has_inner = !!(keys.control.flags & FLOW_DIS_ENCAPSULATION);
236873c2c5cbSIdo Schimmel 	return flow_hash_from_keys(&hash_keys);
236973c2c5cbSIdo Schimmel }
237073c2c5cbSIdo Schimmel 
237173c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_inner(const struct net *net,
237273c2c5cbSIdo Schimmel 					   const struct sk_buff *skb,
237373c2c5cbSIdo Schimmel 					   bool has_inner)
237473c2c5cbSIdo Schimmel {
237573c2c5cbSIdo Schimmel 	u32 hash_fields = ip6_multipath_hash_fields(net);
237673c2c5cbSIdo Schimmel 	struct flow_keys keys, hash_keys;
237773c2c5cbSIdo Schimmel 
237873c2c5cbSIdo Schimmel 	/* We assume the packet carries an encapsulation, but if none was
237973c2c5cbSIdo Schimmel 	 * encountered during dissection of the outer flow, then there is no
238073c2c5cbSIdo Schimmel 	 * point in calling the flow dissector again.
238173c2c5cbSIdo Schimmel 	 */
238273c2c5cbSIdo Schimmel 	if (!has_inner)
238373c2c5cbSIdo Schimmel 		return 0;
238473c2c5cbSIdo Schimmel 
238573c2c5cbSIdo Schimmel 	if (!(hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_MASK))
238673c2c5cbSIdo Schimmel 		return 0;
238773c2c5cbSIdo Schimmel 
238873c2c5cbSIdo Schimmel 	memset(&hash_keys, 0, sizeof(hash_keys));
238973c2c5cbSIdo Schimmel 	skb_flow_dissect_flow_keys(skb, &keys, 0);
239073c2c5cbSIdo Schimmel 
239173c2c5cbSIdo Schimmel 	if (!(keys.control.flags & FLOW_DIS_ENCAPSULATION))
239273c2c5cbSIdo Schimmel 		return 0;
239373c2c5cbSIdo Schimmel 
239473c2c5cbSIdo Schimmel 	if (keys.control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) {
239573c2c5cbSIdo Schimmel 		hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS;
239673c2c5cbSIdo Schimmel 		if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_SRC_IP)
239773c2c5cbSIdo Schimmel 			hash_keys.addrs.v4addrs.src = keys.addrs.v4addrs.src;
239873c2c5cbSIdo Schimmel 		if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_DST_IP)
239973c2c5cbSIdo Schimmel 			hash_keys.addrs.v4addrs.dst = keys.addrs.v4addrs.dst;
240073c2c5cbSIdo Schimmel 	} else if (keys.control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS) {
240173c2c5cbSIdo Schimmel 		hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
240273c2c5cbSIdo Schimmel 		if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_SRC_IP)
240373c2c5cbSIdo Schimmel 			hash_keys.addrs.v6addrs.src = keys.addrs.v6addrs.src;
240473c2c5cbSIdo Schimmel 		if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_DST_IP)
240573c2c5cbSIdo Schimmel 			hash_keys.addrs.v6addrs.dst = keys.addrs.v6addrs.dst;
240673c2c5cbSIdo Schimmel 		if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_FLOWLABEL)
240773c2c5cbSIdo Schimmel 			hash_keys.tags.flow_label = keys.tags.flow_label;
240873c2c5cbSIdo Schimmel 	}
240973c2c5cbSIdo Schimmel 
241073c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_IP_PROTO)
241173c2c5cbSIdo Schimmel 		hash_keys.basic.ip_proto = keys.basic.ip_proto;
241273c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_SRC_PORT)
241373c2c5cbSIdo Schimmel 		hash_keys.ports.src = keys.ports.src;
241473c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_DST_PORT)
241573c2c5cbSIdo Schimmel 		hash_keys.ports.dst = keys.ports.dst;
241673c2c5cbSIdo Schimmel 
241773c2c5cbSIdo Schimmel 	return flow_hash_from_keys(&hash_keys);
241873c2c5cbSIdo Schimmel }
241973c2c5cbSIdo Schimmel 
242073c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_skb(const struct net *net,
242173c2c5cbSIdo Schimmel 					 const struct sk_buff *skb)
242273c2c5cbSIdo Schimmel {
242373c2c5cbSIdo Schimmel 	u32 mhash, mhash_inner;
242473c2c5cbSIdo Schimmel 	bool has_inner = true;
242573c2c5cbSIdo Schimmel 
242673c2c5cbSIdo Schimmel 	mhash = rt6_multipath_custom_hash_outer(net, skb, &has_inner);
242773c2c5cbSIdo Schimmel 	mhash_inner = rt6_multipath_custom_hash_inner(net, skb, has_inner);
242873c2c5cbSIdo Schimmel 
242973c2c5cbSIdo Schimmel 	return jhash_2words(mhash, mhash_inner, 0);
243073c2c5cbSIdo Schimmel }
243173c2c5cbSIdo Schimmel 
243273c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_fl6(const struct net *net,
243373c2c5cbSIdo Schimmel 					 const struct flowi6 *fl6)
243473c2c5cbSIdo Schimmel {
243573c2c5cbSIdo Schimmel 	u32 hash_fields = ip6_multipath_hash_fields(net);
243673c2c5cbSIdo Schimmel 	struct flow_keys hash_keys;
243773c2c5cbSIdo Schimmel 
243873c2c5cbSIdo Schimmel 	if (!(hash_fields & FIB_MULTIPATH_HASH_FIELD_OUTER_MASK))
243973c2c5cbSIdo Schimmel 		return 0;
244073c2c5cbSIdo Schimmel 
244173c2c5cbSIdo Schimmel 	memset(&hash_keys, 0, sizeof(hash_keys));
244273c2c5cbSIdo Schimmel 	hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
244373c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_IP)
244473c2c5cbSIdo Schimmel 		hash_keys.addrs.v6addrs.src = fl6->saddr;
244573c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_IP)
244673c2c5cbSIdo Schimmel 		hash_keys.addrs.v6addrs.dst = fl6->daddr;
244773c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_IP_PROTO)
244873c2c5cbSIdo Schimmel 		hash_keys.basic.ip_proto = fl6->flowi6_proto;
244973c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_FLOWLABEL)
245073c2c5cbSIdo Schimmel 		hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6);
245173c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_PORT)
245273c2c5cbSIdo Schimmel 		hash_keys.ports.src = fl6->fl6_sport;
245373c2c5cbSIdo Schimmel 	if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_PORT)
245473c2c5cbSIdo Schimmel 		hash_keys.ports.dst = fl6->fl6_dport;
245573c2c5cbSIdo Schimmel 
245673c2c5cbSIdo Schimmel 	return flow_hash_from_keys(&hash_keys);
245773c2c5cbSIdo Schimmel }
245873c2c5cbSIdo Schimmel 
245923aebdacSJakub Sitnicki /* if skb is set it will be used and fl6 can be NULL */
2460b4bac172SDavid Ahern u32 rt6_multipath_hash(const struct net *net, const struct flowi6 *fl6,
2461b4bac172SDavid Ahern 		       const struct sk_buff *skb, struct flow_keys *flkeys)
246223aebdacSJakub Sitnicki {
246323aebdacSJakub Sitnicki 	struct flow_keys hash_keys;
2464b95b6e07SIdo Schimmel 	u32 mhash = 0;
246523aebdacSJakub Sitnicki 
2466bbfa047aSDavid S. Miller 	switch (ip6_multipath_hash_policy(net)) {
2467b4bac172SDavid Ahern 	case 0:
24686f74b6c2SDavid Ahern 		memset(&hash_keys, 0, sizeof(hash_keys));
24696f74b6c2SDavid Ahern 		hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
24709a2a537aSDavid Ahern 		if (skb) {
24715e5d6fedSRoopa Prabhu 			ip6_multipath_l3_keys(skb, &hash_keys, flkeys);
24729a2a537aSDavid Ahern 		} else {
24739a2a537aSDavid Ahern 			hash_keys.addrs.v6addrs.src = fl6->saddr;
24749a2a537aSDavid Ahern 			hash_keys.addrs.v6addrs.dst = fl6->daddr;
2475fa1be7e0SMichal Kubecek 			hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6);
24769a2a537aSDavid Ahern 			hash_keys.basic.ip_proto = fl6->flowi6_proto;
247723aebdacSJakub Sitnicki 		}
2478b95b6e07SIdo Schimmel 		mhash = flow_hash_from_keys(&hash_keys);
2479b4bac172SDavid Ahern 		break;
2480b4bac172SDavid Ahern 	case 1:
2481b4bac172SDavid Ahern 		if (skb) {
2482b4bac172SDavid Ahern 			unsigned int flag = FLOW_DISSECTOR_F_STOP_AT_ENCAP;
2483b4bac172SDavid Ahern 			struct flow_keys keys;
2484b4bac172SDavid Ahern 
2485b4bac172SDavid Ahern 			/* short-circuit if we already have L4 hash present */
2486b4bac172SDavid Ahern 			if (skb->l4_hash)
2487b4bac172SDavid Ahern 				return skb_get_hash_raw(skb) >> 1;
2488b4bac172SDavid Ahern 
2489b4bac172SDavid Ahern 			memset(&hash_keys, 0, sizeof(hash_keys));
2490b4bac172SDavid Ahern 
2491b4bac172SDavid Ahern 			if (!flkeys) {
2492b4bac172SDavid Ahern 				skb_flow_dissect_flow_keys(skb, &keys, flag);
2493b4bac172SDavid Ahern 				flkeys = &keys;
2494b4bac172SDavid Ahern 			}
2495b4bac172SDavid Ahern 			hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2496b4bac172SDavid Ahern 			hash_keys.addrs.v6addrs.src = flkeys->addrs.v6addrs.src;
2497b4bac172SDavid Ahern 			hash_keys.addrs.v6addrs.dst = flkeys->addrs.v6addrs.dst;
2498b4bac172SDavid Ahern 			hash_keys.ports.src = flkeys->ports.src;
2499b4bac172SDavid Ahern 			hash_keys.ports.dst = flkeys->ports.dst;
2500b4bac172SDavid Ahern 			hash_keys.basic.ip_proto = flkeys->basic.ip_proto;
2501b4bac172SDavid Ahern 		} else {
2502b4bac172SDavid Ahern 			memset(&hash_keys, 0, sizeof(hash_keys));
2503b4bac172SDavid Ahern 			hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2504b4bac172SDavid Ahern 			hash_keys.addrs.v6addrs.src = fl6->saddr;
2505b4bac172SDavid Ahern 			hash_keys.addrs.v6addrs.dst = fl6->daddr;
2506b4bac172SDavid Ahern 			hash_keys.ports.src = fl6->fl6_sport;
2507b4bac172SDavid Ahern 			hash_keys.ports.dst = fl6->fl6_dport;
2508b4bac172SDavid Ahern 			hash_keys.basic.ip_proto = fl6->flowi6_proto;
2509b4bac172SDavid Ahern 		}
2510b95b6e07SIdo Schimmel 		mhash = flow_hash_from_keys(&hash_keys);
2511b4bac172SDavid Ahern 		break;
2512d8f74f09SStephen Suryaputra 	case 2:
2513d8f74f09SStephen Suryaputra 		memset(&hash_keys, 0, sizeof(hash_keys));
2514d8f74f09SStephen Suryaputra 		hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2515d8f74f09SStephen Suryaputra 		if (skb) {
2516d8f74f09SStephen Suryaputra 			struct flow_keys keys;
2517d8f74f09SStephen Suryaputra 
2518d8f74f09SStephen Suryaputra 			if (!flkeys) {
2519d8f74f09SStephen Suryaputra 				skb_flow_dissect_flow_keys(skb, &keys, 0);
2520d8f74f09SStephen Suryaputra 				flkeys = &keys;
2521d8f74f09SStephen Suryaputra 			}
2522d8f74f09SStephen Suryaputra 
2523d8f74f09SStephen Suryaputra 			/* Inner can be v4 or v6 */
2524d8f74f09SStephen Suryaputra 			if (flkeys->control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) {
2525d8f74f09SStephen Suryaputra 				hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS;
2526d8f74f09SStephen Suryaputra 				hash_keys.addrs.v4addrs.src = flkeys->addrs.v4addrs.src;
2527d8f74f09SStephen Suryaputra 				hash_keys.addrs.v4addrs.dst = flkeys->addrs.v4addrs.dst;
2528d8f74f09SStephen Suryaputra 			} else if (flkeys->control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS) {
2529d8f74f09SStephen Suryaputra 				hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2530d8f74f09SStephen Suryaputra 				hash_keys.addrs.v6addrs.src = flkeys->addrs.v6addrs.src;
2531d8f74f09SStephen Suryaputra 				hash_keys.addrs.v6addrs.dst = flkeys->addrs.v6addrs.dst;
2532d8f74f09SStephen Suryaputra 				hash_keys.tags.flow_label = flkeys->tags.flow_label;
2533d8f74f09SStephen Suryaputra 				hash_keys.basic.ip_proto = flkeys->basic.ip_proto;
2534d8f74f09SStephen Suryaputra 			} else {
2535d8f74f09SStephen Suryaputra 				/* Same as case 0 */
2536d8f74f09SStephen Suryaputra 				hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2537d8f74f09SStephen Suryaputra 				ip6_multipath_l3_keys(skb, &hash_keys, flkeys);
2538d8f74f09SStephen Suryaputra 			}
2539d8f74f09SStephen Suryaputra 		} else {
2540d8f74f09SStephen Suryaputra 			/* Same as case 0 */
2541d8f74f09SStephen Suryaputra 			hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
2542d8f74f09SStephen Suryaputra 			hash_keys.addrs.v6addrs.src = fl6->saddr;
2543d8f74f09SStephen Suryaputra 			hash_keys.addrs.v6addrs.dst = fl6->daddr;
2544d8f74f09SStephen Suryaputra 			hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6);
2545d8f74f09SStephen Suryaputra 			hash_keys.basic.ip_proto = fl6->flowi6_proto;
2546d8f74f09SStephen Suryaputra 		}
2547b95b6e07SIdo Schimmel 		mhash = flow_hash_from_keys(&hash_keys);
2548d8f74f09SStephen Suryaputra 		break;
254973c2c5cbSIdo Schimmel 	case 3:
255073c2c5cbSIdo Schimmel 		if (skb)
255173c2c5cbSIdo Schimmel 			mhash = rt6_multipath_custom_hash_skb(net, skb);
255273c2c5cbSIdo Schimmel 		else
255373c2c5cbSIdo Schimmel 			mhash = rt6_multipath_custom_hash_fl6(net, fl6);
255473c2c5cbSIdo Schimmel 		break;
2555b4bac172SDavid Ahern 	}
255623aebdacSJakub Sitnicki 
25579a2a537aSDavid Ahern 	return mhash >> 1;
255823aebdacSJakub Sitnicki }
255923aebdacSJakub Sitnicki 
256067f415ddSWei Wang /* Called with rcu held */
2561c71099acSThomas Graf void ip6_route_input(struct sk_buff *skb)
2562c71099acSThomas Graf {
2563b71d1d42SEric Dumazet 	const struct ipv6hdr *iph = ipv6_hdr(skb);
2564c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(skb->dev);
256567f415ddSWei Wang 	int flags = RT6_LOOKUP_F_HAS_SADDR | RT6_LOOKUP_F_DST_NOREF;
2566904af04dSJiri Benc 	struct ip_tunnel_info *tun_info;
25674c9483b2SDavid S. Miller 	struct flowi6 fl6 = {
2568e0d56fddSDavid Ahern 		.flowi6_iif = skb->dev->ifindex,
25694c9483b2SDavid S. Miller 		.daddr = iph->daddr,
25704c9483b2SDavid S. Miller 		.saddr = iph->saddr,
25716502ca52SYOSHIFUJI Hideaki / 吉藤英明 		.flowlabel = ip6_flowinfo(iph),
25724c9483b2SDavid S. Miller 		.flowi6_mark = skb->mark,
25734c9483b2SDavid S. Miller 		.flowi6_proto = iph->nexthdr,
2574c71099acSThomas Graf 	};
25755e5d6fedSRoopa Prabhu 	struct flow_keys *flkeys = NULL, _flkeys;
2576adaa70bbSThomas Graf 
2577904af04dSJiri Benc 	tun_info = skb_tunnel_info(skb);
257846fa062aSJiri Benc 	if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX))
2579904af04dSJiri Benc 		fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id;
25805e5d6fedSRoopa Prabhu 
25815e5d6fedSRoopa Prabhu 	if (fib6_rules_early_flow_dissect(net, skb, &fl6, &_flkeys))
25825e5d6fedSRoopa Prabhu 		flkeys = &_flkeys;
25835e5d6fedSRoopa Prabhu 
258423aebdacSJakub Sitnicki 	if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6))
2585b4bac172SDavid Ahern 		fl6.mp_hash = rt6_multipath_hash(net, &fl6, skb, flkeys);
258606e9d040SJiri Benc 	skb_dst_drop(skb);
258767f415ddSWei Wang 	skb_dst_set_noref(skb, ip6_route_input_lookup(net, skb->dev,
258867f415ddSWei Wang 						      &fl6, skb, flags));
2589c71099acSThomas Graf }
2590c71099acSThomas Graf 
259155cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_output(struct net *net,
2592b75cc8f9SDavid Ahern 					     struct fib6_table *table,
2593b75cc8f9SDavid Ahern 					     struct flowi6 *fl6,
2594b75cc8f9SDavid Ahern 					     const struct sk_buff *skb,
2595b75cc8f9SDavid Ahern 					     int flags)
2596c71099acSThomas Graf {
2597b75cc8f9SDavid Ahern 	return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, skb, flags);
2598c71099acSThomas Graf }
2599c71099acSThomas Graf 
26007d9e5f42SWei Wang struct dst_entry *ip6_route_output_flags_noref(struct net *net,
26017d9e5f42SWei Wang 					       const struct sock *sk,
26026f21c96aSPaolo Abeni 					       struct flowi6 *fl6, int flags)
2603c71099acSThomas Graf {
2604d46a9d67SDavid Ahern 	bool any_src;
2605c71099acSThomas Graf 
26063ede0bbcSRobert Shearman 	if (ipv6_addr_type(&fl6->daddr) &
26073ede0bbcSRobert Shearman 	    (IPV6_ADDR_MULTICAST | IPV6_ADDR_LINKLOCAL)) {
26084c1feac5SDavid Ahern 		struct dst_entry *dst;
26094c1feac5SDavid Ahern 
26107d9e5f42SWei Wang 		/* This function does not take refcnt on the dst */
26114c1feac5SDavid Ahern 		dst = l3mdev_link_scope_lookup(net, fl6);
2612ca254490SDavid Ahern 		if (dst)
2613ca254490SDavid Ahern 			return dst;
26144c1feac5SDavid Ahern 	}
2615ca254490SDavid Ahern 
26161fb9489bSPavel Emelyanov 	fl6->flowi6_iif = LOOPBACK_IFINDEX;
26174dc27d1cSDavid McCullough 
26187d9e5f42SWei Wang 	flags |= RT6_LOOKUP_F_DST_NOREF;
2619d46a9d67SDavid Ahern 	any_src = ipv6_addr_any(&fl6->saddr);
2620741a11d9SDavid Ahern 	if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) ||
2621d46a9d67SDavid Ahern 	    (fl6->flowi6_oif && any_src))
262277d16f45SYOSHIFUJI Hideaki 		flags |= RT6_LOOKUP_F_IFACE;
2623c71099acSThomas Graf 
2624d46a9d67SDavid Ahern 	if (!any_src)
2625adaa70bbSThomas Graf 		flags |= RT6_LOOKUP_F_HAS_SADDR;
26260c9a2ac1SYOSHIFUJI Hideaki / 吉藤英明 	else if (sk)
26270c9a2ac1SYOSHIFUJI Hideaki / 吉藤英明 		flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs);
2628adaa70bbSThomas Graf 
2629b75cc8f9SDavid Ahern 	return fib6_rule_lookup(net, fl6, NULL, flags, ip6_pol_route_output);
26301da177e4SLinus Torvalds }
26317d9e5f42SWei Wang EXPORT_SYMBOL_GPL(ip6_route_output_flags_noref);
26327d9e5f42SWei Wang 
26337d9e5f42SWei Wang struct dst_entry *ip6_route_output_flags(struct net *net,
26347d9e5f42SWei Wang 					 const struct sock *sk,
26357d9e5f42SWei Wang 					 struct flowi6 *fl6,
26367d9e5f42SWei Wang 					 int flags)
26377d9e5f42SWei Wang {
26387d9e5f42SWei Wang 	struct dst_entry *dst;
26397d9e5f42SWei Wang 	struct rt6_info *rt6;
26407d9e5f42SWei Wang 
26417d9e5f42SWei Wang 	rcu_read_lock();
26427d9e5f42SWei Wang 	dst = ip6_route_output_flags_noref(net, sk, fl6, flags);
26437d9e5f42SWei Wang 	rt6 = (struct rt6_info *)dst;
26447d9e5f42SWei Wang 	/* For dst cached in uncached_list, refcnt is already taken. */
26457d9e5f42SWei Wang 	if (list_empty(&rt6->rt6i_uncached) && !dst_hold_safe(dst)) {
26467d9e5f42SWei Wang 		dst = &net->ipv6.ip6_null_entry->dst;
26477d9e5f42SWei Wang 		dst_hold(dst);
26487d9e5f42SWei Wang 	}
26497d9e5f42SWei Wang 	rcu_read_unlock();
26507d9e5f42SWei Wang 
26517d9e5f42SWei Wang 	return dst;
26527d9e5f42SWei Wang }
26536f21c96aSPaolo Abeni EXPORT_SYMBOL_GPL(ip6_route_output_flags);
26541da177e4SLinus Torvalds 
26552774c131SDavid S. Miller struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig)
265614e50e57SDavid S. Miller {
26575c1e6aa3SDavid S. Miller 	struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig;
26581dbe3252SWei Wang 	struct net_device *loopback_dev = net->loopback_dev;
265914e50e57SDavid S. Miller 	struct dst_entry *new = NULL;
266014e50e57SDavid S. Miller 
26611dbe3252SWei Wang 	rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1,
266262cf27e5SSteffen Klassert 		       DST_OBSOLETE_DEAD, 0);
266314e50e57SDavid S. Miller 	if (rt) {
26640a1f5962SMartin KaFai Lau 		rt6_info_init(rt);
266581eb8447SWei Wang 		atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc);
26660a1f5962SMartin KaFai Lau 
2667d8d1f30bSChangli Gao 		new = &rt->dst;
266814e50e57SDavid S. Miller 		new->__use = 1;
2669352e512cSHerbert Xu 		new->input = dst_discard;
2670ede2059dSEric W. Biederman 		new->output = dst_discard_out;
267114e50e57SDavid S. Miller 
2672defb3519SDavid S. Miller 		dst_copy_metrics(new, &ort->dst);
267314e50e57SDavid S. Miller 
26741dbe3252SWei Wang 		rt->rt6i_idev = in6_dev_get(loopback_dev);
26754e3fd7a0SAlexey Dobriyan 		rt->rt6i_gateway = ort->rt6i_gateway;
26760a1f5962SMartin KaFai Lau 		rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU;
267714e50e57SDavid S. Miller 
267814e50e57SDavid S. Miller 		memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key));
267914e50e57SDavid S. Miller #ifdef CONFIG_IPV6_SUBTREES
268014e50e57SDavid S. Miller 		memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
268114e50e57SDavid S. Miller #endif
268214e50e57SDavid S. Miller 	}
268314e50e57SDavid S. Miller 
268469ead7afSDavid S. Miller 	dst_release(dst_orig);
268569ead7afSDavid S. Miller 	return new ? new : ERR_PTR(-ENOMEM);
268614e50e57SDavid S. Miller }
268714e50e57SDavid S. Miller 
26881da177e4SLinus Torvalds /*
26891da177e4SLinus Torvalds  *	Destination cache support functions
26901da177e4SLinus Torvalds  */
26911da177e4SLinus Torvalds 
26928d1c802bSDavid Ahern static bool fib6_check(struct fib6_info *f6i, u32 cookie)
26933da59bd9SMartin KaFai Lau {
269436143645SSteffen Klassert 	u32 rt_cookie = 0;
2695c5cff856SWei Wang 
26968ae86971SDavid Ahern 	if (!fib6_get_cookie_safe(f6i, &rt_cookie) || rt_cookie != cookie)
269793531c67SDavid Ahern 		return false;
269893531c67SDavid Ahern 
269993531c67SDavid Ahern 	if (fib6_check_expired(f6i))
270093531c67SDavid Ahern 		return false;
270193531c67SDavid Ahern 
270293531c67SDavid Ahern 	return true;
270393531c67SDavid Ahern }
270493531c67SDavid Ahern 
2705a68886a6SDavid Ahern static struct dst_entry *rt6_check(struct rt6_info *rt,
2706a68886a6SDavid Ahern 				   struct fib6_info *from,
2707a68886a6SDavid Ahern 				   u32 cookie)
27083da59bd9SMartin KaFai Lau {
2709c5cff856SWei Wang 	u32 rt_cookie = 0;
2710c5cff856SWei Wang 
271149d05fe2SDavid Ahern 	if (!from || !fib6_get_cookie_safe(from, &rt_cookie) ||
271293531c67SDavid Ahern 	    rt_cookie != cookie)
27133da59bd9SMartin KaFai Lau 		return NULL;
27143da59bd9SMartin KaFai Lau 
27153da59bd9SMartin KaFai Lau 	if (rt6_check_expired(rt))
27163da59bd9SMartin KaFai Lau 		return NULL;
27173da59bd9SMartin KaFai Lau 
27183da59bd9SMartin KaFai Lau 	return &rt->dst;
27193da59bd9SMartin KaFai Lau }
27203da59bd9SMartin KaFai Lau 
2721a68886a6SDavid Ahern static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt,
2722a68886a6SDavid Ahern 					    struct fib6_info *from,
2723a68886a6SDavid Ahern 					    u32 cookie)
27243da59bd9SMartin KaFai Lau {
27255973fb1eSMartin KaFai Lau 	if (!__rt6_check_expired(rt) &&
27265973fb1eSMartin KaFai Lau 	    rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK &&
2727a68886a6SDavid Ahern 	    fib6_check(from, cookie))
27283da59bd9SMartin KaFai Lau 		return &rt->dst;
27293da59bd9SMartin KaFai Lau 	else
27303da59bd9SMartin KaFai Lau 		return NULL;
27313da59bd9SMartin KaFai Lau }
27323da59bd9SMartin KaFai Lau 
2733bbd807dfSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct dst_entry *ip6_dst_check(struct dst_entry *dst,
2734bbd807dfSBrian Vazquez 							u32 cookie)
27351da177e4SLinus Torvalds {
2736a87b7dc9SDavid Ahern 	struct dst_entry *dst_ret;
2737a68886a6SDavid Ahern 	struct fib6_info *from;
27381da177e4SLinus Torvalds 	struct rt6_info *rt;
27391da177e4SLinus Torvalds 
2740a87b7dc9SDavid Ahern 	rt = container_of(dst, struct rt6_info, dst);
2741a87b7dc9SDavid Ahern 
27428f34e53bSDavid Ahern 	if (rt->sernum)
27438f34e53bSDavid Ahern 		return rt6_is_valid(rt) ? dst : NULL;
27448f34e53bSDavid Ahern 
2745a87b7dc9SDavid Ahern 	rcu_read_lock();
27461da177e4SLinus Torvalds 
27476f3118b5SNicolas Dichtel 	/* All IPV6 dsts are created with ->obsolete set to the value
27486f3118b5SNicolas Dichtel 	 * DST_OBSOLETE_FORCE_CHK which forces validation calls down
27496f3118b5SNicolas Dichtel 	 * into this function always.
27506f3118b5SNicolas Dichtel 	 */
2751e3bc10bdSHannes Frederic Sowa 
2752a68886a6SDavid Ahern 	from = rcu_dereference(rt->from);
27534b32b5adSMartin KaFai Lau 
2754a68886a6SDavid Ahern 	if (from && (rt->rt6i_flags & RTF_PCPU ||
2755a68886a6SDavid Ahern 	    unlikely(!list_empty(&rt->rt6i_uncached))))
2756a68886a6SDavid Ahern 		dst_ret = rt6_dst_from_check(rt, from, cookie);
27573da59bd9SMartin KaFai Lau 	else
2758a68886a6SDavid Ahern 		dst_ret = rt6_check(rt, from, cookie);
2759a87b7dc9SDavid Ahern 
2760a87b7dc9SDavid Ahern 	rcu_read_unlock();
2761a87b7dc9SDavid Ahern 
2762a87b7dc9SDavid Ahern 	return dst_ret;
27631da177e4SLinus Torvalds }
27649c97921aSBrian Vazquez EXPORT_INDIRECT_CALLABLE(ip6_dst_check);
27651da177e4SLinus Torvalds 
27661da177e4SLinus Torvalds static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)
27671da177e4SLinus Torvalds {
27681da177e4SLinus Torvalds 	struct rt6_info *rt = (struct rt6_info *) dst;
27691da177e4SLinus Torvalds 
27701da177e4SLinus Torvalds 	if (rt) {
277154c1a859SYOSHIFUJI Hideaki / 吉藤英明 		if (rt->rt6i_flags & RTF_CACHE) {
2772c3c14da0SDavid Ahern 			rcu_read_lock();
277354c1a859SYOSHIFUJI Hideaki / 吉藤英明 			if (rt6_check_expired(rt)) {
277493531c67SDavid Ahern 				rt6_remove_exception_rt(rt);
277554c1a859SYOSHIFUJI Hideaki / 吉藤英明 				dst = NULL;
27761da177e4SLinus Torvalds 			}
2777c3c14da0SDavid Ahern 			rcu_read_unlock();
277854c1a859SYOSHIFUJI Hideaki / 吉藤英明 		} else {
277954c1a859SYOSHIFUJI Hideaki / 吉藤英明 			dst_release(dst);
278054c1a859SYOSHIFUJI Hideaki / 吉藤英明 			dst = NULL;
278154c1a859SYOSHIFUJI Hideaki / 吉藤英明 		}
278254c1a859SYOSHIFUJI Hideaki / 吉藤英明 	}
278354c1a859SYOSHIFUJI Hideaki / 吉藤英明 	return dst;
27841da177e4SLinus Torvalds }
27851da177e4SLinus Torvalds 
27861da177e4SLinus Torvalds static void ip6_link_failure(struct sk_buff *skb)
27871da177e4SLinus Torvalds {
27881da177e4SLinus Torvalds 	struct rt6_info *rt;
27891da177e4SLinus Torvalds 
27903ffe533cSAlexey Dobriyan 	icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0);
27911da177e4SLinus Torvalds 
2792adf30907SEric Dumazet 	rt = (struct rt6_info *) skb_dst(skb);
27931da177e4SLinus Torvalds 	if (rt) {
27948a14e46fSDavid Ahern 		rcu_read_lock();
27951eb4f758SHannes Frederic Sowa 		if (rt->rt6i_flags & RTF_CACHE) {
279693531c67SDavid Ahern 			rt6_remove_exception_rt(rt);
2797c5cff856SWei Wang 		} else {
2798a68886a6SDavid Ahern 			struct fib6_info *from;
2799c5cff856SWei Wang 			struct fib6_node *fn;
2800c5cff856SWei Wang 
2801a68886a6SDavid Ahern 			from = rcu_dereference(rt->from);
2802a68886a6SDavid Ahern 			if (from) {
2803a68886a6SDavid Ahern 				fn = rcu_dereference(from->fib6_node);
2804c5cff856SWei Wang 				if (fn && (rt->rt6i_flags & RTF_DEFAULT))
2805*aafc2e32SEric Dumazet 					WRITE_ONCE(fn->fn_sernum, -1);
2806a68886a6SDavid Ahern 			}
28071da177e4SLinus Torvalds 		}
28081da177e4SLinus Torvalds 		rcu_read_unlock();
28091da177e4SLinus Torvalds 	}
28101da177e4SLinus Torvalds }
28111da177e4SLinus Torvalds 
28126a3e030fSDavid Ahern static void rt6_update_expires(struct rt6_info *rt0, int timeout)
28136a3e030fSDavid Ahern {
2814a68886a6SDavid Ahern 	if (!(rt0->rt6i_flags & RTF_EXPIRES)) {
2815a68886a6SDavid Ahern 		struct fib6_info *from;
2816a68886a6SDavid Ahern 
2817a68886a6SDavid Ahern 		rcu_read_lock();
2818a68886a6SDavid Ahern 		from = rcu_dereference(rt0->from);
2819a68886a6SDavid Ahern 		if (from)
2820a68886a6SDavid Ahern 			rt0->dst.expires = from->expires;
2821a68886a6SDavid Ahern 		rcu_read_unlock();
2822a68886a6SDavid Ahern 	}
28236a3e030fSDavid Ahern 
28246a3e030fSDavid Ahern 	dst_set_expires(&rt0->dst, timeout);
28256a3e030fSDavid Ahern 	rt0->rt6i_flags |= RTF_EXPIRES;
28266700c270SDavid S. Miller }
28271da177e4SLinus Torvalds 
282845e4fd26SMartin KaFai Lau static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu)
282945e4fd26SMartin KaFai Lau {
283045e4fd26SMartin KaFai Lau 	struct net *net = dev_net(rt->dst.dev);
283145e4fd26SMartin KaFai Lau 
2832d4ead6b3SDavid Ahern 	dst_metric_set(&rt->dst, RTAX_MTU, mtu);
283345e4fd26SMartin KaFai Lau 	rt->rt6i_flags |= RTF_MODIFIED;
283445e4fd26SMartin KaFai Lau 	rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires);
283545e4fd26SMartin KaFai Lau }
283645e4fd26SMartin KaFai Lau 
28370d3f6d29SMartin KaFai Lau static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt)
28380d3f6d29SMartin KaFai Lau {
28390d3f6d29SMartin KaFai Lau 	return !(rt->rt6i_flags & RTF_CACHE) &&
28401490ed2aSPaolo Abeni 		(rt->rt6i_flags & RTF_PCPU || rcu_access_pointer(rt->from));
28410d3f6d29SMartin KaFai Lau }
28420d3f6d29SMartin KaFai Lau 
284345e4fd26SMartin KaFai Lau static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk,
2844bd085ef6SHangbin Liu 				 const struct ipv6hdr *iph, u32 mtu,
2845bd085ef6SHangbin Liu 				 bool confirm_neigh)
28461da177e4SLinus Torvalds {
28470dec879fSJulian Anastasov 	const struct in6_addr *daddr, *saddr;
28481da177e4SLinus Torvalds 	struct rt6_info *rt6 = (struct rt6_info *)dst;
28491da177e4SLinus Torvalds 
285009454fd0SMaciej Żenczykowski 	/* Note: do *NOT* check dst_metric_locked(dst, RTAX_MTU)
285109454fd0SMaciej Żenczykowski 	 * IPv6 pmtu discovery isn't optional, so 'mtu lock' cannot disable it.
285209454fd0SMaciej Żenczykowski 	 * [see also comment in rt6_mtu_change_route()]
285309454fd0SMaciej Żenczykowski 	 */
285419bda36cSXin Long 
285545e4fd26SMartin KaFai Lau 	if (iph) {
285645e4fd26SMartin KaFai Lau 		daddr = &iph->daddr;
285745e4fd26SMartin KaFai Lau 		saddr = &iph->saddr;
285845e4fd26SMartin KaFai Lau 	} else if (sk) {
285945e4fd26SMartin KaFai Lau 		daddr = &sk->sk_v6_daddr;
286045e4fd26SMartin KaFai Lau 		saddr = &inet6_sk(sk)->saddr;
286145e4fd26SMartin KaFai Lau 	} else {
28620dec879fSJulian Anastasov 		daddr = NULL;
28630dec879fSJulian Anastasov 		saddr = NULL;
28641da177e4SLinus Torvalds 	}
2865bd085ef6SHangbin Liu 
2866bd085ef6SHangbin Liu 	if (confirm_neigh)
28670dec879fSJulian Anastasov 		dst_confirm_neigh(dst, daddr);
2868bd085ef6SHangbin Liu 
28694a65dff8SGeorg Kohmann 	if (mtu < IPV6_MIN_MTU)
28704a65dff8SGeorg Kohmann 		return;
28710dec879fSJulian Anastasov 	if (mtu >= dst_mtu(dst))
28720dec879fSJulian Anastasov 		return;
28730dec879fSJulian Anastasov 
28740dec879fSJulian Anastasov 	if (!rt6_cache_allowed_for_pmtu(rt6)) {
28750dec879fSJulian Anastasov 		rt6_do_update_pmtu(rt6, mtu);
28762b760fcfSWei Wang 		/* update rt6_ex->stamp for cache */
28772b760fcfSWei Wang 		if (rt6->rt6i_flags & RTF_CACHE)
28782b760fcfSWei Wang 			rt6_update_exception_stamp_rt(rt6);
28790dec879fSJulian Anastasov 	} else if (daddr) {
288085bd05deSDavid Ahern 		struct fib6_result res = {};
28810dec879fSJulian Anastasov 		struct rt6_info *nrt6;
28820dec879fSJulian Anastasov 
28834d85cd0cSDavid Ahern 		rcu_read_lock();
288485bd05deSDavid Ahern 		res.f6i = rcu_dereference(rt6->from);
288543a4b60dSDavid Ahern 		if (!res.f6i)
288643a4b60dSDavid Ahern 			goto out_unlock;
288743a4b60dSDavid Ahern 
28887d21fec9SDavid Ahern 		res.fib6_flags = res.f6i->fib6_flags;
28897d21fec9SDavid Ahern 		res.fib6_type = res.f6i->fib6_type;
28907d21fec9SDavid Ahern 
28912d44234bSDavid Ahern 		if (res.f6i->nh) {
28922d44234bSDavid Ahern 			struct fib6_nh_match_arg arg = {
28932d44234bSDavid Ahern 				.dev = dst->dev,
28942d44234bSDavid Ahern 				.gw = &rt6->rt6i_gateway,
28952d44234bSDavid Ahern 			};
28962d44234bSDavid Ahern 
28972d44234bSDavid Ahern 			nexthop_for_each_fib6_nh(res.f6i->nh,
28982d44234bSDavid Ahern 						 fib6_nh_find_match, &arg);
28992d44234bSDavid Ahern 
29002d44234bSDavid Ahern 			/* fib6_info uses a nexthop that does not have fib6_nh
29012d44234bSDavid Ahern 			 * using the dst->dev + gw. Should be impossible.
29022d44234bSDavid Ahern 			 */
290343a4b60dSDavid Ahern 			if (!arg.match)
290443a4b60dSDavid Ahern 				goto out_unlock;
29052d44234bSDavid Ahern 
29062d44234bSDavid Ahern 			res.nh = arg.match;
29072d44234bSDavid Ahern 		} else {
29082d44234bSDavid Ahern 			res.nh = res.f6i->fib6_nh;
29092d44234bSDavid Ahern 		}
29102d44234bSDavid Ahern 
291185bd05deSDavid Ahern 		nrt6 = ip6_rt_cache_alloc(&res, daddr, saddr);
291245e4fd26SMartin KaFai Lau 		if (nrt6) {
291345e4fd26SMartin KaFai Lau 			rt6_do_update_pmtu(nrt6, mtu);
29145012f0a5SDavid Ahern 			if (rt6_insert_exception(nrt6, &res))
29152b760fcfSWei Wang 				dst_release_immediate(&nrt6->dst);
291645e4fd26SMartin KaFai Lau 		}
291743a4b60dSDavid Ahern out_unlock:
2918a68886a6SDavid Ahern 		rcu_read_unlock();
291945e4fd26SMartin KaFai Lau 	}
292045e4fd26SMartin KaFai Lau }
292145e4fd26SMartin KaFai Lau 
292245e4fd26SMartin KaFai Lau static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
2923bd085ef6SHangbin Liu 			       struct sk_buff *skb, u32 mtu,
2924bd085ef6SHangbin Liu 			       bool confirm_neigh)
292545e4fd26SMartin KaFai Lau {
2926bd085ef6SHangbin Liu 	__ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu,
2927bd085ef6SHangbin Liu 			     confirm_neigh);
29281da177e4SLinus Torvalds }
29291da177e4SLinus Torvalds 
293042ae66c8SDavid S. Miller void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
2931e2d118a1SLorenzo Colitti 		     int oif, u32 mark, kuid_t uid)
293281aded24SDavid S. Miller {
293381aded24SDavid S. Miller 	const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
293481aded24SDavid S. Miller 	struct dst_entry *dst;
2935dc92095dSMaciej Żenczykowski 	struct flowi6 fl6 = {
2936dc92095dSMaciej Żenczykowski 		.flowi6_oif = oif,
2937dc92095dSMaciej Żenczykowski 		.flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark),
2938dc92095dSMaciej Żenczykowski 		.daddr = iph->daddr,
2939dc92095dSMaciej Żenczykowski 		.saddr = iph->saddr,
2940dc92095dSMaciej Żenczykowski 		.flowlabel = ip6_flowinfo(iph),
2941dc92095dSMaciej Żenczykowski 		.flowi6_uid = uid,
2942dc92095dSMaciej Żenczykowski 	};
294381aded24SDavid S. Miller 
294481aded24SDavid S. Miller 	dst = ip6_route_output(net, NULL, &fl6);
294581aded24SDavid S. Miller 	if (!dst->error)
2946bd085ef6SHangbin Liu 		__ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu), true);
294781aded24SDavid S. Miller 	dst_release(dst);
294881aded24SDavid S. Miller }
294981aded24SDavid S. Miller EXPORT_SYMBOL_GPL(ip6_update_pmtu);
295081aded24SDavid S. Miller 
295181aded24SDavid S. Miller void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
295281aded24SDavid S. Miller {
29537ddacfa5SDavid Ahern 	int oif = sk->sk_bound_dev_if;
295433c162a9SMartin KaFai Lau 	struct dst_entry *dst;
295533c162a9SMartin KaFai Lau 
29567ddacfa5SDavid Ahern 	if (!oif && skb->dev)
29577ddacfa5SDavid Ahern 		oif = l3mdev_master_ifindex(skb->dev);
29587ddacfa5SDavid Ahern 
29597ddacfa5SDavid Ahern 	ip6_update_pmtu(skb, sock_net(sk), mtu, oif, sk->sk_mark, sk->sk_uid);
296033c162a9SMartin KaFai Lau 
296133c162a9SMartin KaFai Lau 	dst = __sk_dst_get(sk);
296233c162a9SMartin KaFai Lau 	if (!dst || !dst->obsolete ||
296333c162a9SMartin KaFai Lau 	    dst->ops->check(dst, inet6_sk(sk)->dst_cookie))
296433c162a9SMartin KaFai Lau 		return;
296533c162a9SMartin KaFai Lau 
296633c162a9SMartin KaFai Lau 	bh_lock_sock(sk);
296733c162a9SMartin KaFai Lau 	if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr))
296833c162a9SMartin KaFai Lau 		ip6_datagram_dst_update(sk, false);
296933c162a9SMartin KaFai Lau 	bh_unlock_sock(sk);
297081aded24SDavid S. Miller }
297181aded24SDavid S. Miller EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
297281aded24SDavid S. Miller 
29737d6850f7SAlexey Kodanev void ip6_sk_dst_store_flow(struct sock *sk, struct dst_entry *dst,
29747d6850f7SAlexey Kodanev 			   const struct flowi6 *fl6)
29757d6850f7SAlexey Kodanev {
29767d6850f7SAlexey Kodanev #ifdef CONFIG_IPV6_SUBTREES
29777d6850f7SAlexey Kodanev 	struct ipv6_pinfo *np = inet6_sk(sk);
29787d6850f7SAlexey Kodanev #endif
29797d6850f7SAlexey Kodanev 
29807d6850f7SAlexey Kodanev 	ip6_dst_store(sk, dst,
29817d6850f7SAlexey Kodanev 		      ipv6_addr_equal(&fl6->daddr, &sk->sk_v6_daddr) ?
29827d6850f7SAlexey Kodanev 		      &sk->sk_v6_daddr : NULL,
29837d6850f7SAlexey Kodanev #ifdef CONFIG_IPV6_SUBTREES
29847d6850f7SAlexey Kodanev 		      ipv6_addr_equal(&fl6->saddr, &np->saddr) ?
29857d6850f7SAlexey Kodanev 		      &np->saddr :
29867d6850f7SAlexey Kodanev #endif
29877d6850f7SAlexey Kodanev 		      NULL);
29887d6850f7SAlexey Kodanev }
29897d6850f7SAlexey Kodanev 
29909b6b35abSDavid Ahern static bool ip6_redirect_nh_match(const struct fib6_result *res,
29910b34eb00SDavid Ahern 				  struct flowi6 *fl6,
29920b34eb00SDavid Ahern 				  const struct in6_addr *gw,
29930b34eb00SDavid Ahern 				  struct rt6_info **ret)
29940b34eb00SDavid Ahern {
29959b6b35abSDavid Ahern 	const struct fib6_nh *nh = res->nh;
29969b6b35abSDavid Ahern 
29970b34eb00SDavid Ahern 	if (nh->fib_nh_flags & RTNH_F_DEAD || !nh->fib_nh_gw_family ||
29980b34eb00SDavid Ahern 	    fl6->flowi6_oif != nh->fib_nh_dev->ifindex)
29990b34eb00SDavid Ahern 		return false;
30000b34eb00SDavid Ahern 
30010b34eb00SDavid Ahern 	/* rt_cache's gateway might be different from its 'parent'
30020b34eb00SDavid Ahern 	 * in the case of an ip redirect.
30030b34eb00SDavid Ahern 	 * So we keep searching in the exception table if the gateway
30040b34eb00SDavid Ahern 	 * is different.
30050b34eb00SDavid Ahern 	 */
30060b34eb00SDavid Ahern 	if (!ipv6_addr_equal(gw, &nh->fib_nh_gw6)) {
30070b34eb00SDavid Ahern 		struct rt6_info *rt_cache;
30080b34eb00SDavid Ahern 
30099b6b35abSDavid Ahern 		rt_cache = rt6_find_cached_rt(res, &fl6->daddr, &fl6->saddr);
30100b34eb00SDavid Ahern 		if (rt_cache &&
30110b34eb00SDavid Ahern 		    ipv6_addr_equal(gw, &rt_cache->rt6i_gateway)) {
30120b34eb00SDavid Ahern 			*ret = rt_cache;
30130b34eb00SDavid Ahern 			return true;
30140b34eb00SDavid Ahern 		}
30150b34eb00SDavid Ahern 		return false;
30160b34eb00SDavid Ahern 	}
30170b34eb00SDavid Ahern 	return true;
30180b34eb00SDavid Ahern }
30190b34eb00SDavid Ahern 
3020c55c8988SDavid Ahern struct fib6_nh_rd_arg {
3021c55c8988SDavid Ahern 	struct fib6_result	*res;
3022c55c8988SDavid Ahern 	struct flowi6		*fl6;
3023c55c8988SDavid Ahern 	const struct in6_addr	*gw;
3024c55c8988SDavid Ahern 	struct rt6_info		**ret;
3025c55c8988SDavid Ahern };
3026c55c8988SDavid Ahern 
3027c55c8988SDavid Ahern static int fib6_nh_redirect_match(struct fib6_nh *nh, void *_arg)
3028c55c8988SDavid Ahern {
3029c55c8988SDavid Ahern 	struct fib6_nh_rd_arg *arg = _arg;
3030c55c8988SDavid Ahern 
3031c55c8988SDavid Ahern 	arg->res->nh = nh;
3032c55c8988SDavid Ahern 	return ip6_redirect_nh_match(arg->res, arg->fl6, arg->gw, arg->ret);
3033c55c8988SDavid Ahern }
3034c55c8988SDavid Ahern 
3035b55b76b2SDuan Jiong /* Handle redirects */
3036b55b76b2SDuan Jiong struct ip6rd_flowi {
3037b55b76b2SDuan Jiong 	struct flowi6 fl6;
3038b55b76b2SDuan Jiong 	struct in6_addr gateway;
3039b55b76b2SDuan Jiong };
3040b55b76b2SDuan Jiong 
304155cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *__ip6_route_redirect(struct net *net,
3042b55b76b2SDuan Jiong 					     struct fib6_table *table,
3043b55b76b2SDuan Jiong 					     struct flowi6 *fl6,
3044b75cc8f9SDavid Ahern 					     const struct sk_buff *skb,
3045b55b76b2SDuan Jiong 					     int flags)
3046b55b76b2SDuan Jiong {
3047b55b76b2SDuan Jiong 	struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6;
30480b34eb00SDavid Ahern 	struct rt6_info *ret = NULL;
30499b6b35abSDavid Ahern 	struct fib6_result res = {};
3050c55c8988SDavid Ahern 	struct fib6_nh_rd_arg arg = {
3051c55c8988SDavid Ahern 		.res = &res,
3052c55c8988SDavid Ahern 		.fl6 = fl6,
3053c55c8988SDavid Ahern 		.gw  = &rdfl->gateway,
3054c55c8988SDavid Ahern 		.ret = &ret
3055c55c8988SDavid Ahern 	};
30568d1c802bSDavid Ahern 	struct fib6_info *rt;
3057b55b76b2SDuan Jiong 	struct fib6_node *fn;
3058b55b76b2SDuan Jiong 
305931680ac2SDavid Ahern 	/* l3mdev_update_flow overrides oif if the device is enslaved; in
306031680ac2SDavid Ahern 	 * this case we must match on the real ingress device, so reset it
306131680ac2SDavid Ahern 	 */
306231680ac2SDavid Ahern 	if (fl6->flowi6_flags & FLOWI_FLAG_SKIP_NH_OIF)
306331680ac2SDavid Ahern 		fl6->flowi6_oif = skb->dev->ifindex;
306431680ac2SDavid Ahern 
3065b55b76b2SDuan Jiong 	/* Get the "current" route for this destination and
306667c408cfSAlexander Alemayhu 	 * check if the redirect has come from appropriate router.
3067b55b76b2SDuan Jiong 	 *
3068b55b76b2SDuan Jiong 	 * RFC 4861 specifies that redirects should only be
3069b55b76b2SDuan Jiong 	 * accepted if they come from the nexthop to the target.
3070b55b76b2SDuan Jiong 	 * Due to the way the routes are chosen, this notion
3071b55b76b2SDuan Jiong 	 * is a bit fuzzy and one might need to check all possible
3072b55b76b2SDuan Jiong 	 * routes.
3073b55b76b2SDuan Jiong 	 */
3074b55b76b2SDuan Jiong 
307566f5d6ceSWei Wang 	rcu_read_lock();
30766454743bSDavid Ahern 	fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr);
3077b55b76b2SDuan Jiong restart:
307866f5d6ceSWei Wang 	for_each_fib6_node_rt_rcu(fn) {
30799b6b35abSDavid Ahern 		res.f6i = rt;
308014895687SDavid Ahern 		if (fib6_check_expired(rt))
3081b55b76b2SDuan Jiong 			continue;
308293c2fb25SDavid Ahern 		if (rt->fib6_flags & RTF_REJECT)
3083b55b76b2SDuan Jiong 			break;
3084c55c8988SDavid Ahern 		if (unlikely(rt->nh)) {
3085c55c8988SDavid Ahern 			if (nexthop_is_blackhole(rt->nh))
3086c55c8988SDavid Ahern 				continue;
3087c55c8988SDavid Ahern 			/* on match, res->nh is filled in and potentially ret */
3088c55c8988SDavid Ahern 			if (nexthop_for_each_fib6_nh(rt->nh,
3089c55c8988SDavid Ahern 						     fib6_nh_redirect_match,
3090c55c8988SDavid Ahern 						     &arg))
30910b34eb00SDavid Ahern 				goto out;
3092c55c8988SDavid Ahern 		} else {
3093c55c8988SDavid Ahern 			res.nh = rt->fib6_nh;
3094c55c8988SDavid Ahern 			if (ip6_redirect_nh_match(&res, fl6, &rdfl->gateway,
3095c55c8988SDavid Ahern 						  &ret))
3096c55c8988SDavid Ahern 				goto out;
3097c55c8988SDavid Ahern 		}
3098b55b76b2SDuan Jiong 	}
3099b55b76b2SDuan Jiong 
3100b55b76b2SDuan Jiong 	if (!rt)
3101421842edSDavid Ahern 		rt = net->ipv6.fib6_null_entry;
310293c2fb25SDavid Ahern 	else if (rt->fib6_flags & RTF_REJECT) {
310323fb93a4SDavid Ahern 		ret = net->ipv6.ip6_null_entry;
3104b0a1ba59SMartin KaFai Lau 		goto out;
3105b0a1ba59SMartin KaFai Lau 	}
3106b0a1ba59SMartin KaFai Lau 
3107421842edSDavid Ahern 	if (rt == net->ipv6.fib6_null_entry) {
3108a3c00e46SMartin KaFai Lau 		fn = fib6_backtrack(fn, &fl6->saddr);
3109a3c00e46SMartin KaFai Lau 		if (fn)
3110a3c00e46SMartin KaFai Lau 			goto restart;
3111b55b76b2SDuan Jiong 	}
3112a3c00e46SMartin KaFai Lau 
31139b6b35abSDavid Ahern 	res.f6i = rt;
31141cf844c7SDavid Ahern 	res.nh = rt->fib6_nh;
3115b0a1ba59SMartin KaFai Lau out:
31167d21fec9SDavid Ahern 	if (ret) {
311710585b43SDavid Ahern 		ip6_hold_safe(net, &ret);
31187d21fec9SDavid Ahern 	} else {
31197d21fec9SDavid Ahern 		res.fib6_flags = res.f6i->fib6_flags;
31207d21fec9SDavid Ahern 		res.fib6_type = res.f6i->fib6_type;
31219b6b35abSDavid Ahern 		ret = ip6_create_rt_rcu(&res);
31227d21fec9SDavid Ahern 	}
3123b55b76b2SDuan Jiong 
312466f5d6ceSWei Wang 	rcu_read_unlock();
3125b55b76b2SDuan Jiong 
31268ff2e5b2SDavid Ahern 	trace_fib6_table_lookup(net, &res, table, fl6);
312723fb93a4SDavid Ahern 	return ret;
3128b55b76b2SDuan Jiong };
3129b55b76b2SDuan Jiong 
3130b55b76b2SDuan Jiong static struct dst_entry *ip6_route_redirect(struct net *net,
3131b55b76b2SDuan Jiong 					    const struct flowi6 *fl6,
3132b75cc8f9SDavid Ahern 					    const struct sk_buff *skb,
3133b55b76b2SDuan Jiong 					    const struct in6_addr *gateway)
3134b55b76b2SDuan Jiong {
3135b55b76b2SDuan Jiong 	int flags = RT6_LOOKUP_F_HAS_SADDR;
3136b55b76b2SDuan Jiong 	struct ip6rd_flowi rdfl;
3137b55b76b2SDuan Jiong 
3138b55b76b2SDuan Jiong 	rdfl.fl6 = *fl6;
3139b55b76b2SDuan Jiong 	rdfl.gateway = *gateway;
3140b55b76b2SDuan Jiong 
3141b75cc8f9SDavid Ahern 	return fib6_rule_lookup(net, &rdfl.fl6, skb,
3142b55b76b2SDuan Jiong 				flags, __ip6_route_redirect);
3143b55b76b2SDuan Jiong }
3144b55b76b2SDuan Jiong 
3145e2d118a1SLorenzo Colitti void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
3146e2d118a1SLorenzo Colitti 		  kuid_t uid)
31473a5ad2eeSDavid S. Miller {
31483a5ad2eeSDavid S. Miller 	const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
31493a5ad2eeSDavid S. Miller 	struct dst_entry *dst;
31501f7f10acSMaciej Żenczykowski 	struct flowi6 fl6 = {
31511f7f10acSMaciej Żenczykowski 		.flowi6_iif = LOOPBACK_IFINDEX,
31521f7f10acSMaciej Żenczykowski 		.flowi6_oif = oif,
31531f7f10acSMaciej Żenczykowski 		.flowi6_mark = mark,
31541f7f10acSMaciej Żenczykowski 		.daddr = iph->daddr,
31551f7f10acSMaciej Żenczykowski 		.saddr = iph->saddr,
31561f7f10acSMaciej Żenczykowski 		.flowlabel = ip6_flowinfo(iph),
31571f7f10acSMaciej Żenczykowski 		.flowi6_uid = uid,
31581f7f10acSMaciej Żenczykowski 	};
31593a5ad2eeSDavid S. Miller 
3160b75cc8f9SDavid Ahern 	dst = ip6_route_redirect(net, &fl6, skb, &ipv6_hdr(skb)->saddr);
31616700c270SDavid S. Miller 	rt6_do_redirect(dst, NULL, skb);
31623a5ad2eeSDavid S. Miller 	dst_release(dst);
31633a5ad2eeSDavid S. Miller }
31643a5ad2eeSDavid S. Miller EXPORT_SYMBOL_GPL(ip6_redirect);
31653a5ad2eeSDavid S. Miller 
3166d456336dSMaciej Żenczykowski void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif)
3167c92a59ecSDuan Jiong {
3168c92a59ecSDuan Jiong 	const struct ipv6hdr *iph = ipv6_hdr(skb);
3169c92a59ecSDuan Jiong 	const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb);
3170c92a59ecSDuan Jiong 	struct dst_entry *dst;
31710b26fb17SMaciej Żenczykowski 	struct flowi6 fl6 = {
31720b26fb17SMaciej Żenczykowski 		.flowi6_iif = LOOPBACK_IFINDEX,
31730b26fb17SMaciej Żenczykowski 		.flowi6_oif = oif,
31740b26fb17SMaciej Żenczykowski 		.daddr = msg->dest,
31750b26fb17SMaciej Żenczykowski 		.saddr = iph->daddr,
31760b26fb17SMaciej Żenczykowski 		.flowi6_uid = sock_net_uid(net, NULL),
31770b26fb17SMaciej Żenczykowski 	};
3178c92a59ecSDuan Jiong 
3179b75cc8f9SDavid Ahern 	dst = ip6_route_redirect(net, &fl6, skb, &iph->saddr);
3180c92a59ecSDuan Jiong 	rt6_do_redirect(dst, NULL, skb);
3181c92a59ecSDuan Jiong 	dst_release(dst);
3182c92a59ecSDuan Jiong }
3183c92a59ecSDuan Jiong 
31843a5ad2eeSDavid S. Miller void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk)
31853a5ad2eeSDavid S. Miller {
3186e2d118a1SLorenzo Colitti 	ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark,
3187e2d118a1SLorenzo Colitti 		     sk->sk_uid);
31883a5ad2eeSDavid S. Miller }
31893a5ad2eeSDavid S. Miller EXPORT_SYMBOL_GPL(ip6_sk_redirect);
31903a5ad2eeSDavid S. Miller 
31910dbaee3bSDavid S. Miller static unsigned int ip6_default_advmss(const struct dst_entry *dst)
31921da177e4SLinus Torvalds {
31930dbaee3bSDavid S. Miller 	struct net_device *dev = dst->dev;
31940dbaee3bSDavid S. Miller 	unsigned int mtu = dst_mtu(dst);
31950dbaee3bSDavid S. Miller 	struct net *net = dev_net(dev);
31960dbaee3bSDavid S. Miller 
31971da177e4SLinus Torvalds 	mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
31981da177e4SLinus Torvalds 
31995578689aSDaniel Lezcano 	if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss)
32005578689aSDaniel Lezcano 		mtu = net->ipv6.sysctl.ip6_rt_min_advmss;
32011da177e4SLinus Torvalds 
32021da177e4SLinus Torvalds 	/*
32031da177e4SLinus Torvalds 	 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
32041da177e4SLinus Torvalds 	 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
32051da177e4SLinus Torvalds 	 * IPV6_MAXPLEN is also valid and means: "any MSS,
32061da177e4SLinus Torvalds 	 * rely only on pmtu discovery"
32071da177e4SLinus Torvalds 	 */
32081da177e4SLinus Torvalds 	if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr))
32091da177e4SLinus Torvalds 		mtu = IPV6_MAXPLEN;
32101da177e4SLinus Torvalds 	return mtu;
32111da177e4SLinus Torvalds }
32121da177e4SLinus Torvalds 
3213f67fbeaeSBrian Vazquez INDIRECT_CALLABLE_SCOPE unsigned int ip6_mtu(const struct dst_entry *dst)
3214d33e4553SDavid S. Miller {
3215427faee1SVadim Fedorenko 	return ip6_dst_mtu_maybe_forward(dst, false);
3216d33e4553SDavid S. Miller }
32179c97921aSBrian Vazquez EXPORT_INDIRECT_CALLABLE(ip6_mtu);
3218d33e4553SDavid S. Miller 
3219901731b8SDavid Ahern /* MTU selection:
3220901731b8SDavid Ahern  * 1. mtu on route is locked - use it
3221901731b8SDavid Ahern  * 2. mtu from nexthop exception
3222901731b8SDavid Ahern  * 3. mtu from egress device
3223901731b8SDavid Ahern  *
3224901731b8SDavid Ahern  * based on ip6_dst_mtu_forward and exception logic of
3225901731b8SDavid Ahern  * rt6_find_cached_rt; called with rcu_read_lock
3226901731b8SDavid Ahern  */
3227b748f260SDavid Ahern u32 ip6_mtu_from_fib6(const struct fib6_result *res,
3228b748f260SDavid Ahern 		      const struct in6_addr *daddr,
3229b748f260SDavid Ahern 		      const struct in6_addr *saddr)
3230901731b8SDavid Ahern {
3231b748f260SDavid Ahern 	const struct fib6_nh *nh = res->nh;
3232b748f260SDavid Ahern 	struct fib6_info *f6i = res->f6i;
3233901731b8SDavid Ahern 	struct inet6_dev *idev;
3234510e2cedSWei Wang 	struct rt6_info *rt;
3235901731b8SDavid Ahern 	u32 mtu = 0;
3236901731b8SDavid Ahern 
3237901731b8SDavid Ahern 	if (unlikely(fib6_metric_locked(f6i, RTAX_MTU))) {
3238901731b8SDavid Ahern 		mtu = f6i->fib6_pmtu;
3239901731b8SDavid Ahern 		if (mtu)
3240901731b8SDavid Ahern 			goto out;
3241901731b8SDavid Ahern 	}
3242901731b8SDavid Ahern 
3243510e2cedSWei Wang 	rt = rt6_find_cached_rt(res, daddr, saddr);
3244510e2cedSWei Wang 	if (unlikely(rt)) {
3245510e2cedSWei Wang 		mtu = dst_metric_raw(&rt->dst, RTAX_MTU);
3246510e2cedSWei Wang 	} else {
3247b748f260SDavid Ahern 		struct net_device *dev = nh->fib_nh_dev;
3248901731b8SDavid Ahern 
3249901731b8SDavid Ahern 		mtu = IPV6_MIN_MTU;
3250901731b8SDavid Ahern 		idev = __in6_dev_get(dev);
3251901731b8SDavid Ahern 		if (idev && idev->cnf.mtu6 > mtu)
3252901731b8SDavid Ahern 			mtu = idev->cnf.mtu6;
3253901731b8SDavid Ahern 	}
3254901731b8SDavid Ahern 
3255901731b8SDavid Ahern 	mtu = min_t(unsigned int, mtu, IP6_MAX_MTU);
3256901731b8SDavid Ahern out:
3257b748f260SDavid Ahern 	return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu);
3258901731b8SDavid Ahern }
3259901731b8SDavid Ahern 
32603b00944cSYOSHIFUJI Hideaki struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
326187a11578SDavid S. Miller 				  struct flowi6 *fl6)
32621da177e4SLinus Torvalds {
326387a11578SDavid S. Miller 	struct dst_entry *dst;
32641da177e4SLinus Torvalds 	struct rt6_info *rt;
32651da177e4SLinus Torvalds 	struct inet6_dev *idev = in6_dev_get(dev);
3266c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(dev);
32671da177e4SLinus Torvalds 
326838308473SDavid S. Miller 	if (unlikely(!idev))
3269122bdf67SEric Dumazet 		return ERR_PTR(-ENODEV);
32701da177e4SLinus Torvalds 
3271ad706862SMartin KaFai Lau 	rt = ip6_dst_alloc(net, dev, 0);
327238308473SDavid S. Miller 	if (unlikely(!rt)) {
32731da177e4SLinus Torvalds 		in6_dev_put(idev);
327487a11578SDavid S. Miller 		dst = ERR_PTR(-ENOMEM);
32751da177e4SLinus Torvalds 		goto out;
32761da177e4SLinus Torvalds 	}
32771da177e4SLinus Torvalds 
3278588753f1SBrendan McGrath 	rt->dst.input = ip6_input;
32798e2ec639SYan, Zheng 	rt->dst.output  = ip6_output;
3280550bab42SJulian Anastasov 	rt->rt6i_gateway  = fl6->daddr;
328187a11578SDavid S. Miller 	rt->rt6i_dst.addr = fl6->daddr;
32828e2ec639SYan, Zheng 	rt->rt6i_dst.plen = 128;
32838e2ec639SYan, Zheng 	rt->rt6i_idev     = idev;
328414edd87dSLi RongQing 	dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0);
32851da177e4SLinus Torvalds 
32864c981e28SIdo Schimmel 	/* Add this dst into uncached_list so that rt6_disable_ip() can
3287587fea74SWei Wang 	 * do proper release of the net_device
3288587fea74SWei Wang 	 */
3289587fea74SWei Wang 	rt6_uncached_list_add(rt);
329081eb8447SWei Wang 	atomic_inc(&net->ipv6.rt6_stats->fib_rt_uncache);
32911da177e4SLinus Torvalds 
329287a11578SDavid S. Miller 	dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0);
329387a11578SDavid S. Miller 
32941da177e4SLinus Torvalds out:
329587a11578SDavid S. Miller 	return dst;
32961da177e4SLinus Torvalds }
32971da177e4SLinus Torvalds 
3298569d3645SDaniel Lezcano static int ip6_dst_gc(struct dst_ops *ops)
32991da177e4SLinus Torvalds {
330086393e52SAlexey Dobriyan 	struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops);
33017019b78eSDaniel Lezcano 	int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval;
33027019b78eSDaniel Lezcano 	int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size;
33037019b78eSDaniel Lezcano 	int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity;
33047019b78eSDaniel Lezcano 	int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout;
33057019b78eSDaniel Lezcano 	unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc;
3306fc66f95cSEric Dumazet 	int entries;
33071da177e4SLinus Torvalds 
3308fc66f95cSEric Dumazet 	entries = dst_entries_get_fast(ops);
3309cf86a086SEric Dumazet 	if (entries > rt_max_size)
3310cf86a086SEric Dumazet 		entries = dst_entries_get_slow(ops);
3311cf86a086SEric Dumazet 
331249a18d86SMichal Kubeček 	if (time_after(rt_last_gc + rt_min_interval, jiffies) &&
3313fc66f95cSEric Dumazet 	    entries <= rt_max_size)
33141da177e4SLinus Torvalds 		goto out;
33151da177e4SLinus Torvalds 
33166891a346SBenjamin Thery 	net->ipv6.ip6_rt_gc_expire++;
331714956643SLi RongQing 	fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true);
3318fc66f95cSEric Dumazet 	entries = dst_entries_get_slow(ops);
3319fc66f95cSEric Dumazet 	if (entries < ops->gc_thresh)
33207019b78eSDaniel Lezcano 		net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1;
33211da177e4SLinus Torvalds out:
33227019b78eSDaniel Lezcano 	net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity;
3323fc66f95cSEric Dumazet 	return entries > rt_max_size;
33241da177e4SLinus Torvalds }
33251da177e4SLinus Torvalds 
3326b2c709ccSDavid Ahern static int ip6_nh_lookup_table(struct net *net, struct fib6_config *cfg,
3327b2c709ccSDavid Ahern 			       const struct in6_addr *gw_addr, u32 tbid,
3328b2c709ccSDavid Ahern 			       int flags, struct fib6_result *res)
33298c14586fSDavid Ahern {
33308c14586fSDavid Ahern 	struct flowi6 fl6 = {
33318c14586fSDavid Ahern 		.flowi6_oif = cfg->fc_ifindex,
33328c14586fSDavid Ahern 		.daddr = *gw_addr,
33338c14586fSDavid Ahern 		.saddr = cfg->fc_prefsrc,
33348c14586fSDavid Ahern 	};
33358c14586fSDavid Ahern 	struct fib6_table *table;
3336b2c709ccSDavid Ahern 	int err;
33378c14586fSDavid Ahern 
3338f4797b33SDavid Ahern 	table = fib6_get_table(net, tbid);
33398c14586fSDavid Ahern 	if (!table)
3340b2c709ccSDavid Ahern 		return -EINVAL;
33418c14586fSDavid Ahern 
33428c14586fSDavid Ahern 	if (!ipv6_addr_any(&cfg->fc_prefsrc))
33438c14586fSDavid Ahern 		flags |= RT6_LOOKUP_F_HAS_SADDR;
33448c14586fSDavid Ahern 
3345f4797b33SDavid Ahern 	flags |= RT6_LOOKUP_F_IGNORE_LINKSTATE;
33468c14586fSDavid Ahern 
3347b2c709ccSDavid Ahern 	err = fib6_table_lookup(net, table, cfg->fc_ifindex, &fl6, res, flags);
3348b2c709ccSDavid Ahern 	if (!err && res->f6i != net->ipv6.fib6_null_entry)
3349b2c709ccSDavid Ahern 		fib6_select_path(net, res, &fl6, cfg->fc_ifindex,
3350b2c709ccSDavid Ahern 				 cfg->fc_ifindex != 0, NULL, flags);
33518c14586fSDavid Ahern 
3352b2c709ccSDavid Ahern 	return err;
33538c14586fSDavid Ahern }
33548c14586fSDavid Ahern 
3355fc1e64e1SDavid Ahern static int ip6_route_check_nh_onlink(struct net *net,
3356fc1e64e1SDavid Ahern 				     struct fib6_config *cfg,
33579fbb704cSDavid Ahern 				     const struct net_device *dev,
3358fc1e64e1SDavid Ahern 				     struct netlink_ext_ack *extack)
3359fc1e64e1SDavid Ahern {
3360b2c709ccSDavid Ahern 	u32 tbid = l3mdev_fib_table_rcu(dev) ? : RT_TABLE_MAIN;
3361fc1e64e1SDavid Ahern 	const struct in6_addr *gw_addr = &cfg->fc_gateway;
3362b2c709ccSDavid Ahern 	struct fib6_result res = {};
3363fc1e64e1SDavid Ahern 	int err;
3364fc1e64e1SDavid Ahern 
3365b2c709ccSDavid Ahern 	err = ip6_nh_lookup_table(net, cfg, gw_addr, tbid, 0, &res);
3366b2c709ccSDavid Ahern 	if (!err && !(res.fib6_flags & RTF_REJECT) &&
33674ed591c8SDavid Ahern 	    /* ignore match if it is the default route */
3368b2c709ccSDavid Ahern 	    !ipv6_addr_any(&res.f6i->fib6_dst.addr) &&
3369b2c709ccSDavid Ahern 	    (res.fib6_type != RTN_UNICAST || dev != res.nh->fib_nh_dev)) {
337044750f84SDavid Ahern 		NL_SET_ERR_MSG(extack,
337144750f84SDavid Ahern 			       "Nexthop has invalid gateway or device mismatch");
3372fc1e64e1SDavid Ahern 		err = -EINVAL;
3373fc1e64e1SDavid Ahern 	}
3374fc1e64e1SDavid Ahern 
3375fc1e64e1SDavid Ahern 	return err;
3376fc1e64e1SDavid Ahern }
3377fc1e64e1SDavid Ahern 
33781edce99fSDavid Ahern static int ip6_route_check_nh(struct net *net,
33791edce99fSDavid Ahern 			      struct fib6_config *cfg,
33801edce99fSDavid Ahern 			      struct net_device **_dev,
33811edce99fSDavid Ahern 			      struct inet6_dev **idev)
33821edce99fSDavid Ahern {
33831edce99fSDavid Ahern 	const struct in6_addr *gw_addr = &cfg->fc_gateway;
33841edce99fSDavid Ahern 	struct net_device *dev = _dev ? *_dev : NULL;
3385b2c709ccSDavid Ahern 	int flags = RT6_LOOKUP_F_IFACE;
3386b2c709ccSDavid Ahern 	struct fib6_result res = {};
33871edce99fSDavid Ahern 	int err = -EHOSTUNREACH;
33881edce99fSDavid Ahern 
33891edce99fSDavid Ahern 	if (cfg->fc_table) {
3390b2c709ccSDavid Ahern 		err = ip6_nh_lookup_table(net, cfg, gw_addr,
3391b2c709ccSDavid Ahern 					  cfg->fc_table, flags, &res);
3392b2c709ccSDavid Ahern 		/* gw_addr can not require a gateway or resolve to a reject
3393b2c709ccSDavid Ahern 		 * route. If a device is given, it must match the result.
3394b2c709ccSDavid Ahern 		 */
3395b2c709ccSDavid Ahern 		if (err || res.fib6_flags & RTF_REJECT ||
3396b2c709ccSDavid Ahern 		    res.nh->fib_nh_gw_family ||
3397b2c709ccSDavid Ahern 		    (dev && dev != res.nh->fib_nh_dev))
3398b2c709ccSDavid Ahern 			err = -EHOSTUNREACH;
33991edce99fSDavid Ahern 	}
34001edce99fSDavid Ahern 
3401b2c709ccSDavid Ahern 	if (err < 0) {
3402b2c709ccSDavid Ahern 		struct flowi6 fl6 = {
3403b2c709ccSDavid Ahern 			.flowi6_oif = cfg->fc_ifindex,
3404b2c709ccSDavid Ahern 			.daddr = *gw_addr,
3405b2c709ccSDavid Ahern 		};
34061edce99fSDavid Ahern 
3407b2c709ccSDavid Ahern 		err = fib6_lookup(net, cfg->fc_ifindex, &fl6, &res, flags);
3408b2c709ccSDavid Ahern 		if (err || res.fib6_flags & RTF_REJECT ||
3409b2c709ccSDavid Ahern 		    res.nh->fib_nh_gw_family)
3410b2c709ccSDavid Ahern 			err = -EHOSTUNREACH;
34111edce99fSDavid Ahern 
3412b2c709ccSDavid Ahern 		if (err)
3413b2c709ccSDavid Ahern 			return err;
3414b2c709ccSDavid Ahern 
3415b2c709ccSDavid Ahern 		fib6_select_path(net, &res, &fl6, cfg->fc_ifindex,
3416b2c709ccSDavid Ahern 				 cfg->fc_ifindex != 0, NULL, flags);
34171edce99fSDavid Ahern 	}
34181edce99fSDavid Ahern 
34191edce99fSDavid Ahern 	err = 0;
3420b2c709ccSDavid Ahern 	if (dev) {
3421b2c709ccSDavid Ahern 		if (dev != res.nh->fib_nh_dev)
3422b2c709ccSDavid Ahern 			err = -EHOSTUNREACH;
3423b2c709ccSDavid Ahern 	} else {
3424b2c709ccSDavid Ahern 		*_dev = dev = res.nh->fib_nh_dev;
3425b2c709ccSDavid Ahern 		dev_hold(dev);
3426b2c709ccSDavid Ahern 		*idev = in6_dev_get(dev);
3427b2c709ccSDavid Ahern 	}
34281edce99fSDavid Ahern 
34291edce99fSDavid Ahern 	return err;
34301edce99fSDavid Ahern }
34311edce99fSDavid Ahern 
34329fbb704cSDavid Ahern static int ip6_validate_gw(struct net *net, struct fib6_config *cfg,
34339fbb704cSDavid Ahern 			   struct net_device **_dev, struct inet6_dev **idev,
34349fbb704cSDavid Ahern 			   struct netlink_ext_ack *extack)
34359fbb704cSDavid Ahern {
34369fbb704cSDavid Ahern 	const struct in6_addr *gw_addr = &cfg->fc_gateway;
34379fbb704cSDavid Ahern 	int gwa_type = ipv6_addr_type(gw_addr);
3438232378e8SDavid Ahern 	bool skip_dev = gwa_type & IPV6_ADDR_LINKLOCAL ? false : true;
34399fbb704cSDavid Ahern 	const struct net_device *dev = *_dev;
3440232378e8SDavid Ahern 	bool need_addr_check = !dev;
34419fbb704cSDavid Ahern 	int err = -EINVAL;
34429fbb704cSDavid Ahern 
34439fbb704cSDavid Ahern 	/* if gw_addr is local we will fail to detect this in case
34449fbb704cSDavid Ahern 	 * address is still TENTATIVE (DAD in progress). rt6_lookup()
34459fbb704cSDavid Ahern 	 * will return already-added prefix route via interface that
34469fbb704cSDavid Ahern 	 * prefix route was assigned to, which might be non-loopback.
34479fbb704cSDavid Ahern 	 */
3448232378e8SDavid Ahern 	if (dev &&
3449232378e8SDavid Ahern 	    ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) {
3450232378e8SDavid Ahern 		NL_SET_ERR_MSG(extack, "Gateway can not be a local address");
34519fbb704cSDavid Ahern 		goto out;
34529fbb704cSDavid Ahern 	}
34539fbb704cSDavid Ahern 
34549fbb704cSDavid Ahern 	if (gwa_type != (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_UNICAST)) {
34559fbb704cSDavid Ahern 		/* IPv6 strictly inhibits using not link-local
34569fbb704cSDavid Ahern 		 * addresses as nexthop address.
34579fbb704cSDavid Ahern 		 * Otherwise, router will not able to send redirects.
34589fbb704cSDavid Ahern 		 * It is very good, but in some (rare!) circumstances
34599fbb704cSDavid Ahern 		 * (SIT, PtP, NBMA NOARP links) it is handy to allow
34609fbb704cSDavid Ahern 		 * some exceptions. --ANK
34619fbb704cSDavid Ahern 		 * We allow IPv4-mapped nexthops to support RFC4798-type
34629fbb704cSDavid Ahern 		 * addressing
34639fbb704cSDavid Ahern 		 */
34649fbb704cSDavid Ahern 		if (!(gwa_type & (IPV6_ADDR_UNICAST | IPV6_ADDR_MAPPED))) {
34659fbb704cSDavid Ahern 			NL_SET_ERR_MSG(extack, "Invalid gateway address");
34669fbb704cSDavid Ahern 			goto out;
34679fbb704cSDavid Ahern 		}
34689fbb704cSDavid Ahern 
3469b2c709ccSDavid Ahern 		rcu_read_lock();
3470b2c709ccSDavid Ahern 
34719fbb704cSDavid Ahern 		if (cfg->fc_flags & RTNH_F_ONLINK)
34729fbb704cSDavid Ahern 			err = ip6_route_check_nh_onlink(net, cfg, dev, extack);
34739fbb704cSDavid Ahern 		else
34749fbb704cSDavid Ahern 			err = ip6_route_check_nh(net, cfg, _dev, idev);
34759fbb704cSDavid Ahern 
3476b2c709ccSDavid Ahern 		rcu_read_unlock();
3477b2c709ccSDavid Ahern 
34789fbb704cSDavid Ahern 		if (err)
34799fbb704cSDavid Ahern 			goto out;
34809fbb704cSDavid Ahern 	}
34819fbb704cSDavid Ahern 
34829fbb704cSDavid Ahern 	/* reload in case device was changed */
34839fbb704cSDavid Ahern 	dev = *_dev;
34849fbb704cSDavid Ahern 
34859fbb704cSDavid Ahern 	err = -EINVAL;
34869fbb704cSDavid Ahern 	if (!dev) {
34879fbb704cSDavid Ahern 		NL_SET_ERR_MSG(extack, "Egress device not specified");
34889fbb704cSDavid Ahern 		goto out;
34899fbb704cSDavid Ahern 	} else if (dev->flags & IFF_LOOPBACK) {
34909fbb704cSDavid Ahern 		NL_SET_ERR_MSG(extack,
34919fbb704cSDavid Ahern 			       "Egress device can not be loopback device for this route");
34929fbb704cSDavid Ahern 		goto out;
34939fbb704cSDavid Ahern 	}
3494232378e8SDavid Ahern 
3495232378e8SDavid Ahern 	/* if we did not check gw_addr above, do so now that the
3496232378e8SDavid Ahern 	 * egress device has been resolved.
3497232378e8SDavid Ahern 	 */
3498232378e8SDavid Ahern 	if (need_addr_check &&
3499232378e8SDavid Ahern 	    ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) {
3500232378e8SDavid Ahern 		NL_SET_ERR_MSG(extack, "Gateway can not be a local address");
3501232378e8SDavid Ahern 		goto out;
3502232378e8SDavid Ahern 	}
3503232378e8SDavid Ahern 
35049fbb704cSDavid Ahern 	err = 0;
35059fbb704cSDavid Ahern out:
35069fbb704cSDavid Ahern 	return err;
35079fbb704cSDavid Ahern }
35089fbb704cSDavid Ahern 
350983c44251SDavid Ahern static bool fib6_is_reject(u32 flags, struct net_device *dev, int addr_type)
351083c44251SDavid Ahern {
351183c44251SDavid Ahern 	if ((flags & RTF_REJECT) ||
351283c44251SDavid Ahern 	    (dev && (dev->flags & IFF_LOOPBACK) &&
351383c44251SDavid Ahern 	     !(addr_type & IPV6_ADDR_LOOPBACK) &&
3514aea23c32SDavid Ahern 	     !(flags & (RTF_ANYCAST | RTF_LOCAL))))
351583c44251SDavid Ahern 		return true;
351683c44251SDavid Ahern 
351783c44251SDavid Ahern 	return false;
351883c44251SDavid Ahern }
351983c44251SDavid Ahern 
352083c44251SDavid Ahern int fib6_nh_init(struct net *net, struct fib6_nh *fib6_nh,
352183c44251SDavid Ahern 		 struct fib6_config *cfg, gfp_t gfp_flags,
352283c44251SDavid Ahern 		 struct netlink_ext_ack *extack)
352383c44251SDavid Ahern {
352483c44251SDavid Ahern 	struct net_device *dev = NULL;
352583c44251SDavid Ahern 	struct inet6_dev *idev = NULL;
352683c44251SDavid Ahern 	int addr_type;
352783c44251SDavid Ahern 	int err;
352883c44251SDavid Ahern 
3529f1741730SDavid Ahern 	fib6_nh->fib_nh_family = AF_INET6;
35301bef4c22SEric Dumazet #ifdef CONFIG_IPV6_ROUTER_PREF
35311bef4c22SEric Dumazet 	fib6_nh->last_probe = jiffies;
35321bef4c22SEric Dumazet #endif
353338428d68SRoopa Prabhu 	if (cfg->fc_is_fdb) {
353438428d68SRoopa Prabhu 		fib6_nh->fib_nh_gw6 = cfg->fc_gateway;
353538428d68SRoopa Prabhu 		fib6_nh->fib_nh_gw_family = AF_INET6;
353638428d68SRoopa Prabhu 		return 0;
353738428d68SRoopa Prabhu 	}
3538f1741730SDavid Ahern 
353983c44251SDavid Ahern 	err = -ENODEV;
354083c44251SDavid Ahern 	if (cfg->fc_ifindex) {
354183c44251SDavid Ahern 		dev = dev_get_by_index(net, cfg->fc_ifindex);
354283c44251SDavid Ahern 		if (!dev)
354383c44251SDavid Ahern 			goto out;
354483c44251SDavid Ahern 		idev = in6_dev_get(dev);
354583c44251SDavid Ahern 		if (!idev)
354683c44251SDavid Ahern 			goto out;
354783c44251SDavid Ahern 	}
354883c44251SDavid Ahern 
354983c44251SDavid Ahern 	if (cfg->fc_flags & RTNH_F_ONLINK) {
355083c44251SDavid Ahern 		if (!dev) {
355183c44251SDavid Ahern 			NL_SET_ERR_MSG(extack,
355283c44251SDavid Ahern 				       "Nexthop device required for onlink");
355383c44251SDavid Ahern 			goto out;
355483c44251SDavid Ahern 		}
355583c44251SDavid Ahern 
355683c44251SDavid Ahern 		if (!(dev->flags & IFF_UP)) {
355783c44251SDavid Ahern 			NL_SET_ERR_MSG(extack, "Nexthop device is not up");
355883c44251SDavid Ahern 			err = -ENETDOWN;
355983c44251SDavid Ahern 			goto out;
356083c44251SDavid Ahern 		}
356183c44251SDavid Ahern 
3562ad1601aeSDavid Ahern 		fib6_nh->fib_nh_flags |= RTNH_F_ONLINK;
356383c44251SDavid Ahern 	}
356483c44251SDavid Ahern 
3565ad1601aeSDavid Ahern 	fib6_nh->fib_nh_weight = 1;
356683c44251SDavid Ahern 
356783c44251SDavid Ahern 	/* We cannot add true routes via loopback here,
356883c44251SDavid Ahern 	 * they would result in kernel looping; promote them to reject routes
356983c44251SDavid Ahern 	 */
357083c44251SDavid Ahern 	addr_type = ipv6_addr_type(&cfg->fc_dst);
357183c44251SDavid Ahern 	if (fib6_is_reject(cfg->fc_flags, dev, addr_type)) {
357283c44251SDavid Ahern 		/* hold loopback dev/idev if we haven't done so. */
357383c44251SDavid Ahern 		if (dev != net->loopback_dev) {
357483c44251SDavid Ahern 			if (dev) {
357583c44251SDavid Ahern 				dev_put(dev);
357683c44251SDavid Ahern 				in6_dev_put(idev);
357783c44251SDavid Ahern 			}
357883c44251SDavid Ahern 			dev = net->loopback_dev;
357983c44251SDavid Ahern 			dev_hold(dev);
358083c44251SDavid Ahern 			idev = in6_dev_get(dev);
358183c44251SDavid Ahern 			if (!idev) {
358283c44251SDavid Ahern 				err = -ENODEV;
358383c44251SDavid Ahern 				goto out;
358483c44251SDavid Ahern 			}
358583c44251SDavid Ahern 		}
35867dd73168SDavid Ahern 		goto pcpu_alloc;
358783c44251SDavid Ahern 	}
358883c44251SDavid Ahern 
358983c44251SDavid Ahern 	if (cfg->fc_flags & RTF_GATEWAY) {
359083c44251SDavid Ahern 		err = ip6_validate_gw(net, cfg, &dev, &idev, extack);
359183c44251SDavid Ahern 		if (err)
359283c44251SDavid Ahern 			goto out;
359383c44251SDavid Ahern 
3594ad1601aeSDavid Ahern 		fib6_nh->fib_nh_gw6 = cfg->fc_gateway;
3595bdf00467SDavid Ahern 		fib6_nh->fib_nh_gw_family = AF_INET6;
359683c44251SDavid Ahern 	}
359783c44251SDavid Ahern 
359883c44251SDavid Ahern 	err = -ENODEV;
359983c44251SDavid Ahern 	if (!dev)
360083c44251SDavid Ahern 		goto out;
360183c44251SDavid Ahern 
360283c44251SDavid Ahern 	if (idev->cnf.disable_ipv6) {
360383c44251SDavid Ahern 		NL_SET_ERR_MSG(extack, "IPv6 is disabled on nexthop device");
360483c44251SDavid Ahern 		err = -EACCES;
360583c44251SDavid Ahern 		goto out;
360683c44251SDavid Ahern 	}
360783c44251SDavid Ahern 
360883c44251SDavid Ahern 	if (!(dev->flags & IFF_UP) && !cfg->fc_ignore_dev_down) {
360983c44251SDavid Ahern 		NL_SET_ERR_MSG(extack, "Nexthop device is not up");
361083c44251SDavid Ahern 		err = -ENETDOWN;
361183c44251SDavid Ahern 		goto out;
361283c44251SDavid Ahern 	}
361383c44251SDavid Ahern 
361483c44251SDavid Ahern 	if (!(cfg->fc_flags & (RTF_LOCAL | RTF_ANYCAST)) &&
361583c44251SDavid Ahern 	    !netif_carrier_ok(dev))
3616ad1601aeSDavid Ahern 		fib6_nh->fib_nh_flags |= RTNH_F_LINKDOWN;
361783c44251SDavid Ahern 
3618faee6769SAlexander Aring 	err = fib_nh_common_init(net, &fib6_nh->nh_common, cfg->fc_encap,
36197dd73168SDavid Ahern 				 cfg->fc_encap_type, cfg, gfp_flags, extack);
36207dd73168SDavid Ahern 	if (err)
36217dd73168SDavid Ahern 		goto out;
36227dd73168SDavid Ahern 
36237dd73168SDavid Ahern pcpu_alloc:
3624f40b6ae2SDavid Ahern 	fib6_nh->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, gfp_flags);
3625f40b6ae2SDavid Ahern 	if (!fib6_nh->rt6i_pcpu) {
3626f40b6ae2SDavid Ahern 		err = -ENOMEM;
3627f40b6ae2SDavid Ahern 		goto out;
3628f40b6ae2SDavid Ahern 	}
3629f40b6ae2SDavid Ahern 
3630ad1601aeSDavid Ahern 	fib6_nh->fib_nh_dev = dev;
3631e44b14ebSEric Dumazet 	netdev_tracker_alloc(dev, &fib6_nh->fib_nh_dev_tracker, gfp_flags);
3632e44b14ebSEric Dumazet 
3633f1741730SDavid Ahern 	fib6_nh->fib_nh_oif = dev->ifindex;
363483c44251SDavid Ahern 	err = 0;
363583c44251SDavid Ahern out:
363683c44251SDavid Ahern 	if (idev)
363783c44251SDavid Ahern 		in6_dev_put(idev);
363883c44251SDavid Ahern 
363983c44251SDavid Ahern 	if (err) {
3640ad1601aeSDavid Ahern 		lwtstate_put(fib6_nh->fib_nh_lws);
3641ad1601aeSDavid Ahern 		fib6_nh->fib_nh_lws = NULL;
364283c44251SDavid Ahern 		dev_put(dev);
364383c44251SDavid Ahern 	}
364483c44251SDavid Ahern 
364583c44251SDavid Ahern 	return err;
364683c44251SDavid Ahern }
364783c44251SDavid Ahern 
3648dac7d0f2SDavid Ahern void fib6_nh_release(struct fib6_nh *fib6_nh)
3649dac7d0f2SDavid Ahern {
3650cc5c073aSDavid Ahern 	struct rt6_exception_bucket *bucket;
3651cc5c073aSDavid Ahern 
3652cc5c073aSDavid Ahern 	rcu_read_lock();
3653cc5c073aSDavid Ahern 
3654cc5c073aSDavid Ahern 	fib6_nh_flush_exceptions(fib6_nh, NULL);
3655cc5c073aSDavid Ahern 	bucket = fib6_nh_get_excptn_bucket(fib6_nh, NULL);
3656cc5c073aSDavid Ahern 	if (bucket) {
3657cc5c073aSDavid Ahern 		rcu_assign_pointer(fib6_nh->rt6i_exception_bucket, NULL);
3658cc5c073aSDavid Ahern 		kfree(bucket);
3659cc5c073aSDavid Ahern 	}
3660cc5c073aSDavid Ahern 
3661cc5c073aSDavid Ahern 	rcu_read_unlock();
3662cc5c073aSDavid Ahern 
366361308050SNikolay Aleksandrov 	fib6_nh_release_dsts(fib6_nh);
3664f40b6ae2SDavid Ahern 	free_percpu(fib6_nh->rt6i_pcpu);
3665f40b6ae2SDavid Ahern 
3666979e276eSDavid Ahern 	fib_nh_common_release(&fib6_nh->nh_common);
3667dac7d0f2SDavid Ahern }
3668dac7d0f2SDavid Ahern 
36698837cbbfSNikolay Aleksandrov void fib6_nh_release_dsts(struct fib6_nh *fib6_nh)
36708837cbbfSNikolay Aleksandrov {
36718837cbbfSNikolay Aleksandrov 	int cpu;
36728837cbbfSNikolay Aleksandrov 
36738837cbbfSNikolay Aleksandrov 	if (!fib6_nh->rt6i_pcpu)
36748837cbbfSNikolay Aleksandrov 		return;
36758837cbbfSNikolay Aleksandrov 
36768837cbbfSNikolay Aleksandrov 	for_each_possible_cpu(cpu) {
36778837cbbfSNikolay Aleksandrov 		struct rt6_info *pcpu_rt, **ppcpu_rt;
36788837cbbfSNikolay Aleksandrov 
36798837cbbfSNikolay Aleksandrov 		ppcpu_rt = per_cpu_ptr(fib6_nh->rt6i_pcpu, cpu);
36808837cbbfSNikolay Aleksandrov 		pcpu_rt = xchg(ppcpu_rt, NULL);
36818837cbbfSNikolay Aleksandrov 		if (pcpu_rt) {
36828837cbbfSNikolay Aleksandrov 			dst_dev_put(&pcpu_rt->dst);
36838837cbbfSNikolay Aleksandrov 			dst_release(&pcpu_rt->dst);
36848837cbbfSNikolay Aleksandrov 		}
36858837cbbfSNikolay Aleksandrov 	}
36868837cbbfSNikolay Aleksandrov }
36878837cbbfSNikolay Aleksandrov 
36888d1c802bSDavid Ahern static struct fib6_info *ip6_route_info_create(struct fib6_config *cfg,
3689acb54e3cSDavid Ahern 					      gfp_t gfp_flags,
3690333c4301SDavid Ahern 					      struct netlink_ext_ack *extack)
36911da177e4SLinus Torvalds {
36925578689aSDaniel Lezcano 	struct net *net = cfg->fc_nlinfo.nl_net;
36938d1c802bSDavid Ahern 	struct fib6_info *rt = NULL;
3694f88d8ea6SDavid Ahern 	struct nexthop *nh = NULL;
3695c71099acSThomas Graf 	struct fib6_table *table;
3696f88d8ea6SDavid Ahern 	struct fib6_nh *fib6_nh;
36978c5b83f0SRoopa Prabhu 	int err = -EINVAL;
369883c44251SDavid Ahern 	int addr_type;
36991da177e4SLinus Torvalds 
3700557c44beSDavid Ahern 	/* RTF_PCPU is an internal flag; can not be set by userspace */
3701d5d531cbSDavid Ahern 	if (cfg->fc_flags & RTF_PCPU) {
3702d5d531cbSDavid Ahern 		NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU");
3703557c44beSDavid Ahern 		goto out;
3704d5d531cbSDavid Ahern 	}
3705557c44beSDavid Ahern 
37062ea2352eSWei Wang 	/* RTF_CACHE is an internal flag; can not be set by userspace */
37072ea2352eSWei Wang 	if (cfg->fc_flags & RTF_CACHE) {
37082ea2352eSWei Wang 		NL_SET_ERR_MSG(extack, "Userspace can not set RTF_CACHE");
37092ea2352eSWei Wang 		goto out;
37102ea2352eSWei Wang 	}
37112ea2352eSWei Wang 
3712e8478e80SDavid Ahern 	if (cfg->fc_type > RTN_MAX) {
3713e8478e80SDavid Ahern 		NL_SET_ERR_MSG(extack, "Invalid route type");
3714e8478e80SDavid Ahern 		goto out;
3715e8478e80SDavid Ahern 	}
3716e8478e80SDavid Ahern 
3717d5d531cbSDavid Ahern 	if (cfg->fc_dst_len > 128) {
3718d5d531cbSDavid Ahern 		NL_SET_ERR_MSG(extack, "Invalid prefix length");
37198c5b83f0SRoopa Prabhu 		goto out;
3720d5d531cbSDavid Ahern 	}
3721d5d531cbSDavid Ahern 	if (cfg->fc_src_len > 128) {
3722d5d531cbSDavid Ahern 		NL_SET_ERR_MSG(extack, "Invalid source address length");
3723d5d531cbSDavid Ahern 		goto out;
3724d5d531cbSDavid Ahern 	}
37251da177e4SLinus Torvalds #ifndef CONFIG_IPV6_SUBTREES
3726d5d531cbSDavid Ahern 	if (cfg->fc_src_len) {
3727d5d531cbSDavid Ahern 		NL_SET_ERR_MSG(extack,
3728d5d531cbSDavid Ahern 			       "Specifying source address requires IPV6_SUBTREES to be enabled");
37298c5b83f0SRoopa Prabhu 		goto out;
3730d5d531cbSDavid Ahern 	}
37311da177e4SLinus Torvalds #endif
37325b98324eSDavid Ahern 	if (cfg->fc_nh_id) {
37335b98324eSDavid Ahern 		nh = nexthop_find_by_id(net, cfg->fc_nh_id);
37345b98324eSDavid Ahern 		if (!nh) {
37355b98324eSDavid Ahern 			NL_SET_ERR_MSG(extack, "Nexthop id does not exist");
37365b98324eSDavid Ahern 			goto out;
37375b98324eSDavid Ahern 		}
37385b98324eSDavid Ahern 		err = fib6_check_nexthop(nh, cfg, extack);
37395b98324eSDavid Ahern 		if (err)
37405b98324eSDavid Ahern 			goto out;
37415b98324eSDavid Ahern 	}
3742fc1e64e1SDavid Ahern 
3743c71099acSThomas Graf 	err = -ENOBUFS;
374438308473SDavid S. Miller 	if (cfg->fc_nlinfo.nlh &&
3745d71314b4SMatti Vaittinen 	    !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) {
3746d71314b4SMatti Vaittinen 		table = fib6_get_table(net, cfg->fc_table);
374738308473SDavid S. Miller 		if (!table) {
3748f3213831SJoe Perches 			pr_warn("NLM_F_CREATE should be specified when creating new route\n");
3749d71314b4SMatti Vaittinen 			table = fib6_new_table(net, cfg->fc_table);
3750d71314b4SMatti Vaittinen 		}
3751d71314b4SMatti Vaittinen 	} else {
3752d71314b4SMatti Vaittinen 		table = fib6_new_table(net, cfg->fc_table);
3753d71314b4SMatti Vaittinen 	}
375438308473SDavid S. Miller 
375538308473SDavid S. Miller 	if (!table)
3756c71099acSThomas Graf 		goto out;
3757c71099acSThomas Graf 
37581da177e4SLinus Torvalds 	err = -ENOMEM;
3759f88d8ea6SDavid Ahern 	rt = fib6_info_alloc(gfp_flags, !nh);
376093531c67SDavid Ahern 	if (!rt)
37611da177e4SLinus Torvalds 		goto out;
376293531c67SDavid Ahern 
3763d7e774f3SDavid Ahern 	rt->fib6_metrics = ip_fib_metrics_init(net, cfg->fc_mx, cfg->fc_mx_len,
3764d7e774f3SDavid Ahern 					       extack);
3765767a2217SDavid Ahern 	if (IS_ERR(rt->fib6_metrics)) {
3766767a2217SDavid Ahern 		err = PTR_ERR(rt->fib6_metrics);
3767fda21d46SEric Dumazet 		/* Do not leave garbage there. */
3768fda21d46SEric Dumazet 		rt->fib6_metrics = (struct dst_metrics *)&dst_default_metrics;
37698fb4792fSPaolo Abeni 		goto out_free;
3770767a2217SDavid Ahern 	}
3771767a2217SDavid Ahern 
377293531c67SDavid Ahern 	if (cfg->fc_flags & RTF_ADDRCONF)
377393531c67SDavid Ahern 		rt->dst_nocount = true;
37741da177e4SLinus Torvalds 
37751716a961SGao feng 	if (cfg->fc_flags & RTF_EXPIRES)
377614895687SDavid Ahern 		fib6_set_expires(rt, jiffies +
37771716a961SGao feng 				clock_t_to_jiffies(cfg->fc_expires));
37781716a961SGao feng 	else
377914895687SDavid Ahern 		fib6_clean_expires(rt);
37801da177e4SLinus Torvalds 
378186872cb5SThomas Graf 	if (cfg->fc_protocol == RTPROT_UNSPEC)
378286872cb5SThomas Graf 		cfg->fc_protocol = RTPROT_BOOT;
378393c2fb25SDavid Ahern 	rt->fib6_protocol = cfg->fc_protocol;
378486872cb5SThomas Graf 
378583c44251SDavid Ahern 	rt->fib6_table = table;
378683c44251SDavid Ahern 	rt->fib6_metric = cfg->fc_metric;
3787c7036d97SDavid Ahern 	rt->fib6_type = cfg->fc_type ? : RTN_UNICAST;
37882b2450caSDavid Ahern 	rt->fib6_flags = cfg->fc_flags & ~RTF_GATEWAY;
378919e42e45SRoopa Prabhu 
379093c2fb25SDavid Ahern 	ipv6_addr_prefix(&rt->fib6_dst.addr, &cfg->fc_dst, cfg->fc_dst_len);
379193c2fb25SDavid Ahern 	rt->fib6_dst.plen = cfg->fc_dst_len;
37921da177e4SLinus Torvalds 
37931da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES
379493c2fb25SDavid Ahern 	ipv6_addr_prefix(&rt->fib6_src.addr, &cfg->fc_src, cfg->fc_src_len);
379593c2fb25SDavid Ahern 	rt->fib6_src.plen = cfg->fc_src_len;
37961da177e4SLinus Torvalds #endif
3797f88d8ea6SDavid Ahern 	if (nh) {
3798f88d8ea6SDavid Ahern 		if (rt->fib6_src.plen) {
37994daa95afSColin Ian King 			NL_SET_ERR_MSG(extack, "Nexthops can not be used with source routing");
3800821bbf79SCoco Li 			goto out_free;
3801f88d8ea6SDavid Ahern 		}
3802706ec919SXiyu Yang 		if (!nexthop_get(nh)) {
3803706ec919SXiyu Yang 			NL_SET_ERR_MSG(extack, "Nexthop has been deleted");
3804821bbf79SCoco Li 			goto out_free;
3805706ec919SXiyu Yang 		}
3806f88d8ea6SDavid Ahern 		rt->nh = nh;
3807f88d8ea6SDavid Ahern 		fib6_nh = nexthop_fib6_nh(rt->nh);
3808f88d8ea6SDavid Ahern 	} else {
38091cf844c7SDavid Ahern 		err = fib6_nh_init(net, rt->fib6_nh, cfg, gfp_flags, extack);
38101da177e4SLinus Torvalds 		if (err)
38111da177e4SLinus Torvalds 			goto out;
38129fbb704cSDavid Ahern 
3813f88d8ea6SDavid Ahern 		fib6_nh = rt->fib6_nh;
3814f88d8ea6SDavid Ahern 
3815f88d8ea6SDavid Ahern 		/* We cannot add true routes via loopback here, they would
3816f88d8ea6SDavid Ahern 		 * result in kernel looping; promote them to reject routes
381783c44251SDavid Ahern 		 */
381883c44251SDavid Ahern 		addr_type = ipv6_addr_type(&cfg->fc_dst);
3819f88d8ea6SDavid Ahern 		if (fib6_is_reject(cfg->fc_flags, rt->fib6_nh->fib_nh_dev,
3820f88d8ea6SDavid Ahern 				   addr_type))
382183c44251SDavid Ahern 			rt->fib6_flags = RTF_REJECT | RTF_NONEXTHOP;
3822f88d8ea6SDavid Ahern 	}
3823955ec4cbSDavid Ahern 
3824c3968a85SDaniel Walter 	if (!ipv6_addr_any(&cfg->fc_prefsrc)) {
3825f88d8ea6SDavid Ahern 		struct net_device *dev = fib6_nh->fib_nh_dev;
382683c44251SDavid Ahern 
3827c3968a85SDaniel Walter 		if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) {
3828d5d531cbSDavid Ahern 			NL_SET_ERR_MSG(extack, "Invalid source address");
3829c3968a85SDaniel Walter 			err = -EINVAL;
3830c3968a85SDaniel Walter 			goto out;
3831c3968a85SDaniel Walter 		}
383293c2fb25SDavid Ahern 		rt->fib6_prefsrc.addr = cfg->fc_prefsrc;
383393c2fb25SDavid Ahern 		rt->fib6_prefsrc.plen = 128;
3834c3968a85SDaniel Walter 	} else
383593c2fb25SDavid Ahern 		rt->fib6_prefsrc.plen = 0;
3836c3968a85SDaniel Walter 
38378c5b83f0SRoopa Prabhu 	return rt;
38381da177e4SLinus Torvalds out:
383993531c67SDavid Ahern 	fib6_info_release(rt);
38408c5b83f0SRoopa Prabhu 	return ERR_PTR(err);
3841821bbf79SCoco Li out_free:
3842821bbf79SCoco Li 	ip_fib_metrics_put(rt->fib6_metrics);
3843821bbf79SCoco Li 	kfree(rt);
3844821bbf79SCoco Li 	return ERR_PTR(err);
38456b9ea5a6SRoopa Prabhu }
38466b9ea5a6SRoopa Prabhu 
3847acb54e3cSDavid Ahern int ip6_route_add(struct fib6_config *cfg, gfp_t gfp_flags,
3848333c4301SDavid Ahern 		  struct netlink_ext_ack *extack)
38496b9ea5a6SRoopa Prabhu {
38508d1c802bSDavid Ahern 	struct fib6_info *rt;
38516b9ea5a6SRoopa Prabhu 	int err;
38526b9ea5a6SRoopa Prabhu 
3853acb54e3cSDavid Ahern 	rt = ip6_route_info_create(cfg, gfp_flags, extack);
3854d4ead6b3SDavid Ahern 	if (IS_ERR(rt))
3855d4ead6b3SDavid Ahern 		return PTR_ERR(rt);
38566b9ea5a6SRoopa Prabhu 
3857d4ead6b3SDavid Ahern 	err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, extack);
385893531c67SDavid Ahern 	fib6_info_release(rt);
38596b9ea5a6SRoopa Prabhu 
38601da177e4SLinus Torvalds 	return err;
38611da177e4SLinus Torvalds }
38621da177e4SLinus Torvalds 
38638d1c802bSDavid Ahern static int __ip6_del_rt(struct fib6_info *rt, struct nl_info *info)
38641da177e4SLinus Torvalds {
3865afb1d4b5SDavid Ahern 	struct net *net = info->nl_net;
3866c71099acSThomas Graf 	struct fib6_table *table;
3867afb1d4b5SDavid Ahern 	int err;
38681da177e4SLinus Torvalds 
3869421842edSDavid Ahern 	if (rt == net->ipv6.fib6_null_entry) {
38706825a26cSGao feng 		err = -ENOENT;
38716825a26cSGao feng 		goto out;
38726825a26cSGao feng 	}
38736c813a72SPatrick McHardy 
387493c2fb25SDavid Ahern 	table = rt->fib6_table;
387566f5d6ceSWei Wang 	spin_lock_bh(&table->tb6_lock);
387686872cb5SThomas Graf 	err = fib6_del(rt, info);
387766f5d6ceSWei Wang 	spin_unlock_bh(&table->tb6_lock);
38781da177e4SLinus Torvalds 
38796825a26cSGao feng out:
388093531c67SDavid Ahern 	fib6_info_release(rt);
38811da177e4SLinus Torvalds 	return err;
38821da177e4SLinus Torvalds }
38831da177e4SLinus Torvalds 
388411dd74b3SRoopa Prabhu int ip6_del_rt(struct net *net, struct fib6_info *rt, bool skip_notify)
3885e0a1ad73SThomas Graf {
388611dd74b3SRoopa Prabhu 	struct nl_info info = {
388711dd74b3SRoopa Prabhu 		.nl_net = net,
388811dd74b3SRoopa Prabhu 		.skip_notify = skip_notify
388911dd74b3SRoopa Prabhu 	};
3890afb1d4b5SDavid Ahern 
3891528c4cebSDenis V. Lunev 	return __ip6_del_rt(rt, &info);
3892e0a1ad73SThomas Graf }
3893e0a1ad73SThomas Graf 
38948d1c802bSDavid Ahern static int __ip6_del_rt_siblings(struct fib6_info *rt, struct fib6_config *cfg)
38950ae81335SDavid Ahern {
38960ae81335SDavid Ahern 	struct nl_info *info = &cfg->fc_nlinfo;
3897e3330039SWANG Cong 	struct net *net = info->nl_net;
389816a16cd3SDavid Ahern 	struct sk_buff *skb = NULL;
38990ae81335SDavid Ahern 	struct fib6_table *table;
3900e3330039SWANG Cong 	int err = -ENOENT;
39010ae81335SDavid Ahern 
3902421842edSDavid Ahern 	if (rt == net->ipv6.fib6_null_entry)
3903e3330039SWANG Cong 		goto out_put;
390493c2fb25SDavid Ahern 	table = rt->fib6_table;
390566f5d6ceSWei Wang 	spin_lock_bh(&table->tb6_lock);
39060ae81335SDavid Ahern 
390793c2fb25SDavid Ahern 	if (rt->fib6_nsiblings && cfg->fc_delete_all_nh) {
39088d1c802bSDavid Ahern 		struct fib6_info *sibling, *next_sibling;
39090284696bSIdo Schimmel 		struct fib6_node *fn;
39100ae81335SDavid Ahern 
391116a16cd3SDavid Ahern 		/* prefer to send a single notification with all hops */
391216a16cd3SDavid Ahern 		skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
391316a16cd3SDavid Ahern 		if (skb) {
391416a16cd3SDavid Ahern 			u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
391516a16cd3SDavid Ahern 
3916d4ead6b3SDavid Ahern 			if (rt6_fill_node(net, skb, rt, NULL,
391716a16cd3SDavid Ahern 					  NULL, NULL, 0, RTM_DELROUTE,
391816a16cd3SDavid Ahern 					  info->portid, seq, 0) < 0) {
391916a16cd3SDavid Ahern 				kfree_skb(skb);
392016a16cd3SDavid Ahern 				skb = NULL;
392116a16cd3SDavid Ahern 			} else
392216a16cd3SDavid Ahern 				info->skip_notify = 1;
392316a16cd3SDavid Ahern 		}
392416a16cd3SDavid Ahern 
39250284696bSIdo Schimmel 		/* 'rt' points to the first sibling route. If it is not the
39260284696bSIdo Schimmel 		 * leaf, then we do not need to send a notification. Otherwise,
39270284696bSIdo Schimmel 		 * we need to check if the last sibling has a next route or not
39280284696bSIdo Schimmel 		 * and emit a replace or delete notification, respectively.
39290284696bSIdo Schimmel 		 */
39302881fd61SIdo Schimmel 		info->skip_notify_kernel = 1;
39310284696bSIdo Schimmel 		fn = rcu_dereference_protected(rt->fib6_node,
39320284696bSIdo Schimmel 					    lockdep_is_held(&table->tb6_lock));
39330284696bSIdo Schimmel 		if (rcu_access_pointer(fn->leaf) == rt) {
39340284696bSIdo Schimmel 			struct fib6_info *last_sibling, *replace_rt;
39350284696bSIdo Schimmel 
39360284696bSIdo Schimmel 			last_sibling = list_last_entry(&rt->fib6_siblings,
39370284696bSIdo Schimmel 						       struct fib6_info,
39380284696bSIdo Schimmel 						       fib6_siblings);
39390284696bSIdo Schimmel 			replace_rt = rcu_dereference_protected(
39400284696bSIdo Schimmel 					    last_sibling->fib6_next,
39410284696bSIdo Schimmel 					    lockdep_is_held(&table->tb6_lock));
39420284696bSIdo Schimmel 			if (replace_rt)
39430284696bSIdo Schimmel 				call_fib6_entry_notifiers_replace(net,
39440284696bSIdo Schimmel 								  replace_rt);
39450284696bSIdo Schimmel 			else
39460284696bSIdo Schimmel 				call_fib6_multipath_entry_notifiers(net,
3947caafb250SIdo Schimmel 						       FIB_EVENT_ENTRY_DEL,
39480284696bSIdo Schimmel 						       rt, rt->fib6_nsiblings,
39490284696bSIdo Schimmel 						       NULL);
39500284696bSIdo Schimmel 		}
39510ae81335SDavid Ahern 		list_for_each_entry_safe(sibling, next_sibling,
395293c2fb25SDavid Ahern 					 &rt->fib6_siblings,
395393c2fb25SDavid Ahern 					 fib6_siblings) {
39540ae81335SDavid Ahern 			err = fib6_del(sibling, info);
39550ae81335SDavid Ahern 			if (err)
3956e3330039SWANG Cong 				goto out_unlock;
39570ae81335SDavid Ahern 		}
39580ae81335SDavid Ahern 	}
39590ae81335SDavid Ahern 
39600ae81335SDavid Ahern 	err = fib6_del(rt, info);
3961e3330039SWANG Cong out_unlock:
396266f5d6ceSWei Wang 	spin_unlock_bh(&table->tb6_lock);
3963e3330039SWANG Cong out_put:
396493531c67SDavid Ahern 	fib6_info_release(rt);
396516a16cd3SDavid Ahern 
396616a16cd3SDavid Ahern 	if (skb) {
3967e3330039SWANG Cong 		rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
396816a16cd3SDavid Ahern 			    info->nlh, gfp_any());
396916a16cd3SDavid Ahern 	}
39700ae81335SDavid Ahern 	return err;
39710ae81335SDavid Ahern }
39720ae81335SDavid Ahern 
39730fa6efc5SDavid Ahern static int __ip6_del_cached_rt(struct rt6_info *rt, struct fib6_config *cfg)
397423fb93a4SDavid Ahern {
397523fb93a4SDavid Ahern 	int rc = -ESRCH;
397623fb93a4SDavid Ahern 
397723fb93a4SDavid Ahern 	if (cfg->fc_ifindex && rt->dst.dev->ifindex != cfg->fc_ifindex)
397823fb93a4SDavid Ahern 		goto out;
397923fb93a4SDavid Ahern 
398023fb93a4SDavid Ahern 	if (cfg->fc_flags & RTF_GATEWAY &&
398123fb93a4SDavid Ahern 	    !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway))
398223fb93a4SDavid Ahern 		goto out;
3983761f6026SXin Long 
398423fb93a4SDavid Ahern 	rc = rt6_remove_exception_rt(rt);
398523fb93a4SDavid Ahern out:
398623fb93a4SDavid Ahern 	return rc;
398723fb93a4SDavid Ahern }
398823fb93a4SDavid Ahern 
39890fa6efc5SDavid Ahern static int ip6_del_cached_rt(struct fib6_config *cfg, struct fib6_info *rt,
39900fa6efc5SDavid Ahern 			     struct fib6_nh *nh)
39910fa6efc5SDavid Ahern {
39920fa6efc5SDavid Ahern 	struct fib6_result res = {
39930fa6efc5SDavid Ahern 		.f6i = rt,
39940fa6efc5SDavid Ahern 		.nh = nh,
39950fa6efc5SDavid Ahern 	};
39960fa6efc5SDavid Ahern 	struct rt6_info *rt_cache;
39970fa6efc5SDavid Ahern 
39980fa6efc5SDavid Ahern 	rt_cache = rt6_find_cached_rt(&res, &cfg->fc_dst, &cfg->fc_src);
39990fa6efc5SDavid Ahern 	if (rt_cache)
40000fa6efc5SDavid Ahern 		return __ip6_del_cached_rt(rt_cache, cfg);
40010fa6efc5SDavid Ahern 
40020fa6efc5SDavid Ahern 	return 0;
40030fa6efc5SDavid Ahern }
40040fa6efc5SDavid Ahern 
40055b98324eSDavid Ahern struct fib6_nh_del_cached_rt_arg {
40065b98324eSDavid Ahern 	struct fib6_config *cfg;
40075b98324eSDavid Ahern 	struct fib6_info *f6i;
40085b98324eSDavid Ahern };
40095b98324eSDavid Ahern 
40105b98324eSDavid Ahern static int fib6_nh_del_cached_rt(struct fib6_nh *nh, void *_arg)
40115b98324eSDavid Ahern {
40125b98324eSDavid Ahern 	struct fib6_nh_del_cached_rt_arg *arg = _arg;
40135b98324eSDavid Ahern 	int rc;
40145b98324eSDavid Ahern 
40155b98324eSDavid Ahern 	rc = ip6_del_cached_rt(arg->cfg, arg->f6i, nh);
40165b98324eSDavid Ahern 	return rc != -ESRCH ? rc : 0;
40175b98324eSDavid Ahern }
40185b98324eSDavid Ahern 
40195b98324eSDavid Ahern static int ip6_del_cached_rt_nh(struct fib6_config *cfg, struct fib6_info *f6i)
40205b98324eSDavid Ahern {
40215b98324eSDavid Ahern 	struct fib6_nh_del_cached_rt_arg arg = {
40225b98324eSDavid Ahern 		.cfg = cfg,
40235b98324eSDavid Ahern 		.f6i = f6i
40245b98324eSDavid Ahern 	};
40255b98324eSDavid Ahern 
40265b98324eSDavid Ahern 	return nexthop_for_each_fib6_nh(f6i->nh, fib6_nh_del_cached_rt, &arg);
40275b98324eSDavid Ahern }
40285b98324eSDavid Ahern 
4029333c4301SDavid Ahern static int ip6_route_del(struct fib6_config *cfg,
4030333c4301SDavid Ahern 			 struct netlink_ext_ack *extack)
40311da177e4SLinus Torvalds {
4032c71099acSThomas Graf 	struct fib6_table *table;
40338d1c802bSDavid Ahern 	struct fib6_info *rt;
40341da177e4SLinus Torvalds 	struct fib6_node *fn;
40351da177e4SLinus Torvalds 	int err = -ESRCH;
40361da177e4SLinus Torvalds 
40375578689aSDaniel Lezcano 	table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table);
4038d5d531cbSDavid Ahern 	if (!table) {
4039d5d531cbSDavid Ahern 		NL_SET_ERR_MSG(extack, "FIB table does not exist");
4040c71099acSThomas Graf 		return err;
4041d5d531cbSDavid Ahern 	}
40421da177e4SLinus Torvalds 
404366f5d6ceSWei Wang 	rcu_read_lock();
4044c71099acSThomas Graf 
4045c71099acSThomas Graf 	fn = fib6_locate(&table->tb6_root,
404686872cb5SThomas Graf 			 &cfg->fc_dst, cfg->fc_dst_len,
404738fbeeeeSWei Wang 			 &cfg->fc_src, cfg->fc_src_len,
40482b760fcfSWei Wang 			 !(cfg->fc_flags & RTF_CACHE));
40491da177e4SLinus Torvalds 
40501da177e4SLinus Torvalds 	if (fn) {
405166f5d6ceSWei Wang 		for_each_fib6_node_rt_rcu(fn) {
4052ad1601aeSDavid Ahern 			struct fib6_nh *nh;
4053ad1601aeSDavid Ahern 
40543401bfb1SStefano Brivio 			if (rt->nh && cfg->fc_nh_id &&
40553401bfb1SStefano Brivio 			    rt->nh->id != cfg->fc_nh_id)
40565b98324eSDavid Ahern 				continue;
405723fb93a4SDavid Ahern 
40585b98324eSDavid Ahern 			if (cfg->fc_flags & RTF_CACHE) {
40595b98324eSDavid Ahern 				int rc = 0;
40605b98324eSDavid Ahern 
40615b98324eSDavid Ahern 				if (rt->nh) {
40625b98324eSDavid Ahern 					rc = ip6_del_cached_rt_nh(cfg, rt);
40635b98324eSDavid Ahern 				} else if (cfg->fc_nh_id) {
40645b98324eSDavid Ahern 					continue;
40655b98324eSDavid Ahern 				} else {
40665b98324eSDavid Ahern 					nh = rt->fib6_nh;
40670fa6efc5SDavid Ahern 					rc = ip6_del_cached_rt(cfg, rt, nh);
40685b98324eSDavid Ahern 				}
40699e575010SEric Dumazet 				if (rc != -ESRCH) {
40709e575010SEric Dumazet 					rcu_read_unlock();
407123fb93a4SDavid Ahern 					return rc;
407223fb93a4SDavid Ahern 				}
40731f56a01fSMartin KaFai Lau 				continue;
40742b760fcfSWei Wang 			}
4075ad1601aeSDavid Ahern 
40765b98324eSDavid Ahern 			if (cfg->fc_metric && cfg->fc_metric != rt->fib6_metric)
40775b98324eSDavid Ahern 				continue;
40785b98324eSDavid Ahern 			if (cfg->fc_protocol &&
40795b98324eSDavid Ahern 			    cfg->fc_protocol != rt->fib6_protocol)
40805b98324eSDavid Ahern 				continue;
40815b98324eSDavid Ahern 
40825b98324eSDavid Ahern 			if (rt->nh) {
40835b98324eSDavid Ahern 				if (!fib6_info_hold_safe(rt))
40845b98324eSDavid Ahern 					continue;
40855b98324eSDavid Ahern 				rcu_read_unlock();
40865b98324eSDavid Ahern 
40875b98324eSDavid Ahern 				return __ip6_del_rt(rt, &cfg->fc_nlinfo);
40885b98324eSDavid Ahern 			}
40895b98324eSDavid Ahern 			if (cfg->fc_nh_id)
40905b98324eSDavid Ahern 				continue;
40915b98324eSDavid Ahern 
40925b98324eSDavid Ahern 			nh = rt->fib6_nh;
409386872cb5SThomas Graf 			if (cfg->fc_ifindex &&
4094ad1601aeSDavid Ahern 			    (!nh->fib_nh_dev ||
4095ad1601aeSDavid Ahern 			     nh->fib_nh_dev->ifindex != cfg->fc_ifindex))
40961da177e4SLinus Torvalds 				continue;
409786872cb5SThomas Graf 			if (cfg->fc_flags & RTF_GATEWAY &&
4098ad1601aeSDavid Ahern 			    !ipv6_addr_equal(&cfg->fc_gateway, &nh->fib_nh_gw6))
40991da177e4SLinus Torvalds 				continue;
4100e873e4b9SWei Wang 			if (!fib6_info_hold_safe(rt))
4101e873e4b9SWei Wang 				continue;
410266f5d6ceSWei Wang 			rcu_read_unlock();
41031da177e4SLinus Torvalds 
41040ae81335SDavid Ahern 			/* if gateway was specified only delete the one hop */
41050ae81335SDavid Ahern 			if (cfg->fc_flags & RTF_GATEWAY)
410686872cb5SThomas Graf 				return __ip6_del_rt(rt, &cfg->fc_nlinfo);
41070ae81335SDavid Ahern 
41080ae81335SDavid Ahern 			return __ip6_del_rt_siblings(rt, cfg);
41091da177e4SLinus Torvalds 		}
41101da177e4SLinus Torvalds 	}
411166f5d6ceSWei Wang 	rcu_read_unlock();
41121da177e4SLinus Torvalds 
41131da177e4SLinus Torvalds 	return err;
41141da177e4SLinus Torvalds }
41151da177e4SLinus Torvalds 
41166700c270SDavid S. Miller static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb)
4117a6279458SYOSHIFUJI Hideaki {
4118a6279458SYOSHIFUJI Hideaki 	struct netevent_redirect netevent;
4119e8599ff4SDavid S. Miller 	struct rt6_info *rt, *nrt = NULL;
412085bd05deSDavid Ahern 	struct fib6_result res = {};
4121e8599ff4SDavid S. Miller 	struct ndisc_options ndopts;
4122e8599ff4SDavid S. Miller 	struct inet6_dev *in6_dev;
4123e8599ff4SDavid S. Miller 	struct neighbour *neigh;
412471bcdba0SYOSHIFUJI Hideaki / 吉藤英明 	struct rd_msg *msg;
41256e157b6aSDavid S. Miller 	int optlen, on_link;
41266e157b6aSDavid S. Miller 	u8 *lladdr;
4127e8599ff4SDavid S. Miller 
412829a3cad5SSimon Horman 	optlen = skb_tail_pointer(skb) - skb_transport_header(skb);
412971bcdba0SYOSHIFUJI Hideaki / 吉藤英明 	optlen -= sizeof(*msg);
4130e8599ff4SDavid S. Miller 
4131e8599ff4SDavid S. Miller 	if (optlen < 0) {
41326e157b6aSDavid S. Miller 		net_dbg_ratelimited("rt6_do_redirect: packet too short\n");
4133e8599ff4SDavid S. Miller 		return;
4134e8599ff4SDavid S. Miller 	}
4135e8599ff4SDavid S. Miller 
413671bcdba0SYOSHIFUJI Hideaki / 吉藤英明 	msg = (struct rd_msg *)icmp6_hdr(skb);
4137e8599ff4SDavid S. Miller 
413871bcdba0SYOSHIFUJI Hideaki / 吉藤英明 	if (ipv6_addr_is_multicast(&msg->dest)) {
41396e157b6aSDavid S. Miller 		net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n");
4140e8599ff4SDavid S. Miller 		return;
4141e8599ff4SDavid S. Miller 	}
4142e8599ff4SDavid S. Miller 
41436e157b6aSDavid S. Miller 	on_link = 0;
414471bcdba0SYOSHIFUJI Hideaki / 吉藤英明 	if (ipv6_addr_equal(&msg->dest, &msg->target)) {
4145e8599ff4SDavid S. Miller 		on_link = 1;
414671bcdba0SYOSHIFUJI Hideaki / 吉藤英明 	} else if (ipv6_addr_type(&msg->target) !=
4147e8599ff4SDavid S. Miller 		   (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) {
41486e157b6aSDavid S. Miller 		net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n");
4149e8599ff4SDavid S. Miller 		return;
4150e8599ff4SDavid S. Miller 	}
4151e8599ff4SDavid S. Miller 
4152e8599ff4SDavid S. Miller 	in6_dev = __in6_dev_get(skb->dev);
4153e8599ff4SDavid S. Miller 	if (!in6_dev)
4154e8599ff4SDavid S. Miller 		return;
4155e8599ff4SDavid S. Miller 	if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects)
4156e8599ff4SDavid S. Miller 		return;
4157e8599ff4SDavid S. Miller 
4158e8599ff4SDavid S. Miller 	/* RFC2461 8.1:
4159e8599ff4SDavid S. Miller 	 *	The IP source address of the Redirect MUST be the same as the current
4160e8599ff4SDavid S. Miller 	 *	first-hop router for the specified ICMP Destination Address.
4161e8599ff4SDavid S. Miller 	 */
4162e8599ff4SDavid S. Miller 
4163f997c55cSAlexander Aring 	if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) {
4164e8599ff4SDavid S. Miller 		net_dbg_ratelimited("rt6_redirect: invalid ND options\n");
4165e8599ff4SDavid S. Miller 		return;
4166e8599ff4SDavid S. Miller 	}
41676e157b6aSDavid S. Miller 
41686e157b6aSDavid S. Miller 	lladdr = NULL;
4169e8599ff4SDavid S. Miller 	if (ndopts.nd_opts_tgt_lladdr) {
4170e8599ff4SDavid S. Miller 		lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr,
4171e8599ff4SDavid S. Miller 					     skb->dev);
4172e8599ff4SDavid S. Miller 		if (!lladdr) {
4173e8599ff4SDavid S. Miller 			net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n");
4174e8599ff4SDavid S. Miller 			return;
4175e8599ff4SDavid S. Miller 		}
4176e8599ff4SDavid S. Miller 	}
4177e8599ff4SDavid S. Miller 
41786e157b6aSDavid S. Miller 	rt = (struct rt6_info *) dst;
4179ec13ad1dSMatthias Schiffer 	if (rt->rt6i_flags & RTF_REJECT) {
41806e157b6aSDavid S. Miller 		net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n");
41816e157b6aSDavid S. Miller 		return;
41826e157b6aSDavid S. Miller 	}
41836e157b6aSDavid S. Miller 
41846e157b6aSDavid S. Miller 	/* Redirect received -> path was valid.
41856e157b6aSDavid S. Miller 	 * Look, redirects are sent only in response to data packets,
41866e157b6aSDavid S. Miller 	 * so that this nexthop apparently is reachable. --ANK
41876e157b6aSDavid S. Miller 	 */
41880dec879fSJulian Anastasov 	dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr);
41896e157b6aSDavid S. Miller 
419071bcdba0SYOSHIFUJI Hideaki / 吉藤英明 	neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1);
4191e8599ff4SDavid S. Miller 	if (!neigh)
4192e8599ff4SDavid S. Miller 		return;
4193e8599ff4SDavid S. Miller 
41941da177e4SLinus Torvalds 	/*
41951da177e4SLinus Torvalds 	 *	We have finally decided to accept it.
41961da177e4SLinus Torvalds 	 */
41971da177e4SLinus Torvalds 
4198f997c55cSAlexander Aring 	ndisc_update(skb->dev, neigh, lladdr, NUD_STALE,
41991da177e4SLinus Torvalds 		     NEIGH_UPDATE_F_WEAK_OVERRIDE|
42001da177e4SLinus Torvalds 		     NEIGH_UPDATE_F_OVERRIDE|
42011da177e4SLinus Torvalds 		     (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER|
4202f997c55cSAlexander Aring 				     NEIGH_UPDATE_F_ISROUTER)),
4203f997c55cSAlexander Aring 		     NDISC_REDIRECT, &ndopts);
42041da177e4SLinus Torvalds 
42054d85cd0cSDavid Ahern 	rcu_read_lock();
420685bd05deSDavid Ahern 	res.f6i = rcu_dereference(rt->from);
4207ff24e498SDavid S. Miller 	if (!res.f6i)
4208886b7a50SMartin KaFai Lau 		goto out;
42098a14e46fSDavid Ahern 
421049d5b8efSDavid Ahern 	if (res.f6i->nh) {
421149d5b8efSDavid Ahern 		struct fib6_nh_match_arg arg = {
421249d5b8efSDavid Ahern 			.dev = dst->dev,
421349d5b8efSDavid Ahern 			.gw = &rt->rt6i_gateway,
421449d5b8efSDavid Ahern 		};
421549d5b8efSDavid Ahern 
421649d5b8efSDavid Ahern 		nexthop_for_each_fib6_nh(res.f6i->nh,
421749d5b8efSDavid Ahern 					 fib6_nh_find_match, &arg);
421849d5b8efSDavid Ahern 
421949d5b8efSDavid Ahern 		/* fib6_info uses a nexthop that does not have fib6_nh
422049d5b8efSDavid Ahern 		 * using the dst->dev. Should be impossible
422149d5b8efSDavid Ahern 		 */
422249d5b8efSDavid Ahern 		if (!arg.match)
422349d5b8efSDavid Ahern 			goto out;
422449d5b8efSDavid Ahern 		res.nh = arg.match;
422549d5b8efSDavid Ahern 	} else {
42261cf844c7SDavid Ahern 		res.nh = res.f6i->fib6_nh;
422749d5b8efSDavid Ahern 	}
422849d5b8efSDavid Ahern 
42297d21fec9SDavid Ahern 	res.fib6_flags = res.f6i->fib6_flags;
42307d21fec9SDavid Ahern 	res.fib6_type = res.f6i->fib6_type;
423185bd05deSDavid Ahern 	nrt = ip6_rt_cache_alloc(&res, &msg->dest, NULL);
423238308473SDavid S. Miller 	if (!nrt)
42331da177e4SLinus Torvalds 		goto out;
42341da177e4SLinus Torvalds 
42351da177e4SLinus Torvalds 	nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE;
42361da177e4SLinus Torvalds 	if (on_link)
42371da177e4SLinus Torvalds 		nrt->rt6i_flags &= ~RTF_GATEWAY;
42381da177e4SLinus Torvalds 
42394e3fd7a0SAlexey Dobriyan 	nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key;
42401da177e4SLinus Torvalds 
4241886b7a50SMartin KaFai Lau 	/* rt6_insert_exception() will take care of duplicated exceptions */
42425012f0a5SDavid Ahern 	if (rt6_insert_exception(nrt, &res)) {
42432b760fcfSWei Wang 		dst_release_immediate(&nrt->dst);
42442b760fcfSWei Wang 		goto out;
42452b760fcfSWei Wang 	}
42461da177e4SLinus Torvalds 
4247d8d1f30bSChangli Gao 	netevent.old = &rt->dst;
4248d8d1f30bSChangli Gao 	netevent.new = &nrt->dst;
424971bcdba0SYOSHIFUJI Hideaki / 吉藤英明 	netevent.daddr = &msg->dest;
425060592833SYOSHIFUJI Hideaki / 吉藤英明 	netevent.neigh = neigh;
42518d71740cSTom Tucker 	call_netevent_notifiers(NETEVENT_REDIRECT, &netevent);
42528d71740cSTom Tucker 
42531da177e4SLinus Torvalds out:
4254886b7a50SMartin KaFai Lau 	rcu_read_unlock();
4255e8599ff4SDavid S. Miller 	neigh_release(neigh);
42566e157b6aSDavid S. Miller }
42576e157b6aSDavid S. Miller 
425870ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO
42598d1c802bSDavid Ahern static struct fib6_info *rt6_get_route_info(struct net *net,
4260b71d1d42SEric Dumazet 					   const struct in6_addr *prefix, int prefixlen,
4261830218c1SDavid Ahern 					   const struct in6_addr *gwaddr,
4262830218c1SDavid Ahern 					   struct net_device *dev)
426370ceb4f5SYOSHIFUJI Hideaki {
4264830218c1SDavid Ahern 	u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
4265830218c1SDavid Ahern 	int ifindex = dev->ifindex;
426670ceb4f5SYOSHIFUJI Hideaki 	struct fib6_node *fn;
42678d1c802bSDavid Ahern 	struct fib6_info *rt = NULL;
4268c71099acSThomas Graf 	struct fib6_table *table;
426970ceb4f5SYOSHIFUJI Hideaki 
4270830218c1SDavid Ahern 	table = fib6_get_table(net, tb_id);
427138308473SDavid S. Miller 	if (!table)
4272c71099acSThomas Graf 		return NULL;
4273c71099acSThomas Graf 
427466f5d6ceSWei Wang 	rcu_read_lock();
427538fbeeeeSWei Wang 	fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0, true);
427670ceb4f5SYOSHIFUJI Hideaki 	if (!fn)
427770ceb4f5SYOSHIFUJI Hideaki 		goto out;
427870ceb4f5SYOSHIFUJI Hideaki 
427966f5d6ceSWei Wang 	for_each_fib6_node_rt_rcu(fn) {
4280f88d8ea6SDavid Ahern 		/* these routes do not use nexthops */
4281f88d8ea6SDavid Ahern 		if (rt->nh)
4282f88d8ea6SDavid Ahern 			continue;
42831cf844c7SDavid Ahern 		if (rt->fib6_nh->fib_nh_dev->ifindex != ifindex)
428470ceb4f5SYOSHIFUJI Hideaki 			continue;
42852b2450caSDavid Ahern 		if (!(rt->fib6_flags & RTF_ROUTEINFO) ||
42861cf844c7SDavid Ahern 		    !rt->fib6_nh->fib_nh_gw_family)
428770ceb4f5SYOSHIFUJI Hideaki 			continue;
42881cf844c7SDavid Ahern 		if (!ipv6_addr_equal(&rt->fib6_nh->fib_nh_gw6, gwaddr))
428970ceb4f5SYOSHIFUJI Hideaki 			continue;
4290e873e4b9SWei Wang 		if (!fib6_info_hold_safe(rt))
4291e873e4b9SWei Wang 			continue;
429270ceb4f5SYOSHIFUJI Hideaki 		break;
429370ceb4f5SYOSHIFUJI Hideaki 	}
429470ceb4f5SYOSHIFUJI Hideaki out:
429566f5d6ceSWei Wang 	rcu_read_unlock();
429670ceb4f5SYOSHIFUJI Hideaki 	return rt;
429770ceb4f5SYOSHIFUJI Hideaki }
429870ceb4f5SYOSHIFUJI Hideaki 
42998d1c802bSDavid Ahern static struct fib6_info *rt6_add_route_info(struct net *net,
4300b71d1d42SEric Dumazet 					   const struct in6_addr *prefix, int prefixlen,
4301830218c1SDavid Ahern 					   const struct in6_addr *gwaddr,
4302830218c1SDavid Ahern 					   struct net_device *dev,
430395c96174SEric Dumazet 					   unsigned int pref)
430470ceb4f5SYOSHIFUJI Hideaki {
430586872cb5SThomas Graf 	struct fib6_config cfg = {
4306238fc7eaSRami Rosen 		.fc_metric	= IP6_RT_PRIO_USER,
4307830218c1SDavid Ahern 		.fc_ifindex	= dev->ifindex,
430886872cb5SThomas Graf 		.fc_dst_len	= prefixlen,
430986872cb5SThomas Graf 		.fc_flags	= RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO |
431086872cb5SThomas Graf 				  RTF_UP | RTF_PREF(pref),
4311b91d5329SXin Long 		.fc_protocol = RTPROT_RA,
4312e8478e80SDavid Ahern 		.fc_type = RTN_UNICAST,
431315e47304SEric W. Biederman 		.fc_nlinfo.portid = 0,
4314efa2cea0SDaniel Lezcano 		.fc_nlinfo.nlh = NULL,
4315efa2cea0SDaniel Lezcano 		.fc_nlinfo.nl_net = net,
431686872cb5SThomas Graf 	};
431770ceb4f5SYOSHIFUJI Hideaki 
431891b2c9a0SXu Wang 	cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO;
43194e3fd7a0SAlexey Dobriyan 	cfg.fc_dst = *prefix;
43204e3fd7a0SAlexey Dobriyan 	cfg.fc_gateway = *gwaddr;
432186872cb5SThomas Graf 
4322e317da96SYOSHIFUJI Hideaki 	/* We should treat it as a default route if prefix length is 0. */
4323e317da96SYOSHIFUJI Hideaki 	if (!prefixlen)
432486872cb5SThomas Graf 		cfg.fc_flags |= RTF_DEFAULT;
432570ceb4f5SYOSHIFUJI Hideaki 
4326acb54e3cSDavid Ahern 	ip6_route_add(&cfg, GFP_ATOMIC, NULL);
432770ceb4f5SYOSHIFUJI Hideaki 
4328830218c1SDavid Ahern 	return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev);
432970ceb4f5SYOSHIFUJI Hideaki }
433070ceb4f5SYOSHIFUJI Hideaki #endif
433170ceb4f5SYOSHIFUJI Hideaki 
43328d1c802bSDavid Ahern struct fib6_info *rt6_get_dflt_router(struct net *net,
4333afb1d4b5SDavid Ahern 				     const struct in6_addr *addr,
4334afb1d4b5SDavid Ahern 				     struct net_device *dev)
43351da177e4SLinus Torvalds {
4336830218c1SDavid Ahern 	u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT;
43378d1c802bSDavid Ahern 	struct fib6_info *rt;
4338c71099acSThomas Graf 	struct fib6_table *table;
43391da177e4SLinus Torvalds 
4340afb1d4b5SDavid Ahern 	table = fib6_get_table(net, tb_id);
434138308473SDavid S. Miller 	if (!table)
4342c71099acSThomas Graf 		return NULL;
43431da177e4SLinus Torvalds 
434466f5d6ceSWei Wang 	rcu_read_lock();
434566f5d6ceSWei Wang 	for_each_fib6_node_rt_rcu(&table->tb6_root) {
4346f88d8ea6SDavid Ahern 		struct fib6_nh *nh;
4347ad1601aeSDavid Ahern 
4348f88d8ea6SDavid Ahern 		/* RA routes do not use nexthops */
4349f88d8ea6SDavid Ahern 		if (rt->nh)
4350f88d8ea6SDavid Ahern 			continue;
4351f88d8ea6SDavid Ahern 
4352f88d8ea6SDavid Ahern 		nh = rt->fib6_nh;
4353ad1601aeSDavid Ahern 		if (dev == nh->fib_nh_dev &&
435493c2fb25SDavid Ahern 		    ((rt->fib6_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) &&
4355ad1601aeSDavid Ahern 		    ipv6_addr_equal(&nh->fib_nh_gw6, addr))
43561da177e4SLinus Torvalds 			break;
43571da177e4SLinus Torvalds 	}
4358e873e4b9SWei Wang 	if (rt && !fib6_info_hold_safe(rt))
4359e873e4b9SWei Wang 		rt = NULL;
436066f5d6ceSWei Wang 	rcu_read_unlock();
43611da177e4SLinus Torvalds 	return rt;
43621da177e4SLinus Torvalds }
43631da177e4SLinus Torvalds 
43648d1c802bSDavid Ahern struct fib6_info *rt6_add_dflt_router(struct net *net,
4365afb1d4b5SDavid Ahern 				     const struct in6_addr *gwaddr,
4366ebacaaa0SYOSHIFUJI Hideaki 				     struct net_device *dev,
43676b2e04bcSPraveen Chaudhary 				     unsigned int pref,
43686b2e04bcSPraveen Chaudhary 				     u32 defrtr_usr_metric)
43691da177e4SLinus Torvalds {
437086872cb5SThomas Graf 	struct fib6_config cfg = {
4371ca254490SDavid Ahern 		.fc_table	= l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT,
43726b2e04bcSPraveen Chaudhary 		.fc_metric	= defrtr_usr_metric,
437386872cb5SThomas Graf 		.fc_ifindex	= dev->ifindex,
437486872cb5SThomas Graf 		.fc_flags	= RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT |
437586872cb5SThomas Graf 				  RTF_UP | RTF_EXPIRES | RTF_PREF(pref),
4376b91d5329SXin Long 		.fc_protocol = RTPROT_RA,
4377e8478e80SDavid Ahern 		.fc_type = RTN_UNICAST,
437815e47304SEric W. Biederman 		.fc_nlinfo.portid = 0,
43795578689aSDaniel Lezcano 		.fc_nlinfo.nlh = NULL,
4380afb1d4b5SDavid Ahern 		.fc_nlinfo.nl_net = net,
438186872cb5SThomas Graf 	};
43821da177e4SLinus Torvalds 
43834e3fd7a0SAlexey Dobriyan 	cfg.fc_gateway = *gwaddr;
43841da177e4SLinus Torvalds 
4385acb54e3cSDavid Ahern 	if (!ip6_route_add(&cfg, GFP_ATOMIC, NULL)) {
4386830218c1SDavid Ahern 		struct fib6_table *table;
4387830218c1SDavid Ahern 
4388830218c1SDavid Ahern 		table = fib6_get_table(dev_net(dev), cfg.fc_table);
4389830218c1SDavid Ahern 		if (table)
4390830218c1SDavid Ahern 			table->flags |= RT6_TABLE_HAS_DFLT_ROUTER;
4391830218c1SDavid Ahern 	}
43921da177e4SLinus Torvalds 
4393afb1d4b5SDavid Ahern 	return rt6_get_dflt_router(net, gwaddr, dev);
43941da177e4SLinus Torvalds }
43951da177e4SLinus Torvalds 
4396afb1d4b5SDavid Ahern static void __rt6_purge_dflt_routers(struct net *net,
4397afb1d4b5SDavid Ahern 				     struct fib6_table *table)
43981da177e4SLinus Torvalds {
43998d1c802bSDavid Ahern 	struct fib6_info *rt;
44001da177e4SLinus Torvalds 
44011da177e4SLinus Torvalds restart:
440266f5d6ceSWei Wang 	rcu_read_lock();
440366f5d6ceSWei Wang 	for_each_fib6_node_rt_rcu(&table->tb6_root) {
4404dcd1f572SDavid Ahern 		struct net_device *dev = fib6_info_nh_dev(rt);
4405dcd1f572SDavid Ahern 		struct inet6_dev *idev = dev ? __in6_dev_get(dev) : NULL;
4406dcd1f572SDavid Ahern 
440793c2fb25SDavid Ahern 		if (rt->fib6_flags & (RTF_DEFAULT | RTF_ADDRCONF) &&
4408e873e4b9SWei Wang 		    (!idev || idev->cnf.accept_ra != 2) &&
4409e873e4b9SWei Wang 		    fib6_info_hold_safe(rt)) {
441066f5d6ceSWei Wang 			rcu_read_unlock();
441111dd74b3SRoopa Prabhu 			ip6_del_rt(net, rt, false);
44121da177e4SLinus Torvalds 			goto restart;
44131da177e4SLinus Torvalds 		}
44141da177e4SLinus Torvalds 	}
441566f5d6ceSWei Wang 	rcu_read_unlock();
4416830218c1SDavid Ahern 
4417830218c1SDavid Ahern 	table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER;
4418830218c1SDavid Ahern }
4419830218c1SDavid Ahern 
4420830218c1SDavid Ahern void rt6_purge_dflt_routers(struct net *net)
4421830218c1SDavid Ahern {
4422830218c1SDavid Ahern 	struct fib6_table *table;
4423830218c1SDavid Ahern 	struct hlist_head *head;
4424830218c1SDavid Ahern 	unsigned int h;
4425830218c1SDavid Ahern 
4426830218c1SDavid Ahern 	rcu_read_lock();
4427830218c1SDavid Ahern 
4428830218c1SDavid Ahern 	for (h = 0; h < FIB6_TABLE_HASHSZ; h++) {
4429830218c1SDavid Ahern 		head = &net->ipv6.fib_table_hash[h];
4430830218c1SDavid Ahern 		hlist_for_each_entry_rcu(table, head, tb6_hlist) {
4431830218c1SDavid Ahern 			if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER)
4432afb1d4b5SDavid Ahern 				__rt6_purge_dflt_routers(net, table);
4433830218c1SDavid Ahern 		}
4434830218c1SDavid Ahern 	}
4435830218c1SDavid Ahern 
4436830218c1SDavid Ahern 	rcu_read_unlock();
44371da177e4SLinus Torvalds }
44381da177e4SLinus Torvalds 
44395578689aSDaniel Lezcano static void rtmsg_to_fib6_config(struct net *net,
44405578689aSDaniel Lezcano 				 struct in6_rtmsg *rtmsg,
444186872cb5SThomas Graf 				 struct fib6_config *cfg)
444286872cb5SThomas Graf {
44438823a3acSMaciej Żenczykowski 	*cfg = (struct fib6_config){
44448823a3acSMaciej Żenczykowski 		.fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ?
44458823a3acSMaciej Żenczykowski 			 : RT6_TABLE_MAIN,
44468823a3acSMaciej Żenczykowski 		.fc_ifindex = rtmsg->rtmsg_ifindex,
444767f69513SDavid Ahern 		.fc_metric = rtmsg->rtmsg_metric ? : IP6_RT_PRIO_USER,
44488823a3acSMaciej Żenczykowski 		.fc_expires = rtmsg->rtmsg_info,
44498823a3acSMaciej Żenczykowski 		.fc_dst_len = rtmsg->rtmsg_dst_len,
44508823a3acSMaciej Żenczykowski 		.fc_src_len = rtmsg->rtmsg_src_len,
44518823a3acSMaciej Żenczykowski 		.fc_flags = rtmsg->rtmsg_flags,
44528823a3acSMaciej Żenczykowski 		.fc_type = rtmsg->rtmsg_type,
445386872cb5SThomas Graf 
44548823a3acSMaciej Żenczykowski 		.fc_nlinfo.nl_net = net,
445586872cb5SThomas Graf 
44568823a3acSMaciej Żenczykowski 		.fc_dst = rtmsg->rtmsg_dst,
44578823a3acSMaciej Żenczykowski 		.fc_src = rtmsg->rtmsg_src,
44588823a3acSMaciej Żenczykowski 		.fc_gateway = rtmsg->rtmsg_gateway,
44598823a3acSMaciej Żenczykowski 	};
446086872cb5SThomas Graf }
446186872cb5SThomas Graf 
44627c1552daSChristoph Hellwig int ipv6_route_ioctl(struct net *net, unsigned int cmd, struct in6_rtmsg *rtmsg)
44631da177e4SLinus Torvalds {
446486872cb5SThomas Graf 	struct fib6_config cfg;
44651da177e4SLinus Torvalds 	int err;
44661da177e4SLinus Torvalds 
44677c1552daSChristoph Hellwig 	if (cmd != SIOCADDRT && cmd != SIOCDELRT)
44687c1552daSChristoph Hellwig 		return -EINVAL;
4469af31f412SEric W. Biederman 	if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
44701da177e4SLinus Torvalds 		return -EPERM;
44711da177e4SLinus Torvalds 
44727c1552daSChristoph Hellwig 	rtmsg_to_fib6_config(net, rtmsg, &cfg);
447386872cb5SThomas Graf 
44741da177e4SLinus Torvalds 	rtnl_lock();
44751da177e4SLinus Torvalds 	switch (cmd) {
44761da177e4SLinus Torvalds 	case SIOCADDRT:
4477acb54e3cSDavid Ahern 		err = ip6_route_add(&cfg, GFP_KERNEL, NULL);
44781da177e4SLinus Torvalds 		break;
44791da177e4SLinus Torvalds 	case SIOCDELRT:
4480333c4301SDavid Ahern 		err = ip6_route_del(&cfg, NULL);
44811da177e4SLinus Torvalds 		break;
44821da177e4SLinus Torvalds 	}
44831da177e4SLinus Torvalds 	rtnl_unlock();
44841da177e4SLinus Torvalds 	return err;
44853ff50b79SStephen Hemminger }
44861da177e4SLinus Torvalds 
44871da177e4SLinus Torvalds /*
44881da177e4SLinus Torvalds  *	Drop the packet on the floor
44891da177e4SLinus Torvalds  */
44901da177e4SLinus Torvalds 
4491d5fdd6baSBrian Haley static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
44921da177e4SLinus Torvalds {
4493adf30907SEric Dumazet 	struct dst_entry *dst = skb_dst(skb);
44941d3fd8a1SStephen Suryaputra 	struct net *net = dev_net(dst->dev);
44951d3fd8a1SStephen Suryaputra 	struct inet6_dev *idev;
44961d3fd8a1SStephen Suryaputra 	int type;
44971d3fd8a1SStephen Suryaputra 
44981d3fd8a1SStephen Suryaputra 	if (netif_is_l3_master(skb->dev) &&
44991d3fd8a1SStephen Suryaputra 	    dst->dev == net->loopback_dev)
45001d3fd8a1SStephen Suryaputra 		idev = __in6_dev_get_safely(dev_get_by_index_rcu(net, IP6CB(skb)->iif));
45011d3fd8a1SStephen Suryaputra 	else
45021d3fd8a1SStephen Suryaputra 		idev = ip6_dst_idev(dst);
45031d3fd8a1SStephen Suryaputra 
4504612f09e8SYOSHIFUJI Hideaki 	switch (ipstats_mib_noroutes) {
4505612f09e8SYOSHIFUJI Hideaki 	case IPSTATS_MIB_INNOROUTES:
45060660e03fSArnaldo Carvalho de Melo 		type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
450745bb0060SUlrich Weber 		if (type == IPV6_ADDR_ANY) {
45081d3fd8a1SStephen Suryaputra 			IP6_INC_STATS(net, idev, IPSTATS_MIB_INADDRERRORS);
4509612f09e8SYOSHIFUJI Hideaki 			break;
4510612f09e8SYOSHIFUJI Hideaki 		}
4511a8eceea8SJoe Perches 		fallthrough;
4512612f09e8SYOSHIFUJI Hideaki 	case IPSTATS_MIB_OUTNOROUTES:
45131d3fd8a1SStephen Suryaputra 		IP6_INC_STATS(net, idev, ipstats_mib_noroutes);
4514612f09e8SYOSHIFUJI Hideaki 		break;
4515612f09e8SYOSHIFUJI Hideaki 	}
45161d3fd8a1SStephen Suryaputra 
45171d3fd8a1SStephen Suryaputra 	/* Start over by dropping the dst for l3mdev case */
45181d3fd8a1SStephen Suryaputra 	if (netif_is_l3_master(skb->dev))
45191d3fd8a1SStephen Suryaputra 		skb_dst_drop(skb);
45201d3fd8a1SStephen Suryaputra 
45213ffe533cSAlexey Dobriyan 	icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0);
45221da177e4SLinus Torvalds 	kfree_skb(skb);
45231da177e4SLinus Torvalds 	return 0;
45241da177e4SLinus Torvalds }
45251da177e4SLinus Torvalds 
45269ce8ade0SThomas Graf static int ip6_pkt_discard(struct sk_buff *skb)
45279ce8ade0SThomas Graf {
4528612f09e8SYOSHIFUJI Hideaki 	return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES);
45299ce8ade0SThomas Graf }
45309ce8ade0SThomas Graf 
4531ede2059dSEric W. Biederman static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb)
45321da177e4SLinus Torvalds {
4533adf30907SEric Dumazet 	skb->dev = skb_dst(skb)->dev;
4534612f09e8SYOSHIFUJI Hideaki 	return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES);
45351da177e4SLinus Torvalds }
45361da177e4SLinus Torvalds 
45379ce8ade0SThomas Graf static int ip6_pkt_prohibit(struct sk_buff *skb)
45389ce8ade0SThomas Graf {
4539612f09e8SYOSHIFUJI Hideaki 	return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES);
45409ce8ade0SThomas Graf }
45419ce8ade0SThomas Graf 
4542ede2059dSEric W. Biederman static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb)
45439ce8ade0SThomas Graf {
4544adf30907SEric Dumazet 	skb->dev = skb_dst(skb)->dev;
4545612f09e8SYOSHIFUJI Hideaki 	return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES);
45469ce8ade0SThomas Graf }
45479ce8ade0SThomas Graf 
45481da177e4SLinus Torvalds /*
45491da177e4SLinus Torvalds  *	Allocate a dst for local (unicast / anycast) address.
45501da177e4SLinus Torvalds  */
45511da177e4SLinus Torvalds 
4552360a9887SDavid Ahern struct fib6_info *addrconf_f6i_alloc(struct net *net,
4553afb1d4b5SDavid Ahern 				     struct inet6_dev *idev,
45541da177e4SLinus Torvalds 				     const struct in6_addr *addr,
4555acb54e3cSDavid Ahern 				     bool anycast, gfp_t gfp_flags)
45561da177e4SLinus Torvalds {
4557c7a1ce39SDavid Ahern 	struct fib6_config cfg = {
4558c7a1ce39SDavid Ahern 		.fc_table = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL,
4559c7a1ce39SDavid Ahern 		.fc_ifindex = idev->dev->ifindex,
4560d55a2e37SMaciej Żenczykowski 		.fc_flags = RTF_UP | RTF_NONEXTHOP,
4561c7a1ce39SDavid Ahern 		.fc_dst = *addr,
4562c7a1ce39SDavid Ahern 		.fc_dst_len = 128,
4563c7a1ce39SDavid Ahern 		.fc_protocol = RTPROT_KERNEL,
4564c7a1ce39SDavid Ahern 		.fc_nlinfo.nl_net = net,
4565c7a1ce39SDavid Ahern 		.fc_ignore_dev_down = true,
4566c7a1ce39SDavid Ahern 	};
4567d55a2e37SMaciej Żenczykowski 	struct fib6_info *f6i;
45685f02ce24SDavid Ahern 
4569e8478e80SDavid Ahern 	if (anycast) {
4570c7a1ce39SDavid Ahern 		cfg.fc_type = RTN_ANYCAST;
4571c7a1ce39SDavid Ahern 		cfg.fc_flags |= RTF_ANYCAST;
4572e8478e80SDavid Ahern 	} else {
4573c7a1ce39SDavid Ahern 		cfg.fc_type = RTN_LOCAL;
4574c7a1ce39SDavid Ahern 		cfg.fc_flags |= RTF_LOCAL;
4575e8478e80SDavid Ahern 	}
45761da177e4SLinus Torvalds 
4577d55a2e37SMaciej Żenczykowski 	f6i = ip6_route_info_create(&cfg, gfp_flags, NULL);
45788652f17cSMaciej Żenczykowski 	if (!IS_ERR(f6i))
4579d55a2e37SMaciej Żenczykowski 		f6i->dst_nocount = true;
4580d55a2e37SMaciej Żenczykowski 	return f6i;
45811da177e4SLinus Torvalds }
45821da177e4SLinus Torvalds 
4583c3968a85SDaniel Walter /* remove deleted ip from prefsrc entries */
4584c3968a85SDaniel Walter struct arg_dev_net_ip {
4585c3968a85SDaniel Walter 	struct net_device *dev;
4586c3968a85SDaniel Walter 	struct net *net;
4587c3968a85SDaniel Walter 	struct in6_addr *addr;
4588c3968a85SDaniel Walter };
4589c3968a85SDaniel Walter 
45908d1c802bSDavid Ahern static int fib6_remove_prefsrc(struct fib6_info *rt, void *arg)
4591c3968a85SDaniel Walter {
4592c3968a85SDaniel Walter 	struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev;
4593c3968a85SDaniel Walter 	struct net *net = ((struct arg_dev_net_ip *)arg)->net;
4594c3968a85SDaniel Walter 	struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr;
4595c3968a85SDaniel Walter 
4596f88d8ea6SDavid Ahern 	if (!rt->nh &&
4597f88d8ea6SDavid Ahern 	    ((void *)rt->fib6_nh->fib_nh_dev == dev || !dev) &&
4598421842edSDavid Ahern 	    rt != net->ipv6.fib6_null_entry &&
459993c2fb25SDavid Ahern 	    ipv6_addr_equal(addr, &rt->fib6_prefsrc.addr)) {
460060006a48SWei Wang 		spin_lock_bh(&rt6_exception_lock);
4601c3968a85SDaniel Walter 		/* remove prefsrc entry */
460293c2fb25SDavid Ahern 		rt->fib6_prefsrc.plen = 0;
460360006a48SWei Wang 		spin_unlock_bh(&rt6_exception_lock);
4604c3968a85SDaniel Walter 	}
4605c3968a85SDaniel Walter 	return 0;
4606c3968a85SDaniel Walter }
4607c3968a85SDaniel Walter 
4608c3968a85SDaniel Walter void rt6_remove_prefsrc(struct inet6_ifaddr *ifp)
4609c3968a85SDaniel Walter {
4610c3968a85SDaniel Walter 	struct net *net = dev_net(ifp->idev->dev);
4611c3968a85SDaniel Walter 	struct arg_dev_net_ip adni = {
4612c3968a85SDaniel Walter 		.dev = ifp->idev->dev,
4613c3968a85SDaniel Walter 		.net = net,
4614c3968a85SDaniel Walter 		.addr = &ifp->addr,
4615c3968a85SDaniel Walter 	};
46160c3584d5SLi RongQing 	fib6_clean_all(net, fib6_remove_prefsrc, &adni);
4617c3968a85SDaniel Walter }
4618c3968a85SDaniel Walter 
46192b2450caSDavid Ahern #define RTF_RA_ROUTER		(RTF_ADDRCONF | RTF_DEFAULT)
4620be7a010dSDuan Jiong 
4621be7a010dSDuan Jiong /* Remove routers and update dst entries when gateway turn into host. */
46228d1c802bSDavid Ahern static int fib6_clean_tohost(struct fib6_info *rt, void *arg)
4623be7a010dSDuan Jiong {
4624be7a010dSDuan Jiong 	struct in6_addr *gateway = (struct in6_addr *)arg;
4625f88d8ea6SDavid Ahern 	struct fib6_nh *nh;
4626be7a010dSDuan Jiong 
4627f88d8ea6SDavid Ahern 	/* RA routes do not use nexthops */
4628f88d8ea6SDavid Ahern 	if (rt->nh)
4629f88d8ea6SDavid Ahern 		return 0;
4630f88d8ea6SDavid Ahern 
4631f88d8ea6SDavid Ahern 	nh = rt->fib6_nh;
463293c2fb25SDavid Ahern 	if (((rt->fib6_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) &&
4633cc5c073aSDavid Ahern 	    nh->fib_nh_gw_family && ipv6_addr_equal(gateway, &nh->fib_nh_gw6))
4634be7a010dSDuan Jiong 		return -1;
4635b16cb459SWei Wang 
4636b16cb459SWei Wang 	/* Further clean up cached routes in exception table.
4637b16cb459SWei Wang 	 * This is needed because cached route may have a different
4638b16cb459SWei Wang 	 * gateway than its 'parent' in the case of an ip redirect.
4639b16cb459SWei Wang 	 */
4640cc5c073aSDavid Ahern 	fib6_nh_exceptions_clean_tohost(nh, gateway);
4641b16cb459SWei Wang 
4642be7a010dSDuan Jiong 	return 0;
4643be7a010dSDuan Jiong }
4644be7a010dSDuan Jiong 
4645be7a010dSDuan Jiong void rt6_clean_tohost(struct net *net, struct in6_addr *gateway)
4646be7a010dSDuan Jiong {
4647be7a010dSDuan Jiong 	fib6_clean_all(net, fib6_clean_tohost, gateway);
4648be7a010dSDuan Jiong }
4649be7a010dSDuan Jiong 
46502127d95aSIdo Schimmel struct arg_netdev_event {
46512127d95aSIdo Schimmel 	const struct net_device *dev;
46524c981e28SIdo Schimmel 	union {
4653ecc5663cSDavid Ahern 		unsigned char nh_flags;
46544c981e28SIdo Schimmel 		unsigned long event;
46554c981e28SIdo Schimmel 	};
46562127d95aSIdo Schimmel };
46572127d95aSIdo Schimmel 
46588d1c802bSDavid Ahern static struct fib6_info *rt6_multipath_first_sibling(const struct fib6_info *rt)
4659d7dedee1SIdo Schimmel {
46608d1c802bSDavid Ahern 	struct fib6_info *iter;
4661d7dedee1SIdo Schimmel 	struct fib6_node *fn;
4662d7dedee1SIdo Schimmel 
466393c2fb25SDavid Ahern 	fn = rcu_dereference_protected(rt->fib6_node,
466493c2fb25SDavid Ahern 			lockdep_is_held(&rt->fib6_table->tb6_lock));
4665d7dedee1SIdo Schimmel 	iter = rcu_dereference_protected(fn->leaf,
466693c2fb25SDavid Ahern 			lockdep_is_held(&rt->fib6_table->tb6_lock));
4667d7dedee1SIdo Schimmel 	while (iter) {
466893c2fb25SDavid Ahern 		if (iter->fib6_metric == rt->fib6_metric &&
466933bd5ac5SDavid Ahern 		    rt6_qualify_for_ecmp(iter))
4670d7dedee1SIdo Schimmel 			return iter;
46718fb11a9aSDavid Ahern 		iter = rcu_dereference_protected(iter->fib6_next,
467293c2fb25SDavid Ahern 				lockdep_is_held(&rt->fib6_table->tb6_lock));
4673d7dedee1SIdo Schimmel 	}
4674d7dedee1SIdo Schimmel 
4675d7dedee1SIdo Schimmel 	return NULL;
4676d7dedee1SIdo Schimmel }
4677d7dedee1SIdo Schimmel 
4678f88d8ea6SDavid Ahern /* only called for fib entries with builtin fib6_nh */
46798d1c802bSDavid Ahern static bool rt6_is_dead(const struct fib6_info *rt)
4680d7dedee1SIdo Schimmel {
46811cf844c7SDavid Ahern 	if (rt->fib6_nh->fib_nh_flags & RTNH_F_DEAD ||
46821cf844c7SDavid Ahern 	    (rt->fib6_nh->fib_nh_flags & RTNH_F_LINKDOWN &&
46831cf844c7SDavid Ahern 	     ip6_ignore_linkdown(rt->fib6_nh->fib_nh_dev)))
4684d7dedee1SIdo Schimmel 		return true;
4685d7dedee1SIdo Schimmel 
4686d7dedee1SIdo Schimmel 	return false;
4687d7dedee1SIdo Schimmel }
4688d7dedee1SIdo Schimmel 
46898d1c802bSDavid Ahern static int rt6_multipath_total_weight(const struct fib6_info *rt)
4690d7dedee1SIdo Schimmel {
46918d1c802bSDavid Ahern 	struct fib6_info *iter;
4692d7dedee1SIdo Schimmel 	int total = 0;
4693d7dedee1SIdo Schimmel 
4694d7dedee1SIdo Schimmel 	if (!rt6_is_dead(rt))
46951cf844c7SDavid Ahern 		total += rt->fib6_nh->fib_nh_weight;
4696d7dedee1SIdo Schimmel 
469793c2fb25SDavid Ahern 	list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) {
4698d7dedee1SIdo Schimmel 		if (!rt6_is_dead(iter))
46991cf844c7SDavid Ahern 			total += iter->fib6_nh->fib_nh_weight;
4700d7dedee1SIdo Schimmel 	}
4701d7dedee1SIdo Schimmel 
4702d7dedee1SIdo Schimmel 	return total;
4703d7dedee1SIdo Schimmel }
4704d7dedee1SIdo Schimmel 
47058d1c802bSDavid Ahern static void rt6_upper_bound_set(struct fib6_info *rt, int *weight, int total)
4706d7dedee1SIdo Schimmel {
4707d7dedee1SIdo Schimmel 	int upper_bound = -1;
4708d7dedee1SIdo Schimmel 
4709d7dedee1SIdo Schimmel 	if (!rt6_is_dead(rt)) {
47101cf844c7SDavid Ahern 		*weight += rt->fib6_nh->fib_nh_weight;
4711d7dedee1SIdo Schimmel 		upper_bound = DIV_ROUND_CLOSEST_ULL((u64) (*weight) << 31,
4712d7dedee1SIdo Schimmel 						    total) - 1;
4713d7dedee1SIdo Schimmel 	}
47141cf844c7SDavid Ahern 	atomic_set(&rt->fib6_nh->fib_nh_upper_bound, upper_bound);
4715d7dedee1SIdo Schimmel }
4716d7dedee1SIdo Schimmel 
47178d1c802bSDavid Ahern static void rt6_multipath_upper_bound_set(struct fib6_info *rt, int total)
4718d7dedee1SIdo Schimmel {
47198d1c802bSDavid Ahern 	struct fib6_info *iter;
4720d7dedee1SIdo Schimmel 	int weight = 0;
4721d7dedee1SIdo Schimmel 
4722d7dedee1SIdo Schimmel 	rt6_upper_bound_set(rt, &weight, total);
4723d7dedee1SIdo Schimmel 
472493c2fb25SDavid Ahern 	list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
4725d7dedee1SIdo Schimmel 		rt6_upper_bound_set(iter, &weight, total);
4726d7dedee1SIdo Schimmel }
4727d7dedee1SIdo Schimmel 
47288d1c802bSDavid Ahern void rt6_multipath_rebalance(struct fib6_info *rt)
4729d7dedee1SIdo Schimmel {
47308d1c802bSDavid Ahern 	struct fib6_info *first;
4731d7dedee1SIdo Schimmel 	int total;
4732d7dedee1SIdo Schimmel 
4733d7dedee1SIdo Schimmel 	/* In case the entire multipath route was marked for flushing,
4734d7dedee1SIdo Schimmel 	 * then there is no need to rebalance upon the removal of every
4735d7dedee1SIdo Schimmel 	 * sibling route.
4736d7dedee1SIdo Schimmel 	 */
473793c2fb25SDavid Ahern 	if (!rt->fib6_nsiblings || rt->should_flush)
4738d7dedee1SIdo Schimmel 		return;
4739d7dedee1SIdo Schimmel 
4740d7dedee1SIdo Schimmel 	/* During lookup routes are evaluated in order, so we need to
4741d7dedee1SIdo Schimmel 	 * make sure upper bounds are assigned from the first sibling
4742d7dedee1SIdo Schimmel 	 * onwards.
4743d7dedee1SIdo Schimmel 	 */
4744d7dedee1SIdo Schimmel 	first = rt6_multipath_first_sibling(rt);
4745d7dedee1SIdo Schimmel 	if (WARN_ON_ONCE(!first))
4746d7dedee1SIdo Schimmel 		return;
4747d7dedee1SIdo Schimmel 
4748d7dedee1SIdo Schimmel 	total = rt6_multipath_total_weight(first);
4749d7dedee1SIdo Schimmel 	rt6_multipath_upper_bound_set(first, total);
4750d7dedee1SIdo Schimmel }
4751d7dedee1SIdo Schimmel 
47528d1c802bSDavid Ahern static int fib6_ifup(struct fib6_info *rt, void *p_arg)
47532127d95aSIdo Schimmel {
47542127d95aSIdo Schimmel 	const struct arg_netdev_event *arg = p_arg;
47557aef6859SDavid Ahern 	struct net *net = dev_net(arg->dev);
47562127d95aSIdo Schimmel 
4757f88d8ea6SDavid Ahern 	if (rt != net->ipv6.fib6_null_entry && !rt->nh &&
47581cf844c7SDavid Ahern 	    rt->fib6_nh->fib_nh_dev == arg->dev) {
47591cf844c7SDavid Ahern 		rt->fib6_nh->fib_nh_flags &= ~arg->nh_flags;
47607aef6859SDavid Ahern 		fib6_update_sernum_upto_root(net, rt);
4761d7dedee1SIdo Schimmel 		rt6_multipath_rebalance(rt);
47621de178edSIdo Schimmel 	}
47632127d95aSIdo Schimmel 
47642127d95aSIdo Schimmel 	return 0;
47652127d95aSIdo Schimmel }
47662127d95aSIdo Schimmel 
4767ecc5663cSDavid Ahern void rt6_sync_up(struct net_device *dev, unsigned char nh_flags)
47682127d95aSIdo Schimmel {
47692127d95aSIdo Schimmel 	struct arg_netdev_event arg = {
47702127d95aSIdo Schimmel 		.dev = dev,
47716802f3adSIdo Schimmel 		{
47722127d95aSIdo Schimmel 			.nh_flags = nh_flags,
47736802f3adSIdo Schimmel 		},
47742127d95aSIdo Schimmel 	};
47752127d95aSIdo Schimmel 
47762127d95aSIdo Schimmel 	if (nh_flags & RTNH_F_DEAD && netif_carrier_ok(dev))
47772127d95aSIdo Schimmel 		arg.nh_flags |= RTNH_F_LINKDOWN;
47782127d95aSIdo Schimmel 
47792127d95aSIdo Schimmel 	fib6_clean_all(dev_net(dev), fib6_ifup, &arg);
47802127d95aSIdo Schimmel }
47812127d95aSIdo Schimmel 
4782f88d8ea6SDavid Ahern /* only called for fib entries with inline fib6_nh */
47838d1c802bSDavid Ahern static bool rt6_multipath_uses_dev(const struct fib6_info *rt,
47841de178edSIdo Schimmel 				   const struct net_device *dev)
47851de178edSIdo Schimmel {
47868d1c802bSDavid Ahern 	struct fib6_info *iter;
47871de178edSIdo Schimmel 
47881cf844c7SDavid Ahern 	if (rt->fib6_nh->fib_nh_dev == dev)
47891de178edSIdo Schimmel 		return true;
479093c2fb25SDavid Ahern 	list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
47911cf844c7SDavid Ahern 		if (iter->fib6_nh->fib_nh_dev == dev)
47921de178edSIdo Schimmel 			return true;
47931de178edSIdo Schimmel 
47941de178edSIdo Schimmel 	return false;
47951de178edSIdo Schimmel }
47961de178edSIdo Schimmel 
47978d1c802bSDavid Ahern static void rt6_multipath_flush(struct fib6_info *rt)
47981de178edSIdo Schimmel {
47998d1c802bSDavid Ahern 	struct fib6_info *iter;
48001de178edSIdo Schimmel 
48011de178edSIdo Schimmel 	rt->should_flush = 1;
480293c2fb25SDavid Ahern 	list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
48031de178edSIdo Schimmel 		iter->should_flush = 1;
48041de178edSIdo Schimmel }
48051de178edSIdo Schimmel 
48068d1c802bSDavid Ahern static unsigned int rt6_multipath_dead_count(const struct fib6_info *rt,
48071de178edSIdo Schimmel 					     const struct net_device *down_dev)
48081de178edSIdo Schimmel {
48098d1c802bSDavid Ahern 	struct fib6_info *iter;
48101de178edSIdo Schimmel 	unsigned int dead = 0;
48111de178edSIdo Schimmel 
48121cf844c7SDavid Ahern 	if (rt->fib6_nh->fib_nh_dev == down_dev ||
48131cf844c7SDavid Ahern 	    rt->fib6_nh->fib_nh_flags & RTNH_F_DEAD)
48141de178edSIdo Schimmel 		dead++;
481593c2fb25SDavid Ahern 	list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
48161cf844c7SDavid Ahern 		if (iter->fib6_nh->fib_nh_dev == down_dev ||
48171cf844c7SDavid Ahern 		    iter->fib6_nh->fib_nh_flags & RTNH_F_DEAD)
48181de178edSIdo Schimmel 			dead++;
48191de178edSIdo Schimmel 
48201de178edSIdo Schimmel 	return dead;
48211de178edSIdo Schimmel }
48221de178edSIdo Schimmel 
48238d1c802bSDavid Ahern static void rt6_multipath_nh_flags_set(struct fib6_info *rt,
48241de178edSIdo Schimmel 				       const struct net_device *dev,
4825ecc5663cSDavid Ahern 				       unsigned char nh_flags)
48261de178edSIdo Schimmel {
48278d1c802bSDavid Ahern 	struct fib6_info *iter;
48281de178edSIdo Schimmel 
48291cf844c7SDavid Ahern 	if (rt->fib6_nh->fib_nh_dev == dev)
48301cf844c7SDavid Ahern 		rt->fib6_nh->fib_nh_flags |= nh_flags;
483193c2fb25SDavid Ahern 	list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings)
48321cf844c7SDavid Ahern 		if (iter->fib6_nh->fib_nh_dev == dev)
48331cf844c7SDavid Ahern 			iter->fib6_nh->fib_nh_flags |= nh_flags;
48341de178edSIdo Schimmel }
48351de178edSIdo Schimmel 
4836a1a22c12SDavid Ahern /* called with write lock held for table with rt */
48378d1c802bSDavid Ahern static int fib6_ifdown(struct fib6_info *rt, void *p_arg)
48381da177e4SLinus Torvalds {
48394c981e28SIdo Schimmel 	const struct arg_netdev_event *arg = p_arg;
48404c981e28SIdo Schimmel 	const struct net_device *dev = arg->dev;
48417aef6859SDavid Ahern 	struct net *net = dev_net(dev);
48428ed67789SDaniel Lezcano 
4843f88d8ea6SDavid Ahern 	if (rt == net->ipv6.fib6_null_entry || rt->nh)
484427c6fa73SIdo Schimmel 		return 0;
484527c6fa73SIdo Schimmel 
484627c6fa73SIdo Schimmel 	switch (arg->event) {
484727c6fa73SIdo Schimmel 	case NETDEV_UNREGISTER:
48481cf844c7SDavid Ahern 		return rt->fib6_nh->fib_nh_dev == dev ? -1 : 0;
484927c6fa73SIdo Schimmel 	case NETDEV_DOWN:
48501de178edSIdo Schimmel 		if (rt->should_flush)
485127c6fa73SIdo Schimmel 			return -1;
485293c2fb25SDavid Ahern 		if (!rt->fib6_nsiblings)
48531cf844c7SDavid Ahern 			return rt->fib6_nh->fib_nh_dev == dev ? -1 : 0;
48541de178edSIdo Schimmel 		if (rt6_multipath_uses_dev(rt, dev)) {
48551de178edSIdo Schimmel 			unsigned int count;
48561de178edSIdo Schimmel 
48571de178edSIdo Schimmel 			count = rt6_multipath_dead_count(rt, dev);
485893c2fb25SDavid Ahern 			if (rt->fib6_nsiblings + 1 == count) {
48591de178edSIdo Schimmel 				rt6_multipath_flush(rt);
48601de178edSIdo Schimmel 				return -1;
48611de178edSIdo Schimmel 			}
48621de178edSIdo Schimmel 			rt6_multipath_nh_flags_set(rt, dev, RTNH_F_DEAD |
48631de178edSIdo Schimmel 						   RTNH_F_LINKDOWN);
48647aef6859SDavid Ahern 			fib6_update_sernum(net, rt);
4865d7dedee1SIdo Schimmel 			rt6_multipath_rebalance(rt);
48661de178edSIdo Schimmel 		}
48671de178edSIdo Schimmel 		return -2;
486827c6fa73SIdo Schimmel 	case NETDEV_CHANGE:
48691cf844c7SDavid Ahern 		if (rt->fib6_nh->fib_nh_dev != dev ||
487093c2fb25SDavid Ahern 		    rt->fib6_flags & (RTF_LOCAL | RTF_ANYCAST))
487127c6fa73SIdo Schimmel 			break;
48721cf844c7SDavid Ahern 		rt->fib6_nh->fib_nh_flags |= RTNH_F_LINKDOWN;
4873d7dedee1SIdo Schimmel 		rt6_multipath_rebalance(rt);
487427c6fa73SIdo Schimmel 		break;
48752b241361SIdo Schimmel 	}
4876c159d30cSDavid S. Miller 
48771da177e4SLinus Torvalds 	return 0;
48781da177e4SLinus Torvalds }
48791da177e4SLinus Torvalds 
488027c6fa73SIdo Schimmel void rt6_sync_down_dev(struct net_device *dev, unsigned long event)
48811da177e4SLinus Torvalds {
48824c981e28SIdo Schimmel 	struct arg_netdev_event arg = {
48838ed67789SDaniel Lezcano 		.dev = dev,
48846802f3adSIdo Schimmel 		{
48854c981e28SIdo Schimmel 			.event = event,
48866802f3adSIdo Schimmel 		},
48878ed67789SDaniel Lezcano 	};
48887c6bb7d2SDavid Ahern 	struct net *net = dev_net(dev);
48898ed67789SDaniel Lezcano 
48907c6bb7d2SDavid Ahern 	if (net->ipv6.sysctl.skip_notify_on_dev_down)
48917c6bb7d2SDavid Ahern 		fib6_clean_all_skip_notify(net, fib6_ifdown, &arg);
48927c6bb7d2SDavid Ahern 	else
48937c6bb7d2SDavid Ahern 		fib6_clean_all(net, fib6_ifdown, &arg);
48944c981e28SIdo Schimmel }
48954c981e28SIdo Schimmel 
48964c981e28SIdo Schimmel void rt6_disable_ip(struct net_device *dev, unsigned long event)
48974c981e28SIdo Schimmel {
48984c981e28SIdo Schimmel 	rt6_sync_down_dev(dev, event);
48994c981e28SIdo Schimmel 	rt6_uncached_list_flush_dev(dev_net(dev), dev);
49004c981e28SIdo Schimmel 	neigh_ifdown(&nd_tbl, dev);
49011da177e4SLinus Torvalds }
49021da177e4SLinus Torvalds 
490395c96174SEric Dumazet struct rt6_mtu_change_arg {
49041da177e4SLinus Torvalds 	struct net_device *dev;
490595c96174SEric Dumazet 	unsigned int mtu;
4906c0b220cfSDavid Ahern 	struct fib6_info *f6i;
49071da177e4SLinus Torvalds };
49081da177e4SLinus Torvalds 
4909cc5c073aSDavid Ahern static int fib6_nh_mtu_change(struct fib6_nh *nh, void *_arg)
4910c0b220cfSDavid Ahern {
4911c0b220cfSDavid Ahern 	struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *)_arg;
4912cc5c073aSDavid Ahern 	struct fib6_info *f6i = arg->f6i;
4913c0b220cfSDavid Ahern 
4914c0b220cfSDavid Ahern 	/* For administrative MTU increase, there is no way to discover
4915c0b220cfSDavid Ahern 	 * IPv6 PMTU increase, so PMTU increase should be updated here.
4916c0b220cfSDavid Ahern 	 * Since RFC 1981 doesn't include administrative MTU increase
4917c0b220cfSDavid Ahern 	 * update PMTU increase is a MUST. (i.e. jumbo frame)
4918c0b220cfSDavid Ahern 	 */
4919c0b220cfSDavid Ahern 	if (nh->fib_nh_dev == arg->dev) {
4920c0b220cfSDavid Ahern 		struct inet6_dev *idev = __in6_dev_get(arg->dev);
4921c0b220cfSDavid Ahern 		u32 mtu = f6i->fib6_pmtu;
4922c0b220cfSDavid Ahern 
4923c0b220cfSDavid Ahern 		if (mtu >= arg->mtu ||
4924c0b220cfSDavid Ahern 		    (mtu < arg->mtu && mtu == idev->cnf.mtu6))
4925c0b220cfSDavid Ahern 			fib6_metric_set(f6i, RTAX_MTU, arg->mtu);
4926c0b220cfSDavid Ahern 
4927c0b220cfSDavid Ahern 		spin_lock_bh(&rt6_exception_lock);
4928cc5c073aSDavid Ahern 		rt6_exceptions_update_pmtu(idev, nh, arg->mtu);
4929c0b220cfSDavid Ahern 		spin_unlock_bh(&rt6_exception_lock);
4930c0b220cfSDavid Ahern 	}
4931c0b220cfSDavid Ahern 
4932c0b220cfSDavid Ahern 	return 0;
4933c0b220cfSDavid Ahern }
4934c0b220cfSDavid Ahern 
4935c0b220cfSDavid Ahern static int rt6_mtu_change_route(struct fib6_info *f6i, void *p_arg)
49361da177e4SLinus Torvalds {
49371da177e4SLinus Torvalds 	struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg;
49381da177e4SLinus Torvalds 	struct inet6_dev *idev;
49391da177e4SLinus Torvalds 
49401da177e4SLinus Torvalds 	/* In IPv6 pmtu discovery is not optional,
49411da177e4SLinus Torvalds 	   so that RTAX_MTU lock cannot disable it.
49421da177e4SLinus Torvalds 	   We still use this lock to block changes
49431da177e4SLinus Torvalds 	   caused by addrconf/ndisc.
49441da177e4SLinus Torvalds 	*/
49451da177e4SLinus Torvalds 
49461da177e4SLinus Torvalds 	idev = __in6_dev_get(arg->dev);
494738308473SDavid S. Miller 	if (!idev)
49481da177e4SLinus Torvalds 		return 0;
49491da177e4SLinus Torvalds 
4950c0b220cfSDavid Ahern 	if (fib6_metric_locked(f6i, RTAX_MTU))
49511da177e4SLinus Torvalds 		return 0;
4952c0b220cfSDavid Ahern 
4953c0b220cfSDavid Ahern 	arg->f6i = f6i;
49542d44234bSDavid Ahern 	if (f6i->nh) {
49552d44234bSDavid Ahern 		/* fib6_nh_mtu_change only returns 0, so this is safe */
49562d44234bSDavid Ahern 		return nexthop_for_each_fib6_nh(f6i->nh, fib6_nh_mtu_change,
49572d44234bSDavid Ahern 						arg);
49582d44234bSDavid Ahern 	}
49592d44234bSDavid Ahern 
49601cf844c7SDavid Ahern 	return fib6_nh_mtu_change(f6i->fib6_nh, arg);
49611da177e4SLinus Torvalds }
49621da177e4SLinus Torvalds 
496395c96174SEric Dumazet void rt6_mtu_change(struct net_device *dev, unsigned int mtu)
49641da177e4SLinus Torvalds {
4965c71099acSThomas Graf 	struct rt6_mtu_change_arg arg = {
4966c71099acSThomas Graf 		.dev = dev,
4967c71099acSThomas Graf 		.mtu = mtu,
4968c71099acSThomas Graf 	};
49691da177e4SLinus Torvalds 
49700c3584d5SLi RongQing 	fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg);
49711da177e4SLinus Torvalds }
49721da177e4SLinus Torvalds 
4973ef7c79edSPatrick McHardy static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = {
497475425657SDavid Ahern 	[RTA_UNSPEC]		= { .strict_start_type = RTA_DPORT + 1 },
49755176f91eSThomas Graf 	[RTA_GATEWAY]           = { .len = sizeof(struct in6_addr) },
4976aa8f8778SEric Dumazet 	[RTA_PREFSRC]		= { .len = sizeof(struct in6_addr) },
497786872cb5SThomas Graf 	[RTA_OIF]               = { .type = NLA_U32 },
4978ab364a6fSThomas Graf 	[RTA_IIF]		= { .type = NLA_U32 },
497986872cb5SThomas Graf 	[RTA_PRIORITY]          = { .type = NLA_U32 },
498086872cb5SThomas Graf 	[RTA_METRICS]           = { .type = NLA_NESTED },
498151ebd318SNicolas Dichtel 	[RTA_MULTIPATH]		= { .len = sizeof(struct rtnexthop) },
4982c78ba6d6SLubomir Rintel 	[RTA_PREF]              = { .type = NLA_U8 },
498319e42e45SRoopa Prabhu 	[RTA_ENCAP_TYPE]	= { .type = NLA_U16 },
498419e42e45SRoopa Prabhu 	[RTA_ENCAP]		= { .type = NLA_NESTED },
498532bc201eSXin Long 	[RTA_EXPIRES]		= { .type = NLA_U32 },
4986622ec2c9SLorenzo Colitti 	[RTA_UID]		= { .type = NLA_U32 },
49873b45a410SLiping Zhang 	[RTA_MARK]		= { .type = NLA_U32 },
4988aa8f8778SEric Dumazet 	[RTA_TABLE]		= { .type = NLA_U32 },
4989eacb9384SRoopa Prabhu 	[RTA_IP_PROTO]		= { .type = NLA_U8 },
4990eacb9384SRoopa Prabhu 	[RTA_SPORT]		= { .type = NLA_U16 },
4991eacb9384SRoopa Prabhu 	[RTA_DPORT]		= { .type = NLA_U16 },
49925b98324eSDavid Ahern 	[RTA_NH_ID]		= { .type = NLA_U32 },
499386872cb5SThomas Graf };
499486872cb5SThomas Graf 
499586872cb5SThomas Graf static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh,
4996333c4301SDavid Ahern 			      struct fib6_config *cfg,
4997333c4301SDavid Ahern 			      struct netlink_ext_ack *extack)
49981da177e4SLinus Torvalds {
499986872cb5SThomas Graf 	struct rtmsg *rtm;
500086872cb5SThomas Graf 	struct nlattr *tb[RTA_MAX+1];
5001c78ba6d6SLubomir Rintel 	unsigned int pref;
500286872cb5SThomas Graf 	int err;
50031da177e4SLinus Torvalds 
50048cb08174SJohannes Berg 	err = nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX,
50058cb08174SJohannes Berg 				     rtm_ipv6_policy, extack);
500686872cb5SThomas Graf 	if (err < 0)
500786872cb5SThomas Graf 		goto errout;
50081da177e4SLinus Torvalds 
500986872cb5SThomas Graf 	err = -EINVAL;
501086872cb5SThomas Graf 	rtm = nlmsg_data(nlh);
501186872cb5SThomas Graf 
501284db8407SMaciej Żenczykowski 	*cfg = (struct fib6_config){
501384db8407SMaciej Żenczykowski 		.fc_table = rtm->rtm_table,
501484db8407SMaciej Żenczykowski 		.fc_dst_len = rtm->rtm_dst_len,
501584db8407SMaciej Żenczykowski 		.fc_src_len = rtm->rtm_src_len,
501684db8407SMaciej Żenczykowski 		.fc_flags = RTF_UP,
501784db8407SMaciej Żenczykowski 		.fc_protocol = rtm->rtm_protocol,
501884db8407SMaciej Żenczykowski 		.fc_type = rtm->rtm_type,
501984db8407SMaciej Żenczykowski 
502084db8407SMaciej Żenczykowski 		.fc_nlinfo.portid = NETLINK_CB(skb).portid,
502184db8407SMaciej Żenczykowski 		.fc_nlinfo.nlh = nlh,
502284db8407SMaciej Żenczykowski 		.fc_nlinfo.nl_net = sock_net(skb->sk),
502384db8407SMaciej Żenczykowski 	};
502486872cb5SThomas Graf 
5025ef2c7d7bSNicolas Dichtel 	if (rtm->rtm_type == RTN_UNREACHABLE ||
5026ef2c7d7bSNicolas Dichtel 	    rtm->rtm_type == RTN_BLACKHOLE ||
5027b4949ab2SNicolas Dichtel 	    rtm->rtm_type == RTN_PROHIBIT ||
5028b4949ab2SNicolas Dichtel 	    rtm->rtm_type == RTN_THROW)
502986872cb5SThomas Graf 		cfg->fc_flags |= RTF_REJECT;
503086872cb5SThomas Graf 
5031ab79ad14SMaciej Żenczykowski 	if (rtm->rtm_type == RTN_LOCAL)
5032ab79ad14SMaciej Żenczykowski 		cfg->fc_flags |= RTF_LOCAL;
5033ab79ad14SMaciej Żenczykowski 
50341f56a01fSMartin KaFai Lau 	if (rtm->rtm_flags & RTM_F_CLONED)
50351f56a01fSMartin KaFai Lau 		cfg->fc_flags |= RTF_CACHE;
50361f56a01fSMartin KaFai Lau 
5037fc1e64e1SDavid Ahern 	cfg->fc_flags |= (rtm->rtm_flags & RTNH_F_ONLINK);
5038fc1e64e1SDavid Ahern 
50395b98324eSDavid Ahern 	if (tb[RTA_NH_ID]) {
50405b98324eSDavid Ahern 		if (tb[RTA_GATEWAY]   || tb[RTA_OIF] ||
50415b98324eSDavid Ahern 		    tb[RTA_MULTIPATH] || tb[RTA_ENCAP]) {
50425b98324eSDavid Ahern 			NL_SET_ERR_MSG(extack,
50435b98324eSDavid Ahern 				       "Nexthop specification and nexthop id are mutually exclusive");
50445b98324eSDavid Ahern 			goto errout;
50455b98324eSDavid Ahern 		}
50465b98324eSDavid Ahern 		cfg->fc_nh_id = nla_get_u32(tb[RTA_NH_ID]);
50475b98324eSDavid Ahern 	}
50485b98324eSDavid Ahern 
504986872cb5SThomas Graf 	if (tb[RTA_GATEWAY]) {
505067b61f6cSJiri Benc 		cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]);
505186872cb5SThomas Graf 		cfg->fc_flags |= RTF_GATEWAY;
50521da177e4SLinus Torvalds 	}
5053e3818541SDavid Ahern 	if (tb[RTA_VIA]) {
5054e3818541SDavid Ahern 		NL_SET_ERR_MSG(extack, "IPv6 does not support RTA_VIA attribute");
5055e3818541SDavid Ahern 		goto errout;
5056e3818541SDavid Ahern 	}
505786872cb5SThomas Graf 
505886872cb5SThomas Graf 	if (tb[RTA_DST]) {
505986872cb5SThomas Graf 		int plen = (rtm->rtm_dst_len + 7) >> 3;
506086872cb5SThomas Graf 
506186872cb5SThomas Graf 		if (nla_len(tb[RTA_DST]) < plen)
506286872cb5SThomas Graf 			goto errout;
506386872cb5SThomas Graf 
506486872cb5SThomas Graf 		nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen);
50651da177e4SLinus Torvalds 	}
506686872cb5SThomas Graf 
506786872cb5SThomas Graf 	if (tb[RTA_SRC]) {
506886872cb5SThomas Graf 		int plen = (rtm->rtm_src_len + 7) >> 3;
506986872cb5SThomas Graf 
507086872cb5SThomas Graf 		if (nla_len(tb[RTA_SRC]) < plen)
507186872cb5SThomas Graf 			goto errout;
507286872cb5SThomas Graf 
507386872cb5SThomas Graf 		nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen);
50741da177e4SLinus Torvalds 	}
507586872cb5SThomas Graf 
5076c3968a85SDaniel Walter 	if (tb[RTA_PREFSRC])
507767b61f6cSJiri Benc 		cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]);
5078c3968a85SDaniel Walter 
507986872cb5SThomas Graf 	if (tb[RTA_OIF])
508086872cb5SThomas Graf 		cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]);
508186872cb5SThomas Graf 
508286872cb5SThomas Graf 	if (tb[RTA_PRIORITY])
508386872cb5SThomas Graf 		cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]);
508486872cb5SThomas Graf 
508586872cb5SThomas Graf 	if (tb[RTA_METRICS]) {
508686872cb5SThomas Graf 		cfg->fc_mx = nla_data(tb[RTA_METRICS]);
508786872cb5SThomas Graf 		cfg->fc_mx_len = nla_len(tb[RTA_METRICS]);
50881da177e4SLinus Torvalds 	}
508986872cb5SThomas Graf 
509086872cb5SThomas Graf 	if (tb[RTA_TABLE])
509186872cb5SThomas Graf 		cfg->fc_table = nla_get_u32(tb[RTA_TABLE]);
509286872cb5SThomas Graf 
509351ebd318SNicolas Dichtel 	if (tb[RTA_MULTIPATH]) {
509451ebd318SNicolas Dichtel 		cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]);
509551ebd318SNicolas Dichtel 		cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]);
50969ed59592SDavid Ahern 
50979ed59592SDavid Ahern 		err = lwtunnel_valid_encap_type_attr(cfg->fc_mp,
5098c255bd68SDavid Ahern 						     cfg->fc_mp_len, extack);
50999ed59592SDavid Ahern 		if (err < 0)
51009ed59592SDavid Ahern 			goto errout;
510151ebd318SNicolas Dichtel 	}
510251ebd318SNicolas Dichtel 
5103c78ba6d6SLubomir Rintel 	if (tb[RTA_PREF]) {
5104c78ba6d6SLubomir Rintel 		pref = nla_get_u8(tb[RTA_PREF]);
5105c78ba6d6SLubomir Rintel 		if (pref != ICMPV6_ROUTER_PREF_LOW &&
5106c78ba6d6SLubomir Rintel 		    pref != ICMPV6_ROUTER_PREF_HIGH)
5107c78ba6d6SLubomir Rintel 			pref = ICMPV6_ROUTER_PREF_MEDIUM;
5108c78ba6d6SLubomir Rintel 		cfg->fc_flags |= RTF_PREF(pref);
5109c78ba6d6SLubomir Rintel 	}
5110c78ba6d6SLubomir Rintel 
511119e42e45SRoopa Prabhu 	if (tb[RTA_ENCAP])
511219e42e45SRoopa Prabhu 		cfg->fc_encap = tb[RTA_ENCAP];
511319e42e45SRoopa Prabhu 
51149ed59592SDavid Ahern 	if (tb[RTA_ENCAP_TYPE]) {
511519e42e45SRoopa Prabhu 		cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]);
511619e42e45SRoopa Prabhu 
5117c255bd68SDavid Ahern 		err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack);
51189ed59592SDavid Ahern 		if (err < 0)
51199ed59592SDavid Ahern 			goto errout;
51209ed59592SDavid Ahern 	}
51219ed59592SDavid Ahern 
512232bc201eSXin Long 	if (tb[RTA_EXPIRES]) {
512332bc201eSXin Long 		unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ);
512432bc201eSXin Long 
512532bc201eSXin Long 		if (addrconf_finite_timeout(timeout)) {
512632bc201eSXin Long 			cfg->fc_expires = jiffies_to_clock_t(timeout * HZ);
512732bc201eSXin Long 			cfg->fc_flags |= RTF_EXPIRES;
512832bc201eSXin Long 		}
512932bc201eSXin Long 	}
513032bc201eSXin Long 
513186872cb5SThomas Graf 	err = 0;
513286872cb5SThomas Graf errout:
513386872cb5SThomas Graf 	return err;
51341da177e4SLinus Torvalds }
51351da177e4SLinus Torvalds 
51366b9ea5a6SRoopa Prabhu struct rt6_nh {
51378d1c802bSDavid Ahern 	struct fib6_info *fib6_info;
51386b9ea5a6SRoopa Prabhu 	struct fib6_config r_cfg;
51396b9ea5a6SRoopa Prabhu 	struct list_head next;
51406b9ea5a6SRoopa Prabhu };
51416b9ea5a6SRoopa Prabhu 
5142d4ead6b3SDavid Ahern static int ip6_route_info_append(struct net *net,
5143d4ead6b3SDavid Ahern 				 struct list_head *rt6_nh_list,
51448d1c802bSDavid Ahern 				 struct fib6_info *rt,
51458d1c802bSDavid Ahern 				 struct fib6_config *r_cfg)
51466b9ea5a6SRoopa Prabhu {
51476b9ea5a6SRoopa Prabhu 	struct rt6_nh *nh;
51486b9ea5a6SRoopa Prabhu 	int err = -EEXIST;
51496b9ea5a6SRoopa Prabhu 
51506b9ea5a6SRoopa Prabhu 	list_for_each_entry(nh, rt6_nh_list, next) {
51518d1c802bSDavid Ahern 		/* check if fib6_info already exists */
51528d1c802bSDavid Ahern 		if (rt6_duplicate_nexthop(nh->fib6_info, rt))
51536b9ea5a6SRoopa Prabhu 			return err;
51546b9ea5a6SRoopa Prabhu 	}
51556b9ea5a6SRoopa Prabhu 
51566b9ea5a6SRoopa Prabhu 	nh = kzalloc(sizeof(*nh), GFP_KERNEL);
51576b9ea5a6SRoopa Prabhu 	if (!nh)
51586b9ea5a6SRoopa Prabhu 		return -ENOMEM;
51598d1c802bSDavid Ahern 	nh->fib6_info = rt;
51606b9ea5a6SRoopa Prabhu 	memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg));
51616b9ea5a6SRoopa Prabhu 	list_add_tail(&nh->next, rt6_nh_list);
51626b9ea5a6SRoopa Prabhu 
51636b9ea5a6SRoopa Prabhu 	return 0;
51646b9ea5a6SRoopa Prabhu }
51656b9ea5a6SRoopa Prabhu 
51668d1c802bSDavid Ahern static void ip6_route_mpath_notify(struct fib6_info *rt,
51678d1c802bSDavid Ahern 				   struct fib6_info *rt_last,
51683b1137feSDavid Ahern 				   struct nl_info *info,
51693b1137feSDavid Ahern 				   __u16 nlflags)
51703b1137feSDavid Ahern {
51713b1137feSDavid Ahern 	/* if this is an APPEND route, then rt points to the first route
51723b1137feSDavid Ahern 	 * inserted and rt_last points to last route inserted. Userspace
51733b1137feSDavid Ahern 	 * wants a consistent dump of the route which starts at the first
51743b1137feSDavid Ahern 	 * nexthop. Since sibling routes are always added at the end of
51753b1137feSDavid Ahern 	 * the list, find the first sibling of the last route appended
51763b1137feSDavid Ahern 	 */
517793c2fb25SDavid Ahern 	if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->fib6_nsiblings) {
517893c2fb25SDavid Ahern 		rt = list_first_entry(&rt_last->fib6_siblings,
51798d1c802bSDavid Ahern 				      struct fib6_info,
518093c2fb25SDavid Ahern 				      fib6_siblings);
51813b1137feSDavid Ahern 	}
51823b1137feSDavid Ahern 
51833b1137feSDavid Ahern 	if (rt)
51843b1137feSDavid Ahern 		inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags);
51853b1137feSDavid Ahern }
51863b1137feSDavid Ahern 
51870ee0f47cSIdo Schimmel static bool ip6_route_mpath_should_notify(const struct fib6_info *rt)
51880ee0f47cSIdo Schimmel {
51890ee0f47cSIdo Schimmel 	bool rt_can_ecmp = rt6_qualify_for_ecmp(rt);
51900ee0f47cSIdo Schimmel 	bool should_notify = false;
51910ee0f47cSIdo Schimmel 	struct fib6_info *leaf;
51920ee0f47cSIdo Schimmel 	struct fib6_node *fn;
51930ee0f47cSIdo Schimmel 
51940ee0f47cSIdo Schimmel 	rcu_read_lock();
51950ee0f47cSIdo Schimmel 	fn = rcu_dereference(rt->fib6_node);
51960ee0f47cSIdo Schimmel 	if (!fn)
51970ee0f47cSIdo Schimmel 		goto out;
51980ee0f47cSIdo Schimmel 
51990ee0f47cSIdo Schimmel 	leaf = rcu_dereference(fn->leaf);
52000ee0f47cSIdo Schimmel 	if (!leaf)
52010ee0f47cSIdo Schimmel 		goto out;
52020ee0f47cSIdo Schimmel 
52030ee0f47cSIdo Schimmel 	if (rt == leaf ||
52040ee0f47cSIdo Schimmel 	    (rt_can_ecmp && rt->fib6_metric == leaf->fib6_metric &&
52050ee0f47cSIdo Schimmel 	     rt6_qualify_for_ecmp(leaf)))
52060ee0f47cSIdo Schimmel 		should_notify = true;
52070ee0f47cSIdo Schimmel out:
52080ee0f47cSIdo Schimmel 	rcu_read_unlock();
52090ee0f47cSIdo Schimmel 
52100ee0f47cSIdo Schimmel 	return should_notify;
52110ee0f47cSIdo Schimmel }
52120ee0f47cSIdo Schimmel 
52134619bcf9SDavid Ahern static int fib6_gw_from_attr(struct in6_addr *gw, struct nlattr *nla,
52144619bcf9SDavid Ahern 			     struct netlink_ext_ack *extack)
52154619bcf9SDavid Ahern {
52164619bcf9SDavid Ahern 	if (nla_len(nla) < sizeof(*gw)) {
52174619bcf9SDavid Ahern 		NL_SET_ERR_MSG(extack, "Invalid IPv6 address in RTA_GATEWAY");
52184619bcf9SDavid Ahern 		return -EINVAL;
52194619bcf9SDavid Ahern 	}
52204619bcf9SDavid Ahern 
52214619bcf9SDavid Ahern 	*gw = nla_get_in6_addr(nla);
52224619bcf9SDavid Ahern 
52234619bcf9SDavid Ahern 	return 0;
52244619bcf9SDavid Ahern }
52254619bcf9SDavid Ahern 
5226333c4301SDavid Ahern static int ip6_route_multipath_add(struct fib6_config *cfg,
5227333c4301SDavid Ahern 				   struct netlink_ext_ack *extack)
522851ebd318SNicolas Dichtel {
52298d1c802bSDavid Ahern 	struct fib6_info *rt_notif = NULL, *rt_last = NULL;
52303b1137feSDavid Ahern 	struct nl_info *info = &cfg->fc_nlinfo;
523151ebd318SNicolas Dichtel 	struct fib6_config r_cfg;
523251ebd318SNicolas Dichtel 	struct rtnexthop *rtnh;
52338d1c802bSDavid Ahern 	struct fib6_info *rt;
52346b9ea5a6SRoopa Prabhu 	struct rt6_nh *err_nh;
52356b9ea5a6SRoopa Prabhu 	struct rt6_nh *nh, *nh_safe;
52363b1137feSDavid Ahern 	__u16 nlflags;
523751ebd318SNicolas Dichtel 	int remaining;
523851ebd318SNicolas Dichtel 	int attrlen;
52396b9ea5a6SRoopa Prabhu 	int err = 1;
52406b9ea5a6SRoopa Prabhu 	int nhn = 0;
52416b9ea5a6SRoopa Prabhu 	int replace = (cfg->fc_nlinfo.nlh &&
52426b9ea5a6SRoopa Prabhu 		       (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE));
52436b9ea5a6SRoopa Prabhu 	LIST_HEAD(rt6_nh_list);
524451ebd318SNicolas Dichtel 
52453b1137feSDavid Ahern 	nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE;
52463b1137feSDavid Ahern 	if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND)
52473b1137feSDavid Ahern 		nlflags |= NLM_F_APPEND;
52483b1137feSDavid Ahern 
524935f1b4e9SMichal Kubeček 	remaining = cfg->fc_mp_len;
525051ebd318SNicolas Dichtel 	rtnh = (struct rtnexthop *)cfg->fc_mp;
525151ebd318SNicolas Dichtel 
52526b9ea5a6SRoopa Prabhu 	/* Parse a Multipath Entry and build a list (rt6_nh_list) of
52538d1c802bSDavid Ahern 	 * fib6_info structs per nexthop
52546b9ea5a6SRoopa Prabhu 	 */
525551ebd318SNicolas Dichtel 	while (rtnh_ok(rtnh, remaining)) {
525651ebd318SNicolas Dichtel 		memcpy(&r_cfg, cfg, sizeof(*cfg));
525751ebd318SNicolas Dichtel 		if (rtnh->rtnh_ifindex)
525851ebd318SNicolas Dichtel 			r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
525951ebd318SNicolas Dichtel 
526051ebd318SNicolas Dichtel 		attrlen = rtnh_attrlen(rtnh);
526151ebd318SNicolas Dichtel 		if (attrlen > 0) {
526251ebd318SNicolas Dichtel 			struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
526351ebd318SNicolas Dichtel 
526451ebd318SNicolas Dichtel 			nla = nla_find(attrs, attrlen, RTA_GATEWAY);
526551ebd318SNicolas Dichtel 			if (nla) {
526695bdba23SDavid Ahern 				err = fib6_gw_from_attr(&r_cfg.fc_gateway, nla,
52674619bcf9SDavid Ahern 							extack);
526895bdba23SDavid Ahern 				if (err)
526995bdba23SDavid Ahern 					goto cleanup;
52704619bcf9SDavid Ahern 
527151ebd318SNicolas Dichtel 				r_cfg.fc_flags |= RTF_GATEWAY;
527251ebd318SNicolas Dichtel 			}
527319e42e45SRoopa Prabhu 			r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP);
52748bda81a4SDavid Ahern 
52758bda81a4SDavid Ahern 			/* RTA_ENCAP_TYPE length checked in
52768bda81a4SDavid Ahern 			 * lwtunnel_valid_encap_type_attr
52778bda81a4SDavid Ahern 			 */
527819e42e45SRoopa Prabhu 			nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE);
527919e42e45SRoopa Prabhu 			if (nla)
528019e42e45SRoopa Prabhu 				r_cfg.fc_encap_type = nla_get_u16(nla);
528151ebd318SNicolas Dichtel 		}
52826b9ea5a6SRoopa Prabhu 
528368e2ffdeSDavid Ahern 		r_cfg.fc_flags |= (rtnh->rtnh_flags & RTNH_F_ONLINK);
5284acb54e3cSDavid Ahern 		rt = ip6_route_info_create(&r_cfg, GFP_KERNEL, extack);
52858c5b83f0SRoopa Prabhu 		if (IS_ERR(rt)) {
52868c5b83f0SRoopa Prabhu 			err = PTR_ERR(rt);
52878c5b83f0SRoopa Prabhu 			rt = NULL;
52886b9ea5a6SRoopa Prabhu 			goto cleanup;
52898c5b83f0SRoopa Prabhu 		}
5290b5d2d75eSDavid Ahern 		if (!rt6_qualify_for_ecmp(rt)) {
5291b5d2d75eSDavid Ahern 			err = -EINVAL;
5292b5d2d75eSDavid Ahern 			NL_SET_ERR_MSG(extack,
5293b5d2d75eSDavid Ahern 				       "Device only routes can not be added for IPv6 using the multipath API.");
5294b5d2d75eSDavid Ahern 			fib6_info_release(rt);
5295b5d2d75eSDavid Ahern 			goto cleanup;
5296b5d2d75eSDavid Ahern 		}
52976b9ea5a6SRoopa Prabhu 
52981cf844c7SDavid Ahern 		rt->fib6_nh->fib_nh_weight = rtnh->rtnh_hops + 1;
5299398958aeSIdo Schimmel 
5300d4ead6b3SDavid Ahern 		err = ip6_route_info_append(info->nl_net, &rt6_nh_list,
5301d4ead6b3SDavid Ahern 					    rt, &r_cfg);
530251ebd318SNicolas Dichtel 		if (err) {
530393531c67SDavid Ahern 			fib6_info_release(rt);
53046b9ea5a6SRoopa Prabhu 			goto cleanup;
530551ebd318SNicolas Dichtel 		}
53066b9ea5a6SRoopa Prabhu 
53076b9ea5a6SRoopa Prabhu 		rtnh = rtnh_next(rtnh, &remaining);
530851ebd318SNicolas Dichtel 	}
53096b9ea5a6SRoopa Prabhu 
53109eee3b49SIdo Schimmel 	if (list_empty(&rt6_nh_list)) {
53119eee3b49SIdo Schimmel 		NL_SET_ERR_MSG(extack,
53129eee3b49SIdo Schimmel 			       "Invalid nexthop configuration - no valid nexthops");
53139eee3b49SIdo Schimmel 		return -EINVAL;
53149eee3b49SIdo Schimmel 	}
53159eee3b49SIdo Schimmel 
53163b1137feSDavid Ahern 	/* for add and replace send one notification with all nexthops.
53173b1137feSDavid Ahern 	 * Skip the notification in fib6_add_rt2node and send one with
53183b1137feSDavid Ahern 	 * the full route when done
53193b1137feSDavid Ahern 	 */
53203b1137feSDavid Ahern 	info->skip_notify = 1;
53213b1137feSDavid Ahern 
5322ebee3cadSIdo Schimmel 	/* For add and replace, send one notification with all nexthops. For
5323ebee3cadSIdo Schimmel 	 * append, send one notification with all appended nexthops.
5324ebee3cadSIdo Schimmel 	 */
5325ebee3cadSIdo Schimmel 	info->skip_notify_kernel = 1;
5326ebee3cadSIdo Schimmel 
53276b9ea5a6SRoopa Prabhu 	err_nh = NULL;
53286b9ea5a6SRoopa Prabhu 	list_for_each_entry(nh, &rt6_nh_list, next) {
53298d1c802bSDavid Ahern 		err = __ip6_ins_rt(nh->fib6_info, info, extack);
53308d1c802bSDavid Ahern 		fib6_info_release(nh->fib6_info);
53313b1137feSDavid Ahern 
5332f7225172SDavid Ahern 		if (!err) {
5333f7225172SDavid Ahern 			/* save reference to last route successfully inserted */
5334f7225172SDavid Ahern 			rt_last = nh->fib6_info;
5335f7225172SDavid Ahern 
53366b9ea5a6SRoopa Prabhu 			/* save reference to first route for notification */
5337f7225172SDavid Ahern 			if (!rt_notif)
53388d1c802bSDavid Ahern 				rt_notif = nh->fib6_info;
5339f7225172SDavid Ahern 		}
53406b9ea5a6SRoopa Prabhu 
53418d1c802bSDavid Ahern 		/* nh->fib6_info is used or freed at this point, reset to NULL*/
53428d1c802bSDavid Ahern 		nh->fib6_info = NULL;
53436b9ea5a6SRoopa Prabhu 		if (err) {
53446b9ea5a6SRoopa Prabhu 			if (replace && nhn)
5345a5a82d84SJakub Kicinski 				NL_SET_ERR_MSG_MOD(extack,
5346a5a82d84SJakub Kicinski 						   "multipath route replace failed (check consistency of installed routes)");
53476b9ea5a6SRoopa Prabhu 			err_nh = nh;
53486b9ea5a6SRoopa Prabhu 			goto add_errout;
53496b9ea5a6SRoopa Prabhu 		}
53506b9ea5a6SRoopa Prabhu 
53511a72418bSNicolas Dichtel 		/* Because each route is added like a single route we remove
535227596472SMichal Kubeček 		 * these flags after the first nexthop: if there is a collision,
535327596472SMichal Kubeček 		 * we have already failed to add the first nexthop:
535427596472SMichal Kubeček 		 * fib6_add_rt2node() has rejected it; when replacing, old
535527596472SMichal Kubeček 		 * nexthops have been replaced by first new, the rest should
535627596472SMichal Kubeček 		 * be added to it.
53571a72418bSNicolas Dichtel 		 */
5358864db232SMuhammad Usama Anjum 		if (cfg->fc_nlinfo.nlh) {
535927596472SMichal Kubeček 			cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL |
536027596472SMichal Kubeček 							     NLM_F_REPLACE);
5361afecdb37SBenjamin Poirier 			cfg->fc_nlinfo.nlh->nlmsg_flags |= NLM_F_CREATE;
5362864db232SMuhammad Usama Anjum 		}
53636b9ea5a6SRoopa Prabhu 		nhn++;
53646b9ea5a6SRoopa Prabhu 	}
53656b9ea5a6SRoopa Prabhu 
53660ee0f47cSIdo Schimmel 	/* An in-kernel notification should only be sent in case the new
53670ee0f47cSIdo Schimmel 	 * multipath route is added as the first route in the node, or if
53680ee0f47cSIdo Schimmel 	 * it was appended to it. We pass 'rt_notif' since it is the first
53690ee0f47cSIdo Schimmel 	 * sibling and might allow us to skip some checks in the replace case.
53700ee0f47cSIdo Schimmel 	 */
53710ee0f47cSIdo Schimmel 	if (ip6_route_mpath_should_notify(rt_notif)) {
53720ee0f47cSIdo Schimmel 		enum fib_event_type fib_event;
53730ee0f47cSIdo Schimmel 
53740ee0f47cSIdo Schimmel 		if (rt_notif->fib6_nsiblings != nhn - 1)
53750ee0f47cSIdo Schimmel 			fib_event = FIB_EVENT_ENTRY_APPEND;
53760ee0f47cSIdo Schimmel 		else
5377caafb250SIdo Schimmel 			fib_event = FIB_EVENT_ENTRY_REPLACE;
53780ee0f47cSIdo Schimmel 
53790ee0f47cSIdo Schimmel 		err = call_fib6_multipath_entry_notifiers(info->nl_net,
53800ee0f47cSIdo Schimmel 							  fib_event, rt_notif,
53810ee0f47cSIdo Schimmel 							  nhn - 1, extack);
53820ee0f47cSIdo Schimmel 		if (err) {
53830ee0f47cSIdo Schimmel 			/* Delete all the siblings that were just added */
53840ee0f47cSIdo Schimmel 			err_nh = NULL;
53850ee0f47cSIdo Schimmel 			goto add_errout;
53860ee0f47cSIdo Schimmel 		}
53870ee0f47cSIdo Schimmel 	}
5388ebee3cadSIdo Schimmel 
53893b1137feSDavid Ahern 	/* success ... tell user about new route */
53903b1137feSDavid Ahern 	ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
53916b9ea5a6SRoopa Prabhu 	goto cleanup;
53926b9ea5a6SRoopa Prabhu 
53936b9ea5a6SRoopa Prabhu add_errout:
53943b1137feSDavid Ahern 	/* send notification for routes that were added so that
53953b1137feSDavid Ahern 	 * the delete notifications sent by ip6_route_del are
53963b1137feSDavid Ahern 	 * coherent
53973b1137feSDavid Ahern 	 */
53983b1137feSDavid Ahern 	if (rt_notif)
53993b1137feSDavid Ahern 		ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags);
54003b1137feSDavid Ahern 
54016b9ea5a6SRoopa Prabhu 	/* Delete routes that were already added */
54026b9ea5a6SRoopa Prabhu 	list_for_each_entry(nh, &rt6_nh_list, next) {
54036b9ea5a6SRoopa Prabhu 		if (err_nh == nh)
54046b9ea5a6SRoopa Prabhu 			break;
5405333c4301SDavid Ahern 		ip6_route_del(&nh->r_cfg, extack);
54066b9ea5a6SRoopa Prabhu 	}
54076b9ea5a6SRoopa Prabhu 
54086b9ea5a6SRoopa Prabhu cleanup:
54096b9ea5a6SRoopa Prabhu 	list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) {
54108d1c802bSDavid Ahern 		if (nh->fib6_info)
54118d1c802bSDavid Ahern 			fib6_info_release(nh->fib6_info);
54126b9ea5a6SRoopa Prabhu 		list_del(&nh->next);
54136b9ea5a6SRoopa Prabhu 		kfree(nh);
54146b9ea5a6SRoopa Prabhu 	}
54156b9ea5a6SRoopa Prabhu 
54166b9ea5a6SRoopa Prabhu 	return err;
54176b9ea5a6SRoopa Prabhu }
54186b9ea5a6SRoopa Prabhu 
5419333c4301SDavid Ahern static int ip6_route_multipath_del(struct fib6_config *cfg,
5420333c4301SDavid Ahern 				   struct netlink_ext_ack *extack)
54216b9ea5a6SRoopa Prabhu {
54226b9ea5a6SRoopa Prabhu 	struct fib6_config r_cfg;
54236b9ea5a6SRoopa Prabhu 	struct rtnexthop *rtnh;
54242291267eSColin Ian King 	int last_err = 0;
54256b9ea5a6SRoopa Prabhu 	int remaining;
54266b9ea5a6SRoopa Prabhu 	int attrlen;
54272291267eSColin Ian King 	int err;
54286b9ea5a6SRoopa Prabhu 
54296b9ea5a6SRoopa Prabhu 	remaining = cfg->fc_mp_len;
54306b9ea5a6SRoopa Prabhu 	rtnh = (struct rtnexthop *)cfg->fc_mp;
54316b9ea5a6SRoopa Prabhu 
54326b9ea5a6SRoopa Prabhu 	/* Parse a Multipath Entry */
54336b9ea5a6SRoopa Prabhu 	while (rtnh_ok(rtnh, remaining)) {
54346b9ea5a6SRoopa Prabhu 		memcpy(&r_cfg, cfg, sizeof(*cfg));
54356b9ea5a6SRoopa Prabhu 		if (rtnh->rtnh_ifindex)
54366b9ea5a6SRoopa Prabhu 			r_cfg.fc_ifindex = rtnh->rtnh_ifindex;
54376b9ea5a6SRoopa Prabhu 
54386b9ea5a6SRoopa Prabhu 		attrlen = rtnh_attrlen(rtnh);
54396b9ea5a6SRoopa Prabhu 		if (attrlen > 0) {
54406b9ea5a6SRoopa Prabhu 			struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
54416b9ea5a6SRoopa Prabhu 
54426b9ea5a6SRoopa Prabhu 			nla = nla_find(attrs, attrlen, RTA_GATEWAY);
54436b9ea5a6SRoopa Prabhu 			if (nla) {
54441ff15a71SDavid Ahern 				err = fib6_gw_from_attr(&r_cfg.fc_gateway, nla,
54451ff15a71SDavid Ahern 							extack);
5446e30a845bSDavid Ahern 				if (err) {
5447e30a845bSDavid Ahern 					last_err = err;
5448e30a845bSDavid Ahern 					goto next_rtnh;
5449e30a845bSDavid Ahern 				}
54501ff15a71SDavid Ahern 
54516b9ea5a6SRoopa Prabhu 				r_cfg.fc_flags |= RTF_GATEWAY;
54526b9ea5a6SRoopa Prabhu 			}
54536b9ea5a6SRoopa Prabhu 		}
5454333c4301SDavid Ahern 		err = ip6_route_del(&r_cfg, extack);
54556b9ea5a6SRoopa Prabhu 		if (err)
54566b9ea5a6SRoopa Prabhu 			last_err = err;
54576b9ea5a6SRoopa Prabhu 
5458e30a845bSDavid Ahern next_rtnh:
545951ebd318SNicolas Dichtel 		rtnh = rtnh_next(rtnh, &remaining);
546051ebd318SNicolas Dichtel 	}
546151ebd318SNicolas Dichtel 
546251ebd318SNicolas Dichtel 	return last_err;
546351ebd318SNicolas Dichtel }
546451ebd318SNicolas Dichtel 
5465c21ef3e3SDavid Ahern static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
5466c21ef3e3SDavid Ahern 			      struct netlink_ext_ack *extack)
54671da177e4SLinus Torvalds {
546886872cb5SThomas Graf 	struct fib6_config cfg;
546986872cb5SThomas Graf 	int err;
54701da177e4SLinus Torvalds 
5471333c4301SDavid Ahern 	err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
547286872cb5SThomas Graf 	if (err < 0)
547386872cb5SThomas Graf 		return err;
547486872cb5SThomas Graf 
54755b98324eSDavid Ahern 	if (cfg.fc_nh_id &&
54765b98324eSDavid Ahern 	    !nexthop_find_by_id(sock_net(skb->sk), cfg.fc_nh_id)) {
54775b98324eSDavid Ahern 		NL_SET_ERR_MSG(extack, "Nexthop id does not exist");
54785b98324eSDavid Ahern 		return -EINVAL;
54795b98324eSDavid Ahern 	}
54805b98324eSDavid Ahern 
548151ebd318SNicolas Dichtel 	if (cfg.fc_mp)
5482333c4301SDavid Ahern 		return ip6_route_multipath_del(&cfg, extack);
54830ae81335SDavid Ahern 	else {
54840ae81335SDavid Ahern 		cfg.fc_delete_all_nh = 1;
5485333c4301SDavid Ahern 		return ip6_route_del(&cfg, extack);
54861da177e4SLinus Torvalds 	}
54870ae81335SDavid Ahern }
54881da177e4SLinus Torvalds 
5489c21ef3e3SDavid Ahern static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
5490c21ef3e3SDavid Ahern 			      struct netlink_ext_ack *extack)
54911da177e4SLinus Torvalds {
549286872cb5SThomas Graf 	struct fib6_config cfg;
549386872cb5SThomas Graf 	int err;
54941da177e4SLinus Torvalds 
5495333c4301SDavid Ahern 	err = rtm_to_fib6_config(skb, nlh, &cfg, extack);
549686872cb5SThomas Graf 	if (err < 0)
549786872cb5SThomas Graf 		return err;
549886872cb5SThomas Graf 
549967f69513SDavid Ahern 	if (cfg.fc_metric == 0)
550067f69513SDavid Ahern 		cfg.fc_metric = IP6_RT_PRIO_USER;
550167f69513SDavid Ahern 
550251ebd318SNicolas Dichtel 	if (cfg.fc_mp)
5503333c4301SDavid Ahern 		return ip6_route_multipath_add(&cfg, extack);
550451ebd318SNicolas Dichtel 	else
5505acb54e3cSDavid Ahern 		return ip6_route_add(&cfg, GFP_KERNEL, extack);
55061da177e4SLinus Torvalds }
55071da177e4SLinus Torvalds 
5508a1b7a1f0SDavid Ahern /* add the overhead of this fib6_nh to nexthop_len */
5509a1b7a1f0SDavid Ahern static int rt6_nh_nlmsg_size(struct fib6_nh *nh, void *arg)
5510339bf98fSThomas Graf {
5511a1b7a1f0SDavid Ahern 	int *nexthop_len = arg;
5512beb1afacSDavid Ahern 
5513a1b7a1f0SDavid Ahern 	*nexthop_len += nla_total_size(0)	 /* RTA_MULTIPATH */
5514a1b7a1f0SDavid Ahern 		     + NLA_ALIGN(sizeof(struct rtnexthop))
5515a1b7a1f0SDavid Ahern 		     + nla_total_size(16); /* RTA_GATEWAY */
5516f88d8ea6SDavid Ahern 
5517a1b7a1f0SDavid Ahern 	if (nh->fib_nh_lws) {
5518a1b7a1f0SDavid Ahern 		/* RTA_ENCAP_TYPE */
5519a1b7a1f0SDavid Ahern 		*nexthop_len += lwtunnel_get_encap_size(nh->fib_nh_lws);
5520a1b7a1f0SDavid Ahern 		/* RTA_ENCAP */
5521a1b7a1f0SDavid Ahern 		*nexthop_len += nla_total_size(2);
5522a1b7a1f0SDavid Ahern 	}
5523a1b7a1f0SDavid Ahern 
5524a1b7a1f0SDavid Ahern 	return 0;
5525a1b7a1f0SDavid Ahern }
5526a1b7a1f0SDavid Ahern 
5527a1b7a1f0SDavid Ahern static size_t rt6_nlmsg_size(struct fib6_info *f6i)
5528a1b7a1f0SDavid Ahern {
5529a1b7a1f0SDavid Ahern 	int nexthop_len;
5530a1b7a1f0SDavid Ahern 
5531a1b7a1f0SDavid Ahern 	if (f6i->nh) {
5532a1b7a1f0SDavid Ahern 		nexthop_len = nla_total_size(4); /* RTA_NH_ID */
5533a1b7a1f0SDavid Ahern 		nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_nlmsg_size,
5534a1b7a1f0SDavid Ahern 					 &nexthop_len);
5535a1b7a1f0SDavid Ahern 	} else {
5536a1b7a1f0SDavid Ahern 		struct fib6_nh *nh = f6i->fib6_nh;
5537a1b7a1f0SDavid Ahern 
5538a1b7a1f0SDavid Ahern 		nexthop_len = 0;
5539a1b7a1f0SDavid Ahern 		if (f6i->fib6_nsiblings) {
5540beb1afacSDavid Ahern 			nexthop_len = nla_total_size(0)	 /* RTA_MULTIPATH */
5541beb1afacSDavid Ahern 				    + NLA_ALIGN(sizeof(struct rtnexthop))
5542beb1afacSDavid Ahern 				    + nla_total_size(16) /* RTA_GATEWAY */
5543a1b7a1f0SDavid Ahern 				    + lwtunnel_get_encap_size(nh->fib_nh_lws);
5544beb1afacSDavid Ahern 
5545a1b7a1f0SDavid Ahern 			nexthop_len *= f6i->fib6_nsiblings;
5546a1b7a1f0SDavid Ahern 		}
5547a1b7a1f0SDavid Ahern 		nexthop_len += lwtunnel_get_encap_size(nh->fib_nh_lws);
5548beb1afacSDavid Ahern 	}
5549beb1afacSDavid Ahern 
5550339bf98fSThomas Graf 	return NLMSG_ALIGN(sizeof(struct rtmsg))
5551339bf98fSThomas Graf 	       + nla_total_size(16) /* RTA_SRC */
5552339bf98fSThomas Graf 	       + nla_total_size(16) /* RTA_DST */
5553339bf98fSThomas Graf 	       + nla_total_size(16) /* RTA_GATEWAY */
5554339bf98fSThomas Graf 	       + nla_total_size(16) /* RTA_PREFSRC */
5555339bf98fSThomas Graf 	       + nla_total_size(4) /* RTA_TABLE */
5556339bf98fSThomas Graf 	       + nla_total_size(4) /* RTA_IIF */
5557339bf98fSThomas Graf 	       + nla_total_size(4) /* RTA_OIF */
5558339bf98fSThomas Graf 	       + nla_total_size(4) /* RTA_PRIORITY */
55596a2b9ce0SNoriaki TAKAMIYA 	       + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
5560ea697639SDaniel Borkmann 	       + nla_total_size(sizeof(struct rta_cacheinfo))
5561c78ba6d6SLubomir Rintel 	       + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */
556219e42e45SRoopa Prabhu 	       + nla_total_size(1) /* RTA_PREF */
5563beb1afacSDavid Ahern 	       + nexthop_len;
5564beb1afacSDavid Ahern }
5565beb1afacSDavid Ahern 
5566f88d8ea6SDavid Ahern static int rt6_fill_node_nexthop(struct sk_buff *skb, struct nexthop *nh,
5567f88d8ea6SDavid Ahern 				 unsigned char *flags)
5568f88d8ea6SDavid Ahern {
5569f88d8ea6SDavid Ahern 	if (nexthop_is_multipath(nh)) {
5570f88d8ea6SDavid Ahern 		struct nlattr *mp;
5571f88d8ea6SDavid Ahern 
55724255ff05SDavid Ahern 		mp = nla_nest_start_noflag(skb, RTA_MULTIPATH);
5573f88d8ea6SDavid Ahern 		if (!mp)
5574f88d8ea6SDavid Ahern 			goto nla_put_failure;
5575f88d8ea6SDavid Ahern 
55767bdf4de1SDonald Sharp 		if (nexthop_mpath_fill_node(skb, nh, AF_INET6))
5577f88d8ea6SDavid Ahern 			goto nla_put_failure;
5578f88d8ea6SDavid Ahern 
5579f88d8ea6SDavid Ahern 		nla_nest_end(skb, mp);
5580f88d8ea6SDavid Ahern 	} else {
5581f88d8ea6SDavid Ahern 		struct fib6_nh *fib6_nh;
5582f88d8ea6SDavid Ahern 
5583f88d8ea6SDavid Ahern 		fib6_nh = nexthop_fib6_nh(nh);
55847bdf4de1SDonald Sharp 		if (fib_nexthop_info(skb, &fib6_nh->nh_common, AF_INET6,
5585f88d8ea6SDavid Ahern 				     flags, false) < 0)
5586f88d8ea6SDavid Ahern 			goto nla_put_failure;
5587f88d8ea6SDavid Ahern 	}
5588f88d8ea6SDavid Ahern 
5589f88d8ea6SDavid Ahern 	return 0;
5590f88d8ea6SDavid Ahern 
5591f88d8ea6SDavid Ahern nla_put_failure:
5592f88d8ea6SDavid Ahern 	return -EMSGSIZE;
5593f88d8ea6SDavid Ahern }
5594f88d8ea6SDavid Ahern 
5595d4ead6b3SDavid Ahern static int rt6_fill_node(struct net *net, struct sk_buff *skb,
55968d1c802bSDavid Ahern 			 struct fib6_info *rt, struct dst_entry *dst,
5597d4ead6b3SDavid Ahern 			 struct in6_addr *dest, struct in6_addr *src,
559815e47304SEric W. Biederman 			 int iif, int type, u32 portid, u32 seq,
5599f8cfe2ceSDavid Ahern 			 unsigned int flags)
56001da177e4SLinus Torvalds {
560122d0bd82SXin Long 	struct rt6_info *rt6 = (struct rt6_info *)dst;
560222d0bd82SXin Long 	struct rt6key *rt6_dst, *rt6_src;
560322d0bd82SXin Long 	u32 *pmetrics, table, rt6_flags;
5604f88d8ea6SDavid Ahern 	unsigned char nh_flags = 0;
56051da177e4SLinus Torvalds 	struct nlmsghdr *nlh;
560622d0bd82SXin Long 	struct rtmsg *rtm;
5607d4ead6b3SDavid Ahern 	long expires = 0;
56081da177e4SLinus Torvalds 
560915e47304SEric W. Biederman 	nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
561038308473SDavid S. Miller 	if (!nlh)
561126932566SPatrick McHardy 		return -EMSGSIZE;
56122d7202bfSThomas Graf 
561322d0bd82SXin Long 	if (rt6) {
561422d0bd82SXin Long 		rt6_dst = &rt6->rt6i_dst;
561522d0bd82SXin Long 		rt6_src = &rt6->rt6i_src;
561622d0bd82SXin Long 		rt6_flags = rt6->rt6i_flags;
561722d0bd82SXin Long 	} else {
561822d0bd82SXin Long 		rt6_dst = &rt->fib6_dst;
561922d0bd82SXin Long 		rt6_src = &rt->fib6_src;
562022d0bd82SXin Long 		rt6_flags = rt->fib6_flags;
562122d0bd82SXin Long 	}
562222d0bd82SXin Long 
56232d7202bfSThomas Graf 	rtm = nlmsg_data(nlh);
56241da177e4SLinus Torvalds 	rtm->rtm_family = AF_INET6;
562522d0bd82SXin Long 	rtm->rtm_dst_len = rt6_dst->plen;
562622d0bd82SXin Long 	rtm->rtm_src_len = rt6_src->plen;
56271da177e4SLinus Torvalds 	rtm->rtm_tos = 0;
562893c2fb25SDavid Ahern 	if (rt->fib6_table)
562993c2fb25SDavid Ahern 		table = rt->fib6_table->tb6_id;
5630c71099acSThomas Graf 	else
56319e762a4aSPatrick McHardy 		table = RT6_TABLE_UNSPEC;
563297f0082aSKalash Nainwal 	rtm->rtm_table = table < 256 ? table : RT_TABLE_COMPAT;
5633c78679e8SDavid S. Miller 	if (nla_put_u32(skb, RTA_TABLE, table))
5634c78679e8SDavid S. Miller 		goto nla_put_failure;
5635e8478e80SDavid Ahern 
5636e8478e80SDavid Ahern 	rtm->rtm_type = rt->fib6_type;
56371da177e4SLinus Torvalds 	rtm->rtm_flags = 0;
56381da177e4SLinus Torvalds 	rtm->rtm_scope = RT_SCOPE_UNIVERSE;
563993c2fb25SDavid Ahern 	rtm->rtm_protocol = rt->fib6_protocol;
56401da177e4SLinus Torvalds 
564122d0bd82SXin Long 	if (rt6_flags & RTF_CACHE)
56421da177e4SLinus Torvalds 		rtm->rtm_flags |= RTM_F_CLONED;
56431da177e4SLinus Torvalds 
5644d4ead6b3SDavid Ahern 	if (dest) {
5645d4ead6b3SDavid Ahern 		if (nla_put_in6_addr(skb, RTA_DST, dest))
5646c78679e8SDavid S. Miller 			goto nla_put_failure;
56471da177e4SLinus Torvalds 		rtm->rtm_dst_len = 128;
56481da177e4SLinus Torvalds 	} else if (rtm->rtm_dst_len)
564922d0bd82SXin Long 		if (nla_put_in6_addr(skb, RTA_DST, &rt6_dst->addr))
5650c78679e8SDavid S. Miller 			goto nla_put_failure;
56511da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES
56521da177e4SLinus Torvalds 	if (src) {
5653930345eaSJiri Benc 		if (nla_put_in6_addr(skb, RTA_SRC, src))
5654c78679e8SDavid S. Miller 			goto nla_put_failure;
56551da177e4SLinus Torvalds 		rtm->rtm_src_len = 128;
5656c78679e8SDavid S. Miller 	} else if (rtm->rtm_src_len &&
565722d0bd82SXin Long 		   nla_put_in6_addr(skb, RTA_SRC, &rt6_src->addr))
5658c78679e8SDavid S. Miller 		goto nla_put_failure;
56591da177e4SLinus Torvalds #endif
56607bc570c8SYOSHIFUJI Hideaki 	if (iif) {
56617bc570c8SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_MROUTE
566222d0bd82SXin Long 		if (ipv6_addr_is_multicast(&rt6_dst->addr)) {
5663fd61c6baSDavid Ahern 			int err = ip6mr_get_route(net, skb, rtm, portid);
56642cf75070SNikolay Aleksandrov 
56657bc570c8SYOSHIFUJI Hideaki 			if (err == 0)
56667bc570c8SYOSHIFUJI Hideaki 				return 0;
5667fd61c6baSDavid Ahern 			if (err < 0)
56687bc570c8SYOSHIFUJI Hideaki 				goto nla_put_failure;
56697bc570c8SYOSHIFUJI Hideaki 		} else
56707bc570c8SYOSHIFUJI Hideaki #endif
5671c78679e8SDavid S. Miller 			if (nla_put_u32(skb, RTA_IIF, iif))
5672c78679e8SDavid S. Miller 				goto nla_put_failure;
5673d4ead6b3SDavid Ahern 	} else if (dest) {
56741da177e4SLinus Torvalds 		struct in6_addr saddr_buf;
5675d4ead6b3SDavid Ahern 		if (ip6_route_get_saddr(net, rt, dest, 0, &saddr_buf) == 0 &&
5676930345eaSJiri Benc 		    nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
5677c78679e8SDavid S. Miller 			goto nla_put_failure;
5678c3968a85SDaniel Walter 	}
5679c3968a85SDaniel Walter 
568093c2fb25SDavid Ahern 	if (rt->fib6_prefsrc.plen) {
5681c3968a85SDaniel Walter 		struct in6_addr saddr_buf;
568293c2fb25SDavid Ahern 		saddr_buf = rt->fib6_prefsrc.addr;
5683930345eaSJiri Benc 		if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf))
5684c78679e8SDavid S. Miller 			goto nla_put_failure;
56851da177e4SLinus Torvalds 	}
56862d7202bfSThomas Graf 
5687d4ead6b3SDavid Ahern 	pmetrics = dst ? dst_metrics_ptr(dst) : rt->fib6_metrics->metrics;
5688d4ead6b3SDavid Ahern 	if (rtnetlink_put_metrics(skb, pmetrics) < 0)
56892d7202bfSThomas Graf 		goto nla_put_failure;
56902d7202bfSThomas Graf 
569193c2fb25SDavid Ahern 	if (nla_put_u32(skb, RTA_PRIORITY, rt->fib6_metric))
5692beb1afacSDavid Ahern 		goto nla_put_failure;
5693beb1afacSDavid Ahern 
5694beb1afacSDavid Ahern 	/* For multipath routes, walk the siblings list and add
5695beb1afacSDavid Ahern 	 * each as a nexthop within RTA_MULTIPATH.
5696beb1afacSDavid Ahern 	 */
569722d0bd82SXin Long 	if (rt6) {
569822d0bd82SXin Long 		if (rt6_flags & RTF_GATEWAY &&
569922d0bd82SXin Long 		    nla_put_in6_addr(skb, RTA_GATEWAY, &rt6->rt6i_gateway))
570022d0bd82SXin Long 			goto nla_put_failure;
570122d0bd82SXin Long 
570222d0bd82SXin Long 		if (dst->dev && nla_put_u32(skb, RTA_OIF, dst->dev->ifindex))
570322d0bd82SXin Long 			goto nla_put_failure;
57046b13d8f7SOliver Herms 
57056b13d8f7SOliver Herms 		if (dst->lwtstate &&
57066b13d8f7SOliver Herms 		    lwtunnel_fill_encap(skb, dst->lwtstate, RTA_ENCAP, RTA_ENCAP_TYPE) < 0)
57076b13d8f7SOliver Herms 			goto nla_put_failure;
570822d0bd82SXin Long 	} else if (rt->fib6_nsiblings) {
57098d1c802bSDavid Ahern 		struct fib6_info *sibling, *next_sibling;
5710beb1afacSDavid Ahern 		struct nlattr *mp;
5711beb1afacSDavid Ahern 
5712ae0be8deSMichal Kubecek 		mp = nla_nest_start_noflag(skb, RTA_MULTIPATH);
5713beb1afacSDavid Ahern 		if (!mp)
5714beb1afacSDavid Ahern 			goto nla_put_failure;
5715beb1afacSDavid Ahern 
57161cf844c7SDavid Ahern 		if (fib_add_nexthop(skb, &rt->fib6_nh->nh_common,
5717597aa16cSXiao Liang 				    rt->fib6_nh->fib_nh_weight, AF_INET6,
5718597aa16cSXiao Liang 				    0) < 0)
5719beb1afacSDavid Ahern 			goto nla_put_failure;
5720beb1afacSDavid Ahern 
5721beb1afacSDavid Ahern 		list_for_each_entry_safe(sibling, next_sibling,
572293c2fb25SDavid Ahern 					 &rt->fib6_siblings, fib6_siblings) {
57231cf844c7SDavid Ahern 			if (fib_add_nexthop(skb, &sibling->fib6_nh->nh_common,
57247bdf4de1SDonald Sharp 					    sibling->fib6_nh->fib_nh_weight,
5725597aa16cSXiao Liang 					    AF_INET6, 0) < 0)
572694f826b8SEric Dumazet 				goto nla_put_failure;
572794f826b8SEric Dumazet 		}
57282d7202bfSThomas Graf 
5729beb1afacSDavid Ahern 		nla_nest_end(skb, mp);
5730f88d8ea6SDavid Ahern 	} else if (rt->nh) {
5731f88d8ea6SDavid Ahern 		if (nla_put_u32(skb, RTA_NH_ID, rt->nh->id))
5732f88d8ea6SDavid Ahern 			goto nla_put_failure;
5733ecc5663cSDavid Ahern 
5734f88d8ea6SDavid Ahern 		if (nexthop_is_blackhole(rt->nh))
5735f88d8ea6SDavid Ahern 			rtm->rtm_type = RTN_BLACKHOLE;
5736f88d8ea6SDavid Ahern 
57374f80116dSRoopa Prabhu 		if (net->ipv4.sysctl_nexthop_compat_mode &&
57384f80116dSRoopa Prabhu 		    rt6_fill_node_nexthop(skb, rt->nh, &nh_flags) < 0)
5739f88d8ea6SDavid Ahern 			goto nla_put_failure;
5740f88d8ea6SDavid Ahern 
5741f88d8ea6SDavid Ahern 		rtm->rtm_flags |= nh_flags;
5742f88d8ea6SDavid Ahern 	} else {
57437bdf4de1SDonald Sharp 		if (fib_nexthop_info(skb, &rt->fib6_nh->nh_common, AF_INET6,
5744ecc5663cSDavid Ahern 				     &nh_flags, false) < 0)
5745c78679e8SDavid S. Miller 			goto nla_put_failure;
5746ecc5663cSDavid Ahern 
5747ecc5663cSDavid Ahern 		rtm->rtm_flags |= nh_flags;
5748beb1afacSDavid Ahern 	}
57498253947eSLi Wei 
575022d0bd82SXin Long 	if (rt6_flags & RTF_EXPIRES) {
575114895687SDavid Ahern 		expires = dst ? dst->expires : rt->expires;
575214895687SDavid Ahern 		expires -= jiffies;
575314895687SDavid Ahern 	}
575469cdf8f9SYOSHIFUJI Hideaki 
5755bb3c4ab9SIdo Schimmel 	if (!dst) {
5756bb3c4ab9SIdo Schimmel 		if (rt->offload)
5757bb3c4ab9SIdo Schimmel 			rtm->rtm_flags |= RTM_F_OFFLOAD;
5758bb3c4ab9SIdo Schimmel 		if (rt->trap)
5759bb3c4ab9SIdo Schimmel 			rtm->rtm_flags |= RTM_F_TRAP;
57600c5fcf9eSAmit Cohen 		if (rt->offload_failed)
57610c5fcf9eSAmit Cohen 			rtm->rtm_flags |= RTM_F_OFFLOAD_FAILED;
5762bb3c4ab9SIdo Schimmel 	}
5763bb3c4ab9SIdo Schimmel 
5764d4ead6b3SDavid Ahern 	if (rtnl_put_cacheinfo(skb, dst, 0, expires, dst ? dst->error : 0) < 0)
5765e3703b3dSThomas Graf 		goto nla_put_failure;
57661da177e4SLinus Torvalds 
576722d0bd82SXin Long 	if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt6_flags)))
5768c78ba6d6SLubomir Rintel 		goto nla_put_failure;
5769c78ba6d6SLubomir Rintel 
577019e42e45SRoopa Prabhu 
5771053c095aSJohannes Berg 	nlmsg_end(skb, nlh);
5772053c095aSJohannes Berg 	return 0;
57732d7202bfSThomas Graf 
57742d7202bfSThomas Graf nla_put_failure:
577526932566SPatrick McHardy 	nlmsg_cancel(skb, nlh);
577626932566SPatrick McHardy 	return -EMSGSIZE;
57771da177e4SLinus Torvalds }
57781da177e4SLinus Torvalds 
57792c170e07SDavid Ahern static int fib6_info_nh_uses_dev(struct fib6_nh *nh, void *arg)
57802c170e07SDavid Ahern {
57812c170e07SDavid Ahern 	const struct net_device *dev = arg;
57822c170e07SDavid Ahern 
57832c170e07SDavid Ahern 	if (nh->fib_nh_dev == dev)
57842c170e07SDavid Ahern 		return 1;
57852c170e07SDavid Ahern 
57862c170e07SDavid Ahern 	return 0;
57872c170e07SDavid Ahern }
57882c170e07SDavid Ahern 
578913e38901SDavid Ahern static bool fib6_info_uses_dev(const struct fib6_info *f6i,
579013e38901SDavid Ahern 			       const struct net_device *dev)
579113e38901SDavid Ahern {
57922c170e07SDavid Ahern 	if (f6i->nh) {
57932c170e07SDavid Ahern 		struct net_device *_dev = (struct net_device *)dev;
57942c170e07SDavid Ahern 
57952c170e07SDavid Ahern 		return !!nexthop_for_each_fib6_nh(f6i->nh,
57962c170e07SDavid Ahern 						  fib6_info_nh_uses_dev,
57972c170e07SDavid Ahern 						  _dev);
57982c170e07SDavid Ahern 	}
57992c170e07SDavid Ahern 
58001cf844c7SDavid Ahern 	if (f6i->fib6_nh->fib_nh_dev == dev)
580113e38901SDavid Ahern 		return true;
580213e38901SDavid Ahern 
580313e38901SDavid Ahern 	if (f6i->fib6_nsiblings) {
580413e38901SDavid Ahern 		struct fib6_info *sibling, *next_sibling;
580513e38901SDavid Ahern 
580613e38901SDavid Ahern 		list_for_each_entry_safe(sibling, next_sibling,
580713e38901SDavid Ahern 					 &f6i->fib6_siblings, fib6_siblings) {
58081cf844c7SDavid Ahern 			if (sibling->fib6_nh->fib_nh_dev == dev)
580913e38901SDavid Ahern 				return true;
581013e38901SDavid Ahern 		}
581113e38901SDavid Ahern 	}
581213e38901SDavid Ahern 
581313e38901SDavid Ahern 	return false;
581413e38901SDavid Ahern }
581513e38901SDavid Ahern 
58161e47b483SStefano Brivio struct fib6_nh_exception_dump_walker {
58171e47b483SStefano Brivio 	struct rt6_rtnl_dump_arg *dump;
58181e47b483SStefano Brivio 	struct fib6_info *rt;
58191e47b483SStefano Brivio 	unsigned int flags;
58201e47b483SStefano Brivio 	unsigned int skip;
58211e47b483SStefano Brivio 	unsigned int count;
58221e47b483SStefano Brivio };
58231e47b483SStefano Brivio 
58241e47b483SStefano Brivio static int rt6_nh_dump_exceptions(struct fib6_nh *nh, void *arg)
58251e47b483SStefano Brivio {
58261e47b483SStefano Brivio 	struct fib6_nh_exception_dump_walker *w = arg;
58271e47b483SStefano Brivio 	struct rt6_rtnl_dump_arg *dump = w->dump;
58281e47b483SStefano Brivio 	struct rt6_exception_bucket *bucket;
58291e47b483SStefano Brivio 	struct rt6_exception *rt6_ex;
58301e47b483SStefano Brivio 	int i, err;
58311e47b483SStefano Brivio 
58321e47b483SStefano Brivio 	bucket = fib6_nh_get_excptn_bucket(nh, NULL);
58331e47b483SStefano Brivio 	if (!bucket)
58341e47b483SStefano Brivio 		return 0;
58351e47b483SStefano Brivio 
58361e47b483SStefano Brivio 	for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) {
58371e47b483SStefano Brivio 		hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) {
58381e47b483SStefano Brivio 			if (w->skip) {
58391e47b483SStefano Brivio 				w->skip--;
58401e47b483SStefano Brivio 				continue;
58411e47b483SStefano Brivio 			}
58421e47b483SStefano Brivio 
58431e47b483SStefano Brivio 			/* Expiration of entries doesn't bump sernum, insertion
58441e47b483SStefano Brivio 			 * does. Removal is triggered by insertion, so we can
58451e47b483SStefano Brivio 			 * rely on the fact that if entries change between two
58461e47b483SStefano Brivio 			 * partial dumps, this node is scanned again completely,
58471e47b483SStefano Brivio 			 * see rt6_insert_exception() and fib6_dump_table().
58481e47b483SStefano Brivio 			 *
58491e47b483SStefano Brivio 			 * Count expired entries we go through as handled
58501e47b483SStefano Brivio 			 * entries that we'll skip next time, in case of partial
58511e47b483SStefano Brivio 			 * node dump. Otherwise, if entries expire meanwhile,
58521e47b483SStefano Brivio 			 * we'll skip the wrong amount.
58531e47b483SStefano Brivio 			 */
58541e47b483SStefano Brivio 			if (rt6_check_expired(rt6_ex->rt6i)) {
58551e47b483SStefano Brivio 				w->count++;
58561e47b483SStefano Brivio 				continue;
58571e47b483SStefano Brivio 			}
58581e47b483SStefano Brivio 
58591e47b483SStefano Brivio 			err = rt6_fill_node(dump->net, dump->skb, w->rt,
58601e47b483SStefano Brivio 					    &rt6_ex->rt6i->dst, NULL, NULL, 0,
58611e47b483SStefano Brivio 					    RTM_NEWROUTE,
58621e47b483SStefano Brivio 					    NETLINK_CB(dump->cb->skb).portid,
58631e47b483SStefano Brivio 					    dump->cb->nlh->nlmsg_seq, w->flags);
58641e47b483SStefano Brivio 			if (err)
58651e47b483SStefano Brivio 				return err;
58661e47b483SStefano Brivio 
58671e47b483SStefano Brivio 			w->count++;
58681e47b483SStefano Brivio 		}
58691e47b483SStefano Brivio 		bucket++;
58701e47b483SStefano Brivio 	}
58711e47b483SStefano Brivio 
58721e47b483SStefano Brivio 	return 0;
58731e47b483SStefano Brivio }
58741e47b483SStefano Brivio 
5875bf9a8a06SStefano Brivio /* Return -1 if done with node, number of handled routes on partial dump */
58761e47b483SStefano Brivio int rt6_dump_route(struct fib6_info *rt, void *p_arg, unsigned int skip)
58771da177e4SLinus Torvalds {
58781da177e4SLinus Torvalds 	struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
587913e38901SDavid Ahern 	struct fib_dump_filter *filter = &arg->filter;
588013e38901SDavid Ahern 	unsigned int flags = NLM_F_MULTI;
58811f17e2f2SDavid Ahern 	struct net *net = arg->net;
58821e47b483SStefano Brivio 	int count = 0;
58831f17e2f2SDavid Ahern 
5884421842edSDavid Ahern 	if (rt == net->ipv6.fib6_null_entry)
5885bf9a8a06SStefano Brivio 		return -1;
58861da177e4SLinus Torvalds 
588713e38901SDavid Ahern 	if ((filter->flags & RTM_F_PREFIX) &&
588893c2fb25SDavid Ahern 	    !(rt->fib6_flags & RTF_PREFIX_RT)) {
5889f8cfe2ceSDavid Ahern 		/* success since this is not a prefix route */
5890bf9a8a06SStefano Brivio 		return -1;
5891f8cfe2ceSDavid Ahern 	}
58921e47b483SStefano Brivio 	if (filter->filter_set &&
58931e47b483SStefano Brivio 	    ((filter->rt_type  && rt->fib6_type != filter->rt_type) ||
589413e38901SDavid Ahern 	     (filter->dev      && !fib6_info_uses_dev(rt, filter->dev)) ||
58951e47b483SStefano Brivio 	     (filter->protocol && rt->fib6_protocol != filter->protocol))) {
5896bf9a8a06SStefano Brivio 		return -1;
589713e38901SDavid Ahern 	}
58981e47b483SStefano Brivio 
58991e47b483SStefano Brivio 	if (filter->filter_set ||
59001e47b483SStefano Brivio 	    !filter->dump_routes || !filter->dump_exceptions) {
590113e38901SDavid Ahern 		flags |= NLM_F_DUMP_FILTERED;
5902f8cfe2ceSDavid Ahern 	}
59031da177e4SLinus Torvalds 
59041e47b483SStefano Brivio 	if (filter->dump_routes) {
59051e47b483SStefano Brivio 		if (skip) {
59061e47b483SStefano Brivio 			skip--;
59071e47b483SStefano Brivio 		} else {
59081e47b483SStefano Brivio 			if (rt6_fill_node(net, arg->skb, rt, NULL, NULL, NULL,
59091e47b483SStefano Brivio 					  0, RTM_NEWROUTE,
5910bf9a8a06SStefano Brivio 					  NETLINK_CB(arg->cb->skb).portid,
59111e47b483SStefano Brivio 					  arg->cb->nlh->nlmsg_seq, flags)) {
5912bf9a8a06SStefano Brivio 				return 0;
59131e47b483SStefano Brivio 			}
59141e47b483SStefano Brivio 			count++;
59151e47b483SStefano Brivio 		}
59161e47b483SStefano Brivio 	}
59171e47b483SStefano Brivio 
59181e47b483SStefano Brivio 	if (filter->dump_exceptions) {
59191e47b483SStefano Brivio 		struct fib6_nh_exception_dump_walker w = { .dump = arg,
59201e47b483SStefano Brivio 							   .rt = rt,
59211e47b483SStefano Brivio 							   .flags = flags,
59221e47b483SStefano Brivio 							   .skip = skip,
59231e47b483SStefano Brivio 							   .count = 0 };
59241e47b483SStefano Brivio 		int err;
59251e47b483SStefano Brivio 
59263b525691SEric Dumazet 		rcu_read_lock();
59271e47b483SStefano Brivio 		if (rt->nh) {
59281e47b483SStefano Brivio 			err = nexthop_for_each_fib6_nh(rt->nh,
59291e47b483SStefano Brivio 						       rt6_nh_dump_exceptions,
59301e47b483SStefano Brivio 						       &w);
59311e47b483SStefano Brivio 		} else {
59321e47b483SStefano Brivio 			err = rt6_nh_dump_exceptions(rt->fib6_nh, &w);
59331e47b483SStefano Brivio 		}
59343b525691SEric Dumazet 		rcu_read_unlock();
59351e47b483SStefano Brivio 
59361e47b483SStefano Brivio 		if (err)
59371e47b483SStefano Brivio 			return count += w.count;
59381e47b483SStefano Brivio 	}
5939bf9a8a06SStefano Brivio 
5940bf9a8a06SStefano Brivio 	return -1;
59411da177e4SLinus Torvalds }
59421da177e4SLinus Torvalds 
59430eff0a27SJakub Kicinski static int inet6_rtm_valid_getroute_req(struct sk_buff *skb,
59440eff0a27SJakub Kicinski 					const struct nlmsghdr *nlh,
59450eff0a27SJakub Kicinski 					struct nlattr **tb,
59460eff0a27SJakub Kicinski 					struct netlink_ext_ack *extack)
59470eff0a27SJakub Kicinski {
59480eff0a27SJakub Kicinski 	struct rtmsg *rtm;
59490eff0a27SJakub Kicinski 	int i, err;
59500eff0a27SJakub Kicinski 
59510eff0a27SJakub Kicinski 	if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*rtm))) {
59520eff0a27SJakub Kicinski 		NL_SET_ERR_MSG_MOD(extack,
59530eff0a27SJakub Kicinski 				   "Invalid header for get route request");
59540eff0a27SJakub Kicinski 		return -EINVAL;
59550eff0a27SJakub Kicinski 	}
59560eff0a27SJakub Kicinski 
59570eff0a27SJakub Kicinski 	if (!netlink_strict_get_check(skb))
59588cb08174SJohannes Berg 		return nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX,
59590eff0a27SJakub Kicinski 					      rtm_ipv6_policy, extack);
59600eff0a27SJakub Kicinski 
59610eff0a27SJakub Kicinski 	rtm = nlmsg_data(nlh);
59620eff0a27SJakub Kicinski 	if ((rtm->rtm_src_len && rtm->rtm_src_len != 128) ||
59630eff0a27SJakub Kicinski 	    (rtm->rtm_dst_len && rtm->rtm_dst_len != 128) ||
59640eff0a27SJakub Kicinski 	    rtm->rtm_table || rtm->rtm_protocol || rtm->rtm_scope ||
59650eff0a27SJakub Kicinski 	    rtm->rtm_type) {
59660eff0a27SJakub Kicinski 		NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for get route request");
59670eff0a27SJakub Kicinski 		return -EINVAL;
59680eff0a27SJakub Kicinski 	}
59690eff0a27SJakub Kicinski 	if (rtm->rtm_flags & ~RTM_F_FIB_MATCH) {
59700eff0a27SJakub Kicinski 		NL_SET_ERR_MSG_MOD(extack,
59710eff0a27SJakub Kicinski 				   "Invalid flags for get route request");
59720eff0a27SJakub Kicinski 		return -EINVAL;
59730eff0a27SJakub Kicinski 	}
59740eff0a27SJakub Kicinski 
59758cb08174SJohannes Berg 	err = nlmsg_parse_deprecated_strict(nlh, sizeof(*rtm), tb, RTA_MAX,
59760eff0a27SJakub Kicinski 					    rtm_ipv6_policy, extack);
59770eff0a27SJakub Kicinski 	if (err)
59780eff0a27SJakub Kicinski 		return err;
59790eff0a27SJakub Kicinski 
59800eff0a27SJakub Kicinski 	if ((tb[RTA_SRC] && !rtm->rtm_src_len) ||
59810eff0a27SJakub Kicinski 	    (tb[RTA_DST] && !rtm->rtm_dst_len)) {
59820eff0a27SJakub Kicinski 		NL_SET_ERR_MSG_MOD(extack, "rtm_src_len and rtm_dst_len must be 128 for IPv6");
59830eff0a27SJakub Kicinski 		return -EINVAL;
59840eff0a27SJakub Kicinski 	}
59850eff0a27SJakub Kicinski 
59860eff0a27SJakub Kicinski 	for (i = 0; i <= RTA_MAX; i++) {
59870eff0a27SJakub Kicinski 		if (!tb[i])
59880eff0a27SJakub Kicinski 			continue;
59890eff0a27SJakub Kicinski 
59900eff0a27SJakub Kicinski 		switch (i) {
59910eff0a27SJakub Kicinski 		case RTA_SRC:
59920eff0a27SJakub Kicinski 		case RTA_DST:
59930eff0a27SJakub Kicinski 		case RTA_IIF:
59940eff0a27SJakub Kicinski 		case RTA_OIF:
59950eff0a27SJakub Kicinski 		case RTA_MARK:
59960eff0a27SJakub Kicinski 		case RTA_UID:
59970eff0a27SJakub Kicinski 		case RTA_SPORT:
59980eff0a27SJakub Kicinski 		case RTA_DPORT:
59990eff0a27SJakub Kicinski 		case RTA_IP_PROTO:
60000eff0a27SJakub Kicinski 			break;
60010eff0a27SJakub Kicinski 		default:
60020eff0a27SJakub Kicinski 			NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in get route request");
60030eff0a27SJakub Kicinski 			return -EINVAL;
60040eff0a27SJakub Kicinski 		}
60050eff0a27SJakub Kicinski 	}
60060eff0a27SJakub Kicinski 
60070eff0a27SJakub Kicinski 	return 0;
60080eff0a27SJakub Kicinski }
60090eff0a27SJakub Kicinski 
6010c21ef3e3SDavid Ahern static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
6011c21ef3e3SDavid Ahern 			      struct netlink_ext_ack *extack)
60121da177e4SLinus Torvalds {
60133b1e0a65SYOSHIFUJI Hideaki 	struct net *net = sock_net(in_skb->sk);
6014ab364a6fSThomas Graf 	struct nlattr *tb[RTA_MAX+1];
601518c3a61cSRoopa Prabhu 	int err, iif = 0, oif = 0;
6016a68886a6SDavid Ahern 	struct fib6_info *from;
601718c3a61cSRoopa Prabhu 	struct dst_entry *dst;
60181da177e4SLinus Torvalds 	struct rt6_info *rt;
6019ab364a6fSThomas Graf 	struct sk_buff *skb;
6020ab364a6fSThomas Graf 	struct rtmsg *rtm;
6021744486d4SMaciej Żenczykowski 	struct flowi6 fl6 = {};
602218c3a61cSRoopa Prabhu 	bool fibmatch;
6023ab364a6fSThomas Graf 
60240eff0a27SJakub Kicinski 	err = inet6_rtm_valid_getroute_req(in_skb, nlh, tb, extack);
6025ab364a6fSThomas Graf 	if (err < 0)
6026ab364a6fSThomas Graf 		goto errout;
6027ab364a6fSThomas Graf 
6028ab364a6fSThomas Graf 	err = -EINVAL;
602938b7097bSHannes Frederic Sowa 	rtm = nlmsg_data(nlh);
603038b7097bSHannes Frederic Sowa 	fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0);
603118c3a61cSRoopa Prabhu 	fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH);
6032ab364a6fSThomas Graf 
6033ab364a6fSThomas Graf 	if (tb[RTA_SRC]) {
6034ab364a6fSThomas Graf 		if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr))
6035ab364a6fSThomas Graf 			goto errout;
6036ab364a6fSThomas Graf 
60374e3fd7a0SAlexey Dobriyan 		fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]);
6038ab364a6fSThomas Graf 	}
6039ab364a6fSThomas Graf 
6040ab364a6fSThomas Graf 	if (tb[RTA_DST]) {
6041ab364a6fSThomas Graf 		if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr))
6042ab364a6fSThomas Graf 			goto errout;
6043ab364a6fSThomas Graf 
60444e3fd7a0SAlexey Dobriyan 		fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]);
6045ab364a6fSThomas Graf 	}
6046ab364a6fSThomas Graf 
6047ab364a6fSThomas Graf 	if (tb[RTA_IIF])
6048ab364a6fSThomas Graf 		iif = nla_get_u32(tb[RTA_IIF]);
6049ab364a6fSThomas Graf 
6050ab364a6fSThomas Graf 	if (tb[RTA_OIF])
605172331bc0SShmulik Ladkani 		oif = nla_get_u32(tb[RTA_OIF]);
6052ab364a6fSThomas Graf 
60532e47b291SLorenzo Colitti 	if (tb[RTA_MARK])
60542e47b291SLorenzo Colitti 		fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
60552e47b291SLorenzo Colitti 
6056622ec2c9SLorenzo Colitti 	if (tb[RTA_UID])
6057622ec2c9SLorenzo Colitti 		fl6.flowi6_uid = make_kuid(current_user_ns(),
6058622ec2c9SLorenzo Colitti 					   nla_get_u32(tb[RTA_UID]));
6059622ec2c9SLorenzo Colitti 	else
6060622ec2c9SLorenzo Colitti 		fl6.flowi6_uid = iif ? INVALID_UID : current_uid();
6061622ec2c9SLorenzo Colitti 
6062eacb9384SRoopa Prabhu 	if (tb[RTA_SPORT])
6063eacb9384SRoopa Prabhu 		fl6.fl6_sport = nla_get_be16(tb[RTA_SPORT]);
6064eacb9384SRoopa Prabhu 
6065eacb9384SRoopa Prabhu 	if (tb[RTA_DPORT])
6066eacb9384SRoopa Prabhu 		fl6.fl6_dport = nla_get_be16(tb[RTA_DPORT]);
6067eacb9384SRoopa Prabhu 
6068eacb9384SRoopa Prabhu 	if (tb[RTA_IP_PROTO]) {
6069eacb9384SRoopa Prabhu 		err = rtm_getroute_parse_ip_proto(tb[RTA_IP_PROTO],
60705e1a99eaSHangbin Liu 						  &fl6.flowi6_proto, AF_INET6,
60715e1a99eaSHangbin Liu 						  extack);
6072eacb9384SRoopa Prabhu 		if (err)
6073eacb9384SRoopa Prabhu 			goto errout;
6074eacb9384SRoopa Prabhu 	}
6075eacb9384SRoopa Prabhu 
6076ab364a6fSThomas Graf 	if (iif) {
6077ab364a6fSThomas Graf 		struct net_device *dev;
607872331bc0SShmulik Ladkani 		int flags = 0;
607972331bc0SShmulik Ladkani 
6080121622dbSFlorian Westphal 		rcu_read_lock();
6081121622dbSFlorian Westphal 
6082121622dbSFlorian Westphal 		dev = dev_get_by_index_rcu(net, iif);
6083ab364a6fSThomas Graf 		if (!dev) {
6084121622dbSFlorian Westphal 			rcu_read_unlock();
6085ab364a6fSThomas Graf 			err = -ENODEV;
6086ab364a6fSThomas Graf 			goto errout;
6087ab364a6fSThomas Graf 		}
608872331bc0SShmulik Ladkani 
608972331bc0SShmulik Ladkani 		fl6.flowi6_iif = iif;
609072331bc0SShmulik Ladkani 
609172331bc0SShmulik Ladkani 		if (!ipv6_addr_any(&fl6.saddr))
609272331bc0SShmulik Ladkani 			flags |= RT6_LOOKUP_F_HAS_SADDR;
609372331bc0SShmulik Ladkani 
6094b75cc8f9SDavid Ahern 		dst = ip6_route_input_lookup(net, dev, &fl6, NULL, flags);
6095121622dbSFlorian Westphal 
6096121622dbSFlorian Westphal 		rcu_read_unlock();
609772331bc0SShmulik Ladkani 	} else {
609872331bc0SShmulik Ladkani 		fl6.flowi6_oif = oif;
609972331bc0SShmulik Ladkani 
610018c3a61cSRoopa Prabhu 		dst = ip6_route_output(net, NULL, &fl6);
610118c3a61cSRoopa Prabhu 	}
610218c3a61cSRoopa Prabhu 
610318c3a61cSRoopa Prabhu 
610418c3a61cSRoopa Prabhu 	rt = container_of(dst, struct rt6_info, dst);
610518c3a61cSRoopa Prabhu 	if (rt->dst.error) {
610618c3a61cSRoopa Prabhu 		err = rt->dst.error;
610718c3a61cSRoopa Prabhu 		ip6_rt_put(rt);
610818c3a61cSRoopa Prabhu 		goto errout;
6109ab364a6fSThomas Graf 	}
61101da177e4SLinus Torvalds 
61119d6acb3bSWANG Cong 	if (rt == net->ipv6.ip6_null_entry) {
61129d6acb3bSWANG Cong 		err = rt->dst.error;
61139d6acb3bSWANG Cong 		ip6_rt_put(rt);
61149d6acb3bSWANG Cong 		goto errout;
61159d6acb3bSWANG Cong 	}
61169d6acb3bSWANG Cong 
61171da177e4SLinus Torvalds 	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
611838308473SDavid S. Miller 	if (!skb) {
611994e187c0SAmerigo Wang 		ip6_rt_put(rt);
6120ab364a6fSThomas Graf 		err = -ENOBUFS;
6121ab364a6fSThomas Graf 		goto errout;
6122ab364a6fSThomas Graf 	}
61231da177e4SLinus Torvalds 
6124d8d1f30bSChangli Gao 	skb_dst_set(skb, &rt->dst);
6125a68886a6SDavid Ahern 
6126a68886a6SDavid Ahern 	rcu_read_lock();
6127a68886a6SDavid Ahern 	from = rcu_dereference(rt->from);
6128886b7a50SMartin KaFai Lau 	if (from) {
612918c3a61cSRoopa Prabhu 		if (fibmatch)
6130886b7a50SMartin KaFai Lau 			err = rt6_fill_node(net, skb, from, NULL, NULL, NULL,
6131886b7a50SMartin KaFai Lau 					    iif, RTM_NEWROUTE,
6132886b7a50SMartin KaFai Lau 					    NETLINK_CB(in_skb).portid,
613318c3a61cSRoopa Prabhu 					    nlh->nlmsg_seq, 0);
613418c3a61cSRoopa Prabhu 		else
6135a68886a6SDavid Ahern 			err = rt6_fill_node(net, skb, from, dst, &fl6.daddr,
6136a68886a6SDavid Ahern 					    &fl6.saddr, iif, RTM_NEWROUTE,
6137886b7a50SMartin KaFai Lau 					    NETLINK_CB(in_skb).portid,
6138886b7a50SMartin KaFai Lau 					    nlh->nlmsg_seq, 0);
6139886b7a50SMartin KaFai Lau 	} else {
6140886b7a50SMartin KaFai Lau 		err = -ENETUNREACH;
6141886b7a50SMartin KaFai Lau 	}
6142a68886a6SDavid Ahern 	rcu_read_unlock();
6143a68886a6SDavid Ahern 
61441da177e4SLinus Torvalds 	if (err < 0) {
6145ab364a6fSThomas Graf 		kfree_skb(skb);
6146ab364a6fSThomas Graf 		goto errout;
61471da177e4SLinus Torvalds 	}
61481da177e4SLinus Torvalds 
614915e47304SEric W. Biederman 	err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
6150ab364a6fSThomas Graf errout:
61511da177e4SLinus Torvalds 	return err;
61521da177e4SLinus Torvalds }
61531da177e4SLinus Torvalds 
61548d1c802bSDavid Ahern void inet6_rt_notify(int event, struct fib6_info *rt, struct nl_info *info,
615537a1d361SRoopa Prabhu 		     unsigned int nlm_flags)
61561da177e4SLinus Torvalds {
61571da177e4SLinus Torvalds 	struct sk_buff *skb;
61585578689aSDaniel Lezcano 	struct net *net = info->nl_net;
6159528c4cebSDenis V. Lunev 	u32 seq;
6160528c4cebSDenis V. Lunev 	int err;
61610d51aa80SJamal Hadi Salim 
6162528c4cebSDenis V. Lunev 	err = -ENOBUFS;
616338308473SDavid S. Miller 	seq = info->nlh ? info->nlh->nlmsg_seq : 0;
616486872cb5SThomas Graf 
616519e42e45SRoopa Prabhu 	skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
616638308473SDavid S. Miller 	if (!skb)
616721713ebcSThomas Graf 		goto errout;
61681da177e4SLinus Torvalds 
6169d4ead6b3SDavid Ahern 	err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0,
6170f8cfe2ceSDavid Ahern 			    event, info->portid, seq, nlm_flags);
617126932566SPatrick McHardy 	if (err < 0) {
617226932566SPatrick McHardy 		/* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
617326932566SPatrick McHardy 		WARN_ON(err == -EMSGSIZE);
617426932566SPatrick McHardy 		kfree_skb(skb);
617526932566SPatrick McHardy 		goto errout;
617626932566SPatrick McHardy 	}
617715e47304SEric W. Biederman 	rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
61785578689aSDaniel Lezcano 		    info->nlh, gfp_any());
61791ce85fe4SPablo Neira Ayuso 	return;
618021713ebcSThomas Graf errout:
618121713ebcSThomas Graf 	if (err < 0)
61825578689aSDaniel Lezcano 		rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
61831da177e4SLinus Torvalds }
61841da177e4SLinus Torvalds 
618519a3b7eeSDavid Ahern void fib6_rt_update(struct net *net, struct fib6_info *rt,
618619a3b7eeSDavid Ahern 		    struct nl_info *info)
618719a3b7eeSDavid Ahern {
618819a3b7eeSDavid Ahern 	u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
618919a3b7eeSDavid Ahern 	struct sk_buff *skb;
619019a3b7eeSDavid Ahern 	int err = -ENOBUFS;
619119a3b7eeSDavid Ahern 
619219a3b7eeSDavid Ahern 	skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any());
619319a3b7eeSDavid Ahern 	if (!skb)
619419a3b7eeSDavid Ahern 		goto errout;
619519a3b7eeSDavid Ahern 
619619a3b7eeSDavid Ahern 	err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0,
619719a3b7eeSDavid Ahern 			    RTM_NEWROUTE, info->portid, seq, NLM_F_REPLACE);
619819a3b7eeSDavid Ahern 	if (err < 0) {
619919a3b7eeSDavid Ahern 		/* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
620019a3b7eeSDavid Ahern 		WARN_ON(err == -EMSGSIZE);
620119a3b7eeSDavid Ahern 		kfree_skb(skb);
620219a3b7eeSDavid Ahern 		goto errout;
620319a3b7eeSDavid Ahern 	}
620419a3b7eeSDavid Ahern 	rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE,
620519a3b7eeSDavid Ahern 		    info->nlh, gfp_any());
620619a3b7eeSDavid Ahern 	return;
620719a3b7eeSDavid Ahern errout:
620819a3b7eeSDavid Ahern 	if (err < 0)
620919a3b7eeSDavid Ahern 		rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
621019a3b7eeSDavid Ahern }
621119a3b7eeSDavid Ahern 
6212907eea48SAmit Cohen void fib6_info_hw_flags_set(struct net *net, struct fib6_info *f6i,
62130c5fcf9eSAmit Cohen 			    bool offload, bool trap, bool offload_failed)
6214907eea48SAmit Cohen {
6215907eea48SAmit Cohen 	struct sk_buff *skb;
6216907eea48SAmit Cohen 	int err;
6217907eea48SAmit Cohen 
62180c5fcf9eSAmit Cohen 	if (f6i->offload == offload && f6i->trap == trap &&
62190c5fcf9eSAmit Cohen 	    f6i->offload_failed == offload_failed)
6220907eea48SAmit Cohen 		return;
6221907eea48SAmit Cohen 
6222907eea48SAmit Cohen 	f6i->offload = offload;
6223907eea48SAmit Cohen 	f6i->trap = trap;
62246fad361aSAmit Cohen 
62256fad361aSAmit Cohen 	/* 2 means send notifications only if offload_failed was changed. */
62266fad361aSAmit Cohen 	if (net->ipv6.sysctl.fib_notify_on_flag_change == 2 &&
62276fad361aSAmit Cohen 	    f6i->offload_failed == offload_failed)
62286fad361aSAmit Cohen 		return;
62296fad361aSAmit Cohen 
62300c5fcf9eSAmit Cohen 	f6i->offload_failed = offload_failed;
6231907eea48SAmit Cohen 
6232907eea48SAmit Cohen 	if (!rcu_access_pointer(f6i->fib6_node))
6233907eea48SAmit Cohen 		/* The route was removed from the tree, do not send
623489e8347fSBhaskar Chowdhury 		 * notification.
6235907eea48SAmit Cohen 		 */
6236907eea48SAmit Cohen 		return;
6237907eea48SAmit Cohen 
6238907eea48SAmit Cohen 	if (!net->ipv6.sysctl.fib_notify_on_flag_change)
6239907eea48SAmit Cohen 		return;
6240907eea48SAmit Cohen 
6241907eea48SAmit Cohen 	skb = nlmsg_new(rt6_nlmsg_size(f6i), GFP_KERNEL);
6242907eea48SAmit Cohen 	if (!skb) {
6243907eea48SAmit Cohen 		err = -ENOBUFS;
6244907eea48SAmit Cohen 		goto errout;
6245907eea48SAmit Cohen 	}
6246907eea48SAmit Cohen 
6247907eea48SAmit Cohen 	err = rt6_fill_node(net, skb, f6i, NULL, NULL, NULL, 0, RTM_NEWROUTE, 0,
6248907eea48SAmit Cohen 			    0, 0);
6249907eea48SAmit Cohen 	if (err < 0) {
6250907eea48SAmit Cohen 		/* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
6251907eea48SAmit Cohen 		WARN_ON(err == -EMSGSIZE);
6252907eea48SAmit Cohen 		kfree_skb(skb);
6253907eea48SAmit Cohen 		goto errout;
6254907eea48SAmit Cohen 	}
6255907eea48SAmit Cohen 
6256907eea48SAmit Cohen 	rtnl_notify(skb, net, 0, RTNLGRP_IPV6_ROUTE, NULL, GFP_KERNEL);
6257907eea48SAmit Cohen 	return;
6258907eea48SAmit Cohen 
6259907eea48SAmit Cohen errout:
6260907eea48SAmit Cohen 	rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err);
6261907eea48SAmit Cohen }
6262907eea48SAmit Cohen EXPORT_SYMBOL(fib6_info_hw_flags_set);
6263907eea48SAmit Cohen 
62648ed67789SDaniel Lezcano static int ip6_route_dev_notify(struct notifier_block *this,
6265351638e7SJiri Pirko 				unsigned long event, void *ptr)
62668ed67789SDaniel Lezcano {
6267351638e7SJiri Pirko 	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
6268c346dca1SYOSHIFUJI Hideaki 	struct net *net = dev_net(dev);
62698ed67789SDaniel Lezcano 
6270242d3a49SWANG Cong 	if (!(dev->flags & IFF_LOOPBACK))
6271242d3a49SWANG Cong 		return NOTIFY_OK;
6272242d3a49SWANG Cong 
6273242d3a49SWANG Cong 	if (event == NETDEV_REGISTER) {
62741cf844c7SDavid Ahern 		net->ipv6.fib6_null_entry->fib6_nh->fib_nh_dev = dev;
6275d8d1f30bSChangli Gao 		net->ipv6.ip6_null_entry->dst.dev = dev;
62768ed67789SDaniel Lezcano 		net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev);
62778ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES
6278d8d1f30bSChangli Gao 		net->ipv6.ip6_prohibit_entry->dst.dev = dev;
62798ed67789SDaniel Lezcano 		net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev);
6280d8d1f30bSChangli Gao 		net->ipv6.ip6_blk_hole_entry->dst.dev = dev;
62818ed67789SDaniel Lezcano 		net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev);
62828ed67789SDaniel Lezcano #endif
628376da0704SWANG Cong 	 } else if (event == NETDEV_UNREGISTER &&
628476da0704SWANG Cong 		    dev->reg_state != NETREG_UNREGISTERED) {
628576da0704SWANG Cong 		/* NETDEV_UNREGISTER could be fired for multiple times by
628676da0704SWANG Cong 		 * netdev_wait_allrefs(). Make sure we only call this once.
628776da0704SWANG Cong 		 */
628812d94a80SEric Dumazet 		in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev);
6289242d3a49SWANG Cong #ifdef CONFIG_IPV6_MULTIPLE_TABLES
629012d94a80SEric Dumazet 		in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev);
629112d94a80SEric Dumazet 		in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev);
6292242d3a49SWANG Cong #endif
62938ed67789SDaniel Lezcano 	}
62948ed67789SDaniel Lezcano 
62958ed67789SDaniel Lezcano 	return NOTIFY_OK;
62968ed67789SDaniel Lezcano }
62978ed67789SDaniel Lezcano 
62981da177e4SLinus Torvalds /*
62991da177e4SLinus Torvalds  *	/proc
63001da177e4SLinus Torvalds  */
63011da177e4SLinus Torvalds 
63021da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS
63031da177e4SLinus Torvalds static int rt6_stats_seq_show(struct seq_file *seq, void *v)
63041da177e4SLinus Torvalds {
630569ddb805SDaniel Lezcano 	struct net *net = (struct net *)seq->private;
63061da177e4SLinus Torvalds 	seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n",
630769ddb805SDaniel Lezcano 		   net->ipv6.rt6_stats->fib_nodes,
630869ddb805SDaniel Lezcano 		   net->ipv6.rt6_stats->fib_route_nodes,
630981eb8447SWei Wang 		   atomic_read(&net->ipv6.rt6_stats->fib_rt_alloc),
631069ddb805SDaniel Lezcano 		   net->ipv6.rt6_stats->fib_rt_entries,
631169ddb805SDaniel Lezcano 		   net->ipv6.rt6_stats->fib_rt_cache,
6312fc66f95cSEric Dumazet 		   dst_entries_get_slow(&net->ipv6.ip6_dst_ops),
631369ddb805SDaniel Lezcano 		   net->ipv6.rt6_stats->fib_discarded_routes);
63141da177e4SLinus Torvalds 
63151da177e4SLinus Torvalds 	return 0;
63161da177e4SLinus Torvalds }
63171da177e4SLinus Torvalds #endif	/* CONFIG_PROC_FS */
63181da177e4SLinus Torvalds 
63191da177e4SLinus Torvalds #ifdef CONFIG_SYSCTL
63201da177e4SLinus Torvalds 
632132927393SChristoph Hellwig static int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write,
632232927393SChristoph Hellwig 			      void *buffer, size_t *lenp, loff_t *ppos)
63231da177e4SLinus Torvalds {
6324c486da34SLucian Adrian Grijincu 	struct net *net;
6325c486da34SLucian Adrian Grijincu 	int delay;
6326f0fb9b28SAditya Pakki 	int ret;
6327c486da34SLucian Adrian Grijincu 	if (!write)
6328c486da34SLucian Adrian Grijincu 		return -EINVAL;
6329c486da34SLucian Adrian Grijincu 
6330c486da34SLucian Adrian Grijincu 	net = (struct net *)ctl->extra1;
6331c486da34SLucian Adrian Grijincu 	delay = net->ipv6.sysctl.flush_delay;
6332f0fb9b28SAditya Pakki 	ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
6333f0fb9b28SAditya Pakki 	if (ret)
6334f0fb9b28SAditya Pakki 		return ret;
6335f0fb9b28SAditya Pakki 
63362ac3ac8fSMichal Kubeček 	fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0);
63371da177e4SLinus Torvalds 	return 0;
63381da177e4SLinus Torvalds }
63391da177e4SLinus Torvalds 
6340ed792e28SDavid Ahern static struct ctl_table ipv6_route_table_template[] = {
63411da177e4SLinus Torvalds 	{
634206e6c88fSAlexander Kuznetsov 		.procname	=	"max_size",
634306e6c88fSAlexander Kuznetsov 		.data		=	&init_net.ipv6.sysctl.ip6_rt_max_size,
63441da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
634506e6c88fSAlexander Kuznetsov 		.mode		=	0644,
634606e6c88fSAlexander Kuznetsov 		.proc_handler	=	proc_dointvec,
63471da177e4SLinus Torvalds 	},
63481da177e4SLinus Torvalds 	{
63491da177e4SLinus Torvalds 		.procname	=	"gc_thresh",
63509a7ec3a9SDaniel Lezcano 		.data		=	&ip6_dst_ops_template.gc_thresh,
63511da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
63521da177e4SLinus Torvalds 		.mode		=	0644,
63536d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec,
63541da177e4SLinus Torvalds 	},
63551da177e4SLinus Torvalds 	{
635606e6c88fSAlexander Kuznetsov 		.procname	=	"flush",
635706e6c88fSAlexander Kuznetsov 		.data		=	&init_net.ipv6.sysctl.flush_delay,
63581da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
635906e6c88fSAlexander Kuznetsov 		.mode		=	0200,
636006e6c88fSAlexander Kuznetsov 		.proc_handler	=	ipv6_sysctl_rtcache_flush
63611da177e4SLinus Torvalds 	},
63621da177e4SLinus Torvalds 	{
63631da177e4SLinus Torvalds 		.procname	=	"gc_min_interval",
63644990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
63651da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
63661da177e4SLinus Torvalds 		.mode		=	0644,
63676d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec_jiffies,
63681da177e4SLinus Torvalds 	},
63691da177e4SLinus Torvalds 	{
63701da177e4SLinus Torvalds 		.procname	=	"gc_timeout",
63714990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_gc_timeout,
63721da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
63731da177e4SLinus Torvalds 		.mode		=	0644,
63746d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec_jiffies,
63751da177e4SLinus Torvalds 	},
63761da177e4SLinus Torvalds 	{
63771da177e4SLinus Torvalds 		.procname	=	"gc_interval",
63784990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_gc_interval,
63791da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
63801da177e4SLinus Torvalds 		.mode		=	0644,
63816d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec_jiffies,
63821da177e4SLinus Torvalds 	},
63831da177e4SLinus Torvalds 	{
63841da177e4SLinus Torvalds 		.procname	=	"gc_elasticity",
63854990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_gc_elasticity,
63861da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
63871da177e4SLinus Torvalds 		.mode		=	0644,
6388f3d3f616SMin Zhang 		.proc_handler	=	proc_dointvec,
63891da177e4SLinus Torvalds 	},
63901da177e4SLinus Torvalds 	{
63911da177e4SLinus Torvalds 		.procname	=	"mtu_expires",
63924990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_mtu_expires,
63931da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
63941da177e4SLinus Torvalds 		.mode		=	0644,
63956d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec_jiffies,
63961da177e4SLinus Torvalds 	},
63971da177e4SLinus Torvalds 	{
63981da177e4SLinus Torvalds 		.procname	=	"min_adv_mss",
63994990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_min_advmss,
64001da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
64011da177e4SLinus Torvalds 		.mode		=	0644,
6402f3d3f616SMin Zhang 		.proc_handler	=	proc_dointvec,
64031da177e4SLinus Torvalds 	},
64041da177e4SLinus Torvalds 	{
64051da177e4SLinus Torvalds 		.procname	=	"gc_min_interval_ms",
64064990509fSDaniel Lezcano 		.data		=	&init_net.ipv6.sysctl.ip6_rt_gc_min_interval,
64071da177e4SLinus Torvalds 		.maxlen		=	sizeof(int),
64081da177e4SLinus Torvalds 		.mode		=	0644,
64096d9f239aSAlexey Dobriyan 		.proc_handler	=	proc_dointvec_ms_jiffies,
64101da177e4SLinus Torvalds 	},
64117c6bb7d2SDavid Ahern 	{
64127c6bb7d2SDavid Ahern 		.procname	=	"skip_notify_on_dev_down",
64137c6bb7d2SDavid Ahern 		.data		=	&init_net.ipv6.sysctl.skip_notify_on_dev_down,
64147c6bb7d2SDavid Ahern 		.maxlen		=	sizeof(int),
64157c6bb7d2SDavid Ahern 		.mode		=	0644,
6416b8e8a863SEiichi Tsukata 		.proc_handler	=	proc_dointvec_minmax,
6417eec4844fSMatteo Croce 		.extra1		=	SYSCTL_ZERO,
6418eec4844fSMatteo Croce 		.extra2		=	SYSCTL_ONE,
64197c6bb7d2SDavid Ahern 	},
6420f8572d8fSEric W. Biederman 	{ }
64211da177e4SLinus Torvalds };
64221da177e4SLinus Torvalds 
64232c8c1e72SAlexey Dobriyan struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
6424760f2d01SDaniel Lezcano {
6425760f2d01SDaniel Lezcano 	struct ctl_table *table;
6426760f2d01SDaniel Lezcano 
6427760f2d01SDaniel Lezcano 	table = kmemdup(ipv6_route_table_template,
6428760f2d01SDaniel Lezcano 			sizeof(ipv6_route_table_template),
6429760f2d01SDaniel Lezcano 			GFP_KERNEL);
64305ee09105SYOSHIFUJI Hideaki 
64315ee09105SYOSHIFUJI Hideaki 	if (table) {
643206e6c88fSAlexander Kuznetsov 		table[0].data = &net->ipv6.sysctl.ip6_rt_max_size;
643386393e52SAlexey Dobriyan 		table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh;
643406e6c88fSAlexander Kuznetsov 		table[2].data = &net->ipv6.sysctl.flush_delay;
643506e6c88fSAlexander Kuznetsov 		table[2].extra1 = net;
64365ee09105SYOSHIFUJI Hideaki 		table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
64375ee09105SYOSHIFUJI Hideaki 		table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout;
64385ee09105SYOSHIFUJI Hideaki 		table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval;
64395ee09105SYOSHIFUJI Hideaki 		table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity;
64405ee09105SYOSHIFUJI Hideaki 		table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires;
64415ee09105SYOSHIFUJI Hideaki 		table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss;
64429c69fabeSAlexey Dobriyan 		table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval;
64437c6bb7d2SDavid Ahern 		table[10].data = &net->ipv6.sysctl.skip_notify_on_dev_down;
6444464dc801SEric W. Biederman 
6445464dc801SEric W. Biederman 		/* Don't export sysctls to unprivileged users */
6446464dc801SEric W. Biederman 		if (net->user_ns != &init_user_ns)
644706e6c88fSAlexander Kuznetsov 			table[1].procname = NULL;
64485ee09105SYOSHIFUJI Hideaki 	}
64495ee09105SYOSHIFUJI Hideaki 
6450760f2d01SDaniel Lezcano 	return table;
6451760f2d01SDaniel Lezcano }
64521da177e4SLinus Torvalds #endif
64531da177e4SLinus Torvalds 
64542c8c1e72SAlexey Dobriyan static int __net_init ip6_route_net_init(struct net *net)
6455cdb18761SDaniel Lezcano {
6456633d424bSPavel Emelyanov 	int ret = -ENOMEM;
64578ed67789SDaniel Lezcano 
645886393e52SAlexey Dobriyan 	memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template,
645986393e52SAlexey Dobriyan 	       sizeof(net->ipv6.ip6_dst_ops));
6460f2fc6a54SBenjamin Thery 
6461fc66f95cSEric Dumazet 	if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0)
6462fc66f95cSEric Dumazet 		goto out_ip6_dst_ops;
6463fc66f95cSEric Dumazet 
64641cf844c7SDavid Ahern 	net->ipv6.fib6_null_entry = fib6_info_alloc(GFP_KERNEL, true);
6465421842edSDavid Ahern 	if (!net->ipv6.fib6_null_entry)
6466421842edSDavid Ahern 		goto out_ip6_dst_entries;
64671cf844c7SDavid Ahern 	memcpy(net->ipv6.fib6_null_entry, &fib6_null_entry_template,
64681cf844c7SDavid Ahern 	       sizeof(*net->ipv6.fib6_null_entry));
6469421842edSDavid Ahern 
64708ed67789SDaniel Lezcano 	net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template,
64718ed67789SDaniel Lezcano 					   sizeof(*net->ipv6.ip6_null_entry),
64728ed67789SDaniel Lezcano 					   GFP_KERNEL);
64738ed67789SDaniel Lezcano 	if (!net->ipv6.ip6_null_entry)
6474421842edSDavid Ahern 		goto out_fib6_null_entry;
6475d8d1f30bSChangli Gao 	net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops;
647662fa8a84SDavid S. Miller 	dst_init_metrics(&net->ipv6.ip6_null_entry->dst,
647762fa8a84SDavid S. Miller 			 ip6_template_metrics, true);
647874109218SWei Wang 	INIT_LIST_HEAD(&net->ipv6.ip6_null_entry->rt6i_uncached);
64798ed67789SDaniel Lezcano 
64808ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES
6481feca7d8cSVincent Bernat 	net->ipv6.fib6_has_custom_rules = false;
64828ed67789SDaniel Lezcano 	net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template,
64838ed67789SDaniel Lezcano 					       sizeof(*net->ipv6.ip6_prohibit_entry),
64848ed67789SDaniel Lezcano 					       GFP_KERNEL);
648568fffc67SPeter Zijlstra 	if (!net->ipv6.ip6_prohibit_entry)
648668fffc67SPeter Zijlstra 		goto out_ip6_null_entry;
6487d8d1f30bSChangli Gao 	net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops;
648862fa8a84SDavid S. Miller 	dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst,
648962fa8a84SDavid S. Miller 			 ip6_template_metrics, true);
649074109218SWei Wang 	INIT_LIST_HEAD(&net->ipv6.ip6_prohibit_entry->rt6i_uncached);
64918ed67789SDaniel Lezcano 
64928ed67789SDaniel Lezcano 	net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template,
64938ed67789SDaniel Lezcano 					       sizeof(*net->ipv6.ip6_blk_hole_entry),
64948ed67789SDaniel Lezcano 					       GFP_KERNEL);
649568fffc67SPeter Zijlstra 	if (!net->ipv6.ip6_blk_hole_entry)
649668fffc67SPeter Zijlstra 		goto out_ip6_prohibit_entry;
6497d8d1f30bSChangli Gao 	net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops;
649862fa8a84SDavid S. Miller 	dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst,
649962fa8a84SDavid S. Miller 			 ip6_template_metrics, true);
650074109218SWei Wang 	INIT_LIST_HEAD(&net->ipv6.ip6_blk_hole_entry->rt6i_uncached);
6501b9b33e7cSPaolo Abeni #ifdef CONFIG_IPV6_SUBTREES
6502b9b33e7cSPaolo Abeni 	net->ipv6.fib6_routes_require_src = 0;
6503b9b33e7cSPaolo Abeni #endif
65048ed67789SDaniel Lezcano #endif
65058ed67789SDaniel Lezcano 
6506b339a47cSPeter Zijlstra 	net->ipv6.sysctl.flush_delay = 0;
6507b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_max_size = 4096;
6508b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
6509b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
6510b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
6511b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
6512b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
6513b339a47cSPeter Zijlstra 	net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
65147c6bb7d2SDavid Ahern 	net->ipv6.sysctl.skip_notify_on_dev_down = 0;
6515b339a47cSPeter Zijlstra 
65166891a346SBenjamin Thery 	net->ipv6.ip6_rt_gc_expire = 30*HZ;
65176891a346SBenjamin Thery 
65188ed67789SDaniel Lezcano 	ret = 0;
65198ed67789SDaniel Lezcano out:
65208ed67789SDaniel Lezcano 	return ret;
6521f2fc6a54SBenjamin Thery 
652268fffc67SPeter Zijlstra #ifdef CONFIG_IPV6_MULTIPLE_TABLES
652368fffc67SPeter Zijlstra out_ip6_prohibit_entry:
652468fffc67SPeter Zijlstra 	kfree(net->ipv6.ip6_prohibit_entry);
652568fffc67SPeter Zijlstra out_ip6_null_entry:
652668fffc67SPeter Zijlstra 	kfree(net->ipv6.ip6_null_entry);
652768fffc67SPeter Zijlstra #endif
6528421842edSDavid Ahern out_fib6_null_entry:
6529421842edSDavid Ahern 	kfree(net->ipv6.fib6_null_entry);
6530fc66f95cSEric Dumazet out_ip6_dst_entries:
6531fc66f95cSEric Dumazet 	dst_entries_destroy(&net->ipv6.ip6_dst_ops);
6532f2fc6a54SBenjamin Thery out_ip6_dst_ops:
6533f2fc6a54SBenjamin Thery 	goto out;
6534cdb18761SDaniel Lezcano }
6535cdb18761SDaniel Lezcano 
65362c8c1e72SAlexey Dobriyan static void __net_exit ip6_route_net_exit(struct net *net)
6537cdb18761SDaniel Lezcano {
6538421842edSDavid Ahern 	kfree(net->ipv6.fib6_null_entry);
65398ed67789SDaniel Lezcano 	kfree(net->ipv6.ip6_null_entry);
65408ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES
65418ed67789SDaniel Lezcano 	kfree(net->ipv6.ip6_prohibit_entry);
65428ed67789SDaniel Lezcano 	kfree(net->ipv6.ip6_blk_hole_entry);
65438ed67789SDaniel Lezcano #endif
654441bb78b4SXiaotian Feng 	dst_entries_destroy(&net->ipv6.ip6_dst_ops);
6545cdb18761SDaniel Lezcano }
6546cdb18761SDaniel Lezcano 
6547d189634eSThomas Graf static int __net_init ip6_route_net_init_late(struct net *net)
6548d189634eSThomas Graf {
6549d189634eSThomas Graf #ifdef CONFIG_PROC_FS
6550c3506372SChristoph Hellwig 	proc_create_net("ipv6_route", 0, net->proc_net, &ipv6_route_seq_ops,
6551c3506372SChristoph Hellwig 			sizeof(struct ipv6_route_iter));
65523617d949SChristoph Hellwig 	proc_create_net_single("rt6_stats", 0444, net->proc_net,
65533617d949SChristoph Hellwig 			rt6_stats_seq_show, NULL);
6554d189634eSThomas Graf #endif
6555d189634eSThomas Graf 	return 0;
6556d189634eSThomas Graf }
6557d189634eSThomas Graf 
6558d189634eSThomas Graf static void __net_exit ip6_route_net_exit_late(struct net *net)
6559d189634eSThomas Graf {
6560d189634eSThomas Graf #ifdef CONFIG_PROC_FS
6561ece31ffdSGao feng 	remove_proc_entry("ipv6_route", net->proc_net);
6562ece31ffdSGao feng 	remove_proc_entry("rt6_stats", net->proc_net);
6563d189634eSThomas Graf #endif
6564d189634eSThomas Graf }
6565d189634eSThomas Graf 
6566cdb18761SDaniel Lezcano static struct pernet_operations ip6_route_net_ops = {
6567cdb18761SDaniel Lezcano 	.init = ip6_route_net_init,
6568cdb18761SDaniel Lezcano 	.exit = ip6_route_net_exit,
6569cdb18761SDaniel Lezcano };
6570cdb18761SDaniel Lezcano 
6571c3426b47SDavid S. Miller static int __net_init ipv6_inetpeer_init(struct net *net)
6572c3426b47SDavid S. Miller {
6573c3426b47SDavid S. Miller 	struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL);
6574c3426b47SDavid S. Miller 
6575c3426b47SDavid S. Miller 	if (!bp)
6576c3426b47SDavid S. Miller 		return -ENOMEM;
6577c3426b47SDavid S. Miller 	inet_peer_base_init(bp);
6578c3426b47SDavid S. Miller 	net->ipv6.peers = bp;
6579c3426b47SDavid S. Miller 	return 0;
6580c3426b47SDavid S. Miller }
6581c3426b47SDavid S. Miller 
6582c3426b47SDavid S. Miller static void __net_exit ipv6_inetpeer_exit(struct net *net)
6583c3426b47SDavid S. Miller {
6584c3426b47SDavid S. Miller 	struct inet_peer_base *bp = net->ipv6.peers;
6585c3426b47SDavid S. Miller 
6586c3426b47SDavid S. Miller 	net->ipv6.peers = NULL;
658756a6b248SDavid S. Miller 	inetpeer_invalidate_tree(bp);
6588c3426b47SDavid S. Miller 	kfree(bp);
6589c3426b47SDavid S. Miller }
6590c3426b47SDavid S. Miller 
65912b823f72SDavid S. Miller static struct pernet_operations ipv6_inetpeer_ops = {
6592c3426b47SDavid S. Miller 	.init	=	ipv6_inetpeer_init,
6593c3426b47SDavid S. Miller 	.exit	=	ipv6_inetpeer_exit,
6594c3426b47SDavid S. Miller };
6595c3426b47SDavid S. Miller 
6596d189634eSThomas Graf static struct pernet_operations ip6_route_net_late_ops = {
6597d189634eSThomas Graf 	.init = ip6_route_net_init_late,
6598d189634eSThomas Graf 	.exit = ip6_route_net_exit_late,
6599d189634eSThomas Graf };
6600d189634eSThomas Graf 
66018ed67789SDaniel Lezcano static struct notifier_block ip6_route_dev_notifier = {
66028ed67789SDaniel Lezcano 	.notifier_call = ip6_route_dev_notify,
6603242d3a49SWANG Cong 	.priority = ADDRCONF_NOTIFY_PRIORITY - 10,
66048ed67789SDaniel Lezcano };
66058ed67789SDaniel Lezcano 
66062f460933SWANG Cong void __init ip6_route_init_special_entries(void)
66072f460933SWANG Cong {
66082f460933SWANG Cong 	/* Registering of the loopback is done before this portion of code,
66092f460933SWANG Cong 	 * the loopback reference in rt6_info will not be taken, do it
66102f460933SWANG Cong 	 * manually for init_net */
66111cf844c7SDavid Ahern 	init_net.ipv6.fib6_null_entry->fib6_nh->fib_nh_dev = init_net.loopback_dev;
66122f460933SWANG Cong 	init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev;
66132f460933SWANG Cong 	init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
66142f460933SWANG Cong   #ifdef CONFIG_IPV6_MULTIPLE_TABLES
66152f460933SWANG Cong 	init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev;
66162f460933SWANG Cong 	init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
66172f460933SWANG Cong 	init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev;
66182f460933SWANG Cong 	init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev);
66192f460933SWANG Cong   #endif
66202f460933SWANG Cong }
66212f460933SWANG Cong 
6622138d0be3SYonghong Song #if IS_BUILTIN(CONFIG_IPV6)
6623138d0be3SYonghong Song #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS)
6624138d0be3SYonghong Song DEFINE_BPF_ITER_FUNC(ipv6_route, struct bpf_iter_meta *meta, struct fib6_info *rt)
6625138d0be3SYonghong Song 
6626951cf368SYonghong Song BTF_ID_LIST(btf_fib6_info_id)
6627951cf368SYonghong Song BTF_ID(struct, fib6_info)
6628951cf368SYonghong Song 
662914fc6bd6SYonghong Song static const struct bpf_iter_seq_info ipv6_route_seq_info = {
6630138d0be3SYonghong Song 	.seq_ops		= &ipv6_route_seq_ops,
6631138d0be3SYonghong Song 	.init_seq_private	= bpf_iter_init_seq_net,
6632138d0be3SYonghong Song 	.fini_seq_private	= bpf_iter_fini_seq_net,
6633138d0be3SYonghong Song 	.seq_priv_size		= sizeof(struct ipv6_route_iter),
663414fc6bd6SYonghong Song };
663514fc6bd6SYonghong Song 
663614fc6bd6SYonghong Song static struct bpf_iter_reg ipv6_route_reg_info = {
663714fc6bd6SYonghong Song 	.target			= "ipv6_route",
66383c32cc1bSYonghong Song 	.ctx_arg_info_size	= 1,
66393c32cc1bSYonghong Song 	.ctx_arg_info		= {
66403c32cc1bSYonghong Song 		{ offsetof(struct bpf_iter__ipv6_route, rt),
66413c32cc1bSYonghong Song 		  PTR_TO_BTF_ID_OR_NULL },
66423c32cc1bSYonghong Song 	},
664314fc6bd6SYonghong Song 	.seq_info		= &ipv6_route_seq_info,
6644138d0be3SYonghong Song };
6645138d0be3SYonghong Song 
664615172a46SYonghong Song static int __init bpf_iter_register(void)
664715172a46SYonghong Song {
6648951cf368SYonghong Song 	ipv6_route_reg_info.ctx_arg_info[0].btf_id = *btf_fib6_info_id;
664915172a46SYonghong Song 	return bpf_iter_reg_target(&ipv6_route_reg_info);
6650138d0be3SYonghong Song }
6651138d0be3SYonghong Song 
6652138d0be3SYonghong Song static void bpf_iter_unregister(void)
6653138d0be3SYonghong Song {
6654ab2ee4fcSYonghong Song 	bpf_iter_unreg_target(&ipv6_route_reg_info);
6655138d0be3SYonghong Song }
6656138d0be3SYonghong Song #endif
6657138d0be3SYonghong Song #endif
6658138d0be3SYonghong Song 
6659433d49c3SDaniel Lezcano int __init ip6_route_init(void)
66601da177e4SLinus Torvalds {
6661433d49c3SDaniel Lezcano 	int ret;
66628d0b94afSMartin KaFai Lau 	int cpu;
6663433d49c3SDaniel Lezcano 
66649a7ec3a9SDaniel Lezcano 	ret = -ENOMEM;
66659a7ec3a9SDaniel Lezcano 	ip6_dst_ops_template.kmem_cachep =
66669a7ec3a9SDaniel Lezcano 		kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
66676126891cSVasily Averin 				  SLAB_HWCACHE_ALIGN | SLAB_ACCOUNT, NULL);
66689a7ec3a9SDaniel Lezcano 	if (!ip6_dst_ops_template.kmem_cachep)
6669c19a28e1SFernando Carrijo 		goto out;
667014e50e57SDavid S. Miller 
6671fc66f95cSEric Dumazet 	ret = dst_entries_init(&ip6_dst_blackhole_ops);
66728ed67789SDaniel Lezcano 	if (ret)
6673bdb3289fSDaniel Lezcano 		goto out_kmem_cache;
6674bdb3289fSDaniel Lezcano 
6675c3426b47SDavid S. Miller 	ret = register_pernet_subsys(&ipv6_inetpeer_ops);
6676c3426b47SDavid S. Miller 	if (ret)
6677e8803b6cSDavid S. Miller 		goto out_dst_entries;
66782a0c451aSThomas Graf 
66797e52b33bSDavid S. Miller 	ret = register_pernet_subsys(&ip6_route_net_ops);
66807e52b33bSDavid S. Miller 	if (ret)
66817e52b33bSDavid S. Miller 		goto out_register_inetpeer;
6682c3426b47SDavid S. Miller 
66835dc121e9SArnaud Ebalard 	ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep;
66845dc121e9SArnaud Ebalard 
6685e8803b6cSDavid S. Miller 	ret = fib6_init();
6686433d49c3SDaniel Lezcano 	if (ret)
66878ed67789SDaniel Lezcano 		goto out_register_subsys;
6688433d49c3SDaniel Lezcano 
6689433d49c3SDaniel Lezcano 	ret = xfrm6_init();
6690433d49c3SDaniel Lezcano 	if (ret)
6691e8803b6cSDavid S. Miller 		goto out_fib6_init;
6692c35b7e72SDaniel Lezcano 
6693433d49c3SDaniel Lezcano 	ret = fib6_rules_init();
6694433d49c3SDaniel Lezcano 	if (ret)
6695433d49c3SDaniel Lezcano 		goto xfrm6_init;
66967e5449c2SDaniel Lezcano 
6697d189634eSThomas Graf 	ret = register_pernet_subsys(&ip6_route_net_late_ops);
6698d189634eSThomas Graf 	if (ret)
6699d189634eSThomas Graf 		goto fib6_rules_init;
6700d189634eSThomas Graf 
670116feebcfSFlorian Westphal 	ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWROUTE,
670216feebcfSFlorian Westphal 				   inet6_rtm_newroute, NULL, 0);
670316feebcfSFlorian Westphal 	if (ret < 0)
670416feebcfSFlorian Westphal 		goto out_register_late_subsys;
670516feebcfSFlorian Westphal 
670616feebcfSFlorian Westphal 	ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELROUTE,
670716feebcfSFlorian Westphal 				   inet6_rtm_delroute, NULL, 0);
670816feebcfSFlorian Westphal 	if (ret < 0)
670916feebcfSFlorian Westphal 		goto out_register_late_subsys;
671016feebcfSFlorian Westphal 
671116feebcfSFlorian Westphal 	ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETROUTE,
671216feebcfSFlorian Westphal 				   inet6_rtm_getroute, NULL,
671316feebcfSFlorian Westphal 				   RTNL_FLAG_DOIT_UNLOCKED);
671416feebcfSFlorian Westphal 	if (ret < 0)
6715d189634eSThomas Graf 		goto out_register_late_subsys;
6716433d49c3SDaniel Lezcano 
67178ed67789SDaniel Lezcano 	ret = register_netdevice_notifier(&ip6_route_dev_notifier);
6718cdb18761SDaniel Lezcano 	if (ret)
6719d189634eSThomas Graf 		goto out_register_late_subsys;
67208ed67789SDaniel Lezcano 
6721138d0be3SYonghong Song #if IS_BUILTIN(CONFIG_IPV6)
6722138d0be3SYonghong Song #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS)
6723138d0be3SYonghong Song 	ret = bpf_iter_register();
6724138d0be3SYonghong Song 	if (ret)
6725138d0be3SYonghong Song 		goto out_register_late_subsys;
6726138d0be3SYonghong Song #endif
6727138d0be3SYonghong Song #endif
6728138d0be3SYonghong Song 
67298d0b94afSMartin KaFai Lau 	for_each_possible_cpu(cpu) {
67308d0b94afSMartin KaFai Lau 		struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu);
67318d0b94afSMartin KaFai Lau 
67328d0b94afSMartin KaFai Lau 		INIT_LIST_HEAD(&ul->head);
67338d0b94afSMartin KaFai Lau 		spin_lock_init(&ul->lock);
67348d0b94afSMartin KaFai Lau 	}
67358d0b94afSMartin KaFai Lau 
6736433d49c3SDaniel Lezcano out:
6737433d49c3SDaniel Lezcano 	return ret;
6738433d49c3SDaniel Lezcano 
6739d189634eSThomas Graf out_register_late_subsys:
674016feebcfSFlorian Westphal 	rtnl_unregister_all(PF_INET6);
6741d189634eSThomas Graf 	unregister_pernet_subsys(&ip6_route_net_late_ops);
6742433d49c3SDaniel Lezcano fib6_rules_init:
6743433d49c3SDaniel Lezcano 	fib6_rules_cleanup();
6744433d49c3SDaniel Lezcano xfrm6_init:
6745433d49c3SDaniel Lezcano 	xfrm6_fini();
67462a0c451aSThomas Graf out_fib6_init:
67472a0c451aSThomas Graf 	fib6_gc_cleanup();
67488ed67789SDaniel Lezcano out_register_subsys:
67498ed67789SDaniel Lezcano 	unregister_pernet_subsys(&ip6_route_net_ops);
67507e52b33bSDavid S. Miller out_register_inetpeer:
67517e52b33bSDavid S. Miller 	unregister_pernet_subsys(&ipv6_inetpeer_ops);
6752fc66f95cSEric Dumazet out_dst_entries:
6753fc66f95cSEric Dumazet 	dst_entries_destroy(&ip6_dst_blackhole_ops);
6754433d49c3SDaniel Lezcano out_kmem_cache:
6755f2fc6a54SBenjamin Thery 	kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
6756433d49c3SDaniel Lezcano 	goto out;
67571da177e4SLinus Torvalds }
67581da177e4SLinus Torvalds 
67591da177e4SLinus Torvalds void ip6_route_cleanup(void)
67601da177e4SLinus Torvalds {
6761138d0be3SYonghong Song #if IS_BUILTIN(CONFIG_IPV6)
6762138d0be3SYonghong Song #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS)
6763138d0be3SYonghong Song 	bpf_iter_unregister();
6764138d0be3SYonghong Song #endif
6765138d0be3SYonghong Song #endif
67668ed67789SDaniel Lezcano 	unregister_netdevice_notifier(&ip6_route_dev_notifier);
6767d189634eSThomas Graf 	unregister_pernet_subsys(&ip6_route_net_late_ops);
6768101367c2SThomas Graf 	fib6_rules_cleanup();
67691da177e4SLinus Torvalds 	xfrm6_fini();
67701da177e4SLinus Torvalds 	fib6_gc_cleanup();
6771c3426b47SDavid S. Miller 	unregister_pernet_subsys(&ipv6_inetpeer_ops);
67728ed67789SDaniel Lezcano 	unregister_pernet_subsys(&ip6_route_net_ops);
677341bb78b4SXiaotian Feng 	dst_entries_destroy(&ip6_dst_blackhole_ops);
6774f2fc6a54SBenjamin Thery 	kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep);
67751da177e4SLinus Torvalds }
6776