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 *, 93*43c28172SZhengchao Shao struct net_device *dev); 94af6d1034SJon Maxwell static void 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; 133ba55ef81SEric Dumazet struct list_head quarantine; 1348d0b94afSMartin KaFai Lau }; 1358d0b94afSMartin KaFai Lau 1368d0b94afSMartin KaFai Lau static DEFINE_PER_CPU_ALIGNED(struct uncached_list, rt6_uncached_list); 1378d0b94afSMartin KaFai Lau 138510c321bSXin Long void rt6_uncached_list_add(struct rt6_info *rt) 1398d0b94afSMartin KaFai Lau { 1408d0b94afSMartin KaFai Lau struct uncached_list *ul = raw_cpu_ptr(&rt6_uncached_list); 1418d0b94afSMartin KaFai Lau 142d288a162SWangyang Guo rt->dst.rt_uncached_list = ul; 1438d0b94afSMartin KaFai Lau 1448d0b94afSMartin KaFai Lau spin_lock_bh(&ul->lock); 145d288a162SWangyang Guo list_add_tail(&rt->dst.rt_uncached, &ul->head); 1468d0b94afSMartin KaFai Lau spin_unlock_bh(&ul->lock); 1478d0b94afSMartin KaFai Lau } 1488d0b94afSMartin KaFai Lau 149510c321bSXin Long void rt6_uncached_list_del(struct rt6_info *rt) 1508d0b94afSMartin KaFai Lau { 151d288a162SWangyang Guo if (!list_empty(&rt->dst.rt_uncached)) { 152d288a162SWangyang Guo struct uncached_list *ul = rt->dst.rt_uncached_list; 1538d0b94afSMartin KaFai Lau 1548d0b94afSMartin KaFai Lau spin_lock_bh(&ul->lock); 155d288a162SWangyang Guo list_del_init(&rt->dst.rt_uncached); 1568d0b94afSMartin KaFai Lau spin_unlock_bh(&ul->lock); 1578d0b94afSMartin KaFai Lau } 1588d0b94afSMartin KaFai Lau } 1598d0b94afSMartin KaFai Lau 160e5f80fcfSEric Dumazet static void rt6_uncached_list_flush_dev(struct net_device *dev) 1618d0b94afSMartin KaFai Lau { 1628d0b94afSMartin KaFai Lau int cpu; 1638d0b94afSMartin KaFai Lau 1648d0b94afSMartin KaFai Lau for_each_possible_cpu(cpu) { 1658d0b94afSMartin KaFai Lau struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu); 166ba55ef81SEric Dumazet struct rt6_info *rt, *safe; 167ba55ef81SEric Dumazet 168ba55ef81SEric Dumazet if (list_empty(&ul->head)) 169ba55ef81SEric Dumazet continue; 1708d0b94afSMartin KaFai Lau 1718d0b94afSMartin KaFai Lau spin_lock_bh(&ul->lock); 172d288a162SWangyang Guo list_for_each_entry_safe(rt, safe, &ul->head, dst.rt_uncached) { 1738d0b94afSMartin KaFai Lau struct inet6_dev *rt_idev = rt->rt6i_idev; 1748d0b94afSMartin KaFai Lau struct net_device *rt_dev = rt->dst.dev; 175ba55ef81SEric Dumazet bool handled = false; 1768d0b94afSMartin KaFai Lau 177e332bc67SEric W. Biederman if (rt_idev->dev == dev) { 178e5f80fcfSEric Dumazet rt->rt6i_idev = in6_dev_get(blackhole_netdev); 1798d0b94afSMartin KaFai Lau in6_dev_put(rt_idev); 180ba55ef81SEric Dumazet handled = true; 1818d0b94afSMartin KaFai Lau } 1828d0b94afSMartin KaFai Lau 183e332bc67SEric W. Biederman if (rt_dev == dev) { 1848d7017fdSMahesh Bandewar rt->dst.dev = blackhole_netdev; 185d62607c3SJakub Kicinski netdev_ref_replace(rt_dev, blackhole_netdev, 1869038c320SEric Dumazet &rt->dst.dev_tracker, 1879038c320SEric Dumazet GFP_ATOMIC); 188ba55ef81SEric Dumazet handled = true; 1898d0b94afSMartin KaFai Lau } 190ba55ef81SEric Dumazet if (handled) 191d288a162SWangyang Guo list_move(&rt->dst.rt_uncached, 192ba55ef81SEric Dumazet &ul->quarantine); 1938d0b94afSMartin KaFai Lau } 1948d0b94afSMartin KaFai Lau spin_unlock_bh(&ul->lock); 1958d0b94afSMartin KaFai Lau } 1968d0b94afSMartin KaFai Lau } 1978d0b94afSMartin KaFai Lau 198f8a1b43bSDavid Ahern static inline const void *choose_neigh_daddr(const struct in6_addr *p, 199f894cbf8SDavid S. Miller struct sk_buff *skb, 200f894cbf8SDavid S. Miller const void *daddr) 20139232973SDavid S. Miller { 202a7563f34SDavid S. Miller if (!ipv6_addr_any(p)) 20339232973SDavid S. Miller return (const void *) p; 204f894cbf8SDavid S. Miller else if (skb) 205f894cbf8SDavid S. Miller return &ipv6_hdr(skb)->daddr; 20639232973SDavid S. Miller return daddr; 20739232973SDavid S. Miller } 20839232973SDavid S. Miller 209f8a1b43bSDavid Ahern struct neighbour *ip6_neigh_lookup(const struct in6_addr *gw, 210f8a1b43bSDavid Ahern struct net_device *dev, 211f894cbf8SDavid S. Miller struct sk_buff *skb, 212f894cbf8SDavid S. Miller const void *daddr) 213d3aaeb38SDavid S. Miller { 21439232973SDavid S. Miller struct neighbour *n; 21539232973SDavid S. Miller 216f8a1b43bSDavid Ahern daddr = choose_neigh_daddr(gw, skb, daddr); 217f8a1b43bSDavid Ahern n = __ipv6_neigh_lookup(dev, daddr); 218f83c7790SDavid S. Miller if (n) 219f83c7790SDavid S. Miller return n; 2207adf3246SStefano Brivio 2217adf3246SStefano Brivio n = neigh_create(&nd_tbl, daddr, dev); 2227adf3246SStefano Brivio return IS_ERR(n) ? NULL : n; 223f8a1b43bSDavid Ahern } 224f8a1b43bSDavid Ahern 225f8a1b43bSDavid Ahern static struct neighbour *ip6_dst_neigh_lookup(const struct dst_entry *dst, 226f8a1b43bSDavid Ahern struct sk_buff *skb, 227f8a1b43bSDavid Ahern const void *daddr) 228f8a1b43bSDavid Ahern { 229f8a1b43bSDavid Ahern const struct rt6_info *rt = container_of(dst, struct rt6_info, dst); 230f8a1b43bSDavid Ahern 2312c6b55f4SNicolas Dichtel return ip6_neigh_lookup(rt6_nexthop(rt, &in6addr_any), 2322c6b55f4SNicolas Dichtel dst->dev, skb, daddr); 233f83c7790SDavid S. Miller } 234f83c7790SDavid S. Miller 23563fca65dSJulian Anastasov static void ip6_confirm_neigh(const struct dst_entry *dst, const void *daddr) 23663fca65dSJulian Anastasov { 23763fca65dSJulian Anastasov struct net_device *dev = dst->dev; 23863fca65dSJulian Anastasov struct rt6_info *rt = (struct rt6_info *)dst; 23963fca65dSJulian Anastasov 240cbfd6891SStefano Brivio daddr = choose_neigh_daddr(rt6_nexthop(rt, &in6addr_any), NULL, daddr); 24163fca65dSJulian Anastasov if (!daddr) 24263fca65dSJulian Anastasov return; 24363fca65dSJulian Anastasov if (dev->flags & (IFF_NOARP | IFF_LOOPBACK)) 24463fca65dSJulian Anastasov return; 24563fca65dSJulian Anastasov if (ipv6_addr_is_multicast((const struct in6_addr *)daddr)) 24663fca65dSJulian Anastasov return; 24763fca65dSJulian Anastasov __ipv6_confirm_neigh(dev, daddr); 24863fca65dSJulian Anastasov } 24963fca65dSJulian Anastasov 2509a7ec3a9SDaniel Lezcano static struct dst_ops ip6_dst_ops_template = { 2511da177e4SLinus Torvalds .family = AF_INET6, 2521da177e4SLinus Torvalds .gc = ip6_dst_gc, 2531da177e4SLinus Torvalds .gc_thresh = 1024, 2541da177e4SLinus Torvalds .check = ip6_dst_check, 2550dbaee3bSDavid S. Miller .default_advmss = ip6_default_advmss, 256ebb762f2SSteffen Klassert .mtu = ip6_mtu, 257d4ead6b3SDavid Ahern .cow_metrics = dst_cow_metrics_generic, 2581da177e4SLinus Torvalds .destroy = ip6_dst_destroy, 2591da177e4SLinus Torvalds .ifdown = ip6_dst_ifdown, 2601da177e4SLinus Torvalds .negative_advice = ip6_negative_advice, 2611da177e4SLinus Torvalds .link_failure = ip6_link_failure, 2621da177e4SLinus Torvalds .update_pmtu = ip6_rt_update_pmtu, 2636e157b6aSDavid S. Miller .redirect = rt6_do_redirect, 2649f8955ccSEric W. Biederman .local_out = __ip6_local_out, 265f8a1b43bSDavid Ahern .neigh_lookup = ip6_dst_neigh_lookup, 26663fca65dSJulian Anastasov .confirm_neigh = ip6_confirm_neigh, 2671da177e4SLinus Torvalds }; 2681da177e4SLinus Torvalds 26914e50e57SDavid S. Miller static struct dst_ops ip6_dst_blackhole_ops = { 27014e50e57SDavid S. Miller .family = AF_INET6, 271214f45c9SEric Dumazet .default_advmss = ip6_default_advmss, 272f8a1b43bSDavid Ahern .neigh_lookup = ip6_dst_neigh_lookup, 273c4c877b2SDaniel Borkmann .check = ip6_dst_check, 274c4c877b2SDaniel Borkmann .destroy = ip6_dst_destroy, 275c4c877b2SDaniel Borkmann .cow_metrics = dst_cow_metrics_generic, 276c4c877b2SDaniel Borkmann .update_pmtu = dst_blackhole_update_pmtu, 277c4c877b2SDaniel Borkmann .redirect = dst_blackhole_redirect, 278c4c877b2SDaniel Borkmann .mtu = dst_blackhole_mtu, 27914e50e57SDavid S. Miller }; 28014e50e57SDavid S. Miller 28162fa8a84SDavid S. Miller static const u32 ip6_template_metrics[RTAX_MAX] = { 28214edd87dSLi RongQing [RTAX_HOPLIMIT - 1] = 0, 28362fa8a84SDavid S. Miller }; 28462fa8a84SDavid S. Miller 2858d1c802bSDavid Ahern static const struct fib6_info fib6_null_entry_template = { 28693c2fb25SDavid Ahern .fib6_flags = (RTF_REJECT | RTF_NONEXTHOP), 28793c2fb25SDavid Ahern .fib6_protocol = RTPROT_KERNEL, 28893c2fb25SDavid Ahern .fib6_metric = ~(u32)0, 289f05713e0SEric Dumazet .fib6_ref = REFCOUNT_INIT(1), 290421842edSDavid Ahern .fib6_type = RTN_UNREACHABLE, 291421842edSDavid Ahern .fib6_metrics = (struct dst_metrics *)&dst_default_metrics, 292421842edSDavid Ahern }; 293421842edSDavid Ahern 294fb0af4c7SEric Dumazet static const struct rt6_info ip6_null_entry_template = { 2951da177e4SLinus Torvalds .dst = { 296bc9d3a9fSThomas Gleixner .__rcuref = RCUREF_INIT(1), 2971da177e4SLinus Torvalds .__use = 1, 2982c20cbd7SNicolas Dichtel .obsolete = DST_OBSOLETE_FORCE_CHK, 2991da177e4SLinus Torvalds .error = -ENETUNREACH, 3001da177e4SLinus Torvalds .input = ip6_pkt_discard, 3011da177e4SLinus Torvalds .output = ip6_pkt_discard_out, 3021da177e4SLinus Torvalds }, 3031da177e4SLinus Torvalds .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), 3041da177e4SLinus Torvalds }; 3051da177e4SLinus Torvalds 306101367c2SThomas Graf #ifdef CONFIG_IPV6_MULTIPLE_TABLES 307101367c2SThomas Graf 308fb0af4c7SEric Dumazet static const struct rt6_info ip6_prohibit_entry_template = { 309101367c2SThomas Graf .dst = { 310bc9d3a9fSThomas Gleixner .__rcuref = RCUREF_INIT(1), 311101367c2SThomas Graf .__use = 1, 3122c20cbd7SNicolas Dichtel .obsolete = DST_OBSOLETE_FORCE_CHK, 313101367c2SThomas Graf .error = -EACCES, 3149ce8ade0SThomas Graf .input = ip6_pkt_prohibit, 3159ce8ade0SThomas Graf .output = ip6_pkt_prohibit_out, 316101367c2SThomas Graf }, 317101367c2SThomas Graf .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), 318101367c2SThomas Graf }; 319101367c2SThomas Graf 320fb0af4c7SEric Dumazet static const struct rt6_info ip6_blk_hole_entry_template = { 321101367c2SThomas Graf .dst = { 322bc9d3a9fSThomas Gleixner .__rcuref = RCUREF_INIT(1), 323101367c2SThomas Graf .__use = 1, 3242c20cbd7SNicolas Dichtel .obsolete = DST_OBSOLETE_FORCE_CHK, 325101367c2SThomas Graf .error = -EINVAL, 326352e512cSHerbert Xu .input = dst_discard, 327ede2059dSEric W. Biederman .output = dst_discard_out, 328101367c2SThomas Graf }, 329101367c2SThomas Graf .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), 330101367c2SThomas Graf }; 331101367c2SThomas Graf 332101367c2SThomas Graf #endif 333101367c2SThomas Graf 334ebfa45f0SMartin KaFai Lau static void rt6_info_init(struct rt6_info *rt) 335ebfa45f0SMartin KaFai Lau { 3368f2a83b4SKees Cook memset_after(rt, 0, dst); 337ebfa45f0SMartin KaFai Lau } 338ebfa45f0SMartin KaFai Lau 3391da177e4SLinus Torvalds /* allocate dst with ip6_dst_ops */ 34093531c67SDavid Ahern struct rt6_info *ip6_dst_alloc(struct net *net, struct net_device *dev, 341ad706862SMartin KaFai Lau int flags) 3421da177e4SLinus Torvalds { 34397bab73fSDavid S. Miller struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev, 344b2a9c0edSWei Wang 1, DST_OBSOLETE_FORCE_CHK, flags); 345cf911662SDavid S. Miller 34681eb8447SWei Wang if (rt) { 347ebfa45f0SMartin KaFai Lau rt6_info_init(rt); 34881eb8447SWei Wang atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc); 34981eb8447SWei Wang } 3508104891bSSteffen Klassert 351cf911662SDavid S. Miller return rt; 3521da177e4SLinus Torvalds } 3539ab179d8SDavid Ahern EXPORT_SYMBOL(ip6_dst_alloc); 354d52d3997SMartin KaFai Lau 3551da177e4SLinus Torvalds static void ip6_dst_destroy(struct dst_entry *dst) 3561da177e4SLinus Torvalds { 3571da177e4SLinus Torvalds struct rt6_info *rt = (struct rt6_info *)dst; 358a68886a6SDavid Ahern struct fib6_info *from; 3598d0b94afSMartin KaFai Lau struct inet6_dev *idev; 3601da177e4SLinus Torvalds 3611620a336SDavid Ahern ip_dst_metrics_put(dst); 3628d0b94afSMartin KaFai Lau rt6_uncached_list_del(rt); 3638d0b94afSMartin KaFai Lau 3648d0b94afSMartin KaFai Lau idev = rt->rt6i_idev; 36538308473SDavid S. Miller if (idev) { 3661da177e4SLinus Torvalds rt->rt6i_idev = NULL; 3671da177e4SLinus Torvalds in6_dev_put(idev); 3681da177e4SLinus Torvalds } 3691716a961SGao feng 3700e233874SEric Dumazet from = xchg((__force struct fib6_info **)&rt->from, NULL); 37193531c67SDavid Ahern fib6_info_release(from); 372b3419363SDavid S. Miller } 373b3419363SDavid S. Miller 374*43c28172SZhengchao Shao static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev) 3751da177e4SLinus Torvalds { 3761da177e4SLinus Torvalds struct rt6_info *rt = (struct rt6_info *)dst; 3771da177e4SLinus Torvalds struct inet6_dev *idev = rt->rt6i_idev; 3781da177e4SLinus Torvalds 379e5f80fcfSEric Dumazet if (idev && idev->dev != blackhole_netdev) { 380e5f80fcfSEric Dumazet struct inet6_dev *blackhole_idev = in6_dev_get(blackhole_netdev); 381e5f80fcfSEric Dumazet 382e5f80fcfSEric Dumazet if (blackhole_idev) { 383e5f80fcfSEric Dumazet rt->rt6i_idev = blackhole_idev; 3841da177e4SLinus Torvalds in6_dev_put(idev); 3851da177e4SLinus Torvalds } 3861da177e4SLinus Torvalds } 38797cac082SDavid S. Miller } 3881da177e4SLinus Torvalds 3895973fb1eSMartin KaFai Lau static bool __rt6_check_expired(const struct rt6_info *rt) 3905973fb1eSMartin KaFai Lau { 3915973fb1eSMartin KaFai Lau if (rt->rt6i_flags & RTF_EXPIRES) 3925973fb1eSMartin KaFai Lau return time_after(jiffies, rt->dst.expires); 3935973fb1eSMartin KaFai Lau else 3945973fb1eSMartin KaFai Lau return false; 3955973fb1eSMartin KaFai Lau } 3965973fb1eSMartin KaFai Lau 397a50feda5SEric Dumazet static bool rt6_check_expired(const struct rt6_info *rt) 3981da177e4SLinus Torvalds { 399a68886a6SDavid Ahern struct fib6_info *from; 400a68886a6SDavid Ahern 401a68886a6SDavid Ahern from = rcu_dereference(rt->from); 402a68886a6SDavid Ahern 4031716a961SGao feng if (rt->rt6i_flags & RTF_EXPIRES) { 4041716a961SGao feng if (time_after(jiffies, rt->dst.expires)) 405a50feda5SEric Dumazet return true; 406a68886a6SDavid Ahern } else if (from) { 4071e2ea8adSXin Long return rt->dst.obsolete != DST_OBSOLETE_FORCE_CHK || 408a68886a6SDavid Ahern fib6_check_expired(from); 4091716a961SGao feng } 410a50feda5SEric Dumazet return false; 4111da177e4SLinus Torvalds } 4121da177e4SLinus Torvalds 413b1d40991SDavid Ahern void fib6_select_path(const struct net *net, struct fib6_result *res, 414b1d40991SDavid Ahern struct flowi6 *fl6, int oif, bool have_oif_match, 415b1d40991SDavid Ahern const struct sk_buff *skb, int strict) 41651ebd318SNicolas Dichtel { 4178d1c802bSDavid Ahern struct fib6_info *sibling, *next_sibling; 418b1d40991SDavid Ahern struct fib6_info *match = res->f6i; 419b1d40991SDavid Ahern 42034fe5a1cSDavid Ahern if (!match->nh && (!match->fib6_nsiblings || have_oif_match)) 421b1d40991SDavid Ahern goto out; 42251ebd318SNicolas Dichtel 42334fe5a1cSDavid Ahern if (match->nh && have_oif_match && res->nh) 42434fe5a1cSDavid Ahern return; 42534fe5a1cSDavid Ahern 426b673d6ccSJakub Sitnicki /* We might have already computed the hash for ICMPv6 errors. In such 427b673d6ccSJakub Sitnicki * case it will always be non-zero. Otherwise now is the time to do it. 428b673d6ccSJakub Sitnicki */ 429f88d8ea6SDavid Ahern if (!fl6->mp_hash && 430f88d8ea6SDavid Ahern (!match->nh || nexthop_is_multipath(match->nh))) 431b4bac172SDavid Ahern fl6->mp_hash = rt6_multipath_hash(net, fl6, skb, NULL); 432b673d6ccSJakub Sitnicki 433f88d8ea6SDavid Ahern if (unlikely(match->nh)) { 434f88d8ea6SDavid Ahern nexthop_path_fib6_result(res, fl6->mp_hash); 435f88d8ea6SDavid Ahern return; 436f88d8ea6SDavid Ahern } 437f88d8ea6SDavid Ahern 4381cf844c7SDavid Ahern if (fl6->mp_hash <= atomic_read(&match->fib6_nh->fib_nh_upper_bound)) 439b1d40991SDavid Ahern goto out; 440bbfcd776SIdo Schimmel 44193c2fb25SDavid Ahern list_for_each_entry_safe(sibling, next_sibling, &match->fib6_siblings, 44293c2fb25SDavid Ahern fib6_siblings) { 4431cf844c7SDavid Ahern const struct fib6_nh *nh = sibling->fib6_nh; 4445e670d84SDavid Ahern int nh_upper_bound; 4455e670d84SDavid Ahern 446702cea56SDavid Ahern nh_upper_bound = atomic_read(&nh->fib_nh_upper_bound); 4475e670d84SDavid Ahern if (fl6->mp_hash > nh_upper_bound) 4483d709f69SIdo Schimmel continue; 449702cea56SDavid Ahern if (rt6_score_route(nh, sibling->fib6_flags, oif, strict) < 0) 45052bd4c0cSNicolas Dichtel break; 45151ebd318SNicolas Dichtel match = sibling; 45251ebd318SNicolas Dichtel break; 45351ebd318SNicolas Dichtel } 4543d709f69SIdo Schimmel 455b1d40991SDavid Ahern out: 456b1d40991SDavid Ahern res->f6i = match; 4571cf844c7SDavid Ahern res->nh = match->fib6_nh; 45851ebd318SNicolas Dichtel } 45951ebd318SNicolas Dichtel 4601da177e4SLinus Torvalds /* 46166f5d6ceSWei Wang * Route lookup. rcu_read_lock() should be held. 4621da177e4SLinus Torvalds */ 4631da177e4SLinus Torvalds 4640c59d006SDavid Ahern static bool __rt6_device_match(struct net *net, const struct fib6_nh *nh, 4650c59d006SDavid Ahern const struct in6_addr *saddr, int oif, int flags) 4660c59d006SDavid Ahern { 4670c59d006SDavid Ahern const struct net_device *dev; 4680c59d006SDavid Ahern 4690c59d006SDavid Ahern if (nh->fib_nh_flags & RTNH_F_DEAD) 4700c59d006SDavid Ahern return false; 4710c59d006SDavid Ahern 4720c59d006SDavid Ahern dev = nh->fib_nh_dev; 4730c59d006SDavid Ahern if (oif) { 4740c59d006SDavid Ahern if (dev->ifindex == oif) 4750c59d006SDavid Ahern return true; 4760c59d006SDavid Ahern } else { 4770c59d006SDavid Ahern if (ipv6_chk_addr(net, saddr, dev, 4780c59d006SDavid Ahern flags & RT6_LOOKUP_F_IFACE)) 4790c59d006SDavid Ahern return true; 4800c59d006SDavid Ahern } 4810c59d006SDavid Ahern 4820c59d006SDavid Ahern return false; 4830c59d006SDavid Ahern } 4840c59d006SDavid Ahern 485962b6803SDavid Ahern struct fib6_nh_dm_arg { 486962b6803SDavid Ahern struct net *net; 487962b6803SDavid Ahern const struct in6_addr *saddr; 488962b6803SDavid Ahern int oif; 489962b6803SDavid Ahern int flags; 490962b6803SDavid Ahern struct fib6_nh *nh; 491962b6803SDavid Ahern }; 492962b6803SDavid Ahern 493962b6803SDavid Ahern static int __rt6_nh_dev_match(struct fib6_nh *nh, void *_arg) 494962b6803SDavid Ahern { 495962b6803SDavid Ahern struct fib6_nh_dm_arg *arg = _arg; 496962b6803SDavid Ahern 497962b6803SDavid Ahern arg->nh = nh; 498962b6803SDavid Ahern return __rt6_device_match(arg->net, nh, arg->saddr, arg->oif, 499962b6803SDavid Ahern arg->flags); 500962b6803SDavid Ahern } 501962b6803SDavid Ahern 502962b6803SDavid Ahern /* returns fib6_nh from nexthop or NULL */ 503962b6803SDavid Ahern static struct fib6_nh *rt6_nh_dev_match(struct net *net, struct nexthop *nh, 504962b6803SDavid Ahern struct fib6_result *res, 505962b6803SDavid Ahern const struct in6_addr *saddr, 506962b6803SDavid Ahern int oif, int flags) 507962b6803SDavid Ahern { 508962b6803SDavid Ahern struct fib6_nh_dm_arg arg = { 509962b6803SDavid Ahern .net = net, 510962b6803SDavid Ahern .saddr = saddr, 511962b6803SDavid Ahern .oif = oif, 512962b6803SDavid Ahern .flags = flags, 513962b6803SDavid Ahern }; 514962b6803SDavid Ahern 515962b6803SDavid Ahern if (nexthop_is_blackhole(nh)) 516962b6803SDavid Ahern return NULL; 517962b6803SDavid Ahern 518962b6803SDavid Ahern if (nexthop_for_each_fib6_nh(nh, __rt6_nh_dev_match, &arg)) 519962b6803SDavid Ahern return arg.nh; 520962b6803SDavid Ahern 521962b6803SDavid Ahern return NULL; 522962b6803SDavid Ahern } 523962b6803SDavid Ahern 52475ef7389SDavid Ahern static void rt6_device_match(struct net *net, struct fib6_result *res, 52575ef7389SDavid Ahern const struct in6_addr *saddr, int oif, int flags) 5261da177e4SLinus Torvalds { 52775ef7389SDavid Ahern struct fib6_info *f6i = res->f6i; 52875ef7389SDavid Ahern struct fib6_info *spf6i; 52975ef7389SDavid Ahern struct fib6_nh *nh; 5301da177e4SLinus Torvalds 53175ef7389SDavid Ahern if (!oif && ipv6_addr_any(saddr)) { 532f88d8ea6SDavid Ahern if (unlikely(f6i->nh)) { 533f88d8ea6SDavid Ahern nh = nexthop_fib6_nh(f6i->nh); 534f88d8ea6SDavid Ahern if (nexthop_is_blackhole(f6i->nh)) 535f88d8ea6SDavid Ahern goto out_blackhole; 536f88d8ea6SDavid Ahern } else { 5371cf844c7SDavid Ahern nh = f6i->fib6_nh; 538f88d8ea6SDavid Ahern } 5397d21fec9SDavid Ahern if (!(nh->fib_nh_flags & RTNH_F_DEAD)) 5407d21fec9SDavid Ahern goto out; 5411da177e4SLinus Torvalds } 5421da177e4SLinus Torvalds 54375ef7389SDavid Ahern for (spf6i = f6i; spf6i; spf6i = rcu_dereference(spf6i->fib6_next)) { 544962b6803SDavid Ahern bool matched = false; 545962b6803SDavid Ahern 546962b6803SDavid Ahern if (unlikely(spf6i->nh)) { 547962b6803SDavid Ahern nh = rt6_nh_dev_match(net, spf6i->nh, res, saddr, 548962b6803SDavid Ahern oif, flags); 549962b6803SDavid Ahern if (nh) 550962b6803SDavid Ahern matched = true; 551962b6803SDavid Ahern } else { 5521cf844c7SDavid Ahern nh = spf6i->fib6_nh; 553962b6803SDavid Ahern if (__rt6_device_match(net, nh, saddr, oif, flags)) 554962b6803SDavid Ahern matched = true; 555962b6803SDavid Ahern } 556962b6803SDavid Ahern if (matched) { 55775ef7389SDavid Ahern res->f6i = spf6i; 5587d21fec9SDavid Ahern goto out; 55975ef7389SDavid Ahern } 56075ef7389SDavid Ahern } 5611da177e4SLinus Torvalds 56275ef7389SDavid Ahern if (oif && flags & RT6_LOOKUP_F_IFACE) { 56375ef7389SDavid Ahern res->f6i = net->ipv6.fib6_null_entry; 5641cf844c7SDavid Ahern nh = res->f6i->fib6_nh; 5657d21fec9SDavid Ahern goto out; 56675ef7389SDavid Ahern } 56775ef7389SDavid Ahern 568f88d8ea6SDavid Ahern if (unlikely(f6i->nh)) { 569f88d8ea6SDavid Ahern nh = nexthop_fib6_nh(f6i->nh); 570f88d8ea6SDavid Ahern if (nexthop_is_blackhole(f6i->nh)) 571f88d8ea6SDavid Ahern goto out_blackhole; 572f88d8ea6SDavid Ahern } else { 5731cf844c7SDavid Ahern nh = f6i->fib6_nh; 574f88d8ea6SDavid Ahern } 575f88d8ea6SDavid Ahern 5767d21fec9SDavid Ahern if (nh->fib_nh_flags & RTNH_F_DEAD) { 57775ef7389SDavid Ahern res->f6i = net->ipv6.fib6_null_entry; 5781cf844c7SDavid Ahern nh = res->f6i->fib6_nh; 57975ef7389SDavid Ahern } 5807d21fec9SDavid Ahern out: 5817d21fec9SDavid Ahern res->nh = nh; 5827d21fec9SDavid Ahern res->fib6_type = res->f6i->fib6_type; 5837d21fec9SDavid Ahern res->fib6_flags = res->f6i->fib6_flags; 584f88d8ea6SDavid Ahern return; 585f88d8ea6SDavid Ahern 586f88d8ea6SDavid Ahern out_blackhole: 587f88d8ea6SDavid Ahern res->fib6_flags |= RTF_REJECT; 588f88d8ea6SDavid Ahern res->fib6_type = RTN_BLACKHOLE; 589f88d8ea6SDavid Ahern res->nh = nh; 5901da177e4SLinus Torvalds } 5911da177e4SLinus Torvalds 59227097255SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF 593c2f17e82SHannes Frederic Sowa struct __rt6_probe_work { 594c2f17e82SHannes Frederic Sowa struct work_struct work; 595c2f17e82SHannes Frederic Sowa struct in6_addr target; 596c2f17e82SHannes Frederic Sowa struct net_device *dev; 597fb67510bSEric Dumazet netdevice_tracker dev_tracker; 598c2f17e82SHannes Frederic Sowa }; 599c2f17e82SHannes Frederic Sowa 600c2f17e82SHannes Frederic Sowa static void rt6_probe_deferred(struct work_struct *w) 601c2f17e82SHannes Frederic Sowa { 602c2f17e82SHannes Frederic Sowa struct in6_addr mcaddr; 603c2f17e82SHannes Frederic Sowa struct __rt6_probe_work *work = 604c2f17e82SHannes Frederic Sowa container_of(w, struct __rt6_probe_work, work); 605c2f17e82SHannes Frederic Sowa 606c2f17e82SHannes Frederic Sowa addrconf_addr_solict_mult(&work->target, &mcaddr); 607adc176c5SErik Nordmark ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0); 608d62607c3SJakub Kicinski netdev_put(work->dev, &work->dev_tracker); 609662f5533SMichael Büsch kfree(work); 610c2f17e82SHannes Frederic Sowa } 611c2f17e82SHannes Frederic Sowa 612cc3a86c8SDavid Ahern static void rt6_probe(struct fib6_nh *fib6_nh) 61327097255SYOSHIFUJI Hideaki { 614f547fac6SSabrina Dubroca struct __rt6_probe_work *work = NULL; 6155e670d84SDavid Ahern const struct in6_addr *nh_gw; 6161bef4c22SEric Dumazet unsigned long last_probe; 617f2c31e32SEric Dumazet struct neighbour *neigh; 6185e670d84SDavid Ahern struct net_device *dev; 619f547fac6SSabrina Dubroca struct inet6_dev *idev; 6205e670d84SDavid Ahern 62127097255SYOSHIFUJI Hideaki /* 62227097255SYOSHIFUJI Hideaki * Okay, this does not seem to be appropriate 62327097255SYOSHIFUJI Hideaki * for now, however, we need to check if it 62427097255SYOSHIFUJI Hideaki * is really so; aka Router Reachability Probing. 62527097255SYOSHIFUJI Hideaki * 62627097255SYOSHIFUJI Hideaki * Router Reachability Probe MUST be rate-limited 62727097255SYOSHIFUJI Hideaki * to no more than one per minute. 62827097255SYOSHIFUJI Hideaki */ 629004b3942SHangbin Liu if (!fib6_nh->fib_nh_gw_family) 630fdd6681dSAmerigo Wang return; 6315e670d84SDavid Ahern 632cc3a86c8SDavid Ahern nh_gw = &fib6_nh->fib_nh_gw6; 633cc3a86c8SDavid Ahern dev = fib6_nh->fib_nh_dev; 63409eed119SEric Dumazet rcu_read_lock(); 6351bef4c22SEric Dumazet last_probe = READ_ONCE(fib6_nh->last_probe); 636f547fac6SSabrina Dubroca idev = __in6_dev_get(dev); 6375e670d84SDavid Ahern neigh = __ipv6_neigh_lookup_noref(dev, nh_gw); 6382152caeaSYOSHIFUJI Hideaki / 吉藤英明 if (neigh) { 639b071af52SEric Dumazet if (READ_ONCE(neigh->nud_state) & NUD_VALID) 6408d6c31bfSMartin KaFai Lau goto out; 6418d6c31bfSMartin KaFai Lau 64209eed119SEric Dumazet write_lock_bh(&neigh->lock); 643990edb42SMartin KaFai Lau if (!(neigh->nud_state & NUD_VALID) && 644990edb42SMartin KaFai Lau time_after(jiffies, 645dcd1f572SDavid Ahern neigh->updated + idev->cnf.rtr_probe_interval)) { 646c2f17e82SHannes Frederic Sowa work = kmalloc(sizeof(*work), GFP_ATOMIC); 647990edb42SMartin KaFai Lau if (work) 6487e980569SJiri Benc __neigh_set_probe_once(neigh); 649990edb42SMartin KaFai Lau } 65009eed119SEric Dumazet write_unlock_bh(&neigh->lock); 6511bef4c22SEric Dumazet } else if (time_after(jiffies, last_probe + 652f547fac6SSabrina Dubroca idev->cnf.rtr_probe_interval)) { 653990edb42SMartin KaFai Lau work = kmalloc(sizeof(*work), GFP_ATOMIC); 654990edb42SMartin KaFai Lau } 655c2f17e82SHannes Frederic Sowa 6561bef4c22SEric Dumazet if (!work || cmpxchg(&fib6_nh->last_probe, 6571bef4c22SEric Dumazet last_probe, jiffies) != last_probe) { 6581bef4c22SEric Dumazet kfree(work); 6591bef4c22SEric Dumazet } else { 660c2f17e82SHannes Frederic Sowa INIT_WORK(&work->work, rt6_probe_deferred); 6615e670d84SDavid Ahern work->target = *nh_gw; 662d62607c3SJakub Kicinski netdev_hold(dev, &work->dev_tracker, GFP_ATOMIC); 6635e670d84SDavid Ahern work->dev = dev; 664c2f17e82SHannes Frederic Sowa schedule_work(&work->work); 665c2f17e82SHannes Frederic Sowa } 666990edb42SMartin KaFai Lau 6678d6c31bfSMartin KaFai Lau out: 66809eed119SEric Dumazet rcu_read_unlock(); 669f2c31e32SEric Dumazet } 67027097255SYOSHIFUJI Hideaki #else 671cc3a86c8SDavid Ahern static inline void rt6_probe(struct fib6_nh *fib6_nh) 67227097255SYOSHIFUJI Hideaki { 67327097255SYOSHIFUJI Hideaki } 67427097255SYOSHIFUJI Hideaki #endif 67527097255SYOSHIFUJI Hideaki 6761da177e4SLinus Torvalds /* 677554cfb7eSYOSHIFUJI Hideaki * Default Router Selection (RFC 2461 6.3.6) 6781da177e4SLinus Torvalds */ 6791ba9a895SDavid Ahern static enum rt6_nud_state rt6_check_neigh(const struct fib6_nh *fib6_nh) 6801da177e4SLinus Torvalds { 681afc154e9SHannes Frederic Sowa enum rt6_nud_state ret = RT6_NUD_FAIL_HARD; 6825e670d84SDavid Ahern struct neighbour *neigh; 683f2c31e32SEric Dumazet 68409eed119SEric Dumazet rcu_read_lock(); 6851ba9a895SDavid Ahern neigh = __ipv6_neigh_lookup_noref(fib6_nh->fib_nh_dev, 6861ba9a895SDavid Ahern &fib6_nh->fib_nh_gw6); 687145a3621SYOSHIFUJI Hideaki / 吉藤英明 if (neigh) { 688c486640aSEric Dumazet u8 nud_state = READ_ONCE(neigh->nud_state); 689c486640aSEric Dumazet 690c486640aSEric Dumazet if (nud_state & NUD_VALID) 691afc154e9SHannes Frederic Sowa ret = RT6_NUD_SUCCEED; 692398bcbebSYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF 693c486640aSEric Dumazet else if (!(nud_state & NUD_FAILED)) 694afc154e9SHannes Frederic Sowa ret = RT6_NUD_SUCCEED; 6957e980569SJiri Benc else 6967e980569SJiri Benc ret = RT6_NUD_FAIL_PROBE; 697398bcbebSYOSHIFUJI Hideaki #endif 698afc154e9SHannes Frederic Sowa } else { 699afc154e9SHannes Frederic Sowa ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ? 7007e980569SJiri Benc RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR; 701a5a81f0bSPaul Marks } 70209eed119SEric Dumazet rcu_read_unlock(); 703145a3621SYOSHIFUJI Hideaki / 吉藤英明 704a5a81f0bSPaul Marks return ret; 7051da177e4SLinus Torvalds } 7061da177e4SLinus Torvalds 707702cea56SDavid Ahern static int rt6_score_route(const struct fib6_nh *nh, u32 fib6_flags, int oif, 708702cea56SDavid Ahern int strict) 709554cfb7eSYOSHIFUJI Hideaki { 7106e1809a5SDavid Ahern int m = 0; 7114d0c5911SYOSHIFUJI Hideaki 7126e1809a5SDavid Ahern if (!oif || nh->fib_nh_dev->ifindex == oif) 7136e1809a5SDavid Ahern m = 2; 7146e1809a5SDavid Ahern 71577d16f45SYOSHIFUJI Hideaki if (!m && (strict & RT6_LOOKUP_F_IFACE)) 716afc154e9SHannes Frederic Sowa return RT6_NUD_FAIL_HARD; 717ebacaaa0SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF 718702cea56SDavid Ahern m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(fib6_flags)) << 2; 719ebacaaa0SYOSHIFUJI Hideaki #endif 7201ba9a895SDavid Ahern if ((strict & RT6_LOOKUP_F_REACHABLE) && 721702cea56SDavid Ahern !(fib6_flags & RTF_NONEXTHOP) && nh->fib_nh_gw_family) { 7221ba9a895SDavid Ahern int n = rt6_check_neigh(nh); 723afc154e9SHannes Frederic Sowa if (n < 0) 724afc154e9SHannes Frederic Sowa return n; 725afc154e9SHannes Frederic Sowa } 726554cfb7eSYOSHIFUJI Hideaki return m; 727554cfb7eSYOSHIFUJI Hideaki } 728554cfb7eSYOSHIFUJI Hideaki 72928679ed1SDavid Ahern static bool find_match(struct fib6_nh *nh, u32 fib6_flags, 73028679ed1SDavid Ahern int oif, int strict, int *mpri, bool *do_rr) 731554cfb7eSYOSHIFUJI Hideaki { 732afc154e9SHannes Frederic Sowa bool match_do_rr = false; 73328679ed1SDavid Ahern bool rc = false; 73428679ed1SDavid Ahern int m; 73535103d11SAndy Gospodarek 73628679ed1SDavid Ahern if (nh->fib_nh_flags & RTNH_F_DEAD) 7378067bb8cSIdo Schimmel goto out; 7388067bb8cSIdo Schimmel 73928679ed1SDavid Ahern if (ip6_ignore_linkdown(nh->fib_nh_dev) && 74028679ed1SDavid Ahern nh->fib_nh_flags & RTNH_F_LINKDOWN && 741d5d32e4bSDavid Ahern !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE)) 74235103d11SAndy Gospodarek goto out; 743554cfb7eSYOSHIFUJI Hideaki 74428679ed1SDavid Ahern m = rt6_score_route(nh, fib6_flags, oif, strict); 7457e980569SJiri Benc if (m == RT6_NUD_FAIL_DO_RR) { 746afc154e9SHannes Frederic Sowa match_do_rr = true; 747afc154e9SHannes Frederic Sowa m = 0; /* lowest valid score */ 7487e980569SJiri Benc } else if (m == RT6_NUD_FAIL_HARD) { 749f11e6659SDavid S. Miller goto out; 7501da177e4SLinus Torvalds } 751f11e6659SDavid S. Miller 752afc154e9SHannes Frederic Sowa if (strict & RT6_LOOKUP_F_REACHABLE) 75328679ed1SDavid Ahern rt6_probe(nh); 754afc154e9SHannes Frederic Sowa 7557e980569SJiri Benc /* note that m can be RT6_NUD_FAIL_PROBE at this point */ 756afc154e9SHannes Frederic Sowa if (m > *mpri) { 757afc154e9SHannes Frederic Sowa *do_rr = match_do_rr; 758afc154e9SHannes Frederic Sowa *mpri = m; 75928679ed1SDavid Ahern rc = true; 760afc154e9SHannes Frederic Sowa } 761f11e6659SDavid S. Miller out: 76228679ed1SDavid Ahern return rc; 7631da177e4SLinus Torvalds } 7641da177e4SLinus Torvalds 76517a5984eSDavid Ahern struct fib6_nh_frl_arg { 76617a5984eSDavid Ahern u32 flags; 76717a5984eSDavid Ahern int oif; 76817a5984eSDavid Ahern int strict; 76917a5984eSDavid Ahern int *mpri; 77017a5984eSDavid Ahern bool *do_rr; 77117a5984eSDavid Ahern struct fib6_nh *nh; 77217a5984eSDavid Ahern }; 77317a5984eSDavid Ahern 77417a5984eSDavid Ahern static int rt6_nh_find_match(struct fib6_nh *nh, void *_arg) 77517a5984eSDavid Ahern { 77617a5984eSDavid Ahern struct fib6_nh_frl_arg *arg = _arg; 77717a5984eSDavid Ahern 77817a5984eSDavid Ahern arg->nh = nh; 77917a5984eSDavid Ahern return find_match(nh, arg->flags, arg->oif, arg->strict, 78017a5984eSDavid Ahern arg->mpri, arg->do_rr); 78117a5984eSDavid Ahern } 78217a5984eSDavid Ahern 783b7bc4b6aSDavid Ahern static void __find_rr_leaf(struct fib6_info *f6i_start, 78430c15f03SDavid Ahern struct fib6_info *nomatch, u32 metric, 785b7bc4b6aSDavid Ahern struct fib6_result *res, struct fib6_info **cont, 78630c15f03SDavid Ahern int oif, int strict, bool *do_rr, int *mpri) 78730c15f03SDavid Ahern { 788b7bc4b6aSDavid Ahern struct fib6_info *f6i; 78930c15f03SDavid Ahern 790b7bc4b6aSDavid Ahern for (f6i = f6i_start; 791b7bc4b6aSDavid Ahern f6i && f6i != nomatch; 792b7bc4b6aSDavid Ahern f6i = rcu_dereference(f6i->fib6_next)) { 79317a5984eSDavid Ahern bool matched = false; 79430c15f03SDavid Ahern struct fib6_nh *nh; 79530c15f03SDavid Ahern 796b7bc4b6aSDavid Ahern if (cont && f6i->fib6_metric != metric) { 797b7bc4b6aSDavid Ahern *cont = f6i; 79830c15f03SDavid Ahern return; 79930c15f03SDavid Ahern } 80030c15f03SDavid Ahern 801b7bc4b6aSDavid Ahern if (fib6_check_expired(f6i)) 80230c15f03SDavid Ahern continue; 80330c15f03SDavid Ahern 80417a5984eSDavid Ahern if (unlikely(f6i->nh)) { 80517a5984eSDavid Ahern struct fib6_nh_frl_arg arg = { 80617a5984eSDavid Ahern .flags = f6i->fib6_flags, 80717a5984eSDavid Ahern .oif = oif, 80817a5984eSDavid Ahern .strict = strict, 80917a5984eSDavid Ahern .mpri = mpri, 81017a5984eSDavid Ahern .do_rr = do_rr 81117a5984eSDavid Ahern }; 81217a5984eSDavid Ahern 81317a5984eSDavid Ahern if (nexthop_is_blackhole(f6i->nh)) { 81417a5984eSDavid Ahern res->fib6_flags = RTF_REJECT; 81517a5984eSDavid Ahern res->fib6_type = RTN_BLACKHOLE; 81617a5984eSDavid Ahern res->f6i = f6i; 81717a5984eSDavid Ahern res->nh = nexthop_fib6_nh(f6i->nh); 81817a5984eSDavid Ahern return; 81917a5984eSDavid Ahern } 82017a5984eSDavid Ahern if (nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_find_match, 82117a5984eSDavid Ahern &arg)) { 82217a5984eSDavid Ahern matched = true; 82317a5984eSDavid Ahern nh = arg.nh; 82417a5984eSDavid Ahern } 82517a5984eSDavid Ahern } else { 8261cf844c7SDavid Ahern nh = f6i->fib6_nh; 82717a5984eSDavid Ahern if (find_match(nh, f6i->fib6_flags, oif, strict, 82817a5984eSDavid Ahern mpri, do_rr)) 82917a5984eSDavid Ahern matched = true; 83017a5984eSDavid Ahern } 83117a5984eSDavid Ahern if (matched) { 832b7bc4b6aSDavid Ahern res->f6i = f6i; 833b7bc4b6aSDavid Ahern res->nh = nh; 8347d21fec9SDavid Ahern res->fib6_flags = f6i->fib6_flags; 8357d21fec9SDavid Ahern res->fib6_type = f6i->fib6_type; 836b7bc4b6aSDavid Ahern } 83730c15f03SDavid Ahern } 83830c15f03SDavid Ahern } 83930c15f03SDavid Ahern 840b7bc4b6aSDavid Ahern static void find_rr_leaf(struct fib6_node *fn, struct fib6_info *leaf, 841b7bc4b6aSDavid Ahern struct fib6_info *rr_head, int oif, int strict, 842b7bc4b6aSDavid Ahern bool *do_rr, struct fib6_result *res) 843f11e6659SDavid S. Miller { 844b7bc4b6aSDavid Ahern u32 metric = rr_head->fib6_metric; 845b7bc4b6aSDavid Ahern struct fib6_info *cont = NULL; 846f11e6659SDavid S. Miller int mpri = -1; 847f11e6659SDavid S. Miller 848b7bc4b6aSDavid Ahern __find_rr_leaf(rr_head, NULL, metric, res, &cont, 84930c15f03SDavid Ahern oif, strict, do_rr, &mpri); 8509fbdcfafSSteffen Klassert 851b7bc4b6aSDavid Ahern __find_rr_leaf(leaf, rr_head, metric, res, &cont, 85230c15f03SDavid Ahern oif, strict, do_rr, &mpri); 8539fbdcfafSSteffen Klassert 854b7bc4b6aSDavid Ahern if (res->f6i || !cont) 855b7bc4b6aSDavid Ahern return; 8569fbdcfafSSteffen Klassert 857b7bc4b6aSDavid Ahern __find_rr_leaf(cont, NULL, metric, res, NULL, 85830c15f03SDavid Ahern oif, strict, do_rr, &mpri); 859f11e6659SDavid S. Miller } 860f11e6659SDavid S. Miller 861b7bc4b6aSDavid Ahern static void rt6_select(struct net *net, struct fib6_node *fn, int oif, 862b7bc4b6aSDavid Ahern struct fib6_result *res, int strict) 863f11e6659SDavid S. Miller { 8648d1c802bSDavid Ahern struct fib6_info *leaf = rcu_dereference(fn->leaf); 865b7bc4b6aSDavid Ahern struct fib6_info *rt0; 866afc154e9SHannes Frederic Sowa bool do_rr = false; 86717ecf590SWei Wang int key_plen; 868f11e6659SDavid S. Miller 869b7bc4b6aSDavid Ahern /* make sure this function or its helpers sets f6i */ 870b7bc4b6aSDavid Ahern res->f6i = NULL; 871b7bc4b6aSDavid Ahern 872421842edSDavid Ahern if (!leaf || leaf == net->ipv6.fib6_null_entry) 873b7bc4b6aSDavid Ahern goto out; 8748d1040e8SWei Wang 87566f5d6ceSWei Wang rt0 = rcu_dereference(fn->rr_ptr); 876f11e6659SDavid S. Miller if (!rt0) 87766f5d6ceSWei Wang rt0 = leaf; 878f11e6659SDavid S. Miller 87917ecf590SWei Wang /* Double check to make sure fn is not an intermediate node 88017ecf590SWei Wang * and fn->leaf does not points to its child's leaf 88117ecf590SWei Wang * (This might happen if all routes under fn are deleted from 88217ecf590SWei Wang * the tree and fib6_repair_tree() is called on the node.) 88317ecf590SWei Wang */ 88493c2fb25SDavid Ahern key_plen = rt0->fib6_dst.plen; 88517ecf590SWei Wang #ifdef CONFIG_IPV6_SUBTREES 88693c2fb25SDavid Ahern if (rt0->fib6_src.plen) 88793c2fb25SDavid Ahern key_plen = rt0->fib6_src.plen; 88817ecf590SWei Wang #endif 88917ecf590SWei Wang if (fn->fn_bit != key_plen) 890b7bc4b6aSDavid Ahern goto out; 89117ecf590SWei Wang 892b7bc4b6aSDavid Ahern find_rr_leaf(fn, leaf, rt0, oif, strict, &do_rr, res); 893afc154e9SHannes Frederic Sowa if (do_rr) { 8948fb11a9aSDavid Ahern struct fib6_info *next = rcu_dereference(rt0->fib6_next); 895f11e6659SDavid S. Miller 896554cfb7eSYOSHIFUJI Hideaki /* no entries matched; do round-robin */ 89793c2fb25SDavid Ahern if (!next || next->fib6_metric != rt0->fib6_metric) 8988d1040e8SWei Wang next = leaf; 899f11e6659SDavid S. Miller 90066f5d6ceSWei Wang if (next != rt0) { 90193c2fb25SDavid Ahern spin_lock_bh(&leaf->fib6_table->tb6_lock); 90266f5d6ceSWei Wang /* make sure next is not being deleted from the tree */ 90393c2fb25SDavid Ahern if (next->fib6_node) 90466f5d6ceSWei Wang rcu_assign_pointer(fn->rr_ptr, next); 90593c2fb25SDavid Ahern spin_unlock_bh(&leaf->fib6_table->tb6_lock); 90666f5d6ceSWei Wang } 907554cfb7eSYOSHIFUJI Hideaki } 908554cfb7eSYOSHIFUJI Hideaki 909b7bc4b6aSDavid Ahern out: 910b7bc4b6aSDavid Ahern if (!res->f6i) { 911b7bc4b6aSDavid Ahern res->f6i = net->ipv6.fib6_null_entry; 9121cf844c7SDavid Ahern res->nh = res->f6i->fib6_nh; 9137d21fec9SDavid Ahern res->fib6_flags = res->f6i->fib6_flags; 9147d21fec9SDavid Ahern res->fib6_type = res->f6i->fib6_type; 915b7bc4b6aSDavid Ahern } 9161da177e4SLinus Torvalds } 9171da177e4SLinus Torvalds 91885bd05deSDavid Ahern static bool rt6_is_gw_or_nonexthop(const struct fib6_result *res) 9198b9df265SMartin KaFai Lau { 92085bd05deSDavid Ahern return (res->f6i->fib6_flags & RTF_NONEXTHOP) || 92185bd05deSDavid Ahern res->nh->fib_nh_gw_family; 9228b9df265SMartin KaFai Lau } 9238b9df265SMartin KaFai Lau 92470ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO 92570ceb4f5SYOSHIFUJI Hideaki int rt6_route_rcv(struct net_device *dev, u8 *opt, int len, 926b71d1d42SEric Dumazet const struct in6_addr *gwaddr) 92770ceb4f5SYOSHIFUJI Hideaki { 928c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(dev); 92970ceb4f5SYOSHIFUJI Hideaki struct route_info *rinfo = (struct route_info *) opt; 93070ceb4f5SYOSHIFUJI Hideaki struct in6_addr prefix_buf, *prefix; 93170ceb4f5SYOSHIFUJI Hideaki unsigned int pref; 9324bed72e4SYOSHIFUJI Hideaki unsigned long lifetime; 9338d1c802bSDavid Ahern struct fib6_info *rt; 93470ceb4f5SYOSHIFUJI Hideaki 93570ceb4f5SYOSHIFUJI Hideaki if (len < sizeof(struct route_info)) { 93670ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 93770ceb4f5SYOSHIFUJI Hideaki } 93870ceb4f5SYOSHIFUJI Hideaki 93970ceb4f5SYOSHIFUJI Hideaki /* Sanity check for prefix_len and length */ 94070ceb4f5SYOSHIFUJI Hideaki if (rinfo->length > 3) { 94170ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 94270ceb4f5SYOSHIFUJI Hideaki } else if (rinfo->prefix_len > 128) { 94370ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 94470ceb4f5SYOSHIFUJI Hideaki } else if (rinfo->prefix_len > 64) { 94570ceb4f5SYOSHIFUJI Hideaki if (rinfo->length < 2) { 94670ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 94770ceb4f5SYOSHIFUJI Hideaki } 94870ceb4f5SYOSHIFUJI Hideaki } else if (rinfo->prefix_len > 0) { 94970ceb4f5SYOSHIFUJI Hideaki if (rinfo->length < 1) { 95070ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 95170ceb4f5SYOSHIFUJI Hideaki } 95270ceb4f5SYOSHIFUJI Hideaki } 95370ceb4f5SYOSHIFUJI Hideaki 95470ceb4f5SYOSHIFUJI Hideaki pref = rinfo->route_pref; 95570ceb4f5SYOSHIFUJI Hideaki if (pref == ICMPV6_ROUTER_PREF_INVALID) 9563933fc95SJens Rosenboom return -EINVAL; 95770ceb4f5SYOSHIFUJI Hideaki 9584bed72e4SYOSHIFUJI Hideaki lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ); 95970ceb4f5SYOSHIFUJI Hideaki 96070ceb4f5SYOSHIFUJI Hideaki if (rinfo->length == 3) 96170ceb4f5SYOSHIFUJI Hideaki prefix = (struct in6_addr *)rinfo->prefix; 96270ceb4f5SYOSHIFUJI Hideaki else { 96370ceb4f5SYOSHIFUJI Hideaki /* this function is safe */ 96470ceb4f5SYOSHIFUJI Hideaki ipv6_addr_prefix(&prefix_buf, 96570ceb4f5SYOSHIFUJI Hideaki (struct in6_addr *)rinfo->prefix, 96670ceb4f5SYOSHIFUJI Hideaki rinfo->prefix_len); 96770ceb4f5SYOSHIFUJI Hideaki prefix = &prefix_buf; 96870ceb4f5SYOSHIFUJI Hideaki } 96970ceb4f5SYOSHIFUJI Hideaki 970f104a567SDuan Jiong if (rinfo->prefix_len == 0) 971afb1d4b5SDavid Ahern rt = rt6_get_dflt_router(net, gwaddr, dev); 972f104a567SDuan Jiong else 973f104a567SDuan Jiong rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, 974830218c1SDavid Ahern gwaddr, dev); 97570ceb4f5SYOSHIFUJI Hideaki 97670ceb4f5SYOSHIFUJI Hideaki if (rt && !lifetime) { 97711dd74b3SRoopa Prabhu ip6_del_rt(net, rt, false); 97870ceb4f5SYOSHIFUJI Hideaki rt = NULL; 97970ceb4f5SYOSHIFUJI Hideaki } 98070ceb4f5SYOSHIFUJI Hideaki 98170ceb4f5SYOSHIFUJI Hideaki if (!rt && lifetime) 982830218c1SDavid Ahern rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, 983830218c1SDavid Ahern dev, pref); 98470ceb4f5SYOSHIFUJI Hideaki else if (rt) 98593c2fb25SDavid Ahern rt->fib6_flags = RTF_ROUTEINFO | 98693c2fb25SDavid Ahern (rt->fib6_flags & ~RTF_PREF_MASK) | RTF_PREF(pref); 98770ceb4f5SYOSHIFUJI Hideaki 98870ceb4f5SYOSHIFUJI Hideaki if (rt) { 9891716a961SGao feng if (!addrconf_finite_timeout(lifetime)) 99014895687SDavid Ahern fib6_clean_expires(rt); 9911716a961SGao feng else 99214895687SDavid Ahern fib6_set_expires(rt, jiffies + HZ * lifetime); 9931716a961SGao feng 99493531c67SDavid Ahern fib6_info_release(rt); 99570ceb4f5SYOSHIFUJI Hideaki } 99670ceb4f5SYOSHIFUJI Hideaki return 0; 99770ceb4f5SYOSHIFUJI Hideaki } 99870ceb4f5SYOSHIFUJI Hideaki #endif 99970ceb4f5SYOSHIFUJI Hideaki 1000ae90d867SDavid Ahern /* 1001ae90d867SDavid Ahern * Misc support functions 1002ae90d867SDavid Ahern */ 1003ae90d867SDavid Ahern 1004ae90d867SDavid Ahern /* called with rcu_lock held */ 10050d161581SDavid Ahern static struct net_device *ip6_rt_get_dev_rcu(const struct fib6_result *res) 1006ae90d867SDavid Ahern { 10070d161581SDavid Ahern struct net_device *dev = res->nh->fib_nh_dev; 1008ae90d867SDavid Ahern 10097d21fec9SDavid Ahern if (res->fib6_flags & (RTF_LOCAL | RTF_ANYCAST)) { 1010ae90d867SDavid Ahern /* for copies of local routes, dst->dev needs to be the 1011ae90d867SDavid Ahern * device if it is a master device, the master device if 1012ae90d867SDavid Ahern * device is enslaved, and the loopback as the default 1013ae90d867SDavid Ahern */ 1014ae90d867SDavid Ahern if (netif_is_l3_slave(dev) && 10157d21fec9SDavid Ahern !rt6_need_strict(&res->f6i->fib6_dst.addr)) 1016ae90d867SDavid Ahern dev = l3mdev_master_dev_rcu(dev); 1017ae90d867SDavid Ahern else if (!netif_is_l3_master(dev)) 1018ae90d867SDavid Ahern dev = dev_net(dev)->loopback_dev; 1019ae90d867SDavid Ahern /* last case is netif_is_l3_master(dev) is true in which 1020ae90d867SDavid Ahern * case we want dev returned to be dev 1021ae90d867SDavid Ahern */ 1022ae90d867SDavid Ahern } 1023ae90d867SDavid Ahern 1024ae90d867SDavid Ahern return dev; 1025ae90d867SDavid Ahern } 1026ae90d867SDavid Ahern 10276edb3c96SDavid Ahern static const int fib6_prop[RTN_MAX + 1] = { 10286edb3c96SDavid Ahern [RTN_UNSPEC] = 0, 10296edb3c96SDavid Ahern [RTN_UNICAST] = 0, 10306edb3c96SDavid Ahern [RTN_LOCAL] = 0, 10316edb3c96SDavid Ahern [RTN_BROADCAST] = 0, 10326edb3c96SDavid Ahern [RTN_ANYCAST] = 0, 10336edb3c96SDavid Ahern [RTN_MULTICAST] = 0, 10346edb3c96SDavid Ahern [RTN_BLACKHOLE] = -EINVAL, 10356edb3c96SDavid Ahern [RTN_UNREACHABLE] = -EHOSTUNREACH, 10366edb3c96SDavid Ahern [RTN_PROHIBIT] = -EACCES, 10376edb3c96SDavid Ahern [RTN_THROW] = -EAGAIN, 10386edb3c96SDavid Ahern [RTN_NAT] = -EINVAL, 10396edb3c96SDavid Ahern [RTN_XRESOLVE] = -EINVAL, 10406edb3c96SDavid Ahern }; 10416edb3c96SDavid Ahern 10426edb3c96SDavid Ahern static int ip6_rt_type_to_error(u8 fib6_type) 10436edb3c96SDavid Ahern { 10446edb3c96SDavid Ahern return fib6_prop[fib6_type]; 10456edb3c96SDavid Ahern } 10466edb3c96SDavid Ahern 10478d1c802bSDavid Ahern static unsigned short fib6_info_dst_flags(struct fib6_info *rt) 10483b6761d1SDavid Ahern { 10493b6761d1SDavid Ahern unsigned short flags = 0; 10503b6761d1SDavid Ahern 10513b6761d1SDavid Ahern if (rt->dst_nocount) 10523b6761d1SDavid Ahern flags |= DST_NOCOUNT; 10533b6761d1SDavid Ahern if (rt->dst_nopolicy) 10543b6761d1SDavid Ahern flags |= DST_NOPOLICY; 10553b6761d1SDavid Ahern 10563b6761d1SDavid Ahern return flags; 10573b6761d1SDavid Ahern } 10583b6761d1SDavid Ahern 10597d21fec9SDavid Ahern static void ip6_rt_init_dst_reject(struct rt6_info *rt, u8 fib6_type) 10606edb3c96SDavid Ahern { 10617d21fec9SDavid Ahern rt->dst.error = ip6_rt_type_to_error(fib6_type); 10626edb3c96SDavid Ahern 10637d21fec9SDavid Ahern switch (fib6_type) { 10646edb3c96SDavid Ahern case RTN_BLACKHOLE: 10656edb3c96SDavid Ahern rt->dst.output = dst_discard_out; 10666edb3c96SDavid Ahern rt->dst.input = dst_discard; 10676edb3c96SDavid Ahern break; 10686edb3c96SDavid Ahern case RTN_PROHIBIT: 10696edb3c96SDavid Ahern rt->dst.output = ip6_pkt_prohibit_out; 10706edb3c96SDavid Ahern rt->dst.input = ip6_pkt_prohibit; 10716edb3c96SDavid Ahern break; 10726edb3c96SDavid Ahern case RTN_THROW: 10736edb3c96SDavid Ahern case RTN_UNREACHABLE: 10746edb3c96SDavid Ahern default: 10756edb3c96SDavid Ahern rt->dst.output = ip6_pkt_discard_out; 10766edb3c96SDavid Ahern rt->dst.input = ip6_pkt_discard; 10776edb3c96SDavid Ahern break; 10786edb3c96SDavid Ahern } 10796edb3c96SDavid Ahern } 10806edb3c96SDavid Ahern 10810d161581SDavid Ahern static void ip6_rt_init_dst(struct rt6_info *rt, const struct fib6_result *res) 10826edb3c96SDavid Ahern { 10837d21fec9SDavid Ahern struct fib6_info *f6i = res->f6i; 10840d161581SDavid Ahern 10857d21fec9SDavid Ahern if (res->fib6_flags & RTF_REJECT) { 10867d21fec9SDavid Ahern ip6_rt_init_dst_reject(rt, res->fib6_type); 10876edb3c96SDavid Ahern return; 10886edb3c96SDavid Ahern } 10896edb3c96SDavid Ahern 10906edb3c96SDavid Ahern rt->dst.error = 0; 10916edb3c96SDavid Ahern rt->dst.output = ip6_output; 10926edb3c96SDavid Ahern 10937d21fec9SDavid Ahern if (res->fib6_type == RTN_LOCAL || res->fib6_type == RTN_ANYCAST) { 10946edb3c96SDavid Ahern rt->dst.input = ip6_input; 10957d21fec9SDavid Ahern } else if (ipv6_addr_type(&f6i->fib6_dst.addr) & IPV6_ADDR_MULTICAST) { 10966edb3c96SDavid Ahern rt->dst.input = ip6_mc_input; 10976edb3c96SDavid Ahern } else { 10986edb3c96SDavid Ahern rt->dst.input = ip6_forward; 10996edb3c96SDavid Ahern } 11006edb3c96SDavid Ahern 11010d161581SDavid Ahern if (res->nh->fib_nh_lws) { 11020d161581SDavid Ahern rt->dst.lwtstate = lwtstate_get(res->nh->fib_nh_lws); 11036edb3c96SDavid Ahern lwtunnel_set_redirect(&rt->dst); 11046edb3c96SDavid Ahern } 11056edb3c96SDavid Ahern 11066edb3c96SDavid Ahern rt->dst.lastuse = jiffies; 11076edb3c96SDavid Ahern } 11086edb3c96SDavid Ahern 1109e873e4b9SWei Wang /* Caller must already hold reference to @from */ 11108d1c802bSDavid Ahern static void rt6_set_from(struct rt6_info *rt, struct fib6_info *from) 1111ae90d867SDavid Ahern { 1112ae90d867SDavid Ahern rt->rt6i_flags &= ~RTF_EXPIRES; 1113a68886a6SDavid Ahern rcu_assign_pointer(rt->from, from); 1114e1255ed4SDavid Ahern ip_dst_init_metrics(&rt->dst, from->fib6_metrics); 1115ae90d867SDavid Ahern } 1116ae90d867SDavid Ahern 11170d161581SDavid Ahern /* Caller must already hold reference to f6i in result */ 11180d161581SDavid Ahern static void ip6_rt_copy_init(struct rt6_info *rt, const struct fib6_result *res) 1119ae90d867SDavid Ahern { 11200d161581SDavid Ahern const struct fib6_nh *nh = res->nh; 11210d161581SDavid Ahern const struct net_device *dev = nh->fib_nh_dev; 11220d161581SDavid Ahern struct fib6_info *f6i = res->f6i; 1123dcd1f572SDavid Ahern 11240d161581SDavid Ahern ip6_rt_init_dst(rt, res); 11256edb3c96SDavid Ahern 11260d161581SDavid Ahern rt->rt6i_dst = f6i->fib6_dst; 1127dcd1f572SDavid Ahern rt->rt6i_idev = dev ? in6_dev_get(dev) : NULL; 11287d21fec9SDavid Ahern rt->rt6i_flags = res->fib6_flags; 11290d161581SDavid Ahern if (nh->fib_nh_gw_family) { 11300d161581SDavid Ahern rt->rt6i_gateway = nh->fib_nh_gw6; 11312b2450caSDavid Ahern rt->rt6i_flags |= RTF_GATEWAY; 11322b2450caSDavid Ahern } 11330d161581SDavid Ahern rt6_set_from(rt, f6i); 1134ae90d867SDavid Ahern #ifdef CONFIG_IPV6_SUBTREES 11350d161581SDavid Ahern rt->rt6i_src = f6i->fib6_src; 1136ae90d867SDavid Ahern #endif 1137ae90d867SDavid Ahern } 1138ae90d867SDavid Ahern 1139a3c00e46SMartin KaFai Lau static struct fib6_node* fib6_backtrack(struct fib6_node *fn, 1140a3c00e46SMartin KaFai Lau struct in6_addr *saddr) 1141a3c00e46SMartin KaFai Lau { 114266f5d6ceSWei Wang struct fib6_node *pn, *sn; 1143a3c00e46SMartin KaFai Lau while (1) { 1144a3c00e46SMartin KaFai Lau if (fn->fn_flags & RTN_TL_ROOT) 1145a3c00e46SMartin KaFai Lau return NULL; 114666f5d6ceSWei Wang pn = rcu_dereference(fn->parent); 114766f5d6ceSWei Wang sn = FIB6_SUBTREE(pn); 114866f5d6ceSWei Wang if (sn && sn != fn) 11496454743bSDavid Ahern fn = fib6_node_lookup(sn, NULL, saddr); 1150a3c00e46SMartin KaFai Lau else 1151a3c00e46SMartin KaFai Lau fn = pn; 1152a3c00e46SMartin KaFai Lau if (fn->fn_flags & RTN_RTINFO) 1153a3c00e46SMartin KaFai Lau return fn; 1154a3c00e46SMartin KaFai Lau } 1155a3c00e46SMartin KaFai Lau } 1156c71099acSThomas Graf 115710585b43SDavid Ahern static bool ip6_hold_safe(struct net *net, struct rt6_info **prt) 1158d3843fe5SWei Wang { 1159d3843fe5SWei Wang struct rt6_info *rt = *prt; 1160d3843fe5SWei Wang 1161d3843fe5SWei Wang if (dst_hold_safe(&rt->dst)) 1162d3843fe5SWei Wang return true; 116310585b43SDavid Ahern if (net) { 1164d3843fe5SWei Wang rt = net->ipv6.ip6_null_entry; 1165d3843fe5SWei Wang dst_hold(&rt->dst); 1166d3843fe5SWei Wang } else { 1167d3843fe5SWei Wang rt = NULL; 1168d3843fe5SWei Wang } 1169d3843fe5SWei Wang *prt = rt; 1170d3843fe5SWei Wang return false; 1171d3843fe5SWei Wang } 1172d3843fe5SWei Wang 1173dec9b0e2SDavid Ahern /* called with rcu_lock held */ 11749b6b35abSDavid Ahern static struct rt6_info *ip6_create_rt_rcu(const struct fib6_result *res) 1175dec9b0e2SDavid Ahern { 11769b6b35abSDavid Ahern struct net_device *dev = res->nh->fib_nh_dev; 11779b6b35abSDavid Ahern struct fib6_info *f6i = res->f6i; 11789b6b35abSDavid Ahern unsigned short flags; 1179dec9b0e2SDavid Ahern struct rt6_info *nrt; 1180dec9b0e2SDavid Ahern 11819b6b35abSDavid Ahern if (!fib6_info_hold_safe(f6i)) 11821c87e79aSXin Long goto fallback; 1183e873e4b9SWei Wang 11849b6b35abSDavid Ahern flags = fib6_info_dst_flags(f6i); 118593531c67SDavid Ahern nrt = ip6_dst_alloc(dev_net(dev), dev, flags); 11861c87e79aSXin Long if (!nrt) { 11879b6b35abSDavid Ahern fib6_info_release(f6i); 11881c87e79aSXin Long goto fallback; 11891c87e79aSXin Long } 1190dec9b0e2SDavid Ahern 11910d161581SDavid Ahern ip6_rt_copy_init(nrt, res); 11921c87e79aSXin Long return nrt; 11931c87e79aSXin Long 11941c87e79aSXin Long fallback: 11951c87e79aSXin Long nrt = dev_net(dev)->ipv6.ip6_null_entry; 11961c87e79aSXin Long dst_hold(&nrt->dst); 1197dec9b0e2SDavid Ahern return nrt; 1198dec9b0e2SDavid Ahern } 1199dec9b0e2SDavid Ahern 120055cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_lookup(struct net *net, 12018ed67789SDaniel Lezcano struct fib6_table *table, 1202b75cc8f9SDavid Ahern struct flowi6 *fl6, 1203b75cc8f9SDavid Ahern const struct sk_buff *skb, 1204b75cc8f9SDavid Ahern int flags) 12051da177e4SLinus Torvalds { 1206b1d40991SDavid Ahern struct fib6_result res = {}; 12071da177e4SLinus Torvalds struct fib6_node *fn; 120823fb93a4SDavid Ahern struct rt6_info *rt; 12091da177e4SLinus Torvalds 121066f5d6ceSWei Wang rcu_read_lock(); 12116454743bSDavid Ahern fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); 1212c71099acSThomas Graf restart: 1213b1d40991SDavid Ahern res.f6i = rcu_dereference(fn->leaf); 1214b1d40991SDavid Ahern if (!res.f6i) 1215b1d40991SDavid Ahern res.f6i = net->ipv6.fib6_null_entry; 1216af52a52cSDavid Ahern else 121775ef7389SDavid Ahern rt6_device_match(net, &res, &fl6->saddr, fl6->flowi6_oif, 121875ef7389SDavid Ahern flags); 1219af52a52cSDavid Ahern 1220b1d40991SDavid Ahern if (res.f6i == net->ipv6.fib6_null_entry) { 1221a3c00e46SMartin KaFai Lau fn = fib6_backtrack(fn, &fl6->saddr); 1222a3c00e46SMartin KaFai Lau if (fn) 1223a3c00e46SMartin KaFai Lau goto restart; 1224af52a52cSDavid Ahern 1225af52a52cSDavid Ahern rt = net->ipv6.ip6_null_entry; 1226af52a52cSDavid Ahern dst_hold(&rt->dst); 1227af52a52cSDavid Ahern goto out; 1228f88d8ea6SDavid Ahern } else if (res.fib6_flags & RTF_REJECT) { 1229f88d8ea6SDavid Ahern goto do_create; 1230a3c00e46SMartin KaFai Lau } 12312b760fcfSWei Wang 1232b1d40991SDavid Ahern fib6_select_path(net, &res, fl6, fl6->flowi6_oif, 1233b1d40991SDavid Ahern fl6->flowi6_oif != 0, skb, flags); 1234b1d40991SDavid Ahern 12354c9483b2SDavid S. Miller /* Search through exception table */ 12367e4b5128SDavid Ahern rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr); 123723fb93a4SDavid Ahern if (rt) { 123810585b43SDavid Ahern if (ip6_hold_safe(net, &rt)) 1239d3843fe5SWei Wang dst_use_noref(&rt->dst, jiffies); 124023fb93a4SDavid Ahern } else { 1241f88d8ea6SDavid Ahern do_create: 12429b6b35abSDavid Ahern rt = ip6_create_rt_rcu(&res); 1243dec9b0e2SDavid Ahern } 1244d3843fe5SWei Wang 1245af52a52cSDavid Ahern out: 12468ff2e5b2SDavid Ahern trace_fib6_table_lookup(net, &res, table, fl6); 1247af52a52cSDavid Ahern 124866f5d6ceSWei Wang rcu_read_unlock(); 1249b811580dSDavid Ahern 12501da177e4SLinus Torvalds return rt; 1251c71099acSThomas Graf } 1252c71099acSThomas Graf 1253ea6e574eSFlorian Westphal struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6, 1254b75cc8f9SDavid Ahern const struct sk_buff *skb, int flags) 1255ea6e574eSFlorian Westphal { 1256b75cc8f9SDavid Ahern return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_lookup); 1257ea6e574eSFlorian Westphal } 1258ea6e574eSFlorian Westphal EXPORT_SYMBOL_GPL(ip6_route_lookup); 1259ea6e574eSFlorian Westphal 12609acd9f3aSYOSHIFUJI Hideaki struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr, 1261b75cc8f9SDavid Ahern const struct in6_addr *saddr, int oif, 1262b75cc8f9SDavid Ahern const struct sk_buff *skb, int strict) 1263c71099acSThomas Graf { 12644c9483b2SDavid S. Miller struct flowi6 fl6 = { 12654c9483b2SDavid S. Miller .flowi6_oif = oif, 12664c9483b2SDavid S. Miller .daddr = *daddr, 1267c71099acSThomas Graf }; 1268c71099acSThomas Graf struct dst_entry *dst; 126977d16f45SYOSHIFUJI Hideaki int flags = strict ? RT6_LOOKUP_F_IFACE : 0; 1270c71099acSThomas Graf 1271adaa70bbSThomas Graf if (saddr) { 12724c9483b2SDavid S. Miller memcpy(&fl6.saddr, saddr, sizeof(*saddr)); 1273adaa70bbSThomas Graf flags |= RT6_LOOKUP_F_HAS_SADDR; 1274adaa70bbSThomas Graf } 1275adaa70bbSThomas Graf 1276b75cc8f9SDavid Ahern dst = fib6_rule_lookup(net, &fl6, skb, flags, ip6_pol_route_lookup); 1277c71099acSThomas Graf if (dst->error == 0) 1278c71099acSThomas Graf return (struct rt6_info *) dst; 1279c71099acSThomas Graf 1280c71099acSThomas Graf dst_release(dst); 1281c71099acSThomas Graf 12821da177e4SLinus Torvalds return NULL; 12831da177e4SLinus Torvalds } 12847159039aSYOSHIFUJI Hideaki EXPORT_SYMBOL(rt6_lookup); 12857159039aSYOSHIFUJI Hideaki 1286c71099acSThomas Graf /* ip6_ins_rt is called with FREE table->tb6_lock. 12871cfb71eeSWei Wang * It takes new route entry, the addition fails by any reason the 12881cfb71eeSWei Wang * route is released. 12891cfb71eeSWei Wang * Caller must hold dst before calling it. 12901da177e4SLinus Torvalds */ 12911da177e4SLinus Torvalds 12928d1c802bSDavid Ahern static int __ip6_ins_rt(struct fib6_info *rt, struct nl_info *info, 1293333c4301SDavid Ahern struct netlink_ext_ack *extack) 12941da177e4SLinus Torvalds { 12951da177e4SLinus Torvalds int err; 1296c71099acSThomas Graf struct fib6_table *table; 12971da177e4SLinus Torvalds 129893c2fb25SDavid Ahern table = rt->fib6_table; 129966f5d6ceSWei Wang spin_lock_bh(&table->tb6_lock); 1300d4ead6b3SDavid Ahern err = fib6_add(&table->tb6_root, rt, info, extack); 130166f5d6ceSWei Wang spin_unlock_bh(&table->tb6_lock); 13021da177e4SLinus Torvalds 13031da177e4SLinus Torvalds return err; 13041da177e4SLinus Torvalds } 13051da177e4SLinus Torvalds 13068d1c802bSDavid Ahern int ip6_ins_rt(struct net *net, struct fib6_info *rt) 130740e22e8fSThomas Graf { 1308afb1d4b5SDavid Ahern struct nl_info info = { .nl_net = net, }; 1309e715b6d3SFlorian Westphal 1310d4ead6b3SDavid Ahern return __ip6_ins_rt(rt, &info, NULL); 131140e22e8fSThomas Graf } 131240e22e8fSThomas Graf 131385bd05deSDavid Ahern static struct rt6_info *ip6_rt_cache_alloc(const struct fib6_result *res, 131421efcfa0SEric Dumazet const struct in6_addr *daddr, 1315b71d1d42SEric Dumazet const struct in6_addr *saddr) 13161da177e4SLinus Torvalds { 131785bd05deSDavid Ahern struct fib6_info *f6i = res->f6i; 13184832c30dSDavid Ahern struct net_device *dev; 13191da177e4SLinus Torvalds struct rt6_info *rt; 13201da177e4SLinus Torvalds 13211da177e4SLinus Torvalds /* 13221da177e4SLinus Torvalds * Clone the route. 13231da177e4SLinus Torvalds */ 13241da177e4SLinus Torvalds 132585bd05deSDavid Ahern if (!fib6_info_hold_safe(f6i)) 1326e873e4b9SWei Wang return NULL; 1327e873e4b9SWei Wang 13280d161581SDavid Ahern dev = ip6_rt_get_dev_rcu(res); 132993531c67SDavid Ahern rt = ip6_dst_alloc(dev_net(dev), dev, 0); 1330e873e4b9SWei Wang if (!rt) { 133185bd05deSDavid Ahern fib6_info_release(f6i); 133283a09abdSMartin KaFai Lau return NULL; 1333e873e4b9SWei Wang } 133483a09abdSMartin KaFai Lau 13350d161581SDavid Ahern ip6_rt_copy_init(rt, res); 13368b9df265SMartin KaFai Lau rt->rt6i_flags |= RTF_CACHE; 133783a09abdSMartin KaFai Lau rt->rt6i_dst.addr = *daddr; 133883a09abdSMartin KaFai Lau rt->rt6i_dst.plen = 128; 13398b9df265SMartin KaFai Lau 134085bd05deSDavid Ahern if (!rt6_is_gw_or_nonexthop(res)) { 134185bd05deSDavid Ahern if (f6i->fib6_dst.plen != 128 && 134285bd05deSDavid Ahern ipv6_addr_equal(&f6i->fib6_dst.addr, daddr)) 134358c4fb86SYOSHIFUJI Hideaki rt->rt6i_flags |= RTF_ANYCAST; 13441da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES 13451da177e4SLinus Torvalds if (rt->rt6i_src.plen && saddr) { 13464e3fd7a0SAlexey Dobriyan rt->rt6i_src.addr = *saddr; 13471da177e4SLinus Torvalds rt->rt6i_src.plen = 128; 13481da177e4SLinus Torvalds } 13491da177e4SLinus Torvalds #endif 135095a9a5baSYOSHIFUJI Hideaki } 135195a9a5baSYOSHIFUJI Hideaki 1352299d9939SYOSHIFUJI Hideaki return rt; 1353299d9939SYOSHIFUJI Hideaki } 1354299d9939SYOSHIFUJI Hideaki 1355db3fedeeSDavid Ahern static struct rt6_info *ip6_rt_pcpu_alloc(const struct fib6_result *res) 1356d52d3997SMartin KaFai Lau { 1357db3fedeeSDavid Ahern struct fib6_info *f6i = res->f6i; 1358db3fedeeSDavid Ahern unsigned short flags = fib6_info_dst_flags(f6i); 13594832c30dSDavid Ahern struct net_device *dev; 1360d52d3997SMartin KaFai Lau struct rt6_info *pcpu_rt; 1361d52d3997SMartin KaFai Lau 1362db3fedeeSDavid Ahern if (!fib6_info_hold_safe(f6i)) 1363e873e4b9SWei Wang return NULL; 1364e873e4b9SWei Wang 13654832c30dSDavid Ahern rcu_read_lock(); 13660d161581SDavid Ahern dev = ip6_rt_get_dev_rcu(res); 1367d8882935SEric Dumazet pcpu_rt = ip6_dst_alloc(dev_net(dev), dev, flags | DST_NOCOUNT); 13684832c30dSDavid Ahern rcu_read_unlock(); 1369e873e4b9SWei Wang if (!pcpu_rt) { 1370db3fedeeSDavid Ahern fib6_info_release(f6i); 1371d52d3997SMartin KaFai Lau return NULL; 1372e873e4b9SWei Wang } 13730d161581SDavid Ahern ip6_rt_copy_init(pcpu_rt, res); 1374d52d3997SMartin KaFai Lau pcpu_rt->rt6i_flags |= RTF_PCPU; 13758f34e53bSDavid Ahern 13768f34e53bSDavid Ahern if (f6i->nh) 13778f34e53bSDavid Ahern pcpu_rt->sernum = rt_genid_ipv6(dev_net(dev)); 13788f34e53bSDavid Ahern 1379d52d3997SMartin KaFai Lau return pcpu_rt; 1380d52d3997SMartin KaFai Lau } 1381d52d3997SMartin KaFai Lau 13828f34e53bSDavid Ahern static bool rt6_is_valid(const struct rt6_info *rt6) 13838f34e53bSDavid Ahern { 13848f34e53bSDavid Ahern return rt6->sernum == rt_genid_ipv6(dev_net(rt6->dst.dev)); 13858f34e53bSDavid Ahern } 13868f34e53bSDavid Ahern 138766f5d6ceSWei Wang /* It should be called with rcu_read_lock() acquired */ 1388db3fedeeSDavid Ahern static struct rt6_info *rt6_get_pcpu_route(const struct fib6_result *res) 1389d52d3997SMartin KaFai Lau { 1390c353071aSEric Dumazet struct rt6_info *pcpu_rt; 1391d52d3997SMartin KaFai Lau 1392c353071aSEric Dumazet pcpu_rt = this_cpu_read(*res->nh->rt6i_pcpu); 1393d52d3997SMartin KaFai Lau 13948f34e53bSDavid Ahern if (pcpu_rt && pcpu_rt->sernum && !rt6_is_valid(pcpu_rt)) { 13958f34e53bSDavid Ahern struct rt6_info *prev, **p; 13968f34e53bSDavid Ahern 13978f34e53bSDavid Ahern p = this_cpu_ptr(res->nh->rt6i_pcpu); 13988f34e53bSDavid Ahern prev = xchg(p, NULL); 13998f34e53bSDavid Ahern if (prev) { 14008f34e53bSDavid Ahern dst_dev_put(&prev->dst); 14018f34e53bSDavid Ahern dst_release(&prev->dst); 14028f34e53bSDavid Ahern } 14038f34e53bSDavid Ahern 14048f34e53bSDavid Ahern pcpu_rt = NULL; 14058f34e53bSDavid Ahern } 14068f34e53bSDavid Ahern 1407a73e4195SMartin KaFai Lau return pcpu_rt; 1408a73e4195SMartin KaFai Lau } 1409a73e4195SMartin KaFai Lau 1410afb1d4b5SDavid Ahern static struct rt6_info *rt6_make_pcpu_route(struct net *net, 1411db3fedeeSDavid Ahern const struct fib6_result *res) 1412a73e4195SMartin KaFai Lau { 1413a73e4195SMartin KaFai Lau struct rt6_info *pcpu_rt, *prev, **p; 1414d52d3997SMartin KaFai Lau 1415db3fedeeSDavid Ahern pcpu_rt = ip6_rt_pcpu_alloc(res); 14160e09edccSWei Wang if (!pcpu_rt) 14170e09edccSWei Wang return NULL; 1418d52d3997SMartin KaFai Lau 1419f40b6ae2SDavid Ahern p = this_cpu_ptr(res->nh->rt6i_pcpu); 1420d52d3997SMartin KaFai Lau prev = cmpxchg(p, NULL, pcpu_rt); 1421951f788aSEric Dumazet BUG_ON(prev); 1422a94b9367SWei Wang 142361fb0d01SEric Dumazet if (res->f6i->fib6_destroying) { 142461fb0d01SEric Dumazet struct fib6_info *from; 142561fb0d01SEric Dumazet 142661fb0d01SEric Dumazet from = xchg((__force struct fib6_info **)&pcpu_rt->from, NULL); 142761fb0d01SEric Dumazet fib6_info_release(from); 142861fb0d01SEric Dumazet } 142961fb0d01SEric Dumazet 1430d52d3997SMartin KaFai Lau return pcpu_rt; 1431d52d3997SMartin KaFai Lau } 1432d52d3997SMartin KaFai Lau 143335732d01SWei Wang /* exception hash table implementation 143435732d01SWei Wang */ 143535732d01SWei Wang static DEFINE_SPINLOCK(rt6_exception_lock); 143635732d01SWei Wang 143735732d01SWei Wang /* Remove rt6_ex from hash table and free the memory 143835732d01SWei Wang * Caller must hold rt6_exception_lock 143935732d01SWei Wang */ 144035732d01SWei Wang static void rt6_remove_exception(struct rt6_exception_bucket *bucket, 144135732d01SWei Wang struct rt6_exception *rt6_ex) 144235732d01SWei Wang { 1443f5b51fe8SPaolo Abeni struct fib6_info *from; 1444b2427e67SColin Ian King struct net *net; 144581eb8447SWei Wang 144635732d01SWei Wang if (!bucket || !rt6_ex) 144735732d01SWei Wang return; 1448b2427e67SColin Ian King 1449b2427e67SColin Ian King net = dev_net(rt6_ex->rt6i->dst.dev); 1450f5b51fe8SPaolo Abeni net->ipv6.rt6_stats->fib_rt_cache--; 1451f5b51fe8SPaolo Abeni 1452f5b51fe8SPaolo Abeni /* purge completely the exception to allow releasing the held resources: 1453f5b51fe8SPaolo Abeni * some [sk] cache may keep the dst around for unlimited time 1454f5b51fe8SPaolo Abeni */ 14550e233874SEric Dumazet from = xchg((__force struct fib6_info **)&rt6_ex->rt6i->from, NULL); 1456f5b51fe8SPaolo Abeni fib6_info_release(from); 1457f5b51fe8SPaolo Abeni dst_dev_put(&rt6_ex->rt6i->dst); 1458f5b51fe8SPaolo Abeni 145935732d01SWei Wang hlist_del_rcu(&rt6_ex->hlist); 146077634cc6SDavid Ahern dst_release(&rt6_ex->rt6i->dst); 146135732d01SWei Wang kfree_rcu(rt6_ex, rcu); 146235732d01SWei Wang WARN_ON_ONCE(!bucket->depth); 146335732d01SWei Wang bucket->depth--; 146435732d01SWei Wang } 146535732d01SWei Wang 146635732d01SWei Wang /* Remove oldest rt6_ex in bucket and free the memory 146735732d01SWei Wang * Caller must hold rt6_exception_lock 146835732d01SWei Wang */ 146935732d01SWei Wang static void rt6_exception_remove_oldest(struct rt6_exception_bucket *bucket) 147035732d01SWei Wang { 147135732d01SWei Wang struct rt6_exception *rt6_ex, *oldest = NULL; 147235732d01SWei Wang 147335732d01SWei Wang if (!bucket) 147435732d01SWei Wang return; 147535732d01SWei Wang 147635732d01SWei Wang hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) { 147735732d01SWei Wang if (!oldest || time_before(rt6_ex->stamp, oldest->stamp)) 147835732d01SWei Wang oldest = rt6_ex; 147935732d01SWei Wang } 148035732d01SWei Wang rt6_remove_exception(bucket, oldest); 148135732d01SWei Wang } 148235732d01SWei Wang 148335732d01SWei Wang static u32 rt6_exception_hash(const struct in6_addr *dst, 148435732d01SWei Wang const struct in6_addr *src) 148535732d01SWei Wang { 148649ecc2e9SEric Dumazet static siphash_aligned_key_t rt6_exception_key; 14874785305cSEric Dumazet struct { 14884785305cSEric Dumazet struct in6_addr dst; 14894785305cSEric Dumazet struct in6_addr src; 14904785305cSEric Dumazet } __aligned(SIPHASH_ALIGNMENT) combined = { 14914785305cSEric Dumazet .dst = *dst, 14924785305cSEric Dumazet }; 14934785305cSEric Dumazet u64 val; 149435732d01SWei Wang 14954785305cSEric Dumazet net_get_random_once(&rt6_exception_key, sizeof(rt6_exception_key)); 149635732d01SWei Wang 149735732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 149835732d01SWei Wang if (src) 14994785305cSEric Dumazet combined.src = *src; 150035732d01SWei Wang #endif 15014785305cSEric Dumazet val = siphash(&combined, sizeof(combined), &rt6_exception_key); 15024785305cSEric Dumazet 15034785305cSEric Dumazet return hash_64(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT); 150435732d01SWei Wang } 150535732d01SWei Wang 150635732d01SWei Wang /* Helper function to find the cached rt in the hash table 150735732d01SWei Wang * and update bucket pointer to point to the bucket for this 150835732d01SWei Wang * (daddr, saddr) pair 150935732d01SWei Wang * Caller must hold rt6_exception_lock 151035732d01SWei Wang */ 151135732d01SWei Wang static struct rt6_exception * 151235732d01SWei Wang __rt6_find_exception_spinlock(struct rt6_exception_bucket **bucket, 151335732d01SWei Wang const struct in6_addr *daddr, 151435732d01SWei Wang const struct in6_addr *saddr) 151535732d01SWei Wang { 151635732d01SWei Wang struct rt6_exception *rt6_ex; 151735732d01SWei Wang u32 hval; 151835732d01SWei Wang 151935732d01SWei Wang if (!(*bucket) || !daddr) 152035732d01SWei Wang return NULL; 152135732d01SWei Wang 152235732d01SWei Wang hval = rt6_exception_hash(daddr, saddr); 152335732d01SWei Wang *bucket += hval; 152435732d01SWei Wang 152535732d01SWei Wang hlist_for_each_entry(rt6_ex, &(*bucket)->chain, hlist) { 152635732d01SWei Wang struct rt6_info *rt6 = rt6_ex->rt6i; 152735732d01SWei Wang bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr); 152835732d01SWei Wang 152935732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 153035732d01SWei Wang if (matched && saddr) 153135732d01SWei Wang matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr); 153235732d01SWei Wang #endif 153335732d01SWei Wang if (matched) 153435732d01SWei Wang return rt6_ex; 153535732d01SWei Wang } 153635732d01SWei Wang return NULL; 153735732d01SWei Wang } 153835732d01SWei Wang 153935732d01SWei Wang /* Helper function to find the cached rt in the hash table 154035732d01SWei Wang * and update bucket pointer to point to the bucket for this 154135732d01SWei Wang * (daddr, saddr) pair 154235732d01SWei Wang * Caller must hold rcu_read_lock() 154335732d01SWei Wang */ 154435732d01SWei Wang static struct rt6_exception * 154535732d01SWei Wang __rt6_find_exception_rcu(struct rt6_exception_bucket **bucket, 154635732d01SWei Wang const struct in6_addr *daddr, 154735732d01SWei Wang const struct in6_addr *saddr) 154835732d01SWei Wang { 154935732d01SWei Wang struct rt6_exception *rt6_ex; 155035732d01SWei Wang u32 hval; 155135732d01SWei Wang 155235732d01SWei Wang WARN_ON_ONCE(!rcu_read_lock_held()); 155335732d01SWei Wang 155435732d01SWei Wang if (!(*bucket) || !daddr) 155535732d01SWei Wang return NULL; 155635732d01SWei Wang 155735732d01SWei Wang hval = rt6_exception_hash(daddr, saddr); 155835732d01SWei Wang *bucket += hval; 155935732d01SWei Wang 156035732d01SWei Wang hlist_for_each_entry_rcu(rt6_ex, &(*bucket)->chain, hlist) { 156135732d01SWei Wang struct rt6_info *rt6 = rt6_ex->rt6i; 156235732d01SWei Wang bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr); 156335732d01SWei Wang 156435732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 156535732d01SWei Wang if (matched && saddr) 156635732d01SWei Wang matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr); 156735732d01SWei Wang #endif 156835732d01SWei Wang if (matched) 156935732d01SWei Wang return rt6_ex; 157035732d01SWei Wang } 157135732d01SWei Wang return NULL; 157235732d01SWei Wang } 157335732d01SWei Wang 1574b748f260SDavid Ahern static unsigned int fib6_mtu(const struct fib6_result *res) 157535732d01SWei Wang { 1576b748f260SDavid Ahern const struct fib6_nh *nh = res->nh; 1577d4ead6b3SDavid Ahern unsigned int mtu; 1578d4ead6b3SDavid Ahern 1579b748f260SDavid Ahern if (res->f6i->fib6_pmtu) { 1580b748f260SDavid Ahern mtu = res->f6i->fib6_pmtu; 1581dcd1f572SDavid Ahern } else { 1582b748f260SDavid Ahern struct net_device *dev = nh->fib_nh_dev; 1583dcd1f572SDavid Ahern struct inet6_dev *idev; 1584dcd1f572SDavid Ahern 1585dcd1f572SDavid Ahern rcu_read_lock(); 1586dcd1f572SDavid Ahern idev = __in6_dev_get(dev); 1587dcd1f572SDavid Ahern mtu = idev->cnf.mtu6; 1588dcd1f572SDavid Ahern rcu_read_unlock(); 1589dcd1f572SDavid Ahern } 1590dcd1f572SDavid Ahern 1591d4ead6b3SDavid Ahern mtu = min_t(unsigned int, mtu, IP6_MAX_MTU); 1592d4ead6b3SDavid Ahern 1593b748f260SDavid Ahern return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu); 1594d4ead6b3SDavid Ahern } 1595d4ead6b3SDavid Ahern 1596cc5c073aSDavid Ahern #define FIB6_EXCEPTION_BUCKET_FLUSHED 0x1UL 1597cc5c073aSDavid Ahern 1598cc5c073aSDavid Ahern /* used when the flushed bit is not relevant, only access to the bucket 1599cc5c073aSDavid Ahern * (ie., all bucket users except rt6_insert_exception); 1600cc5c073aSDavid Ahern * 1601cc5c073aSDavid Ahern * called under rcu lock; sometimes called with rt6_exception_lock held 1602cc5c073aSDavid Ahern */ 1603cc5c073aSDavid Ahern static 1604cc5c073aSDavid Ahern struct rt6_exception_bucket *fib6_nh_get_excptn_bucket(const struct fib6_nh *nh, 1605cc5c073aSDavid Ahern spinlock_t *lock) 1606cc5c073aSDavid Ahern { 1607cc5c073aSDavid Ahern struct rt6_exception_bucket *bucket; 1608cc5c073aSDavid Ahern 1609cc5c073aSDavid Ahern if (lock) 1610cc5c073aSDavid Ahern bucket = rcu_dereference_protected(nh->rt6i_exception_bucket, 1611cc5c073aSDavid Ahern lockdep_is_held(lock)); 1612cc5c073aSDavid Ahern else 1613cc5c073aSDavid Ahern bucket = rcu_dereference(nh->rt6i_exception_bucket); 1614cc5c073aSDavid Ahern 1615cc5c073aSDavid Ahern /* remove bucket flushed bit if set */ 1616cc5c073aSDavid Ahern if (bucket) { 1617cc5c073aSDavid Ahern unsigned long p = (unsigned long)bucket; 1618cc5c073aSDavid Ahern 1619cc5c073aSDavid Ahern p &= ~FIB6_EXCEPTION_BUCKET_FLUSHED; 1620cc5c073aSDavid Ahern bucket = (struct rt6_exception_bucket *)p; 1621cc5c073aSDavid Ahern } 1622cc5c073aSDavid Ahern 1623cc5c073aSDavid Ahern return bucket; 1624cc5c073aSDavid Ahern } 1625cc5c073aSDavid Ahern 1626cc5c073aSDavid Ahern static bool fib6_nh_excptn_bucket_flushed(struct rt6_exception_bucket *bucket) 1627cc5c073aSDavid Ahern { 1628cc5c073aSDavid Ahern unsigned long p = (unsigned long)bucket; 1629cc5c073aSDavid Ahern 1630cc5c073aSDavid Ahern return !!(p & FIB6_EXCEPTION_BUCKET_FLUSHED); 1631cc5c073aSDavid Ahern } 1632cc5c073aSDavid Ahern 1633cc5c073aSDavid Ahern /* called with rt6_exception_lock held */ 1634cc5c073aSDavid Ahern static void fib6_nh_excptn_bucket_set_flushed(struct fib6_nh *nh, 1635cc5c073aSDavid Ahern spinlock_t *lock) 1636cc5c073aSDavid Ahern { 1637cc5c073aSDavid Ahern struct rt6_exception_bucket *bucket; 1638cc5c073aSDavid Ahern unsigned long p; 1639cc5c073aSDavid Ahern 1640cc5c073aSDavid Ahern bucket = rcu_dereference_protected(nh->rt6i_exception_bucket, 1641cc5c073aSDavid Ahern lockdep_is_held(lock)); 1642cc5c073aSDavid Ahern 1643cc5c073aSDavid Ahern p = (unsigned long)bucket; 1644cc5c073aSDavid Ahern p |= FIB6_EXCEPTION_BUCKET_FLUSHED; 1645cc5c073aSDavid Ahern bucket = (struct rt6_exception_bucket *)p; 1646cc5c073aSDavid Ahern rcu_assign_pointer(nh->rt6i_exception_bucket, bucket); 1647cc5c073aSDavid Ahern } 1648cc5c073aSDavid Ahern 164935732d01SWei Wang static int rt6_insert_exception(struct rt6_info *nrt, 16505012f0a5SDavid Ahern const struct fib6_result *res) 165135732d01SWei Wang { 16525e670d84SDavid Ahern struct net *net = dev_net(nrt->dst.dev); 165335732d01SWei Wang struct rt6_exception_bucket *bucket; 1654cc5c073aSDavid Ahern struct fib6_info *f6i = res->f6i; 165535732d01SWei Wang struct in6_addr *src_key = NULL; 165635732d01SWei Wang struct rt6_exception *rt6_ex; 1657cc5c073aSDavid Ahern struct fib6_nh *nh = res->nh; 1658a00df2caSEric Dumazet int max_depth; 165935732d01SWei Wang int err = 0; 166035732d01SWei Wang 166135732d01SWei Wang spin_lock_bh(&rt6_exception_lock); 166235732d01SWei Wang 1663cc5c073aSDavid Ahern bucket = rcu_dereference_protected(nh->rt6i_exception_bucket, 166435732d01SWei Wang lockdep_is_held(&rt6_exception_lock)); 166535732d01SWei Wang if (!bucket) { 166635732d01SWei Wang bucket = kcalloc(FIB6_EXCEPTION_BUCKET_SIZE, sizeof(*bucket), 166735732d01SWei Wang GFP_ATOMIC); 166835732d01SWei Wang if (!bucket) { 166935732d01SWei Wang err = -ENOMEM; 167035732d01SWei Wang goto out; 167135732d01SWei Wang } 1672cc5c073aSDavid Ahern rcu_assign_pointer(nh->rt6i_exception_bucket, bucket); 1673cc5c073aSDavid Ahern } else if (fib6_nh_excptn_bucket_flushed(bucket)) { 1674cc5c073aSDavid Ahern err = -EINVAL; 1675cc5c073aSDavid Ahern goto out; 167635732d01SWei Wang } 167735732d01SWei Wang 167835732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 16795012f0a5SDavid Ahern /* fib6_src.plen != 0 indicates f6i is in subtree 168035732d01SWei Wang * and exception table is indexed by a hash of 16815012f0a5SDavid Ahern * both fib6_dst and fib6_src. 168235732d01SWei Wang * Otherwise, the exception table is indexed by 16835012f0a5SDavid Ahern * a hash of only fib6_dst. 168435732d01SWei Wang */ 16855012f0a5SDavid Ahern if (f6i->fib6_src.plen) 168635732d01SWei Wang src_key = &nrt->rt6i_src.addr; 168735732d01SWei Wang #endif 16885012f0a5SDavid Ahern /* rt6_mtu_change() might lower mtu on f6i. 1689f5bbe7eeSWei Wang * Only insert this exception route if its mtu 16905012f0a5SDavid Ahern * is less than f6i's mtu value. 1691f5bbe7eeSWei Wang */ 1692b748f260SDavid Ahern if (dst_metric_raw(&nrt->dst, RTAX_MTU) >= fib6_mtu(res)) { 1693f5bbe7eeSWei Wang err = -EINVAL; 1694f5bbe7eeSWei Wang goto out; 1695f5bbe7eeSWei Wang } 169660006a48SWei Wang 169735732d01SWei Wang rt6_ex = __rt6_find_exception_spinlock(&bucket, &nrt->rt6i_dst.addr, 169835732d01SWei Wang src_key); 169935732d01SWei Wang if (rt6_ex) 170035732d01SWei Wang rt6_remove_exception(bucket, rt6_ex); 170135732d01SWei Wang 170235732d01SWei Wang rt6_ex = kzalloc(sizeof(*rt6_ex), GFP_ATOMIC); 170335732d01SWei Wang if (!rt6_ex) { 170435732d01SWei Wang err = -ENOMEM; 170535732d01SWei Wang goto out; 170635732d01SWei Wang } 170735732d01SWei Wang rt6_ex->rt6i = nrt; 170835732d01SWei Wang rt6_ex->stamp = jiffies; 170935732d01SWei Wang hlist_add_head_rcu(&rt6_ex->hlist, &bucket->chain); 171035732d01SWei Wang bucket->depth++; 171181eb8447SWei Wang net->ipv6.rt6_stats->fib_rt_cache++; 171235732d01SWei Wang 1713a00df2caSEric Dumazet /* Randomize max depth to avoid some side channels attacks. */ 17148032bf12SJason A. Donenfeld max_depth = FIB6_MAX_DEPTH + get_random_u32_below(FIB6_MAX_DEPTH); 1715a00df2caSEric Dumazet while (bucket->depth > max_depth) 171635732d01SWei Wang rt6_exception_remove_oldest(bucket); 171735732d01SWei Wang 171835732d01SWei Wang out: 171935732d01SWei Wang spin_unlock_bh(&rt6_exception_lock); 172035732d01SWei Wang 172135732d01SWei Wang /* Update fn->fn_sernum to invalidate all cached dst */ 1722b886d5f2SPaolo Abeni if (!err) { 17235012f0a5SDavid Ahern spin_lock_bh(&f6i->fib6_table->tb6_lock); 17245012f0a5SDavid Ahern fib6_update_sernum(net, f6i); 17255012f0a5SDavid Ahern spin_unlock_bh(&f6i->fib6_table->tb6_lock); 1726b886d5f2SPaolo Abeni fib6_force_start_gc(net); 1727b886d5f2SPaolo Abeni } 172835732d01SWei Wang 172935732d01SWei Wang return err; 173035732d01SWei Wang } 173135732d01SWei Wang 1732c0b220cfSDavid Ahern static void fib6_nh_flush_exceptions(struct fib6_nh *nh, struct fib6_info *from) 173335732d01SWei Wang { 173435732d01SWei Wang struct rt6_exception_bucket *bucket; 173535732d01SWei Wang struct rt6_exception *rt6_ex; 173635732d01SWei Wang struct hlist_node *tmp; 173735732d01SWei Wang int i; 173835732d01SWei Wang 173935732d01SWei Wang spin_lock_bh(&rt6_exception_lock); 174035732d01SWei Wang 1741cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); 174235732d01SWei Wang if (!bucket) 174335732d01SWei Wang goto out; 174435732d01SWei Wang 1745cc5c073aSDavid Ahern /* Prevent rt6_insert_exception() to recreate the bucket list */ 1746cc5c073aSDavid Ahern if (!from) 1747cc5c073aSDavid Ahern fib6_nh_excptn_bucket_set_flushed(nh, &rt6_exception_lock); 1748cc5c073aSDavid Ahern 174935732d01SWei Wang for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { 1750cc5c073aSDavid Ahern hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist) { 1751cc5c073aSDavid Ahern if (!from || 1752cc5c073aSDavid Ahern rcu_access_pointer(rt6_ex->rt6i->from) == from) 175335732d01SWei Wang rt6_remove_exception(bucket, rt6_ex); 1754cc5c073aSDavid Ahern } 1755cc5c073aSDavid Ahern WARN_ON_ONCE(!from && bucket->depth); 175635732d01SWei Wang bucket++; 175735732d01SWei Wang } 175835732d01SWei Wang out: 175935732d01SWei Wang spin_unlock_bh(&rt6_exception_lock); 176035732d01SWei Wang } 176135732d01SWei Wang 1762e659ba31SDavid Ahern static int rt6_nh_flush_exceptions(struct fib6_nh *nh, void *arg) 1763e659ba31SDavid Ahern { 1764e659ba31SDavid Ahern struct fib6_info *f6i = arg; 1765e659ba31SDavid Ahern 1766e659ba31SDavid Ahern fib6_nh_flush_exceptions(nh, f6i); 1767e659ba31SDavid Ahern 1768e659ba31SDavid Ahern return 0; 1769e659ba31SDavid Ahern } 1770e659ba31SDavid Ahern 1771c0b220cfSDavid Ahern void rt6_flush_exceptions(struct fib6_info *f6i) 1772c0b220cfSDavid Ahern { 1773e659ba31SDavid Ahern if (f6i->nh) 1774e659ba31SDavid Ahern nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_flush_exceptions, 1775e659ba31SDavid Ahern f6i); 1776e659ba31SDavid Ahern else 17771cf844c7SDavid Ahern fib6_nh_flush_exceptions(f6i->fib6_nh, f6i); 1778c0b220cfSDavid Ahern } 1779c0b220cfSDavid Ahern 178035732d01SWei Wang /* Find cached rt in the hash table inside passed in rt 178135732d01SWei Wang * Caller has to hold rcu_read_lock() 178235732d01SWei Wang */ 17837e4b5128SDavid Ahern static struct rt6_info *rt6_find_cached_rt(const struct fib6_result *res, 1784510e2cedSWei Wang const struct in6_addr *daddr, 1785510e2cedSWei Wang const struct in6_addr *saddr) 178635732d01SWei Wang { 1787510e2cedSWei Wang const struct in6_addr *src_key = NULL; 178835732d01SWei Wang struct rt6_exception_bucket *bucket; 178935732d01SWei Wang struct rt6_exception *rt6_ex; 17907e4b5128SDavid Ahern struct rt6_info *ret = NULL; 179135732d01SWei Wang 179235732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 17937e4b5128SDavid Ahern /* fib6i_src.plen != 0 indicates f6i is in subtree 179435732d01SWei Wang * and exception table is indexed by a hash of 17957e4b5128SDavid Ahern * both fib6_dst and fib6_src. 1796510e2cedSWei Wang * However, the src addr used to create the hash 1797510e2cedSWei Wang * might not be exactly the passed in saddr which 1798510e2cedSWei Wang * is a /128 addr from the flow. 1799510e2cedSWei Wang * So we need to use f6i->fib6_src to redo lookup 1800510e2cedSWei Wang * if the passed in saddr does not find anything. 1801510e2cedSWei Wang * (See the logic in ip6_rt_cache_alloc() on how 1802510e2cedSWei Wang * rt->rt6i_src is updated.) 180335732d01SWei Wang */ 18047e4b5128SDavid Ahern if (res->f6i->fib6_src.plen) 180535732d01SWei Wang src_key = saddr; 1806510e2cedSWei Wang find_ex: 180735732d01SWei Wang #endif 1808cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(res->nh, NULL); 180935732d01SWei Wang rt6_ex = __rt6_find_exception_rcu(&bucket, daddr, src_key); 181035732d01SWei Wang 181135732d01SWei Wang if (rt6_ex && !rt6_check_expired(rt6_ex->rt6i)) 18127e4b5128SDavid Ahern ret = rt6_ex->rt6i; 181335732d01SWei Wang 1814510e2cedSWei Wang #ifdef CONFIG_IPV6_SUBTREES 1815510e2cedSWei Wang /* Use fib6_src as src_key and redo lookup */ 1816510e2cedSWei Wang if (!ret && src_key && src_key != &res->f6i->fib6_src.addr) { 1817510e2cedSWei Wang src_key = &res->f6i->fib6_src.addr; 1818510e2cedSWei Wang goto find_ex; 1819510e2cedSWei Wang } 1820510e2cedSWei Wang #endif 1821510e2cedSWei Wang 18227e4b5128SDavid Ahern return ret; 182335732d01SWei Wang } 182435732d01SWei Wang 182535732d01SWei Wang /* Remove the passed in cached rt from the hash table that contains it */ 1826cc5c073aSDavid Ahern static int fib6_nh_remove_exception(const struct fib6_nh *nh, int plen, 1827c0b220cfSDavid Ahern const struct rt6_info *rt) 182835732d01SWei Wang { 1829c0b220cfSDavid Ahern const struct in6_addr *src_key = NULL; 183035732d01SWei Wang struct rt6_exception_bucket *bucket; 183135732d01SWei Wang struct rt6_exception *rt6_ex; 183235732d01SWei Wang int err; 183335732d01SWei Wang 1834cc5c073aSDavid Ahern if (!rcu_access_pointer(nh->rt6i_exception_bucket)) 183535732d01SWei Wang return -ENOENT; 183635732d01SWei Wang 183735732d01SWei Wang spin_lock_bh(&rt6_exception_lock); 1838cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); 1839cc5c073aSDavid Ahern 184035732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 1841cc5c073aSDavid Ahern /* rt6i_src.plen != 0 indicates 'from' is in subtree 1842cc5c073aSDavid Ahern * and exception table is indexed by a hash of 1843cc5c073aSDavid Ahern * both rt6i_dst and rt6i_src. 184435732d01SWei Wang * Otherwise, the exception table is indexed by 184535732d01SWei Wang * a hash of only rt6i_dst. 184635732d01SWei Wang */ 1847c0b220cfSDavid Ahern if (plen) 184835732d01SWei Wang src_key = &rt->rt6i_src.addr; 184935732d01SWei Wang #endif 185035732d01SWei Wang rt6_ex = __rt6_find_exception_spinlock(&bucket, 185135732d01SWei Wang &rt->rt6i_dst.addr, 185235732d01SWei Wang src_key); 185335732d01SWei Wang if (rt6_ex) { 185435732d01SWei Wang rt6_remove_exception(bucket, rt6_ex); 185535732d01SWei Wang err = 0; 185635732d01SWei Wang } else { 185735732d01SWei Wang err = -ENOENT; 185835732d01SWei Wang } 185935732d01SWei Wang 186035732d01SWei Wang spin_unlock_bh(&rt6_exception_lock); 186135732d01SWei Wang return err; 186235732d01SWei Wang } 186335732d01SWei Wang 1864e659ba31SDavid Ahern struct fib6_nh_excptn_arg { 1865e659ba31SDavid Ahern struct rt6_info *rt; 1866e659ba31SDavid Ahern int plen; 1867e659ba31SDavid Ahern }; 1868e659ba31SDavid Ahern 1869e659ba31SDavid Ahern static int rt6_nh_remove_exception_rt(struct fib6_nh *nh, void *_arg) 1870e659ba31SDavid Ahern { 1871e659ba31SDavid Ahern struct fib6_nh_excptn_arg *arg = _arg; 1872e659ba31SDavid Ahern int err; 1873e659ba31SDavid Ahern 1874e659ba31SDavid Ahern err = fib6_nh_remove_exception(nh, arg->plen, arg->rt); 1875e659ba31SDavid Ahern if (err == 0) 1876e659ba31SDavid Ahern return 1; 1877e659ba31SDavid Ahern 1878e659ba31SDavid Ahern return 0; 1879e659ba31SDavid Ahern } 1880e659ba31SDavid Ahern 1881c0b220cfSDavid Ahern static int rt6_remove_exception_rt(struct rt6_info *rt) 1882c0b220cfSDavid Ahern { 1883c0b220cfSDavid Ahern struct fib6_info *from; 1884c0b220cfSDavid Ahern 1885c0b220cfSDavid Ahern from = rcu_dereference(rt->from); 1886cc5c073aSDavid Ahern if (!from || !(rt->rt6i_flags & RTF_CACHE)) 1887c0b220cfSDavid Ahern return -EINVAL; 1888c0b220cfSDavid Ahern 1889e659ba31SDavid Ahern if (from->nh) { 1890e659ba31SDavid Ahern struct fib6_nh_excptn_arg arg = { 1891e659ba31SDavid Ahern .rt = rt, 1892e659ba31SDavid Ahern .plen = from->fib6_src.plen 1893e659ba31SDavid Ahern }; 1894e659ba31SDavid Ahern int rc; 1895e659ba31SDavid Ahern 1896e659ba31SDavid Ahern /* rc = 1 means an entry was found */ 1897e659ba31SDavid Ahern rc = nexthop_for_each_fib6_nh(from->nh, 1898e659ba31SDavid Ahern rt6_nh_remove_exception_rt, 1899e659ba31SDavid Ahern &arg); 1900e659ba31SDavid Ahern return rc ? 0 : -ENOENT; 1901e659ba31SDavid Ahern } 1902e659ba31SDavid Ahern 19031cf844c7SDavid Ahern return fib6_nh_remove_exception(from->fib6_nh, 1904cc5c073aSDavid Ahern from->fib6_src.plen, rt); 1905c0b220cfSDavid Ahern } 1906c0b220cfSDavid Ahern 190735732d01SWei Wang /* Find rt6_ex which contains the passed in rt cache and 190835732d01SWei Wang * refresh its stamp 190935732d01SWei Wang */ 1910cc5c073aSDavid Ahern static void fib6_nh_update_exception(const struct fib6_nh *nh, int plen, 1911c0b220cfSDavid Ahern const struct rt6_info *rt) 191235732d01SWei Wang { 1913c0b220cfSDavid Ahern const struct in6_addr *src_key = NULL; 191435732d01SWei Wang struct rt6_exception_bucket *bucket; 191535732d01SWei Wang struct rt6_exception *rt6_ex; 1916193f3685SPaolo Abeni 1917cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, NULL); 191835732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 1919cc5c073aSDavid Ahern /* rt6i_src.plen != 0 indicates 'from' is in subtree 1920cc5c073aSDavid Ahern * and exception table is indexed by a hash of 1921cc5c073aSDavid Ahern * both rt6i_dst and rt6i_src. 192235732d01SWei Wang * Otherwise, the exception table is indexed by 192335732d01SWei Wang * a hash of only rt6i_dst. 192435732d01SWei Wang */ 1925c0b220cfSDavid Ahern if (plen) 192635732d01SWei Wang src_key = &rt->rt6i_src.addr; 192735732d01SWei Wang #endif 1928cc5c073aSDavid Ahern rt6_ex = __rt6_find_exception_rcu(&bucket, &rt->rt6i_dst.addr, src_key); 192935732d01SWei Wang if (rt6_ex) 193035732d01SWei Wang rt6_ex->stamp = jiffies; 1931c0b220cfSDavid Ahern } 193235732d01SWei Wang 1933e659ba31SDavid Ahern struct fib6_nh_match_arg { 1934e659ba31SDavid Ahern const struct net_device *dev; 1935e659ba31SDavid Ahern const struct in6_addr *gw; 1936e659ba31SDavid Ahern struct fib6_nh *match; 1937e659ba31SDavid Ahern }; 1938e659ba31SDavid Ahern 1939e659ba31SDavid Ahern /* determine if fib6_nh has given device and gateway */ 1940e659ba31SDavid Ahern static int fib6_nh_find_match(struct fib6_nh *nh, void *_arg) 1941e659ba31SDavid Ahern { 1942e659ba31SDavid Ahern struct fib6_nh_match_arg *arg = _arg; 1943e659ba31SDavid Ahern 1944e659ba31SDavid Ahern if (arg->dev != nh->fib_nh_dev || 1945e659ba31SDavid Ahern (arg->gw && !nh->fib_nh_gw_family) || 1946e659ba31SDavid Ahern (!arg->gw && nh->fib_nh_gw_family) || 1947e659ba31SDavid Ahern (arg->gw && !ipv6_addr_equal(arg->gw, &nh->fib_nh_gw6))) 1948e659ba31SDavid Ahern return 0; 1949e659ba31SDavid Ahern 1950e659ba31SDavid Ahern arg->match = nh; 1951e659ba31SDavid Ahern 1952e659ba31SDavid Ahern /* found a match, break the loop */ 1953e659ba31SDavid Ahern return 1; 1954e659ba31SDavid Ahern } 1955e659ba31SDavid Ahern 1956c0b220cfSDavid Ahern static void rt6_update_exception_stamp_rt(struct rt6_info *rt) 1957c0b220cfSDavid Ahern { 1958c0b220cfSDavid Ahern struct fib6_info *from; 1959e659ba31SDavid Ahern struct fib6_nh *fib6_nh; 1960c0b220cfSDavid Ahern 1961c0b220cfSDavid Ahern rcu_read_lock(); 1962c0b220cfSDavid Ahern 1963c0b220cfSDavid Ahern from = rcu_dereference(rt->from); 1964c0b220cfSDavid Ahern if (!from || !(rt->rt6i_flags & RTF_CACHE)) 1965c0b220cfSDavid Ahern goto unlock; 1966c0b220cfSDavid Ahern 1967e659ba31SDavid Ahern if (from->nh) { 1968e659ba31SDavid Ahern struct fib6_nh_match_arg arg = { 1969e659ba31SDavid Ahern .dev = rt->dst.dev, 1970e659ba31SDavid Ahern .gw = &rt->rt6i_gateway, 1971e659ba31SDavid Ahern }; 1972e659ba31SDavid Ahern 1973e659ba31SDavid Ahern nexthop_for_each_fib6_nh(from->nh, fib6_nh_find_match, &arg); 1974e659ba31SDavid Ahern 1975e659ba31SDavid Ahern if (!arg.match) 1976cff6a327SDavid Ahern goto unlock; 1977e659ba31SDavid Ahern fib6_nh = arg.match; 1978e659ba31SDavid Ahern } else { 1979e659ba31SDavid Ahern fib6_nh = from->fib6_nh; 1980e659ba31SDavid Ahern } 1981e659ba31SDavid Ahern fib6_nh_update_exception(fib6_nh, from->fib6_src.plen, rt); 1982193f3685SPaolo Abeni unlock: 198335732d01SWei Wang rcu_read_unlock(); 198435732d01SWei Wang } 198535732d01SWei Wang 1986e9fa1495SStefano Brivio static bool rt6_mtu_change_route_allowed(struct inet6_dev *idev, 1987e9fa1495SStefano Brivio struct rt6_info *rt, int mtu) 1988e9fa1495SStefano Brivio { 1989e9fa1495SStefano Brivio /* If the new MTU is lower than the route PMTU, this new MTU will be the 1990e9fa1495SStefano Brivio * lowest MTU in the path: always allow updating the route PMTU to 1991e9fa1495SStefano Brivio * reflect PMTU decreases. 1992e9fa1495SStefano Brivio * 1993e9fa1495SStefano Brivio * If the new MTU is higher, and the route PMTU is equal to the local 1994e9fa1495SStefano Brivio * MTU, this means the old MTU is the lowest in the path, so allow 1995e9fa1495SStefano Brivio * updating it: if other nodes now have lower MTUs, PMTU discovery will 1996e9fa1495SStefano Brivio * handle this. 1997e9fa1495SStefano Brivio */ 1998e9fa1495SStefano Brivio 1999e9fa1495SStefano Brivio if (dst_mtu(&rt->dst) >= mtu) 2000e9fa1495SStefano Brivio return true; 2001e9fa1495SStefano Brivio 2002e9fa1495SStefano Brivio if (dst_mtu(&rt->dst) == idev->cnf.mtu6) 2003e9fa1495SStefano Brivio return true; 2004e9fa1495SStefano Brivio 2005e9fa1495SStefano Brivio return false; 2006e9fa1495SStefano Brivio } 2007e9fa1495SStefano Brivio 2008e9fa1495SStefano Brivio static void rt6_exceptions_update_pmtu(struct inet6_dev *idev, 2009cc5c073aSDavid Ahern const struct fib6_nh *nh, int mtu) 2010f5bbe7eeSWei Wang { 2011f5bbe7eeSWei Wang struct rt6_exception_bucket *bucket; 2012f5bbe7eeSWei Wang struct rt6_exception *rt6_ex; 2013f5bbe7eeSWei Wang int i; 2014f5bbe7eeSWei Wang 2015cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); 2016e9fa1495SStefano Brivio if (!bucket) 2017e9fa1495SStefano Brivio return; 2018e9fa1495SStefano Brivio 2019f5bbe7eeSWei Wang for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { 2020f5bbe7eeSWei Wang hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) { 2021f5bbe7eeSWei Wang struct rt6_info *entry = rt6_ex->rt6i; 2022e9fa1495SStefano Brivio 2023e9fa1495SStefano Brivio /* For RTF_CACHE with rt6i_pmtu == 0 (i.e. a redirected 2024d4ead6b3SDavid Ahern * route), the metrics of its rt->from have already 2025f5bbe7eeSWei Wang * been updated. 2026f5bbe7eeSWei Wang */ 2027d4ead6b3SDavid Ahern if (dst_metric_raw(&entry->dst, RTAX_MTU) && 2028e9fa1495SStefano Brivio rt6_mtu_change_route_allowed(idev, entry, mtu)) 2029d4ead6b3SDavid Ahern dst_metric_set(&entry->dst, RTAX_MTU, mtu); 2030f5bbe7eeSWei Wang } 2031f5bbe7eeSWei Wang bucket++; 2032f5bbe7eeSWei Wang } 2033f5bbe7eeSWei Wang } 2034f5bbe7eeSWei Wang 2035b16cb459SWei Wang #define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE) 2036b16cb459SWei Wang 2037cc5c073aSDavid Ahern static void fib6_nh_exceptions_clean_tohost(const struct fib6_nh *nh, 2038cc5c073aSDavid Ahern const struct in6_addr *gateway) 2039b16cb459SWei Wang { 2040b16cb459SWei Wang struct rt6_exception_bucket *bucket; 2041b16cb459SWei Wang struct rt6_exception *rt6_ex; 2042b16cb459SWei Wang struct hlist_node *tmp; 2043b16cb459SWei Wang int i; 2044b16cb459SWei Wang 2045cc5c073aSDavid Ahern if (!rcu_access_pointer(nh->rt6i_exception_bucket)) 2046b16cb459SWei Wang return; 2047b16cb459SWei Wang 2048b16cb459SWei Wang spin_lock_bh(&rt6_exception_lock); 2049cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); 2050b16cb459SWei Wang if (bucket) { 2051b16cb459SWei Wang for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { 2052b16cb459SWei Wang hlist_for_each_entry_safe(rt6_ex, tmp, 2053b16cb459SWei Wang &bucket->chain, hlist) { 2054b16cb459SWei Wang struct rt6_info *entry = rt6_ex->rt6i; 2055b16cb459SWei Wang 2056b16cb459SWei Wang if ((entry->rt6i_flags & RTF_CACHE_GATEWAY) == 2057b16cb459SWei Wang RTF_CACHE_GATEWAY && 2058b16cb459SWei Wang ipv6_addr_equal(gateway, 2059b16cb459SWei Wang &entry->rt6i_gateway)) { 2060b16cb459SWei Wang rt6_remove_exception(bucket, rt6_ex); 2061b16cb459SWei Wang } 2062b16cb459SWei Wang } 2063b16cb459SWei Wang bucket++; 2064b16cb459SWei Wang } 2065b16cb459SWei Wang } 2066b16cb459SWei Wang 2067b16cb459SWei Wang spin_unlock_bh(&rt6_exception_lock); 2068b16cb459SWei Wang } 2069b16cb459SWei Wang 2070c757faa8SWei Wang static void rt6_age_examine_exception(struct rt6_exception_bucket *bucket, 2071c757faa8SWei Wang struct rt6_exception *rt6_ex, 2072c757faa8SWei Wang struct fib6_gc_args *gc_args, 2073c757faa8SWei Wang unsigned long now) 2074c757faa8SWei Wang { 2075c757faa8SWei Wang struct rt6_info *rt = rt6_ex->rt6i; 2076c757faa8SWei Wang 20771859bac0SPaolo Abeni /* we are pruning and obsoleting aged-out and non gateway exceptions 20781859bac0SPaolo Abeni * even if others have still references to them, so that on next 20791859bac0SPaolo Abeni * dst_check() such references can be dropped. 20801859bac0SPaolo Abeni * EXPIRES exceptions - e.g. pmtu-generated ones are pruned when 20811859bac0SPaolo Abeni * expired, independently from their aging, as per RFC 8201 section 4 20821859bac0SPaolo Abeni */ 208331afeb42SWei Wang if (!(rt->rt6i_flags & RTF_EXPIRES)) { 208431afeb42SWei Wang if (time_after_eq(now, rt->dst.lastuse + gc_args->timeout)) { 2085c757faa8SWei Wang RT6_TRACE("aging clone %p\n", rt); 2086c757faa8SWei Wang rt6_remove_exception(bucket, rt6_ex); 2087c757faa8SWei Wang return; 208831afeb42SWei Wang } 208931afeb42SWei Wang } else if (time_after(jiffies, rt->dst.expires)) { 209031afeb42SWei Wang RT6_TRACE("purging expired route %p\n", rt); 209131afeb42SWei Wang rt6_remove_exception(bucket, rt6_ex); 209231afeb42SWei Wang return; 209331afeb42SWei Wang } 209431afeb42SWei Wang 209531afeb42SWei Wang if (rt->rt6i_flags & RTF_GATEWAY) { 2096c757faa8SWei Wang struct neighbour *neigh; 2097c757faa8SWei Wang 20981bfa26ffSEric Dumazet neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway); 20991bfa26ffSEric Dumazet 2100b7a320c3SXu Jia if (!(neigh && (neigh->flags & NTF_ROUTER))) { 2101c757faa8SWei Wang RT6_TRACE("purging route %p via non-router but gateway\n", 2102c757faa8SWei Wang rt); 2103c757faa8SWei Wang rt6_remove_exception(bucket, rt6_ex); 2104c757faa8SWei Wang return; 2105c757faa8SWei Wang } 2106c757faa8SWei Wang } 210731afeb42SWei Wang 2108c757faa8SWei Wang gc_args->more++; 2109c757faa8SWei Wang } 2110c757faa8SWei Wang 2111cc5c073aSDavid Ahern static void fib6_nh_age_exceptions(const struct fib6_nh *nh, 2112c757faa8SWei Wang struct fib6_gc_args *gc_args, 2113c757faa8SWei Wang unsigned long now) 2114c757faa8SWei Wang { 2115c757faa8SWei Wang struct rt6_exception_bucket *bucket; 2116c757faa8SWei Wang struct rt6_exception *rt6_ex; 2117c757faa8SWei Wang struct hlist_node *tmp; 2118c757faa8SWei Wang int i; 2119c757faa8SWei Wang 2120cc5c073aSDavid Ahern if (!rcu_access_pointer(nh->rt6i_exception_bucket)) 2121c757faa8SWei Wang return; 2122c757faa8SWei Wang 21231bfa26ffSEric Dumazet rcu_read_lock_bh(); 21241bfa26ffSEric Dumazet spin_lock(&rt6_exception_lock); 2125cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); 2126c757faa8SWei Wang if (bucket) { 2127c757faa8SWei Wang for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { 2128c757faa8SWei Wang hlist_for_each_entry_safe(rt6_ex, tmp, 2129c757faa8SWei Wang &bucket->chain, hlist) { 2130c757faa8SWei Wang rt6_age_examine_exception(bucket, rt6_ex, 2131c757faa8SWei Wang gc_args, now); 2132c757faa8SWei Wang } 2133c757faa8SWei Wang bucket++; 2134c757faa8SWei Wang } 2135c757faa8SWei Wang } 21361bfa26ffSEric Dumazet spin_unlock(&rt6_exception_lock); 21371bfa26ffSEric Dumazet rcu_read_unlock_bh(); 2138c757faa8SWei Wang } 2139c757faa8SWei Wang 2140e659ba31SDavid Ahern struct fib6_nh_age_excptn_arg { 2141e659ba31SDavid Ahern struct fib6_gc_args *gc_args; 2142e659ba31SDavid Ahern unsigned long now; 2143e659ba31SDavid Ahern }; 2144e659ba31SDavid Ahern 2145e659ba31SDavid Ahern static int rt6_nh_age_exceptions(struct fib6_nh *nh, void *_arg) 2146e659ba31SDavid Ahern { 2147e659ba31SDavid Ahern struct fib6_nh_age_excptn_arg *arg = _arg; 2148e659ba31SDavid Ahern 2149e659ba31SDavid Ahern fib6_nh_age_exceptions(nh, arg->gc_args, arg->now); 2150e659ba31SDavid Ahern return 0; 2151e659ba31SDavid Ahern } 2152e659ba31SDavid Ahern 2153cc5c073aSDavid Ahern void rt6_age_exceptions(struct fib6_info *f6i, 2154c0b220cfSDavid Ahern struct fib6_gc_args *gc_args, 2155c0b220cfSDavid Ahern unsigned long now) 2156c0b220cfSDavid Ahern { 2157e659ba31SDavid Ahern if (f6i->nh) { 2158e659ba31SDavid Ahern struct fib6_nh_age_excptn_arg arg = { 2159e659ba31SDavid Ahern .gc_args = gc_args, 2160e659ba31SDavid Ahern .now = now 2161e659ba31SDavid Ahern }; 2162e659ba31SDavid Ahern 2163e659ba31SDavid Ahern nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_age_exceptions, 2164e659ba31SDavid Ahern &arg); 2165e659ba31SDavid Ahern } else { 21661cf844c7SDavid Ahern fib6_nh_age_exceptions(f6i->fib6_nh, gc_args, now); 2167c0b220cfSDavid Ahern } 2168e659ba31SDavid Ahern } 2169c0b220cfSDavid Ahern 21701d053da9SDavid Ahern /* must be called with rcu lock held */ 2171effda4ddSDavid Ahern int fib6_table_lookup(struct net *net, struct fib6_table *table, int oif, 2172effda4ddSDavid Ahern struct flowi6 *fl6, struct fib6_result *res, int strict) 21731da177e4SLinus Torvalds { 2174367efcb9SMartin KaFai Lau struct fib6_node *fn, *saved_fn; 21751da177e4SLinus Torvalds 21766454743bSDavid Ahern fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); 2177367efcb9SMartin KaFai Lau saved_fn = fn; 21781da177e4SLinus Torvalds 2179a3c00e46SMartin KaFai Lau redo_rt6_select: 2180effda4ddSDavid Ahern rt6_select(net, fn, oif, res, strict); 2181effda4ddSDavid Ahern if (res->f6i == net->ipv6.fib6_null_entry) { 2182a3c00e46SMartin KaFai Lau fn = fib6_backtrack(fn, &fl6->saddr); 2183a3c00e46SMartin KaFai Lau if (fn) 2184a3c00e46SMartin KaFai Lau goto redo_rt6_select; 2185367efcb9SMartin KaFai Lau else if (strict & RT6_LOOKUP_F_REACHABLE) { 2186367efcb9SMartin KaFai Lau /* also consider unreachable route */ 2187367efcb9SMartin KaFai Lau strict &= ~RT6_LOOKUP_F_REACHABLE; 2188367efcb9SMartin KaFai Lau fn = saved_fn; 2189367efcb9SMartin KaFai Lau goto redo_rt6_select; 2190367efcb9SMartin KaFai Lau } 2191a3c00e46SMartin KaFai Lau } 2192a3c00e46SMartin KaFai Lau 2193effda4ddSDavid Ahern trace_fib6_table_lookup(net, res, table, fl6); 2194d52d3997SMartin KaFai Lau 2195effda4ddSDavid Ahern return 0; 21961d053da9SDavid Ahern } 21971d053da9SDavid Ahern 21981d053da9SDavid Ahern struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, 21991d053da9SDavid Ahern int oif, struct flowi6 *fl6, 22001d053da9SDavid Ahern const struct sk_buff *skb, int flags) 22011d053da9SDavid Ahern { 2202b1d40991SDavid Ahern struct fib6_result res = {}; 22030e09edccSWei Wang struct rt6_info *rt = NULL; 22041d053da9SDavid Ahern int strict = 0; 22051d053da9SDavid Ahern 22060e09edccSWei Wang WARN_ON_ONCE((flags & RT6_LOOKUP_F_DST_NOREF) && 22070e09edccSWei Wang !rcu_read_lock_held()); 22080e09edccSWei Wang 22091d053da9SDavid Ahern strict |= flags & RT6_LOOKUP_F_IFACE; 22101d053da9SDavid Ahern strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE; 22111d053da9SDavid Ahern if (net->ipv6.devconf_all->forwarding == 0) 22121d053da9SDavid Ahern strict |= RT6_LOOKUP_F_REACHABLE; 22131d053da9SDavid Ahern 22141d053da9SDavid Ahern rcu_read_lock(); 22151d053da9SDavid Ahern 2216effda4ddSDavid Ahern fib6_table_lookup(net, table, oif, fl6, &res, strict); 22170e09edccSWei Wang if (res.f6i == net->ipv6.fib6_null_entry) 22180e09edccSWei Wang goto out; 221923fb93a4SDavid Ahern 2220b1d40991SDavid Ahern fib6_select_path(net, &res, fl6, oif, false, skb, strict); 2221d83009d4SDavid Ahern 222223fb93a4SDavid Ahern /*Search through exception table */ 22237e4b5128SDavid Ahern rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr); 222423fb93a4SDavid Ahern if (rt) { 22250e09edccSWei Wang goto out; 22263da59bd9SMartin KaFai Lau } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) && 2227b1d40991SDavid Ahern !res.nh->fib_nh_gw_family)) { 22283da59bd9SMartin KaFai Lau /* Create a RTF_CACHE clone which will not be 22293da59bd9SMartin KaFai Lau * owned by the fib6 tree. It is for the special case where 22303da59bd9SMartin KaFai Lau * the daddr in the skb during the neighbor look-up is different 22313da59bd9SMartin KaFai Lau * from the fl6->daddr used to look-up route here. 22323da59bd9SMartin KaFai Lau */ 22330e09edccSWei Wang rt = ip6_rt_cache_alloc(&res, &fl6->daddr, NULL); 22343da59bd9SMartin KaFai Lau 22350e09edccSWei Wang if (rt) { 22360e09edccSWei Wang /* 1 refcnt is taken during ip6_rt_cache_alloc(). 22370e09edccSWei Wang * As rt6_uncached_list_add() does not consume refcnt, 22380e09edccSWei Wang * this refcnt is always returned to the caller even 22390e09edccSWei Wang * if caller sets RT6_LOOKUP_F_DST_NOREF flag. 22400e09edccSWei Wang */ 22410e09edccSWei Wang rt6_uncached_list_add(rt); 22424d85cd0cSDavid Ahern rcu_read_unlock(); 22433da59bd9SMartin KaFai Lau 22440e09edccSWei Wang return rt; 22451cfb71eeSWei Wang } 2246d52d3997SMartin KaFai Lau } else { 2247d52d3997SMartin KaFai Lau /* Get a percpu copy */ 2248951f788aSEric Dumazet local_bh_disable(); 22490e09edccSWei Wang rt = rt6_get_pcpu_route(&res); 2250d52d3997SMartin KaFai Lau 22510e09edccSWei Wang if (!rt) 22520e09edccSWei Wang rt = rt6_make_pcpu_route(net, &res); 225393531c67SDavid Ahern 2254951f788aSEric Dumazet local_bh_enable(); 22550e09edccSWei Wang } 22560e09edccSWei Wang out: 22570e09edccSWei Wang if (!rt) 22580e09edccSWei Wang rt = net->ipv6.ip6_null_entry; 22590e09edccSWei Wang if (!(flags & RT6_LOOKUP_F_DST_NOREF)) 22600e09edccSWei Wang ip6_hold_safe(net, &rt); 2261951f788aSEric Dumazet rcu_read_unlock(); 2262d4bea421SDavid Ahern 22630e09edccSWei Wang return rt; 2264c71099acSThomas Graf } 22659ff74384SDavid Ahern EXPORT_SYMBOL_GPL(ip6_pol_route); 2266c71099acSThomas Graf 226755cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_input(struct net *net, 2268b75cc8f9SDavid Ahern struct fib6_table *table, 2269b75cc8f9SDavid Ahern struct flowi6 *fl6, 2270b75cc8f9SDavid Ahern const struct sk_buff *skb, 2271b75cc8f9SDavid Ahern int flags) 22724acad72dSPavel Emelyanov { 2273b75cc8f9SDavid Ahern return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, skb, flags); 22744acad72dSPavel Emelyanov } 22754acad72dSPavel Emelyanov 2276d409b847SMahesh Bandewar struct dst_entry *ip6_route_input_lookup(struct net *net, 227772331bc0SShmulik Ladkani struct net_device *dev, 2278b75cc8f9SDavid Ahern struct flowi6 *fl6, 2279b75cc8f9SDavid Ahern const struct sk_buff *skb, 2280b75cc8f9SDavid Ahern int flags) 228172331bc0SShmulik Ladkani { 228272331bc0SShmulik Ladkani if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG) 228372331bc0SShmulik Ladkani flags |= RT6_LOOKUP_F_IFACE; 228472331bc0SShmulik Ladkani 2285b75cc8f9SDavid Ahern return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_input); 228672331bc0SShmulik Ladkani } 2287d409b847SMahesh Bandewar EXPORT_SYMBOL_GPL(ip6_route_input_lookup); 228872331bc0SShmulik Ladkani 228923aebdacSJakub Sitnicki static void ip6_multipath_l3_keys(const struct sk_buff *skb, 22905e5d6fedSRoopa Prabhu struct flow_keys *keys, 22915e5d6fedSRoopa Prabhu struct flow_keys *flkeys) 229223aebdacSJakub Sitnicki { 229323aebdacSJakub Sitnicki const struct ipv6hdr *outer_iph = ipv6_hdr(skb); 229423aebdacSJakub Sitnicki const struct ipv6hdr *key_iph = outer_iph; 22955e5d6fedSRoopa Prabhu struct flow_keys *_flkeys = flkeys; 229623aebdacSJakub Sitnicki const struct ipv6hdr *inner_iph; 229723aebdacSJakub Sitnicki const struct icmp6hdr *icmph; 229823aebdacSJakub Sitnicki struct ipv6hdr _inner_iph; 2299cea67a2dSEric Dumazet struct icmp6hdr _icmph; 230023aebdacSJakub Sitnicki 230123aebdacSJakub Sitnicki if (likely(outer_iph->nexthdr != IPPROTO_ICMPV6)) 230223aebdacSJakub Sitnicki goto out; 230323aebdacSJakub Sitnicki 2304cea67a2dSEric Dumazet icmph = skb_header_pointer(skb, skb_transport_offset(skb), 2305cea67a2dSEric Dumazet sizeof(_icmph), &_icmph); 2306cea67a2dSEric Dumazet if (!icmph) 2307cea67a2dSEric Dumazet goto out; 2308cea67a2dSEric Dumazet 230954074f1dSMatteo Croce if (!icmpv6_is_err(icmph->icmp6_type)) 231023aebdacSJakub Sitnicki goto out; 231123aebdacSJakub Sitnicki 231223aebdacSJakub Sitnicki inner_iph = skb_header_pointer(skb, 231323aebdacSJakub Sitnicki skb_transport_offset(skb) + sizeof(*icmph), 231423aebdacSJakub Sitnicki sizeof(_inner_iph), &_inner_iph); 231523aebdacSJakub Sitnicki if (!inner_iph) 231623aebdacSJakub Sitnicki goto out; 231723aebdacSJakub Sitnicki 231823aebdacSJakub Sitnicki key_iph = inner_iph; 23195e5d6fedSRoopa Prabhu _flkeys = NULL; 232023aebdacSJakub Sitnicki out: 23215e5d6fedSRoopa Prabhu if (_flkeys) { 23225e5d6fedSRoopa Prabhu keys->addrs.v6addrs.src = _flkeys->addrs.v6addrs.src; 23235e5d6fedSRoopa Prabhu keys->addrs.v6addrs.dst = _flkeys->addrs.v6addrs.dst; 23245e5d6fedSRoopa Prabhu keys->tags.flow_label = _flkeys->tags.flow_label; 23255e5d6fedSRoopa Prabhu keys->basic.ip_proto = _flkeys->basic.ip_proto; 23265e5d6fedSRoopa Prabhu } else { 232723aebdacSJakub Sitnicki keys->addrs.v6addrs.src = key_iph->saddr; 232823aebdacSJakub Sitnicki keys->addrs.v6addrs.dst = key_iph->daddr; 2329fa1be7e0SMichal Kubecek keys->tags.flow_label = ip6_flowlabel(key_iph); 233023aebdacSJakub Sitnicki keys->basic.ip_proto = key_iph->nexthdr; 233123aebdacSJakub Sitnicki } 23325e5d6fedSRoopa Prabhu } 233323aebdacSJakub Sitnicki 233473c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_outer(const struct net *net, 233573c2c5cbSIdo Schimmel const struct sk_buff *skb, 233673c2c5cbSIdo Schimmel bool *p_has_inner) 233773c2c5cbSIdo Schimmel { 233873c2c5cbSIdo Schimmel u32 hash_fields = ip6_multipath_hash_fields(net); 233973c2c5cbSIdo Schimmel struct flow_keys keys, hash_keys; 234073c2c5cbSIdo Schimmel 234173c2c5cbSIdo Schimmel if (!(hash_fields & FIB_MULTIPATH_HASH_FIELD_OUTER_MASK)) 234273c2c5cbSIdo Schimmel return 0; 234373c2c5cbSIdo Schimmel 234473c2c5cbSIdo Schimmel memset(&hash_keys, 0, sizeof(hash_keys)); 234573c2c5cbSIdo Schimmel skb_flow_dissect_flow_keys(skb, &keys, FLOW_DISSECTOR_F_STOP_AT_ENCAP); 234673c2c5cbSIdo Schimmel 234773c2c5cbSIdo Schimmel hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 234873c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_IP) 234973c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.src = keys.addrs.v6addrs.src; 235073c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_IP) 235173c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.dst = keys.addrs.v6addrs.dst; 235273c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_IP_PROTO) 235373c2c5cbSIdo Schimmel hash_keys.basic.ip_proto = keys.basic.ip_proto; 235473c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_FLOWLABEL) 235573c2c5cbSIdo Schimmel hash_keys.tags.flow_label = keys.tags.flow_label; 235673c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_PORT) 235773c2c5cbSIdo Schimmel hash_keys.ports.src = keys.ports.src; 235873c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_PORT) 235973c2c5cbSIdo Schimmel hash_keys.ports.dst = keys.ports.dst; 236073c2c5cbSIdo Schimmel 236173c2c5cbSIdo Schimmel *p_has_inner = !!(keys.control.flags & FLOW_DIS_ENCAPSULATION); 236273c2c5cbSIdo Schimmel return flow_hash_from_keys(&hash_keys); 236373c2c5cbSIdo Schimmel } 236473c2c5cbSIdo Schimmel 236573c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_inner(const struct net *net, 236673c2c5cbSIdo Schimmel const struct sk_buff *skb, 236773c2c5cbSIdo Schimmel bool has_inner) 236873c2c5cbSIdo Schimmel { 236973c2c5cbSIdo Schimmel u32 hash_fields = ip6_multipath_hash_fields(net); 237073c2c5cbSIdo Schimmel struct flow_keys keys, hash_keys; 237173c2c5cbSIdo Schimmel 237273c2c5cbSIdo Schimmel /* We assume the packet carries an encapsulation, but if none was 237373c2c5cbSIdo Schimmel * encountered during dissection of the outer flow, then there is no 237473c2c5cbSIdo Schimmel * point in calling the flow dissector again. 237573c2c5cbSIdo Schimmel */ 237673c2c5cbSIdo Schimmel if (!has_inner) 237773c2c5cbSIdo Schimmel return 0; 237873c2c5cbSIdo Schimmel 237973c2c5cbSIdo Schimmel if (!(hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_MASK)) 238073c2c5cbSIdo Schimmel return 0; 238173c2c5cbSIdo Schimmel 238273c2c5cbSIdo Schimmel memset(&hash_keys, 0, sizeof(hash_keys)); 238373c2c5cbSIdo Schimmel skb_flow_dissect_flow_keys(skb, &keys, 0); 238473c2c5cbSIdo Schimmel 238573c2c5cbSIdo Schimmel if (!(keys.control.flags & FLOW_DIS_ENCAPSULATION)) 238673c2c5cbSIdo Schimmel return 0; 238773c2c5cbSIdo Schimmel 238873c2c5cbSIdo Schimmel if (keys.control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) { 238973c2c5cbSIdo Schimmel hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS; 239073c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_SRC_IP) 239173c2c5cbSIdo Schimmel hash_keys.addrs.v4addrs.src = keys.addrs.v4addrs.src; 239273c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_DST_IP) 239373c2c5cbSIdo Schimmel hash_keys.addrs.v4addrs.dst = keys.addrs.v4addrs.dst; 239473c2c5cbSIdo Schimmel } else if (keys.control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS) { 239573c2c5cbSIdo Schimmel hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 239673c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_SRC_IP) 239773c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.src = keys.addrs.v6addrs.src; 239873c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_DST_IP) 239973c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.dst = keys.addrs.v6addrs.dst; 240073c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_FLOWLABEL) 240173c2c5cbSIdo Schimmel hash_keys.tags.flow_label = keys.tags.flow_label; 240273c2c5cbSIdo Schimmel } 240373c2c5cbSIdo Schimmel 240473c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_IP_PROTO) 240573c2c5cbSIdo Schimmel hash_keys.basic.ip_proto = keys.basic.ip_proto; 240673c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_SRC_PORT) 240773c2c5cbSIdo Schimmel hash_keys.ports.src = keys.ports.src; 240873c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_DST_PORT) 240973c2c5cbSIdo Schimmel hash_keys.ports.dst = keys.ports.dst; 241073c2c5cbSIdo Schimmel 241173c2c5cbSIdo Schimmel return flow_hash_from_keys(&hash_keys); 241273c2c5cbSIdo Schimmel } 241373c2c5cbSIdo Schimmel 241473c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_skb(const struct net *net, 241573c2c5cbSIdo Schimmel const struct sk_buff *skb) 241673c2c5cbSIdo Schimmel { 241773c2c5cbSIdo Schimmel u32 mhash, mhash_inner; 241873c2c5cbSIdo Schimmel bool has_inner = true; 241973c2c5cbSIdo Schimmel 242073c2c5cbSIdo Schimmel mhash = rt6_multipath_custom_hash_outer(net, skb, &has_inner); 242173c2c5cbSIdo Schimmel mhash_inner = rt6_multipath_custom_hash_inner(net, skb, has_inner); 242273c2c5cbSIdo Schimmel 242373c2c5cbSIdo Schimmel return jhash_2words(mhash, mhash_inner, 0); 242473c2c5cbSIdo Schimmel } 242573c2c5cbSIdo Schimmel 242673c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_fl6(const struct net *net, 242773c2c5cbSIdo Schimmel const struct flowi6 *fl6) 242873c2c5cbSIdo Schimmel { 242973c2c5cbSIdo Schimmel u32 hash_fields = ip6_multipath_hash_fields(net); 243073c2c5cbSIdo Schimmel struct flow_keys hash_keys; 243173c2c5cbSIdo Schimmel 243273c2c5cbSIdo Schimmel if (!(hash_fields & FIB_MULTIPATH_HASH_FIELD_OUTER_MASK)) 243373c2c5cbSIdo Schimmel return 0; 243473c2c5cbSIdo Schimmel 243573c2c5cbSIdo Schimmel memset(&hash_keys, 0, sizeof(hash_keys)); 243673c2c5cbSIdo Schimmel hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 243773c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_IP) 243873c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.src = fl6->saddr; 243973c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_IP) 244073c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.dst = fl6->daddr; 244173c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_IP_PROTO) 244273c2c5cbSIdo Schimmel hash_keys.basic.ip_proto = fl6->flowi6_proto; 244373c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_FLOWLABEL) 244473c2c5cbSIdo Schimmel hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6); 244573c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_PORT) 244673c2c5cbSIdo Schimmel hash_keys.ports.src = fl6->fl6_sport; 244773c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_PORT) 244873c2c5cbSIdo Schimmel hash_keys.ports.dst = fl6->fl6_dport; 244973c2c5cbSIdo Schimmel 245073c2c5cbSIdo Schimmel return flow_hash_from_keys(&hash_keys); 245173c2c5cbSIdo Schimmel } 245273c2c5cbSIdo Schimmel 245323aebdacSJakub Sitnicki /* if skb is set it will be used and fl6 can be NULL */ 2454b4bac172SDavid Ahern u32 rt6_multipath_hash(const struct net *net, const struct flowi6 *fl6, 2455b4bac172SDavid Ahern const struct sk_buff *skb, struct flow_keys *flkeys) 245623aebdacSJakub Sitnicki { 245723aebdacSJakub Sitnicki struct flow_keys hash_keys; 2458b95b6e07SIdo Schimmel u32 mhash = 0; 245923aebdacSJakub Sitnicki 2460bbfa047aSDavid S. Miller switch (ip6_multipath_hash_policy(net)) { 2461b4bac172SDavid Ahern case 0: 24626f74b6c2SDavid Ahern memset(&hash_keys, 0, sizeof(hash_keys)); 24636f74b6c2SDavid Ahern hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 24649a2a537aSDavid Ahern if (skb) { 24655e5d6fedSRoopa Prabhu ip6_multipath_l3_keys(skb, &hash_keys, flkeys); 24669a2a537aSDavid Ahern } else { 24679a2a537aSDavid Ahern hash_keys.addrs.v6addrs.src = fl6->saddr; 24689a2a537aSDavid Ahern hash_keys.addrs.v6addrs.dst = fl6->daddr; 2469fa1be7e0SMichal Kubecek hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6); 24709a2a537aSDavid Ahern hash_keys.basic.ip_proto = fl6->flowi6_proto; 247123aebdacSJakub Sitnicki } 2472b95b6e07SIdo Schimmel mhash = flow_hash_from_keys(&hash_keys); 2473b4bac172SDavid Ahern break; 2474b4bac172SDavid Ahern case 1: 2475b4bac172SDavid Ahern if (skb) { 2476b4bac172SDavid Ahern unsigned int flag = FLOW_DISSECTOR_F_STOP_AT_ENCAP; 2477b4bac172SDavid Ahern struct flow_keys keys; 2478b4bac172SDavid Ahern 2479b4bac172SDavid Ahern /* short-circuit if we already have L4 hash present */ 2480b4bac172SDavid Ahern if (skb->l4_hash) 2481b4bac172SDavid Ahern return skb_get_hash_raw(skb) >> 1; 2482b4bac172SDavid Ahern 2483b4bac172SDavid Ahern memset(&hash_keys, 0, sizeof(hash_keys)); 2484b4bac172SDavid Ahern 2485b4bac172SDavid Ahern if (!flkeys) { 2486b4bac172SDavid Ahern skb_flow_dissect_flow_keys(skb, &keys, flag); 2487b4bac172SDavid Ahern flkeys = &keys; 2488b4bac172SDavid Ahern } 2489b4bac172SDavid Ahern hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2490b4bac172SDavid Ahern hash_keys.addrs.v6addrs.src = flkeys->addrs.v6addrs.src; 2491b4bac172SDavid Ahern hash_keys.addrs.v6addrs.dst = flkeys->addrs.v6addrs.dst; 2492b4bac172SDavid Ahern hash_keys.ports.src = flkeys->ports.src; 2493b4bac172SDavid Ahern hash_keys.ports.dst = flkeys->ports.dst; 2494b4bac172SDavid Ahern hash_keys.basic.ip_proto = flkeys->basic.ip_proto; 2495b4bac172SDavid Ahern } else { 2496b4bac172SDavid Ahern memset(&hash_keys, 0, sizeof(hash_keys)); 2497b4bac172SDavid Ahern hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2498b4bac172SDavid Ahern hash_keys.addrs.v6addrs.src = fl6->saddr; 2499b4bac172SDavid Ahern hash_keys.addrs.v6addrs.dst = fl6->daddr; 2500b4bac172SDavid Ahern hash_keys.ports.src = fl6->fl6_sport; 2501b4bac172SDavid Ahern hash_keys.ports.dst = fl6->fl6_dport; 2502b4bac172SDavid Ahern hash_keys.basic.ip_proto = fl6->flowi6_proto; 2503b4bac172SDavid Ahern } 2504b95b6e07SIdo Schimmel mhash = flow_hash_from_keys(&hash_keys); 2505b4bac172SDavid Ahern break; 2506d8f74f09SStephen Suryaputra case 2: 2507d8f74f09SStephen Suryaputra memset(&hash_keys, 0, sizeof(hash_keys)); 2508d8f74f09SStephen Suryaputra hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2509d8f74f09SStephen Suryaputra if (skb) { 2510d8f74f09SStephen Suryaputra struct flow_keys keys; 2511d8f74f09SStephen Suryaputra 2512d8f74f09SStephen Suryaputra if (!flkeys) { 2513d8f74f09SStephen Suryaputra skb_flow_dissect_flow_keys(skb, &keys, 0); 2514d8f74f09SStephen Suryaputra flkeys = &keys; 2515d8f74f09SStephen Suryaputra } 2516d8f74f09SStephen Suryaputra 2517d8f74f09SStephen Suryaputra /* Inner can be v4 or v6 */ 2518d8f74f09SStephen Suryaputra if (flkeys->control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) { 2519d8f74f09SStephen Suryaputra hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS; 2520d8f74f09SStephen Suryaputra hash_keys.addrs.v4addrs.src = flkeys->addrs.v4addrs.src; 2521d8f74f09SStephen Suryaputra hash_keys.addrs.v4addrs.dst = flkeys->addrs.v4addrs.dst; 2522d8f74f09SStephen Suryaputra } else if (flkeys->control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS) { 2523d8f74f09SStephen Suryaputra hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2524d8f74f09SStephen Suryaputra hash_keys.addrs.v6addrs.src = flkeys->addrs.v6addrs.src; 2525d8f74f09SStephen Suryaputra hash_keys.addrs.v6addrs.dst = flkeys->addrs.v6addrs.dst; 2526d8f74f09SStephen Suryaputra hash_keys.tags.flow_label = flkeys->tags.flow_label; 2527d8f74f09SStephen Suryaputra hash_keys.basic.ip_proto = flkeys->basic.ip_proto; 2528d8f74f09SStephen Suryaputra } else { 2529d8f74f09SStephen Suryaputra /* Same as case 0 */ 2530d8f74f09SStephen Suryaputra hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2531d8f74f09SStephen Suryaputra ip6_multipath_l3_keys(skb, &hash_keys, flkeys); 2532d8f74f09SStephen Suryaputra } 2533d8f74f09SStephen Suryaputra } else { 2534d8f74f09SStephen Suryaputra /* Same as case 0 */ 2535d8f74f09SStephen Suryaputra hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2536d8f74f09SStephen Suryaputra hash_keys.addrs.v6addrs.src = fl6->saddr; 2537d8f74f09SStephen Suryaputra hash_keys.addrs.v6addrs.dst = fl6->daddr; 2538d8f74f09SStephen Suryaputra hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6); 2539d8f74f09SStephen Suryaputra hash_keys.basic.ip_proto = fl6->flowi6_proto; 2540d8f74f09SStephen Suryaputra } 2541b95b6e07SIdo Schimmel mhash = flow_hash_from_keys(&hash_keys); 2542d8f74f09SStephen Suryaputra break; 254373c2c5cbSIdo Schimmel case 3: 254473c2c5cbSIdo Schimmel if (skb) 254573c2c5cbSIdo Schimmel mhash = rt6_multipath_custom_hash_skb(net, skb); 254673c2c5cbSIdo Schimmel else 254773c2c5cbSIdo Schimmel mhash = rt6_multipath_custom_hash_fl6(net, fl6); 254873c2c5cbSIdo Schimmel break; 2549b4bac172SDavid Ahern } 255023aebdacSJakub Sitnicki 25519a2a537aSDavid Ahern return mhash >> 1; 255223aebdacSJakub Sitnicki } 255323aebdacSJakub Sitnicki 255467f415ddSWei Wang /* Called with rcu held */ 2555c71099acSThomas Graf void ip6_route_input(struct sk_buff *skb) 2556c71099acSThomas Graf { 2557b71d1d42SEric Dumazet const struct ipv6hdr *iph = ipv6_hdr(skb); 2558c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(skb->dev); 255967f415ddSWei Wang int flags = RT6_LOOKUP_F_HAS_SADDR | RT6_LOOKUP_F_DST_NOREF; 2560904af04dSJiri Benc struct ip_tunnel_info *tun_info; 25614c9483b2SDavid S. Miller struct flowi6 fl6 = { 2562e0d56fddSDavid Ahern .flowi6_iif = skb->dev->ifindex, 25634c9483b2SDavid S. Miller .daddr = iph->daddr, 25644c9483b2SDavid S. Miller .saddr = iph->saddr, 25656502ca52SYOSHIFUJI Hideaki / 吉藤英明 .flowlabel = ip6_flowinfo(iph), 25664c9483b2SDavid S. Miller .flowi6_mark = skb->mark, 25674c9483b2SDavid S. Miller .flowi6_proto = iph->nexthdr, 2568c71099acSThomas Graf }; 25695e5d6fedSRoopa Prabhu struct flow_keys *flkeys = NULL, _flkeys; 2570adaa70bbSThomas Graf 2571904af04dSJiri Benc tun_info = skb_tunnel_info(skb); 257246fa062aSJiri Benc if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX)) 2573904af04dSJiri Benc fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id; 25745e5d6fedSRoopa Prabhu 25755e5d6fedSRoopa Prabhu if (fib6_rules_early_flow_dissect(net, skb, &fl6, &_flkeys)) 25765e5d6fedSRoopa Prabhu flkeys = &_flkeys; 25775e5d6fedSRoopa Prabhu 257823aebdacSJakub Sitnicki if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6)) 2579b4bac172SDavid Ahern fl6.mp_hash = rt6_multipath_hash(net, &fl6, skb, flkeys); 258006e9d040SJiri Benc skb_dst_drop(skb); 258167f415ddSWei Wang skb_dst_set_noref(skb, ip6_route_input_lookup(net, skb->dev, 258267f415ddSWei Wang &fl6, skb, flags)); 2583c71099acSThomas Graf } 2584c71099acSThomas Graf 258555cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_output(struct net *net, 2586b75cc8f9SDavid Ahern struct fib6_table *table, 2587b75cc8f9SDavid Ahern struct flowi6 *fl6, 2588b75cc8f9SDavid Ahern const struct sk_buff *skb, 2589b75cc8f9SDavid Ahern int flags) 2590c71099acSThomas Graf { 2591b75cc8f9SDavid Ahern return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, skb, flags); 2592c71099acSThomas Graf } 2593c71099acSThomas Graf 259490317bcdSGuillaume Nault static struct dst_entry *ip6_route_output_flags_noref(struct net *net, 25957d9e5f42SWei Wang const struct sock *sk, 259690317bcdSGuillaume Nault struct flowi6 *fl6, 259790317bcdSGuillaume Nault int flags) 2598c71099acSThomas Graf { 2599d46a9d67SDavid Ahern bool any_src; 2600c71099acSThomas Graf 26013ede0bbcSRobert Shearman if (ipv6_addr_type(&fl6->daddr) & 26023ede0bbcSRobert Shearman (IPV6_ADDR_MULTICAST | IPV6_ADDR_LINKLOCAL)) { 26034c1feac5SDavid Ahern struct dst_entry *dst; 26044c1feac5SDavid Ahern 26057d9e5f42SWei Wang /* This function does not take refcnt on the dst */ 26064c1feac5SDavid Ahern dst = l3mdev_link_scope_lookup(net, fl6); 2607ca254490SDavid Ahern if (dst) 2608ca254490SDavid Ahern return dst; 26094c1feac5SDavid Ahern } 2610ca254490SDavid Ahern 26111fb9489bSPavel Emelyanov fl6->flowi6_iif = LOOPBACK_IFINDEX; 26124dc27d1cSDavid McCullough 26137d9e5f42SWei Wang flags |= RT6_LOOKUP_F_DST_NOREF; 2614d46a9d67SDavid Ahern any_src = ipv6_addr_any(&fl6->saddr); 2615741a11d9SDavid Ahern if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) || 2616d46a9d67SDavid Ahern (fl6->flowi6_oif && any_src)) 261777d16f45SYOSHIFUJI Hideaki flags |= RT6_LOOKUP_F_IFACE; 2618c71099acSThomas Graf 2619d46a9d67SDavid Ahern if (!any_src) 2620adaa70bbSThomas Graf flags |= RT6_LOOKUP_F_HAS_SADDR; 26210c9a2ac1SYOSHIFUJI Hideaki / 吉藤英明 else if (sk) 26220c9a2ac1SYOSHIFUJI Hideaki / 吉藤英明 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs); 2623adaa70bbSThomas Graf 2624b75cc8f9SDavid Ahern return fib6_rule_lookup(net, fl6, NULL, flags, ip6_pol_route_output); 26251da177e4SLinus Torvalds } 26267d9e5f42SWei Wang 26277d9e5f42SWei Wang struct dst_entry *ip6_route_output_flags(struct net *net, 26287d9e5f42SWei Wang const struct sock *sk, 26297d9e5f42SWei Wang struct flowi6 *fl6, 26307d9e5f42SWei Wang int flags) 26317d9e5f42SWei Wang { 26327d9e5f42SWei Wang struct dst_entry *dst; 26337d9e5f42SWei Wang struct rt6_info *rt6; 26347d9e5f42SWei Wang 26357d9e5f42SWei Wang rcu_read_lock(); 26367d9e5f42SWei Wang dst = ip6_route_output_flags_noref(net, sk, fl6, flags); 26377d9e5f42SWei Wang rt6 = (struct rt6_info *)dst; 26387d9e5f42SWei Wang /* For dst cached in uncached_list, refcnt is already taken. */ 2639d288a162SWangyang Guo if (list_empty(&rt6->dst.rt_uncached) && !dst_hold_safe(dst)) { 26407d9e5f42SWei Wang dst = &net->ipv6.ip6_null_entry->dst; 26417d9e5f42SWei Wang dst_hold(dst); 26427d9e5f42SWei Wang } 26437d9e5f42SWei Wang rcu_read_unlock(); 26447d9e5f42SWei Wang 26457d9e5f42SWei Wang return dst; 26467d9e5f42SWei Wang } 26476f21c96aSPaolo Abeni EXPORT_SYMBOL_GPL(ip6_route_output_flags); 26481da177e4SLinus Torvalds 26492774c131SDavid S. Miller struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig) 265014e50e57SDavid S. Miller { 26515c1e6aa3SDavid S. Miller struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig; 26521dbe3252SWei Wang struct net_device *loopback_dev = net->loopback_dev; 265314e50e57SDavid S. Miller struct dst_entry *new = NULL; 265414e50e57SDavid S. Miller 26551dbe3252SWei Wang rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1, 265662cf27e5SSteffen Klassert DST_OBSOLETE_DEAD, 0); 265714e50e57SDavid S. Miller if (rt) { 26580a1f5962SMartin KaFai Lau rt6_info_init(rt); 265981eb8447SWei Wang atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc); 26600a1f5962SMartin KaFai Lau 2661d8d1f30bSChangli Gao new = &rt->dst; 266214e50e57SDavid S. Miller new->__use = 1; 2663352e512cSHerbert Xu new->input = dst_discard; 2664ede2059dSEric W. Biederman new->output = dst_discard_out; 266514e50e57SDavid S. Miller 2666defb3519SDavid S. Miller dst_copy_metrics(new, &ort->dst); 266714e50e57SDavid S. Miller 26681dbe3252SWei Wang rt->rt6i_idev = in6_dev_get(loopback_dev); 26694e3fd7a0SAlexey Dobriyan rt->rt6i_gateway = ort->rt6i_gateway; 26700a1f5962SMartin KaFai Lau rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU; 267114e50e57SDavid S. Miller 267214e50e57SDavid S. Miller memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key)); 267314e50e57SDavid S. Miller #ifdef CONFIG_IPV6_SUBTREES 267414e50e57SDavid S. Miller memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key)); 267514e50e57SDavid S. Miller #endif 267614e50e57SDavid S. Miller } 267714e50e57SDavid S. Miller 267869ead7afSDavid S. Miller dst_release(dst_orig); 267969ead7afSDavid S. Miller return new ? new : ERR_PTR(-ENOMEM); 268014e50e57SDavid S. Miller } 268114e50e57SDavid S. Miller 26821da177e4SLinus Torvalds /* 26831da177e4SLinus Torvalds * Destination cache support functions 26841da177e4SLinus Torvalds */ 26851da177e4SLinus Torvalds 26868d1c802bSDavid Ahern static bool fib6_check(struct fib6_info *f6i, u32 cookie) 26873da59bd9SMartin KaFai Lau { 268836143645SSteffen Klassert u32 rt_cookie = 0; 2689c5cff856SWei Wang 26908ae86971SDavid Ahern if (!fib6_get_cookie_safe(f6i, &rt_cookie) || rt_cookie != cookie) 269193531c67SDavid Ahern return false; 269293531c67SDavid Ahern 269393531c67SDavid Ahern if (fib6_check_expired(f6i)) 269493531c67SDavid Ahern return false; 269593531c67SDavid Ahern 269693531c67SDavid Ahern return true; 269793531c67SDavid Ahern } 269893531c67SDavid Ahern 2699a68886a6SDavid Ahern static struct dst_entry *rt6_check(struct rt6_info *rt, 2700a68886a6SDavid Ahern struct fib6_info *from, 2701a68886a6SDavid Ahern u32 cookie) 27023da59bd9SMartin KaFai Lau { 2703c5cff856SWei Wang u32 rt_cookie = 0; 2704c5cff856SWei Wang 270549d05fe2SDavid Ahern if (!from || !fib6_get_cookie_safe(from, &rt_cookie) || 270693531c67SDavid Ahern rt_cookie != cookie) 27073da59bd9SMartin KaFai Lau return NULL; 27083da59bd9SMartin KaFai Lau 27093da59bd9SMartin KaFai Lau if (rt6_check_expired(rt)) 27103da59bd9SMartin KaFai Lau return NULL; 27113da59bd9SMartin KaFai Lau 27123da59bd9SMartin KaFai Lau return &rt->dst; 27133da59bd9SMartin KaFai Lau } 27143da59bd9SMartin KaFai Lau 2715a68886a6SDavid Ahern static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, 2716a68886a6SDavid Ahern struct fib6_info *from, 2717a68886a6SDavid Ahern u32 cookie) 27183da59bd9SMartin KaFai Lau { 27195973fb1eSMartin KaFai Lau if (!__rt6_check_expired(rt) && 27205973fb1eSMartin KaFai Lau rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK && 2721a68886a6SDavid Ahern fib6_check(from, cookie)) 27223da59bd9SMartin KaFai Lau return &rt->dst; 27233da59bd9SMartin KaFai Lau else 27243da59bd9SMartin KaFai Lau return NULL; 27253da59bd9SMartin KaFai Lau } 27263da59bd9SMartin KaFai Lau 2727bbd807dfSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct dst_entry *ip6_dst_check(struct dst_entry *dst, 2728bbd807dfSBrian Vazquez u32 cookie) 27291da177e4SLinus Torvalds { 2730a87b7dc9SDavid Ahern struct dst_entry *dst_ret; 2731a68886a6SDavid Ahern struct fib6_info *from; 27321da177e4SLinus Torvalds struct rt6_info *rt; 27331da177e4SLinus Torvalds 2734a87b7dc9SDavid Ahern rt = container_of(dst, struct rt6_info, dst); 2735a87b7dc9SDavid Ahern 27368f34e53bSDavid Ahern if (rt->sernum) 27378f34e53bSDavid Ahern return rt6_is_valid(rt) ? dst : NULL; 27388f34e53bSDavid Ahern 2739a87b7dc9SDavid Ahern rcu_read_lock(); 27401da177e4SLinus Torvalds 27416f3118b5SNicolas Dichtel /* All IPV6 dsts are created with ->obsolete set to the value 27426f3118b5SNicolas Dichtel * DST_OBSOLETE_FORCE_CHK which forces validation calls down 27436f3118b5SNicolas Dichtel * into this function always. 27446f3118b5SNicolas Dichtel */ 2745e3bc10bdSHannes Frederic Sowa 2746a68886a6SDavid Ahern from = rcu_dereference(rt->from); 27474b32b5adSMartin KaFai Lau 2748a68886a6SDavid Ahern if (from && (rt->rt6i_flags & RTF_PCPU || 2749d288a162SWangyang Guo unlikely(!list_empty(&rt->dst.rt_uncached)))) 2750a68886a6SDavid Ahern dst_ret = rt6_dst_from_check(rt, from, cookie); 27513da59bd9SMartin KaFai Lau else 2752a68886a6SDavid Ahern dst_ret = rt6_check(rt, from, cookie); 2753a87b7dc9SDavid Ahern 2754a87b7dc9SDavid Ahern rcu_read_unlock(); 2755a87b7dc9SDavid Ahern 2756a87b7dc9SDavid Ahern return dst_ret; 27571da177e4SLinus Torvalds } 27589c97921aSBrian Vazquez EXPORT_INDIRECT_CALLABLE(ip6_dst_check); 27591da177e4SLinus Torvalds 27601da177e4SLinus Torvalds static struct dst_entry *ip6_negative_advice(struct dst_entry *dst) 27611da177e4SLinus Torvalds { 27621da177e4SLinus Torvalds struct rt6_info *rt = (struct rt6_info *) dst; 27631da177e4SLinus Torvalds 27641da177e4SLinus Torvalds if (rt) { 276554c1a859SYOSHIFUJI Hideaki / 吉藤英明 if (rt->rt6i_flags & RTF_CACHE) { 2766c3c14da0SDavid Ahern rcu_read_lock(); 276754c1a859SYOSHIFUJI Hideaki / 吉藤英明 if (rt6_check_expired(rt)) { 276893531c67SDavid Ahern rt6_remove_exception_rt(rt); 276954c1a859SYOSHIFUJI Hideaki / 吉藤英明 dst = NULL; 27701da177e4SLinus Torvalds } 2771c3c14da0SDavid Ahern rcu_read_unlock(); 277254c1a859SYOSHIFUJI Hideaki / 吉藤英明 } else { 277354c1a859SYOSHIFUJI Hideaki / 吉藤英明 dst_release(dst); 277454c1a859SYOSHIFUJI Hideaki / 吉藤英明 dst = NULL; 277554c1a859SYOSHIFUJI Hideaki / 吉藤英明 } 277654c1a859SYOSHIFUJI Hideaki / 吉藤英明 } 277754c1a859SYOSHIFUJI Hideaki / 吉藤英明 return dst; 27781da177e4SLinus Torvalds } 27791da177e4SLinus Torvalds 27801da177e4SLinus Torvalds static void ip6_link_failure(struct sk_buff *skb) 27811da177e4SLinus Torvalds { 27821da177e4SLinus Torvalds struct rt6_info *rt; 27831da177e4SLinus Torvalds 27843ffe533cSAlexey Dobriyan icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0); 27851da177e4SLinus Torvalds 2786adf30907SEric Dumazet rt = (struct rt6_info *) skb_dst(skb); 27871da177e4SLinus Torvalds if (rt) { 27888a14e46fSDavid Ahern rcu_read_lock(); 27891eb4f758SHannes Frederic Sowa if (rt->rt6i_flags & RTF_CACHE) { 279093531c67SDavid Ahern rt6_remove_exception_rt(rt); 2791c5cff856SWei Wang } else { 2792a68886a6SDavid Ahern struct fib6_info *from; 2793c5cff856SWei Wang struct fib6_node *fn; 2794c5cff856SWei Wang 2795a68886a6SDavid Ahern from = rcu_dereference(rt->from); 2796a68886a6SDavid Ahern if (from) { 2797a68886a6SDavid Ahern fn = rcu_dereference(from->fib6_node); 2798c5cff856SWei Wang if (fn && (rt->rt6i_flags & RTF_DEFAULT)) 2799aafc2e32SEric Dumazet WRITE_ONCE(fn->fn_sernum, -1); 2800a68886a6SDavid Ahern } 28011da177e4SLinus Torvalds } 28021da177e4SLinus Torvalds rcu_read_unlock(); 28031da177e4SLinus Torvalds } 28041da177e4SLinus Torvalds } 28051da177e4SLinus Torvalds 28066a3e030fSDavid Ahern static void rt6_update_expires(struct rt6_info *rt0, int timeout) 28076a3e030fSDavid Ahern { 2808a68886a6SDavid Ahern if (!(rt0->rt6i_flags & RTF_EXPIRES)) { 2809a68886a6SDavid Ahern struct fib6_info *from; 2810a68886a6SDavid Ahern 2811a68886a6SDavid Ahern rcu_read_lock(); 2812a68886a6SDavid Ahern from = rcu_dereference(rt0->from); 2813a68886a6SDavid Ahern if (from) 2814a68886a6SDavid Ahern rt0->dst.expires = from->expires; 2815a68886a6SDavid Ahern rcu_read_unlock(); 2816a68886a6SDavid Ahern } 28176a3e030fSDavid Ahern 28186a3e030fSDavid Ahern dst_set_expires(&rt0->dst, timeout); 28196a3e030fSDavid Ahern rt0->rt6i_flags |= RTF_EXPIRES; 28206700c270SDavid S. Miller } 28211da177e4SLinus Torvalds 282245e4fd26SMartin KaFai Lau static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu) 282345e4fd26SMartin KaFai Lau { 282445e4fd26SMartin KaFai Lau struct net *net = dev_net(rt->dst.dev); 282545e4fd26SMartin KaFai Lau 2826d4ead6b3SDavid Ahern dst_metric_set(&rt->dst, RTAX_MTU, mtu); 282745e4fd26SMartin KaFai Lau rt->rt6i_flags |= RTF_MODIFIED; 282845e4fd26SMartin KaFai Lau rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires); 282945e4fd26SMartin KaFai Lau } 283045e4fd26SMartin KaFai Lau 28310d3f6d29SMartin KaFai Lau static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt) 28320d3f6d29SMartin KaFai Lau { 28330d3f6d29SMartin KaFai Lau return !(rt->rt6i_flags & RTF_CACHE) && 28341490ed2aSPaolo Abeni (rt->rt6i_flags & RTF_PCPU || rcu_access_pointer(rt->from)); 28350d3f6d29SMartin KaFai Lau } 28360d3f6d29SMartin KaFai Lau 283745e4fd26SMartin KaFai Lau static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk, 2838bd085ef6SHangbin Liu const struct ipv6hdr *iph, u32 mtu, 2839bd085ef6SHangbin Liu bool confirm_neigh) 28401da177e4SLinus Torvalds { 28410dec879fSJulian Anastasov const struct in6_addr *daddr, *saddr; 28421da177e4SLinus Torvalds struct rt6_info *rt6 = (struct rt6_info *)dst; 28431da177e4SLinus Torvalds 284409454fd0SMaciej Żenczykowski /* Note: do *NOT* check dst_metric_locked(dst, RTAX_MTU) 284509454fd0SMaciej Żenczykowski * IPv6 pmtu discovery isn't optional, so 'mtu lock' cannot disable it. 284609454fd0SMaciej Żenczykowski * [see also comment in rt6_mtu_change_route()] 284709454fd0SMaciej Żenczykowski */ 284819bda36cSXin Long 284945e4fd26SMartin KaFai Lau if (iph) { 285045e4fd26SMartin KaFai Lau daddr = &iph->daddr; 285145e4fd26SMartin KaFai Lau saddr = &iph->saddr; 285245e4fd26SMartin KaFai Lau } else if (sk) { 285345e4fd26SMartin KaFai Lau daddr = &sk->sk_v6_daddr; 285445e4fd26SMartin KaFai Lau saddr = &inet6_sk(sk)->saddr; 285545e4fd26SMartin KaFai Lau } else { 28560dec879fSJulian Anastasov daddr = NULL; 28570dec879fSJulian Anastasov saddr = NULL; 28581da177e4SLinus Torvalds } 2859bd085ef6SHangbin Liu 2860bd085ef6SHangbin Liu if (confirm_neigh) 28610dec879fSJulian Anastasov dst_confirm_neigh(dst, daddr); 2862bd085ef6SHangbin Liu 28634a65dff8SGeorg Kohmann if (mtu < IPV6_MIN_MTU) 28644a65dff8SGeorg Kohmann return; 28650dec879fSJulian Anastasov if (mtu >= dst_mtu(dst)) 28660dec879fSJulian Anastasov return; 28670dec879fSJulian Anastasov 28680dec879fSJulian Anastasov if (!rt6_cache_allowed_for_pmtu(rt6)) { 28690dec879fSJulian Anastasov rt6_do_update_pmtu(rt6, mtu); 28702b760fcfSWei Wang /* update rt6_ex->stamp for cache */ 28712b760fcfSWei Wang if (rt6->rt6i_flags & RTF_CACHE) 28722b760fcfSWei Wang rt6_update_exception_stamp_rt(rt6); 28730dec879fSJulian Anastasov } else if (daddr) { 287485bd05deSDavid Ahern struct fib6_result res = {}; 28750dec879fSJulian Anastasov struct rt6_info *nrt6; 28760dec879fSJulian Anastasov 28774d85cd0cSDavid Ahern rcu_read_lock(); 287885bd05deSDavid Ahern res.f6i = rcu_dereference(rt6->from); 287943a4b60dSDavid Ahern if (!res.f6i) 288043a4b60dSDavid Ahern goto out_unlock; 288143a4b60dSDavid Ahern 28827d21fec9SDavid Ahern res.fib6_flags = res.f6i->fib6_flags; 28837d21fec9SDavid Ahern res.fib6_type = res.f6i->fib6_type; 28847d21fec9SDavid Ahern 28852d44234bSDavid Ahern if (res.f6i->nh) { 28862d44234bSDavid Ahern struct fib6_nh_match_arg arg = { 28872d44234bSDavid Ahern .dev = dst->dev, 28882d44234bSDavid Ahern .gw = &rt6->rt6i_gateway, 28892d44234bSDavid Ahern }; 28902d44234bSDavid Ahern 28912d44234bSDavid Ahern nexthop_for_each_fib6_nh(res.f6i->nh, 28922d44234bSDavid Ahern fib6_nh_find_match, &arg); 28932d44234bSDavid Ahern 28942d44234bSDavid Ahern /* fib6_info uses a nexthop that does not have fib6_nh 28952d44234bSDavid Ahern * using the dst->dev + gw. Should be impossible. 28962d44234bSDavid Ahern */ 289743a4b60dSDavid Ahern if (!arg.match) 289843a4b60dSDavid Ahern goto out_unlock; 28992d44234bSDavid Ahern 29002d44234bSDavid Ahern res.nh = arg.match; 29012d44234bSDavid Ahern } else { 29022d44234bSDavid Ahern res.nh = res.f6i->fib6_nh; 29032d44234bSDavid Ahern } 29042d44234bSDavid Ahern 290585bd05deSDavid Ahern nrt6 = ip6_rt_cache_alloc(&res, daddr, saddr); 290645e4fd26SMartin KaFai Lau if (nrt6) { 290745e4fd26SMartin KaFai Lau rt6_do_update_pmtu(nrt6, mtu); 29085012f0a5SDavid Ahern if (rt6_insert_exception(nrt6, &res)) 29092b760fcfSWei Wang dst_release_immediate(&nrt6->dst); 291045e4fd26SMartin KaFai Lau } 291143a4b60dSDavid Ahern out_unlock: 2912a68886a6SDavid Ahern rcu_read_unlock(); 291345e4fd26SMartin KaFai Lau } 291445e4fd26SMartin KaFai Lau } 291545e4fd26SMartin KaFai Lau 291645e4fd26SMartin KaFai Lau static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk, 2917bd085ef6SHangbin Liu struct sk_buff *skb, u32 mtu, 2918bd085ef6SHangbin Liu bool confirm_neigh) 291945e4fd26SMartin KaFai Lau { 2920bd085ef6SHangbin Liu __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu, 2921bd085ef6SHangbin Liu confirm_neigh); 29221da177e4SLinus Torvalds } 29231da177e4SLinus Torvalds 292442ae66c8SDavid S. Miller void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu, 2925e2d118a1SLorenzo Colitti int oif, u32 mark, kuid_t uid) 292681aded24SDavid S. Miller { 292781aded24SDavid S. Miller const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; 292881aded24SDavid S. Miller struct dst_entry *dst; 2929dc92095dSMaciej Żenczykowski struct flowi6 fl6 = { 2930dc92095dSMaciej Żenczykowski .flowi6_oif = oif, 2931dc92095dSMaciej Żenczykowski .flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark), 2932dc92095dSMaciej Żenczykowski .daddr = iph->daddr, 2933dc92095dSMaciej Żenczykowski .saddr = iph->saddr, 2934dc92095dSMaciej Żenczykowski .flowlabel = ip6_flowinfo(iph), 2935dc92095dSMaciej Żenczykowski .flowi6_uid = uid, 2936dc92095dSMaciej Żenczykowski }; 293781aded24SDavid S. Miller 293881aded24SDavid S. Miller dst = ip6_route_output(net, NULL, &fl6); 293981aded24SDavid S. Miller if (!dst->error) 2940bd085ef6SHangbin Liu __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu), true); 294181aded24SDavid S. Miller dst_release(dst); 294281aded24SDavid S. Miller } 294381aded24SDavid S. Miller EXPORT_SYMBOL_GPL(ip6_update_pmtu); 294481aded24SDavid S. Miller 294581aded24SDavid S. Miller void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu) 294681aded24SDavid S. Miller { 29477ddacfa5SDavid Ahern int oif = sk->sk_bound_dev_if; 294833c162a9SMartin KaFai Lau struct dst_entry *dst; 294933c162a9SMartin KaFai Lau 29507ddacfa5SDavid Ahern if (!oif && skb->dev) 29517ddacfa5SDavid Ahern oif = l3mdev_master_ifindex(skb->dev); 29527ddacfa5SDavid Ahern 29533c5b4d69SEric Dumazet ip6_update_pmtu(skb, sock_net(sk), mtu, oif, READ_ONCE(sk->sk_mark), 29543c5b4d69SEric Dumazet sk->sk_uid); 295533c162a9SMartin KaFai Lau 295633c162a9SMartin KaFai Lau dst = __sk_dst_get(sk); 295733c162a9SMartin KaFai Lau if (!dst || !dst->obsolete || 295833c162a9SMartin KaFai Lau dst->ops->check(dst, inet6_sk(sk)->dst_cookie)) 295933c162a9SMartin KaFai Lau return; 296033c162a9SMartin KaFai Lau 296133c162a9SMartin KaFai Lau bh_lock_sock(sk); 296233c162a9SMartin KaFai Lau if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr)) 296333c162a9SMartin KaFai Lau ip6_datagram_dst_update(sk, false); 296433c162a9SMartin KaFai Lau bh_unlock_sock(sk); 296581aded24SDavid S. Miller } 296681aded24SDavid S. Miller EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu); 296781aded24SDavid S. Miller 29687d6850f7SAlexey Kodanev void ip6_sk_dst_store_flow(struct sock *sk, struct dst_entry *dst, 29697d6850f7SAlexey Kodanev const struct flowi6 *fl6) 29707d6850f7SAlexey Kodanev { 29717d6850f7SAlexey Kodanev #ifdef CONFIG_IPV6_SUBTREES 29727d6850f7SAlexey Kodanev struct ipv6_pinfo *np = inet6_sk(sk); 29737d6850f7SAlexey Kodanev #endif 29747d6850f7SAlexey Kodanev 29757d6850f7SAlexey Kodanev ip6_dst_store(sk, dst, 29767d6850f7SAlexey Kodanev ipv6_addr_equal(&fl6->daddr, &sk->sk_v6_daddr) ? 29777d6850f7SAlexey Kodanev &sk->sk_v6_daddr : NULL, 29787d6850f7SAlexey Kodanev #ifdef CONFIG_IPV6_SUBTREES 29797d6850f7SAlexey Kodanev ipv6_addr_equal(&fl6->saddr, &np->saddr) ? 29807d6850f7SAlexey Kodanev &np->saddr : 29817d6850f7SAlexey Kodanev #endif 29827d6850f7SAlexey Kodanev NULL); 29837d6850f7SAlexey Kodanev } 29847d6850f7SAlexey Kodanev 29859b6b35abSDavid Ahern static bool ip6_redirect_nh_match(const struct fib6_result *res, 29860b34eb00SDavid Ahern struct flowi6 *fl6, 29870b34eb00SDavid Ahern const struct in6_addr *gw, 29880b34eb00SDavid Ahern struct rt6_info **ret) 29890b34eb00SDavid Ahern { 29909b6b35abSDavid Ahern const struct fib6_nh *nh = res->nh; 29919b6b35abSDavid Ahern 29920b34eb00SDavid Ahern if (nh->fib_nh_flags & RTNH_F_DEAD || !nh->fib_nh_gw_family || 29930b34eb00SDavid Ahern fl6->flowi6_oif != nh->fib_nh_dev->ifindex) 29940b34eb00SDavid Ahern return false; 29950b34eb00SDavid Ahern 29960b34eb00SDavid Ahern /* rt_cache's gateway might be different from its 'parent' 29970b34eb00SDavid Ahern * in the case of an ip redirect. 29980b34eb00SDavid Ahern * So we keep searching in the exception table if the gateway 29990b34eb00SDavid Ahern * is different. 30000b34eb00SDavid Ahern */ 30010b34eb00SDavid Ahern if (!ipv6_addr_equal(gw, &nh->fib_nh_gw6)) { 30020b34eb00SDavid Ahern struct rt6_info *rt_cache; 30030b34eb00SDavid Ahern 30049b6b35abSDavid Ahern rt_cache = rt6_find_cached_rt(res, &fl6->daddr, &fl6->saddr); 30050b34eb00SDavid Ahern if (rt_cache && 30060b34eb00SDavid Ahern ipv6_addr_equal(gw, &rt_cache->rt6i_gateway)) { 30070b34eb00SDavid Ahern *ret = rt_cache; 30080b34eb00SDavid Ahern return true; 30090b34eb00SDavid Ahern } 30100b34eb00SDavid Ahern return false; 30110b34eb00SDavid Ahern } 30120b34eb00SDavid Ahern return true; 30130b34eb00SDavid Ahern } 30140b34eb00SDavid Ahern 3015c55c8988SDavid Ahern struct fib6_nh_rd_arg { 3016c55c8988SDavid Ahern struct fib6_result *res; 3017c55c8988SDavid Ahern struct flowi6 *fl6; 3018c55c8988SDavid Ahern const struct in6_addr *gw; 3019c55c8988SDavid Ahern struct rt6_info **ret; 3020c55c8988SDavid Ahern }; 3021c55c8988SDavid Ahern 3022c55c8988SDavid Ahern static int fib6_nh_redirect_match(struct fib6_nh *nh, void *_arg) 3023c55c8988SDavid Ahern { 3024c55c8988SDavid Ahern struct fib6_nh_rd_arg *arg = _arg; 3025c55c8988SDavid Ahern 3026c55c8988SDavid Ahern arg->res->nh = nh; 3027c55c8988SDavid Ahern return ip6_redirect_nh_match(arg->res, arg->fl6, arg->gw, arg->ret); 3028c55c8988SDavid Ahern } 3029c55c8988SDavid Ahern 3030b55b76b2SDuan Jiong /* Handle redirects */ 3031b55b76b2SDuan Jiong struct ip6rd_flowi { 3032b55b76b2SDuan Jiong struct flowi6 fl6; 3033b55b76b2SDuan Jiong struct in6_addr gateway; 3034b55b76b2SDuan Jiong }; 3035b55b76b2SDuan Jiong 303655cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *__ip6_route_redirect(struct net *net, 3037b55b76b2SDuan Jiong struct fib6_table *table, 3038b55b76b2SDuan Jiong struct flowi6 *fl6, 3039b75cc8f9SDavid Ahern const struct sk_buff *skb, 3040b55b76b2SDuan Jiong int flags) 3041b55b76b2SDuan Jiong { 3042b55b76b2SDuan Jiong struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6; 30430b34eb00SDavid Ahern struct rt6_info *ret = NULL; 30449b6b35abSDavid Ahern struct fib6_result res = {}; 3045c55c8988SDavid Ahern struct fib6_nh_rd_arg arg = { 3046c55c8988SDavid Ahern .res = &res, 3047c55c8988SDavid Ahern .fl6 = fl6, 3048c55c8988SDavid Ahern .gw = &rdfl->gateway, 3049c55c8988SDavid Ahern .ret = &ret 3050c55c8988SDavid Ahern }; 30518d1c802bSDavid Ahern struct fib6_info *rt; 3052b55b76b2SDuan Jiong struct fib6_node *fn; 3053b55b76b2SDuan Jiong 3054b55b76b2SDuan Jiong /* Get the "current" route for this destination and 305567c408cfSAlexander Alemayhu * check if the redirect has come from appropriate router. 3056b55b76b2SDuan Jiong * 3057b55b76b2SDuan Jiong * RFC 4861 specifies that redirects should only be 3058b55b76b2SDuan Jiong * accepted if they come from the nexthop to the target. 3059b55b76b2SDuan Jiong * Due to the way the routes are chosen, this notion 3060b55b76b2SDuan Jiong * is a bit fuzzy and one might need to check all possible 3061b55b76b2SDuan Jiong * routes. 3062b55b76b2SDuan Jiong */ 3063b55b76b2SDuan Jiong 306466f5d6ceSWei Wang rcu_read_lock(); 30656454743bSDavid Ahern fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); 3066b55b76b2SDuan Jiong restart: 306766f5d6ceSWei Wang for_each_fib6_node_rt_rcu(fn) { 30689b6b35abSDavid Ahern res.f6i = rt; 306914895687SDavid Ahern if (fib6_check_expired(rt)) 3070b55b76b2SDuan Jiong continue; 307193c2fb25SDavid Ahern if (rt->fib6_flags & RTF_REJECT) 3072b55b76b2SDuan Jiong break; 3073c55c8988SDavid Ahern if (unlikely(rt->nh)) { 3074c55c8988SDavid Ahern if (nexthop_is_blackhole(rt->nh)) 3075c55c8988SDavid Ahern continue; 3076c55c8988SDavid Ahern /* on match, res->nh is filled in and potentially ret */ 3077c55c8988SDavid Ahern if (nexthop_for_each_fib6_nh(rt->nh, 3078c55c8988SDavid Ahern fib6_nh_redirect_match, 3079c55c8988SDavid Ahern &arg)) 30800b34eb00SDavid Ahern goto out; 3081c55c8988SDavid Ahern } else { 3082c55c8988SDavid Ahern res.nh = rt->fib6_nh; 3083c55c8988SDavid Ahern if (ip6_redirect_nh_match(&res, fl6, &rdfl->gateway, 3084c55c8988SDavid Ahern &ret)) 3085c55c8988SDavid Ahern goto out; 3086c55c8988SDavid Ahern } 3087b55b76b2SDuan Jiong } 3088b55b76b2SDuan Jiong 3089b55b76b2SDuan Jiong if (!rt) 3090421842edSDavid Ahern rt = net->ipv6.fib6_null_entry; 309193c2fb25SDavid Ahern else if (rt->fib6_flags & RTF_REJECT) { 309223fb93a4SDavid Ahern ret = net->ipv6.ip6_null_entry; 3093b0a1ba59SMartin KaFai Lau goto out; 3094b0a1ba59SMartin KaFai Lau } 3095b0a1ba59SMartin KaFai Lau 3096421842edSDavid Ahern if (rt == net->ipv6.fib6_null_entry) { 3097a3c00e46SMartin KaFai Lau fn = fib6_backtrack(fn, &fl6->saddr); 3098a3c00e46SMartin KaFai Lau if (fn) 3099a3c00e46SMartin KaFai Lau goto restart; 3100b55b76b2SDuan Jiong } 3101a3c00e46SMartin KaFai Lau 31029b6b35abSDavid Ahern res.f6i = rt; 31031cf844c7SDavid Ahern res.nh = rt->fib6_nh; 3104b0a1ba59SMartin KaFai Lau out: 31057d21fec9SDavid Ahern if (ret) { 310610585b43SDavid Ahern ip6_hold_safe(net, &ret); 31077d21fec9SDavid Ahern } else { 31087d21fec9SDavid Ahern res.fib6_flags = res.f6i->fib6_flags; 31097d21fec9SDavid Ahern res.fib6_type = res.f6i->fib6_type; 31109b6b35abSDavid Ahern ret = ip6_create_rt_rcu(&res); 31117d21fec9SDavid Ahern } 3112b55b76b2SDuan Jiong 311366f5d6ceSWei Wang rcu_read_unlock(); 3114b55b76b2SDuan Jiong 31158ff2e5b2SDavid Ahern trace_fib6_table_lookup(net, &res, table, fl6); 311623fb93a4SDavid Ahern return ret; 3117b55b76b2SDuan Jiong }; 3118b55b76b2SDuan Jiong 3119b55b76b2SDuan Jiong static struct dst_entry *ip6_route_redirect(struct net *net, 3120b55b76b2SDuan Jiong const struct flowi6 *fl6, 3121b75cc8f9SDavid Ahern const struct sk_buff *skb, 3122b55b76b2SDuan Jiong const struct in6_addr *gateway) 3123b55b76b2SDuan Jiong { 3124b55b76b2SDuan Jiong int flags = RT6_LOOKUP_F_HAS_SADDR; 3125b55b76b2SDuan Jiong struct ip6rd_flowi rdfl; 3126b55b76b2SDuan Jiong 3127b55b76b2SDuan Jiong rdfl.fl6 = *fl6; 3128b55b76b2SDuan Jiong rdfl.gateway = *gateway; 3129b55b76b2SDuan Jiong 3130b75cc8f9SDavid Ahern return fib6_rule_lookup(net, &rdfl.fl6, skb, 3131b55b76b2SDuan Jiong flags, __ip6_route_redirect); 3132b55b76b2SDuan Jiong } 3133b55b76b2SDuan Jiong 3134e2d118a1SLorenzo Colitti void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark, 3135e2d118a1SLorenzo Colitti kuid_t uid) 31363a5ad2eeSDavid S. Miller { 31373a5ad2eeSDavid S. Miller const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; 31383a5ad2eeSDavid S. Miller struct dst_entry *dst; 31391f7f10acSMaciej Żenczykowski struct flowi6 fl6 = { 31401f7f10acSMaciej Żenczykowski .flowi6_iif = LOOPBACK_IFINDEX, 31411f7f10acSMaciej Żenczykowski .flowi6_oif = oif, 31421f7f10acSMaciej Żenczykowski .flowi6_mark = mark, 31431f7f10acSMaciej Żenczykowski .daddr = iph->daddr, 31441f7f10acSMaciej Żenczykowski .saddr = iph->saddr, 31451f7f10acSMaciej Żenczykowski .flowlabel = ip6_flowinfo(iph), 31461f7f10acSMaciej Żenczykowski .flowi6_uid = uid, 31471f7f10acSMaciej Żenczykowski }; 31483a5ad2eeSDavid S. Miller 3149b75cc8f9SDavid Ahern dst = ip6_route_redirect(net, &fl6, skb, &ipv6_hdr(skb)->saddr); 31506700c270SDavid S. Miller rt6_do_redirect(dst, NULL, skb); 31513a5ad2eeSDavid S. Miller dst_release(dst); 31523a5ad2eeSDavid S. Miller } 31533a5ad2eeSDavid S. Miller EXPORT_SYMBOL_GPL(ip6_redirect); 31543a5ad2eeSDavid S. Miller 3155d456336dSMaciej Żenczykowski void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif) 3156c92a59ecSDuan Jiong { 3157c92a59ecSDuan Jiong const struct ipv6hdr *iph = ipv6_hdr(skb); 3158c92a59ecSDuan Jiong const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb); 3159c92a59ecSDuan Jiong struct dst_entry *dst; 31600b26fb17SMaciej Żenczykowski struct flowi6 fl6 = { 31610b26fb17SMaciej Żenczykowski .flowi6_iif = LOOPBACK_IFINDEX, 31620b26fb17SMaciej Żenczykowski .flowi6_oif = oif, 31630b26fb17SMaciej Żenczykowski .daddr = msg->dest, 31640b26fb17SMaciej Żenczykowski .saddr = iph->daddr, 31650b26fb17SMaciej Żenczykowski .flowi6_uid = sock_net_uid(net, NULL), 31660b26fb17SMaciej Żenczykowski }; 3167c92a59ecSDuan Jiong 3168b75cc8f9SDavid Ahern dst = ip6_route_redirect(net, &fl6, skb, &iph->saddr); 3169c92a59ecSDuan Jiong rt6_do_redirect(dst, NULL, skb); 3170c92a59ecSDuan Jiong dst_release(dst); 3171c92a59ecSDuan Jiong } 3172c92a59ecSDuan Jiong 31733a5ad2eeSDavid S. Miller void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk) 31743a5ad2eeSDavid S. Miller { 31753c5b4d69SEric Dumazet ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, 31763c5b4d69SEric Dumazet READ_ONCE(sk->sk_mark), sk->sk_uid); 31773a5ad2eeSDavid S. Miller } 31783a5ad2eeSDavid S. Miller EXPORT_SYMBOL_GPL(ip6_sk_redirect); 31793a5ad2eeSDavid S. Miller 31800dbaee3bSDavid S. Miller static unsigned int ip6_default_advmss(const struct dst_entry *dst) 31811da177e4SLinus Torvalds { 31820dbaee3bSDavid S. Miller struct net_device *dev = dst->dev; 31830dbaee3bSDavid S. Miller unsigned int mtu = dst_mtu(dst); 31840dbaee3bSDavid S. Miller struct net *net = dev_net(dev); 31850dbaee3bSDavid S. Miller 31861da177e4SLinus Torvalds mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr); 31871da177e4SLinus Torvalds 31885578689aSDaniel Lezcano if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss) 31895578689aSDaniel Lezcano mtu = net->ipv6.sysctl.ip6_rt_min_advmss; 31901da177e4SLinus Torvalds 31911da177e4SLinus Torvalds /* 31921da177e4SLinus Torvalds * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and 31931da177e4SLinus Torvalds * corresponding MSS is IPV6_MAXPLEN - tcp_header_size. 31941da177e4SLinus Torvalds * IPV6_MAXPLEN is also valid and means: "any MSS, 31951da177e4SLinus Torvalds * rely only on pmtu discovery" 31961da177e4SLinus Torvalds */ 31971da177e4SLinus Torvalds if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr)) 31981da177e4SLinus Torvalds mtu = IPV6_MAXPLEN; 31991da177e4SLinus Torvalds return mtu; 32001da177e4SLinus Torvalds } 32011da177e4SLinus Torvalds 3202f67fbeaeSBrian Vazquez INDIRECT_CALLABLE_SCOPE unsigned int ip6_mtu(const struct dst_entry *dst) 3203d33e4553SDavid S. Miller { 3204427faee1SVadim Fedorenko return ip6_dst_mtu_maybe_forward(dst, false); 3205d33e4553SDavid S. Miller } 32069c97921aSBrian Vazquez EXPORT_INDIRECT_CALLABLE(ip6_mtu); 3207d33e4553SDavid S. Miller 3208901731b8SDavid Ahern /* MTU selection: 3209901731b8SDavid Ahern * 1. mtu on route is locked - use it 3210901731b8SDavid Ahern * 2. mtu from nexthop exception 3211901731b8SDavid Ahern * 3. mtu from egress device 3212901731b8SDavid Ahern * 3213901731b8SDavid Ahern * based on ip6_dst_mtu_forward and exception logic of 3214901731b8SDavid Ahern * rt6_find_cached_rt; called with rcu_read_lock 3215901731b8SDavid Ahern */ 3216b748f260SDavid Ahern u32 ip6_mtu_from_fib6(const struct fib6_result *res, 3217b748f260SDavid Ahern const struct in6_addr *daddr, 3218b748f260SDavid Ahern const struct in6_addr *saddr) 3219901731b8SDavid Ahern { 3220b748f260SDavid Ahern const struct fib6_nh *nh = res->nh; 3221b748f260SDavid Ahern struct fib6_info *f6i = res->f6i; 3222901731b8SDavid Ahern struct inet6_dev *idev; 3223510e2cedSWei Wang struct rt6_info *rt; 3224901731b8SDavid Ahern u32 mtu = 0; 3225901731b8SDavid Ahern 3226901731b8SDavid Ahern if (unlikely(fib6_metric_locked(f6i, RTAX_MTU))) { 3227901731b8SDavid Ahern mtu = f6i->fib6_pmtu; 3228901731b8SDavid Ahern if (mtu) 3229901731b8SDavid Ahern goto out; 3230901731b8SDavid Ahern } 3231901731b8SDavid Ahern 3232510e2cedSWei Wang rt = rt6_find_cached_rt(res, daddr, saddr); 3233510e2cedSWei Wang if (unlikely(rt)) { 3234510e2cedSWei Wang mtu = dst_metric_raw(&rt->dst, RTAX_MTU); 3235510e2cedSWei Wang } else { 3236b748f260SDavid Ahern struct net_device *dev = nh->fib_nh_dev; 3237901731b8SDavid Ahern 3238901731b8SDavid Ahern mtu = IPV6_MIN_MTU; 3239901731b8SDavid Ahern idev = __in6_dev_get(dev); 3240901731b8SDavid Ahern if (idev && idev->cnf.mtu6 > mtu) 3241901731b8SDavid Ahern mtu = idev->cnf.mtu6; 3242901731b8SDavid Ahern } 3243901731b8SDavid Ahern 3244901731b8SDavid Ahern mtu = min_t(unsigned int, mtu, IP6_MAX_MTU); 3245901731b8SDavid Ahern out: 3246b748f260SDavid Ahern return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu); 3247901731b8SDavid Ahern } 3248901731b8SDavid Ahern 32493b00944cSYOSHIFUJI Hideaki struct dst_entry *icmp6_dst_alloc(struct net_device *dev, 325087a11578SDavid S. Miller struct flowi6 *fl6) 32511da177e4SLinus Torvalds { 325287a11578SDavid S. Miller struct dst_entry *dst; 32531da177e4SLinus Torvalds struct rt6_info *rt; 32541da177e4SLinus Torvalds struct inet6_dev *idev = in6_dev_get(dev); 3255c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(dev); 32561da177e4SLinus Torvalds 325738308473SDavid S. Miller if (unlikely(!idev)) 3258122bdf67SEric Dumazet return ERR_PTR(-ENODEV); 32591da177e4SLinus Torvalds 3260ad706862SMartin KaFai Lau rt = ip6_dst_alloc(net, dev, 0); 326138308473SDavid S. Miller if (unlikely(!rt)) { 32621da177e4SLinus Torvalds in6_dev_put(idev); 326387a11578SDavid S. Miller dst = ERR_PTR(-ENOMEM); 32641da177e4SLinus Torvalds goto out; 32651da177e4SLinus Torvalds } 32661da177e4SLinus Torvalds 3267588753f1SBrendan McGrath rt->dst.input = ip6_input; 32688e2ec639SYan, Zheng rt->dst.output = ip6_output; 3269550bab42SJulian Anastasov rt->rt6i_gateway = fl6->daddr; 327087a11578SDavid S. Miller rt->rt6i_dst.addr = fl6->daddr; 32718e2ec639SYan, Zheng rt->rt6i_dst.plen = 128; 32728e2ec639SYan, Zheng rt->rt6i_idev = idev; 327314edd87dSLi RongQing dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0); 32741da177e4SLinus Torvalds 32754c981e28SIdo Schimmel /* Add this dst into uncached_list so that rt6_disable_ip() can 3276587fea74SWei Wang * do proper release of the net_device 3277587fea74SWei Wang */ 3278587fea74SWei Wang rt6_uncached_list_add(rt); 32791da177e4SLinus Torvalds 328087a11578SDavid S. Miller dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0); 328187a11578SDavid S. Miller 32821da177e4SLinus Torvalds out: 328387a11578SDavid S. Miller return dst; 32841da177e4SLinus Torvalds } 32851da177e4SLinus Torvalds 3286af6d1034SJon Maxwell static void ip6_dst_gc(struct dst_ops *ops) 32871da177e4SLinus Torvalds { 328886393e52SAlexey Dobriyan struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops); 32897019b78eSDaniel Lezcano int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval; 32907019b78eSDaniel Lezcano int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity; 32917019b78eSDaniel Lezcano int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout; 32927019b78eSDaniel Lezcano unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc; 32939cb7c013SEric Dumazet unsigned int val; 3294fc66f95cSEric Dumazet int entries; 32951da177e4SLinus Torvalds 3296af6d1034SJon Maxwell if (time_after(rt_last_gc + rt_min_interval, jiffies)) 32971da177e4SLinus Torvalds goto out; 32981da177e4SLinus Torvalds 32999cb7c013SEric Dumazet fib6_run_gc(atomic_inc_return(&net->ipv6.ip6_rt_gc_expire), net, true); 3300fc66f95cSEric Dumazet entries = dst_entries_get_slow(ops); 3301fc66f95cSEric Dumazet if (entries < ops->gc_thresh) 33029cb7c013SEric Dumazet atomic_set(&net->ipv6.ip6_rt_gc_expire, rt_gc_timeout >> 1); 33031da177e4SLinus Torvalds out: 33049cb7c013SEric Dumazet val = atomic_read(&net->ipv6.ip6_rt_gc_expire); 33059cb7c013SEric Dumazet atomic_set(&net->ipv6.ip6_rt_gc_expire, val - (val >> rt_elasticity)); 33061da177e4SLinus Torvalds } 33071da177e4SLinus Torvalds 3308b2c709ccSDavid Ahern static int ip6_nh_lookup_table(struct net *net, struct fib6_config *cfg, 3309b2c709ccSDavid Ahern const struct in6_addr *gw_addr, u32 tbid, 3310b2c709ccSDavid Ahern int flags, struct fib6_result *res) 33118c14586fSDavid Ahern { 33128c14586fSDavid Ahern struct flowi6 fl6 = { 33138c14586fSDavid Ahern .flowi6_oif = cfg->fc_ifindex, 33148c14586fSDavid Ahern .daddr = *gw_addr, 33158c14586fSDavid Ahern .saddr = cfg->fc_prefsrc, 33168c14586fSDavid Ahern }; 33178c14586fSDavid Ahern struct fib6_table *table; 3318b2c709ccSDavid Ahern int err; 33198c14586fSDavid Ahern 3320f4797b33SDavid Ahern table = fib6_get_table(net, tbid); 33218c14586fSDavid Ahern if (!table) 3322b2c709ccSDavid Ahern return -EINVAL; 33238c14586fSDavid Ahern 33248c14586fSDavid Ahern if (!ipv6_addr_any(&cfg->fc_prefsrc)) 33258c14586fSDavid Ahern flags |= RT6_LOOKUP_F_HAS_SADDR; 33268c14586fSDavid Ahern 3327f4797b33SDavid Ahern flags |= RT6_LOOKUP_F_IGNORE_LINKSTATE; 33288c14586fSDavid Ahern 3329b2c709ccSDavid Ahern err = fib6_table_lookup(net, table, cfg->fc_ifindex, &fl6, res, flags); 3330b2c709ccSDavid Ahern if (!err && res->f6i != net->ipv6.fib6_null_entry) 3331b2c709ccSDavid Ahern fib6_select_path(net, res, &fl6, cfg->fc_ifindex, 3332b2c709ccSDavid Ahern cfg->fc_ifindex != 0, NULL, flags); 33338c14586fSDavid Ahern 3334b2c709ccSDavid Ahern return err; 33358c14586fSDavid Ahern } 33368c14586fSDavid Ahern 3337fc1e64e1SDavid Ahern static int ip6_route_check_nh_onlink(struct net *net, 3338fc1e64e1SDavid Ahern struct fib6_config *cfg, 33399fbb704cSDavid Ahern const struct net_device *dev, 3340fc1e64e1SDavid Ahern struct netlink_ext_ack *extack) 3341fc1e64e1SDavid Ahern { 3342b2c709ccSDavid Ahern u32 tbid = l3mdev_fib_table_rcu(dev) ? : RT_TABLE_MAIN; 3343fc1e64e1SDavid Ahern const struct in6_addr *gw_addr = &cfg->fc_gateway; 3344b2c709ccSDavid Ahern struct fib6_result res = {}; 3345fc1e64e1SDavid Ahern int err; 3346fc1e64e1SDavid Ahern 3347b2c709ccSDavid Ahern err = ip6_nh_lookup_table(net, cfg, gw_addr, tbid, 0, &res); 3348b2c709ccSDavid Ahern if (!err && !(res.fib6_flags & RTF_REJECT) && 33494ed591c8SDavid Ahern /* ignore match if it is the default route */ 3350b2c709ccSDavid Ahern !ipv6_addr_any(&res.f6i->fib6_dst.addr) && 3351b2c709ccSDavid Ahern (res.fib6_type != RTN_UNICAST || dev != res.nh->fib_nh_dev)) { 335244750f84SDavid Ahern NL_SET_ERR_MSG(extack, 335344750f84SDavid Ahern "Nexthop has invalid gateway or device mismatch"); 3354fc1e64e1SDavid Ahern err = -EINVAL; 3355fc1e64e1SDavid Ahern } 3356fc1e64e1SDavid Ahern 3357fc1e64e1SDavid Ahern return err; 3358fc1e64e1SDavid Ahern } 3359fc1e64e1SDavid Ahern 33601edce99fSDavid Ahern static int ip6_route_check_nh(struct net *net, 33611edce99fSDavid Ahern struct fib6_config *cfg, 33621edce99fSDavid Ahern struct net_device **_dev, 33633515440dSEric Dumazet netdevice_tracker *dev_tracker, 33641edce99fSDavid Ahern struct inet6_dev **idev) 33651edce99fSDavid Ahern { 33661edce99fSDavid Ahern const struct in6_addr *gw_addr = &cfg->fc_gateway; 33671edce99fSDavid Ahern struct net_device *dev = _dev ? *_dev : NULL; 3368b2c709ccSDavid Ahern int flags = RT6_LOOKUP_F_IFACE; 3369b2c709ccSDavid Ahern struct fib6_result res = {}; 33701edce99fSDavid Ahern int err = -EHOSTUNREACH; 33711edce99fSDavid Ahern 33721edce99fSDavid Ahern if (cfg->fc_table) { 3373b2c709ccSDavid Ahern err = ip6_nh_lookup_table(net, cfg, gw_addr, 3374b2c709ccSDavid Ahern cfg->fc_table, flags, &res); 3375b2c709ccSDavid Ahern /* gw_addr can not require a gateway or resolve to a reject 3376b2c709ccSDavid Ahern * route. If a device is given, it must match the result. 3377b2c709ccSDavid Ahern */ 3378b2c709ccSDavid Ahern if (err || res.fib6_flags & RTF_REJECT || 3379b2c709ccSDavid Ahern res.nh->fib_nh_gw_family || 3380b2c709ccSDavid Ahern (dev && dev != res.nh->fib_nh_dev)) 3381b2c709ccSDavid Ahern err = -EHOSTUNREACH; 33821edce99fSDavid Ahern } 33831edce99fSDavid Ahern 3384b2c709ccSDavid Ahern if (err < 0) { 3385b2c709ccSDavid Ahern struct flowi6 fl6 = { 3386b2c709ccSDavid Ahern .flowi6_oif = cfg->fc_ifindex, 3387b2c709ccSDavid Ahern .daddr = *gw_addr, 3388b2c709ccSDavid Ahern }; 33891edce99fSDavid Ahern 3390b2c709ccSDavid Ahern err = fib6_lookup(net, cfg->fc_ifindex, &fl6, &res, flags); 3391b2c709ccSDavid Ahern if (err || res.fib6_flags & RTF_REJECT || 3392b2c709ccSDavid Ahern res.nh->fib_nh_gw_family) 3393b2c709ccSDavid Ahern err = -EHOSTUNREACH; 33941edce99fSDavid Ahern 3395b2c709ccSDavid Ahern if (err) 3396b2c709ccSDavid Ahern return err; 3397b2c709ccSDavid Ahern 3398b2c709ccSDavid Ahern fib6_select_path(net, &res, &fl6, cfg->fc_ifindex, 3399b2c709ccSDavid Ahern cfg->fc_ifindex != 0, NULL, flags); 34001edce99fSDavid Ahern } 34011edce99fSDavid Ahern 34021edce99fSDavid Ahern err = 0; 3403b2c709ccSDavid Ahern if (dev) { 3404b2c709ccSDavid Ahern if (dev != res.nh->fib_nh_dev) 3405b2c709ccSDavid Ahern err = -EHOSTUNREACH; 3406b2c709ccSDavid Ahern } else { 3407b2c709ccSDavid Ahern *_dev = dev = res.nh->fib_nh_dev; 34083515440dSEric Dumazet netdev_hold(dev, dev_tracker, GFP_ATOMIC); 3409b2c709ccSDavid Ahern *idev = in6_dev_get(dev); 3410b2c709ccSDavid Ahern } 34111edce99fSDavid Ahern 34121edce99fSDavid Ahern return err; 34131edce99fSDavid Ahern } 34141edce99fSDavid Ahern 34159fbb704cSDavid Ahern static int ip6_validate_gw(struct net *net, struct fib6_config *cfg, 34163515440dSEric Dumazet struct net_device **_dev, 34173515440dSEric Dumazet netdevice_tracker *dev_tracker, 34183515440dSEric Dumazet struct inet6_dev **idev, 34199fbb704cSDavid Ahern struct netlink_ext_ack *extack) 34209fbb704cSDavid Ahern { 34219fbb704cSDavid Ahern const struct in6_addr *gw_addr = &cfg->fc_gateway; 34229fbb704cSDavid Ahern int gwa_type = ipv6_addr_type(gw_addr); 3423232378e8SDavid Ahern bool skip_dev = gwa_type & IPV6_ADDR_LINKLOCAL ? false : true; 34249fbb704cSDavid Ahern const struct net_device *dev = *_dev; 3425232378e8SDavid Ahern bool need_addr_check = !dev; 34269fbb704cSDavid Ahern int err = -EINVAL; 34279fbb704cSDavid Ahern 34289fbb704cSDavid Ahern /* if gw_addr is local we will fail to detect this in case 34299fbb704cSDavid Ahern * address is still TENTATIVE (DAD in progress). rt6_lookup() 34309fbb704cSDavid Ahern * will return already-added prefix route via interface that 34319fbb704cSDavid Ahern * prefix route was assigned to, which might be non-loopback. 34329fbb704cSDavid Ahern */ 3433232378e8SDavid Ahern if (dev && 3434232378e8SDavid Ahern ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) { 3435232378e8SDavid Ahern NL_SET_ERR_MSG(extack, "Gateway can not be a local address"); 34369fbb704cSDavid Ahern goto out; 34379fbb704cSDavid Ahern } 34389fbb704cSDavid Ahern 34399fbb704cSDavid Ahern if (gwa_type != (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_UNICAST)) { 34409fbb704cSDavid Ahern /* IPv6 strictly inhibits using not link-local 34419fbb704cSDavid Ahern * addresses as nexthop address. 34429fbb704cSDavid Ahern * Otherwise, router will not able to send redirects. 34439fbb704cSDavid Ahern * It is very good, but in some (rare!) circumstances 34449fbb704cSDavid Ahern * (SIT, PtP, NBMA NOARP links) it is handy to allow 34459fbb704cSDavid Ahern * some exceptions. --ANK 34469fbb704cSDavid Ahern * We allow IPv4-mapped nexthops to support RFC4798-type 34479fbb704cSDavid Ahern * addressing 34489fbb704cSDavid Ahern */ 34499fbb704cSDavid Ahern if (!(gwa_type & (IPV6_ADDR_UNICAST | IPV6_ADDR_MAPPED))) { 34509fbb704cSDavid Ahern NL_SET_ERR_MSG(extack, "Invalid gateway address"); 34519fbb704cSDavid Ahern goto out; 34529fbb704cSDavid Ahern } 34539fbb704cSDavid Ahern 3454b2c709ccSDavid Ahern rcu_read_lock(); 3455b2c709ccSDavid Ahern 34569fbb704cSDavid Ahern if (cfg->fc_flags & RTNH_F_ONLINK) 34579fbb704cSDavid Ahern err = ip6_route_check_nh_onlink(net, cfg, dev, extack); 34589fbb704cSDavid Ahern else 34593515440dSEric Dumazet err = ip6_route_check_nh(net, cfg, _dev, dev_tracker, 34603515440dSEric Dumazet idev); 34619fbb704cSDavid Ahern 3462b2c709ccSDavid Ahern rcu_read_unlock(); 3463b2c709ccSDavid Ahern 34649fbb704cSDavid Ahern if (err) 34659fbb704cSDavid Ahern goto out; 34669fbb704cSDavid Ahern } 34679fbb704cSDavid Ahern 34689fbb704cSDavid Ahern /* reload in case device was changed */ 34699fbb704cSDavid Ahern dev = *_dev; 34709fbb704cSDavid Ahern 34719fbb704cSDavid Ahern err = -EINVAL; 34729fbb704cSDavid Ahern if (!dev) { 34739fbb704cSDavid Ahern NL_SET_ERR_MSG(extack, "Egress device not specified"); 34749fbb704cSDavid Ahern goto out; 34759fbb704cSDavid Ahern } else if (dev->flags & IFF_LOOPBACK) { 34769fbb704cSDavid Ahern NL_SET_ERR_MSG(extack, 34779fbb704cSDavid Ahern "Egress device can not be loopback device for this route"); 34789fbb704cSDavid Ahern goto out; 34799fbb704cSDavid Ahern } 3480232378e8SDavid Ahern 3481232378e8SDavid Ahern /* if we did not check gw_addr above, do so now that the 3482232378e8SDavid Ahern * egress device has been resolved. 3483232378e8SDavid Ahern */ 3484232378e8SDavid Ahern if (need_addr_check && 3485232378e8SDavid Ahern ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) { 3486232378e8SDavid Ahern NL_SET_ERR_MSG(extack, "Gateway can not be a local address"); 3487232378e8SDavid Ahern goto out; 3488232378e8SDavid Ahern } 3489232378e8SDavid Ahern 34909fbb704cSDavid Ahern err = 0; 34919fbb704cSDavid Ahern out: 34929fbb704cSDavid Ahern return err; 34939fbb704cSDavid Ahern } 34949fbb704cSDavid Ahern 349583c44251SDavid Ahern static bool fib6_is_reject(u32 flags, struct net_device *dev, int addr_type) 349683c44251SDavid Ahern { 349783c44251SDavid Ahern if ((flags & RTF_REJECT) || 349883c44251SDavid Ahern (dev && (dev->flags & IFF_LOOPBACK) && 349983c44251SDavid Ahern !(addr_type & IPV6_ADDR_LOOPBACK) && 3500aea23c32SDavid Ahern !(flags & (RTF_ANYCAST | RTF_LOCAL)))) 350183c44251SDavid Ahern return true; 350283c44251SDavid Ahern 350383c44251SDavid Ahern return false; 350483c44251SDavid Ahern } 350583c44251SDavid Ahern 350683c44251SDavid Ahern int fib6_nh_init(struct net *net, struct fib6_nh *fib6_nh, 350783c44251SDavid Ahern struct fib6_config *cfg, gfp_t gfp_flags, 350883c44251SDavid Ahern struct netlink_ext_ack *extack) 350983c44251SDavid Ahern { 351070f7457aSJakub Kicinski netdevice_tracker *dev_tracker = &fib6_nh->fib_nh_dev_tracker; 351183c44251SDavid Ahern struct net_device *dev = NULL; 351283c44251SDavid Ahern struct inet6_dev *idev = NULL; 351383c44251SDavid Ahern int addr_type; 351483c44251SDavid Ahern int err; 351583c44251SDavid Ahern 3516f1741730SDavid Ahern fib6_nh->fib_nh_family = AF_INET6; 35171bef4c22SEric Dumazet #ifdef CONFIG_IPV6_ROUTER_PREF 35181bef4c22SEric Dumazet fib6_nh->last_probe = jiffies; 35191bef4c22SEric Dumazet #endif 352038428d68SRoopa Prabhu if (cfg->fc_is_fdb) { 352138428d68SRoopa Prabhu fib6_nh->fib_nh_gw6 = cfg->fc_gateway; 352238428d68SRoopa Prabhu fib6_nh->fib_nh_gw_family = AF_INET6; 352338428d68SRoopa Prabhu return 0; 352438428d68SRoopa Prabhu } 3525f1741730SDavid Ahern 352683c44251SDavid Ahern err = -ENODEV; 352783c44251SDavid Ahern if (cfg->fc_ifindex) { 352870f7457aSJakub Kicinski dev = netdev_get_by_index(net, cfg->fc_ifindex, 352970f7457aSJakub Kicinski dev_tracker, gfp_flags); 353083c44251SDavid Ahern if (!dev) 353183c44251SDavid Ahern goto out; 353283c44251SDavid Ahern idev = in6_dev_get(dev); 353383c44251SDavid Ahern if (!idev) 353483c44251SDavid Ahern goto out; 353583c44251SDavid Ahern } 353683c44251SDavid Ahern 353783c44251SDavid Ahern if (cfg->fc_flags & RTNH_F_ONLINK) { 353883c44251SDavid Ahern if (!dev) { 353983c44251SDavid Ahern NL_SET_ERR_MSG(extack, 354083c44251SDavid Ahern "Nexthop device required for onlink"); 354183c44251SDavid Ahern goto out; 354283c44251SDavid Ahern } 354383c44251SDavid Ahern 354483c44251SDavid Ahern if (!(dev->flags & IFF_UP)) { 354583c44251SDavid Ahern NL_SET_ERR_MSG(extack, "Nexthop device is not up"); 354683c44251SDavid Ahern err = -ENETDOWN; 354783c44251SDavid Ahern goto out; 354883c44251SDavid Ahern } 354983c44251SDavid Ahern 3550ad1601aeSDavid Ahern fib6_nh->fib_nh_flags |= RTNH_F_ONLINK; 355183c44251SDavid Ahern } 355283c44251SDavid Ahern 3553ad1601aeSDavid Ahern fib6_nh->fib_nh_weight = 1; 355483c44251SDavid Ahern 355583c44251SDavid Ahern /* We cannot add true routes via loopback here, 355683c44251SDavid Ahern * they would result in kernel looping; promote them to reject routes 355783c44251SDavid Ahern */ 355883c44251SDavid Ahern addr_type = ipv6_addr_type(&cfg->fc_dst); 355983c44251SDavid Ahern if (fib6_is_reject(cfg->fc_flags, dev, addr_type)) { 356083c44251SDavid Ahern /* hold loopback dev/idev if we haven't done so. */ 356183c44251SDavid Ahern if (dev != net->loopback_dev) { 356283c44251SDavid Ahern if (dev) { 356370f7457aSJakub Kicinski netdev_put(dev, dev_tracker); 356483c44251SDavid Ahern in6_dev_put(idev); 356583c44251SDavid Ahern } 356683c44251SDavid Ahern dev = net->loopback_dev; 356770f7457aSJakub Kicinski netdev_hold(dev, dev_tracker, gfp_flags); 356883c44251SDavid Ahern idev = in6_dev_get(dev); 356983c44251SDavid Ahern if (!idev) { 357083c44251SDavid Ahern err = -ENODEV; 357183c44251SDavid Ahern goto out; 357283c44251SDavid Ahern } 357383c44251SDavid Ahern } 35747dd73168SDavid Ahern goto pcpu_alloc; 357583c44251SDavid Ahern } 357683c44251SDavid Ahern 357783c44251SDavid Ahern if (cfg->fc_flags & RTF_GATEWAY) { 35783515440dSEric Dumazet err = ip6_validate_gw(net, cfg, &dev, dev_tracker, 35793515440dSEric Dumazet &idev, extack); 358083c44251SDavid Ahern if (err) 358183c44251SDavid Ahern goto out; 358283c44251SDavid Ahern 3583ad1601aeSDavid Ahern fib6_nh->fib_nh_gw6 = cfg->fc_gateway; 3584bdf00467SDavid Ahern fib6_nh->fib_nh_gw_family = AF_INET6; 358583c44251SDavid Ahern } 358683c44251SDavid Ahern 358783c44251SDavid Ahern err = -ENODEV; 358883c44251SDavid Ahern if (!dev) 358983c44251SDavid Ahern goto out; 359083c44251SDavid Ahern 359183c44251SDavid Ahern if (idev->cnf.disable_ipv6) { 359283c44251SDavid Ahern NL_SET_ERR_MSG(extack, "IPv6 is disabled on nexthop device"); 359383c44251SDavid Ahern err = -EACCES; 359483c44251SDavid Ahern goto out; 359583c44251SDavid Ahern } 359683c44251SDavid Ahern 359783c44251SDavid Ahern if (!(dev->flags & IFF_UP) && !cfg->fc_ignore_dev_down) { 359883c44251SDavid Ahern NL_SET_ERR_MSG(extack, "Nexthop device is not up"); 359983c44251SDavid Ahern err = -ENETDOWN; 360083c44251SDavid Ahern goto out; 360183c44251SDavid Ahern } 360283c44251SDavid Ahern 360383c44251SDavid Ahern if (!(cfg->fc_flags & (RTF_LOCAL | RTF_ANYCAST)) && 360483c44251SDavid Ahern !netif_carrier_ok(dev)) 3605ad1601aeSDavid Ahern fib6_nh->fib_nh_flags |= RTNH_F_LINKDOWN; 360683c44251SDavid Ahern 3607faee6769SAlexander Aring err = fib_nh_common_init(net, &fib6_nh->nh_common, cfg->fc_encap, 36087dd73168SDavid Ahern cfg->fc_encap_type, cfg, gfp_flags, extack); 36097dd73168SDavid Ahern if (err) 36107dd73168SDavid Ahern goto out; 36117dd73168SDavid Ahern 36127dd73168SDavid Ahern pcpu_alloc: 3613f40b6ae2SDavid Ahern fib6_nh->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, gfp_flags); 3614f40b6ae2SDavid Ahern if (!fib6_nh->rt6i_pcpu) { 3615f40b6ae2SDavid Ahern err = -ENOMEM; 3616f40b6ae2SDavid Ahern goto out; 3617f40b6ae2SDavid Ahern } 3618f40b6ae2SDavid Ahern 3619ad1601aeSDavid Ahern fib6_nh->fib_nh_dev = dev; 3620f1741730SDavid Ahern fib6_nh->fib_nh_oif = dev->ifindex; 362183c44251SDavid Ahern err = 0; 362283c44251SDavid Ahern out: 362383c44251SDavid Ahern if (idev) 362483c44251SDavid Ahern in6_dev_put(idev); 362583c44251SDavid Ahern 362683c44251SDavid Ahern if (err) { 3627ad1601aeSDavid Ahern lwtstate_put(fib6_nh->fib_nh_lws); 3628ad1601aeSDavid Ahern fib6_nh->fib_nh_lws = NULL; 362970f7457aSJakub Kicinski netdev_put(dev, dev_tracker); 363083c44251SDavid Ahern } 363183c44251SDavid Ahern 363283c44251SDavid Ahern return err; 363383c44251SDavid Ahern } 363483c44251SDavid Ahern 3635dac7d0f2SDavid Ahern void fib6_nh_release(struct fib6_nh *fib6_nh) 3636dac7d0f2SDavid Ahern { 3637cc5c073aSDavid Ahern struct rt6_exception_bucket *bucket; 3638cc5c073aSDavid Ahern 3639cc5c073aSDavid Ahern rcu_read_lock(); 3640cc5c073aSDavid Ahern 3641cc5c073aSDavid Ahern fib6_nh_flush_exceptions(fib6_nh, NULL); 3642cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(fib6_nh, NULL); 3643cc5c073aSDavid Ahern if (bucket) { 3644cc5c073aSDavid Ahern rcu_assign_pointer(fib6_nh->rt6i_exception_bucket, NULL); 3645cc5c073aSDavid Ahern kfree(bucket); 3646cc5c073aSDavid Ahern } 3647cc5c073aSDavid Ahern 3648cc5c073aSDavid Ahern rcu_read_unlock(); 3649cc5c073aSDavid Ahern 365061308050SNikolay Aleksandrov fib6_nh_release_dsts(fib6_nh); 3651f40b6ae2SDavid Ahern free_percpu(fib6_nh->rt6i_pcpu); 3652f40b6ae2SDavid Ahern 3653979e276eSDavid Ahern fib_nh_common_release(&fib6_nh->nh_common); 3654dac7d0f2SDavid Ahern } 3655dac7d0f2SDavid Ahern 36568837cbbfSNikolay Aleksandrov void fib6_nh_release_dsts(struct fib6_nh *fib6_nh) 36578837cbbfSNikolay Aleksandrov { 36588837cbbfSNikolay Aleksandrov int cpu; 36598837cbbfSNikolay Aleksandrov 36608837cbbfSNikolay Aleksandrov if (!fib6_nh->rt6i_pcpu) 36618837cbbfSNikolay Aleksandrov return; 36628837cbbfSNikolay Aleksandrov 36638837cbbfSNikolay Aleksandrov for_each_possible_cpu(cpu) { 36648837cbbfSNikolay Aleksandrov struct rt6_info *pcpu_rt, **ppcpu_rt; 36658837cbbfSNikolay Aleksandrov 36668837cbbfSNikolay Aleksandrov ppcpu_rt = per_cpu_ptr(fib6_nh->rt6i_pcpu, cpu); 36678837cbbfSNikolay Aleksandrov pcpu_rt = xchg(ppcpu_rt, NULL); 36688837cbbfSNikolay Aleksandrov if (pcpu_rt) { 36698837cbbfSNikolay Aleksandrov dst_dev_put(&pcpu_rt->dst); 36708837cbbfSNikolay Aleksandrov dst_release(&pcpu_rt->dst); 36718837cbbfSNikolay Aleksandrov } 36728837cbbfSNikolay Aleksandrov } 36738837cbbfSNikolay Aleksandrov } 36748837cbbfSNikolay Aleksandrov 36758d1c802bSDavid Ahern static struct fib6_info *ip6_route_info_create(struct fib6_config *cfg, 3676acb54e3cSDavid Ahern gfp_t gfp_flags, 3677333c4301SDavid Ahern struct netlink_ext_ack *extack) 36781da177e4SLinus Torvalds { 36795578689aSDaniel Lezcano struct net *net = cfg->fc_nlinfo.nl_net; 36808d1c802bSDavid Ahern struct fib6_info *rt = NULL; 3681f88d8ea6SDavid Ahern struct nexthop *nh = NULL; 3682c71099acSThomas Graf struct fib6_table *table; 3683f88d8ea6SDavid Ahern struct fib6_nh *fib6_nh; 36848c5b83f0SRoopa Prabhu int err = -EINVAL; 368583c44251SDavid Ahern int addr_type; 36861da177e4SLinus Torvalds 3687557c44beSDavid Ahern /* RTF_PCPU is an internal flag; can not be set by userspace */ 3688d5d531cbSDavid Ahern if (cfg->fc_flags & RTF_PCPU) { 3689d5d531cbSDavid Ahern NL_SET_ERR_MSG(extack, "Userspace can not set RTF_PCPU"); 3690557c44beSDavid Ahern goto out; 3691d5d531cbSDavid Ahern } 3692557c44beSDavid Ahern 36932ea2352eSWei Wang /* RTF_CACHE is an internal flag; can not be set by userspace */ 36942ea2352eSWei Wang if (cfg->fc_flags & RTF_CACHE) { 36952ea2352eSWei Wang NL_SET_ERR_MSG(extack, "Userspace can not set RTF_CACHE"); 36962ea2352eSWei Wang goto out; 36972ea2352eSWei Wang } 36982ea2352eSWei Wang 3699e8478e80SDavid Ahern if (cfg->fc_type > RTN_MAX) { 3700e8478e80SDavid Ahern NL_SET_ERR_MSG(extack, "Invalid route type"); 3701e8478e80SDavid Ahern goto out; 3702e8478e80SDavid Ahern } 3703e8478e80SDavid Ahern 3704d5d531cbSDavid Ahern if (cfg->fc_dst_len > 128) { 3705d5d531cbSDavid Ahern NL_SET_ERR_MSG(extack, "Invalid prefix length"); 37068c5b83f0SRoopa Prabhu goto out; 3707d5d531cbSDavid Ahern } 3708d5d531cbSDavid Ahern if (cfg->fc_src_len > 128) { 3709d5d531cbSDavid Ahern NL_SET_ERR_MSG(extack, "Invalid source address length"); 3710d5d531cbSDavid Ahern goto out; 3711d5d531cbSDavid Ahern } 37121da177e4SLinus Torvalds #ifndef CONFIG_IPV6_SUBTREES 3713d5d531cbSDavid Ahern if (cfg->fc_src_len) { 3714d5d531cbSDavid Ahern NL_SET_ERR_MSG(extack, 3715d5d531cbSDavid Ahern "Specifying source address requires IPV6_SUBTREES to be enabled"); 37168c5b83f0SRoopa Prabhu goto out; 3717d5d531cbSDavid Ahern } 37181da177e4SLinus Torvalds #endif 37195b98324eSDavid Ahern if (cfg->fc_nh_id) { 37205b98324eSDavid Ahern nh = nexthop_find_by_id(net, cfg->fc_nh_id); 37215b98324eSDavid Ahern if (!nh) { 37225b98324eSDavid Ahern NL_SET_ERR_MSG(extack, "Nexthop id does not exist"); 37235b98324eSDavid Ahern goto out; 37245b98324eSDavid Ahern } 37255b98324eSDavid Ahern err = fib6_check_nexthop(nh, cfg, extack); 37265b98324eSDavid Ahern if (err) 37275b98324eSDavid Ahern goto out; 37285b98324eSDavid Ahern } 3729fc1e64e1SDavid Ahern 3730c71099acSThomas Graf err = -ENOBUFS; 373138308473SDavid S. Miller if (cfg->fc_nlinfo.nlh && 3732d71314b4SMatti Vaittinen !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) { 3733d71314b4SMatti Vaittinen table = fib6_get_table(net, cfg->fc_table); 373438308473SDavid S. Miller if (!table) { 3735f3213831SJoe Perches pr_warn("NLM_F_CREATE should be specified when creating new route\n"); 3736d71314b4SMatti Vaittinen table = fib6_new_table(net, cfg->fc_table); 3737d71314b4SMatti Vaittinen } 3738d71314b4SMatti Vaittinen } else { 3739d71314b4SMatti Vaittinen table = fib6_new_table(net, cfg->fc_table); 3740d71314b4SMatti Vaittinen } 374138308473SDavid S. Miller 374238308473SDavid S. Miller if (!table) 3743c71099acSThomas Graf goto out; 3744c71099acSThomas Graf 37451da177e4SLinus Torvalds err = -ENOMEM; 3746f88d8ea6SDavid Ahern rt = fib6_info_alloc(gfp_flags, !nh); 374793531c67SDavid Ahern if (!rt) 37481da177e4SLinus Torvalds goto out; 374993531c67SDavid Ahern 3750d7e774f3SDavid Ahern rt->fib6_metrics = ip_fib_metrics_init(net, cfg->fc_mx, cfg->fc_mx_len, 3751d7e774f3SDavid Ahern extack); 3752767a2217SDavid Ahern if (IS_ERR(rt->fib6_metrics)) { 3753767a2217SDavid Ahern err = PTR_ERR(rt->fib6_metrics); 3754fda21d46SEric Dumazet /* Do not leave garbage there. */ 3755fda21d46SEric Dumazet rt->fib6_metrics = (struct dst_metrics *)&dst_default_metrics; 37568fb4792fSPaolo Abeni goto out_free; 3757767a2217SDavid Ahern } 3758767a2217SDavid Ahern 375993531c67SDavid Ahern if (cfg->fc_flags & RTF_ADDRCONF) 376093531c67SDavid Ahern rt->dst_nocount = true; 37611da177e4SLinus Torvalds 37621716a961SGao feng if (cfg->fc_flags & RTF_EXPIRES) 37633dec89b1SKui-Feng Lee fib6_set_expires_locked(rt, jiffies + 37641716a961SGao feng clock_t_to_jiffies(cfg->fc_expires)); 37651716a961SGao feng else 37663dec89b1SKui-Feng Lee fib6_clean_expires_locked(rt); 37671da177e4SLinus Torvalds 376886872cb5SThomas Graf if (cfg->fc_protocol == RTPROT_UNSPEC) 376986872cb5SThomas Graf cfg->fc_protocol = RTPROT_BOOT; 377093c2fb25SDavid Ahern rt->fib6_protocol = cfg->fc_protocol; 377186872cb5SThomas Graf 377283c44251SDavid Ahern rt->fib6_table = table; 377383c44251SDavid Ahern rt->fib6_metric = cfg->fc_metric; 3774c7036d97SDavid Ahern rt->fib6_type = cfg->fc_type ? : RTN_UNICAST; 37752b2450caSDavid Ahern rt->fib6_flags = cfg->fc_flags & ~RTF_GATEWAY; 377619e42e45SRoopa Prabhu 377793c2fb25SDavid Ahern ipv6_addr_prefix(&rt->fib6_dst.addr, &cfg->fc_dst, cfg->fc_dst_len); 377893c2fb25SDavid Ahern rt->fib6_dst.plen = cfg->fc_dst_len; 37791da177e4SLinus Torvalds 37801da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES 378193c2fb25SDavid Ahern ipv6_addr_prefix(&rt->fib6_src.addr, &cfg->fc_src, cfg->fc_src_len); 378293c2fb25SDavid Ahern rt->fib6_src.plen = cfg->fc_src_len; 37831da177e4SLinus Torvalds #endif 3784f88d8ea6SDavid Ahern if (nh) { 3785f88d8ea6SDavid Ahern if (rt->fib6_src.plen) { 37864daa95afSColin Ian King NL_SET_ERR_MSG(extack, "Nexthops can not be used with source routing"); 3787821bbf79SCoco Li goto out_free; 3788f88d8ea6SDavid Ahern } 3789706ec919SXiyu Yang if (!nexthop_get(nh)) { 3790706ec919SXiyu Yang NL_SET_ERR_MSG(extack, "Nexthop has been deleted"); 3791821bbf79SCoco Li goto out_free; 3792706ec919SXiyu Yang } 3793f88d8ea6SDavid Ahern rt->nh = nh; 3794f88d8ea6SDavid Ahern fib6_nh = nexthop_fib6_nh(rt->nh); 3795f88d8ea6SDavid Ahern } else { 37961cf844c7SDavid Ahern err = fib6_nh_init(net, rt->fib6_nh, cfg, gfp_flags, extack); 37971da177e4SLinus Torvalds if (err) 37981da177e4SLinus Torvalds goto out; 37999fbb704cSDavid Ahern 3800f88d8ea6SDavid Ahern fib6_nh = rt->fib6_nh; 3801f88d8ea6SDavid Ahern 3802f88d8ea6SDavid Ahern /* We cannot add true routes via loopback here, they would 3803f88d8ea6SDavid Ahern * result in kernel looping; promote them to reject routes 380483c44251SDavid Ahern */ 380583c44251SDavid Ahern addr_type = ipv6_addr_type(&cfg->fc_dst); 3806f88d8ea6SDavid Ahern if (fib6_is_reject(cfg->fc_flags, rt->fib6_nh->fib_nh_dev, 3807f88d8ea6SDavid Ahern addr_type)) 380883c44251SDavid Ahern rt->fib6_flags = RTF_REJECT | RTF_NONEXTHOP; 3809f88d8ea6SDavid Ahern } 3810955ec4cbSDavid Ahern 3811c3968a85SDaniel Walter if (!ipv6_addr_any(&cfg->fc_prefsrc)) { 3812f88d8ea6SDavid Ahern struct net_device *dev = fib6_nh->fib_nh_dev; 381383c44251SDavid Ahern 3814c3968a85SDaniel Walter if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) { 3815d5d531cbSDavid Ahern NL_SET_ERR_MSG(extack, "Invalid source address"); 3816c3968a85SDaniel Walter err = -EINVAL; 3817c3968a85SDaniel Walter goto out; 3818c3968a85SDaniel Walter } 381993c2fb25SDavid Ahern rt->fib6_prefsrc.addr = cfg->fc_prefsrc; 382093c2fb25SDavid Ahern rt->fib6_prefsrc.plen = 128; 3821c3968a85SDaniel Walter } else 382293c2fb25SDavid Ahern rt->fib6_prefsrc.plen = 0; 3823c3968a85SDaniel Walter 38248c5b83f0SRoopa Prabhu return rt; 38251da177e4SLinus Torvalds out: 382693531c67SDavid Ahern fib6_info_release(rt); 38278c5b83f0SRoopa Prabhu return ERR_PTR(err); 3828821bbf79SCoco Li out_free: 3829821bbf79SCoco Li ip_fib_metrics_put(rt->fib6_metrics); 3830821bbf79SCoco Li kfree(rt); 3831821bbf79SCoco Li return ERR_PTR(err); 38326b9ea5a6SRoopa Prabhu } 38336b9ea5a6SRoopa Prabhu 3834acb54e3cSDavid Ahern int ip6_route_add(struct fib6_config *cfg, gfp_t gfp_flags, 3835333c4301SDavid Ahern struct netlink_ext_ack *extack) 38366b9ea5a6SRoopa Prabhu { 38378d1c802bSDavid Ahern struct fib6_info *rt; 38386b9ea5a6SRoopa Prabhu int err; 38396b9ea5a6SRoopa Prabhu 3840acb54e3cSDavid Ahern rt = ip6_route_info_create(cfg, gfp_flags, extack); 3841d4ead6b3SDavid Ahern if (IS_ERR(rt)) 3842d4ead6b3SDavid Ahern return PTR_ERR(rt); 38436b9ea5a6SRoopa Prabhu 3844d4ead6b3SDavid Ahern err = __ip6_ins_rt(rt, &cfg->fc_nlinfo, extack); 384593531c67SDavid Ahern fib6_info_release(rt); 38466b9ea5a6SRoopa Prabhu 38471da177e4SLinus Torvalds return err; 38481da177e4SLinus Torvalds } 38491da177e4SLinus Torvalds 38508d1c802bSDavid Ahern static int __ip6_del_rt(struct fib6_info *rt, struct nl_info *info) 38511da177e4SLinus Torvalds { 3852afb1d4b5SDavid Ahern struct net *net = info->nl_net; 3853c71099acSThomas Graf struct fib6_table *table; 3854afb1d4b5SDavid Ahern int err; 38551da177e4SLinus Torvalds 3856421842edSDavid Ahern if (rt == net->ipv6.fib6_null_entry) { 38576825a26cSGao feng err = -ENOENT; 38586825a26cSGao feng goto out; 38596825a26cSGao feng } 38606c813a72SPatrick McHardy 386193c2fb25SDavid Ahern table = rt->fib6_table; 386266f5d6ceSWei Wang spin_lock_bh(&table->tb6_lock); 386386872cb5SThomas Graf err = fib6_del(rt, info); 386466f5d6ceSWei Wang spin_unlock_bh(&table->tb6_lock); 38651da177e4SLinus Torvalds 38666825a26cSGao feng out: 386793531c67SDavid Ahern fib6_info_release(rt); 38681da177e4SLinus Torvalds return err; 38691da177e4SLinus Torvalds } 38701da177e4SLinus Torvalds 387111dd74b3SRoopa Prabhu int ip6_del_rt(struct net *net, struct fib6_info *rt, bool skip_notify) 3872e0a1ad73SThomas Graf { 387311dd74b3SRoopa Prabhu struct nl_info info = { 387411dd74b3SRoopa Prabhu .nl_net = net, 387511dd74b3SRoopa Prabhu .skip_notify = skip_notify 387611dd74b3SRoopa Prabhu }; 3877afb1d4b5SDavid Ahern 3878528c4cebSDenis V. Lunev return __ip6_del_rt(rt, &info); 3879e0a1ad73SThomas Graf } 3880e0a1ad73SThomas Graf 38818d1c802bSDavid Ahern static int __ip6_del_rt_siblings(struct fib6_info *rt, struct fib6_config *cfg) 38820ae81335SDavid Ahern { 38830ae81335SDavid Ahern struct nl_info *info = &cfg->fc_nlinfo; 3884e3330039SWANG Cong struct net *net = info->nl_net; 388516a16cd3SDavid Ahern struct sk_buff *skb = NULL; 38860ae81335SDavid Ahern struct fib6_table *table; 3887e3330039SWANG Cong int err = -ENOENT; 38880ae81335SDavid Ahern 3889421842edSDavid Ahern if (rt == net->ipv6.fib6_null_entry) 3890e3330039SWANG Cong goto out_put; 389193c2fb25SDavid Ahern table = rt->fib6_table; 389266f5d6ceSWei Wang spin_lock_bh(&table->tb6_lock); 38930ae81335SDavid Ahern 389493c2fb25SDavid Ahern if (rt->fib6_nsiblings && cfg->fc_delete_all_nh) { 38958d1c802bSDavid Ahern struct fib6_info *sibling, *next_sibling; 38960284696bSIdo Schimmel struct fib6_node *fn; 38970ae81335SDavid Ahern 389816a16cd3SDavid Ahern /* prefer to send a single notification with all hops */ 389916a16cd3SDavid Ahern skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any()); 390016a16cd3SDavid Ahern if (skb) { 390116a16cd3SDavid Ahern u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0; 390216a16cd3SDavid Ahern 3903d4ead6b3SDavid Ahern if (rt6_fill_node(net, skb, rt, NULL, 390416a16cd3SDavid Ahern NULL, NULL, 0, RTM_DELROUTE, 390516a16cd3SDavid Ahern info->portid, seq, 0) < 0) { 390616a16cd3SDavid Ahern kfree_skb(skb); 390716a16cd3SDavid Ahern skb = NULL; 390816a16cd3SDavid Ahern } else 390916a16cd3SDavid Ahern info->skip_notify = 1; 391016a16cd3SDavid Ahern } 391116a16cd3SDavid Ahern 39120284696bSIdo Schimmel /* 'rt' points to the first sibling route. If it is not the 39130284696bSIdo Schimmel * leaf, then we do not need to send a notification. Otherwise, 39140284696bSIdo Schimmel * we need to check if the last sibling has a next route or not 39150284696bSIdo Schimmel * and emit a replace or delete notification, respectively. 39160284696bSIdo Schimmel */ 39172881fd61SIdo Schimmel info->skip_notify_kernel = 1; 39180284696bSIdo Schimmel fn = rcu_dereference_protected(rt->fib6_node, 39190284696bSIdo Schimmel lockdep_is_held(&table->tb6_lock)); 39200284696bSIdo Schimmel if (rcu_access_pointer(fn->leaf) == rt) { 39210284696bSIdo Schimmel struct fib6_info *last_sibling, *replace_rt; 39220284696bSIdo Schimmel 39230284696bSIdo Schimmel last_sibling = list_last_entry(&rt->fib6_siblings, 39240284696bSIdo Schimmel struct fib6_info, 39250284696bSIdo Schimmel fib6_siblings); 39260284696bSIdo Schimmel replace_rt = rcu_dereference_protected( 39270284696bSIdo Schimmel last_sibling->fib6_next, 39280284696bSIdo Schimmel lockdep_is_held(&table->tb6_lock)); 39290284696bSIdo Schimmel if (replace_rt) 39300284696bSIdo Schimmel call_fib6_entry_notifiers_replace(net, 39310284696bSIdo Schimmel replace_rt); 39320284696bSIdo Schimmel else 39330284696bSIdo Schimmel call_fib6_multipath_entry_notifiers(net, 3934caafb250SIdo Schimmel FIB_EVENT_ENTRY_DEL, 39350284696bSIdo Schimmel rt, rt->fib6_nsiblings, 39360284696bSIdo Schimmel NULL); 39370284696bSIdo Schimmel } 39380ae81335SDavid Ahern list_for_each_entry_safe(sibling, next_sibling, 393993c2fb25SDavid Ahern &rt->fib6_siblings, 394093c2fb25SDavid Ahern fib6_siblings) { 39410ae81335SDavid Ahern err = fib6_del(sibling, info); 39420ae81335SDavid Ahern if (err) 3943e3330039SWANG Cong goto out_unlock; 39440ae81335SDavid Ahern } 39450ae81335SDavid Ahern } 39460ae81335SDavid Ahern 39470ae81335SDavid Ahern err = fib6_del(rt, info); 3948e3330039SWANG Cong out_unlock: 394966f5d6ceSWei Wang spin_unlock_bh(&table->tb6_lock); 3950e3330039SWANG Cong out_put: 395193531c67SDavid Ahern fib6_info_release(rt); 395216a16cd3SDavid Ahern 395316a16cd3SDavid Ahern if (skb) { 3954e3330039SWANG Cong rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE, 395516a16cd3SDavid Ahern info->nlh, gfp_any()); 395616a16cd3SDavid Ahern } 39570ae81335SDavid Ahern return err; 39580ae81335SDavid Ahern } 39590ae81335SDavid Ahern 39600fa6efc5SDavid Ahern static int __ip6_del_cached_rt(struct rt6_info *rt, struct fib6_config *cfg) 396123fb93a4SDavid Ahern { 396223fb93a4SDavid Ahern int rc = -ESRCH; 396323fb93a4SDavid Ahern 396423fb93a4SDavid Ahern if (cfg->fc_ifindex && rt->dst.dev->ifindex != cfg->fc_ifindex) 396523fb93a4SDavid Ahern goto out; 396623fb93a4SDavid Ahern 396723fb93a4SDavid Ahern if (cfg->fc_flags & RTF_GATEWAY && 396823fb93a4SDavid Ahern !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway)) 396923fb93a4SDavid Ahern goto out; 3970761f6026SXin Long 397123fb93a4SDavid Ahern rc = rt6_remove_exception_rt(rt); 397223fb93a4SDavid Ahern out: 397323fb93a4SDavid Ahern return rc; 397423fb93a4SDavid Ahern } 397523fb93a4SDavid Ahern 39760fa6efc5SDavid Ahern static int ip6_del_cached_rt(struct fib6_config *cfg, struct fib6_info *rt, 39770fa6efc5SDavid Ahern struct fib6_nh *nh) 39780fa6efc5SDavid Ahern { 39790fa6efc5SDavid Ahern struct fib6_result res = { 39800fa6efc5SDavid Ahern .f6i = rt, 39810fa6efc5SDavid Ahern .nh = nh, 39820fa6efc5SDavid Ahern }; 39830fa6efc5SDavid Ahern struct rt6_info *rt_cache; 39840fa6efc5SDavid Ahern 39850fa6efc5SDavid Ahern rt_cache = rt6_find_cached_rt(&res, &cfg->fc_dst, &cfg->fc_src); 39860fa6efc5SDavid Ahern if (rt_cache) 39870fa6efc5SDavid Ahern return __ip6_del_cached_rt(rt_cache, cfg); 39880fa6efc5SDavid Ahern 39890fa6efc5SDavid Ahern return 0; 39900fa6efc5SDavid Ahern } 39910fa6efc5SDavid Ahern 39925b98324eSDavid Ahern struct fib6_nh_del_cached_rt_arg { 39935b98324eSDavid Ahern struct fib6_config *cfg; 39945b98324eSDavid Ahern struct fib6_info *f6i; 39955b98324eSDavid Ahern }; 39965b98324eSDavid Ahern 39975b98324eSDavid Ahern static int fib6_nh_del_cached_rt(struct fib6_nh *nh, void *_arg) 39985b98324eSDavid Ahern { 39995b98324eSDavid Ahern struct fib6_nh_del_cached_rt_arg *arg = _arg; 40005b98324eSDavid Ahern int rc; 40015b98324eSDavid Ahern 40025b98324eSDavid Ahern rc = ip6_del_cached_rt(arg->cfg, arg->f6i, nh); 40035b98324eSDavid Ahern return rc != -ESRCH ? rc : 0; 40045b98324eSDavid Ahern } 40055b98324eSDavid Ahern 40065b98324eSDavid Ahern static int ip6_del_cached_rt_nh(struct fib6_config *cfg, struct fib6_info *f6i) 40075b98324eSDavid Ahern { 40085b98324eSDavid Ahern struct fib6_nh_del_cached_rt_arg arg = { 40095b98324eSDavid Ahern .cfg = cfg, 40105b98324eSDavid Ahern .f6i = f6i 40115b98324eSDavid Ahern }; 40125b98324eSDavid Ahern 40135b98324eSDavid Ahern return nexthop_for_each_fib6_nh(f6i->nh, fib6_nh_del_cached_rt, &arg); 40145b98324eSDavid Ahern } 40155b98324eSDavid Ahern 4016333c4301SDavid Ahern static int ip6_route_del(struct fib6_config *cfg, 4017333c4301SDavid Ahern struct netlink_ext_ack *extack) 40181da177e4SLinus Torvalds { 4019c71099acSThomas Graf struct fib6_table *table; 40208d1c802bSDavid Ahern struct fib6_info *rt; 40211da177e4SLinus Torvalds struct fib6_node *fn; 40221da177e4SLinus Torvalds int err = -ESRCH; 40231da177e4SLinus Torvalds 40245578689aSDaniel Lezcano table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table); 4025d5d531cbSDavid Ahern if (!table) { 4026d5d531cbSDavid Ahern NL_SET_ERR_MSG(extack, "FIB table does not exist"); 4027c71099acSThomas Graf return err; 4028d5d531cbSDavid Ahern } 40291da177e4SLinus Torvalds 403066f5d6ceSWei Wang rcu_read_lock(); 4031c71099acSThomas Graf 4032c71099acSThomas Graf fn = fib6_locate(&table->tb6_root, 403386872cb5SThomas Graf &cfg->fc_dst, cfg->fc_dst_len, 403438fbeeeeSWei Wang &cfg->fc_src, cfg->fc_src_len, 40352b760fcfSWei Wang !(cfg->fc_flags & RTF_CACHE)); 40361da177e4SLinus Torvalds 40371da177e4SLinus Torvalds if (fn) { 403866f5d6ceSWei Wang for_each_fib6_node_rt_rcu(fn) { 4039ad1601aeSDavid Ahern struct fib6_nh *nh; 4040ad1601aeSDavid Ahern 40413401bfb1SStefano Brivio if (rt->nh && cfg->fc_nh_id && 40423401bfb1SStefano Brivio rt->nh->id != cfg->fc_nh_id) 40435b98324eSDavid Ahern continue; 404423fb93a4SDavid Ahern 40455b98324eSDavid Ahern if (cfg->fc_flags & RTF_CACHE) { 40465b98324eSDavid Ahern int rc = 0; 40475b98324eSDavid Ahern 40485b98324eSDavid Ahern if (rt->nh) { 40495b98324eSDavid Ahern rc = ip6_del_cached_rt_nh(cfg, rt); 40505b98324eSDavid Ahern } else if (cfg->fc_nh_id) { 40515b98324eSDavid Ahern continue; 40525b98324eSDavid Ahern } else { 40535b98324eSDavid Ahern nh = rt->fib6_nh; 40540fa6efc5SDavid Ahern rc = ip6_del_cached_rt(cfg, rt, nh); 40555b98324eSDavid Ahern } 40569e575010SEric Dumazet if (rc != -ESRCH) { 40579e575010SEric Dumazet rcu_read_unlock(); 405823fb93a4SDavid Ahern return rc; 405923fb93a4SDavid Ahern } 40601f56a01fSMartin KaFai Lau continue; 40612b760fcfSWei Wang } 4062ad1601aeSDavid Ahern 40635b98324eSDavid Ahern if (cfg->fc_metric && cfg->fc_metric != rt->fib6_metric) 40645b98324eSDavid Ahern continue; 40655b98324eSDavid Ahern if (cfg->fc_protocol && 40665b98324eSDavid Ahern cfg->fc_protocol != rt->fib6_protocol) 40675b98324eSDavid Ahern continue; 40685b98324eSDavid Ahern 40695b98324eSDavid Ahern if (rt->nh) { 40705b98324eSDavid Ahern if (!fib6_info_hold_safe(rt)) 40715b98324eSDavid Ahern continue; 40725b98324eSDavid Ahern rcu_read_unlock(); 40735b98324eSDavid Ahern 40745b98324eSDavid Ahern return __ip6_del_rt(rt, &cfg->fc_nlinfo); 40755b98324eSDavid Ahern } 40765b98324eSDavid Ahern if (cfg->fc_nh_id) 40775b98324eSDavid Ahern continue; 40785b98324eSDavid Ahern 40795b98324eSDavid Ahern nh = rt->fib6_nh; 408086872cb5SThomas Graf if (cfg->fc_ifindex && 4081ad1601aeSDavid Ahern (!nh->fib_nh_dev || 4082ad1601aeSDavid Ahern nh->fib_nh_dev->ifindex != cfg->fc_ifindex)) 40831da177e4SLinus Torvalds continue; 408486872cb5SThomas Graf if (cfg->fc_flags & RTF_GATEWAY && 4085ad1601aeSDavid Ahern !ipv6_addr_equal(&cfg->fc_gateway, &nh->fib_nh_gw6)) 40861da177e4SLinus Torvalds continue; 4087e873e4b9SWei Wang if (!fib6_info_hold_safe(rt)) 4088e873e4b9SWei Wang continue; 408966f5d6ceSWei Wang rcu_read_unlock(); 40901da177e4SLinus Torvalds 40910ae81335SDavid Ahern /* if gateway was specified only delete the one hop */ 40920ae81335SDavid Ahern if (cfg->fc_flags & RTF_GATEWAY) 409386872cb5SThomas Graf return __ip6_del_rt(rt, &cfg->fc_nlinfo); 40940ae81335SDavid Ahern 40950ae81335SDavid Ahern return __ip6_del_rt_siblings(rt, cfg); 40961da177e4SLinus Torvalds } 40971da177e4SLinus Torvalds } 409866f5d6ceSWei Wang rcu_read_unlock(); 40991da177e4SLinus Torvalds 41001da177e4SLinus Torvalds return err; 41011da177e4SLinus Torvalds } 41021da177e4SLinus Torvalds 41036700c270SDavid S. Miller static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb) 4104a6279458SYOSHIFUJI Hideaki { 4105a6279458SYOSHIFUJI Hideaki struct netevent_redirect netevent; 4106e8599ff4SDavid S. Miller struct rt6_info *rt, *nrt = NULL; 410785bd05deSDavid Ahern struct fib6_result res = {}; 4108e8599ff4SDavid S. Miller struct ndisc_options ndopts; 4109e8599ff4SDavid S. Miller struct inet6_dev *in6_dev; 4110e8599ff4SDavid S. Miller struct neighbour *neigh; 411171bcdba0SYOSHIFUJI Hideaki / 吉藤英明 struct rd_msg *msg; 41126e157b6aSDavid S. Miller int optlen, on_link; 41136e157b6aSDavid S. Miller u8 *lladdr; 4114e8599ff4SDavid S. Miller 411529a3cad5SSimon Horman optlen = skb_tail_pointer(skb) - skb_transport_header(skb); 411671bcdba0SYOSHIFUJI Hideaki / 吉藤英明 optlen -= sizeof(*msg); 4117e8599ff4SDavid S. Miller 4118e8599ff4SDavid S. Miller if (optlen < 0) { 41196e157b6aSDavid S. Miller net_dbg_ratelimited("rt6_do_redirect: packet too short\n"); 4120e8599ff4SDavid S. Miller return; 4121e8599ff4SDavid S. Miller } 4122e8599ff4SDavid S. Miller 412371bcdba0SYOSHIFUJI Hideaki / 吉藤英明 msg = (struct rd_msg *)icmp6_hdr(skb); 4124e8599ff4SDavid S. Miller 412571bcdba0SYOSHIFUJI Hideaki / 吉藤英明 if (ipv6_addr_is_multicast(&msg->dest)) { 41266e157b6aSDavid S. Miller net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n"); 4127e8599ff4SDavid S. Miller return; 4128e8599ff4SDavid S. Miller } 4129e8599ff4SDavid S. Miller 41306e157b6aSDavid S. Miller on_link = 0; 413171bcdba0SYOSHIFUJI Hideaki / 吉藤英明 if (ipv6_addr_equal(&msg->dest, &msg->target)) { 4132e8599ff4SDavid S. Miller on_link = 1; 413371bcdba0SYOSHIFUJI Hideaki / 吉藤英明 } else if (ipv6_addr_type(&msg->target) != 4134e8599ff4SDavid S. Miller (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) { 41356e157b6aSDavid S. Miller net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n"); 4136e8599ff4SDavid S. Miller return; 4137e8599ff4SDavid S. Miller } 4138e8599ff4SDavid S. Miller 4139e8599ff4SDavid S. Miller in6_dev = __in6_dev_get(skb->dev); 4140e8599ff4SDavid S. Miller if (!in6_dev) 4141e8599ff4SDavid S. Miller return; 4142e8599ff4SDavid S. Miller if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects) 4143e8599ff4SDavid S. Miller return; 4144e8599ff4SDavid S. Miller 4145e8599ff4SDavid S. Miller /* RFC2461 8.1: 4146e8599ff4SDavid S. Miller * The IP source address of the Redirect MUST be the same as the current 4147e8599ff4SDavid S. Miller * first-hop router for the specified ICMP Destination Address. 4148e8599ff4SDavid S. Miller */ 4149e8599ff4SDavid S. Miller 4150f997c55cSAlexander Aring if (!ndisc_parse_options(skb->dev, msg->opt, optlen, &ndopts)) { 4151e8599ff4SDavid S. Miller net_dbg_ratelimited("rt6_redirect: invalid ND options\n"); 4152e8599ff4SDavid S. Miller return; 4153e8599ff4SDavid S. Miller } 41546e157b6aSDavid S. Miller 41556e157b6aSDavid S. Miller lladdr = NULL; 4156e8599ff4SDavid S. Miller if (ndopts.nd_opts_tgt_lladdr) { 4157e8599ff4SDavid S. Miller lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr, 4158e8599ff4SDavid S. Miller skb->dev); 4159e8599ff4SDavid S. Miller if (!lladdr) { 4160e8599ff4SDavid S. Miller net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n"); 4161e8599ff4SDavid S. Miller return; 4162e8599ff4SDavid S. Miller } 4163e8599ff4SDavid S. Miller } 4164e8599ff4SDavid S. Miller 41656e157b6aSDavid S. Miller rt = (struct rt6_info *) dst; 4166ec13ad1dSMatthias Schiffer if (rt->rt6i_flags & RTF_REJECT) { 41676e157b6aSDavid S. Miller net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n"); 41686e157b6aSDavid S. Miller return; 41696e157b6aSDavid S. Miller } 41706e157b6aSDavid S. Miller 41716e157b6aSDavid S. Miller /* Redirect received -> path was valid. 41726e157b6aSDavid S. Miller * Look, redirects are sent only in response to data packets, 41736e157b6aSDavid S. Miller * so that this nexthop apparently is reachable. --ANK 41746e157b6aSDavid S. Miller */ 41750dec879fSJulian Anastasov dst_confirm_neigh(&rt->dst, &ipv6_hdr(skb)->saddr); 41766e157b6aSDavid S. Miller 417771bcdba0SYOSHIFUJI Hideaki / 吉藤英明 neigh = __neigh_lookup(&nd_tbl, &msg->target, skb->dev, 1); 4178e8599ff4SDavid S. Miller if (!neigh) 4179e8599ff4SDavid S. Miller return; 4180e8599ff4SDavid S. Miller 41811da177e4SLinus Torvalds /* 41821da177e4SLinus Torvalds * We have finally decided to accept it. 41831da177e4SLinus Torvalds */ 41841da177e4SLinus Torvalds 4185f997c55cSAlexander Aring ndisc_update(skb->dev, neigh, lladdr, NUD_STALE, 41861da177e4SLinus Torvalds NEIGH_UPDATE_F_WEAK_OVERRIDE| 41871da177e4SLinus Torvalds NEIGH_UPDATE_F_OVERRIDE| 41881da177e4SLinus Torvalds (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER| 4189f997c55cSAlexander Aring NEIGH_UPDATE_F_ISROUTER)), 4190f997c55cSAlexander Aring NDISC_REDIRECT, &ndopts); 41911da177e4SLinus Torvalds 41924d85cd0cSDavid Ahern rcu_read_lock(); 419385bd05deSDavid Ahern res.f6i = rcu_dereference(rt->from); 4194ff24e498SDavid S. Miller if (!res.f6i) 4195886b7a50SMartin KaFai Lau goto out; 41968a14e46fSDavid Ahern 419749d5b8efSDavid Ahern if (res.f6i->nh) { 419849d5b8efSDavid Ahern struct fib6_nh_match_arg arg = { 419949d5b8efSDavid Ahern .dev = dst->dev, 420049d5b8efSDavid Ahern .gw = &rt->rt6i_gateway, 420149d5b8efSDavid Ahern }; 420249d5b8efSDavid Ahern 420349d5b8efSDavid Ahern nexthop_for_each_fib6_nh(res.f6i->nh, 420449d5b8efSDavid Ahern fib6_nh_find_match, &arg); 420549d5b8efSDavid Ahern 420649d5b8efSDavid Ahern /* fib6_info uses a nexthop that does not have fib6_nh 420749d5b8efSDavid Ahern * using the dst->dev. Should be impossible 420849d5b8efSDavid Ahern */ 420949d5b8efSDavid Ahern if (!arg.match) 421049d5b8efSDavid Ahern goto out; 421149d5b8efSDavid Ahern res.nh = arg.match; 421249d5b8efSDavid Ahern } else { 42131cf844c7SDavid Ahern res.nh = res.f6i->fib6_nh; 421449d5b8efSDavid Ahern } 421549d5b8efSDavid Ahern 42167d21fec9SDavid Ahern res.fib6_flags = res.f6i->fib6_flags; 42177d21fec9SDavid Ahern res.fib6_type = res.f6i->fib6_type; 421885bd05deSDavid Ahern nrt = ip6_rt_cache_alloc(&res, &msg->dest, NULL); 421938308473SDavid S. Miller if (!nrt) 42201da177e4SLinus Torvalds goto out; 42211da177e4SLinus Torvalds 42221da177e4SLinus Torvalds nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE; 42231da177e4SLinus Torvalds if (on_link) 42241da177e4SLinus Torvalds nrt->rt6i_flags &= ~RTF_GATEWAY; 42251da177e4SLinus Torvalds 42264e3fd7a0SAlexey Dobriyan nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key; 42271da177e4SLinus Torvalds 4228886b7a50SMartin KaFai Lau /* rt6_insert_exception() will take care of duplicated exceptions */ 42295012f0a5SDavid Ahern if (rt6_insert_exception(nrt, &res)) { 42302b760fcfSWei Wang dst_release_immediate(&nrt->dst); 42312b760fcfSWei Wang goto out; 42322b760fcfSWei Wang } 42331da177e4SLinus Torvalds 4234d8d1f30bSChangli Gao netevent.old = &rt->dst; 4235d8d1f30bSChangli Gao netevent.new = &nrt->dst; 423671bcdba0SYOSHIFUJI Hideaki / 吉藤英明 netevent.daddr = &msg->dest; 423760592833SYOSHIFUJI Hideaki / 吉藤英明 netevent.neigh = neigh; 42388d71740cSTom Tucker call_netevent_notifiers(NETEVENT_REDIRECT, &netevent); 42398d71740cSTom Tucker 42401da177e4SLinus Torvalds out: 4241886b7a50SMartin KaFai Lau rcu_read_unlock(); 4242e8599ff4SDavid S. Miller neigh_release(neigh); 42436e157b6aSDavid S. Miller } 42446e157b6aSDavid S. Miller 424570ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO 42468d1c802bSDavid Ahern static struct fib6_info *rt6_get_route_info(struct net *net, 4247b71d1d42SEric Dumazet const struct in6_addr *prefix, int prefixlen, 4248830218c1SDavid Ahern const struct in6_addr *gwaddr, 4249830218c1SDavid Ahern struct net_device *dev) 425070ceb4f5SYOSHIFUJI Hideaki { 4251830218c1SDavid Ahern u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO; 4252830218c1SDavid Ahern int ifindex = dev->ifindex; 425370ceb4f5SYOSHIFUJI Hideaki struct fib6_node *fn; 42548d1c802bSDavid Ahern struct fib6_info *rt = NULL; 4255c71099acSThomas Graf struct fib6_table *table; 425670ceb4f5SYOSHIFUJI Hideaki 4257830218c1SDavid Ahern table = fib6_get_table(net, tb_id); 425838308473SDavid S. Miller if (!table) 4259c71099acSThomas Graf return NULL; 4260c71099acSThomas Graf 426166f5d6ceSWei Wang rcu_read_lock(); 426238fbeeeeSWei Wang fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0, true); 426370ceb4f5SYOSHIFUJI Hideaki if (!fn) 426470ceb4f5SYOSHIFUJI Hideaki goto out; 426570ceb4f5SYOSHIFUJI Hideaki 426666f5d6ceSWei Wang for_each_fib6_node_rt_rcu(fn) { 4267f88d8ea6SDavid Ahern /* these routes do not use nexthops */ 4268f88d8ea6SDavid Ahern if (rt->nh) 4269f88d8ea6SDavid Ahern continue; 42701cf844c7SDavid Ahern if (rt->fib6_nh->fib_nh_dev->ifindex != ifindex) 427170ceb4f5SYOSHIFUJI Hideaki continue; 42722b2450caSDavid Ahern if (!(rt->fib6_flags & RTF_ROUTEINFO) || 42731cf844c7SDavid Ahern !rt->fib6_nh->fib_nh_gw_family) 427470ceb4f5SYOSHIFUJI Hideaki continue; 42751cf844c7SDavid Ahern if (!ipv6_addr_equal(&rt->fib6_nh->fib_nh_gw6, gwaddr)) 427670ceb4f5SYOSHIFUJI Hideaki continue; 4277e873e4b9SWei Wang if (!fib6_info_hold_safe(rt)) 4278e873e4b9SWei Wang continue; 427970ceb4f5SYOSHIFUJI Hideaki break; 428070ceb4f5SYOSHIFUJI Hideaki } 428170ceb4f5SYOSHIFUJI Hideaki out: 428266f5d6ceSWei Wang rcu_read_unlock(); 428370ceb4f5SYOSHIFUJI Hideaki return rt; 428470ceb4f5SYOSHIFUJI Hideaki } 428570ceb4f5SYOSHIFUJI Hideaki 42868d1c802bSDavid Ahern static struct fib6_info *rt6_add_route_info(struct net *net, 4287b71d1d42SEric Dumazet const struct in6_addr *prefix, int prefixlen, 4288830218c1SDavid Ahern const struct in6_addr *gwaddr, 4289830218c1SDavid Ahern struct net_device *dev, 429095c96174SEric Dumazet unsigned int pref) 429170ceb4f5SYOSHIFUJI Hideaki { 429286872cb5SThomas Graf struct fib6_config cfg = { 4293238fc7eaSRami Rosen .fc_metric = IP6_RT_PRIO_USER, 4294830218c1SDavid Ahern .fc_ifindex = dev->ifindex, 429586872cb5SThomas Graf .fc_dst_len = prefixlen, 429686872cb5SThomas Graf .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO | 429786872cb5SThomas Graf RTF_UP | RTF_PREF(pref), 4298b91d5329SXin Long .fc_protocol = RTPROT_RA, 4299e8478e80SDavid Ahern .fc_type = RTN_UNICAST, 430015e47304SEric W. Biederman .fc_nlinfo.portid = 0, 4301efa2cea0SDaniel Lezcano .fc_nlinfo.nlh = NULL, 4302efa2cea0SDaniel Lezcano .fc_nlinfo.nl_net = net, 430386872cb5SThomas Graf }; 430470ceb4f5SYOSHIFUJI Hideaki 430591b2c9a0SXu Wang cfg.fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_INFO; 43064e3fd7a0SAlexey Dobriyan cfg.fc_dst = *prefix; 43074e3fd7a0SAlexey Dobriyan cfg.fc_gateway = *gwaddr; 430886872cb5SThomas Graf 4309e317da96SYOSHIFUJI Hideaki /* We should treat it as a default route if prefix length is 0. */ 4310e317da96SYOSHIFUJI Hideaki if (!prefixlen) 431186872cb5SThomas Graf cfg.fc_flags |= RTF_DEFAULT; 431270ceb4f5SYOSHIFUJI Hideaki 4313acb54e3cSDavid Ahern ip6_route_add(&cfg, GFP_ATOMIC, NULL); 431470ceb4f5SYOSHIFUJI Hideaki 4315830218c1SDavid Ahern return rt6_get_route_info(net, prefix, prefixlen, gwaddr, dev); 431670ceb4f5SYOSHIFUJI Hideaki } 431770ceb4f5SYOSHIFUJI Hideaki #endif 431870ceb4f5SYOSHIFUJI Hideaki 43198d1c802bSDavid Ahern struct fib6_info *rt6_get_dflt_router(struct net *net, 4320afb1d4b5SDavid Ahern const struct in6_addr *addr, 4321afb1d4b5SDavid Ahern struct net_device *dev) 43221da177e4SLinus Torvalds { 4323830218c1SDavid Ahern u32 tb_id = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT; 43248d1c802bSDavid Ahern struct fib6_info *rt; 4325c71099acSThomas Graf struct fib6_table *table; 43261da177e4SLinus Torvalds 4327afb1d4b5SDavid Ahern table = fib6_get_table(net, tb_id); 432838308473SDavid S. Miller if (!table) 4329c71099acSThomas Graf return NULL; 43301da177e4SLinus Torvalds 433166f5d6ceSWei Wang rcu_read_lock(); 433266f5d6ceSWei Wang for_each_fib6_node_rt_rcu(&table->tb6_root) { 4333f88d8ea6SDavid Ahern struct fib6_nh *nh; 4334ad1601aeSDavid Ahern 4335f88d8ea6SDavid Ahern /* RA routes do not use nexthops */ 4336f88d8ea6SDavid Ahern if (rt->nh) 4337f88d8ea6SDavid Ahern continue; 4338f88d8ea6SDavid Ahern 4339f88d8ea6SDavid Ahern nh = rt->fib6_nh; 4340ad1601aeSDavid Ahern if (dev == nh->fib_nh_dev && 434193c2fb25SDavid Ahern ((rt->fib6_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) && 4342ad1601aeSDavid Ahern ipv6_addr_equal(&nh->fib_nh_gw6, addr)) 43431da177e4SLinus Torvalds break; 43441da177e4SLinus Torvalds } 4345e873e4b9SWei Wang if (rt && !fib6_info_hold_safe(rt)) 4346e873e4b9SWei Wang rt = NULL; 434766f5d6ceSWei Wang rcu_read_unlock(); 43481da177e4SLinus Torvalds return rt; 43491da177e4SLinus Torvalds } 43501da177e4SLinus Torvalds 43518d1c802bSDavid Ahern struct fib6_info *rt6_add_dflt_router(struct net *net, 4352afb1d4b5SDavid Ahern const struct in6_addr *gwaddr, 4353ebacaaa0SYOSHIFUJI Hideaki struct net_device *dev, 43546b2e04bcSPraveen Chaudhary unsigned int pref, 43556b2e04bcSPraveen Chaudhary u32 defrtr_usr_metric) 43561da177e4SLinus Torvalds { 435786872cb5SThomas Graf struct fib6_config cfg = { 4358ca254490SDavid Ahern .fc_table = l3mdev_fib_table(dev) ? : RT6_TABLE_DFLT, 43596b2e04bcSPraveen Chaudhary .fc_metric = defrtr_usr_metric, 436086872cb5SThomas Graf .fc_ifindex = dev->ifindex, 436186872cb5SThomas Graf .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT | 436286872cb5SThomas Graf RTF_UP | RTF_EXPIRES | RTF_PREF(pref), 4363b91d5329SXin Long .fc_protocol = RTPROT_RA, 4364e8478e80SDavid Ahern .fc_type = RTN_UNICAST, 436515e47304SEric W. Biederman .fc_nlinfo.portid = 0, 43665578689aSDaniel Lezcano .fc_nlinfo.nlh = NULL, 4367afb1d4b5SDavid Ahern .fc_nlinfo.nl_net = net, 436886872cb5SThomas Graf }; 43691da177e4SLinus Torvalds 43704e3fd7a0SAlexey Dobriyan cfg.fc_gateway = *gwaddr; 43711da177e4SLinus Torvalds 4372acb54e3cSDavid Ahern if (!ip6_route_add(&cfg, GFP_ATOMIC, NULL)) { 4373830218c1SDavid Ahern struct fib6_table *table; 4374830218c1SDavid Ahern 4375830218c1SDavid Ahern table = fib6_get_table(dev_net(dev), cfg.fc_table); 4376830218c1SDavid Ahern if (table) 4377830218c1SDavid Ahern table->flags |= RT6_TABLE_HAS_DFLT_ROUTER; 4378830218c1SDavid Ahern } 43791da177e4SLinus Torvalds 4380afb1d4b5SDavid Ahern return rt6_get_dflt_router(net, gwaddr, dev); 43811da177e4SLinus Torvalds } 43821da177e4SLinus Torvalds 4383afb1d4b5SDavid Ahern static void __rt6_purge_dflt_routers(struct net *net, 4384afb1d4b5SDavid Ahern struct fib6_table *table) 43851da177e4SLinus Torvalds { 43868d1c802bSDavid Ahern struct fib6_info *rt; 43871da177e4SLinus Torvalds 43881da177e4SLinus Torvalds restart: 438966f5d6ceSWei Wang rcu_read_lock(); 439066f5d6ceSWei Wang for_each_fib6_node_rt_rcu(&table->tb6_root) { 4391dcd1f572SDavid Ahern struct net_device *dev = fib6_info_nh_dev(rt); 4392dcd1f572SDavid Ahern struct inet6_dev *idev = dev ? __in6_dev_get(dev) : NULL; 4393dcd1f572SDavid Ahern 439493c2fb25SDavid Ahern if (rt->fib6_flags & (RTF_DEFAULT | RTF_ADDRCONF) && 4395e873e4b9SWei Wang (!idev || idev->cnf.accept_ra != 2) && 4396e873e4b9SWei Wang fib6_info_hold_safe(rt)) { 439766f5d6ceSWei Wang rcu_read_unlock(); 439811dd74b3SRoopa Prabhu ip6_del_rt(net, rt, false); 43991da177e4SLinus Torvalds goto restart; 44001da177e4SLinus Torvalds } 44011da177e4SLinus Torvalds } 440266f5d6ceSWei Wang rcu_read_unlock(); 4403830218c1SDavid Ahern 4404830218c1SDavid Ahern table->flags &= ~RT6_TABLE_HAS_DFLT_ROUTER; 4405830218c1SDavid Ahern } 4406830218c1SDavid Ahern 4407830218c1SDavid Ahern void rt6_purge_dflt_routers(struct net *net) 4408830218c1SDavid Ahern { 4409830218c1SDavid Ahern struct fib6_table *table; 4410830218c1SDavid Ahern struct hlist_head *head; 4411830218c1SDavid Ahern unsigned int h; 4412830218c1SDavid Ahern 4413830218c1SDavid Ahern rcu_read_lock(); 4414830218c1SDavid Ahern 4415830218c1SDavid Ahern for (h = 0; h < FIB6_TABLE_HASHSZ; h++) { 4416830218c1SDavid Ahern head = &net->ipv6.fib_table_hash[h]; 4417830218c1SDavid Ahern hlist_for_each_entry_rcu(table, head, tb6_hlist) { 4418830218c1SDavid Ahern if (table->flags & RT6_TABLE_HAS_DFLT_ROUTER) 4419afb1d4b5SDavid Ahern __rt6_purge_dflt_routers(net, table); 4420830218c1SDavid Ahern } 4421830218c1SDavid Ahern } 4422830218c1SDavid Ahern 4423830218c1SDavid Ahern rcu_read_unlock(); 44241da177e4SLinus Torvalds } 44251da177e4SLinus Torvalds 44265578689aSDaniel Lezcano static void rtmsg_to_fib6_config(struct net *net, 44275578689aSDaniel Lezcano struct in6_rtmsg *rtmsg, 442886872cb5SThomas Graf struct fib6_config *cfg) 442986872cb5SThomas Graf { 44308823a3acSMaciej Żenczykowski *cfg = (struct fib6_config){ 44318823a3acSMaciej Żenczykowski .fc_table = l3mdev_fib_table_by_index(net, rtmsg->rtmsg_ifindex) ? 44328823a3acSMaciej Żenczykowski : RT6_TABLE_MAIN, 44338823a3acSMaciej Żenczykowski .fc_ifindex = rtmsg->rtmsg_ifindex, 443467f69513SDavid Ahern .fc_metric = rtmsg->rtmsg_metric ? : IP6_RT_PRIO_USER, 44358823a3acSMaciej Żenczykowski .fc_expires = rtmsg->rtmsg_info, 44368823a3acSMaciej Żenczykowski .fc_dst_len = rtmsg->rtmsg_dst_len, 44378823a3acSMaciej Żenczykowski .fc_src_len = rtmsg->rtmsg_src_len, 44388823a3acSMaciej Żenczykowski .fc_flags = rtmsg->rtmsg_flags, 44398823a3acSMaciej Żenczykowski .fc_type = rtmsg->rtmsg_type, 444086872cb5SThomas Graf 44418823a3acSMaciej Żenczykowski .fc_nlinfo.nl_net = net, 444286872cb5SThomas Graf 44438823a3acSMaciej Żenczykowski .fc_dst = rtmsg->rtmsg_dst, 44448823a3acSMaciej Żenczykowski .fc_src = rtmsg->rtmsg_src, 44458823a3acSMaciej Żenczykowski .fc_gateway = rtmsg->rtmsg_gateway, 44468823a3acSMaciej Żenczykowski }; 444786872cb5SThomas Graf } 444886872cb5SThomas Graf 44497c1552daSChristoph Hellwig int ipv6_route_ioctl(struct net *net, unsigned int cmd, struct in6_rtmsg *rtmsg) 44501da177e4SLinus Torvalds { 445186872cb5SThomas Graf struct fib6_config cfg; 44521da177e4SLinus Torvalds int err; 44531da177e4SLinus Torvalds 44547c1552daSChristoph Hellwig if (cmd != SIOCADDRT && cmd != SIOCDELRT) 44557c1552daSChristoph Hellwig return -EINVAL; 4456af31f412SEric W. Biederman if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) 44571da177e4SLinus Torvalds return -EPERM; 44581da177e4SLinus Torvalds 44597c1552daSChristoph Hellwig rtmsg_to_fib6_config(net, rtmsg, &cfg); 446086872cb5SThomas Graf 44611da177e4SLinus Torvalds rtnl_lock(); 44621da177e4SLinus Torvalds switch (cmd) { 44631da177e4SLinus Torvalds case SIOCADDRT: 4464acb54e3cSDavid Ahern err = ip6_route_add(&cfg, GFP_KERNEL, NULL); 44651da177e4SLinus Torvalds break; 44661da177e4SLinus Torvalds case SIOCDELRT: 4467333c4301SDavid Ahern err = ip6_route_del(&cfg, NULL); 44681da177e4SLinus Torvalds break; 44691da177e4SLinus Torvalds } 44701da177e4SLinus Torvalds rtnl_unlock(); 44711da177e4SLinus Torvalds return err; 44723ff50b79SStephen Hemminger } 44731da177e4SLinus Torvalds 44741da177e4SLinus Torvalds /* 44751da177e4SLinus Torvalds * Drop the packet on the floor 44761da177e4SLinus Torvalds */ 44771da177e4SLinus Torvalds 4478d5fdd6baSBrian Haley static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes) 44791da177e4SLinus Torvalds { 4480adf30907SEric Dumazet struct dst_entry *dst = skb_dst(skb); 44811d3fd8a1SStephen Suryaputra struct net *net = dev_net(dst->dev); 44821d3fd8a1SStephen Suryaputra struct inet6_dev *idev; 44833ae42cc8SMenglong Dong SKB_DR(reason); 44841d3fd8a1SStephen Suryaputra int type; 44851d3fd8a1SStephen Suryaputra 44861158f79fSDavid Ahern if (netif_is_l3_master(skb->dev) || 44871d3fd8a1SStephen Suryaputra dst->dev == net->loopback_dev) 44881d3fd8a1SStephen Suryaputra idev = __in6_dev_get_safely(dev_get_by_index_rcu(net, IP6CB(skb)->iif)); 44891d3fd8a1SStephen Suryaputra else 44901d3fd8a1SStephen Suryaputra idev = ip6_dst_idev(dst); 44911d3fd8a1SStephen Suryaputra 4492612f09e8SYOSHIFUJI Hideaki switch (ipstats_mib_noroutes) { 4493612f09e8SYOSHIFUJI Hideaki case IPSTATS_MIB_INNOROUTES: 44940660e03fSArnaldo Carvalho de Melo type = ipv6_addr_type(&ipv6_hdr(skb)->daddr); 449545bb0060SUlrich Weber if (type == IPV6_ADDR_ANY) { 44963ae42cc8SMenglong Dong SKB_DR_SET(reason, IP_INADDRERRORS); 44971d3fd8a1SStephen Suryaputra IP6_INC_STATS(net, idev, IPSTATS_MIB_INADDRERRORS); 4498612f09e8SYOSHIFUJI Hideaki break; 4499612f09e8SYOSHIFUJI Hideaki } 45003ae42cc8SMenglong Dong SKB_DR_SET(reason, IP_INNOROUTES); 4501a8eceea8SJoe Perches fallthrough; 4502612f09e8SYOSHIFUJI Hideaki case IPSTATS_MIB_OUTNOROUTES: 45033ae42cc8SMenglong Dong SKB_DR_OR(reason, IP_OUTNOROUTES); 45041d3fd8a1SStephen Suryaputra IP6_INC_STATS(net, idev, ipstats_mib_noroutes); 4505612f09e8SYOSHIFUJI Hideaki break; 4506612f09e8SYOSHIFUJI Hideaki } 45071d3fd8a1SStephen Suryaputra 45081d3fd8a1SStephen Suryaputra /* Start over by dropping the dst for l3mdev case */ 45091d3fd8a1SStephen Suryaputra if (netif_is_l3_master(skb->dev)) 45101d3fd8a1SStephen Suryaputra skb_dst_drop(skb); 45111d3fd8a1SStephen Suryaputra 45123ffe533cSAlexey Dobriyan icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0); 45133ae42cc8SMenglong Dong kfree_skb_reason(skb, reason); 45141da177e4SLinus Torvalds return 0; 45151da177e4SLinus Torvalds } 45161da177e4SLinus Torvalds 45179ce8ade0SThomas Graf static int ip6_pkt_discard(struct sk_buff *skb) 45189ce8ade0SThomas Graf { 4519612f09e8SYOSHIFUJI Hideaki return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES); 45209ce8ade0SThomas Graf } 45219ce8ade0SThomas Graf 4522ede2059dSEric W. Biederman static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb) 45231da177e4SLinus Torvalds { 4524adf30907SEric Dumazet skb->dev = skb_dst(skb)->dev; 4525612f09e8SYOSHIFUJI Hideaki return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES); 45261da177e4SLinus Torvalds } 45271da177e4SLinus Torvalds 45289ce8ade0SThomas Graf static int ip6_pkt_prohibit(struct sk_buff *skb) 45299ce8ade0SThomas Graf { 4530612f09e8SYOSHIFUJI Hideaki return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES); 45319ce8ade0SThomas Graf } 45329ce8ade0SThomas Graf 4533ede2059dSEric W. Biederman static int ip6_pkt_prohibit_out(struct net *net, struct sock *sk, struct sk_buff *skb) 45349ce8ade0SThomas Graf { 4535adf30907SEric Dumazet skb->dev = skb_dst(skb)->dev; 4536612f09e8SYOSHIFUJI Hideaki return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES); 45379ce8ade0SThomas Graf } 45389ce8ade0SThomas Graf 45391da177e4SLinus Torvalds /* 45401da177e4SLinus Torvalds * Allocate a dst for local (unicast / anycast) address. 45411da177e4SLinus Torvalds */ 45421da177e4SLinus Torvalds 4543360a9887SDavid Ahern struct fib6_info *addrconf_f6i_alloc(struct net *net, 4544afb1d4b5SDavid Ahern struct inet6_dev *idev, 45451da177e4SLinus Torvalds const struct in6_addr *addr, 45467f6c4039SHangbin Liu bool anycast, gfp_t gfp_flags, 45477f6c4039SHangbin Liu struct netlink_ext_ack *extack) 45481da177e4SLinus Torvalds { 4549c7a1ce39SDavid Ahern struct fib6_config cfg = { 4550c7a1ce39SDavid Ahern .fc_table = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL, 4551c7a1ce39SDavid Ahern .fc_ifindex = idev->dev->ifindex, 4552d55a2e37SMaciej Żenczykowski .fc_flags = RTF_UP | RTF_NONEXTHOP, 4553c7a1ce39SDavid Ahern .fc_dst = *addr, 4554c7a1ce39SDavid Ahern .fc_dst_len = 128, 4555c7a1ce39SDavid Ahern .fc_protocol = RTPROT_KERNEL, 4556c7a1ce39SDavid Ahern .fc_nlinfo.nl_net = net, 4557c7a1ce39SDavid Ahern .fc_ignore_dev_down = true, 4558c7a1ce39SDavid Ahern }; 4559d55a2e37SMaciej Żenczykowski struct fib6_info *f6i; 45605f02ce24SDavid Ahern 4561e8478e80SDavid Ahern if (anycast) { 4562c7a1ce39SDavid Ahern cfg.fc_type = RTN_ANYCAST; 4563c7a1ce39SDavid Ahern cfg.fc_flags |= RTF_ANYCAST; 4564e8478e80SDavid Ahern } else { 4565c7a1ce39SDavid Ahern cfg.fc_type = RTN_LOCAL; 4566c7a1ce39SDavid Ahern cfg.fc_flags |= RTF_LOCAL; 4567e8478e80SDavid Ahern } 45681da177e4SLinus Torvalds 45697f6c4039SHangbin Liu f6i = ip6_route_info_create(&cfg, gfp_flags, extack); 45703b0dc529SNicolas Dichtel if (!IS_ERR(f6i)) { 4571d55a2e37SMaciej Żenczykowski f6i->dst_nocount = true; 45723b0dc529SNicolas Dichtel 45733b0dc529SNicolas Dichtel if (!anycast && 45743b0dc529SNicolas Dichtel (net->ipv6.devconf_all->disable_policy || 45753b0dc529SNicolas Dichtel idev->cnf.disable_policy)) 45763b0dc529SNicolas Dichtel f6i->dst_nopolicy = true; 45773b0dc529SNicolas Dichtel } 45783b0dc529SNicolas Dichtel 4579d55a2e37SMaciej Żenczykowski return f6i; 45801da177e4SLinus Torvalds } 45811da177e4SLinus Torvalds 4582c3968a85SDaniel Walter /* remove deleted ip from prefsrc entries */ 4583c3968a85SDaniel Walter struct arg_dev_net_ip { 4584c3968a85SDaniel Walter struct net *net; 4585c3968a85SDaniel Walter struct in6_addr *addr; 4586c3968a85SDaniel Walter }; 4587c3968a85SDaniel Walter 45888d1c802bSDavid Ahern static int fib6_remove_prefsrc(struct fib6_info *rt, void *arg) 4589c3968a85SDaniel Walter { 4590c3968a85SDaniel Walter struct net *net = ((struct arg_dev_net_ip *)arg)->net; 4591c3968a85SDaniel Walter struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr; 4592c3968a85SDaniel Walter 4593f88d8ea6SDavid Ahern if (!rt->nh && 4594421842edSDavid Ahern rt != net->ipv6.fib6_null_entry && 4595b358f57fSHangbin Liu ipv6_addr_equal(addr, &rt->fib6_prefsrc.addr) && 4596b358f57fSHangbin Liu !ipv6_chk_addr(net, addr, rt->fib6_nh->fib_nh_dev, 0)) { 459760006a48SWei Wang spin_lock_bh(&rt6_exception_lock); 4598c3968a85SDaniel Walter /* remove prefsrc entry */ 459993c2fb25SDavid Ahern rt->fib6_prefsrc.plen = 0; 460060006a48SWei Wang spin_unlock_bh(&rt6_exception_lock); 4601c3968a85SDaniel Walter } 4602c3968a85SDaniel Walter return 0; 4603c3968a85SDaniel Walter } 4604c3968a85SDaniel Walter 4605c3968a85SDaniel Walter void rt6_remove_prefsrc(struct inet6_ifaddr *ifp) 4606c3968a85SDaniel Walter { 4607c3968a85SDaniel Walter struct net *net = dev_net(ifp->idev->dev); 4608c3968a85SDaniel Walter struct arg_dev_net_ip adni = { 4609c3968a85SDaniel Walter .net = net, 4610c3968a85SDaniel Walter .addr = &ifp->addr, 4611c3968a85SDaniel Walter }; 46120c3584d5SLi RongQing fib6_clean_all(net, fib6_remove_prefsrc, &adni); 4613c3968a85SDaniel Walter } 4614c3968a85SDaniel Walter 46152b2450caSDavid Ahern #define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT) 4616be7a010dSDuan Jiong 4617be7a010dSDuan Jiong /* Remove routers and update dst entries when gateway turn into host. */ 46188d1c802bSDavid Ahern static int fib6_clean_tohost(struct fib6_info *rt, void *arg) 4619be7a010dSDuan Jiong { 4620be7a010dSDuan Jiong struct in6_addr *gateway = (struct in6_addr *)arg; 4621f88d8ea6SDavid Ahern struct fib6_nh *nh; 4622be7a010dSDuan Jiong 4623f88d8ea6SDavid Ahern /* RA routes do not use nexthops */ 4624f88d8ea6SDavid Ahern if (rt->nh) 4625f88d8ea6SDavid Ahern return 0; 4626f88d8ea6SDavid Ahern 4627f88d8ea6SDavid Ahern nh = rt->fib6_nh; 462893c2fb25SDavid Ahern if (((rt->fib6_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) && 4629cc5c073aSDavid Ahern nh->fib_nh_gw_family && ipv6_addr_equal(gateway, &nh->fib_nh_gw6)) 4630be7a010dSDuan Jiong return -1; 4631b16cb459SWei Wang 4632b16cb459SWei Wang /* Further clean up cached routes in exception table. 4633b16cb459SWei Wang * This is needed because cached route may have a different 4634b16cb459SWei Wang * gateway than its 'parent' in the case of an ip redirect. 4635b16cb459SWei Wang */ 4636cc5c073aSDavid Ahern fib6_nh_exceptions_clean_tohost(nh, gateway); 4637b16cb459SWei Wang 4638be7a010dSDuan Jiong return 0; 4639be7a010dSDuan Jiong } 4640be7a010dSDuan Jiong 4641be7a010dSDuan Jiong void rt6_clean_tohost(struct net *net, struct in6_addr *gateway) 4642be7a010dSDuan Jiong { 4643be7a010dSDuan Jiong fib6_clean_all(net, fib6_clean_tohost, gateway); 4644be7a010dSDuan Jiong } 4645be7a010dSDuan Jiong 46462127d95aSIdo Schimmel struct arg_netdev_event { 46472127d95aSIdo Schimmel const struct net_device *dev; 46484c981e28SIdo Schimmel union { 4649ecc5663cSDavid Ahern unsigned char nh_flags; 46504c981e28SIdo Schimmel unsigned long event; 46514c981e28SIdo Schimmel }; 46522127d95aSIdo Schimmel }; 46532127d95aSIdo Schimmel 46548d1c802bSDavid Ahern static struct fib6_info *rt6_multipath_first_sibling(const struct fib6_info *rt) 4655d7dedee1SIdo Schimmel { 46568d1c802bSDavid Ahern struct fib6_info *iter; 4657d7dedee1SIdo Schimmel struct fib6_node *fn; 4658d7dedee1SIdo Schimmel 465993c2fb25SDavid Ahern fn = rcu_dereference_protected(rt->fib6_node, 466093c2fb25SDavid Ahern lockdep_is_held(&rt->fib6_table->tb6_lock)); 4661d7dedee1SIdo Schimmel iter = rcu_dereference_protected(fn->leaf, 466293c2fb25SDavid Ahern lockdep_is_held(&rt->fib6_table->tb6_lock)); 4663d7dedee1SIdo Schimmel while (iter) { 466493c2fb25SDavid Ahern if (iter->fib6_metric == rt->fib6_metric && 466533bd5ac5SDavid Ahern rt6_qualify_for_ecmp(iter)) 4666d7dedee1SIdo Schimmel return iter; 46678fb11a9aSDavid Ahern iter = rcu_dereference_protected(iter->fib6_next, 466893c2fb25SDavid Ahern lockdep_is_held(&rt->fib6_table->tb6_lock)); 4669d7dedee1SIdo Schimmel } 4670d7dedee1SIdo Schimmel 4671d7dedee1SIdo Schimmel return NULL; 4672d7dedee1SIdo Schimmel } 4673d7dedee1SIdo Schimmel 4674f88d8ea6SDavid Ahern /* only called for fib entries with builtin fib6_nh */ 46758d1c802bSDavid Ahern static bool rt6_is_dead(const struct fib6_info *rt) 4676d7dedee1SIdo Schimmel { 46771cf844c7SDavid Ahern if (rt->fib6_nh->fib_nh_flags & RTNH_F_DEAD || 46781cf844c7SDavid Ahern (rt->fib6_nh->fib_nh_flags & RTNH_F_LINKDOWN && 46791cf844c7SDavid Ahern ip6_ignore_linkdown(rt->fib6_nh->fib_nh_dev))) 4680d7dedee1SIdo Schimmel return true; 4681d7dedee1SIdo Schimmel 4682d7dedee1SIdo Schimmel return false; 4683d7dedee1SIdo Schimmel } 4684d7dedee1SIdo Schimmel 46858d1c802bSDavid Ahern static int rt6_multipath_total_weight(const struct fib6_info *rt) 4686d7dedee1SIdo Schimmel { 46878d1c802bSDavid Ahern struct fib6_info *iter; 4688d7dedee1SIdo Schimmel int total = 0; 4689d7dedee1SIdo Schimmel 4690d7dedee1SIdo Schimmel if (!rt6_is_dead(rt)) 46911cf844c7SDavid Ahern total += rt->fib6_nh->fib_nh_weight; 4692d7dedee1SIdo Schimmel 469393c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) { 4694d7dedee1SIdo Schimmel if (!rt6_is_dead(iter)) 46951cf844c7SDavid Ahern total += iter->fib6_nh->fib_nh_weight; 4696d7dedee1SIdo Schimmel } 4697d7dedee1SIdo Schimmel 4698d7dedee1SIdo Schimmel return total; 4699d7dedee1SIdo Schimmel } 4700d7dedee1SIdo Schimmel 47018d1c802bSDavid Ahern static void rt6_upper_bound_set(struct fib6_info *rt, int *weight, int total) 4702d7dedee1SIdo Schimmel { 4703d7dedee1SIdo Schimmel int upper_bound = -1; 4704d7dedee1SIdo Schimmel 4705d7dedee1SIdo Schimmel if (!rt6_is_dead(rt)) { 47061cf844c7SDavid Ahern *weight += rt->fib6_nh->fib_nh_weight; 4707d7dedee1SIdo Schimmel upper_bound = DIV_ROUND_CLOSEST_ULL((u64) (*weight) << 31, 4708d7dedee1SIdo Schimmel total) - 1; 4709d7dedee1SIdo Schimmel } 47101cf844c7SDavid Ahern atomic_set(&rt->fib6_nh->fib_nh_upper_bound, upper_bound); 4711d7dedee1SIdo Schimmel } 4712d7dedee1SIdo Schimmel 47138d1c802bSDavid Ahern static void rt6_multipath_upper_bound_set(struct fib6_info *rt, int total) 4714d7dedee1SIdo Schimmel { 47158d1c802bSDavid Ahern struct fib6_info *iter; 4716d7dedee1SIdo Schimmel int weight = 0; 4717d7dedee1SIdo Schimmel 4718d7dedee1SIdo Schimmel rt6_upper_bound_set(rt, &weight, total); 4719d7dedee1SIdo Schimmel 472093c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) 4721d7dedee1SIdo Schimmel rt6_upper_bound_set(iter, &weight, total); 4722d7dedee1SIdo Schimmel } 4723d7dedee1SIdo Schimmel 47248d1c802bSDavid Ahern void rt6_multipath_rebalance(struct fib6_info *rt) 4725d7dedee1SIdo Schimmel { 47268d1c802bSDavid Ahern struct fib6_info *first; 4727d7dedee1SIdo Schimmel int total; 4728d7dedee1SIdo Schimmel 4729d7dedee1SIdo Schimmel /* In case the entire multipath route was marked for flushing, 4730d7dedee1SIdo Schimmel * then there is no need to rebalance upon the removal of every 4731d7dedee1SIdo Schimmel * sibling route. 4732d7dedee1SIdo Schimmel */ 473393c2fb25SDavid Ahern if (!rt->fib6_nsiblings || rt->should_flush) 4734d7dedee1SIdo Schimmel return; 4735d7dedee1SIdo Schimmel 4736d7dedee1SIdo Schimmel /* During lookup routes are evaluated in order, so we need to 4737d7dedee1SIdo Schimmel * make sure upper bounds are assigned from the first sibling 4738d7dedee1SIdo Schimmel * onwards. 4739d7dedee1SIdo Schimmel */ 4740d7dedee1SIdo Schimmel first = rt6_multipath_first_sibling(rt); 4741d7dedee1SIdo Schimmel if (WARN_ON_ONCE(!first)) 4742d7dedee1SIdo Schimmel return; 4743d7dedee1SIdo Schimmel 4744d7dedee1SIdo Schimmel total = rt6_multipath_total_weight(first); 4745d7dedee1SIdo Schimmel rt6_multipath_upper_bound_set(first, total); 4746d7dedee1SIdo Schimmel } 4747d7dedee1SIdo Schimmel 47488d1c802bSDavid Ahern static int fib6_ifup(struct fib6_info *rt, void *p_arg) 47492127d95aSIdo Schimmel { 47502127d95aSIdo Schimmel const struct arg_netdev_event *arg = p_arg; 47517aef6859SDavid Ahern struct net *net = dev_net(arg->dev); 47522127d95aSIdo Schimmel 4753f88d8ea6SDavid Ahern if (rt != net->ipv6.fib6_null_entry && !rt->nh && 47541cf844c7SDavid Ahern rt->fib6_nh->fib_nh_dev == arg->dev) { 47551cf844c7SDavid Ahern rt->fib6_nh->fib_nh_flags &= ~arg->nh_flags; 47567aef6859SDavid Ahern fib6_update_sernum_upto_root(net, rt); 4757d7dedee1SIdo Schimmel rt6_multipath_rebalance(rt); 47581de178edSIdo Schimmel } 47592127d95aSIdo Schimmel 47602127d95aSIdo Schimmel return 0; 47612127d95aSIdo Schimmel } 47622127d95aSIdo Schimmel 4763ecc5663cSDavid Ahern void rt6_sync_up(struct net_device *dev, unsigned char nh_flags) 47642127d95aSIdo Schimmel { 47652127d95aSIdo Schimmel struct arg_netdev_event arg = { 47662127d95aSIdo Schimmel .dev = dev, 47676802f3adSIdo Schimmel { 47682127d95aSIdo Schimmel .nh_flags = nh_flags, 47696802f3adSIdo Schimmel }, 47702127d95aSIdo Schimmel }; 47712127d95aSIdo Schimmel 47722127d95aSIdo Schimmel if (nh_flags & RTNH_F_DEAD && netif_carrier_ok(dev)) 47732127d95aSIdo Schimmel arg.nh_flags |= RTNH_F_LINKDOWN; 47742127d95aSIdo Schimmel 47752127d95aSIdo Schimmel fib6_clean_all(dev_net(dev), fib6_ifup, &arg); 47762127d95aSIdo Schimmel } 47772127d95aSIdo Schimmel 4778f88d8ea6SDavid Ahern /* only called for fib entries with inline fib6_nh */ 47798d1c802bSDavid Ahern static bool rt6_multipath_uses_dev(const struct fib6_info *rt, 47801de178edSIdo Schimmel const struct net_device *dev) 47811de178edSIdo Schimmel { 47828d1c802bSDavid Ahern struct fib6_info *iter; 47831de178edSIdo Schimmel 47841cf844c7SDavid Ahern if (rt->fib6_nh->fib_nh_dev == dev) 47851de178edSIdo Schimmel return true; 478693c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) 47871cf844c7SDavid Ahern if (iter->fib6_nh->fib_nh_dev == dev) 47881de178edSIdo Schimmel return true; 47891de178edSIdo Schimmel 47901de178edSIdo Schimmel return false; 47911de178edSIdo Schimmel } 47921de178edSIdo Schimmel 47938d1c802bSDavid Ahern static void rt6_multipath_flush(struct fib6_info *rt) 47941de178edSIdo Schimmel { 47958d1c802bSDavid Ahern struct fib6_info *iter; 47961de178edSIdo Schimmel 47971de178edSIdo Schimmel rt->should_flush = 1; 479893c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) 47991de178edSIdo Schimmel iter->should_flush = 1; 48001de178edSIdo Schimmel } 48011de178edSIdo Schimmel 48028d1c802bSDavid Ahern static unsigned int rt6_multipath_dead_count(const struct fib6_info *rt, 48031de178edSIdo Schimmel const struct net_device *down_dev) 48041de178edSIdo Schimmel { 48058d1c802bSDavid Ahern struct fib6_info *iter; 48061de178edSIdo Schimmel unsigned int dead = 0; 48071de178edSIdo Schimmel 48081cf844c7SDavid Ahern if (rt->fib6_nh->fib_nh_dev == down_dev || 48091cf844c7SDavid Ahern rt->fib6_nh->fib_nh_flags & RTNH_F_DEAD) 48101de178edSIdo Schimmel dead++; 481193c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) 48121cf844c7SDavid Ahern if (iter->fib6_nh->fib_nh_dev == down_dev || 48131cf844c7SDavid Ahern iter->fib6_nh->fib_nh_flags & RTNH_F_DEAD) 48141de178edSIdo Schimmel dead++; 48151de178edSIdo Schimmel 48161de178edSIdo Schimmel return dead; 48171de178edSIdo Schimmel } 48181de178edSIdo Schimmel 48198d1c802bSDavid Ahern static void rt6_multipath_nh_flags_set(struct fib6_info *rt, 48201de178edSIdo Schimmel const struct net_device *dev, 4821ecc5663cSDavid Ahern unsigned char nh_flags) 48221de178edSIdo Schimmel { 48238d1c802bSDavid Ahern struct fib6_info *iter; 48241de178edSIdo Schimmel 48251cf844c7SDavid Ahern if (rt->fib6_nh->fib_nh_dev == dev) 48261cf844c7SDavid Ahern rt->fib6_nh->fib_nh_flags |= nh_flags; 482793c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) 48281cf844c7SDavid Ahern if (iter->fib6_nh->fib_nh_dev == dev) 48291cf844c7SDavid Ahern iter->fib6_nh->fib_nh_flags |= nh_flags; 48301de178edSIdo Schimmel } 48311de178edSIdo Schimmel 4832a1a22c12SDavid Ahern /* called with write lock held for table with rt */ 48338d1c802bSDavid Ahern static int fib6_ifdown(struct fib6_info *rt, void *p_arg) 48341da177e4SLinus Torvalds { 48354c981e28SIdo Schimmel const struct arg_netdev_event *arg = p_arg; 48364c981e28SIdo Schimmel const struct net_device *dev = arg->dev; 48377aef6859SDavid Ahern struct net *net = dev_net(dev); 48388ed67789SDaniel Lezcano 4839f88d8ea6SDavid Ahern if (rt == net->ipv6.fib6_null_entry || rt->nh) 484027c6fa73SIdo Schimmel return 0; 484127c6fa73SIdo Schimmel 484227c6fa73SIdo Schimmel switch (arg->event) { 484327c6fa73SIdo Schimmel case NETDEV_UNREGISTER: 48441cf844c7SDavid Ahern return rt->fib6_nh->fib_nh_dev == dev ? -1 : 0; 484527c6fa73SIdo Schimmel case NETDEV_DOWN: 48461de178edSIdo Schimmel if (rt->should_flush) 484727c6fa73SIdo Schimmel return -1; 484893c2fb25SDavid Ahern if (!rt->fib6_nsiblings) 48491cf844c7SDavid Ahern return rt->fib6_nh->fib_nh_dev == dev ? -1 : 0; 48501de178edSIdo Schimmel if (rt6_multipath_uses_dev(rt, dev)) { 48511de178edSIdo Schimmel unsigned int count; 48521de178edSIdo Schimmel 48531de178edSIdo Schimmel count = rt6_multipath_dead_count(rt, dev); 485493c2fb25SDavid Ahern if (rt->fib6_nsiblings + 1 == count) { 48551de178edSIdo Schimmel rt6_multipath_flush(rt); 48561de178edSIdo Schimmel return -1; 48571de178edSIdo Schimmel } 48581de178edSIdo Schimmel rt6_multipath_nh_flags_set(rt, dev, RTNH_F_DEAD | 48591de178edSIdo Schimmel RTNH_F_LINKDOWN); 48607aef6859SDavid Ahern fib6_update_sernum(net, rt); 4861d7dedee1SIdo Schimmel rt6_multipath_rebalance(rt); 48621de178edSIdo Schimmel } 48631de178edSIdo Schimmel return -2; 486427c6fa73SIdo Schimmel case NETDEV_CHANGE: 48651cf844c7SDavid Ahern if (rt->fib6_nh->fib_nh_dev != dev || 486693c2fb25SDavid Ahern rt->fib6_flags & (RTF_LOCAL | RTF_ANYCAST)) 486727c6fa73SIdo Schimmel break; 48681cf844c7SDavid Ahern rt->fib6_nh->fib_nh_flags |= RTNH_F_LINKDOWN; 4869d7dedee1SIdo Schimmel rt6_multipath_rebalance(rt); 487027c6fa73SIdo Schimmel break; 48712b241361SIdo Schimmel } 4872c159d30cSDavid S. Miller 48731da177e4SLinus Torvalds return 0; 48741da177e4SLinus Torvalds } 48751da177e4SLinus Torvalds 487627c6fa73SIdo Schimmel void rt6_sync_down_dev(struct net_device *dev, unsigned long event) 48771da177e4SLinus Torvalds { 48784c981e28SIdo Schimmel struct arg_netdev_event arg = { 48798ed67789SDaniel Lezcano .dev = dev, 48806802f3adSIdo Schimmel { 48814c981e28SIdo Schimmel .event = event, 48826802f3adSIdo Schimmel }, 48838ed67789SDaniel Lezcano }; 48847c6bb7d2SDavid Ahern struct net *net = dev_net(dev); 48858ed67789SDaniel Lezcano 48867c6bb7d2SDavid Ahern if (net->ipv6.sysctl.skip_notify_on_dev_down) 48877c6bb7d2SDavid Ahern fib6_clean_all_skip_notify(net, fib6_ifdown, &arg); 48887c6bb7d2SDavid Ahern else 48897c6bb7d2SDavid Ahern fib6_clean_all(net, fib6_ifdown, &arg); 48904c981e28SIdo Schimmel } 48914c981e28SIdo Schimmel 48924c981e28SIdo Schimmel void rt6_disable_ip(struct net_device *dev, unsigned long event) 48934c981e28SIdo Schimmel { 48944c981e28SIdo Schimmel rt6_sync_down_dev(dev, event); 4895e5f80fcfSEric Dumazet rt6_uncached_list_flush_dev(dev); 48964c981e28SIdo Schimmel neigh_ifdown(&nd_tbl, dev); 48971da177e4SLinus Torvalds } 48981da177e4SLinus Torvalds 489995c96174SEric Dumazet struct rt6_mtu_change_arg { 49001da177e4SLinus Torvalds struct net_device *dev; 490195c96174SEric Dumazet unsigned int mtu; 4902c0b220cfSDavid Ahern struct fib6_info *f6i; 49031da177e4SLinus Torvalds }; 49041da177e4SLinus Torvalds 4905cc5c073aSDavid Ahern static int fib6_nh_mtu_change(struct fib6_nh *nh, void *_arg) 4906c0b220cfSDavid Ahern { 4907c0b220cfSDavid Ahern struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *)_arg; 4908cc5c073aSDavid Ahern struct fib6_info *f6i = arg->f6i; 4909c0b220cfSDavid Ahern 4910c0b220cfSDavid Ahern /* For administrative MTU increase, there is no way to discover 4911c0b220cfSDavid Ahern * IPv6 PMTU increase, so PMTU increase should be updated here. 4912c0b220cfSDavid Ahern * Since RFC 1981 doesn't include administrative MTU increase 4913c0b220cfSDavid Ahern * update PMTU increase is a MUST. (i.e. jumbo frame) 4914c0b220cfSDavid Ahern */ 4915c0b220cfSDavid Ahern if (nh->fib_nh_dev == arg->dev) { 4916c0b220cfSDavid Ahern struct inet6_dev *idev = __in6_dev_get(arg->dev); 4917c0b220cfSDavid Ahern u32 mtu = f6i->fib6_pmtu; 4918c0b220cfSDavid Ahern 4919c0b220cfSDavid Ahern if (mtu >= arg->mtu || 4920c0b220cfSDavid Ahern (mtu < arg->mtu && mtu == idev->cnf.mtu6)) 4921c0b220cfSDavid Ahern fib6_metric_set(f6i, RTAX_MTU, arg->mtu); 4922c0b220cfSDavid Ahern 4923c0b220cfSDavid Ahern spin_lock_bh(&rt6_exception_lock); 4924cc5c073aSDavid Ahern rt6_exceptions_update_pmtu(idev, nh, arg->mtu); 4925c0b220cfSDavid Ahern spin_unlock_bh(&rt6_exception_lock); 4926c0b220cfSDavid Ahern } 4927c0b220cfSDavid Ahern 4928c0b220cfSDavid Ahern return 0; 4929c0b220cfSDavid Ahern } 4930c0b220cfSDavid Ahern 4931c0b220cfSDavid Ahern static int rt6_mtu_change_route(struct fib6_info *f6i, void *p_arg) 49321da177e4SLinus Torvalds { 49331da177e4SLinus Torvalds struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg; 49341da177e4SLinus Torvalds struct inet6_dev *idev; 49351da177e4SLinus Torvalds 49361da177e4SLinus Torvalds /* In IPv6 pmtu discovery is not optional, 49371da177e4SLinus Torvalds so that RTAX_MTU lock cannot disable it. 49381da177e4SLinus Torvalds We still use this lock to block changes 49391da177e4SLinus Torvalds caused by addrconf/ndisc. 49401da177e4SLinus Torvalds */ 49411da177e4SLinus Torvalds 49421da177e4SLinus Torvalds idev = __in6_dev_get(arg->dev); 494338308473SDavid S. Miller if (!idev) 49441da177e4SLinus Torvalds return 0; 49451da177e4SLinus Torvalds 4946c0b220cfSDavid Ahern if (fib6_metric_locked(f6i, RTAX_MTU)) 49471da177e4SLinus Torvalds return 0; 4948c0b220cfSDavid Ahern 4949c0b220cfSDavid Ahern arg->f6i = f6i; 49502d44234bSDavid Ahern if (f6i->nh) { 49512d44234bSDavid Ahern /* fib6_nh_mtu_change only returns 0, so this is safe */ 49522d44234bSDavid Ahern return nexthop_for_each_fib6_nh(f6i->nh, fib6_nh_mtu_change, 49532d44234bSDavid Ahern arg); 49542d44234bSDavid Ahern } 49552d44234bSDavid Ahern 49561cf844c7SDavid Ahern return fib6_nh_mtu_change(f6i->fib6_nh, arg); 49571da177e4SLinus Torvalds } 49581da177e4SLinus Torvalds 495995c96174SEric Dumazet void rt6_mtu_change(struct net_device *dev, unsigned int mtu) 49601da177e4SLinus Torvalds { 4961c71099acSThomas Graf struct rt6_mtu_change_arg arg = { 4962c71099acSThomas Graf .dev = dev, 4963c71099acSThomas Graf .mtu = mtu, 4964c71099acSThomas Graf }; 49651da177e4SLinus Torvalds 49660c3584d5SLi RongQing fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg); 49671da177e4SLinus Torvalds } 49681da177e4SLinus Torvalds 4969ef7c79edSPatrick McHardy static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = { 497075425657SDavid Ahern [RTA_UNSPEC] = { .strict_start_type = RTA_DPORT + 1 }, 49715176f91eSThomas Graf [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) }, 4972aa8f8778SEric Dumazet [RTA_PREFSRC] = { .len = sizeof(struct in6_addr) }, 497386872cb5SThomas Graf [RTA_OIF] = { .type = NLA_U32 }, 4974ab364a6fSThomas Graf [RTA_IIF] = { .type = NLA_U32 }, 497586872cb5SThomas Graf [RTA_PRIORITY] = { .type = NLA_U32 }, 497686872cb5SThomas Graf [RTA_METRICS] = { .type = NLA_NESTED }, 497751ebd318SNicolas Dichtel [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) }, 4978c78ba6d6SLubomir Rintel [RTA_PREF] = { .type = NLA_U8 }, 497919e42e45SRoopa Prabhu [RTA_ENCAP_TYPE] = { .type = NLA_U16 }, 498019e42e45SRoopa Prabhu [RTA_ENCAP] = { .type = NLA_NESTED }, 498132bc201eSXin Long [RTA_EXPIRES] = { .type = NLA_U32 }, 4982622ec2c9SLorenzo Colitti [RTA_UID] = { .type = NLA_U32 }, 49833b45a410SLiping Zhang [RTA_MARK] = { .type = NLA_U32 }, 4984aa8f8778SEric Dumazet [RTA_TABLE] = { .type = NLA_U32 }, 4985eacb9384SRoopa Prabhu [RTA_IP_PROTO] = { .type = NLA_U8 }, 4986eacb9384SRoopa Prabhu [RTA_SPORT] = { .type = NLA_U16 }, 4987eacb9384SRoopa Prabhu [RTA_DPORT] = { .type = NLA_U16 }, 49885b98324eSDavid Ahern [RTA_NH_ID] = { .type = NLA_U32 }, 498986872cb5SThomas Graf }; 499086872cb5SThomas Graf 499186872cb5SThomas Graf static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh, 4992333c4301SDavid Ahern struct fib6_config *cfg, 4993333c4301SDavid Ahern struct netlink_ext_ack *extack) 49941da177e4SLinus Torvalds { 499586872cb5SThomas Graf struct rtmsg *rtm; 499686872cb5SThomas Graf struct nlattr *tb[RTA_MAX+1]; 4997c78ba6d6SLubomir Rintel unsigned int pref; 499886872cb5SThomas Graf int err; 49991da177e4SLinus Torvalds 50008cb08174SJohannes Berg err = nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX, 50018cb08174SJohannes Berg rtm_ipv6_policy, extack); 500286872cb5SThomas Graf if (err < 0) 500386872cb5SThomas Graf goto errout; 50041da177e4SLinus Torvalds 500586872cb5SThomas Graf err = -EINVAL; 500686872cb5SThomas Graf rtm = nlmsg_data(nlh); 500786872cb5SThomas Graf 5008b9605161SGuillaume Nault if (rtm->rtm_tos) { 5009b9605161SGuillaume Nault NL_SET_ERR_MSG(extack, 5010b9605161SGuillaume Nault "Invalid dsfield (tos): option not available for IPv6"); 5011b9605161SGuillaume Nault goto errout; 5012b9605161SGuillaume Nault } 5013b9605161SGuillaume Nault 501484db8407SMaciej Żenczykowski *cfg = (struct fib6_config){ 501584db8407SMaciej Żenczykowski .fc_table = rtm->rtm_table, 501684db8407SMaciej Żenczykowski .fc_dst_len = rtm->rtm_dst_len, 501784db8407SMaciej Żenczykowski .fc_src_len = rtm->rtm_src_len, 501884db8407SMaciej Żenczykowski .fc_flags = RTF_UP, 501984db8407SMaciej Żenczykowski .fc_protocol = rtm->rtm_protocol, 502084db8407SMaciej Żenczykowski .fc_type = rtm->rtm_type, 502184db8407SMaciej Żenczykowski 502284db8407SMaciej Żenczykowski .fc_nlinfo.portid = NETLINK_CB(skb).portid, 502384db8407SMaciej Żenczykowski .fc_nlinfo.nlh = nlh, 502484db8407SMaciej Żenczykowski .fc_nlinfo.nl_net = sock_net(skb->sk), 502584db8407SMaciej Żenczykowski }; 502686872cb5SThomas Graf 5027ef2c7d7bSNicolas Dichtel if (rtm->rtm_type == RTN_UNREACHABLE || 5028ef2c7d7bSNicolas Dichtel rtm->rtm_type == RTN_BLACKHOLE || 5029b4949ab2SNicolas Dichtel rtm->rtm_type == RTN_PROHIBIT || 5030b4949ab2SNicolas Dichtel rtm->rtm_type == RTN_THROW) 503186872cb5SThomas Graf cfg->fc_flags |= RTF_REJECT; 503286872cb5SThomas Graf 5033ab79ad14SMaciej Żenczykowski if (rtm->rtm_type == RTN_LOCAL) 5034ab79ad14SMaciej Żenczykowski cfg->fc_flags |= RTF_LOCAL; 5035ab79ad14SMaciej Żenczykowski 50361f56a01fSMartin KaFai Lau if (rtm->rtm_flags & RTM_F_CLONED) 50371f56a01fSMartin KaFai Lau cfg->fc_flags |= RTF_CACHE; 50381f56a01fSMartin KaFai Lau 5039fc1e64e1SDavid Ahern cfg->fc_flags |= (rtm->rtm_flags & RTNH_F_ONLINK); 5040fc1e64e1SDavid Ahern 50415b98324eSDavid Ahern if (tb[RTA_NH_ID]) { 50425b98324eSDavid Ahern if (tb[RTA_GATEWAY] || tb[RTA_OIF] || 50435b98324eSDavid Ahern tb[RTA_MULTIPATH] || tb[RTA_ENCAP]) { 50445b98324eSDavid Ahern NL_SET_ERR_MSG(extack, 50455b98324eSDavid Ahern "Nexthop specification and nexthop id are mutually exclusive"); 50465b98324eSDavid Ahern goto errout; 50475b98324eSDavid Ahern } 50485b98324eSDavid Ahern cfg->fc_nh_id = nla_get_u32(tb[RTA_NH_ID]); 50495b98324eSDavid Ahern } 50505b98324eSDavid Ahern 505186872cb5SThomas Graf if (tb[RTA_GATEWAY]) { 505267b61f6cSJiri Benc cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]); 505386872cb5SThomas Graf cfg->fc_flags |= RTF_GATEWAY; 50541da177e4SLinus Torvalds } 5055e3818541SDavid Ahern if (tb[RTA_VIA]) { 5056e3818541SDavid Ahern NL_SET_ERR_MSG(extack, "IPv6 does not support RTA_VIA attribute"); 5057e3818541SDavid Ahern goto errout; 5058e3818541SDavid Ahern } 505986872cb5SThomas Graf 506086872cb5SThomas Graf if (tb[RTA_DST]) { 506186872cb5SThomas Graf int plen = (rtm->rtm_dst_len + 7) >> 3; 506286872cb5SThomas Graf 506386872cb5SThomas Graf if (nla_len(tb[RTA_DST]) < plen) 506486872cb5SThomas Graf goto errout; 506586872cb5SThomas Graf 506686872cb5SThomas Graf nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen); 50671da177e4SLinus Torvalds } 506886872cb5SThomas Graf 506986872cb5SThomas Graf if (tb[RTA_SRC]) { 507086872cb5SThomas Graf int plen = (rtm->rtm_src_len + 7) >> 3; 507186872cb5SThomas Graf 507286872cb5SThomas Graf if (nla_len(tb[RTA_SRC]) < plen) 507386872cb5SThomas Graf goto errout; 507486872cb5SThomas Graf 507586872cb5SThomas Graf nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen); 50761da177e4SLinus Torvalds } 507786872cb5SThomas Graf 5078c3968a85SDaniel Walter if (tb[RTA_PREFSRC]) 507967b61f6cSJiri Benc cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]); 5080c3968a85SDaniel Walter 508186872cb5SThomas Graf if (tb[RTA_OIF]) 508286872cb5SThomas Graf cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]); 508386872cb5SThomas Graf 508486872cb5SThomas Graf if (tb[RTA_PRIORITY]) 508586872cb5SThomas Graf cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]); 508686872cb5SThomas Graf 508786872cb5SThomas Graf if (tb[RTA_METRICS]) { 508886872cb5SThomas Graf cfg->fc_mx = nla_data(tb[RTA_METRICS]); 508986872cb5SThomas Graf cfg->fc_mx_len = nla_len(tb[RTA_METRICS]); 50901da177e4SLinus Torvalds } 509186872cb5SThomas Graf 509286872cb5SThomas Graf if (tb[RTA_TABLE]) 509386872cb5SThomas Graf cfg->fc_table = nla_get_u32(tb[RTA_TABLE]); 509486872cb5SThomas Graf 509551ebd318SNicolas Dichtel if (tb[RTA_MULTIPATH]) { 509651ebd318SNicolas Dichtel cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]); 509751ebd318SNicolas Dichtel cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]); 50989ed59592SDavid Ahern 50999ed59592SDavid Ahern err = lwtunnel_valid_encap_type_attr(cfg->fc_mp, 5100c255bd68SDavid Ahern cfg->fc_mp_len, extack); 51019ed59592SDavid Ahern if (err < 0) 51029ed59592SDavid Ahern goto errout; 510351ebd318SNicolas Dichtel } 510451ebd318SNicolas Dichtel 5105c78ba6d6SLubomir Rintel if (tb[RTA_PREF]) { 5106c78ba6d6SLubomir Rintel pref = nla_get_u8(tb[RTA_PREF]); 5107c78ba6d6SLubomir Rintel if (pref != ICMPV6_ROUTER_PREF_LOW && 5108c78ba6d6SLubomir Rintel pref != ICMPV6_ROUTER_PREF_HIGH) 5109c78ba6d6SLubomir Rintel pref = ICMPV6_ROUTER_PREF_MEDIUM; 5110c78ba6d6SLubomir Rintel cfg->fc_flags |= RTF_PREF(pref); 5111c78ba6d6SLubomir Rintel } 5112c78ba6d6SLubomir Rintel 511319e42e45SRoopa Prabhu if (tb[RTA_ENCAP]) 511419e42e45SRoopa Prabhu cfg->fc_encap = tb[RTA_ENCAP]; 511519e42e45SRoopa Prabhu 51169ed59592SDavid Ahern if (tb[RTA_ENCAP_TYPE]) { 511719e42e45SRoopa Prabhu cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]); 511819e42e45SRoopa Prabhu 5119c255bd68SDavid Ahern err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack); 51209ed59592SDavid Ahern if (err < 0) 51219ed59592SDavid Ahern goto errout; 51229ed59592SDavid Ahern } 51239ed59592SDavid Ahern 512432bc201eSXin Long if (tb[RTA_EXPIRES]) { 512532bc201eSXin Long unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ); 512632bc201eSXin Long 512732bc201eSXin Long if (addrconf_finite_timeout(timeout)) { 512832bc201eSXin Long cfg->fc_expires = jiffies_to_clock_t(timeout * HZ); 512932bc201eSXin Long cfg->fc_flags |= RTF_EXPIRES; 513032bc201eSXin Long } 513132bc201eSXin Long } 513232bc201eSXin Long 513386872cb5SThomas Graf err = 0; 513486872cb5SThomas Graf errout: 513586872cb5SThomas Graf return err; 51361da177e4SLinus Torvalds } 51371da177e4SLinus Torvalds 51386b9ea5a6SRoopa Prabhu struct rt6_nh { 51398d1c802bSDavid Ahern struct fib6_info *fib6_info; 51406b9ea5a6SRoopa Prabhu struct fib6_config r_cfg; 51416b9ea5a6SRoopa Prabhu struct list_head next; 51426b9ea5a6SRoopa Prabhu }; 51436b9ea5a6SRoopa Prabhu 5144d4ead6b3SDavid Ahern static int ip6_route_info_append(struct net *net, 5145d4ead6b3SDavid Ahern struct list_head *rt6_nh_list, 51468d1c802bSDavid Ahern struct fib6_info *rt, 51478d1c802bSDavid Ahern struct fib6_config *r_cfg) 51486b9ea5a6SRoopa Prabhu { 51496b9ea5a6SRoopa Prabhu struct rt6_nh *nh; 51506b9ea5a6SRoopa Prabhu int err = -EEXIST; 51516b9ea5a6SRoopa Prabhu 51526b9ea5a6SRoopa Prabhu list_for_each_entry(nh, rt6_nh_list, next) { 51538d1c802bSDavid Ahern /* check if fib6_info already exists */ 51548d1c802bSDavid Ahern if (rt6_duplicate_nexthop(nh->fib6_info, rt)) 51556b9ea5a6SRoopa Prabhu return err; 51566b9ea5a6SRoopa Prabhu } 51576b9ea5a6SRoopa Prabhu 51586b9ea5a6SRoopa Prabhu nh = kzalloc(sizeof(*nh), GFP_KERNEL); 51596b9ea5a6SRoopa Prabhu if (!nh) 51606b9ea5a6SRoopa Prabhu return -ENOMEM; 51618d1c802bSDavid Ahern nh->fib6_info = rt; 51626b9ea5a6SRoopa Prabhu memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg)); 51636b9ea5a6SRoopa Prabhu list_add_tail(&nh->next, rt6_nh_list); 51646b9ea5a6SRoopa Prabhu 51656b9ea5a6SRoopa Prabhu return 0; 51666b9ea5a6SRoopa Prabhu } 51676b9ea5a6SRoopa Prabhu 51688d1c802bSDavid Ahern static void ip6_route_mpath_notify(struct fib6_info *rt, 51698d1c802bSDavid Ahern struct fib6_info *rt_last, 51703b1137feSDavid Ahern struct nl_info *info, 51713b1137feSDavid Ahern __u16 nlflags) 51723b1137feSDavid Ahern { 51733b1137feSDavid Ahern /* if this is an APPEND route, then rt points to the first route 51743b1137feSDavid Ahern * inserted and rt_last points to last route inserted. Userspace 51753b1137feSDavid Ahern * wants a consistent dump of the route which starts at the first 51763b1137feSDavid Ahern * nexthop. Since sibling routes are always added at the end of 51773b1137feSDavid Ahern * the list, find the first sibling of the last route appended 51783b1137feSDavid Ahern */ 517993c2fb25SDavid Ahern if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->fib6_nsiblings) { 518093c2fb25SDavid Ahern rt = list_first_entry(&rt_last->fib6_siblings, 51818d1c802bSDavid Ahern struct fib6_info, 518293c2fb25SDavid Ahern fib6_siblings); 51833b1137feSDavid Ahern } 51843b1137feSDavid Ahern 51853b1137feSDavid Ahern if (rt) 51863b1137feSDavid Ahern inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags); 51873b1137feSDavid Ahern } 51883b1137feSDavid Ahern 51890ee0f47cSIdo Schimmel static bool ip6_route_mpath_should_notify(const struct fib6_info *rt) 51900ee0f47cSIdo Schimmel { 51910ee0f47cSIdo Schimmel bool rt_can_ecmp = rt6_qualify_for_ecmp(rt); 51920ee0f47cSIdo Schimmel bool should_notify = false; 51930ee0f47cSIdo Schimmel struct fib6_info *leaf; 51940ee0f47cSIdo Schimmel struct fib6_node *fn; 51950ee0f47cSIdo Schimmel 51960ee0f47cSIdo Schimmel rcu_read_lock(); 51970ee0f47cSIdo Schimmel fn = rcu_dereference(rt->fib6_node); 51980ee0f47cSIdo Schimmel if (!fn) 51990ee0f47cSIdo Schimmel goto out; 52000ee0f47cSIdo Schimmel 52010ee0f47cSIdo Schimmel leaf = rcu_dereference(fn->leaf); 52020ee0f47cSIdo Schimmel if (!leaf) 52030ee0f47cSIdo Schimmel goto out; 52040ee0f47cSIdo Schimmel 52050ee0f47cSIdo Schimmel if (rt == leaf || 52060ee0f47cSIdo Schimmel (rt_can_ecmp && rt->fib6_metric == leaf->fib6_metric && 52070ee0f47cSIdo Schimmel rt6_qualify_for_ecmp(leaf))) 52080ee0f47cSIdo Schimmel should_notify = true; 52090ee0f47cSIdo Schimmel out: 52100ee0f47cSIdo Schimmel rcu_read_unlock(); 52110ee0f47cSIdo Schimmel 52120ee0f47cSIdo Schimmel return should_notify; 52130ee0f47cSIdo Schimmel } 52140ee0f47cSIdo Schimmel 52154619bcf9SDavid Ahern static int fib6_gw_from_attr(struct in6_addr *gw, struct nlattr *nla, 52164619bcf9SDavid Ahern struct netlink_ext_ack *extack) 52174619bcf9SDavid Ahern { 52184619bcf9SDavid Ahern if (nla_len(nla) < sizeof(*gw)) { 52194619bcf9SDavid Ahern NL_SET_ERR_MSG(extack, "Invalid IPv6 address in RTA_GATEWAY"); 52204619bcf9SDavid Ahern return -EINVAL; 52214619bcf9SDavid Ahern } 52224619bcf9SDavid Ahern 52234619bcf9SDavid Ahern *gw = nla_get_in6_addr(nla); 52244619bcf9SDavid Ahern 52254619bcf9SDavid Ahern return 0; 52264619bcf9SDavid Ahern } 52274619bcf9SDavid Ahern 5228333c4301SDavid Ahern static int ip6_route_multipath_add(struct fib6_config *cfg, 5229333c4301SDavid Ahern struct netlink_ext_ack *extack) 523051ebd318SNicolas Dichtel { 52318d1c802bSDavid Ahern struct fib6_info *rt_notif = NULL, *rt_last = NULL; 52323b1137feSDavid Ahern struct nl_info *info = &cfg->fc_nlinfo; 523351ebd318SNicolas Dichtel struct fib6_config r_cfg; 523451ebd318SNicolas Dichtel struct rtnexthop *rtnh; 52358d1c802bSDavid Ahern struct fib6_info *rt; 52366b9ea5a6SRoopa Prabhu struct rt6_nh *err_nh; 52376b9ea5a6SRoopa Prabhu struct rt6_nh *nh, *nh_safe; 52383b1137feSDavid Ahern __u16 nlflags; 523951ebd318SNicolas Dichtel int remaining; 524051ebd318SNicolas Dichtel int attrlen; 52416b9ea5a6SRoopa Prabhu int err = 1; 52426b9ea5a6SRoopa Prabhu int nhn = 0; 52436b9ea5a6SRoopa Prabhu int replace = (cfg->fc_nlinfo.nlh && 52446b9ea5a6SRoopa Prabhu (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE)); 52456b9ea5a6SRoopa Prabhu LIST_HEAD(rt6_nh_list); 524651ebd318SNicolas Dichtel 52473b1137feSDavid Ahern nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE; 52483b1137feSDavid Ahern if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND) 52493b1137feSDavid Ahern nlflags |= NLM_F_APPEND; 52503b1137feSDavid Ahern 525135f1b4e9SMichal Kubeček remaining = cfg->fc_mp_len; 525251ebd318SNicolas Dichtel rtnh = (struct rtnexthop *)cfg->fc_mp; 525351ebd318SNicolas Dichtel 52546b9ea5a6SRoopa Prabhu /* Parse a Multipath Entry and build a list (rt6_nh_list) of 52558d1c802bSDavid Ahern * fib6_info structs per nexthop 52566b9ea5a6SRoopa Prabhu */ 525751ebd318SNicolas Dichtel while (rtnh_ok(rtnh, remaining)) { 525851ebd318SNicolas Dichtel memcpy(&r_cfg, cfg, sizeof(*cfg)); 525951ebd318SNicolas Dichtel if (rtnh->rtnh_ifindex) 526051ebd318SNicolas Dichtel r_cfg.fc_ifindex = rtnh->rtnh_ifindex; 526151ebd318SNicolas Dichtel 526251ebd318SNicolas Dichtel attrlen = rtnh_attrlen(rtnh); 526351ebd318SNicolas Dichtel if (attrlen > 0) { 526451ebd318SNicolas Dichtel struct nlattr *nla, *attrs = rtnh_attrs(rtnh); 526551ebd318SNicolas Dichtel 526651ebd318SNicolas Dichtel nla = nla_find(attrs, attrlen, RTA_GATEWAY); 526751ebd318SNicolas Dichtel if (nla) { 526895bdba23SDavid Ahern err = fib6_gw_from_attr(&r_cfg.fc_gateway, nla, 52694619bcf9SDavid Ahern extack); 527095bdba23SDavid Ahern if (err) 527195bdba23SDavid Ahern goto cleanup; 52724619bcf9SDavid Ahern 527351ebd318SNicolas Dichtel r_cfg.fc_flags |= RTF_GATEWAY; 527451ebd318SNicolas Dichtel } 527519e42e45SRoopa Prabhu r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP); 52768bda81a4SDavid Ahern 52778bda81a4SDavid Ahern /* RTA_ENCAP_TYPE length checked in 52788bda81a4SDavid Ahern * lwtunnel_valid_encap_type_attr 52798bda81a4SDavid Ahern */ 528019e42e45SRoopa Prabhu nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE); 528119e42e45SRoopa Prabhu if (nla) 528219e42e45SRoopa Prabhu r_cfg.fc_encap_type = nla_get_u16(nla); 528351ebd318SNicolas Dichtel } 52846b9ea5a6SRoopa Prabhu 528568e2ffdeSDavid Ahern r_cfg.fc_flags |= (rtnh->rtnh_flags & RTNH_F_ONLINK); 5286acb54e3cSDavid Ahern rt = ip6_route_info_create(&r_cfg, GFP_KERNEL, extack); 52878c5b83f0SRoopa Prabhu if (IS_ERR(rt)) { 52888c5b83f0SRoopa Prabhu err = PTR_ERR(rt); 52898c5b83f0SRoopa Prabhu rt = NULL; 52906b9ea5a6SRoopa Prabhu goto cleanup; 52918c5b83f0SRoopa Prabhu } 5292b5d2d75eSDavid Ahern if (!rt6_qualify_for_ecmp(rt)) { 5293b5d2d75eSDavid Ahern err = -EINVAL; 5294b5d2d75eSDavid Ahern NL_SET_ERR_MSG(extack, 5295b5d2d75eSDavid Ahern "Device only routes can not be added for IPv6 using the multipath API."); 5296b5d2d75eSDavid Ahern fib6_info_release(rt); 5297b5d2d75eSDavid Ahern goto cleanup; 5298b5d2d75eSDavid Ahern } 52996b9ea5a6SRoopa Prabhu 53001cf844c7SDavid Ahern rt->fib6_nh->fib_nh_weight = rtnh->rtnh_hops + 1; 5301398958aeSIdo Schimmel 5302d4ead6b3SDavid Ahern err = ip6_route_info_append(info->nl_net, &rt6_nh_list, 5303d4ead6b3SDavid Ahern rt, &r_cfg); 530451ebd318SNicolas Dichtel if (err) { 530593531c67SDavid Ahern fib6_info_release(rt); 53066b9ea5a6SRoopa Prabhu goto cleanup; 530751ebd318SNicolas Dichtel } 53086b9ea5a6SRoopa Prabhu 53096b9ea5a6SRoopa Prabhu rtnh = rtnh_next(rtnh, &remaining); 531051ebd318SNicolas Dichtel } 53116b9ea5a6SRoopa Prabhu 53129eee3b49SIdo Schimmel if (list_empty(&rt6_nh_list)) { 53139eee3b49SIdo Schimmel NL_SET_ERR_MSG(extack, 53149eee3b49SIdo Schimmel "Invalid nexthop configuration - no valid nexthops"); 53159eee3b49SIdo Schimmel return -EINVAL; 53169eee3b49SIdo Schimmel } 53179eee3b49SIdo Schimmel 53183b1137feSDavid Ahern /* for add and replace send one notification with all nexthops. 53193b1137feSDavid Ahern * Skip the notification in fib6_add_rt2node and send one with 53203b1137feSDavid Ahern * the full route when done 53213b1137feSDavid Ahern */ 53223b1137feSDavid Ahern info->skip_notify = 1; 53233b1137feSDavid Ahern 5324ebee3cadSIdo Schimmel /* For add and replace, send one notification with all nexthops. For 5325ebee3cadSIdo Schimmel * append, send one notification with all appended nexthops. 5326ebee3cadSIdo Schimmel */ 5327ebee3cadSIdo Schimmel info->skip_notify_kernel = 1; 5328ebee3cadSIdo Schimmel 53296b9ea5a6SRoopa Prabhu err_nh = NULL; 53306b9ea5a6SRoopa Prabhu list_for_each_entry(nh, &rt6_nh_list, next) { 53318d1c802bSDavid Ahern err = __ip6_ins_rt(nh->fib6_info, info, extack); 53328d1c802bSDavid Ahern fib6_info_release(nh->fib6_info); 53333b1137feSDavid Ahern 5334f7225172SDavid Ahern if (!err) { 5335f7225172SDavid Ahern /* save reference to last route successfully inserted */ 5336f7225172SDavid Ahern rt_last = nh->fib6_info; 5337f7225172SDavid Ahern 53386b9ea5a6SRoopa Prabhu /* save reference to first route for notification */ 5339f7225172SDavid Ahern if (!rt_notif) 53408d1c802bSDavid Ahern rt_notif = nh->fib6_info; 5341f7225172SDavid Ahern } 53426b9ea5a6SRoopa Prabhu 53438d1c802bSDavid Ahern /* nh->fib6_info is used or freed at this point, reset to NULL*/ 53448d1c802bSDavid Ahern nh->fib6_info = NULL; 53456b9ea5a6SRoopa Prabhu if (err) { 53466b9ea5a6SRoopa Prabhu if (replace && nhn) 5347a5a82d84SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, 5348a5a82d84SJakub Kicinski "multipath route replace failed (check consistency of installed routes)"); 53496b9ea5a6SRoopa Prabhu err_nh = nh; 53506b9ea5a6SRoopa Prabhu goto add_errout; 53516b9ea5a6SRoopa Prabhu } 53526b9ea5a6SRoopa Prabhu 53531a72418bSNicolas Dichtel /* Because each route is added like a single route we remove 535427596472SMichal Kubeček * these flags after the first nexthop: if there is a collision, 535527596472SMichal Kubeček * we have already failed to add the first nexthop: 535627596472SMichal Kubeček * fib6_add_rt2node() has rejected it; when replacing, old 535727596472SMichal Kubeček * nexthops have been replaced by first new, the rest should 535827596472SMichal Kubeček * be added to it. 53591a72418bSNicolas Dichtel */ 5360864db232SMuhammad Usama Anjum if (cfg->fc_nlinfo.nlh) { 536127596472SMichal Kubeček cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL | 536227596472SMichal Kubeček NLM_F_REPLACE); 5363afecdb37SBenjamin Poirier cfg->fc_nlinfo.nlh->nlmsg_flags |= NLM_F_CREATE; 5364864db232SMuhammad Usama Anjum } 53656b9ea5a6SRoopa Prabhu nhn++; 53666b9ea5a6SRoopa Prabhu } 53676b9ea5a6SRoopa Prabhu 53680ee0f47cSIdo Schimmel /* An in-kernel notification should only be sent in case the new 53690ee0f47cSIdo Schimmel * multipath route is added as the first route in the node, or if 53700ee0f47cSIdo Schimmel * it was appended to it. We pass 'rt_notif' since it is the first 53710ee0f47cSIdo Schimmel * sibling and might allow us to skip some checks in the replace case. 53720ee0f47cSIdo Schimmel */ 53730ee0f47cSIdo Schimmel if (ip6_route_mpath_should_notify(rt_notif)) { 53740ee0f47cSIdo Schimmel enum fib_event_type fib_event; 53750ee0f47cSIdo Schimmel 53760ee0f47cSIdo Schimmel if (rt_notif->fib6_nsiblings != nhn - 1) 53770ee0f47cSIdo Schimmel fib_event = FIB_EVENT_ENTRY_APPEND; 53780ee0f47cSIdo Schimmel else 5379caafb250SIdo Schimmel fib_event = FIB_EVENT_ENTRY_REPLACE; 53800ee0f47cSIdo Schimmel 53810ee0f47cSIdo Schimmel err = call_fib6_multipath_entry_notifiers(info->nl_net, 53820ee0f47cSIdo Schimmel fib_event, rt_notif, 53830ee0f47cSIdo Schimmel nhn - 1, extack); 53840ee0f47cSIdo Schimmel if (err) { 53850ee0f47cSIdo Schimmel /* Delete all the siblings that were just added */ 53860ee0f47cSIdo Schimmel err_nh = NULL; 53870ee0f47cSIdo Schimmel goto add_errout; 53880ee0f47cSIdo Schimmel } 53890ee0f47cSIdo Schimmel } 5390ebee3cadSIdo Schimmel 53913b1137feSDavid Ahern /* success ... tell user about new route */ 53923b1137feSDavid Ahern ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags); 53936b9ea5a6SRoopa Prabhu goto cleanup; 53946b9ea5a6SRoopa Prabhu 53956b9ea5a6SRoopa Prabhu add_errout: 53963b1137feSDavid Ahern /* send notification for routes that were added so that 53973b1137feSDavid Ahern * the delete notifications sent by ip6_route_del are 53983b1137feSDavid Ahern * coherent 53993b1137feSDavid Ahern */ 54003b1137feSDavid Ahern if (rt_notif) 54013b1137feSDavid Ahern ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags); 54023b1137feSDavid Ahern 54036b9ea5a6SRoopa Prabhu /* Delete routes that were already added */ 54046b9ea5a6SRoopa Prabhu list_for_each_entry(nh, &rt6_nh_list, next) { 54056b9ea5a6SRoopa Prabhu if (err_nh == nh) 54066b9ea5a6SRoopa Prabhu break; 5407333c4301SDavid Ahern ip6_route_del(&nh->r_cfg, extack); 54086b9ea5a6SRoopa Prabhu } 54096b9ea5a6SRoopa Prabhu 54106b9ea5a6SRoopa Prabhu cleanup: 54116b9ea5a6SRoopa Prabhu list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) { 54128d1c802bSDavid Ahern if (nh->fib6_info) 54138d1c802bSDavid Ahern fib6_info_release(nh->fib6_info); 54146b9ea5a6SRoopa Prabhu list_del(&nh->next); 54156b9ea5a6SRoopa Prabhu kfree(nh); 54166b9ea5a6SRoopa Prabhu } 54176b9ea5a6SRoopa Prabhu 54186b9ea5a6SRoopa Prabhu return err; 54196b9ea5a6SRoopa Prabhu } 54206b9ea5a6SRoopa Prabhu 5421333c4301SDavid Ahern static int ip6_route_multipath_del(struct fib6_config *cfg, 5422333c4301SDavid Ahern struct netlink_ext_ack *extack) 54236b9ea5a6SRoopa Prabhu { 54246b9ea5a6SRoopa Prabhu struct fib6_config r_cfg; 54256b9ea5a6SRoopa Prabhu struct rtnexthop *rtnh; 54262291267eSColin Ian King int last_err = 0; 54276b9ea5a6SRoopa Prabhu int remaining; 54286b9ea5a6SRoopa Prabhu int attrlen; 54292291267eSColin Ian King int err; 54306b9ea5a6SRoopa Prabhu 54316b9ea5a6SRoopa Prabhu remaining = cfg->fc_mp_len; 54326b9ea5a6SRoopa Prabhu rtnh = (struct rtnexthop *)cfg->fc_mp; 54336b9ea5a6SRoopa Prabhu 54346b9ea5a6SRoopa Prabhu /* Parse a Multipath Entry */ 54356b9ea5a6SRoopa Prabhu while (rtnh_ok(rtnh, remaining)) { 54366b9ea5a6SRoopa Prabhu memcpy(&r_cfg, cfg, sizeof(*cfg)); 54376b9ea5a6SRoopa Prabhu if (rtnh->rtnh_ifindex) 54386b9ea5a6SRoopa Prabhu r_cfg.fc_ifindex = rtnh->rtnh_ifindex; 54396b9ea5a6SRoopa Prabhu 54406b9ea5a6SRoopa Prabhu attrlen = rtnh_attrlen(rtnh); 54416b9ea5a6SRoopa Prabhu if (attrlen > 0) { 54426b9ea5a6SRoopa Prabhu struct nlattr *nla, *attrs = rtnh_attrs(rtnh); 54436b9ea5a6SRoopa Prabhu 54446b9ea5a6SRoopa Prabhu nla = nla_find(attrs, attrlen, RTA_GATEWAY); 54456b9ea5a6SRoopa Prabhu if (nla) { 54461ff15a71SDavid Ahern err = fib6_gw_from_attr(&r_cfg.fc_gateway, nla, 54471ff15a71SDavid Ahern extack); 5448e30a845bSDavid Ahern if (err) { 5449e30a845bSDavid Ahern last_err = err; 5450e30a845bSDavid Ahern goto next_rtnh; 5451e30a845bSDavid Ahern } 54521ff15a71SDavid Ahern 54536b9ea5a6SRoopa Prabhu r_cfg.fc_flags |= RTF_GATEWAY; 54546b9ea5a6SRoopa Prabhu } 54556b9ea5a6SRoopa Prabhu } 5456333c4301SDavid Ahern err = ip6_route_del(&r_cfg, extack); 54576b9ea5a6SRoopa Prabhu if (err) 54586b9ea5a6SRoopa Prabhu last_err = err; 54596b9ea5a6SRoopa Prabhu 5460e30a845bSDavid Ahern next_rtnh: 546151ebd318SNicolas Dichtel rtnh = rtnh_next(rtnh, &remaining); 546251ebd318SNicolas Dichtel } 546351ebd318SNicolas Dichtel 546451ebd318SNicolas Dichtel return last_err; 546551ebd318SNicolas Dichtel } 546651ebd318SNicolas Dichtel 5467c21ef3e3SDavid Ahern static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh, 5468c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 54691da177e4SLinus Torvalds { 547086872cb5SThomas Graf struct fib6_config cfg; 547186872cb5SThomas Graf int err; 54721da177e4SLinus Torvalds 5473333c4301SDavid Ahern err = rtm_to_fib6_config(skb, nlh, &cfg, extack); 547486872cb5SThomas Graf if (err < 0) 547586872cb5SThomas Graf return err; 547686872cb5SThomas Graf 54775b98324eSDavid Ahern if (cfg.fc_nh_id && 54785b98324eSDavid Ahern !nexthop_find_by_id(sock_net(skb->sk), cfg.fc_nh_id)) { 54795b98324eSDavid Ahern NL_SET_ERR_MSG(extack, "Nexthop id does not exist"); 54805b98324eSDavid Ahern return -EINVAL; 54815b98324eSDavid Ahern } 54825b98324eSDavid Ahern 548351ebd318SNicolas Dichtel if (cfg.fc_mp) 5484333c4301SDavid Ahern return ip6_route_multipath_del(&cfg, extack); 54850ae81335SDavid Ahern else { 54860ae81335SDavid Ahern cfg.fc_delete_all_nh = 1; 5487333c4301SDavid Ahern return ip6_route_del(&cfg, extack); 54881da177e4SLinus Torvalds } 54890ae81335SDavid Ahern } 54901da177e4SLinus Torvalds 5491c21ef3e3SDavid Ahern static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh, 5492c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 54931da177e4SLinus Torvalds { 549486872cb5SThomas Graf struct fib6_config cfg; 549586872cb5SThomas Graf int err; 54961da177e4SLinus Torvalds 5497333c4301SDavid Ahern err = rtm_to_fib6_config(skb, nlh, &cfg, extack); 549886872cb5SThomas Graf if (err < 0) 549986872cb5SThomas Graf return err; 550086872cb5SThomas Graf 550167f69513SDavid Ahern if (cfg.fc_metric == 0) 550267f69513SDavid Ahern cfg.fc_metric = IP6_RT_PRIO_USER; 550367f69513SDavid Ahern 550451ebd318SNicolas Dichtel if (cfg.fc_mp) 5505333c4301SDavid Ahern return ip6_route_multipath_add(&cfg, extack); 550651ebd318SNicolas Dichtel else 5507acb54e3cSDavid Ahern return ip6_route_add(&cfg, GFP_KERNEL, extack); 55081da177e4SLinus Torvalds } 55091da177e4SLinus Torvalds 5510a1b7a1f0SDavid Ahern /* add the overhead of this fib6_nh to nexthop_len */ 5511a1b7a1f0SDavid Ahern static int rt6_nh_nlmsg_size(struct fib6_nh *nh, void *arg) 5512339bf98fSThomas Graf { 5513a1b7a1f0SDavid Ahern int *nexthop_len = arg; 5514beb1afacSDavid Ahern 5515a1b7a1f0SDavid Ahern *nexthop_len += nla_total_size(0) /* RTA_MULTIPATH */ 5516a1b7a1f0SDavid Ahern + NLA_ALIGN(sizeof(struct rtnexthop)) 5517a1b7a1f0SDavid Ahern + nla_total_size(16); /* RTA_GATEWAY */ 5518f88d8ea6SDavid Ahern 5519a1b7a1f0SDavid Ahern if (nh->fib_nh_lws) { 5520a1b7a1f0SDavid Ahern /* RTA_ENCAP_TYPE */ 5521a1b7a1f0SDavid Ahern *nexthop_len += lwtunnel_get_encap_size(nh->fib_nh_lws); 5522a1b7a1f0SDavid Ahern /* RTA_ENCAP */ 5523a1b7a1f0SDavid Ahern *nexthop_len += nla_total_size(2); 5524a1b7a1f0SDavid Ahern } 5525a1b7a1f0SDavid Ahern 5526a1b7a1f0SDavid Ahern return 0; 5527a1b7a1f0SDavid Ahern } 5528a1b7a1f0SDavid Ahern 5529a1b7a1f0SDavid Ahern static size_t rt6_nlmsg_size(struct fib6_info *f6i) 5530a1b7a1f0SDavid Ahern { 5531a1b7a1f0SDavid Ahern int nexthop_len; 5532a1b7a1f0SDavid Ahern 5533a1b7a1f0SDavid Ahern if (f6i->nh) { 5534a1b7a1f0SDavid Ahern nexthop_len = nla_total_size(4); /* RTA_NH_ID */ 5535a1b7a1f0SDavid Ahern nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_nlmsg_size, 5536a1b7a1f0SDavid Ahern &nexthop_len); 5537a1b7a1f0SDavid Ahern } else { 55384cc59f38SLu Wei struct fib6_info *sibling, *next_sibling; 5539a1b7a1f0SDavid Ahern struct fib6_nh *nh = f6i->fib6_nh; 5540a1b7a1f0SDavid Ahern 5541a1b7a1f0SDavid Ahern nexthop_len = 0; 5542a1b7a1f0SDavid Ahern if (f6i->fib6_nsiblings) { 55434cc59f38SLu Wei rt6_nh_nlmsg_size(nh, &nexthop_len); 5544beb1afacSDavid Ahern 55454cc59f38SLu Wei list_for_each_entry_safe(sibling, next_sibling, 55464cc59f38SLu Wei &f6i->fib6_siblings, fib6_siblings) { 55474cc59f38SLu Wei rt6_nh_nlmsg_size(sibling->fib6_nh, &nexthop_len); 55484cc59f38SLu Wei } 5549a1b7a1f0SDavid Ahern } 5550a1b7a1f0SDavid Ahern nexthop_len += lwtunnel_get_encap_size(nh->fib_nh_lws); 5551beb1afacSDavid Ahern } 5552beb1afacSDavid Ahern 5553339bf98fSThomas Graf return NLMSG_ALIGN(sizeof(struct rtmsg)) 5554339bf98fSThomas Graf + nla_total_size(16) /* RTA_SRC */ 5555339bf98fSThomas Graf + nla_total_size(16) /* RTA_DST */ 5556339bf98fSThomas Graf + nla_total_size(16) /* RTA_GATEWAY */ 5557339bf98fSThomas Graf + nla_total_size(16) /* RTA_PREFSRC */ 5558339bf98fSThomas Graf + nla_total_size(4) /* RTA_TABLE */ 5559339bf98fSThomas Graf + nla_total_size(4) /* RTA_IIF */ 5560339bf98fSThomas Graf + nla_total_size(4) /* RTA_OIF */ 5561339bf98fSThomas Graf + nla_total_size(4) /* RTA_PRIORITY */ 55626a2b9ce0SNoriaki TAKAMIYA + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */ 5563ea697639SDaniel Borkmann + nla_total_size(sizeof(struct rta_cacheinfo)) 5564c78ba6d6SLubomir Rintel + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */ 556519e42e45SRoopa Prabhu + nla_total_size(1) /* RTA_PREF */ 5566beb1afacSDavid Ahern + nexthop_len; 5567beb1afacSDavid Ahern } 5568beb1afacSDavid Ahern 5569f88d8ea6SDavid Ahern static int rt6_fill_node_nexthop(struct sk_buff *skb, struct nexthop *nh, 5570f88d8ea6SDavid Ahern unsigned char *flags) 5571f88d8ea6SDavid Ahern { 5572f88d8ea6SDavid Ahern if (nexthop_is_multipath(nh)) { 5573f88d8ea6SDavid Ahern struct nlattr *mp; 5574f88d8ea6SDavid Ahern 55754255ff05SDavid Ahern mp = nla_nest_start_noflag(skb, RTA_MULTIPATH); 5576f88d8ea6SDavid Ahern if (!mp) 5577f88d8ea6SDavid Ahern goto nla_put_failure; 5578f88d8ea6SDavid Ahern 55797bdf4de1SDonald Sharp if (nexthop_mpath_fill_node(skb, nh, AF_INET6)) 5580f88d8ea6SDavid Ahern goto nla_put_failure; 5581f88d8ea6SDavid Ahern 5582f88d8ea6SDavid Ahern nla_nest_end(skb, mp); 5583f88d8ea6SDavid Ahern } else { 5584f88d8ea6SDavid Ahern struct fib6_nh *fib6_nh; 5585f88d8ea6SDavid Ahern 5586f88d8ea6SDavid Ahern fib6_nh = nexthop_fib6_nh(nh); 55877bdf4de1SDonald Sharp if (fib_nexthop_info(skb, &fib6_nh->nh_common, AF_INET6, 5588f88d8ea6SDavid Ahern flags, false) < 0) 5589f88d8ea6SDavid Ahern goto nla_put_failure; 5590f88d8ea6SDavid Ahern } 5591f88d8ea6SDavid Ahern 5592f88d8ea6SDavid Ahern return 0; 5593f88d8ea6SDavid Ahern 5594f88d8ea6SDavid Ahern nla_put_failure: 5595f88d8ea6SDavid Ahern return -EMSGSIZE; 5596f88d8ea6SDavid Ahern } 5597f88d8ea6SDavid Ahern 5598d4ead6b3SDavid Ahern static int rt6_fill_node(struct net *net, struct sk_buff *skb, 55998d1c802bSDavid Ahern struct fib6_info *rt, struct dst_entry *dst, 5600d4ead6b3SDavid Ahern struct in6_addr *dest, struct in6_addr *src, 560115e47304SEric W. Biederman int iif, int type, u32 portid, u32 seq, 5602f8cfe2ceSDavid Ahern unsigned int flags) 56031da177e4SLinus Torvalds { 560422d0bd82SXin Long struct rt6_info *rt6 = (struct rt6_info *)dst; 560522d0bd82SXin Long struct rt6key *rt6_dst, *rt6_src; 560622d0bd82SXin Long u32 *pmetrics, table, rt6_flags; 5607f88d8ea6SDavid Ahern unsigned char nh_flags = 0; 56081da177e4SLinus Torvalds struct nlmsghdr *nlh; 560922d0bd82SXin Long struct rtmsg *rtm; 5610d4ead6b3SDavid Ahern long expires = 0; 56111da177e4SLinus Torvalds 561215e47304SEric W. Biederman nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags); 561338308473SDavid S. Miller if (!nlh) 561426932566SPatrick McHardy return -EMSGSIZE; 56152d7202bfSThomas Graf 561622d0bd82SXin Long if (rt6) { 561722d0bd82SXin Long rt6_dst = &rt6->rt6i_dst; 561822d0bd82SXin Long rt6_src = &rt6->rt6i_src; 561922d0bd82SXin Long rt6_flags = rt6->rt6i_flags; 562022d0bd82SXin Long } else { 562122d0bd82SXin Long rt6_dst = &rt->fib6_dst; 562222d0bd82SXin Long rt6_src = &rt->fib6_src; 562322d0bd82SXin Long rt6_flags = rt->fib6_flags; 562422d0bd82SXin Long } 562522d0bd82SXin Long 56262d7202bfSThomas Graf rtm = nlmsg_data(nlh); 56271da177e4SLinus Torvalds rtm->rtm_family = AF_INET6; 562822d0bd82SXin Long rtm->rtm_dst_len = rt6_dst->plen; 562922d0bd82SXin Long rtm->rtm_src_len = rt6_src->plen; 56301da177e4SLinus Torvalds rtm->rtm_tos = 0; 563193c2fb25SDavid Ahern if (rt->fib6_table) 563293c2fb25SDavid Ahern table = rt->fib6_table->tb6_id; 5633c71099acSThomas Graf else 56349e762a4aSPatrick McHardy table = RT6_TABLE_UNSPEC; 563597f0082aSKalash Nainwal rtm->rtm_table = table < 256 ? table : RT_TABLE_COMPAT; 5636c78679e8SDavid S. Miller if (nla_put_u32(skb, RTA_TABLE, table)) 5637c78679e8SDavid S. Miller goto nla_put_failure; 5638e8478e80SDavid Ahern 5639e8478e80SDavid Ahern rtm->rtm_type = rt->fib6_type; 56401da177e4SLinus Torvalds rtm->rtm_flags = 0; 56411da177e4SLinus Torvalds rtm->rtm_scope = RT_SCOPE_UNIVERSE; 564293c2fb25SDavid Ahern rtm->rtm_protocol = rt->fib6_protocol; 56431da177e4SLinus Torvalds 564422d0bd82SXin Long if (rt6_flags & RTF_CACHE) 56451da177e4SLinus Torvalds rtm->rtm_flags |= RTM_F_CLONED; 56461da177e4SLinus Torvalds 5647d4ead6b3SDavid Ahern if (dest) { 5648d4ead6b3SDavid Ahern if (nla_put_in6_addr(skb, RTA_DST, dest)) 5649c78679e8SDavid S. Miller goto nla_put_failure; 56501da177e4SLinus Torvalds rtm->rtm_dst_len = 128; 56511da177e4SLinus Torvalds } else if (rtm->rtm_dst_len) 565222d0bd82SXin Long if (nla_put_in6_addr(skb, RTA_DST, &rt6_dst->addr)) 5653c78679e8SDavid S. Miller goto nla_put_failure; 56541da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES 56551da177e4SLinus Torvalds if (src) { 5656930345eaSJiri Benc if (nla_put_in6_addr(skb, RTA_SRC, src)) 5657c78679e8SDavid S. Miller goto nla_put_failure; 56581da177e4SLinus Torvalds rtm->rtm_src_len = 128; 5659c78679e8SDavid S. Miller } else if (rtm->rtm_src_len && 566022d0bd82SXin Long nla_put_in6_addr(skb, RTA_SRC, &rt6_src->addr)) 5661c78679e8SDavid S. Miller goto nla_put_failure; 56621da177e4SLinus Torvalds #endif 56637bc570c8SYOSHIFUJI Hideaki if (iif) { 56647bc570c8SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_MROUTE 566522d0bd82SXin Long if (ipv6_addr_is_multicast(&rt6_dst->addr)) { 5666fd61c6baSDavid Ahern int err = ip6mr_get_route(net, skb, rtm, portid); 56672cf75070SNikolay Aleksandrov 56687bc570c8SYOSHIFUJI Hideaki if (err == 0) 56697bc570c8SYOSHIFUJI Hideaki return 0; 5670fd61c6baSDavid Ahern if (err < 0) 56717bc570c8SYOSHIFUJI Hideaki goto nla_put_failure; 56727bc570c8SYOSHIFUJI Hideaki } else 56737bc570c8SYOSHIFUJI Hideaki #endif 5674c78679e8SDavid S. Miller if (nla_put_u32(skb, RTA_IIF, iif)) 5675c78679e8SDavid S. Miller goto nla_put_failure; 5676d4ead6b3SDavid Ahern } else if (dest) { 56771da177e4SLinus Torvalds struct in6_addr saddr_buf; 5678d4ead6b3SDavid Ahern if (ip6_route_get_saddr(net, rt, dest, 0, &saddr_buf) == 0 && 5679930345eaSJiri Benc nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf)) 5680c78679e8SDavid S. Miller goto nla_put_failure; 5681c3968a85SDaniel Walter } 5682c3968a85SDaniel Walter 568393c2fb25SDavid Ahern if (rt->fib6_prefsrc.plen) { 5684c3968a85SDaniel Walter struct in6_addr saddr_buf; 568593c2fb25SDavid Ahern saddr_buf = rt->fib6_prefsrc.addr; 5686930345eaSJiri Benc if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf)) 5687c78679e8SDavid S. Miller goto nla_put_failure; 56881da177e4SLinus Torvalds } 56892d7202bfSThomas Graf 5690d4ead6b3SDavid Ahern pmetrics = dst ? dst_metrics_ptr(dst) : rt->fib6_metrics->metrics; 5691d4ead6b3SDavid Ahern if (rtnetlink_put_metrics(skb, pmetrics) < 0) 56922d7202bfSThomas Graf goto nla_put_failure; 56932d7202bfSThomas Graf 569493c2fb25SDavid Ahern if (nla_put_u32(skb, RTA_PRIORITY, rt->fib6_metric)) 5695beb1afacSDavid Ahern goto nla_put_failure; 5696beb1afacSDavid Ahern 5697beb1afacSDavid Ahern /* For multipath routes, walk the siblings list and add 5698beb1afacSDavid Ahern * each as a nexthop within RTA_MULTIPATH. 5699beb1afacSDavid Ahern */ 570022d0bd82SXin Long if (rt6) { 570122d0bd82SXin Long if (rt6_flags & RTF_GATEWAY && 570222d0bd82SXin Long nla_put_in6_addr(skb, RTA_GATEWAY, &rt6->rt6i_gateway)) 570322d0bd82SXin Long goto nla_put_failure; 570422d0bd82SXin Long 570522d0bd82SXin Long if (dst->dev && nla_put_u32(skb, RTA_OIF, dst->dev->ifindex)) 570622d0bd82SXin Long goto nla_put_failure; 57076b13d8f7SOliver Herms 57086b13d8f7SOliver Herms if (dst->lwtstate && 57096b13d8f7SOliver Herms lwtunnel_fill_encap(skb, dst->lwtstate, RTA_ENCAP, RTA_ENCAP_TYPE) < 0) 57106b13d8f7SOliver Herms goto nla_put_failure; 571122d0bd82SXin Long } else if (rt->fib6_nsiblings) { 57128d1c802bSDavid Ahern struct fib6_info *sibling, *next_sibling; 5713beb1afacSDavid Ahern struct nlattr *mp; 5714beb1afacSDavid Ahern 5715ae0be8deSMichal Kubecek mp = nla_nest_start_noflag(skb, RTA_MULTIPATH); 5716beb1afacSDavid Ahern if (!mp) 5717beb1afacSDavid Ahern goto nla_put_failure; 5718beb1afacSDavid Ahern 57191cf844c7SDavid Ahern if (fib_add_nexthop(skb, &rt->fib6_nh->nh_common, 5720597aa16cSXiao Liang rt->fib6_nh->fib_nh_weight, AF_INET6, 5721597aa16cSXiao Liang 0) < 0) 5722beb1afacSDavid Ahern goto nla_put_failure; 5723beb1afacSDavid Ahern 5724beb1afacSDavid Ahern list_for_each_entry_safe(sibling, next_sibling, 572593c2fb25SDavid Ahern &rt->fib6_siblings, fib6_siblings) { 57261cf844c7SDavid Ahern if (fib_add_nexthop(skb, &sibling->fib6_nh->nh_common, 57277bdf4de1SDonald Sharp sibling->fib6_nh->fib_nh_weight, 5728597aa16cSXiao Liang AF_INET6, 0) < 0) 572994f826b8SEric Dumazet goto nla_put_failure; 573094f826b8SEric Dumazet } 57312d7202bfSThomas Graf 5732beb1afacSDavid Ahern nla_nest_end(skb, mp); 5733f88d8ea6SDavid Ahern } else if (rt->nh) { 5734f88d8ea6SDavid Ahern if (nla_put_u32(skb, RTA_NH_ID, rt->nh->id)) 5735f88d8ea6SDavid Ahern goto nla_put_failure; 5736ecc5663cSDavid Ahern 5737f88d8ea6SDavid Ahern if (nexthop_is_blackhole(rt->nh)) 5738f88d8ea6SDavid Ahern rtm->rtm_type = RTN_BLACKHOLE; 5739f88d8ea6SDavid Ahern 5740bdf00bf2SKuniyuki Iwashima if (READ_ONCE(net->ipv4.sysctl_nexthop_compat_mode) && 57414f80116dSRoopa Prabhu rt6_fill_node_nexthop(skb, rt->nh, &nh_flags) < 0) 5742f88d8ea6SDavid Ahern goto nla_put_failure; 5743f88d8ea6SDavid Ahern 5744f88d8ea6SDavid Ahern rtm->rtm_flags |= nh_flags; 5745f88d8ea6SDavid Ahern } else { 57467bdf4de1SDonald Sharp if (fib_nexthop_info(skb, &rt->fib6_nh->nh_common, AF_INET6, 5747ecc5663cSDavid Ahern &nh_flags, false) < 0) 5748c78679e8SDavid S. Miller goto nla_put_failure; 5749ecc5663cSDavid Ahern 5750ecc5663cSDavid Ahern rtm->rtm_flags |= nh_flags; 5751beb1afacSDavid Ahern } 57528253947eSLi Wei 575322d0bd82SXin Long if (rt6_flags & RTF_EXPIRES) { 575414895687SDavid Ahern expires = dst ? dst->expires : rt->expires; 575514895687SDavid Ahern expires -= jiffies; 575614895687SDavid Ahern } 575769cdf8f9SYOSHIFUJI Hideaki 5758bb3c4ab9SIdo Schimmel if (!dst) { 5759d95d6320SEric Dumazet if (READ_ONCE(rt->offload)) 5760bb3c4ab9SIdo Schimmel rtm->rtm_flags |= RTM_F_OFFLOAD; 5761d95d6320SEric Dumazet if (READ_ONCE(rt->trap)) 5762bb3c4ab9SIdo Schimmel rtm->rtm_flags |= RTM_F_TRAP; 5763d95d6320SEric Dumazet if (READ_ONCE(rt->offload_failed)) 57640c5fcf9eSAmit Cohen rtm->rtm_flags |= RTM_F_OFFLOAD_FAILED; 5765bb3c4ab9SIdo Schimmel } 5766bb3c4ab9SIdo Schimmel 5767d4ead6b3SDavid Ahern if (rtnl_put_cacheinfo(skb, dst, 0, expires, dst ? dst->error : 0) < 0) 5768e3703b3dSThomas Graf goto nla_put_failure; 57691da177e4SLinus Torvalds 577022d0bd82SXin Long if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt6_flags))) 5771c78ba6d6SLubomir Rintel goto nla_put_failure; 5772c78ba6d6SLubomir Rintel 577319e42e45SRoopa Prabhu 5774053c095aSJohannes Berg nlmsg_end(skb, nlh); 5775053c095aSJohannes Berg return 0; 57762d7202bfSThomas Graf 57772d7202bfSThomas Graf nla_put_failure: 577826932566SPatrick McHardy nlmsg_cancel(skb, nlh); 577926932566SPatrick McHardy return -EMSGSIZE; 57801da177e4SLinus Torvalds } 57811da177e4SLinus Torvalds 57822c170e07SDavid Ahern static int fib6_info_nh_uses_dev(struct fib6_nh *nh, void *arg) 57832c170e07SDavid Ahern { 57842c170e07SDavid Ahern const struct net_device *dev = arg; 57852c170e07SDavid Ahern 57862c170e07SDavid Ahern if (nh->fib_nh_dev == dev) 57872c170e07SDavid Ahern return 1; 57882c170e07SDavid Ahern 57892c170e07SDavid Ahern return 0; 57902c170e07SDavid Ahern } 57912c170e07SDavid Ahern 579213e38901SDavid Ahern static bool fib6_info_uses_dev(const struct fib6_info *f6i, 579313e38901SDavid Ahern const struct net_device *dev) 579413e38901SDavid Ahern { 57952c170e07SDavid Ahern if (f6i->nh) { 57962c170e07SDavid Ahern struct net_device *_dev = (struct net_device *)dev; 57972c170e07SDavid Ahern 57982c170e07SDavid Ahern return !!nexthop_for_each_fib6_nh(f6i->nh, 57992c170e07SDavid Ahern fib6_info_nh_uses_dev, 58002c170e07SDavid Ahern _dev); 58012c170e07SDavid Ahern } 58022c170e07SDavid Ahern 58031cf844c7SDavid Ahern if (f6i->fib6_nh->fib_nh_dev == dev) 580413e38901SDavid Ahern return true; 580513e38901SDavid Ahern 580613e38901SDavid Ahern if (f6i->fib6_nsiblings) { 580713e38901SDavid Ahern struct fib6_info *sibling, *next_sibling; 580813e38901SDavid Ahern 580913e38901SDavid Ahern list_for_each_entry_safe(sibling, next_sibling, 581013e38901SDavid Ahern &f6i->fib6_siblings, fib6_siblings) { 58111cf844c7SDavid Ahern if (sibling->fib6_nh->fib_nh_dev == dev) 581213e38901SDavid Ahern return true; 581313e38901SDavid Ahern } 581413e38901SDavid Ahern } 581513e38901SDavid Ahern 581613e38901SDavid Ahern return false; 581713e38901SDavid Ahern } 581813e38901SDavid Ahern 58191e47b483SStefano Brivio struct fib6_nh_exception_dump_walker { 58201e47b483SStefano Brivio struct rt6_rtnl_dump_arg *dump; 58211e47b483SStefano Brivio struct fib6_info *rt; 58221e47b483SStefano Brivio unsigned int flags; 58231e47b483SStefano Brivio unsigned int skip; 58241e47b483SStefano Brivio unsigned int count; 58251e47b483SStefano Brivio }; 58261e47b483SStefano Brivio 58271e47b483SStefano Brivio static int rt6_nh_dump_exceptions(struct fib6_nh *nh, void *arg) 58281e47b483SStefano Brivio { 58291e47b483SStefano Brivio struct fib6_nh_exception_dump_walker *w = arg; 58301e47b483SStefano Brivio struct rt6_rtnl_dump_arg *dump = w->dump; 58311e47b483SStefano Brivio struct rt6_exception_bucket *bucket; 58321e47b483SStefano Brivio struct rt6_exception *rt6_ex; 58331e47b483SStefano Brivio int i, err; 58341e47b483SStefano Brivio 58351e47b483SStefano Brivio bucket = fib6_nh_get_excptn_bucket(nh, NULL); 58361e47b483SStefano Brivio if (!bucket) 58371e47b483SStefano Brivio return 0; 58381e47b483SStefano Brivio 58391e47b483SStefano Brivio for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { 58401e47b483SStefano Brivio hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) { 58411e47b483SStefano Brivio if (w->skip) { 58421e47b483SStefano Brivio w->skip--; 58431e47b483SStefano Brivio continue; 58441e47b483SStefano Brivio } 58451e47b483SStefano Brivio 58461e47b483SStefano Brivio /* Expiration of entries doesn't bump sernum, insertion 58471e47b483SStefano Brivio * does. Removal is triggered by insertion, so we can 58481e47b483SStefano Brivio * rely on the fact that if entries change between two 58491e47b483SStefano Brivio * partial dumps, this node is scanned again completely, 58501e47b483SStefano Brivio * see rt6_insert_exception() and fib6_dump_table(). 58511e47b483SStefano Brivio * 58521e47b483SStefano Brivio * Count expired entries we go through as handled 58531e47b483SStefano Brivio * entries that we'll skip next time, in case of partial 58541e47b483SStefano Brivio * node dump. Otherwise, if entries expire meanwhile, 58551e47b483SStefano Brivio * we'll skip the wrong amount. 58561e47b483SStefano Brivio */ 58571e47b483SStefano Brivio if (rt6_check_expired(rt6_ex->rt6i)) { 58581e47b483SStefano Brivio w->count++; 58591e47b483SStefano Brivio continue; 58601e47b483SStefano Brivio } 58611e47b483SStefano Brivio 58621e47b483SStefano Brivio err = rt6_fill_node(dump->net, dump->skb, w->rt, 58631e47b483SStefano Brivio &rt6_ex->rt6i->dst, NULL, NULL, 0, 58641e47b483SStefano Brivio RTM_NEWROUTE, 58651e47b483SStefano Brivio NETLINK_CB(dump->cb->skb).portid, 58661e47b483SStefano Brivio dump->cb->nlh->nlmsg_seq, w->flags); 58671e47b483SStefano Brivio if (err) 58681e47b483SStefano Brivio return err; 58691e47b483SStefano Brivio 58701e47b483SStefano Brivio w->count++; 58711e47b483SStefano Brivio } 58721e47b483SStefano Brivio bucket++; 58731e47b483SStefano Brivio } 58741e47b483SStefano Brivio 58751e47b483SStefano Brivio return 0; 58761e47b483SStefano Brivio } 58771e47b483SStefano Brivio 5878bf9a8a06SStefano Brivio /* Return -1 if done with node, number of handled routes on partial dump */ 58791e47b483SStefano Brivio int rt6_dump_route(struct fib6_info *rt, void *p_arg, unsigned int skip) 58801da177e4SLinus Torvalds { 58811da177e4SLinus Torvalds struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg; 588213e38901SDavid Ahern struct fib_dump_filter *filter = &arg->filter; 588313e38901SDavid Ahern unsigned int flags = NLM_F_MULTI; 58841f17e2f2SDavid Ahern struct net *net = arg->net; 58851e47b483SStefano Brivio int count = 0; 58861f17e2f2SDavid Ahern 5887421842edSDavid Ahern if (rt == net->ipv6.fib6_null_entry) 5888bf9a8a06SStefano Brivio return -1; 58891da177e4SLinus Torvalds 589013e38901SDavid Ahern if ((filter->flags & RTM_F_PREFIX) && 589193c2fb25SDavid Ahern !(rt->fib6_flags & RTF_PREFIX_RT)) { 5892f8cfe2ceSDavid Ahern /* success since this is not a prefix route */ 5893bf9a8a06SStefano Brivio return -1; 5894f8cfe2ceSDavid Ahern } 58951e47b483SStefano Brivio if (filter->filter_set && 58961e47b483SStefano Brivio ((filter->rt_type && rt->fib6_type != filter->rt_type) || 589713e38901SDavid Ahern (filter->dev && !fib6_info_uses_dev(rt, filter->dev)) || 58981e47b483SStefano Brivio (filter->protocol && rt->fib6_protocol != filter->protocol))) { 5899bf9a8a06SStefano Brivio return -1; 590013e38901SDavid Ahern } 59011e47b483SStefano Brivio 59021e47b483SStefano Brivio if (filter->filter_set || 59031e47b483SStefano Brivio !filter->dump_routes || !filter->dump_exceptions) { 590413e38901SDavid Ahern flags |= NLM_F_DUMP_FILTERED; 5905f8cfe2ceSDavid Ahern } 59061da177e4SLinus Torvalds 59071e47b483SStefano Brivio if (filter->dump_routes) { 59081e47b483SStefano Brivio if (skip) { 59091e47b483SStefano Brivio skip--; 59101e47b483SStefano Brivio } else { 59111e47b483SStefano Brivio if (rt6_fill_node(net, arg->skb, rt, NULL, NULL, NULL, 59121e47b483SStefano Brivio 0, RTM_NEWROUTE, 5913bf9a8a06SStefano Brivio NETLINK_CB(arg->cb->skb).portid, 59141e47b483SStefano Brivio arg->cb->nlh->nlmsg_seq, flags)) { 5915bf9a8a06SStefano Brivio return 0; 59161e47b483SStefano Brivio } 59171e47b483SStefano Brivio count++; 59181e47b483SStefano Brivio } 59191e47b483SStefano Brivio } 59201e47b483SStefano Brivio 59211e47b483SStefano Brivio if (filter->dump_exceptions) { 59221e47b483SStefano Brivio struct fib6_nh_exception_dump_walker w = { .dump = arg, 59231e47b483SStefano Brivio .rt = rt, 59241e47b483SStefano Brivio .flags = flags, 59251e47b483SStefano Brivio .skip = skip, 59261e47b483SStefano Brivio .count = 0 }; 59271e47b483SStefano Brivio int err; 59281e47b483SStefano Brivio 59293b525691SEric Dumazet rcu_read_lock(); 59301e47b483SStefano Brivio if (rt->nh) { 59311e47b483SStefano Brivio err = nexthop_for_each_fib6_nh(rt->nh, 59321e47b483SStefano Brivio rt6_nh_dump_exceptions, 59331e47b483SStefano Brivio &w); 59341e47b483SStefano Brivio } else { 59351e47b483SStefano Brivio err = rt6_nh_dump_exceptions(rt->fib6_nh, &w); 59361e47b483SStefano Brivio } 59373b525691SEric Dumazet rcu_read_unlock(); 59381e47b483SStefano Brivio 59391e47b483SStefano Brivio if (err) 594074fd304fSColin Ian King return count + w.count; 59411e47b483SStefano Brivio } 5942bf9a8a06SStefano Brivio 5943bf9a8a06SStefano Brivio return -1; 59441da177e4SLinus Torvalds } 59451da177e4SLinus Torvalds 59460eff0a27SJakub Kicinski static int inet6_rtm_valid_getroute_req(struct sk_buff *skb, 59470eff0a27SJakub Kicinski const struct nlmsghdr *nlh, 59480eff0a27SJakub Kicinski struct nlattr **tb, 59490eff0a27SJakub Kicinski struct netlink_ext_ack *extack) 59500eff0a27SJakub Kicinski { 59510eff0a27SJakub Kicinski struct rtmsg *rtm; 59520eff0a27SJakub Kicinski int i, err; 59530eff0a27SJakub Kicinski 59540eff0a27SJakub Kicinski if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*rtm))) { 59550eff0a27SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, 59560eff0a27SJakub Kicinski "Invalid header for get route request"); 59570eff0a27SJakub Kicinski return -EINVAL; 59580eff0a27SJakub Kicinski } 59590eff0a27SJakub Kicinski 59600eff0a27SJakub Kicinski if (!netlink_strict_get_check(skb)) 59618cb08174SJohannes Berg return nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX, 59620eff0a27SJakub Kicinski rtm_ipv6_policy, extack); 59630eff0a27SJakub Kicinski 59640eff0a27SJakub Kicinski rtm = nlmsg_data(nlh); 59650eff0a27SJakub Kicinski if ((rtm->rtm_src_len && rtm->rtm_src_len != 128) || 59660eff0a27SJakub Kicinski (rtm->rtm_dst_len && rtm->rtm_dst_len != 128) || 59670eff0a27SJakub Kicinski rtm->rtm_table || rtm->rtm_protocol || rtm->rtm_scope || 59680eff0a27SJakub Kicinski rtm->rtm_type) { 59690eff0a27SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for get route request"); 59700eff0a27SJakub Kicinski return -EINVAL; 59710eff0a27SJakub Kicinski } 59720eff0a27SJakub Kicinski if (rtm->rtm_flags & ~RTM_F_FIB_MATCH) { 59730eff0a27SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, 59740eff0a27SJakub Kicinski "Invalid flags for get route request"); 59750eff0a27SJakub Kicinski return -EINVAL; 59760eff0a27SJakub Kicinski } 59770eff0a27SJakub Kicinski 59788cb08174SJohannes Berg err = nlmsg_parse_deprecated_strict(nlh, sizeof(*rtm), tb, RTA_MAX, 59790eff0a27SJakub Kicinski rtm_ipv6_policy, extack); 59800eff0a27SJakub Kicinski if (err) 59810eff0a27SJakub Kicinski return err; 59820eff0a27SJakub Kicinski 59830eff0a27SJakub Kicinski if ((tb[RTA_SRC] && !rtm->rtm_src_len) || 59840eff0a27SJakub Kicinski (tb[RTA_DST] && !rtm->rtm_dst_len)) { 59850eff0a27SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, "rtm_src_len and rtm_dst_len must be 128 for IPv6"); 59860eff0a27SJakub Kicinski return -EINVAL; 59870eff0a27SJakub Kicinski } 59880eff0a27SJakub Kicinski 59890eff0a27SJakub Kicinski for (i = 0; i <= RTA_MAX; i++) { 59900eff0a27SJakub Kicinski if (!tb[i]) 59910eff0a27SJakub Kicinski continue; 59920eff0a27SJakub Kicinski 59930eff0a27SJakub Kicinski switch (i) { 59940eff0a27SJakub Kicinski case RTA_SRC: 59950eff0a27SJakub Kicinski case RTA_DST: 59960eff0a27SJakub Kicinski case RTA_IIF: 59970eff0a27SJakub Kicinski case RTA_OIF: 59980eff0a27SJakub Kicinski case RTA_MARK: 59990eff0a27SJakub Kicinski case RTA_UID: 60000eff0a27SJakub Kicinski case RTA_SPORT: 60010eff0a27SJakub Kicinski case RTA_DPORT: 60020eff0a27SJakub Kicinski case RTA_IP_PROTO: 60030eff0a27SJakub Kicinski break; 60040eff0a27SJakub Kicinski default: 60050eff0a27SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in get route request"); 60060eff0a27SJakub Kicinski return -EINVAL; 60070eff0a27SJakub Kicinski } 60080eff0a27SJakub Kicinski } 60090eff0a27SJakub Kicinski 60100eff0a27SJakub Kicinski return 0; 60110eff0a27SJakub Kicinski } 60120eff0a27SJakub Kicinski 6013c21ef3e3SDavid Ahern static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, 6014c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 60151da177e4SLinus Torvalds { 60163b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(in_skb->sk); 6017ab364a6fSThomas Graf struct nlattr *tb[RTA_MAX+1]; 601818c3a61cSRoopa Prabhu int err, iif = 0, oif = 0; 6019a68886a6SDavid Ahern struct fib6_info *from; 602018c3a61cSRoopa Prabhu struct dst_entry *dst; 60211da177e4SLinus Torvalds struct rt6_info *rt; 6022ab364a6fSThomas Graf struct sk_buff *skb; 6023ab364a6fSThomas Graf struct rtmsg *rtm; 6024744486d4SMaciej Żenczykowski struct flowi6 fl6 = {}; 602518c3a61cSRoopa Prabhu bool fibmatch; 6026ab364a6fSThomas Graf 60270eff0a27SJakub Kicinski err = inet6_rtm_valid_getroute_req(in_skb, nlh, tb, extack); 6028ab364a6fSThomas Graf if (err < 0) 6029ab364a6fSThomas Graf goto errout; 6030ab364a6fSThomas Graf 6031ab364a6fSThomas Graf err = -EINVAL; 603238b7097bSHannes Frederic Sowa rtm = nlmsg_data(nlh); 603338b7097bSHannes Frederic Sowa fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0); 603418c3a61cSRoopa Prabhu fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH); 6035ab364a6fSThomas Graf 6036ab364a6fSThomas Graf if (tb[RTA_SRC]) { 6037ab364a6fSThomas Graf if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr)) 6038ab364a6fSThomas Graf goto errout; 6039ab364a6fSThomas Graf 60404e3fd7a0SAlexey Dobriyan fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]); 6041ab364a6fSThomas Graf } 6042ab364a6fSThomas Graf 6043ab364a6fSThomas Graf if (tb[RTA_DST]) { 6044ab364a6fSThomas Graf if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr)) 6045ab364a6fSThomas Graf goto errout; 6046ab364a6fSThomas Graf 60474e3fd7a0SAlexey Dobriyan fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]); 6048ab364a6fSThomas Graf } 6049ab364a6fSThomas Graf 6050ab364a6fSThomas Graf if (tb[RTA_IIF]) 6051ab364a6fSThomas Graf iif = nla_get_u32(tb[RTA_IIF]); 6052ab364a6fSThomas Graf 6053ab364a6fSThomas Graf if (tb[RTA_OIF]) 605472331bc0SShmulik Ladkani oif = nla_get_u32(tb[RTA_OIF]); 6055ab364a6fSThomas Graf 60562e47b291SLorenzo Colitti if (tb[RTA_MARK]) 60572e47b291SLorenzo Colitti fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]); 60582e47b291SLorenzo Colitti 6059622ec2c9SLorenzo Colitti if (tb[RTA_UID]) 6060622ec2c9SLorenzo Colitti fl6.flowi6_uid = make_kuid(current_user_ns(), 6061622ec2c9SLorenzo Colitti nla_get_u32(tb[RTA_UID])); 6062622ec2c9SLorenzo Colitti else 6063622ec2c9SLorenzo Colitti fl6.flowi6_uid = iif ? INVALID_UID : current_uid(); 6064622ec2c9SLorenzo Colitti 6065eacb9384SRoopa Prabhu if (tb[RTA_SPORT]) 6066eacb9384SRoopa Prabhu fl6.fl6_sport = nla_get_be16(tb[RTA_SPORT]); 6067eacb9384SRoopa Prabhu 6068eacb9384SRoopa Prabhu if (tb[RTA_DPORT]) 6069eacb9384SRoopa Prabhu fl6.fl6_dport = nla_get_be16(tb[RTA_DPORT]); 6070eacb9384SRoopa Prabhu 6071eacb9384SRoopa Prabhu if (tb[RTA_IP_PROTO]) { 6072eacb9384SRoopa Prabhu err = rtm_getroute_parse_ip_proto(tb[RTA_IP_PROTO], 60735e1a99eaSHangbin Liu &fl6.flowi6_proto, AF_INET6, 60745e1a99eaSHangbin Liu extack); 6075eacb9384SRoopa Prabhu if (err) 6076eacb9384SRoopa Prabhu goto errout; 6077eacb9384SRoopa Prabhu } 6078eacb9384SRoopa Prabhu 6079ab364a6fSThomas Graf if (iif) { 6080ab364a6fSThomas Graf struct net_device *dev; 608172331bc0SShmulik Ladkani int flags = 0; 608272331bc0SShmulik Ladkani 6083121622dbSFlorian Westphal rcu_read_lock(); 6084121622dbSFlorian Westphal 6085121622dbSFlorian Westphal dev = dev_get_by_index_rcu(net, iif); 6086ab364a6fSThomas Graf if (!dev) { 6087121622dbSFlorian Westphal rcu_read_unlock(); 6088ab364a6fSThomas Graf err = -ENODEV; 6089ab364a6fSThomas Graf goto errout; 6090ab364a6fSThomas Graf } 609172331bc0SShmulik Ladkani 609272331bc0SShmulik Ladkani fl6.flowi6_iif = iif; 609372331bc0SShmulik Ladkani 609472331bc0SShmulik Ladkani if (!ipv6_addr_any(&fl6.saddr)) 609572331bc0SShmulik Ladkani flags |= RT6_LOOKUP_F_HAS_SADDR; 609672331bc0SShmulik Ladkani 6097b75cc8f9SDavid Ahern dst = ip6_route_input_lookup(net, dev, &fl6, NULL, flags); 6098121622dbSFlorian Westphal 6099121622dbSFlorian Westphal rcu_read_unlock(); 610072331bc0SShmulik Ladkani } else { 610172331bc0SShmulik Ladkani fl6.flowi6_oif = oif; 610272331bc0SShmulik Ladkani 610318c3a61cSRoopa Prabhu dst = ip6_route_output(net, NULL, &fl6); 610418c3a61cSRoopa Prabhu } 610518c3a61cSRoopa Prabhu 610618c3a61cSRoopa Prabhu 610718c3a61cSRoopa Prabhu rt = container_of(dst, struct rt6_info, dst); 610818c3a61cSRoopa Prabhu if (rt->dst.error) { 610918c3a61cSRoopa Prabhu err = rt->dst.error; 611018c3a61cSRoopa Prabhu ip6_rt_put(rt); 611118c3a61cSRoopa Prabhu goto errout; 6112ab364a6fSThomas Graf } 61131da177e4SLinus Torvalds 61149d6acb3bSWANG Cong if (rt == net->ipv6.ip6_null_entry) { 61159d6acb3bSWANG Cong err = rt->dst.error; 61169d6acb3bSWANG Cong ip6_rt_put(rt); 61179d6acb3bSWANG Cong goto errout; 61189d6acb3bSWANG Cong } 61199d6acb3bSWANG Cong 61201da177e4SLinus Torvalds skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); 612138308473SDavid S. Miller if (!skb) { 612294e187c0SAmerigo Wang ip6_rt_put(rt); 6123ab364a6fSThomas Graf err = -ENOBUFS; 6124ab364a6fSThomas Graf goto errout; 6125ab364a6fSThomas Graf } 61261da177e4SLinus Torvalds 6127d8d1f30bSChangli Gao skb_dst_set(skb, &rt->dst); 6128a68886a6SDavid Ahern 6129a68886a6SDavid Ahern rcu_read_lock(); 6130a68886a6SDavid Ahern from = rcu_dereference(rt->from); 6131886b7a50SMartin KaFai Lau if (from) { 613218c3a61cSRoopa Prabhu if (fibmatch) 6133886b7a50SMartin KaFai Lau err = rt6_fill_node(net, skb, from, NULL, NULL, NULL, 6134886b7a50SMartin KaFai Lau iif, RTM_NEWROUTE, 6135886b7a50SMartin KaFai Lau NETLINK_CB(in_skb).portid, 613618c3a61cSRoopa Prabhu nlh->nlmsg_seq, 0); 613718c3a61cSRoopa Prabhu else 6138a68886a6SDavid Ahern err = rt6_fill_node(net, skb, from, dst, &fl6.daddr, 6139a68886a6SDavid Ahern &fl6.saddr, iif, RTM_NEWROUTE, 6140886b7a50SMartin KaFai Lau NETLINK_CB(in_skb).portid, 6141886b7a50SMartin KaFai Lau nlh->nlmsg_seq, 0); 6142886b7a50SMartin KaFai Lau } else { 6143886b7a50SMartin KaFai Lau err = -ENETUNREACH; 6144886b7a50SMartin KaFai Lau } 6145a68886a6SDavid Ahern rcu_read_unlock(); 6146a68886a6SDavid Ahern 61471da177e4SLinus Torvalds if (err < 0) { 6148ab364a6fSThomas Graf kfree_skb(skb); 6149ab364a6fSThomas Graf goto errout; 61501da177e4SLinus Torvalds } 61511da177e4SLinus Torvalds 615215e47304SEric W. Biederman err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid); 6153ab364a6fSThomas Graf errout: 61541da177e4SLinus Torvalds return err; 61551da177e4SLinus Torvalds } 61561da177e4SLinus Torvalds 61578d1c802bSDavid Ahern void inet6_rt_notify(int event, struct fib6_info *rt, struct nl_info *info, 615837a1d361SRoopa Prabhu unsigned int nlm_flags) 61591da177e4SLinus Torvalds { 61601da177e4SLinus Torvalds struct sk_buff *skb; 61615578689aSDaniel Lezcano struct net *net = info->nl_net; 6162528c4cebSDenis V. Lunev u32 seq; 6163528c4cebSDenis V. Lunev int err; 61640d51aa80SJamal Hadi Salim 6165528c4cebSDenis V. Lunev err = -ENOBUFS; 616638308473SDavid S. Miller seq = info->nlh ? info->nlh->nlmsg_seq : 0; 616786872cb5SThomas Graf 616819e42e45SRoopa Prabhu skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any()); 616938308473SDavid S. Miller if (!skb) 617021713ebcSThomas Graf goto errout; 61711da177e4SLinus Torvalds 6172d4ead6b3SDavid Ahern err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0, 6173f8cfe2ceSDavid Ahern event, info->portid, seq, nlm_flags); 617426932566SPatrick McHardy if (err < 0) { 617526932566SPatrick McHardy /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */ 617626932566SPatrick McHardy WARN_ON(err == -EMSGSIZE); 617726932566SPatrick McHardy kfree_skb(skb); 617826932566SPatrick McHardy goto errout; 617926932566SPatrick McHardy } 618015e47304SEric W. Biederman rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE, 61815578689aSDaniel Lezcano info->nlh, gfp_any()); 61821ce85fe4SPablo Neira Ayuso return; 618321713ebcSThomas Graf errout: 618421713ebcSThomas Graf if (err < 0) 61855578689aSDaniel Lezcano rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err); 61861da177e4SLinus Torvalds } 61871da177e4SLinus Torvalds 618819a3b7eeSDavid Ahern void fib6_rt_update(struct net *net, struct fib6_info *rt, 618919a3b7eeSDavid Ahern struct nl_info *info) 619019a3b7eeSDavid Ahern { 619119a3b7eeSDavid Ahern u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0; 619219a3b7eeSDavid Ahern struct sk_buff *skb; 619319a3b7eeSDavid Ahern int err = -ENOBUFS; 619419a3b7eeSDavid Ahern 619519a3b7eeSDavid Ahern skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any()); 619619a3b7eeSDavid Ahern if (!skb) 619719a3b7eeSDavid Ahern goto errout; 619819a3b7eeSDavid Ahern 619919a3b7eeSDavid Ahern err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0, 620019a3b7eeSDavid Ahern RTM_NEWROUTE, info->portid, seq, NLM_F_REPLACE); 620119a3b7eeSDavid Ahern if (err < 0) { 620219a3b7eeSDavid Ahern /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */ 620319a3b7eeSDavid Ahern WARN_ON(err == -EMSGSIZE); 620419a3b7eeSDavid Ahern kfree_skb(skb); 620519a3b7eeSDavid Ahern goto errout; 620619a3b7eeSDavid Ahern } 620719a3b7eeSDavid Ahern rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE, 620819a3b7eeSDavid Ahern info->nlh, gfp_any()); 620919a3b7eeSDavid Ahern return; 621019a3b7eeSDavid Ahern errout: 621119a3b7eeSDavid Ahern if (err < 0) 621219a3b7eeSDavid Ahern rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err); 621319a3b7eeSDavid Ahern } 621419a3b7eeSDavid Ahern 6215907eea48SAmit Cohen void fib6_info_hw_flags_set(struct net *net, struct fib6_info *f6i, 62160c5fcf9eSAmit Cohen bool offload, bool trap, bool offload_failed) 6217907eea48SAmit Cohen { 6218907eea48SAmit Cohen struct sk_buff *skb; 6219907eea48SAmit Cohen int err; 6220907eea48SAmit Cohen 6221d95d6320SEric Dumazet if (READ_ONCE(f6i->offload) == offload && 6222d95d6320SEric Dumazet READ_ONCE(f6i->trap) == trap && 6223d95d6320SEric Dumazet READ_ONCE(f6i->offload_failed) == offload_failed) 6224907eea48SAmit Cohen return; 6225907eea48SAmit Cohen 6226d95d6320SEric Dumazet WRITE_ONCE(f6i->offload, offload); 6227d95d6320SEric Dumazet WRITE_ONCE(f6i->trap, trap); 62286fad361aSAmit Cohen 62296fad361aSAmit Cohen /* 2 means send notifications only if offload_failed was changed. */ 62306fad361aSAmit Cohen if (net->ipv6.sysctl.fib_notify_on_flag_change == 2 && 6231d95d6320SEric Dumazet READ_ONCE(f6i->offload_failed) == offload_failed) 62326fad361aSAmit Cohen return; 62336fad361aSAmit Cohen 6234d95d6320SEric Dumazet WRITE_ONCE(f6i->offload_failed, offload_failed); 6235907eea48SAmit Cohen 6236907eea48SAmit Cohen if (!rcu_access_pointer(f6i->fib6_node)) 6237907eea48SAmit Cohen /* The route was removed from the tree, do not send 623889e8347fSBhaskar Chowdhury * notification. 6239907eea48SAmit Cohen */ 6240907eea48SAmit Cohen return; 6241907eea48SAmit Cohen 6242907eea48SAmit Cohen if (!net->ipv6.sysctl.fib_notify_on_flag_change) 6243907eea48SAmit Cohen return; 6244907eea48SAmit Cohen 6245907eea48SAmit Cohen skb = nlmsg_new(rt6_nlmsg_size(f6i), GFP_KERNEL); 6246907eea48SAmit Cohen if (!skb) { 6247907eea48SAmit Cohen err = -ENOBUFS; 6248907eea48SAmit Cohen goto errout; 6249907eea48SAmit Cohen } 6250907eea48SAmit Cohen 6251907eea48SAmit Cohen err = rt6_fill_node(net, skb, f6i, NULL, NULL, NULL, 0, RTM_NEWROUTE, 0, 6252907eea48SAmit Cohen 0, 0); 6253907eea48SAmit Cohen if (err < 0) { 6254907eea48SAmit Cohen /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */ 6255907eea48SAmit Cohen WARN_ON(err == -EMSGSIZE); 6256907eea48SAmit Cohen kfree_skb(skb); 6257907eea48SAmit Cohen goto errout; 6258907eea48SAmit Cohen } 6259907eea48SAmit Cohen 6260907eea48SAmit Cohen rtnl_notify(skb, net, 0, RTNLGRP_IPV6_ROUTE, NULL, GFP_KERNEL); 6261907eea48SAmit Cohen return; 6262907eea48SAmit Cohen 6263907eea48SAmit Cohen errout: 6264907eea48SAmit Cohen rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err); 6265907eea48SAmit Cohen } 6266907eea48SAmit Cohen EXPORT_SYMBOL(fib6_info_hw_flags_set); 6267907eea48SAmit Cohen 62688ed67789SDaniel Lezcano static int ip6_route_dev_notify(struct notifier_block *this, 6269351638e7SJiri Pirko unsigned long event, void *ptr) 62708ed67789SDaniel Lezcano { 6271351638e7SJiri Pirko struct net_device *dev = netdev_notifier_info_to_dev(ptr); 6272c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(dev); 62738ed67789SDaniel Lezcano 6274242d3a49SWANG Cong if (!(dev->flags & IFF_LOOPBACK)) 6275242d3a49SWANG Cong return NOTIFY_OK; 6276242d3a49SWANG Cong 6277242d3a49SWANG Cong if (event == NETDEV_REGISTER) { 62781cf844c7SDavid Ahern net->ipv6.fib6_null_entry->fib6_nh->fib_nh_dev = dev; 6279d8d1f30bSChangli Gao net->ipv6.ip6_null_entry->dst.dev = dev; 62808ed67789SDaniel Lezcano net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev); 62818ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES 6282d8d1f30bSChangli Gao net->ipv6.ip6_prohibit_entry->dst.dev = dev; 62838ed67789SDaniel Lezcano net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev); 6284d8d1f30bSChangli Gao net->ipv6.ip6_blk_hole_entry->dst.dev = dev; 62858ed67789SDaniel Lezcano net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev); 62868ed67789SDaniel Lezcano #endif 628776da0704SWANG Cong } else if (event == NETDEV_UNREGISTER && 628876da0704SWANG Cong dev->reg_state != NETREG_UNREGISTERED) { 628976da0704SWANG Cong /* NETDEV_UNREGISTER could be fired for multiple times by 629076da0704SWANG Cong * netdev_wait_allrefs(). Make sure we only call this once. 629176da0704SWANG Cong */ 629212d94a80SEric Dumazet in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev); 6293242d3a49SWANG Cong #ifdef CONFIG_IPV6_MULTIPLE_TABLES 629412d94a80SEric Dumazet in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev); 629512d94a80SEric Dumazet in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev); 6296242d3a49SWANG Cong #endif 62978ed67789SDaniel Lezcano } 62988ed67789SDaniel Lezcano 62998ed67789SDaniel Lezcano return NOTIFY_OK; 63008ed67789SDaniel Lezcano } 63018ed67789SDaniel Lezcano 63021da177e4SLinus Torvalds /* 63031da177e4SLinus Torvalds * /proc 63041da177e4SLinus Torvalds */ 63051da177e4SLinus Torvalds 63061da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS 63071da177e4SLinus Torvalds static int rt6_stats_seq_show(struct seq_file *seq, void *v) 63081da177e4SLinus Torvalds { 630969ddb805SDaniel Lezcano struct net *net = (struct net *)seq->private; 63101da177e4SLinus Torvalds seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n", 631169ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_nodes, 631269ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_route_nodes, 631381eb8447SWei Wang atomic_read(&net->ipv6.rt6_stats->fib_rt_alloc), 631469ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_rt_entries, 631569ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_rt_cache, 6316fc66f95cSEric Dumazet dst_entries_get_slow(&net->ipv6.ip6_dst_ops), 631769ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_discarded_routes); 63181da177e4SLinus Torvalds 63191da177e4SLinus Torvalds return 0; 63201da177e4SLinus Torvalds } 63211da177e4SLinus Torvalds #endif /* CONFIG_PROC_FS */ 63221da177e4SLinus Torvalds 63231da177e4SLinus Torvalds #ifdef CONFIG_SYSCTL 63241da177e4SLinus Torvalds 632532927393SChristoph Hellwig static int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write, 632632927393SChristoph Hellwig void *buffer, size_t *lenp, loff_t *ppos) 63271da177e4SLinus Torvalds { 6328c486da34SLucian Adrian Grijincu struct net *net; 6329c486da34SLucian Adrian Grijincu int delay; 6330f0fb9b28SAditya Pakki int ret; 6331c486da34SLucian Adrian Grijincu if (!write) 6332c486da34SLucian Adrian Grijincu return -EINVAL; 6333c486da34SLucian Adrian Grijincu 6334c486da34SLucian Adrian Grijincu net = (struct net *)ctl->extra1; 6335c486da34SLucian Adrian Grijincu delay = net->ipv6.sysctl.flush_delay; 6336f0fb9b28SAditya Pakki ret = proc_dointvec(ctl, write, buffer, lenp, ppos); 6337f0fb9b28SAditya Pakki if (ret) 6338f0fb9b28SAditya Pakki return ret; 6339f0fb9b28SAditya Pakki 63402ac3ac8fSMichal Kubeček fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0); 63411da177e4SLinus Torvalds return 0; 63421da177e4SLinus Torvalds } 63431da177e4SLinus Torvalds 6344ed792e28SDavid Ahern static struct ctl_table ipv6_route_table_template[] = { 63451da177e4SLinus Torvalds { 634606e6c88fSAlexander Kuznetsov .procname = "max_size", 634706e6c88fSAlexander Kuznetsov .data = &init_net.ipv6.sysctl.ip6_rt_max_size, 63481da177e4SLinus Torvalds .maxlen = sizeof(int), 634906e6c88fSAlexander Kuznetsov .mode = 0644, 635006e6c88fSAlexander Kuznetsov .proc_handler = proc_dointvec, 63511da177e4SLinus Torvalds }, 63521da177e4SLinus Torvalds { 63531da177e4SLinus Torvalds .procname = "gc_thresh", 63549a7ec3a9SDaniel Lezcano .data = &ip6_dst_ops_template.gc_thresh, 63551da177e4SLinus Torvalds .maxlen = sizeof(int), 63561da177e4SLinus Torvalds .mode = 0644, 63576d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 63581da177e4SLinus Torvalds }, 63591da177e4SLinus Torvalds { 636006e6c88fSAlexander Kuznetsov .procname = "flush", 636106e6c88fSAlexander Kuznetsov .data = &init_net.ipv6.sysctl.flush_delay, 63621da177e4SLinus Torvalds .maxlen = sizeof(int), 636306e6c88fSAlexander Kuznetsov .mode = 0200, 636406e6c88fSAlexander Kuznetsov .proc_handler = ipv6_sysctl_rtcache_flush 63651da177e4SLinus Torvalds }, 63661da177e4SLinus Torvalds { 63671da177e4SLinus Torvalds .procname = "gc_min_interval", 63684990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval, 63691da177e4SLinus Torvalds .maxlen = sizeof(int), 63701da177e4SLinus Torvalds .mode = 0644, 63716d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 63721da177e4SLinus Torvalds }, 63731da177e4SLinus Torvalds { 63741da177e4SLinus Torvalds .procname = "gc_timeout", 63754990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout, 63761da177e4SLinus Torvalds .maxlen = sizeof(int), 63771da177e4SLinus Torvalds .mode = 0644, 63786d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 63791da177e4SLinus Torvalds }, 63801da177e4SLinus Torvalds { 63811da177e4SLinus Torvalds .procname = "gc_interval", 63824990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval, 63831da177e4SLinus Torvalds .maxlen = sizeof(int), 63841da177e4SLinus Torvalds .mode = 0644, 63856d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 63861da177e4SLinus Torvalds }, 63871da177e4SLinus Torvalds { 63881da177e4SLinus Torvalds .procname = "gc_elasticity", 63894990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity, 63901da177e4SLinus Torvalds .maxlen = sizeof(int), 63911da177e4SLinus Torvalds .mode = 0644, 6392f3d3f616SMin Zhang .proc_handler = proc_dointvec, 63931da177e4SLinus Torvalds }, 63941da177e4SLinus Torvalds { 63951da177e4SLinus Torvalds .procname = "mtu_expires", 63964990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires, 63971da177e4SLinus Torvalds .maxlen = sizeof(int), 63981da177e4SLinus Torvalds .mode = 0644, 63996d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 64001da177e4SLinus Torvalds }, 64011da177e4SLinus Torvalds { 64021da177e4SLinus Torvalds .procname = "min_adv_mss", 64034990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss, 64041da177e4SLinus Torvalds .maxlen = sizeof(int), 64051da177e4SLinus Torvalds .mode = 0644, 6406f3d3f616SMin Zhang .proc_handler = proc_dointvec, 64071da177e4SLinus Torvalds }, 64081da177e4SLinus Torvalds { 64091da177e4SLinus Torvalds .procname = "gc_min_interval_ms", 64104990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval, 64111da177e4SLinus Torvalds .maxlen = sizeof(int), 64121da177e4SLinus Torvalds .mode = 0644, 64136d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_ms_jiffies, 64141da177e4SLinus Torvalds }, 64157c6bb7d2SDavid Ahern { 64167c6bb7d2SDavid Ahern .procname = "skip_notify_on_dev_down", 64177c6bb7d2SDavid Ahern .data = &init_net.ipv6.sysctl.skip_notify_on_dev_down, 6418ef62c0aeSEric Dumazet .maxlen = sizeof(u8), 64197c6bb7d2SDavid Ahern .mode = 0644, 6420ef62c0aeSEric Dumazet .proc_handler = proc_dou8vec_minmax, 6421eec4844fSMatteo Croce .extra1 = SYSCTL_ZERO, 6422eec4844fSMatteo Croce .extra2 = SYSCTL_ONE, 64237c6bb7d2SDavid Ahern }, 6424f8572d8fSEric W. Biederman { } 64251da177e4SLinus Torvalds }; 64261da177e4SLinus Torvalds 64272c8c1e72SAlexey Dobriyan struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net) 6428760f2d01SDaniel Lezcano { 6429760f2d01SDaniel Lezcano struct ctl_table *table; 6430760f2d01SDaniel Lezcano 6431760f2d01SDaniel Lezcano table = kmemdup(ipv6_route_table_template, 6432760f2d01SDaniel Lezcano sizeof(ipv6_route_table_template), 6433760f2d01SDaniel Lezcano GFP_KERNEL); 64345ee09105SYOSHIFUJI Hideaki 64355ee09105SYOSHIFUJI Hideaki if (table) { 643606e6c88fSAlexander Kuznetsov table[0].data = &net->ipv6.sysctl.ip6_rt_max_size; 643786393e52SAlexey Dobriyan table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh; 643806e6c88fSAlexander Kuznetsov table[2].data = &net->ipv6.sysctl.flush_delay; 643906e6c88fSAlexander Kuznetsov table[2].extra1 = net; 64405ee09105SYOSHIFUJI Hideaki table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval; 64415ee09105SYOSHIFUJI Hideaki table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout; 64425ee09105SYOSHIFUJI Hideaki table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval; 64435ee09105SYOSHIFUJI Hideaki table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity; 64445ee09105SYOSHIFUJI Hideaki table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires; 64455ee09105SYOSHIFUJI Hideaki table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss; 64469c69fabeSAlexey Dobriyan table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval; 64477c6bb7d2SDavid Ahern table[10].data = &net->ipv6.sysctl.skip_notify_on_dev_down; 6448464dc801SEric W. Biederman 6449464dc801SEric W. Biederman /* Don't export sysctls to unprivileged users */ 6450464dc801SEric W. Biederman if (net->user_ns != &init_user_ns) 645106e6c88fSAlexander Kuznetsov table[1].procname = NULL; 64525ee09105SYOSHIFUJI Hideaki } 64535ee09105SYOSHIFUJI Hideaki 6454760f2d01SDaniel Lezcano return table; 6455760f2d01SDaniel Lezcano } 64561da177e4SLinus Torvalds #endif 64571da177e4SLinus Torvalds 64582c8c1e72SAlexey Dobriyan static int __net_init ip6_route_net_init(struct net *net) 6459cdb18761SDaniel Lezcano { 6460633d424bSPavel Emelyanov int ret = -ENOMEM; 64618ed67789SDaniel Lezcano 646286393e52SAlexey Dobriyan memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template, 646386393e52SAlexey Dobriyan sizeof(net->ipv6.ip6_dst_ops)); 6464f2fc6a54SBenjamin Thery 6465fc66f95cSEric Dumazet if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0) 6466fc66f95cSEric Dumazet goto out_ip6_dst_ops; 6467fc66f95cSEric Dumazet 64681cf844c7SDavid Ahern net->ipv6.fib6_null_entry = fib6_info_alloc(GFP_KERNEL, true); 6469421842edSDavid Ahern if (!net->ipv6.fib6_null_entry) 6470421842edSDavid Ahern goto out_ip6_dst_entries; 64711cf844c7SDavid Ahern memcpy(net->ipv6.fib6_null_entry, &fib6_null_entry_template, 64721cf844c7SDavid Ahern sizeof(*net->ipv6.fib6_null_entry)); 6473421842edSDavid Ahern 64748ed67789SDaniel Lezcano net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template, 64758ed67789SDaniel Lezcano sizeof(*net->ipv6.ip6_null_entry), 64768ed67789SDaniel Lezcano GFP_KERNEL); 64778ed67789SDaniel Lezcano if (!net->ipv6.ip6_null_entry) 6478421842edSDavid Ahern goto out_fib6_null_entry; 6479d8d1f30bSChangli Gao net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops; 648062fa8a84SDavid S. Miller dst_init_metrics(&net->ipv6.ip6_null_entry->dst, 648162fa8a84SDavid S. Miller ip6_template_metrics, true); 6482d288a162SWangyang Guo INIT_LIST_HEAD(&net->ipv6.ip6_null_entry->dst.rt_uncached); 64838ed67789SDaniel Lezcano 64848ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES 6485feca7d8cSVincent Bernat net->ipv6.fib6_has_custom_rules = false; 64868ed67789SDaniel Lezcano net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template, 64878ed67789SDaniel Lezcano sizeof(*net->ipv6.ip6_prohibit_entry), 64888ed67789SDaniel Lezcano GFP_KERNEL); 648968fffc67SPeter Zijlstra if (!net->ipv6.ip6_prohibit_entry) 649068fffc67SPeter Zijlstra goto out_ip6_null_entry; 6491d8d1f30bSChangli Gao net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops; 649262fa8a84SDavid S. Miller dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst, 649362fa8a84SDavid S. Miller ip6_template_metrics, true); 6494d288a162SWangyang Guo INIT_LIST_HEAD(&net->ipv6.ip6_prohibit_entry->dst.rt_uncached); 64958ed67789SDaniel Lezcano 64968ed67789SDaniel Lezcano net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template, 64978ed67789SDaniel Lezcano sizeof(*net->ipv6.ip6_blk_hole_entry), 64988ed67789SDaniel Lezcano GFP_KERNEL); 649968fffc67SPeter Zijlstra if (!net->ipv6.ip6_blk_hole_entry) 650068fffc67SPeter Zijlstra goto out_ip6_prohibit_entry; 6501d8d1f30bSChangli Gao net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops; 650262fa8a84SDavid S. Miller dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst, 650362fa8a84SDavid S. Miller ip6_template_metrics, true); 6504d288a162SWangyang Guo INIT_LIST_HEAD(&net->ipv6.ip6_blk_hole_entry->dst.rt_uncached); 6505b9b33e7cSPaolo Abeni #ifdef CONFIG_IPV6_SUBTREES 6506b9b33e7cSPaolo Abeni net->ipv6.fib6_routes_require_src = 0; 6507b9b33e7cSPaolo Abeni #endif 65088ed67789SDaniel Lezcano #endif 65098ed67789SDaniel Lezcano 6510b339a47cSPeter Zijlstra net->ipv6.sysctl.flush_delay = 0; 6511af6d1034SJon Maxwell net->ipv6.sysctl.ip6_rt_max_size = INT_MAX; 6512b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2; 6513b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ; 6514b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ; 6515b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_elasticity = 9; 6516b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ; 6517b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40; 65187c6bb7d2SDavid Ahern net->ipv6.sysctl.skip_notify_on_dev_down = 0; 6519b339a47cSPeter Zijlstra 65209cb7c013SEric Dumazet atomic_set(&net->ipv6.ip6_rt_gc_expire, 30*HZ); 65216891a346SBenjamin Thery 65228ed67789SDaniel Lezcano ret = 0; 65238ed67789SDaniel Lezcano out: 65248ed67789SDaniel Lezcano return ret; 6525f2fc6a54SBenjamin Thery 652668fffc67SPeter Zijlstra #ifdef CONFIG_IPV6_MULTIPLE_TABLES 652768fffc67SPeter Zijlstra out_ip6_prohibit_entry: 652868fffc67SPeter Zijlstra kfree(net->ipv6.ip6_prohibit_entry); 652968fffc67SPeter Zijlstra out_ip6_null_entry: 653068fffc67SPeter Zijlstra kfree(net->ipv6.ip6_null_entry); 653168fffc67SPeter Zijlstra #endif 6532421842edSDavid Ahern out_fib6_null_entry: 6533421842edSDavid Ahern kfree(net->ipv6.fib6_null_entry); 6534fc66f95cSEric Dumazet out_ip6_dst_entries: 6535fc66f95cSEric Dumazet dst_entries_destroy(&net->ipv6.ip6_dst_ops); 6536f2fc6a54SBenjamin Thery out_ip6_dst_ops: 6537f2fc6a54SBenjamin Thery goto out; 6538cdb18761SDaniel Lezcano } 6539cdb18761SDaniel Lezcano 65402c8c1e72SAlexey Dobriyan static void __net_exit ip6_route_net_exit(struct net *net) 6541cdb18761SDaniel Lezcano { 6542421842edSDavid Ahern kfree(net->ipv6.fib6_null_entry); 65438ed67789SDaniel Lezcano kfree(net->ipv6.ip6_null_entry); 65448ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES 65458ed67789SDaniel Lezcano kfree(net->ipv6.ip6_prohibit_entry); 65468ed67789SDaniel Lezcano kfree(net->ipv6.ip6_blk_hole_entry); 65478ed67789SDaniel Lezcano #endif 654841bb78b4SXiaotian Feng dst_entries_destroy(&net->ipv6.ip6_dst_ops); 6549cdb18761SDaniel Lezcano } 6550cdb18761SDaniel Lezcano 6551d189634eSThomas Graf static int __net_init ip6_route_net_init_late(struct net *net) 6552d189634eSThomas Graf { 6553d189634eSThomas Graf #ifdef CONFIG_PROC_FS 6554768b3c74SZhengchao Shao if (!proc_create_net("ipv6_route", 0, net->proc_net, 6555768b3c74SZhengchao Shao &ipv6_route_seq_ops, 6556768b3c74SZhengchao Shao sizeof(struct ipv6_route_iter))) 6557768b3c74SZhengchao Shao return -ENOMEM; 6558768b3c74SZhengchao Shao 6559768b3c74SZhengchao Shao if (!proc_create_net_single("rt6_stats", 0444, net->proc_net, 6560768b3c74SZhengchao Shao rt6_stats_seq_show, NULL)) { 6561768b3c74SZhengchao Shao remove_proc_entry("ipv6_route", net->proc_net); 6562768b3c74SZhengchao Shao return -ENOMEM; 6563768b3c74SZhengchao Shao } 6564d189634eSThomas Graf #endif 6565d189634eSThomas Graf return 0; 6566d189634eSThomas Graf } 6567d189634eSThomas Graf 6568d189634eSThomas Graf static void __net_exit ip6_route_net_exit_late(struct net *net) 6569d189634eSThomas Graf { 6570d189634eSThomas Graf #ifdef CONFIG_PROC_FS 6571ece31ffdSGao feng remove_proc_entry("ipv6_route", net->proc_net); 6572ece31ffdSGao feng remove_proc_entry("rt6_stats", net->proc_net); 6573d189634eSThomas Graf #endif 6574d189634eSThomas Graf } 6575d189634eSThomas Graf 6576cdb18761SDaniel Lezcano static struct pernet_operations ip6_route_net_ops = { 6577cdb18761SDaniel Lezcano .init = ip6_route_net_init, 6578cdb18761SDaniel Lezcano .exit = ip6_route_net_exit, 6579cdb18761SDaniel Lezcano }; 6580cdb18761SDaniel Lezcano 6581c3426b47SDavid S. Miller static int __net_init ipv6_inetpeer_init(struct net *net) 6582c3426b47SDavid S. Miller { 6583c3426b47SDavid S. Miller struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL); 6584c3426b47SDavid S. Miller 6585c3426b47SDavid S. Miller if (!bp) 6586c3426b47SDavid S. Miller return -ENOMEM; 6587c3426b47SDavid S. Miller inet_peer_base_init(bp); 6588c3426b47SDavid S. Miller net->ipv6.peers = bp; 6589c3426b47SDavid S. Miller return 0; 6590c3426b47SDavid S. Miller } 6591c3426b47SDavid S. Miller 6592c3426b47SDavid S. Miller static void __net_exit ipv6_inetpeer_exit(struct net *net) 6593c3426b47SDavid S. Miller { 6594c3426b47SDavid S. Miller struct inet_peer_base *bp = net->ipv6.peers; 6595c3426b47SDavid S. Miller 6596c3426b47SDavid S. Miller net->ipv6.peers = NULL; 659756a6b248SDavid S. Miller inetpeer_invalidate_tree(bp); 6598c3426b47SDavid S. Miller kfree(bp); 6599c3426b47SDavid S. Miller } 6600c3426b47SDavid S. Miller 66012b823f72SDavid S. Miller static struct pernet_operations ipv6_inetpeer_ops = { 6602c3426b47SDavid S. Miller .init = ipv6_inetpeer_init, 6603c3426b47SDavid S. Miller .exit = ipv6_inetpeer_exit, 6604c3426b47SDavid S. Miller }; 6605c3426b47SDavid S. Miller 6606d189634eSThomas Graf static struct pernet_operations ip6_route_net_late_ops = { 6607d189634eSThomas Graf .init = ip6_route_net_init_late, 6608d189634eSThomas Graf .exit = ip6_route_net_exit_late, 6609d189634eSThomas Graf }; 6610d189634eSThomas Graf 66118ed67789SDaniel Lezcano static struct notifier_block ip6_route_dev_notifier = { 66128ed67789SDaniel Lezcano .notifier_call = ip6_route_dev_notify, 6613242d3a49SWANG Cong .priority = ADDRCONF_NOTIFY_PRIORITY - 10, 66148ed67789SDaniel Lezcano }; 66158ed67789SDaniel Lezcano 66162f460933SWANG Cong void __init ip6_route_init_special_entries(void) 66172f460933SWANG Cong { 66182f460933SWANG Cong /* Registering of the loopback is done before this portion of code, 66192f460933SWANG Cong * the loopback reference in rt6_info will not be taken, do it 66202f460933SWANG Cong * manually for init_net */ 66211cf844c7SDavid Ahern init_net.ipv6.fib6_null_entry->fib6_nh->fib_nh_dev = init_net.loopback_dev; 66222f460933SWANG Cong init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev; 66232f460933SWANG Cong init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); 66242f460933SWANG Cong #ifdef CONFIG_IPV6_MULTIPLE_TABLES 66252f460933SWANG Cong init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev; 66262f460933SWANG Cong init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); 66272f460933SWANG Cong init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev; 66282f460933SWANG Cong init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); 66292f460933SWANG Cong #endif 66302f460933SWANG Cong } 66312f460933SWANG Cong 6632138d0be3SYonghong Song #if IS_BUILTIN(CONFIG_IPV6) 6633138d0be3SYonghong Song #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) 6634138d0be3SYonghong Song DEFINE_BPF_ITER_FUNC(ipv6_route, struct bpf_iter_meta *meta, struct fib6_info *rt) 6635138d0be3SYonghong Song 6636951cf368SYonghong Song BTF_ID_LIST(btf_fib6_info_id) 6637951cf368SYonghong Song BTF_ID(struct, fib6_info) 6638951cf368SYonghong Song 663914fc6bd6SYonghong Song static const struct bpf_iter_seq_info ipv6_route_seq_info = { 6640138d0be3SYonghong Song .seq_ops = &ipv6_route_seq_ops, 6641138d0be3SYonghong Song .init_seq_private = bpf_iter_init_seq_net, 6642138d0be3SYonghong Song .fini_seq_private = bpf_iter_fini_seq_net, 6643138d0be3SYonghong Song .seq_priv_size = sizeof(struct ipv6_route_iter), 664414fc6bd6SYonghong Song }; 664514fc6bd6SYonghong Song 664614fc6bd6SYonghong Song static struct bpf_iter_reg ipv6_route_reg_info = { 664714fc6bd6SYonghong Song .target = "ipv6_route", 66483c32cc1bSYonghong Song .ctx_arg_info_size = 1, 66493c32cc1bSYonghong Song .ctx_arg_info = { 66503c32cc1bSYonghong Song { offsetof(struct bpf_iter__ipv6_route, rt), 66513c32cc1bSYonghong Song PTR_TO_BTF_ID_OR_NULL }, 66523c32cc1bSYonghong Song }, 665314fc6bd6SYonghong Song .seq_info = &ipv6_route_seq_info, 6654138d0be3SYonghong Song }; 6655138d0be3SYonghong Song 665615172a46SYonghong Song static int __init bpf_iter_register(void) 665715172a46SYonghong Song { 6658951cf368SYonghong Song ipv6_route_reg_info.ctx_arg_info[0].btf_id = *btf_fib6_info_id; 665915172a46SYonghong Song return bpf_iter_reg_target(&ipv6_route_reg_info); 6660138d0be3SYonghong Song } 6661138d0be3SYonghong Song 6662138d0be3SYonghong Song static void bpf_iter_unregister(void) 6663138d0be3SYonghong Song { 6664ab2ee4fcSYonghong Song bpf_iter_unreg_target(&ipv6_route_reg_info); 6665138d0be3SYonghong Song } 6666138d0be3SYonghong Song #endif 6667138d0be3SYonghong Song #endif 6668138d0be3SYonghong Song 6669433d49c3SDaniel Lezcano int __init ip6_route_init(void) 66701da177e4SLinus Torvalds { 6671433d49c3SDaniel Lezcano int ret; 66728d0b94afSMartin KaFai Lau int cpu; 6673433d49c3SDaniel Lezcano 66749a7ec3a9SDaniel Lezcano ret = -ENOMEM; 66759a7ec3a9SDaniel Lezcano ip6_dst_ops_template.kmem_cachep = 66769a7ec3a9SDaniel Lezcano kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0, 66776126891cSVasily Averin SLAB_HWCACHE_ALIGN | SLAB_ACCOUNT, NULL); 66789a7ec3a9SDaniel Lezcano if (!ip6_dst_ops_template.kmem_cachep) 6679c19a28e1SFernando Carrijo goto out; 668014e50e57SDavid S. Miller 6681fc66f95cSEric Dumazet ret = dst_entries_init(&ip6_dst_blackhole_ops); 66828ed67789SDaniel Lezcano if (ret) 6683bdb3289fSDaniel Lezcano goto out_kmem_cache; 6684bdb3289fSDaniel Lezcano 6685c3426b47SDavid S. Miller ret = register_pernet_subsys(&ipv6_inetpeer_ops); 6686c3426b47SDavid S. Miller if (ret) 6687e8803b6cSDavid S. Miller goto out_dst_entries; 66882a0c451aSThomas Graf 66897e52b33bSDavid S. Miller ret = register_pernet_subsys(&ip6_route_net_ops); 66907e52b33bSDavid S. Miller if (ret) 66917e52b33bSDavid S. Miller goto out_register_inetpeer; 6692c3426b47SDavid S. Miller 66935dc121e9SArnaud Ebalard ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep; 66945dc121e9SArnaud Ebalard 6695e8803b6cSDavid S. Miller ret = fib6_init(); 6696433d49c3SDaniel Lezcano if (ret) 66978ed67789SDaniel Lezcano goto out_register_subsys; 6698433d49c3SDaniel Lezcano 6699433d49c3SDaniel Lezcano ret = xfrm6_init(); 6700433d49c3SDaniel Lezcano if (ret) 6701e8803b6cSDavid S. Miller goto out_fib6_init; 6702c35b7e72SDaniel Lezcano 6703433d49c3SDaniel Lezcano ret = fib6_rules_init(); 6704433d49c3SDaniel Lezcano if (ret) 6705433d49c3SDaniel Lezcano goto xfrm6_init; 67067e5449c2SDaniel Lezcano 6707d189634eSThomas Graf ret = register_pernet_subsys(&ip6_route_net_late_ops); 6708d189634eSThomas Graf if (ret) 6709d189634eSThomas Graf goto fib6_rules_init; 6710d189634eSThomas Graf 671116feebcfSFlorian Westphal ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWROUTE, 671216feebcfSFlorian Westphal inet6_rtm_newroute, NULL, 0); 671316feebcfSFlorian Westphal if (ret < 0) 671416feebcfSFlorian Westphal goto out_register_late_subsys; 671516feebcfSFlorian Westphal 671616feebcfSFlorian Westphal ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELROUTE, 671716feebcfSFlorian Westphal inet6_rtm_delroute, NULL, 0); 671816feebcfSFlorian Westphal if (ret < 0) 671916feebcfSFlorian Westphal goto out_register_late_subsys; 672016feebcfSFlorian Westphal 672116feebcfSFlorian Westphal ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETROUTE, 672216feebcfSFlorian Westphal inet6_rtm_getroute, NULL, 672316feebcfSFlorian Westphal RTNL_FLAG_DOIT_UNLOCKED); 672416feebcfSFlorian Westphal if (ret < 0) 6725d189634eSThomas Graf goto out_register_late_subsys; 6726433d49c3SDaniel Lezcano 67278ed67789SDaniel Lezcano ret = register_netdevice_notifier(&ip6_route_dev_notifier); 6728cdb18761SDaniel Lezcano if (ret) 6729d189634eSThomas Graf goto out_register_late_subsys; 67308ed67789SDaniel Lezcano 6731138d0be3SYonghong Song #if IS_BUILTIN(CONFIG_IPV6) 6732138d0be3SYonghong Song #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) 6733138d0be3SYonghong Song ret = bpf_iter_register(); 6734138d0be3SYonghong Song if (ret) 6735138d0be3SYonghong Song goto out_register_late_subsys; 6736138d0be3SYonghong Song #endif 6737138d0be3SYonghong Song #endif 6738138d0be3SYonghong Song 67398d0b94afSMartin KaFai Lau for_each_possible_cpu(cpu) { 67408d0b94afSMartin KaFai Lau struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu); 67418d0b94afSMartin KaFai Lau 67428d0b94afSMartin KaFai Lau INIT_LIST_HEAD(&ul->head); 6743ba55ef81SEric Dumazet INIT_LIST_HEAD(&ul->quarantine); 67448d0b94afSMartin KaFai Lau spin_lock_init(&ul->lock); 67458d0b94afSMartin KaFai Lau } 67468d0b94afSMartin KaFai Lau 6747433d49c3SDaniel Lezcano out: 6748433d49c3SDaniel Lezcano return ret; 6749433d49c3SDaniel Lezcano 6750d189634eSThomas Graf out_register_late_subsys: 675116feebcfSFlorian Westphal rtnl_unregister_all(PF_INET6); 6752d189634eSThomas Graf unregister_pernet_subsys(&ip6_route_net_late_ops); 6753433d49c3SDaniel Lezcano fib6_rules_init: 6754433d49c3SDaniel Lezcano fib6_rules_cleanup(); 6755433d49c3SDaniel Lezcano xfrm6_init: 6756433d49c3SDaniel Lezcano xfrm6_fini(); 67572a0c451aSThomas Graf out_fib6_init: 67582a0c451aSThomas Graf fib6_gc_cleanup(); 67598ed67789SDaniel Lezcano out_register_subsys: 67608ed67789SDaniel Lezcano unregister_pernet_subsys(&ip6_route_net_ops); 67617e52b33bSDavid S. Miller out_register_inetpeer: 67627e52b33bSDavid S. Miller unregister_pernet_subsys(&ipv6_inetpeer_ops); 6763fc66f95cSEric Dumazet out_dst_entries: 6764fc66f95cSEric Dumazet dst_entries_destroy(&ip6_dst_blackhole_ops); 6765433d49c3SDaniel Lezcano out_kmem_cache: 6766f2fc6a54SBenjamin Thery kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep); 6767433d49c3SDaniel Lezcano goto out; 67681da177e4SLinus Torvalds } 67691da177e4SLinus Torvalds 67701da177e4SLinus Torvalds void ip6_route_cleanup(void) 67711da177e4SLinus Torvalds { 6772138d0be3SYonghong Song #if IS_BUILTIN(CONFIG_IPV6) 6773138d0be3SYonghong Song #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) 6774138d0be3SYonghong Song bpf_iter_unregister(); 6775138d0be3SYonghong Song #endif 6776138d0be3SYonghong Song #endif 67778ed67789SDaniel Lezcano unregister_netdevice_notifier(&ip6_route_dev_notifier); 6778d189634eSThomas Graf unregister_pernet_subsys(&ip6_route_net_late_ops); 6779101367c2SThomas Graf fib6_rules_cleanup(); 67801da177e4SLinus Torvalds xfrm6_fini(); 67811da177e4SLinus Torvalds fib6_gc_cleanup(); 6782c3426b47SDavid S. Miller unregister_pernet_subsys(&ipv6_inetpeer_ops); 67838ed67789SDaniel Lezcano unregister_pernet_subsys(&ip6_route_net_ops); 678441bb78b4SXiaotian Feng dst_entries_destroy(&ip6_dst_blackhole_ops); 6785f2fc6a54SBenjamin Thery kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep); 67861da177e4SLinus Torvalds } 6787