12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later 21da177e4SLinus Torvalds /* 31da177e4SLinus Torvalds * Linux INET6 implementation 41da177e4SLinus Torvalds * FIB front-end. 51da177e4SLinus Torvalds * 61da177e4SLinus Torvalds * Authors: 71da177e4SLinus Torvalds * Pedro Roque <roque@di.fc.ul.pt> 81da177e4SLinus Torvalds */ 91da177e4SLinus Torvalds 101da177e4SLinus Torvalds /* Changes: 111da177e4SLinus Torvalds * 121da177e4SLinus Torvalds * YOSHIFUJI Hideaki @USAGI 131da177e4SLinus Torvalds * reworked default router selection. 141da177e4SLinus Torvalds * - respect outgoing interface 151da177e4SLinus Torvalds * - select from (probably) reachable routers (i.e. 161da177e4SLinus Torvalds * routers in REACHABLE, STALE, DELAY or PROBE states). 171da177e4SLinus Torvalds * - always select the same router if it is (probably) 181da177e4SLinus Torvalds * reachable. otherwise, round-robin the list. 19c0bece9fSYOSHIFUJI Hideaki * Ville Nuorvala 20c0bece9fSYOSHIFUJI Hideaki * Fixed routing subtrees. 211da177e4SLinus Torvalds */ 221da177e4SLinus Torvalds 23f3213831SJoe Perches #define pr_fmt(fmt) "IPv6: " fmt 24f3213831SJoe Perches 254fc268d2SRandy Dunlap #include <linux/capability.h> 261da177e4SLinus Torvalds #include <linux/errno.h> 27bc3b2d7fSPaul Gortmaker #include <linux/export.h> 281da177e4SLinus Torvalds #include <linux/types.h> 291da177e4SLinus Torvalds #include <linux/times.h> 301da177e4SLinus Torvalds #include <linux/socket.h> 311da177e4SLinus Torvalds #include <linux/sockios.h> 321da177e4SLinus Torvalds #include <linux/net.h> 331da177e4SLinus Torvalds #include <linux/route.h> 341da177e4SLinus Torvalds #include <linux/netdevice.h> 351da177e4SLinus Torvalds #include <linux/in6.h> 367bc570c8SYOSHIFUJI Hideaki #include <linux/mroute6.h> 371da177e4SLinus Torvalds #include <linux/init.h> 381da177e4SLinus Torvalds #include <linux/if_arp.h> 391da177e4SLinus Torvalds #include <linux/proc_fs.h> 401da177e4SLinus Torvalds #include <linux/seq_file.h> 415b7c931dSDaniel Lezcano #include <linux/nsproxy.h> 425a0e3ad6STejun Heo #include <linux/slab.h> 4335732d01SWei Wang #include <linux/jhash.h> 444785305cSEric Dumazet #include <linux/siphash.h> 45457c4cbcSEric W. Biederman #include <net/net_namespace.h> 461da177e4SLinus Torvalds #include <net/snmp.h> 471da177e4SLinus Torvalds #include <net/ipv6.h> 481da177e4SLinus Torvalds #include <net/ip6_fib.h> 491da177e4SLinus Torvalds #include <net/ip6_route.h> 501da177e4SLinus Torvalds #include <net/ndisc.h> 511da177e4SLinus Torvalds #include <net/addrconf.h> 521da177e4SLinus Torvalds #include <net/tcp.h> 531da177e4SLinus Torvalds #include <linux/rtnetlink.h> 541da177e4SLinus Torvalds #include <net/dst.h> 55904af04dSJiri Benc #include <net/dst_metadata.h> 561da177e4SLinus Torvalds #include <net/xfrm.h> 578d71740cSTom Tucker #include <net/netevent.h> 5821713ebcSThomas Graf #include <net/netlink.h> 593c618c1dSDavid Ahern #include <net/rtnh.h> 6019e42e45SRoopa Prabhu #include <net/lwtunnel.h> 61904af04dSJiri Benc #include <net/ip_tunnels.h> 62ca254490SDavid Ahern #include <net/l3mdev.h> 63eacb9384SRoopa Prabhu #include <net/ip.h> 647c0f6ba6SLinus Torvalds #include <linux/uaccess.h> 65951cf368SYonghong Song #include <linux/btf_ids.h> 661da177e4SLinus Torvalds 671da177e4SLinus Torvalds #ifdef CONFIG_SYSCTL 681da177e4SLinus Torvalds #include <linux/sysctl.h> 691da177e4SLinus Torvalds #endif 701da177e4SLinus Torvalds 7130d444d3SDavid Ahern static int ip6_rt_type_to_error(u8 fib6_type); 7230d444d3SDavid Ahern 7330d444d3SDavid Ahern #define CREATE_TRACE_POINTS 7430d444d3SDavid Ahern #include <trace/events/fib6.h> 7530d444d3SDavid Ahern EXPORT_TRACEPOINT_SYMBOL_GPL(fib6_table_lookup); 7630d444d3SDavid Ahern #undef CREATE_TRACE_POINTS 7730d444d3SDavid Ahern 78afc154e9SHannes Frederic Sowa enum rt6_nud_state { 797e980569SJiri Benc RT6_NUD_FAIL_HARD = -3, 807e980569SJiri Benc RT6_NUD_FAIL_PROBE = -2, 817e980569SJiri Benc RT6_NUD_FAIL_DO_RR = -1, 82afc154e9SHannes Frederic Sowa RT6_NUD_SUCCEED = 1 83afc154e9SHannes Frederic Sowa }; 84afc154e9SHannes Frederic Sowa 85bbd807dfSBrian Vazquez INDIRECT_CALLABLE_SCOPE 86bbd807dfSBrian Vazquez struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie); 870dbaee3bSDavid S. Miller static unsigned int ip6_default_advmss(const struct dst_entry *dst); 88f67fbeaeSBrian Vazquez INDIRECT_CALLABLE_SCOPE 89f67fbeaeSBrian Vazquez unsigned int ip6_mtu(const struct dst_entry *dst); 901da177e4SLinus Torvalds static struct dst_entry *ip6_negative_advice(struct dst_entry *); 911da177e4SLinus Torvalds static void ip6_dst_destroy(struct dst_entry *); 921da177e4SLinus Torvalds static void ip6_dst_ifdown(struct dst_entry *, 931da177e4SLinus Torvalds struct net_device *dev, int how); 94*af6d1034SJon 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 1428d0b94afSMartin KaFai Lau rt->rt6i_uncached_list = ul; 1438d0b94afSMartin KaFai Lau 1448d0b94afSMartin KaFai Lau spin_lock_bh(&ul->lock); 1458d0b94afSMartin KaFai Lau list_add_tail(&rt->rt6i_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 { 1518d0b94afSMartin KaFai Lau if (!list_empty(&rt->rt6i_uncached)) { 1528d0b94afSMartin KaFai Lau struct uncached_list *ul = rt->rt6i_uncached_list; 1538d0b94afSMartin KaFai Lau 1548d0b94afSMartin KaFai Lau spin_lock_bh(&ul->lock); 155ba55ef81SEric Dumazet list_del_init(&rt->rt6i_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); 172ba55ef81SEric Dumazet list_for_each_entry_safe(rt, safe, &ul->head, rt6i_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) 191ba55ef81SEric Dumazet list_move(&rt->rt6i_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 = { 2961da177e4SLinus Torvalds .__refcnt = ATOMIC_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 = { 310101367c2SThomas Graf .__refcnt = ATOMIC_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 = { 322101367c2SThomas Graf .__refcnt = ATOMIC_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 INIT_LIST_HEAD(&rt->rt6i_uncached); 338ebfa45f0SMartin KaFai Lau } 339ebfa45f0SMartin KaFai Lau 3401da177e4SLinus Torvalds /* allocate dst with ip6_dst_ops */ 34193531c67SDavid Ahern struct rt6_info *ip6_dst_alloc(struct net *net, struct net_device *dev, 342ad706862SMartin KaFai Lau int flags) 3431da177e4SLinus Torvalds { 34497bab73fSDavid S. Miller struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev, 345b2a9c0edSWei Wang 1, DST_OBSOLETE_FORCE_CHK, flags); 346cf911662SDavid S. Miller 34781eb8447SWei Wang if (rt) { 348ebfa45f0SMartin KaFai Lau rt6_info_init(rt); 34981eb8447SWei Wang atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc); 35081eb8447SWei Wang } 3518104891bSSteffen Klassert 352cf911662SDavid S. Miller return rt; 3531da177e4SLinus Torvalds } 3549ab179d8SDavid Ahern EXPORT_SYMBOL(ip6_dst_alloc); 355d52d3997SMartin KaFai Lau 3561da177e4SLinus Torvalds static void ip6_dst_destroy(struct dst_entry *dst) 3571da177e4SLinus Torvalds { 3581da177e4SLinus Torvalds struct rt6_info *rt = (struct rt6_info *)dst; 359a68886a6SDavid Ahern struct fib6_info *from; 3608d0b94afSMartin KaFai Lau struct inet6_dev *idev; 3611da177e4SLinus Torvalds 3621620a336SDavid Ahern ip_dst_metrics_put(dst); 3638d0b94afSMartin KaFai Lau rt6_uncached_list_del(rt); 3648d0b94afSMartin KaFai Lau 3658d0b94afSMartin KaFai Lau idev = rt->rt6i_idev; 36638308473SDavid S. Miller if (idev) { 3671da177e4SLinus Torvalds rt->rt6i_idev = NULL; 3681da177e4SLinus Torvalds in6_dev_put(idev); 3691da177e4SLinus Torvalds } 3701716a961SGao feng 3710e233874SEric Dumazet from = xchg((__force struct fib6_info **)&rt->from, NULL); 37293531c67SDavid Ahern fib6_info_release(from); 373b3419363SDavid S. Miller } 374b3419363SDavid S. Miller 3751da177e4SLinus Torvalds static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev, 3761da177e4SLinus Torvalds int how) 3771da177e4SLinus Torvalds { 3781da177e4SLinus Torvalds struct rt6_info *rt = (struct rt6_info *)dst; 3791da177e4SLinus Torvalds struct inet6_dev *idev = rt->rt6i_idev; 3801da177e4SLinus Torvalds 381e5f80fcfSEric Dumazet if (idev && idev->dev != blackhole_netdev) { 382e5f80fcfSEric Dumazet struct inet6_dev *blackhole_idev = in6_dev_get(blackhole_netdev); 383e5f80fcfSEric Dumazet 384e5f80fcfSEric Dumazet if (blackhole_idev) { 385e5f80fcfSEric Dumazet rt->rt6i_idev = blackhole_idev; 3861da177e4SLinus Torvalds in6_dev_put(idev); 3871da177e4SLinus Torvalds } 3881da177e4SLinus Torvalds } 38997cac082SDavid S. Miller } 3901da177e4SLinus Torvalds 3915973fb1eSMartin KaFai Lau static bool __rt6_check_expired(const struct rt6_info *rt) 3925973fb1eSMartin KaFai Lau { 3935973fb1eSMartin KaFai Lau if (rt->rt6i_flags & RTF_EXPIRES) 3945973fb1eSMartin KaFai Lau return time_after(jiffies, rt->dst.expires); 3955973fb1eSMartin KaFai Lau else 3965973fb1eSMartin KaFai Lau return false; 3975973fb1eSMartin KaFai Lau } 3985973fb1eSMartin KaFai Lau 399a50feda5SEric Dumazet static bool rt6_check_expired(const struct rt6_info *rt) 4001da177e4SLinus Torvalds { 401a68886a6SDavid Ahern struct fib6_info *from; 402a68886a6SDavid Ahern 403a68886a6SDavid Ahern from = rcu_dereference(rt->from); 404a68886a6SDavid Ahern 4051716a961SGao feng if (rt->rt6i_flags & RTF_EXPIRES) { 4061716a961SGao feng if (time_after(jiffies, rt->dst.expires)) 407a50feda5SEric Dumazet return true; 408a68886a6SDavid Ahern } else if (from) { 4091e2ea8adSXin Long return rt->dst.obsolete != DST_OBSOLETE_FORCE_CHK || 410a68886a6SDavid Ahern fib6_check_expired(from); 4111716a961SGao feng } 412a50feda5SEric Dumazet return false; 4131da177e4SLinus Torvalds } 4141da177e4SLinus Torvalds 415b1d40991SDavid Ahern void fib6_select_path(const struct net *net, struct fib6_result *res, 416b1d40991SDavid Ahern struct flowi6 *fl6, int oif, bool have_oif_match, 417b1d40991SDavid Ahern const struct sk_buff *skb, int strict) 41851ebd318SNicolas Dichtel { 4198d1c802bSDavid Ahern struct fib6_info *sibling, *next_sibling; 420b1d40991SDavid Ahern struct fib6_info *match = res->f6i; 421b1d40991SDavid Ahern 42234fe5a1cSDavid Ahern if (!match->nh && (!match->fib6_nsiblings || have_oif_match)) 423b1d40991SDavid Ahern goto out; 42451ebd318SNicolas Dichtel 42534fe5a1cSDavid Ahern if (match->nh && have_oif_match && res->nh) 42634fe5a1cSDavid Ahern return; 42734fe5a1cSDavid Ahern 428b673d6ccSJakub Sitnicki /* We might have already computed the hash for ICMPv6 errors. In such 429b673d6ccSJakub Sitnicki * case it will always be non-zero. Otherwise now is the time to do it. 430b673d6ccSJakub Sitnicki */ 431f88d8ea6SDavid Ahern if (!fl6->mp_hash && 432f88d8ea6SDavid Ahern (!match->nh || nexthop_is_multipath(match->nh))) 433b4bac172SDavid Ahern fl6->mp_hash = rt6_multipath_hash(net, fl6, skb, NULL); 434b673d6ccSJakub Sitnicki 435f88d8ea6SDavid Ahern if (unlikely(match->nh)) { 436f88d8ea6SDavid Ahern nexthop_path_fib6_result(res, fl6->mp_hash); 437f88d8ea6SDavid Ahern return; 438f88d8ea6SDavid Ahern } 439f88d8ea6SDavid Ahern 4401cf844c7SDavid Ahern if (fl6->mp_hash <= atomic_read(&match->fib6_nh->fib_nh_upper_bound)) 441b1d40991SDavid Ahern goto out; 442bbfcd776SIdo Schimmel 44393c2fb25SDavid Ahern list_for_each_entry_safe(sibling, next_sibling, &match->fib6_siblings, 44493c2fb25SDavid Ahern fib6_siblings) { 4451cf844c7SDavid Ahern const struct fib6_nh *nh = sibling->fib6_nh; 4465e670d84SDavid Ahern int nh_upper_bound; 4475e670d84SDavid Ahern 448702cea56SDavid Ahern nh_upper_bound = atomic_read(&nh->fib_nh_upper_bound); 4495e670d84SDavid Ahern if (fl6->mp_hash > nh_upper_bound) 4503d709f69SIdo Schimmel continue; 451702cea56SDavid Ahern if (rt6_score_route(nh, sibling->fib6_flags, oif, strict) < 0) 45252bd4c0cSNicolas Dichtel break; 45351ebd318SNicolas Dichtel match = sibling; 45451ebd318SNicolas Dichtel break; 45551ebd318SNicolas Dichtel } 4563d709f69SIdo Schimmel 457b1d40991SDavid Ahern out: 458b1d40991SDavid Ahern res->f6i = match; 4591cf844c7SDavid Ahern res->nh = match->fib6_nh; 46051ebd318SNicolas Dichtel } 46151ebd318SNicolas Dichtel 4621da177e4SLinus Torvalds /* 46366f5d6ceSWei Wang * Route lookup. rcu_read_lock() should be held. 4641da177e4SLinus Torvalds */ 4651da177e4SLinus Torvalds 4660c59d006SDavid Ahern static bool __rt6_device_match(struct net *net, const struct fib6_nh *nh, 4670c59d006SDavid Ahern const struct in6_addr *saddr, int oif, int flags) 4680c59d006SDavid Ahern { 4690c59d006SDavid Ahern const struct net_device *dev; 4700c59d006SDavid Ahern 4710c59d006SDavid Ahern if (nh->fib_nh_flags & RTNH_F_DEAD) 4720c59d006SDavid Ahern return false; 4730c59d006SDavid Ahern 4740c59d006SDavid Ahern dev = nh->fib_nh_dev; 4750c59d006SDavid Ahern if (oif) { 4760c59d006SDavid Ahern if (dev->ifindex == oif) 4770c59d006SDavid Ahern return true; 4780c59d006SDavid Ahern } else { 4790c59d006SDavid Ahern if (ipv6_chk_addr(net, saddr, dev, 4800c59d006SDavid Ahern flags & RT6_LOOKUP_F_IFACE)) 4810c59d006SDavid Ahern return true; 4820c59d006SDavid Ahern } 4830c59d006SDavid Ahern 4840c59d006SDavid Ahern return false; 4850c59d006SDavid Ahern } 4860c59d006SDavid Ahern 487962b6803SDavid Ahern struct fib6_nh_dm_arg { 488962b6803SDavid Ahern struct net *net; 489962b6803SDavid Ahern const struct in6_addr *saddr; 490962b6803SDavid Ahern int oif; 491962b6803SDavid Ahern int flags; 492962b6803SDavid Ahern struct fib6_nh *nh; 493962b6803SDavid Ahern }; 494962b6803SDavid Ahern 495962b6803SDavid Ahern static int __rt6_nh_dev_match(struct fib6_nh *nh, void *_arg) 496962b6803SDavid Ahern { 497962b6803SDavid Ahern struct fib6_nh_dm_arg *arg = _arg; 498962b6803SDavid Ahern 499962b6803SDavid Ahern arg->nh = nh; 500962b6803SDavid Ahern return __rt6_device_match(arg->net, nh, arg->saddr, arg->oif, 501962b6803SDavid Ahern arg->flags); 502962b6803SDavid Ahern } 503962b6803SDavid Ahern 504962b6803SDavid Ahern /* returns fib6_nh from nexthop or NULL */ 505962b6803SDavid Ahern static struct fib6_nh *rt6_nh_dev_match(struct net *net, struct nexthop *nh, 506962b6803SDavid Ahern struct fib6_result *res, 507962b6803SDavid Ahern const struct in6_addr *saddr, 508962b6803SDavid Ahern int oif, int flags) 509962b6803SDavid Ahern { 510962b6803SDavid Ahern struct fib6_nh_dm_arg arg = { 511962b6803SDavid Ahern .net = net, 512962b6803SDavid Ahern .saddr = saddr, 513962b6803SDavid Ahern .oif = oif, 514962b6803SDavid Ahern .flags = flags, 515962b6803SDavid Ahern }; 516962b6803SDavid Ahern 517962b6803SDavid Ahern if (nexthop_is_blackhole(nh)) 518962b6803SDavid Ahern return NULL; 519962b6803SDavid Ahern 520962b6803SDavid Ahern if (nexthop_for_each_fib6_nh(nh, __rt6_nh_dev_match, &arg)) 521962b6803SDavid Ahern return arg.nh; 522962b6803SDavid Ahern 523962b6803SDavid Ahern return NULL; 524962b6803SDavid Ahern } 525962b6803SDavid Ahern 52675ef7389SDavid Ahern static void rt6_device_match(struct net *net, struct fib6_result *res, 52775ef7389SDavid Ahern const struct in6_addr *saddr, int oif, int flags) 5281da177e4SLinus Torvalds { 52975ef7389SDavid Ahern struct fib6_info *f6i = res->f6i; 53075ef7389SDavid Ahern struct fib6_info *spf6i; 53175ef7389SDavid Ahern struct fib6_nh *nh; 5321da177e4SLinus Torvalds 53375ef7389SDavid Ahern if (!oif && ipv6_addr_any(saddr)) { 534f88d8ea6SDavid Ahern if (unlikely(f6i->nh)) { 535f88d8ea6SDavid Ahern nh = nexthop_fib6_nh(f6i->nh); 536f88d8ea6SDavid Ahern if (nexthop_is_blackhole(f6i->nh)) 537f88d8ea6SDavid Ahern goto out_blackhole; 538f88d8ea6SDavid Ahern } else { 5391cf844c7SDavid Ahern nh = f6i->fib6_nh; 540f88d8ea6SDavid Ahern } 5417d21fec9SDavid Ahern if (!(nh->fib_nh_flags & RTNH_F_DEAD)) 5427d21fec9SDavid Ahern goto out; 5431da177e4SLinus Torvalds } 5441da177e4SLinus Torvalds 54575ef7389SDavid Ahern for (spf6i = f6i; spf6i; spf6i = rcu_dereference(spf6i->fib6_next)) { 546962b6803SDavid Ahern bool matched = false; 547962b6803SDavid Ahern 548962b6803SDavid Ahern if (unlikely(spf6i->nh)) { 549962b6803SDavid Ahern nh = rt6_nh_dev_match(net, spf6i->nh, res, saddr, 550962b6803SDavid Ahern oif, flags); 551962b6803SDavid Ahern if (nh) 552962b6803SDavid Ahern matched = true; 553962b6803SDavid Ahern } else { 5541cf844c7SDavid Ahern nh = spf6i->fib6_nh; 555962b6803SDavid Ahern if (__rt6_device_match(net, nh, saddr, oif, flags)) 556962b6803SDavid Ahern matched = true; 557962b6803SDavid Ahern } 558962b6803SDavid Ahern if (matched) { 55975ef7389SDavid Ahern res->f6i = spf6i; 5607d21fec9SDavid Ahern goto out; 56175ef7389SDavid Ahern } 56275ef7389SDavid Ahern } 5631da177e4SLinus Torvalds 56475ef7389SDavid Ahern if (oif && flags & RT6_LOOKUP_F_IFACE) { 56575ef7389SDavid Ahern res->f6i = net->ipv6.fib6_null_entry; 5661cf844c7SDavid Ahern nh = res->f6i->fib6_nh; 5677d21fec9SDavid Ahern goto out; 56875ef7389SDavid Ahern } 56975ef7389SDavid Ahern 570f88d8ea6SDavid Ahern if (unlikely(f6i->nh)) { 571f88d8ea6SDavid Ahern nh = nexthop_fib6_nh(f6i->nh); 572f88d8ea6SDavid Ahern if (nexthop_is_blackhole(f6i->nh)) 573f88d8ea6SDavid Ahern goto out_blackhole; 574f88d8ea6SDavid Ahern } else { 5751cf844c7SDavid Ahern nh = f6i->fib6_nh; 576f88d8ea6SDavid Ahern } 577f88d8ea6SDavid Ahern 5787d21fec9SDavid Ahern if (nh->fib_nh_flags & RTNH_F_DEAD) { 57975ef7389SDavid Ahern res->f6i = net->ipv6.fib6_null_entry; 5801cf844c7SDavid Ahern nh = res->f6i->fib6_nh; 58175ef7389SDavid Ahern } 5827d21fec9SDavid Ahern out: 5837d21fec9SDavid Ahern res->nh = nh; 5847d21fec9SDavid Ahern res->fib6_type = res->f6i->fib6_type; 5857d21fec9SDavid Ahern res->fib6_flags = res->f6i->fib6_flags; 586f88d8ea6SDavid Ahern return; 587f88d8ea6SDavid Ahern 588f88d8ea6SDavid Ahern out_blackhole: 589f88d8ea6SDavid Ahern res->fib6_flags |= RTF_REJECT; 590f88d8ea6SDavid Ahern res->fib6_type = RTN_BLACKHOLE; 591f88d8ea6SDavid Ahern res->nh = nh; 5921da177e4SLinus Torvalds } 5931da177e4SLinus Torvalds 59427097255SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF 595c2f17e82SHannes Frederic Sowa struct __rt6_probe_work { 596c2f17e82SHannes Frederic Sowa struct work_struct work; 597c2f17e82SHannes Frederic Sowa struct in6_addr target; 598c2f17e82SHannes Frederic Sowa struct net_device *dev; 599fb67510bSEric Dumazet netdevice_tracker dev_tracker; 600c2f17e82SHannes Frederic Sowa }; 601c2f17e82SHannes Frederic Sowa 602c2f17e82SHannes Frederic Sowa static void rt6_probe_deferred(struct work_struct *w) 603c2f17e82SHannes Frederic Sowa { 604c2f17e82SHannes Frederic Sowa struct in6_addr mcaddr; 605c2f17e82SHannes Frederic Sowa struct __rt6_probe_work *work = 606c2f17e82SHannes Frederic Sowa container_of(w, struct __rt6_probe_work, work); 607c2f17e82SHannes Frederic Sowa 608c2f17e82SHannes Frederic Sowa addrconf_addr_solict_mult(&work->target, &mcaddr); 609adc176c5SErik Nordmark ndisc_send_ns(work->dev, &work->target, &mcaddr, NULL, 0); 610d62607c3SJakub Kicinski netdev_put(work->dev, &work->dev_tracker); 611662f5533SMichael Büsch kfree(work); 612c2f17e82SHannes Frederic Sowa } 613c2f17e82SHannes Frederic Sowa 614cc3a86c8SDavid Ahern static void rt6_probe(struct fib6_nh *fib6_nh) 61527097255SYOSHIFUJI Hideaki { 616f547fac6SSabrina Dubroca struct __rt6_probe_work *work = NULL; 6175e670d84SDavid Ahern const struct in6_addr *nh_gw; 6181bef4c22SEric Dumazet unsigned long last_probe; 619f2c31e32SEric Dumazet struct neighbour *neigh; 6205e670d84SDavid Ahern struct net_device *dev; 621f547fac6SSabrina Dubroca struct inet6_dev *idev; 6225e670d84SDavid Ahern 62327097255SYOSHIFUJI Hideaki /* 62427097255SYOSHIFUJI Hideaki * Okay, this does not seem to be appropriate 62527097255SYOSHIFUJI Hideaki * for now, however, we need to check if it 62627097255SYOSHIFUJI Hideaki * is really so; aka Router Reachability Probing. 62727097255SYOSHIFUJI Hideaki * 62827097255SYOSHIFUJI Hideaki * Router Reachability Probe MUST be rate-limited 62927097255SYOSHIFUJI Hideaki * to no more than one per minute. 63027097255SYOSHIFUJI Hideaki */ 631004b3942SHangbin Liu if (!fib6_nh->fib_nh_gw_family) 632fdd6681dSAmerigo Wang return; 6335e670d84SDavid Ahern 634cc3a86c8SDavid Ahern nh_gw = &fib6_nh->fib_nh_gw6; 635cc3a86c8SDavid Ahern dev = fib6_nh->fib_nh_dev; 6362152caeaSYOSHIFUJI Hideaki / 吉藤英明 rcu_read_lock_bh(); 6371bef4c22SEric Dumazet last_probe = READ_ONCE(fib6_nh->last_probe); 638f547fac6SSabrina Dubroca idev = __in6_dev_get(dev); 6395e670d84SDavid Ahern neigh = __ipv6_neigh_lookup_noref(dev, nh_gw); 6402152caeaSYOSHIFUJI Hideaki / 吉藤英明 if (neigh) { 6418d6c31bfSMartin KaFai Lau if (neigh->nud_state & NUD_VALID) 6428d6c31bfSMartin KaFai Lau goto out; 6438d6c31bfSMartin KaFai Lau 6442152caeaSYOSHIFUJI Hideaki / 吉藤英明 write_lock(&neigh->lock); 645990edb42SMartin KaFai Lau if (!(neigh->nud_state & NUD_VALID) && 646990edb42SMartin KaFai Lau time_after(jiffies, 647dcd1f572SDavid Ahern neigh->updated + idev->cnf.rtr_probe_interval)) { 648c2f17e82SHannes Frederic Sowa work = kmalloc(sizeof(*work), GFP_ATOMIC); 649990edb42SMartin KaFai Lau if (work) 6507e980569SJiri Benc __neigh_set_probe_once(neigh); 651990edb42SMartin KaFai Lau } 652c2f17e82SHannes Frederic Sowa write_unlock(&neigh->lock); 6531bef4c22SEric Dumazet } else if (time_after(jiffies, last_probe + 654f547fac6SSabrina Dubroca idev->cnf.rtr_probe_interval)) { 655990edb42SMartin KaFai Lau work = kmalloc(sizeof(*work), GFP_ATOMIC); 656990edb42SMartin KaFai Lau } 657c2f17e82SHannes Frederic Sowa 6581bef4c22SEric Dumazet if (!work || cmpxchg(&fib6_nh->last_probe, 6591bef4c22SEric Dumazet last_probe, jiffies) != last_probe) { 6601bef4c22SEric Dumazet kfree(work); 6611bef4c22SEric Dumazet } else { 662c2f17e82SHannes Frederic Sowa INIT_WORK(&work->work, rt6_probe_deferred); 6635e670d84SDavid Ahern work->target = *nh_gw; 664d62607c3SJakub Kicinski netdev_hold(dev, &work->dev_tracker, GFP_ATOMIC); 6655e670d84SDavid Ahern work->dev = dev; 666c2f17e82SHannes Frederic Sowa schedule_work(&work->work); 667c2f17e82SHannes Frederic Sowa } 668990edb42SMartin KaFai Lau 6698d6c31bfSMartin KaFai Lau out: 6702152caeaSYOSHIFUJI Hideaki / 吉藤英明 rcu_read_unlock_bh(); 671f2c31e32SEric Dumazet } 67227097255SYOSHIFUJI Hideaki #else 673cc3a86c8SDavid Ahern static inline void rt6_probe(struct fib6_nh *fib6_nh) 67427097255SYOSHIFUJI Hideaki { 67527097255SYOSHIFUJI Hideaki } 67627097255SYOSHIFUJI Hideaki #endif 67727097255SYOSHIFUJI Hideaki 6781da177e4SLinus Torvalds /* 679554cfb7eSYOSHIFUJI Hideaki * Default Router Selection (RFC 2461 6.3.6) 6801da177e4SLinus Torvalds */ 6811ba9a895SDavid Ahern static enum rt6_nud_state rt6_check_neigh(const struct fib6_nh *fib6_nh) 6821da177e4SLinus Torvalds { 683afc154e9SHannes Frederic Sowa enum rt6_nud_state ret = RT6_NUD_FAIL_HARD; 6845e670d84SDavid Ahern struct neighbour *neigh; 685f2c31e32SEric Dumazet 686145a3621SYOSHIFUJI Hideaki / 吉藤英明 rcu_read_lock_bh(); 6871ba9a895SDavid Ahern neigh = __ipv6_neigh_lookup_noref(fib6_nh->fib_nh_dev, 6881ba9a895SDavid Ahern &fib6_nh->fib_nh_gw6); 689145a3621SYOSHIFUJI Hideaki / 吉藤英明 if (neigh) { 690145a3621SYOSHIFUJI Hideaki / 吉藤英明 read_lock(&neigh->lock); 691554cfb7eSYOSHIFUJI Hideaki if (neigh->nud_state & NUD_VALID) 692afc154e9SHannes Frederic Sowa ret = RT6_NUD_SUCCEED; 693398bcbebSYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF 694a5a81f0bSPaul Marks else if (!(neigh->nud_state & NUD_FAILED)) 695afc154e9SHannes Frederic Sowa ret = RT6_NUD_SUCCEED; 6967e980569SJiri Benc else 6977e980569SJiri Benc ret = RT6_NUD_FAIL_PROBE; 698398bcbebSYOSHIFUJI Hideaki #endif 699145a3621SYOSHIFUJI Hideaki / 吉藤英明 read_unlock(&neigh->lock); 700afc154e9SHannes Frederic Sowa } else { 701afc154e9SHannes Frederic Sowa ret = IS_ENABLED(CONFIG_IPV6_ROUTER_PREF) ? 7027e980569SJiri Benc RT6_NUD_SUCCEED : RT6_NUD_FAIL_DO_RR; 703a5a81f0bSPaul Marks } 704145a3621SYOSHIFUJI Hideaki / 吉藤英明 rcu_read_unlock_bh(); 705145a3621SYOSHIFUJI Hideaki / 吉藤英明 706a5a81f0bSPaul Marks return ret; 7071da177e4SLinus Torvalds } 7081da177e4SLinus Torvalds 709702cea56SDavid Ahern static int rt6_score_route(const struct fib6_nh *nh, u32 fib6_flags, int oif, 710702cea56SDavid Ahern int strict) 711554cfb7eSYOSHIFUJI Hideaki { 7126e1809a5SDavid Ahern int m = 0; 7134d0c5911SYOSHIFUJI Hideaki 7146e1809a5SDavid Ahern if (!oif || nh->fib_nh_dev->ifindex == oif) 7156e1809a5SDavid Ahern m = 2; 7166e1809a5SDavid Ahern 71777d16f45SYOSHIFUJI Hideaki if (!m && (strict & RT6_LOOKUP_F_IFACE)) 718afc154e9SHannes Frederic Sowa return RT6_NUD_FAIL_HARD; 719ebacaaa0SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF 720702cea56SDavid Ahern m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(fib6_flags)) << 2; 721ebacaaa0SYOSHIFUJI Hideaki #endif 7221ba9a895SDavid Ahern if ((strict & RT6_LOOKUP_F_REACHABLE) && 723702cea56SDavid Ahern !(fib6_flags & RTF_NONEXTHOP) && nh->fib_nh_gw_family) { 7241ba9a895SDavid Ahern int n = rt6_check_neigh(nh); 725afc154e9SHannes Frederic Sowa if (n < 0) 726afc154e9SHannes Frederic Sowa return n; 727afc154e9SHannes Frederic Sowa } 728554cfb7eSYOSHIFUJI Hideaki return m; 729554cfb7eSYOSHIFUJI Hideaki } 730554cfb7eSYOSHIFUJI Hideaki 73128679ed1SDavid Ahern static bool find_match(struct fib6_nh *nh, u32 fib6_flags, 73228679ed1SDavid Ahern int oif, int strict, int *mpri, bool *do_rr) 733554cfb7eSYOSHIFUJI Hideaki { 734afc154e9SHannes Frederic Sowa bool match_do_rr = false; 73528679ed1SDavid Ahern bool rc = false; 73628679ed1SDavid Ahern int m; 73735103d11SAndy Gospodarek 73828679ed1SDavid Ahern if (nh->fib_nh_flags & RTNH_F_DEAD) 7398067bb8cSIdo Schimmel goto out; 7408067bb8cSIdo Schimmel 74128679ed1SDavid Ahern if (ip6_ignore_linkdown(nh->fib_nh_dev) && 74228679ed1SDavid Ahern nh->fib_nh_flags & RTNH_F_LINKDOWN && 743d5d32e4bSDavid Ahern !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE)) 74435103d11SAndy Gospodarek goto out; 745554cfb7eSYOSHIFUJI Hideaki 74628679ed1SDavid Ahern m = rt6_score_route(nh, fib6_flags, oif, strict); 7477e980569SJiri Benc if (m == RT6_NUD_FAIL_DO_RR) { 748afc154e9SHannes Frederic Sowa match_do_rr = true; 749afc154e9SHannes Frederic Sowa m = 0; /* lowest valid score */ 7507e980569SJiri Benc } else if (m == RT6_NUD_FAIL_HARD) { 751f11e6659SDavid S. Miller goto out; 7521da177e4SLinus Torvalds } 753f11e6659SDavid S. Miller 754afc154e9SHannes Frederic Sowa if (strict & RT6_LOOKUP_F_REACHABLE) 75528679ed1SDavid Ahern rt6_probe(nh); 756afc154e9SHannes Frederic Sowa 7577e980569SJiri Benc /* note that m can be RT6_NUD_FAIL_PROBE at this point */ 758afc154e9SHannes Frederic Sowa if (m > *mpri) { 759afc154e9SHannes Frederic Sowa *do_rr = match_do_rr; 760afc154e9SHannes Frederic Sowa *mpri = m; 76128679ed1SDavid Ahern rc = true; 762afc154e9SHannes Frederic Sowa } 763f11e6659SDavid S. Miller out: 76428679ed1SDavid Ahern return rc; 7651da177e4SLinus Torvalds } 7661da177e4SLinus Torvalds 76717a5984eSDavid Ahern struct fib6_nh_frl_arg { 76817a5984eSDavid Ahern u32 flags; 76917a5984eSDavid Ahern int oif; 77017a5984eSDavid Ahern int strict; 77117a5984eSDavid Ahern int *mpri; 77217a5984eSDavid Ahern bool *do_rr; 77317a5984eSDavid Ahern struct fib6_nh *nh; 77417a5984eSDavid Ahern }; 77517a5984eSDavid Ahern 77617a5984eSDavid Ahern static int rt6_nh_find_match(struct fib6_nh *nh, void *_arg) 77717a5984eSDavid Ahern { 77817a5984eSDavid Ahern struct fib6_nh_frl_arg *arg = _arg; 77917a5984eSDavid Ahern 78017a5984eSDavid Ahern arg->nh = nh; 78117a5984eSDavid Ahern return find_match(nh, arg->flags, arg->oif, arg->strict, 78217a5984eSDavid Ahern arg->mpri, arg->do_rr); 78317a5984eSDavid Ahern } 78417a5984eSDavid Ahern 785b7bc4b6aSDavid Ahern static void __find_rr_leaf(struct fib6_info *f6i_start, 78630c15f03SDavid Ahern struct fib6_info *nomatch, u32 metric, 787b7bc4b6aSDavid Ahern struct fib6_result *res, struct fib6_info **cont, 78830c15f03SDavid Ahern int oif, int strict, bool *do_rr, int *mpri) 78930c15f03SDavid Ahern { 790b7bc4b6aSDavid Ahern struct fib6_info *f6i; 79130c15f03SDavid Ahern 792b7bc4b6aSDavid Ahern for (f6i = f6i_start; 793b7bc4b6aSDavid Ahern f6i && f6i != nomatch; 794b7bc4b6aSDavid Ahern f6i = rcu_dereference(f6i->fib6_next)) { 79517a5984eSDavid Ahern bool matched = false; 79630c15f03SDavid Ahern struct fib6_nh *nh; 79730c15f03SDavid Ahern 798b7bc4b6aSDavid Ahern if (cont && f6i->fib6_metric != metric) { 799b7bc4b6aSDavid Ahern *cont = f6i; 80030c15f03SDavid Ahern return; 80130c15f03SDavid Ahern } 80230c15f03SDavid Ahern 803b7bc4b6aSDavid Ahern if (fib6_check_expired(f6i)) 80430c15f03SDavid Ahern continue; 80530c15f03SDavid Ahern 80617a5984eSDavid Ahern if (unlikely(f6i->nh)) { 80717a5984eSDavid Ahern struct fib6_nh_frl_arg arg = { 80817a5984eSDavid Ahern .flags = f6i->fib6_flags, 80917a5984eSDavid Ahern .oif = oif, 81017a5984eSDavid Ahern .strict = strict, 81117a5984eSDavid Ahern .mpri = mpri, 81217a5984eSDavid Ahern .do_rr = do_rr 81317a5984eSDavid Ahern }; 81417a5984eSDavid Ahern 81517a5984eSDavid Ahern if (nexthop_is_blackhole(f6i->nh)) { 81617a5984eSDavid Ahern res->fib6_flags = RTF_REJECT; 81717a5984eSDavid Ahern res->fib6_type = RTN_BLACKHOLE; 81817a5984eSDavid Ahern res->f6i = f6i; 81917a5984eSDavid Ahern res->nh = nexthop_fib6_nh(f6i->nh); 82017a5984eSDavid Ahern return; 82117a5984eSDavid Ahern } 82217a5984eSDavid Ahern if (nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_find_match, 82317a5984eSDavid Ahern &arg)) { 82417a5984eSDavid Ahern matched = true; 82517a5984eSDavid Ahern nh = arg.nh; 82617a5984eSDavid Ahern } 82717a5984eSDavid Ahern } else { 8281cf844c7SDavid Ahern nh = f6i->fib6_nh; 82917a5984eSDavid Ahern if (find_match(nh, f6i->fib6_flags, oif, strict, 83017a5984eSDavid Ahern mpri, do_rr)) 83117a5984eSDavid Ahern matched = true; 83217a5984eSDavid Ahern } 83317a5984eSDavid Ahern if (matched) { 834b7bc4b6aSDavid Ahern res->f6i = f6i; 835b7bc4b6aSDavid Ahern res->nh = nh; 8367d21fec9SDavid Ahern res->fib6_flags = f6i->fib6_flags; 8377d21fec9SDavid Ahern res->fib6_type = f6i->fib6_type; 838b7bc4b6aSDavid Ahern } 83930c15f03SDavid Ahern } 84030c15f03SDavid Ahern } 84130c15f03SDavid Ahern 842b7bc4b6aSDavid Ahern static void find_rr_leaf(struct fib6_node *fn, struct fib6_info *leaf, 843b7bc4b6aSDavid Ahern struct fib6_info *rr_head, int oif, int strict, 844b7bc4b6aSDavid Ahern bool *do_rr, struct fib6_result *res) 845f11e6659SDavid S. Miller { 846b7bc4b6aSDavid Ahern u32 metric = rr_head->fib6_metric; 847b7bc4b6aSDavid Ahern struct fib6_info *cont = NULL; 848f11e6659SDavid S. Miller int mpri = -1; 849f11e6659SDavid S. Miller 850b7bc4b6aSDavid Ahern __find_rr_leaf(rr_head, NULL, metric, res, &cont, 85130c15f03SDavid Ahern oif, strict, do_rr, &mpri); 8529fbdcfafSSteffen Klassert 853b7bc4b6aSDavid Ahern __find_rr_leaf(leaf, rr_head, metric, res, &cont, 85430c15f03SDavid Ahern oif, strict, do_rr, &mpri); 8559fbdcfafSSteffen Klassert 856b7bc4b6aSDavid Ahern if (res->f6i || !cont) 857b7bc4b6aSDavid Ahern return; 8589fbdcfafSSteffen Klassert 859b7bc4b6aSDavid Ahern __find_rr_leaf(cont, NULL, metric, res, NULL, 86030c15f03SDavid Ahern oif, strict, do_rr, &mpri); 861f11e6659SDavid S. Miller } 862f11e6659SDavid S. Miller 863b7bc4b6aSDavid Ahern static void rt6_select(struct net *net, struct fib6_node *fn, int oif, 864b7bc4b6aSDavid Ahern struct fib6_result *res, int strict) 865f11e6659SDavid S. Miller { 8668d1c802bSDavid Ahern struct fib6_info *leaf = rcu_dereference(fn->leaf); 867b7bc4b6aSDavid Ahern struct fib6_info *rt0; 868afc154e9SHannes Frederic Sowa bool do_rr = false; 86917ecf590SWei Wang int key_plen; 870f11e6659SDavid S. Miller 871b7bc4b6aSDavid Ahern /* make sure this function or its helpers sets f6i */ 872b7bc4b6aSDavid Ahern res->f6i = NULL; 873b7bc4b6aSDavid Ahern 874421842edSDavid Ahern if (!leaf || leaf == net->ipv6.fib6_null_entry) 875b7bc4b6aSDavid Ahern goto out; 8768d1040e8SWei Wang 87766f5d6ceSWei Wang rt0 = rcu_dereference(fn->rr_ptr); 878f11e6659SDavid S. Miller if (!rt0) 87966f5d6ceSWei Wang rt0 = leaf; 880f11e6659SDavid S. Miller 88117ecf590SWei Wang /* Double check to make sure fn is not an intermediate node 88217ecf590SWei Wang * and fn->leaf does not points to its child's leaf 88317ecf590SWei Wang * (This might happen if all routes under fn are deleted from 88417ecf590SWei Wang * the tree and fib6_repair_tree() is called on the node.) 88517ecf590SWei Wang */ 88693c2fb25SDavid Ahern key_plen = rt0->fib6_dst.plen; 88717ecf590SWei Wang #ifdef CONFIG_IPV6_SUBTREES 88893c2fb25SDavid Ahern if (rt0->fib6_src.plen) 88993c2fb25SDavid Ahern key_plen = rt0->fib6_src.plen; 89017ecf590SWei Wang #endif 89117ecf590SWei Wang if (fn->fn_bit != key_plen) 892b7bc4b6aSDavid Ahern goto out; 89317ecf590SWei Wang 894b7bc4b6aSDavid Ahern find_rr_leaf(fn, leaf, rt0, oif, strict, &do_rr, res); 895afc154e9SHannes Frederic Sowa if (do_rr) { 8968fb11a9aSDavid Ahern struct fib6_info *next = rcu_dereference(rt0->fib6_next); 897f11e6659SDavid S. Miller 898554cfb7eSYOSHIFUJI Hideaki /* no entries matched; do round-robin */ 89993c2fb25SDavid Ahern if (!next || next->fib6_metric != rt0->fib6_metric) 9008d1040e8SWei Wang next = leaf; 901f11e6659SDavid S. Miller 90266f5d6ceSWei Wang if (next != rt0) { 90393c2fb25SDavid Ahern spin_lock_bh(&leaf->fib6_table->tb6_lock); 90466f5d6ceSWei Wang /* make sure next is not being deleted from the tree */ 90593c2fb25SDavid Ahern if (next->fib6_node) 90666f5d6ceSWei Wang rcu_assign_pointer(fn->rr_ptr, next); 90793c2fb25SDavid Ahern spin_unlock_bh(&leaf->fib6_table->tb6_lock); 90866f5d6ceSWei Wang } 909554cfb7eSYOSHIFUJI Hideaki } 910554cfb7eSYOSHIFUJI Hideaki 911b7bc4b6aSDavid Ahern out: 912b7bc4b6aSDavid Ahern if (!res->f6i) { 913b7bc4b6aSDavid Ahern res->f6i = net->ipv6.fib6_null_entry; 9141cf844c7SDavid Ahern res->nh = res->f6i->fib6_nh; 9157d21fec9SDavid Ahern res->fib6_flags = res->f6i->fib6_flags; 9167d21fec9SDavid Ahern res->fib6_type = res->f6i->fib6_type; 917b7bc4b6aSDavid Ahern } 9181da177e4SLinus Torvalds } 9191da177e4SLinus Torvalds 92085bd05deSDavid Ahern static bool rt6_is_gw_or_nonexthop(const struct fib6_result *res) 9218b9df265SMartin KaFai Lau { 92285bd05deSDavid Ahern return (res->f6i->fib6_flags & RTF_NONEXTHOP) || 92385bd05deSDavid Ahern res->nh->fib_nh_gw_family; 9248b9df265SMartin KaFai Lau } 9258b9df265SMartin KaFai Lau 92670ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO 92770ceb4f5SYOSHIFUJI Hideaki int rt6_route_rcv(struct net_device *dev, u8 *opt, int len, 928b71d1d42SEric Dumazet const struct in6_addr *gwaddr) 92970ceb4f5SYOSHIFUJI Hideaki { 930c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(dev); 93170ceb4f5SYOSHIFUJI Hideaki struct route_info *rinfo = (struct route_info *) opt; 93270ceb4f5SYOSHIFUJI Hideaki struct in6_addr prefix_buf, *prefix; 93370ceb4f5SYOSHIFUJI Hideaki unsigned int pref; 9344bed72e4SYOSHIFUJI Hideaki unsigned long lifetime; 9358d1c802bSDavid Ahern struct fib6_info *rt; 93670ceb4f5SYOSHIFUJI Hideaki 93770ceb4f5SYOSHIFUJI Hideaki if (len < sizeof(struct route_info)) { 93870ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 93970ceb4f5SYOSHIFUJI Hideaki } 94070ceb4f5SYOSHIFUJI Hideaki 94170ceb4f5SYOSHIFUJI Hideaki /* Sanity check for prefix_len and length */ 94270ceb4f5SYOSHIFUJI Hideaki if (rinfo->length > 3) { 94370ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 94470ceb4f5SYOSHIFUJI Hideaki } else if (rinfo->prefix_len > 128) { 94570ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 94670ceb4f5SYOSHIFUJI Hideaki } else if (rinfo->prefix_len > 64) { 94770ceb4f5SYOSHIFUJI Hideaki if (rinfo->length < 2) { 94870ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 94970ceb4f5SYOSHIFUJI Hideaki } 95070ceb4f5SYOSHIFUJI Hideaki } else if (rinfo->prefix_len > 0) { 95170ceb4f5SYOSHIFUJI Hideaki if (rinfo->length < 1) { 95270ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 95370ceb4f5SYOSHIFUJI Hideaki } 95470ceb4f5SYOSHIFUJI Hideaki } 95570ceb4f5SYOSHIFUJI Hideaki 95670ceb4f5SYOSHIFUJI Hideaki pref = rinfo->route_pref; 95770ceb4f5SYOSHIFUJI Hideaki if (pref == ICMPV6_ROUTER_PREF_INVALID) 9583933fc95SJens Rosenboom return -EINVAL; 95970ceb4f5SYOSHIFUJI Hideaki 9604bed72e4SYOSHIFUJI Hideaki lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ); 96170ceb4f5SYOSHIFUJI Hideaki 96270ceb4f5SYOSHIFUJI Hideaki if (rinfo->length == 3) 96370ceb4f5SYOSHIFUJI Hideaki prefix = (struct in6_addr *)rinfo->prefix; 96470ceb4f5SYOSHIFUJI Hideaki else { 96570ceb4f5SYOSHIFUJI Hideaki /* this function is safe */ 96670ceb4f5SYOSHIFUJI Hideaki ipv6_addr_prefix(&prefix_buf, 96770ceb4f5SYOSHIFUJI Hideaki (struct in6_addr *)rinfo->prefix, 96870ceb4f5SYOSHIFUJI Hideaki rinfo->prefix_len); 96970ceb4f5SYOSHIFUJI Hideaki prefix = &prefix_buf; 97070ceb4f5SYOSHIFUJI Hideaki } 97170ceb4f5SYOSHIFUJI Hideaki 972f104a567SDuan Jiong if (rinfo->prefix_len == 0) 973afb1d4b5SDavid Ahern rt = rt6_get_dflt_router(net, gwaddr, dev); 974f104a567SDuan Jiong else 975f104a567SDuan Jiong rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, 976830218c1SDavid Ahern gwaddr, dev); 97770ceb4f5SYOSHIFUJI Hideaki 97870ceb4f5SYOSHIFUJI Hideaki if (rt && !lifetime) { 97911dd74b3SRoopa Prabhu ip6_del_rt(net, rt, false); 98070ceb4f5SYOSHIFUJI Hideaki rt = NULL; 98170ceb4f5SYOSHIFUJI Hideaki } 98270ceb4f5SYOSHIFUJI Hideaki 98370ceb4f5SYOSHIFUJI Hideaki if (!rt && lifetime) 984830218c1SDavid Ahern rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, 985830218c1SDavid Ahern dev, pref); 98670ceb4f5SYOSHIFUJI Hideaki else if (rt) 98793c2fb25SDavid Ahern rt->fib6_flags = RTF_ROUTEINFO | 98893c2fb25SDavid Ahern (rt->fib6_flags & ~RTF_PREF_MASK) | RTF_PREF(pref); 98970ceb4f5SYOSHIFUJI Hideaki 99070ceb4f5SYOSHIFUJI Hideaki if (rt) { 9911716a961SGao feng if (!addrconf_finite_timeout(lifetime)) 99214895687SDavid Ahern fib6_clean_expires(rt); 9931716a961SGao feng else 99414895687SDavid Ahern fib6_set_expires(rt, jiffies + HZ * lifetime); 9951716a961SGao feng 99693531c67SDavid Ahern fib6_info_release(rt); 99770ceb4f5SYOSHIFUJI Hideaki } 99870ceb4f5SYOSHIFUJI Hideaki return 0; 99970ceb4f5SYOSHIFUJI Hideaki } 100070ceb4f5SYOSHIFUJI Hideaki #endif 100170ceb4f5SYOSHIFUJI Hideaki 1002ae90d867SDavid Ahern /* 1003ae90d867SDavid Ahern * Misc support functions 1004ae90d867SDavid Ahern */ 1005ae90d867SDavid Ahern 1006ae90d867SDavid Ahern /* called with rcu_lock held */ 10070d161581SDavid Ahern static struct net_device *ip6_rt_get_dev_rcu(const struct fib6_result *res) 1008ae90d867SDavid Ahern { 10090d161581SDavid Ahern struct net_device *dev = res->nh->fib_nh_dev; 1010ae90d867SDavid Ahern 10117d21fec9SDavid Ahern if (res->fib6_flags & (RTF_LOCAL | RTF_ANYCAST)) { 1012ae90d867SDavid Ahern /* for copies of local routes, dst->dev needs to be the 1013ae90d867SDavid Ahern * device if it is a master device, the master device if 1014ae90d867SDavid Ahern * device is enslaved, and the loopback as the default 1015ae90d867SDavid Ahern */ 1016ae90d867SDavid Ahern if (netif_is_l3_slave(dev) && 10177d21fec9SDavid Ahern !rt6_need_strict(&res->f6i->fib6_dst.addr)) 1018ae90d867SDavid Ahern dev = l3mdev_master_dev_rcu(dev); 1019ae90d867SDavid Ahern else if (!netif_is_l3_master(dev)) 1020ae90d867SDavid Ahern dev = dev_net(dev)->loopback_dev; 1021ae90d867SDavid Ahern /* last case is netif_is_l3_master(dev) is true in which 1022ae90d867SDavid Ahern * case we want dev returned to be dev 1023ae90d867SDavid Ahern */ 1024ae90d867SDavid Ahern } 1025ae90d867SDavid Ahern 1026ae90d867SDavid Ahern return dev; 1027ae90d867SDavid Ahern } 1028ae90d867SDavid Ahern 10296edb3c96SDavid Ahern static const int fib6_prop[RTN_MAX + 1] = { 10306edb3c96SDavid Ahern [RTN_UNSPEC] = 0, 10316edb3c96SDavid Ahern [RTN_UNICAST] = 0, 10326edb3c96SDavid Ahern [RTN_LOCAL] = 0, 10336edb3c96SDavid Ahern [RTN_BROADCAST] = 0, 10346edb3c96SDavid Ahern [RTN_ANYCAST] = 0, 10356edb3c96SDavid Ahern [RTN_MULTICAST] = 0, 10366edb3c96SDavid Ahern [RTN_BLACKHOLE] = -EINVAL, 10376edb3c96SDavid Ahern [RTN_UNREACHABLE] = -EHOSTUNREACH, 10386edb3c96SDavid Ahern [RTN_PROHIBIT] = -EACCES, 10396edb3c96SDavid Ahern [RTN_THROW] = -EAGAIN, 10406edb3c96SDavid Ahern [RTN_NAT] = -EINVAL, 10416edb3c96SDavid Ahern [RTN_XRESOLVE] = -EINVAL, 10426edb3c96SDavid Ahern }; 10436edb3c96SDavid Ahern 10446edb3c96SDavid Ahern static int ip6_rt_type_to_error(u8 fib6_type) 10456edb3c96SDavid Ahern { 10466edb3c96SDavid Ahern return fib6_prop[fib6_type]; 10476edb3c96SDavid Ahern } 10486edb3c96SDavid Ahern 10498d1c802bSDavid Ahern static unsigned short fib6_info_dst_flags(struct fib6_info *rt) 10503b6761d1SDavid Ahern { 10513b6761d1SDavid Ahern unsigned short flags = 0; 10523b6761d1SDavid Ahern 10533b6761d1SDavid Ahern if (rt->dst_nocount) 10543b6761d1SDavid Ahern flags |= DST_NOCOUNT; 10553b6761d1SDavid Ahern if (rt->dst_nopolicy) 10563b6761d1SDavid Ahern flags |= DST_NOPOLICY; 10573b6761d1SDavid Ahern 10583b6761d1SDavid Ahern return flags; 10593b6761d1SDavid Ahern } 10603b6761d1SDavid Ahern 10617d21fec9SDavid Ahern static void ip6_rt_init_dst_reject(struct rt6_info *rt, u8 fib6_type) 10626edb3c96SDavid Ahern { 10637d21fec9SDavid Ahern rt->dst.error = ip6_rt_type_to_error(fib6_type); 10646edb3c96SDavid Ahern 10657d21fec9SDavid Ahern switch (fib6_type) { 10666edb3c96SDavid Ahern case RTN_BLACKHOLE: 10676edb3c96SDavid Ahern rt->dst.output = dst_discard_out; 10686edb3c96SDavid Ahern rt->dst.input = dst_discard; 10696edb3c96SDavid Ahern break; 10706edb3c96SDavid Ahern case RTN_PROHIBIT: 10716edb3c96SDavid Ahern rt->dst.output = ip6_pkt_prohibit_out; 10726edb3c96SDavid Ahern rt->dst.input = ip6_pkt_prohibit; 10736edb3c96SDavid Ahern break; 10746edb3c96SDavid Ahern case RTN_THROW: 10756edb3c96SDavid Ahern case RTN_UNREACHABLE: 10766edb3c96SDavid Ahern default: 10776edb3c96SDavid Ahern rt->dst.output = ip6_pkt_discard_out; 10786edb3c96SDavid Ahern rt->dst.input = ip6_pkt_discard; 10796edb3c96SDavid Ahern break; 10806edb3c96SDavid Ahern } 10816edb3c96SDavid Ahern } 10826edb3c96SDavid Ahern 10830d161581SDavid Ahern static void ip6_rt_init_dst(struct rt6_info *rt, const struct fib6_result *res) 10846edb3c96SDavid Ahern { 10857d21fec9SDavid Ahern struct fib6_info *f6i = res->f6i; 10860d161581SDavid Ahern 10877d21fec9SDavid Ahern if (res->fib6_flags & RTF_REJECT) { 10887d21fec9SDavid Ahern ip6_rt_init_dst_reject(rt, res->fib6_type); 10896edb3c96SDavid Ahern return; 10906edb3c96SDavid Ahern } 10916edb3c96SDavid Ahern 10926edb3c96SDavid Ahern rt->dst.error = 0; 10936edb3c96SDavid Ahern rt->dst.output = ip6_output; 10946edb3c96SDavid Ahern 10957d21fec9SDavid Ahern if (res->fib6_type == RTN_LOCAL || res->fib6_type == RTN_ANYCAST) { 10966edb3c96SDavid Ahern rt->dst.input = ip6_input; 10977d21fec9SDavid Ahern } else if (ipv6_addr_type(&f6i->fib6_dst.addr) & IPV6_ADDR_MULTICAST) { 10986edb3c96SDavid Ahern rt->dst.input = ip6_mc_input; 10996edb3c96SDavid Ahern } else { 11006edb3c96SDavid Ahern rt->dst.input = ip6_forward; 11016edb3c96SDavid Ahern } 11026edb3c96SDavid Ahern 11030d161581SDavid Ahern if (res->nh->fib_nh_lws) { 11040d161581SDavid Ahern rt->dst.lwtstate = lwtstate_get(res->nh->fib_nh_lws); 11056edb3c96SDavid Ahern lwtunnel_set_redirect(&rt->dst); 11066edb3c96SDavid Ahern } 11076edb3c96SDavid Ahern 11086edb3c96SDavid Ahern rt->dst.lastuse = jiffies; 11096edb3c96SDavid Ahern } 11106edb3c96SDavid Ahern 1111e873e4b9SWei Wang /* Caller must already hold reference to @from */ 11128d1c802bSDavid Ahern static void rt6_set_from(struct rt6_info *rt, struct fib6_info *from) 1113ae90d867SDavid Ahern { 1114ae90d867SDavid Ahern rt->rt6i_flags &= ~RTF_EXPIRES; 1115a68886a6SDavid Ahern rcu_assign_pointer(rt->from, from); 1116e1255ed4SDavid Ahern ip_dst_init_metrics(&rt->dst, from->fib6_metrics); 1117ae90d867SDavid Ahern } 1118ae90d867SDavid Ahern 11190d161581SDavid Ahern /* Caller must already hold reference to f6i in result */ 11200d161581SDavid Ahern static void ip6_rt_copy_init(struct rt6_info *rt, const struct fib6_result *res) 1121ae90d867SDavid Ahern { 11220d161581SDavid Ahern const struct fib6_nh *nh = res->nh; 11230d161581SDavid Ahern const struct net_device *dev = nh->fib_nh_dev; 11240d161581SDavid Ahern struct fib6_info *f6i = res->f6i; 1125dcd1f572SDavid Ahern 11260d161581SDavid Ahern ip6_rt_init_dst(rt, res); 11276edb3c96SDavid Ahern 11280d161581SDavid Ahern rt->rt6i_dst = f6i->fib6_dst; 1129dcd1f572SDavid Ahern rt->rt6i_idev = dev ? in6_dev_get(dev) : NULL; 11307d21fec9SDavid Ahern rt->rt6i_flags = res->fib6_flags; 11310d161581SDavid Ahern if (nh->fib_nh_gw_family) { 11320d161581SDavid Ahern rt->rt6i_gateway = nh->fib_nh_gw6; 11332b2450caSDavid Ahern rt->rt6i_flags |= RTF_GATEWAY; 11342b2450caSDavid Ahern } 11350d161581SDavid Ahern rt6_set_from(rt, f6i); 1136ae90d867SDavid Ahern #ifdef CONFIG_IPV6_SUBTREES 11370d161581SDavid Ahern rt->rt6i_src = f6i->fib6_src; 1138ae90d867SDavid Ahern #endif 1139ae90d867SDavid Ahern } 1140ae90d867SDavid Ahern 1141a3c00e46SMartin KaFai Lau static struct fib6_node* fib6_backtrack(struct fib6_node *fn, 1142a3c00e46SMartin KaFai Lau struct in6_addr *saddr) 1143a3c00e46SMartin KaFai Lau { 114466f5d6ceSWei Wang struct fib6_node *pn, *sn; 1145a3c00e46SMartin KaFai Lau while (1) { 1146a3c00e46SMartin KaFai Lau if (fn->fn_flags & RTN_TL_ROOT) 1147a3c00e46SMartin KaFai Lau return NULL; 114866f5d6ceSWei Wang pn = rcu_dereference(fn->parent); 114966f5d6ceSWei Wang sn = FIB6_SUBTREE(pn); 115066f5d6ceSWei Wang if (sn && sn != fn) 11516454743bSDavid Ahern fn = fib6_node_lookup(sn, NULL, saddr); 1152a3c00e46SMartin KaFai Lau else 1153a3c00e46SMartin KaFai Lau fn = pn; 1154a3c00e46SMartin KaFai Lau if (fn->fn_flags & RTN_RTINFO) 1155a3c00e46SMartin KaFai Lau return fn; 1156a3c00e46SMartin KaFai Lau } 1157a3c00e46SMartin KaFai Lau } 1158c71099acSThomas Graf 115910585b43SDavid Ahern static bool ip6_hold_safe(struct net *net, struct rt6_info **prt) 1160d3843fe5SWei Wang { 1161d3843fe5SWei Wang struct rt6_info *rt = *prt; 1162d3843fe5SWei Wang 1163d3843fe5SWei Wang if (dst_hold_safe(&rt->dst)) 1164d3843fe5SWei Wang return true; 116510585b43SDavid Ahern if (net) { 1166d3843fe5SWei Wang rt = net->ipv6.ip6_null_entry; 1167d3843fe5SWei Wang dst_hold(&rt->dst); 1168d3843fe5SWei Wang } else { 1169d3843fe5SWei Wang rt = NULL; 1170d3843fe5SWei Wang } 1171d3843fe5SWei Wang *prt = rt; 1172d3843fe5SWei Wang return false; 1173d3843fe5SWei Wang } 1174d3843fe5SWei Wang 1175dec9b0e2SDavid Ahern /* called with rcu_lock held */ 11769b6b35abSDavid Ahern static struct rt6_info *ip6_create_rt_rcu(const struct fib6_result *res) 1177dec9b0e2SDavid Ahern { 11789b6b35abSDavid Ahern struct net_device *dev = res->nh->fib_nh_dev; 11799b6b35abSDavid Ahern struct fib6_info *f6i = res->f6i; 11809b6b35abSDavid Ahern unsigned short flags; 1181dec9b0e2SDavid Ahern struct rt6_info *nrt; 1182dec9b0e2SDavid Ahern 11839b6b35abSDavid Ahern if (!fib6_info_hold_safe(f6i)) 11841c87e79aSXin Long goto fallback; 1185e873e4b9SWei Wang 11869b6b35abSDavid Ahern flags = fib6_info_dst_flags(f6i); 118793531c67SDavid Ahern nrt = ip6_dst_alloc(dev_net(dev), dev, flags); 11881c87e79aSXin Long if (!nrt) { 11899b6b35abSDavid Ahern fib6_info_release(f6i); 11901c87e79aSXin Long goto fallback; 11911c87e79aSXin Long } 1192dec9b0e2SDavid Ahern 11930d161581SDavid Ahern ip6_rt_copy_init(nrt, res); 11941c87e79aSXin Long return nrt; 11951c87e79aSXin Long 11961c87e79aSXin Long fallback: 11971c87e79aSXin Long nrt = dev_net(dev)->ipv6.ip6_null_entry; 11981c87e79aSXin Long dst_hold(&nrt->dst); 1199dec9b0e2SDavid Ahern return nrt; 1200dec9b0e2SDavid Ahern } 1201dec9b0e2SDavid Ahern 120255cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_lookup(struct net *net, 12038ed67789SDaniel Lezcano struct fib6_table *table, 1204b75cc8f9SDavid Ahern struct flowi6 *fl6, 1205b75cc8f9SDavid Ahern const struct sk_buff *skb, 1206b75cc8f9SDavid Ahern int flags) 12071da177e4SLinus Torvalds { 1208b1d40991SDavid Ahern struct fib6_result res = {}; 12091da177e4SLinus Torvalds struct fib6_node *fn; 121023fb93a4SDavid Ahern struct rt6_info *rt; 12111da177e4SLinus Torvalds 121266f5d6ceSWei Wang rcu_read_lock(); 12136454743bSDavid Ahern fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); 1214c71099acSThomas Graf restart: 1215b1d40991SDavid Ahern res.f6i = rcu_dereference(fn->leaf); 1216b1d40991SDavid Ahern if (!res.f6i) 1217b1d40991SDavid Ahern res.f6i = net->ipv6.fib6_null_entry; 1218af52a52cSDavid Ahern else 121975ef7389SDavid Ahern rt6_device_match(net, &res, &fl6->saddr, fl6->flowi6_oif, 122075ef7389SDavid Ahern flags); 1221af52a52cSDavid Ahern 1222b1d40991SDavid Ahern if (res.f6i == net->ipv6.fib6_null_entry) { 1223a3c00e46SMartin KaFai Lau fn = fib6_backtrack(fn, &fl6->saddr); 1224a3c00e46SMartin KaFai Lau if (fn) 1225a3c00e46SMartin KaFai Lau goto restart; 1226af52a52cSDavid Ahern 1227af52a52cSDavid Ahern rt = net->ipv6.ip6_null_entry; 1228af52a52cSDavid Ahern dst_hold(&rt->dst); 1229af52a52cSDavid Ahern goto out; 1230f88d8ea6SDavid Ahern } else if (res.fib6_flags & RTF_REJECT) { 1231f88d8ea6SDavid Ahern goto do_create; 1232a3c00e46SMartin KaFai Lau } 12332b760fcfSWei Wang 1234b1d40991SDavid Ahern fib6_select_path(net, &res, fl6, fl6->flowi6_oif, 1235b1d40991SDavid Ahern fl6->flowi6_oif != 0, skb, flags); 1236b1d40991SDavid Ahern 12374c9483b2SDavid S. Miller /* Search through exception table */ 12387e4b5128SDavid Ahern rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr); 123923fb93a4SDavid Ahern if (rt) { 124010585b43SDavid Ahern if (ip6_hold_safe(net, &rt)) 1241d3843fe5SWei Wang dst_use_noref(&rt->dst, jiffies); 124223fb93a4SDavid Ahern } else { 1243f88d8ea6SDavid Ahern do_create: 12449b6b35abSDavid Ahern rt = ip6_create_rt_rcu(&res); 1245dec9b0e2SDavid Ahern } 1246d3843fe5SWei Wang 1247af52a52cSDavid Ahern out: 12488ff2e5b2SDavid Ahern trace_fib6_table_lookup(net, &res, table, fl6); 1249af52a52cSDavid Ahern 125066f5d6ceSWei Wang rcu_read_unlock(); 1251b811580dSDavid Ahern 12521da177e4SLinus Torvalds return rt; 1253c71099acSThomas Graf } 1254c71099acSThomas Graf 1255ea6e574eSFlorian Westphal struct dst_entry *ip6_route_lookup(struct net *net, struct flowi6 *fl6, 1256b75cc8f9SDavid Ahern const struct sk_buff *skb, int flags) 1257ea6e574eSFlorian Westphal { 1258b75cc8f9SDavid Ahern return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_lookup); 1259ea6e574eSFlorian Westphal } 1260ea6e574eSFlorian Westphal EXPORT_SYMBOL_GPL(ip6_route_lookup); 1261ea6e574eSFlorian Westphal 12629acd9f3aSYOSHIFUJI Hideaki struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr, 1263b75cc8f9SDavid Ahern const struct in6_addr *saddr, int oif, 1264b75cc8f9SDavid Ahern const struct sk_buff *skb, int strict) 1265c71099acSThomas Graf { 12664c9483b2SDavid S. Miller struct flowi6 fl6 = { 12674c9483b2SDavid S. Miller .flowi6_oif = oif, 12684c9483b2SDavid S. Miller .daddr = *daddr, 1269c71099acSThomas Graf }; 1270c71099acSThomas Graf struct dst_entry *dst; 127177d16f45SYOSHIFUJI Hideaki int flags = strict ? RT6_LOOKUP_F_IFACE : 0; 1272c71099acSThomas Graf 1273adaa70bbSThomas Graf if (saddr) { 12744c9483b2SDavid S. Miller memcpy(&fl6.saddr, saddr, sizeof(*saddr)); 1275adaa70bbSThomas Graf flags |= RT6_LOOKUP_F_HAS_SADDR; 1276adaa70bbSThomas Graf } 1277adaa70bbSThomas Graf 1278b75cc8f9SDavid Ahern dst = fib6_rule_lookup(net, &fl6, skb, flags, ip6_pol_route_lookup); 1279c71099acSThomas Graf if (dst->error == 0) 1280c71099acSThomas Graf return (struct rt6_info *) dst; 1281c71099acSThomas Graf 1282c71099acSThomas Graf dst_release(dst); 1283c71099acSThomas Graf 12841da177e4SLinus Torvalds return NULL; 12851da177e4SLinus Torvalds } 12867159039aSYOSHIFUJI Hideaki EXPORT_SYMBOL(rt6_lookup); 12877159039aSYOSHIFUJI Hideaki 1288c71099acSThomas Graf /* ip6_ins_rt is called with FREE table->tb6_lock. 12891cfb71eeSWei Wang * It takes new route entry, the addition fails by any reason the 12901cfb71eeSWei Wang * route is released. 12911cfb71eeSWei Wang * Caller must hold dst before calling it. 12921da177e4SLinus Torvalds */ 12931da177e4SLinus Torvalds 12948d1c802bSDavid Ahern static int __ip6_ins_rt(struct fib6_info *rt, struct nl_info *info, 1295333c4301SDavid Ahern struct netlink_ext_ack *extack) 12961da177e4SLinus Torvalds { 12971da177e4SLinus Torvalds int err; 1298c71099acSThomas Graf struct fib6_table *table; 12991da177e4SLinus Torvalds 130093c2fb25SDavid Ahern table = rt->fib6_table; 130166f5d6ceSWei Wang spin_lock_bh(&table->tb6_lock); 1302d4ead6b3SDavid Ahern err = fib6_add(&table->tb6_root, rt, info, extack); 130366f5d6ceSWei Wang spin_unlock_bh(&table->tb6_lock); 13041da177e4SLinus Torvalds 13051da177e4SLinus Torvalds return err; 13061da177e4SLinus Torvalds } 13071da177e4SLinus Torvalds 13088d1c802bSDavid Ahern int ip6_ins_rt(struct net *net, struct fib6_info *rt) 130940e22e8fSThomas Graf { 1310afb1d4b5SDavid Ahern struct nl_info info = { .nl_net = net, }; 1311e715b6d3SFlorian Westphal 1312d4ead6b3SDavid Ahern return __ip6_ins_rt(rt, &info, NULL); 131340e22e8fSThomas Graf } 131440e22e8fSThomas Graf 131585bd05deSDavid Ahern static struct rt6_info *ip6_rt_cache_alloc(const struct fib6_result *res, 131621efcfa0SEric Dumazet const struct in6_addr *daddr, 1317b71d1d42SEric Dumazet const struct in6_addr *saddr) 13181da177e4SLinus Torvalds { 131985bd05deSDavid Ahern struct fib6_info *f6i = res->f6i; 13204832c30dSDavid Ahern struct net_device *dev; 13211da177e4SLinus Torvalds struct rt6_info *rt; 13221da177e4SLinus Torvalds 13231da177e4SLinus Torvalds /* 13241da177e4SLinus Torvalds * Clone the route. 13251da177e4SLinus Torvalds */ 13261da177e4SLinus Torvalds 132785bd05deSDavid Ahern if (!fib6_info_hold_safe(f6i)) 1328e873e4b9SWei Wang return NULL; 1329e873e4b9SWei Wang 13300d161581SDavid Ahern dev = ip6_rt_get_dev_rcu(res); 133193531c67SDavid Ahern rt = ip6_dst_alloc(dev_net(dev), dev, 0); 1332e873e4b9SWei Wang if (!rt) { 133385bd05deSDavid Ahern fib6_info_release(f6i); 133483a09abdSMartin KaFai Lau return NULL; 1335e873e4b9SWei Wang } 133683a09abdSMartin KaFai Lau 13370d161581SDavid Ahern ip6_rt_copy_init(rt, res); 13388b9df265SMartin KaFai Lau rt->rt6i_flags |= RTF_CACHE; 133983a09abdSMartin KaFai Lau rt->rt6i_dst.addr = *daddr; 134083a09abdSMartin KaFai Lau rt->rt6i_dst.plen = 128; 13418b9df265SMartin KaFai Lau 134285bd05deSDavid Ahern if (!rt6_is_gw_or_nonexthop(res)) { 134385bd05deSDavid Ahern if (f6i->fib6_dst.plen != 128 && 134485bd05deSDavid Ahern ipv6_addr_equal(&f6i->fib6_dst.addr, daddr)) 134558c4fb86SYOSHIFUJI Hideaki rt->rt6i_flags |= RTF_ANYCAST; 13461da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES 13471da177e4SLinus Torvalds if (rt->rt6i_src.plen && saddr) { 13484e3fd7a0SAlexey Dobriyan rt->rt6i_src.addr = *saddr; 13491da177e4SLinus Torvalds rt->rt6i_src.plen = 128; 13501da177e4SLinus Torvalds } 13511da177e4SLinus Torvalds #endif 135295a9a5baSYOSHIFUJI Hideaki } 135395a9a5baSYOSHIFUJI Hideaki 1354299d9939SYOSHIFUJI Hideaki return rt; 1355299d9939SYOSHIFUJI Hideaki } 1356299d9939SYOSHIFUJI Hideaki 1357db3fedeeSDavid Ahern static struct rt6_info *ip6_rt_pcpu_alloc(const struct fib6_result *res) 1358d52d3997SMartin KaFai Lau { 1359db3fedeeSDavid Ahern struct fib6_info *f6i = res->f6i; 1360db3fedeeSDavid Ahern unsigned short flags = fib6_info_dst_flags(f6i); 13614832c30dSDavid Ahern struct net_device *dev; 1362d52d3997SMartin KaFai Lau struct rt6_info *pcpu_rt; 1363d52d3997SMartin KaFai Lau 1364db3fedeeSDavid Ahern if (!fib6_info_hold_safe(f6i)) 1365e873e4b9SWei Wang return NULL; 1366e873e4b9SWei Wang 13674832c30dSDavid Ahern rcu_read_lock(); 13680d161581SDavid Ahern dev = ip6_rt_get_dev_rcu(res); 1369d8882935SEric Dumazet pcpu_rt = ip6_dst_alloc(dev_net(dev), dev, flags | DST_NOCOUNT); 13704832c30dSDavid Ahern rcu_read_unlock(); 1371e873e4b9SWei Wang if (!pcpu_rt) { 1372db3fedeeSDavid Ahern fib6_info_release(f6i); 1373d52d3997SMartin KaFai Lau return NULL; 1374e873e4b9SWei Wang } 13750d161581SDavid Ahern ip6_rt_copy_init(pcpu_rt, res); 1376d52d3997SMartin KaFai Lau pcpu_rt->rt6i_flags |= RTF_PCPU; 13778f34e53bSDavid Ahern 13788f34e53bSDavid Ahern if (f6i->nh) 13798f34e53bSDavid Ahern pcpu_rt->sernum = rt_genid_ipv6(dev_net(dev)); 13808f34e53bSDavid Ahern 1381d52d3997SMartin KaFai Lau return pcpu_rt; 1382d52d3997SMartin KaFai Lau } 1383d52d3997SMartin KaFai Lau 13848f34e53bSDavid Ahern static bool rt6_is_valid(const struct rt6_info *rt6) 13858f34e53bSDavid Ahern { 13868f34e53bSDavid Ahern return rt6->sernum == rt_genid_ipv6(dev_net(rt6->dst.dev)); 13878f34e53bSDavid Ahern } 13888f34e53bSDavid Ahern 138966f5d6ceSWei Wang /* It should be called with rcu_read_lock() acquired */ 1390db3fedeeSDavid Ahern static struct rt6_info *rt6_get_pcpu_route(const struct fib6_result *res) 1391d52d3997SMartin KaFai Lau { 1392c353071aSEric Dumazet struct rt6_info *pcpu_rt; 1393d52d3997SMartin KaFai Lau 1394c353071aSEric Dumazet pcpu_rt = this_cpu_read(*res->nh->rt6i_pcpu); 1395d52d3997SMartin KaFai Lau 13968f34e53bSDavid Ahern if (pcpu_rt && pcpu_rt->sernum && !rt6_is_valid(pcpu_rt)) { 13978f34e53bSDavid Ahern struct rt6_info *prev, **p; 13988f34e53bSDavid Ahern 13998f34e53bSDavid Ahern p = this_cpu_ptr(res->nh->rt6i_pcpu); 14008f34e53bSDavid Ahern prev = xchg(p, NULL); 14018f34e53bSDavid Ahern if (prev) { 14028f34e53bSDavid Ahern dst_dev_put(&prev->dst); 14038f34e53bSDavid Ahern dst_release(&prev->dst); 14048f34e53bSDavid Ahern } 14058f34e53bSDavid Ahern 14068f34e53bSDavid Ahern pcpu_rt = NULL; 14078f34e53bSDavid Ahern } 14088f34e53bSDavid Ahern 1409a73e4195SMartin KaFai Lau return pcpu_rt; 1410a73e4195SMartin KaFai Lau } 1411a73e4195SMartin KaFai Lau 1412afb1d4b5SDavid Ahern static struct rt6_info *rt6_make_pcpu_route(struct net *net, 1413db3fedeeSDavid Ahern const struct fib6_result *res) 1414a73e4195SMartin KaFai Lau { 1415a73e4195SMartin KaFai Lau struct rt6_info *pcpu_rt, *prev, **p; 1416d52d3997SMartin KaFai Lau 1417db3fedeeSDavid Ahern pcpu_rt = ip6_rt_pcpu_alloc(res); 14180e09edccSWei Wang if (!pcpu_rt) 14190e09edccSWei Wang return NULL; 1420d52d3997SMartin KaFai Lau 1421f40b6ae2SDavid Ahern p = this_cpu_ptr(res->nh->rt6i_pcpu); 1422d52d3997SMartin KaFai Lau prev = cmpxchg(p, NULL, pcpu_rt); 1423951f788aSEric Dumazet BUG_ON(prev); 1424a94b9367SWei Wang 142561fb0d01SEric Dumazet if (res->f6i->fib6_destroying) { 142661fb0d01SEric Dumazet struct fib6_info *from; 142761fb0d01SEric Dumazet 142861fb0d01SEric Dumazet from = xchg((__force struct fib6_info **)&pcpu_rt->from, NULL); 142961fb0d01SEric Dumazet fib6_info_release(from); 143061fb0d01SEric Dumazet } 143161fb0d01SEric Dumazet 1432d52d3997SMartin KaFai Lau return pcpu_rt; 1433d52d3997SMartin KaFai Lau } 1434d52d3997SMartin KaFai Lau 143535732d01SWei Wang /* exception hash table implementation 143635732d01SWei Wang */ 143735732d01SWei Wang static DEFINE_SPINLOCK(rt6_exception_lock); 143835732d01SWei Wang 143935732d01SWei Wang /* Remove rt6_ex from hash table and free the memory 144035732d01SWei Wang * Caller must hold rt6_exception_lock 144135732d01SWei Wang */ 144235732d01SWei Wang static void rt6_remove_exception(struct rt6_exception_bucket *bucket, 144335732d01SWei Wang struct rt6_exception *rt6_ex) 144435732d01SWei Wang { 1445f5b51fe8SPaolo Abeni struct fib6_info *from; 1446b2427e67SColin Ian King struct net *net; 144781eb8447SWei Wang 144835732d01SWei Wang if (!bucket || !rt6_ex) 144935732d01SWei Wang return; 1450b2427e67SColin Ian King 1451b2427e67SColin Ian King net = dev_net(rt6_ex->rt6i->dst.dev); 1452f5b51fe8SPaolo Abeni net->ipv6.rt6_stats->fib_rt_cache--; 1453f5b51fe8SPaolo Abeni 1454f5b51fe8SPaolo Abeni /* purge completely the exception to allow releasing the held resources: 1455f5b51fe8SPaolo Abeni * some [sk] cache may keep the dst around for unlimited time 1456f5b51fe8SPaolo Abeni */ 14570e233874SEric Dumazet from = xchg((__force struct fib6_info **)&rt6_ex->rt6i->from, NULL); 1458f5b51fe8SPaolo Abeni fib6_info_release(from); 1459f5b51fe8SPaolo Abeni dst_dev_put(&rt6_ex->rt6i->dst); 1460f5b51fe8SPaolo Abeni 146135732d01SWei Wang hlist_del_rcu(&rt6_ex->hlist); 146277634cc6SDavid Ahern dst_release(&rt6_ex->rt6i->dst); 146335732d01SWei Wang kfree_rcu(rt6_ex, rcu); 146435732d01SWei Wang WARN_ON_ONCE(!bucket->depth); 146535732d01SWei Wang bucket->depth--; 146635732d01SWei Wang } 146735732d01SWei Wang 146835732d01SWei Wang /* Remove oldest rt6_ex in bucket and free the memory 146935732d01SWei Wang * Caller must hold rt6_exception_lock 147035732d01SWei Wang */ 147135732d01SWei Wang static void rt6_exception_remove_oldest(struct rt6_exception_bucket *bucket) 147235732d01SWei Wang { 147335732d01SWei Wang struct rt6_exception *rt6_ex, *oldest = NULL; 147435732d01SWei Wang 147535732d01SWei Wang if (!bucket) 147635732d01SWei Wang return; 147735732d01SWei Wang 147835732d01SWei Wang hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) { 147935732d01SWei Wang if (!oldest || time_before(rt6_ex->stamp, oldest->stamp)) 148035732d01SWei Wang oldest = rt6_ex; 148135732d01SWei Wang } 148235732d01SWei Wang rt6_remove_exception(bucket, oldest); 148335732d01SWei Wang } 148435732d01SWei Wang 148535732d01SWei Wang static u32 rt6_exception_hash(const struct in6_addr *dst, 148635732d01SWei Wang const struct in6_addr *src) 148735732d01SWei Wang { 148849ecc2e9SEric Dumazet static siphash_aligned_key_t rt6_exception_key; 14894785305cSEric Dumazet struct { 14904785305cSEric Dumazet struct in6_addr dst; 14914785305cSEric Dumazet struct in6_addr src; 14924785305cSEric Dumazet } __aligned(SIPHASH_ALIGNMENT) combined = { 14934785305cSEric Dumazet .dst = *dst, 14944785305cSEric Dumazet }; 14954785305cSEric Dumazet u64 val; 149635732d01SWei Wang 14974785305cSEric Dumazet net_get_random_once(&rt6_exception_key, sizeof(rt6_exception_key)); 149835732d01SWei Wang 149935732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 150035732d01SWei Wang if (src) 15014785305cSEric Dumazet combined.src = *src; 150235732d01SWei Wang #endif 15034785305cSEric Dumazet val = siphash(&combined, sizeof(combined), &rt6_exception_key); 15044785305cSEric Dumazet 15054785305cSEric Dumazet return hash_64(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT); 150635732d01SWei Wang } 150735732d01SWei Wang 150835732d01SWei Wang /* Helper function to find the cached rt in the hash table 150935732d01SWei Wang * and update bucket pointer to point to the bucket for this 151035732d01SWei Wang * (daddr, saddr) pair 151135732d01SWei Wang * Caller must hold rt6_exception_lock 151235732d01SWei Wang */ 151335732d01SWei Wang static struct rt6_exception * 151435732d01SWei Wang __rt6_find_exception_spinlock(struct rt6_exception_bucket **bucket, 151535732d01SWei Wang const struct in6_addr *daddr, 151635732d01SWei Wang const struct in6_addr *saddr) 151735732d01SWei Wang { 151835732d01SWei Wang struct rt6_exception *rt6_ex; 151935732d01SWei Wang u32 hval; 152035732d01SWei Wang 152135732d01SWei Wang if (!(*bucket) || !daddr) 152235732d01SWei Wang return NULL; 152335732d01SWei Wang 152435732d01SWei Wang hval = rt6_exception_hash(daddr, saddr); 152535732d01SWei Wang *bucket += hval; 152635732d01SWei Wang 152735732d01SWei Wang hlist_for_each_entry(rt6_ex, &(*bucket)->chain, hlist) { 152835732d01SWei Wang struct rt6_info *rt6 = rt6_ex->rt6i; 152935732d01SWei Wang bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr); 153035732d01SWei Wang 153135732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 153235732d01SWei Wang if (matched && saddr) 153335732d01SWei Wang matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr); 153435732d01SWei Wang #endif 153535732d01SWei Wang if (matched) 153635732d01SWei Wang return rt6_ex; 153735732d01SWei Wang } 153835732d01SWei Wang return NULL; 153935732d01SWei Wang } 154035732d01SWei Wang 154135732d01SWei Wang /* Helper function to find the cached rt in the hash table 154235732d01SWei Wang * and update bucket pointer to point to the bucket for this 154335732d01SWei Wang * (daddr, saddr) pair 154435732d01SWei Wang * Caller must hold rcu_read_lock() 154535732d01SWei Wang */ 154635732d01SWei Wang static struct rt6_exception * 154735732d01SWei Wang __rt6_find_exception_rcu(struct rt6_exception_bucket **bucket, 154835732d01SWei Wang const struct in6_addr *daddr, 154935732d01SWei Wang const struct in6_addr *saddr) 155035732d01SWei Wang { 155135732d01SWei Wang struct rt6_exception *rt6_ex; 155235732d01SWei Wang u32 hval; 155335732d01SWei Wang 155435732d01SWei Wang WARN_ON_ONCE(!rcu_read_lock_held()); 155535732d01SWei Wang 155635732d01SWei Wang if (!(*bucket) || !daddr) 155735732d01SWei Wang return NULL; 155835732d01SWei Wang 155935732d01SWei Wang hval = rt6_exception_hash(daddr, saddr); 156035732d01SWei Wang *bucket += hval; 156135732d01SWei Wang 156235732d01SWei Wang hlist_for_each_entry_rcu(rt6_ex, &(*bucket)->chain, hlist) { 156335732d01SWei Wang struct rt6_info *rt6 = rt6_ex->rt6i; 156435732d01SWei Wang bool matched = ipv6_addr_equal(daddr, &rt6->rt6i_dst.addr); 156535732d01SWei Wang 156635732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 156735732d01SWei Wang if (matched && saddr) 156835732d01SWei Wang matched = ipv6_addr_equal(saddr, &rt6->rt6i_src.addr); 156935732d01SWei Wang #endif 157035732d01SWei Wang if (matched) 157135732d01SWei Wang return rt6_ex; 157235732d01SWei Wang } 157335732d01SWei Wang return NULL; 157435732d01SWei Wang } 157535732d01SWei Wang 1576b748f260SDavid Ahern static unsigned int fib6_mtu(const struct fib6_result *res) 157735732d01SWei Wang { 1578b748f260SDavid Ahern const struct fib6_nh *nh = res->nh; 1579d4ead6b3SDavid Ahern unsigned int mtu; 1580d4ead6b3SDavid Ahern 1581b748f260SDavid Ahern if (res->f6i->fib6_pmtu) { 1582b748f260SDavid Ahern mtu = res->f6i->fib6_pmtu; 1583dcd1f572SDavid Ahern } else { 1584b748f260SDavid Ahern struct net_device *dev = nh->fib_nh_dev; 1585dcd1f572SDavid Ahern struct inet6_dev *idev; 1586dcd1f572SDavid Ahern 1587dcd1f572SDavid Ahern rcu_read_lock(); 1588dcd1f572SDavid Ahern idev = __in6_dev_get(dev); 1589dcd1f572SDavid Ahern mtu = idev->cnf.mtu6; 1590dcd1f572SDavid Ahern rcu_read_unlock(); 1591dcd1f572SDavid Ahern } 1592dcd1f572SDavid Ahern 1593d4ead6b3SDavid Ahern mtu = min_t(unsigned int, mtu, IP6_MAX_MTU); 1594d4ead6b3SDavid Ahern 1595b748f260SDavid Ahern return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu); 1596d4ead6b3SDavid Ahern } 1597d4ead6b3SDavid Ahern 1598cc5c073aSDavid Ahern #define FIB6_EXCEPTION_BUCKET_FLUSHED 0x1UL 1599cc5c073aSDavid Ahern 1600cc5c073aSDavid Ahern /* used when the flushed bit is not relevant, only access to the bucket 1601cc5c073aSDavid Ahern * (ie., all bucket users except rt6_insert_exception); 1602cc5c073aSDavid Ahern * 1603cc5c073aSDavid Ahern * called under rcu lock; sometimes called with rt6_exception_lock held 1604cc5c073aSDavid Ahern */ 1605cc5c073aSDavid Ahern static 1606cc5c073aSDavid Ahern struct rt6_exception_bucket *fib6_nh_get_excptn_bucket(const struct fib6_nh *nh, 1607cc5c073aSDavid Ahern spinlock_t *lock) 1608cc5c073aSDavid Ahern { 1609cc5c073aSDavid Ahern struct rt6_exception_bucket *bucket; 1610cc5c073aSDavid Ahern 1611cc5c073aSDavid Ahern if (lock) 1612cc5c073aSDavid Ahern bucket = rcu_dereference_protected(nh->rt6i_exception_bucket, 1613cc5c073aSDavid Ahern lockdep_is_held(lock)); 1614cc5c073aSDavid Ahern else 1615cc5c073aSDavid Ahern bucket = rcu_dereference(nh->rt6i_exception_bucket); 1616cc5c073aSDavid Ahern 1617cc5c073aSDavid Ahern /* remove bucket flushed bit if set */ 1618cc5c073aSDavid Ahern if (bucket) { 1619cc5c073aSDavid Ahern unsigned long p = (unsigned long)bucket; 1620cc5c073aSDavid Ahern 1621cc5c073aSDavid Ahern p &= ~FIB6_EXCEPTION_BUCKET_FLUSHED; 1622cc5c073aSDavid Ahern bucket = (struct rt6_exception_bucket *)p; 1623cc5c073aSDavid Ahern } 1624cc5c073aSDavid Ahern 1625cc5c073aSDavid Ahern return bucket; 1626cc5c073aSDavid Ahern } 1627cc5c073aSDavid Ahern 1628cc5c073aSDavid Ahern static bool fib6_nh_excptn_bucket_flushed(struct rt6_exception_bucket *bucket) 1629cc5c073aSDavid Ahern { 1630cc5c073aSDavid Ahern unsigned long p = (unsigned long)bucket; 1631cc5c073aSDavid Ahern 1632cc5c073aSDavid Ahern return !!(p & FIB6_EXCEPTION_BUCKET_FLUSHED); 1633cc5c073aSDavid Ahern } 1634cc5c073aSDavid Ahern 1635cc5c073aSDavid Ahern /* called with rt6_exception_lock held */ 1636cc5c073aSDavid Ahern static void fib6_nh_excptn_bucket_set_flushed(struct fib6_nh *nh, 1637cc5c073aSDavid Ahern spinlock_t *lock) 1638cc5c073aSDavid Ahern { 1639cc5c073aSDavid Ahern struct rt6_exception_bucket *bucket; 1640cc5c073aSDavid Ahern unsigned long p; 1641cc5c073aSDavid Ahern 1642cc5c073aSDavid Ahern bucket = rcu_dereference_protected(nh->rt6i_exception_bucket, 1643cc5c073aSDavid Ahern lockdep_is_held(lock)); 1644cc5c073aSDavid Ahern 1645cc5c073aSDavid Ahern p = (unsigned long)bucket; 1646cc5c073aSDavid Ahern p |= FIB6_EXCEPTION_BUCKET_FLUSHED; 1647cc5c073aSDavid Ahern bucket = (struct rt6_exception_bucket *)p; 1648cc5c073aSDavid Ahern rcu_assign_pointer(nh->rt6i_exception_bucket, bucket); 1649cc5c073aSDavid Ahern } 1650cc5c073aSDavid Ahern 165135732d01SWei Wang static int rt6_insert_exception(struct rt6_info *nrt, 16525012f0a5SDavid Ahern const struct fib6_result *res) 165335732d01SWei Wang { 16545e670d84SDavid Ahern struct net *net = dev_net(nrt->dst.dev); 165535732d01SWei Wang struct rt6_exception_bucket *bucket; 1656cc5c073aSDavid Ahern struct fib6_info *f6i = res->f6i; 165735732d01SWei Wang struct in6_addr *src_key = NULL; 165835732d01SWei Wang struct rt6_exception *rt6_ex; 1659cc5c073aSDavid Ahern struct fib6_nh *nh = res->nh; 1660a00df2caSEric Dumazet int max_depth; 166135732d01SWei Wang int err = 0; 166235732d01SWei Wang 166335732d01SWei Wang spin_lock_bh(&rt6_exception_lock); 166435732d01SWei Wang 1665cc5c073aSDavid Ahern bucket = rcu_dereference_protected(nh->rt6i_exception_bucket, 166635732d01SWei Wang lockdep_is_held(&rt6_exception_lock)); 166735732d01SWei Wang if (!bucket) { 166835732d01SWei Wang bucket = kcalloc(FIB6_EXCEPTION_BUCKET_SIZE, sizeof(*bucket), 166935732d01SWei Wang GFP_ATOMIC); 167035732d01SWei Wang if (!bucket) { 167135732d01SWei Wang err = -ENOMEM; 167235732d01SWei Wang goto out; 167335732d01SWei Wang } 1674cc5c073aSDavid Ahern rcu_assign_pointer(nh->rt6i_exception_bucket, bucket); 1675cc5c073aSDavid Ahern } else if (fib6_nh_excptn_bucket_flushed(bucket)) { 1676cc5c073aSDavid Ahern err = -EINVAL; 1677cc5c073aSDavid Ahern goto out; 167835732d01SWei Wang } 167935732d01SWei Wang 168035732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 16815012f0a5SDavid Ahern /* fib6_src.plen != 0 indicates f6i is in subtree 168235732d01SWei Wang * and exception table is indexed by a hash of 16835012f0a5SDavid Ahern * both fib6_dst and fib6_src. 168435732d01SWei Wang * Otherwise, the exception table is indexed by 16855012f0a5SDavid Ahern * a hash of only fib6_dst. 168635732d01SWei Wang */ 16875012f0a5SDavid Ahern if (f6i->fib6_src.plen) 168835732d01SWei Wang src_key = &nrt->rt6i_src.addr; 168935732d01SWei Wang #endif 16905012f0a5SDavid Ahern /* rt6_mtu_change() might lower mtu on f6i. 1691f5bbe7eeSWei Wang * Only insert this exception route if its mtu 16925012f0a5SDavid Ahern * is less than f6i's mtu value. 1693f5bbe7eeSWei Wang */ 1694b748f260SDavid Ahern if (dst_metric_raw(&nrt->dst, RTAX_MTU) >= fib6_mtu(res)) { 1695f5bbe7eeSWei Wang err = -EINVAL; 1696f5bbe7eeSWei Wang goto out; 1697f5bbe7eeSWei Wang } 169860006a48SWei Wang 169935732d01SWei Wang rt6_ex = __rt6_find_exception_spinlock(&bucket, &nrt->rt6i_dst.addr, 170035732d01SWei Wang src_key); 170135732d01SWei Wang if (rt6_ex) 170235732d01SWei Wang rt6_remove_exception(bucket, rt6_ex); 170335732d01SWei Wang 170435732d01SWei Wang rt6_ex = kzalloc(sizeof(*rt6_ex), GFP_ATOMIC); 170535732d01SWei Wang if (!rt6_ex) { 170635732d01SWei Wang err = -ENOMEM; 170735732d01SWei Wang goto out; 170835732d01SWei Wang } 170935732d01SWei Wang rt6_ex->rt6i = nrt; 171035732d01SWei Wang rt6_ex->stamp = jiffies; 171135732d01SWei Wang hlist_add_head_rcu(&rt6_ex->hlist, &bucket->chain); 171235732d01SWei Wang bucket->depth++; 171381eb8447SWei Wang net->ipv6.rt6_stats->fib_rt_cache++; 171435732d01SWei Wang 1715a00df2caSEric Dumazet /* Randomize max depth to avoid some side channels attacks. */ 17168032bf12SJason A. Donenfeld max_depth = FIB6_MAX_DEPTH + get_random_u32_below(FIB6_MAX_DEPTH); 1717a00df2caSEric Dumazet while (bucket->depth > max_depth) 171835732d01SWei Wang rt6_exception_remove_oldest(bucket); 171935732d01SWei Wang 172035732d01SWei Wang out: 172135732d01SWei Wang spin_unlock_bh(&rt6_exception_lock); 172235732d01SWei Wang 172335732d01SWei Wang /* Update fn->fn_sernum to invalidate all cached dst */ 1724b886d5f2SPaolo Abeni if (!err) { 17255012f0a5SDavid Ahern spin_lock_bh(&f6i->fib6_table->tb6_lock); 17265012f0a5SDavid Ahern fib6_update_sernum(net, f6i); 17275012f0a5SDavid Ahern spin_unlock_bh(&f6i->fib6_table->tb6_lock); 1728b886d5f2SPaolo Abeni fib6_force_start_gc(net); 1729b886d5f2SPaolo Abeni } 173035732d01SWei Wang 173135732d01SWei Wang return err; 173235732d01SWei Wang } 173335732d01SWei Wang 1734c0b220cfSDavid Ahern static void fib6_nh_flush_exceptions(struct fib6_nh *nh, struct fib6_info *from) 173535732d01SWei Wang { 173635732d01SWei Wang struct rt6_exception_bucket *bucket; 173735732d01SWei Wang struct rt6_exception *rt6_ex; 173835732d01SWei Wang struct hlist_node *tmp; 173935732d01SWei Wang int i; 174035732d01SWei Wang 174135732d01SWei Wang spin_lock_bh(&rt6_exception_lock); 174235732d01SWei Wang 1743cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); 174435732d01SWei Wang if (!bucket) 174535732d01SWei Wang goto out; 174635732d01SWei Wang 1747cc5c073aSDavid Ahern /* Prevent rt6_insert_exception() to recreate the bucket list */ 1748cc5c073aSDavid Ahern if (!from) 1749cc5c073aSDavid Ahern fib6_nh_excptn_bucket_set_flushed(nh, &rt6_exception_lock); 1750cc5c073aSDavid Ahern 175135732d01SWei Wang for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { 1752cc5c073aSDavid Ahern hlist_for_each_entry_safe(rt6_ex, tmp, &bucket->chain, hlist) { 1753cc5c073aSDavid Ahern if (!from || 1754cc5c073aSDavid Ahern rcu_access_pointer(rt6_ex->rt6i->from) == from) 175535732d01SWei Wang rt6_remove_exception(bucket, rt6_ex); 1756cc5c073aSDavid Ahern } 1757cc5c073aSDavid Ahern WARN_ON_ONCE(!from && bucket->depth); 175835732d01SWei Wang bucket++; 175935732d01SWei Wang } 176035732d01SWei Wang out: 176135732d01SWei Wang spin_unlock_bh(&rt6_exception_lock); 176235732d01SWei Wang } 176335732d01SWei Wang 1764e659ba31SDavid Ahern static int rt6_nh_flush_exceptions(struct fib6_nh *nh, void *arg) 1765e659ba31SDavid Ahern { 1766e659ba31SDavid Ahern struct fib6_info *f6i = arg; 1767e659ba31SDavid Ahern 1768e659ba31SDavid Ahern fib6_nh_flush_exceptions(nh, f6i); 1769e659ba31SDavid Ahern 1770e659ba31SDavid Ahern return 0; 1771e659ba31SDavid Ahern } 1772e659ba31SDavid Ahern 1773c0b220cfSDavid Ahern void rt6_flush_exceptions(struct fib6_info *f6i) 1774c0b220cfSDavid Ahern { 1775e659ba31SDavid Ahern if (f6i->nh) 1776e659ba31SDavid Ahern nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_flush_exceptions, 1777e659ba31SDavid Ahern f6i); 1778e659ba31SDavid Ahern else 17791cf844c7SDavid Ahern fib6_nh_flush_exceptions(f6i->fib6_nh, f6i); 1780c0b220cfSDavid Ahern } 1781c0b220cfSDavid Ahern 178235732d01SWei Wang /* Find cached rt in the hash table inside passed in rt 178335732d01SWei Wang * Caller has to hold rcu_read_lock() 178435732d01SWei Wang */ 17857e4b5128SDavid Ahern static struct rt6_info *rt6_find_cached_rt(const struct fib6_result *res, 1786510e2cedSWei Wang const struct in6_addr *daddr, 1787510e2cedSWei Wang const struct in6_addr *saddr) 178835732d01SWei Wang { 1789510e2cedSWei Wang const struct in6_addr *src_key = NULL; 179035732d01SWei Wang struct rt6_exception_bucket *bucket; 179135732d01SWei Wang struct rt6_exception *rt6_ex; 17927e4b5128SDavid Ahern struct rt6_info *ret = NULL; 179335732d01SWei Wang 179435732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 17957e4b5128SDavid Ahern /* fib6i_src.plen != 0 indicates f6i is in subtree 179635732d01SWei Wang * and exception table is indexed by a hash of 17977e4b5128SDavid Ahern * both fib6_dst and fib6_src. 1798510e2cedSWei Wang * However, the src addr used to create the hash 1799510e2cedSWei Wang * might not be exactly the passed in saddr which 1800510e2cedSWei Wang * is a /128 addr from the flow. 1801510e2cedSWei Wang * So we need to use f6i->fib6_src to redo lookup 1802510e2cedSWei Wang * if the passed in saddr does not find anything. 1803510e2cedSWei Wang * (See the logic in ip6_rt_cache_alloc() on how 1804510e2cedSWei Wang * rt->rt6i_src is updated.) 180535732d01SWei Wang */ 18067e4b5128SDavid Ahern if (res->f6i->fib6_src.plen) 180735732d01SWei Wang src_key = saddr; 1808510e2cedSWei Wang find_ex: 180935732d01SWei Wang #endif 1810cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(res->nh, NULL); 181135732d01SWei Wang rt6_ex = __rt6_find_exception_rcu(&bucket, daddr, src_key); 181235732d01SWei Wang 181335732d01SWei Wang if (rt6_ex && !rt6_check_expired(rt6_ex->rt6i)) 18147e4b5128SDavid Ahern ret = rt6_ex->rt6i; 181535732d01SWei Wang 1816510e2cedSWei Wang #ifdef CONFIG_IPV6_SUBTREES 1817510e2cedSWei Wang /* Use fib6_src as src_key and redo lookup */ 1818510e2cedSWei Wang if (!ret && src_key && src_key != &res->f6i->fib6_src.addr) { 1819510e2cedSWei Wang src_key = &res->f6i->fib6_src.addr; 1820510e2cedSWei Wang goto find_ex; 1821510e2cedSWei Wang } 1822510e2cedSWei Wang #endif 1823510e2cedSWei Wang 18247e4b5128SDavid Ahern return ret; 182535732d01SWei Wang } 182635732d01SWei Wang 182735732d01SWei Wang /* Remove the passed in cached rt from the hash table that contains it */ 1828cc5c073aSDavid Ahern static int fib6_nh_remove_exception(const struct fib6_nh *nh, int plen, 1829c0b220cfSDavid Ahern const struct rt6_info *rt) 183035732d01SWei Wang { 1831c0b220cfSDavid Ahern const struct in6_addr *src_key = NULL; 183235732d01SWei Wang struct rt6_exception_bucket *bucket; 183335732d01SWei Wang struct rt6_exception *rt6_ex; 183435732d01SWei Wang int err; 183535732d01SWei Wang 1836cc5c073aSDavid Ahern if (!rcu_access_pointer(nh->rt6i_exception_bucket)) 183735732d01SWei Wang return -ENOENT; 183835732d01SWei Wang 183935732d01SWei Wang spin_lock_bh(&rt6_exception_lock); 1840cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); 1841cc5c073aSDavid Ahern 184235732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 1843cc5c073aSDavid Ahern /* rt6i_src.plen != 0 indicates 'from' is in subtree 1844cc5c073aSDavid Ahern * and exception table is indexed by a hash of 1845cc5c073aSDavid Ahern * both rt6i_dst and rt6i_src. 184635732d01SWei Wang * Otherwise, the exception table is indexed by 184735732d01SWei Wang * a hash of only rt6i_dst. 184835732d01SWei Wang */ 1849c0b220cfSDavid Ahern if (plen) 185035732d01SWei Wang src_key = &rt->rt6i_src.addr; 185135732d01SWei Wang #endif 185235732d01SWei Wang rt6_ex = __rt6_find_exception_spinlock(&bucket, 185335732d01SWei Wang &rt->rt6i_dst.addr, 185435732d01SWei Wang src_key); 185535732d01SWei Wang if (rt6_ex) { 185635732d01SWei Wang rt6_remove_exception(bucket, rt6_ex); 185735732d01SWei Wang err = 0; 185835732d01SWei Wang } else { 185935732d01SWei Wang err = -ENOENT; 186035732d01SWei Wang } 186135732d01SWei Wang 186235732d01SWei Wang spin_unlock_bh(&rt6_exception_lock); 186335732d01SWei Wang return err; 186435732d01SWei Wang } 186535732d01SWei Wang 1866e659ba31SDavid Ahern struct fib6_nh_excptn_arg { 1867e659ba31SDavid Ahern struct rt6_info *rt; 1868e659ba31SDavid Ahern int plen; 1869e659ba31SDavid Ahern }; 1870e659ba31SDavid Ahern 1871e659ba31SDavid Ahern static int rt6_nh_remove_exception_rt(struct fib6_nh *nh, void *_arg) 1872e659ba31SDavid Ahern { 1873e659ba31SDavid Ahern struct fib6_nh_excptn_arg *arg = _arg; 1874e659ba31SDavid Ahern int err; 1875e659ba31SDavid Ahern 1876e659ba31SDavid Ahern err = fib6_nh_remove_exception(nh, arg->plen, arg->rt); 1877e659ba31SDavid Ahern if (err == 0) 1878e659ba31SDavid Ahern return 1; 1879e659ba31SDavid Ahern 1880e659ba31SDavid Ahern return 0; 1881e659ba31SDavid Ahern } 1882e659ba31SDavid Ahern 1883c0b220cfSDavid Ahern static int rt6_remove_exception_rt(struct rt6_info *rt) 1884c0b220cfSDavid Ahern { 1885c0b220cfSDavid Ahern struct fib6_info *from; 1886c0b220cfSDavid Ahern 1887c0b220cfSDavid Ahern from = rcu_dereference(rt->from); 1888cc5c073aSDavid Ahern if (!from || !(rt->rt6i_flags & RTF_CACHE)) 1889c0b220cfSDavid Ahern return -EINVAL; 1890c0b220cfSDavid Ahern 1891e659ba31SDavid Ahern if (from->nh) { 1892e659ba31SDavid Ahern struct fib6_nh_excptn_arg arg = { 1893e659ba31SDavid Ahern .rt = rt, 1894e659ba31SDavid Ahern .plen = from->fib6_src.plen 1895e659ba31SDavid Ahern }; 1896e659ba31SDavid Ahern int rc; 1897e659ba31SDavid Ahern 1898e659ba31SDavid Ahern /* rc = 1 means an entry was found */ 1899e659ba31SDavid Ahern rc = nexthop_for_each_fib6_nh(from->nh, 1900e659ba31SDavid Ahern rt6_nh_remove_exception_rt, 1901e659ba31SDavid Ahern &arg); 1902e659ba31SDavid Ahern return rc ? 0 : -ENOENT; 1903e659ba31SDavid Ahern } 1904e659ba31SDavid Ahern 19051cf844c7SDavid Ahern return fib6_nh_remove_exception(from->fib6_nh, 1906cc5c073aSDavid Ahern from->fib6_src.plen, rt); 1907c0b220cfSDavid Ahern } 1908c0b220cfSDavid Ahern 190935732d01SWei Wang /* Find rt6_ex which contains the passed in rt cache and 191035732d01SWei Wang * refresh its stamp 191135732d01SWei Wang */ 1912cc5c073aSDavid Ahern static void fib6_nh_update_exception(const struct fib6_nh *nh, int plen, 1913c0b220cfSDavid Ahern const struct rt6_info *rt) 191435732d01SWei Wang { 1915c0b220cfSDavid Ahern const struct in6_addr *src_key = NULL; 191635732d01SWei Wang struct rt6_exception_bucket *bucket; 191735732d01SWei Wang struct rt6_exception *rt6_ex; 1918193f3685SPaolo Abeni 1919cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, NULL); 192035732d01SWei Wang #ifdef CONFIG_IPV6_SUBTREES 1921cc5c073aSDavid Ahern /* rt6i_src.plen != 0 indicates 'from' is in subtree 1922cc5c073aSDavid Ahern * and exception table is indexed by a hash of 1923cc5c073aSDavid Ahern * both rt6i_dst and rt6i_src. 192435732d01SWei Wang * Otherwise, the exception table is indexed by 192535732d01SWei Wang * a hash of only rt6i_dst. 192635732d01SWei Wang */ 1927c0b220cfSDavid Ahern if (plen) 192835732d01SWei Wang src_key = &rt->rt6i_src.addr; 192935732d01SWei Wang #endif 1930cc5c073aSDavid Ahern rt6_ex = __rt6_find_exception_rcu(&bucket, &rt->rt6i_dst.addr, src_key); 193135732d01SWei Wang if (rt6_ex) 193235732d01SWei Wang rt6_ex->stamp = jiffies; 1933c0b220cfSDavid Ahern } 193435732d01SWei Wang 1935e659ba31SDavid Ahern struct fib6_nh_match_arg { 1936e659ba31SDavid Ahern const struct net_device *dev; 1937e659ba31SDavid Ahern const struct in6_addr *gw; 1938e659ba31SDavid Ahern struct fib6_nh *match; 1939e659ba31SDavid Ahern }; 1940e659ba31SDavid Ahern 1941e659ba31SDavid Ahern /* determine if fib6_nh has given device and gateway */ 1942e659ba31SDavid Ahern static int fib6_nh_find_match(struct fib6_nh *nh, void *_arg) 1943e659ba31SDavid Ahern { 1944e659ba31SDavid Ahern struct fib6_nh_match_arg *arg = _arg; 1945e659ba31SDavid Ahern 1946e659ba31SDavid Ahern if (arg->dev != nh->fib_nh_dev || 1947e659ba31SDavid Ahern (arg->gw && !nh->fib_nh_gw_family) || 1948e659ba31SDavid Ahern (!arg->gw && nh->fib_nh_gw_family) || 1949e659ba31SDavid Ahern (arg->gw && !ipv6_addr_equal(arg->gw, &nh->fib_nh_gw6))) 1950e659ba31SDavid Ahern return 0; 1951e659ba31SDavid Ahern 1952e659ba31SDavid Ahern arg->match = nh; 1953e659ba31SDavid Ahern 1954e659ba31SDavid Ahern /* found a match, break the loop */ 1955e659ba31SDavid Ahern return 1; 1956e659ba31SDavid Ahern } 1957e659ba31SDavid Ahern 1958c0b220cfSDavid Ahern static void rt6_update_exception_stamp_rt(struct rt6_info *rt) 1959c0b220cfSDavid Ahern { 1960c0b220cfSDavid Ahern struct fib6_info *from; 1961e659ba31SDavid Ahern struct fib6_nh *fib6_nh; 1962c0b220cfSDavid Ahern 1963c0b220cfSDavid Ahern rcu_read_lock(); 1964c0b220cfSDavid Ahern 1965c0b220cfSDavid Ahern from = rcu_dereference(rt->from); 1966c0b220cfSDavid Ahern if (!from || !(rt->rt6i_flags & RTF_CACHE)) 1967c0b220cfSDavid Ahern goto unlock; 1968c0b220cfSDavid Ahern 1969e659ba31SDavid Ahern if (from->nh) { 1970e659ba31SDavid Ahern struct fib6_nh_match_arg arg = { 1971e659ba31SDavid Ahern .dev = rt->dst.dev, 1972e659ba31SDavid Ahern .gw = &rt->rt6i_gateway, 1973e659ba31SDavid Ahern }; 1974e659ba31SDavid Ahern 1975e659ba31SDavid Ahern nexthop_for_each_fib6_nh(from->nh, fib6_nh_find_match, &arg); 1976e659ba31SDavid Ahern 1977e659ba31SDavid Ahern if (!arg.match) 1978cff6a327SDavid Ahern goto unlock; 1979e659ba31SDavid Ahern fib6_nh = arg.match; 1980e659ba31SDavid Ahern } else { 1981e659ba31SDavid Ahern fib6_nh = from->fib6_nh; 1982e659ba31SDavid Ahern } 1983e659ba31SDavid Ahern fib6_nh_update_exception(fib6_nh, from->fib6_src.plen, rt); 1984193f3685SPaolo Abeni unlock: 198535732d01SWei Wang rcu_read_unlock(); 198635732d01SWei Wang } 198735732d01SWei Wang 1988e9fa1495SStefano Brivio static bool rt6_mtu_change_route_allowed(struct inet6_dev *idev, 1989e9fa1495SStefano Brivio struct rt6_info *rt, int mtu) 1990e9fa1495SStefano Brivio { 1991e9fa1495SStefano Brivio /* If the new MTU is lower than the route PMTU, this new MTU will be the 1992e9fa1495SStefano Brivio * lowest MTU in the path: always allow updating the route PMTU to 1993e9fa1495SStefano Brivio * reflect PMTU decreases. 1994e9fa1495SStefano Brivio * 1995e9fa1495SStefano Brivio * If the new MTU is higher, and the route PMTU is equal to the local 1996e9fa1495SStefano Brivio * MTU, this means the old MTU is the lowest in the path, so allow 1997e9fa1495SStefano Brivio * updating it: if other nodes now have lower MTUs, PMTU discovery will 1998e9fa1495SStefano Brivio * handle this. 1999e9fa1495SStefano Brivio */ 2000e9fa1495SStefano Brivio 2001e9fa1495SStefano Brivio if (dst_mtu(&rt->dst) >= mtu) 2002e9fa1495SStefano Brivio return true; 2003e9fa1495SStefano Brivio 2004e9fa1495SStefano Brivio if (dst_mtu(&rt->dst) == idev->cnf.mtu6) 2005e9fa1495SStefano Brivio return true; 2006e9fa1495SStefano Brivio 2007e9fa1495SStefano Brivio return false; 2008e9fa1495SStefano Brivio } 2009e9fa1495SStefano Brivio 2010e9fa1495SStefano Brivio static void rt6_exceptions_update_pmtu(struct inet6_dev *idev, 2011cc5c073aSDavid Ahern const struct fib6_nh *nh, int mtu) 2012f5bbe7eeSWei Wang { 2013f5bbe7eeSWei Wang struct rt6_exception_bucket *bucket; 2014f5bbe7eeSWei Wang struct rt6_exception *rt6_ex; 2015f5bbe7eeSWei Wang int i; 2016f5bbe7eeSWei Wang 2017cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); 2018e9fa1495SStefano Brivio if (!bucket) 2019e9fa1495SStefano Brivio return; 2020e9fa1495SStefano Brivio 2021f5bbe7eeSWei Wang for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { 2022f5bbe7eeSWei Wang hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) { 2023f5bbe7eeSWei Wang struct rt6_info *entry = rt6_ex->rt6i; 2024e9fa1495SStefano Brivio 2025e9fa1495SStefano Brivio /* For RTF_CACHE with rt6i_pmtu == 0 (i.e. a redirected 2026d4ead6b3SDavid Ahern * route), the metrics of its rt->from have already 2027f5bbe7eeSWei Wang * been updated. 2028f5bbe7eeSWei Wang */ 2029d4ead6b3SDavid Ahern if (dst_metric_raw(&entry->dst, RTAX_MTU) && 2030e9fa1495SStefano Brivio rt6_mtu_change_route_allowed(idev, entry, mtu)) 2031d4ead6b3SDavid Ahern dst_metric_set(&entry->dst, RTAX_MTU, mtu); 2032f5bbe7eeSWei Wang } 2033f5bbe7eeSWei Wang bucket++; 2034f5bbe7eeSWei Wang } 2035f5bbe7eeSWei Wang } 2036f5bbe7eeSWei Wang 2037b16cb459SWei Wang #define RTF_CACHE_GATEWAY (RTF_GATEWAY | RTF_CACHE) 2038b16cb459SWei Wang 2039cc5c073aSDavid Ahern static void fib6_nh_exceptions_clean_tohost(const struct fib6_nh *nh, 2040cc5c073aSDavid Ahern const struct in6_addr *gateway) 2041b16cb459SWei Wang { 2042b16cb459SWei Wang struct rt6_exception_bucket *bucket; 2043b16cb459SWei Wang struct rt6_exception *rt6_ex; 2044b16cb459SWei Wang struct hlist_node *tmp; 2045b16cb459SWei Wang int i; 2046b16cb459SWei Wang 2047cc5c073aSDavid Ahern if (!rcu_access_pointer(nh->rt6i_exception_bucket)) 2048b16cb459SWei Wang return; 2049b16cb459SWei Wang 2050b16cb459SWei Wang spin_lock_bh(&rt6_exception_lock); 2051cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); 2052b16cb459SWei Wang if (bucket) { 2053b16cb459SWei Wang for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { 2054b16cb459SWei Wang hlist_for_each_entry_safe(rt6_ex, tmp, 2055b16cb459SWei Wang &bucket->chain, hlist) { 2056b16cb459SWei Wang struct rt6_info *entry = rt6_ex->rt6i; 2057b16cb459SWei Wang 2058b16cb459SWei Wang if ((entry->rt6i_flags & RTF_CACHE_GATEWAY) == 2059b16cb459SWei Wang RTF_CACHE_GATEWAY && 2060b16cb459SWei Wang ipv6_addr_equal(gateway, 2061b16cb459SWei Wang &entry->rt6i_gateway)) { 2062b16cb459SWei Wang rt6_remove_exception(bucket, rt6_ex); 2063b16cb459SWei Wang } 2064b16cb459SWei Wang } 2065b16cb459SWei Wang bucket++; 2066b16cb459SWei Wang } 2067b16cb459SWei Wang } 2068b16cb459SWei Wang 2069b16cb459SWei Wang spin_unlock_bh(&rt6_exception_lock); 2070b16cb459SWei Wang } 2071b16cb459SWei Wang 2072c757faa8SWei Wang static void rt6_age_examine_exception(struct rt6_exception_bucket *bucket, 2073c757faa8SWei Wang struct rt6_exception *rt6_ex, 2074c757faa8SWei Wang struct fib6_gc_args *gc_args, 2075c757faa8SWei Wang unsigned long now) 2076c757faa8SWei Wang { 2077c757faa8SWei Wang struct rt6_info *rt = rt6_ex->rt6i; 2078c757faa8SWei Wang 20791859bac0SPaolo Abeni /* we are pruning and obsoleting aged-out and non gateway exceptions 20801859bac0SPaolo Abeni * even if others have still references to them, so that on next 20811859bac0SPaolo Abeni * dst_check() such references can be dropped. 20821859bac0SPaolo Abeni * EXPIRES exceptions - e.g. pmtu-generated ones are pruned when 20831859bac0SPaolo Abeni * expired, independently from their aging, as per RFC 8201 section 4 20841859bac0SPaolo Abeni */ 208531afeb42SWei Wang if (!(rt->rt6i_flags & RTF_EXPIRES)) { 208631afeb42SWei Wang if (time_after_eq(now, rt->dst.lastuse + gc_args->timeout)) { 2087c757faa8SWei Wang RT6_TRACE("aging clone %p\n", rt); 2088c757faa8SWei Wang rt6_remove_exception(bucket, rt6_ex); 2089c757faa8SWei Wang return; 209031afeb42SWei Wang } 209131afeb42SWei Wang } else if (time_after(jiffies, rt->dst.expires)) { 209231afeb42SWei Wang RT6_TRACE("purging expired route %p\n", rt); 209331afeb42SWei Wang rt6_remove_exception(bucket, rt6_ex); 209431afeb42SWei Wang return; 209531afeb42SWei Wang } 209631afeb42SWei Wang 209731afeb42SWei Wang if (rt->rt6i_flags & RTF_GATEWAY) { 2098c757faa8SWei Wang struct neighbour *neigh; 2099c757faa8SWei Wang 21001bfa26ffSEric Dumazet neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway); 21011bfa26ffSEric Dumazet 2102b7a320c3SXu Jia if (!(neigh && (neigh->flags & NTF_ROUTER))) { 2103c757faa8SWei Wang RT6_TRACE("purging route %p via non-router but gateway\n", 2104c757faa8SWei Wang rt); 2105c757faa8SWei Wang rt6_remove_exception(bucket, rt6_ex); 2106c757faa8SWei Wang return; 2107c757faa8SWei Wang } 2108c757faa8SWei Wang } 210931afeb42SWei Wang 2110c757faa8SWei Wang gc_args->more++; 2111c757faa8SWei Wang } 2112c757faa8SWei Wang 2113cc5c073aSDavid Ahern static void fib6_nh_age_exceptions(const struct fib6_nh *nh, 2114c757faa8SWei Wang struct fib6_gc_args *gc_args, 2115c757faa8SWei Wang unsigned long now) 2116c757faa8SWei Wang { 2117c757faa8SWei Wang struct rt6_exception_bucket *bucket; 2118c757faa8SWei Wang struct rt6_exception *rt6_ex; 2119c757faa8SWei Wang struct hlist_node *tmp; 2120c757faa8SWei Wang int i; 2121c757faa8SWei Wang 2122cc5c073aSDavid Ahern if (!rcu_access_pointer(nh->rt6i_exception_bucket)) 2123c757faa8SWei Wang return; 2124c757faa8SWei Wang 21251bfa26ffSEric Dumazet rcu_read_lock_bh(); 21261bfa26ffSEric Dumazet spin_lock(&rt6_exception_lock); 2127cc5c073aSDavid Ahern bucket = fib6_nh_get_excptn_bucket(nh, &rt6_exception_lock); 2128c757faa8SWei Wang if (bucket) { 2129c757faa8SWei Wang for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { 2130c757faa8SWei Wang hlist_for_each_entry_safe(rt6_ex, tmp, 2131c757faa8SWei Wang &bucket->chain, hlist) { 2132c757faa8SWei Wang rt6_age_examine_exception(bucket, rt6_ex, 2133c757faa8SWei Wang gc_args, now); 2134c757faa8SWei Wang } 2135c757faa8SWei Wang bucket++; 2136c757faa8SWei Wang } 2137c757faa8SWei Wang } 21381bfa26ffSEric Dumazet spin_unlock(&rt6_exception_lock); 21391bfa26ffSEric Dumazet rcu_read_unlock_bh(); 2140c757faa8SWei Wang } 2141c757faa8SWei Wang 2142e659ba31SDavid Ahern struct fib6_nh_age_excptn_arg { 2143e659ba31SDavid Ahern struct fib6_gc_args *gc_args; 2144e659ba31SDavid Ahern unsigned long now; 2145e659ba31SDavid Ahern }; 2146e659ba31SDavid Ahern 2147e659ba31SDavid Ahern static int rt6_nh_age_exceptions(struct fib6_nh *nh, void *_arg) 2148e659ba31SDavid Ahern { 2149e659ba31SDavid Ahern struct fib6_nh_age_excptn_arg *arg = _arg; 2150e659ba31SDavid Ahern 2151e659ba31SDavid Ahern fib6_nh_age_exceptions(nh, arg->gc_args, arg->now); 2152e659ba31SDavid Ahern return 0; 2153e659ba31SDavid Ahern } 2154e659ba31SDavid Ahern 2155cc5c073aSDavid Ahern void rt6_age_exceptions(struct fib6_info *f6i, 2156c0b220cfSDavid Ahern struct fib6_gc_args *gc_args, 2157c0b220cfSDavid Ahern unsigned long now) 2158c0b220cfSDavid Ahern { 2159e659ba31SDavid Ahern if (f6i->nh) { 2160e659ba31SDavid Ahern struct fib6_nh_age_excptn_arg arg = { 2161e659ba31SDavid Ahern .gc_args = gc_args, 2162e659ba31SDavid Ahern .now = now 2163e659ba31SDavid Ahern }; 2164e659ba31SDavid Ahern 2165e659ba31SDavid Ahern nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_age_exceptions, 2166e659ba31SDavid Ahern &arg); 2167e659ba31SDavid Ahern } else { 21681cf844c7SDavid Ahern fib6_nh_age_exceptions(f6i->fib6_nh, gc_args, now); 2169c0b220cfSDavid Ahern } 2170e659ba31SDavid Ahern } 2171c0b220cfSDavid Ahern 21721d053da9SDavid Ahern /* must be called with rcu lock held */ 2173effda4ddSDavid Ahern int fib6_table_lookup(struct net *net, struct fib6_table *table, int oif, 2174effda4ddSDavid Ahern struct flowi6 *fl6, struct fib6_result *res, int strict) 21751da177e4SLinus Torvalds { 2176367efcb9SMartin KaFai Lau struct fib6_node *fn, *saved_fn; 21771da177e4SLinus Torvalds 21786454743bSDavid Ahern fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); 2179367efcb9SMartin KaFai Lau saved_fn = fn; 21801da177e4SLinus Torvalds 2181a3c00e46SMartin KaFai Lau redo_rt6_select: 2182effda4ddSDavid Ahern rt6_select(net, fn, oif, res, strict); 2183effda4ddSDavid Ahern if (res->f6i == net->ipv6.fib6_null_entry) { 2184a3c00e46SMartin KaFai Lau fn = fib6_backtrack(fn, &fl6->saddr); 2185a3c00e46SMartin KaFai Lau if (fn) 2186a3c00e46SMartin KaFai Lau goto redo_rt6_select; 2187367efcb9SMartin KaFai Lau else if (strict & RT6_LOOKUP_F_REACHABLE) { 2188367efcb9SMartin KaFai Lau /* also consider unreachable route */ 2189367efcb9SMartin KaFai Lau strict &= ~RT6_LOOKUP_F_REACHABLE; 2190367efcb9SMartin KaFai Lau fn = saved_fn; 2191367efcb9SMartin KaFai Lau goto redo_rt6_select; 2192367efcb9SMartin KaFai Lau } 2193a3c00e46SMartin KaFai Lau } 2194a3c00e46SMartin KaFai Lau 2195effda4ddSDavid Ahern trace_fib6_table_lookup(net, res, table, fl6); 2196d52d3997SMartin KaFai Lau 2197effda4ddSDavid Ahern return 0; 21981d053da9SDavid Ahern } 21991d053da9SDavid Ahern 22001d053da9SDavid Ahern struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, 22011d053da9SDavid Ahern int oif, struct flowi6 *fl6, 22021d053da9SDavid Ahern const struct sk_buff *skb, int flags) 22031d053da9SDavid Ahern { 2204b1d40991SDavid Ahern struct fib6_result res = {}; 22050e09edccSWei Wang struct rt6_info *rt = NULL; 22061d053da9SDavid Ahern int strict = 0; 22071d053da9SDavid Ahern 22080e09edccSWei Wang WARN_ON_ONCE((flags & RT6_LOOKUP_F_DST_NOREF) && 22090e09edccSWei Wang !rcu_read_lock_held()); 22100e09edccSWei Wang 22111d053da9SDavid Ahern strict |= flags & RT6_LOOKUP_F_IFACE; 22121d053da9SDavid Ahern strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE; 22131d053da9SDavid Ahern if (net->ipv6.devconf_all->forwarding == 0) 22141d053da9SDavid Ahern strict |= RT6_LOOKUP_F_REACHABLE; 22151d053da9SDavid Ahern 22161d053da9SDavid Ahern rcu_read_lock(); 22171d053da9SDavid Ahern 2218effda4ddSDavid Ahern fib6_table_lookup(net, table, oif, fl6, &res, strict); 22190e09edccSWei Wang if (res.f6i == net->ipv6.fib6_null_entry) 22200e09edccSWei Wang goto out; 222123fb93a4SDavid Ahern 2222b1d40991SDavid Ahern fib6_select_path(net, &res, fl6, oif, false, skb, strict); 2223d83009d4SDavid Ahern 222423fb93a4SDavid Ahern /*Search through exception table */ 22257e4b5128SDavid Ahern rt = rt6_find_cached_rt(&res, &fl6->daddr, &fl6->saddr); 222623fb93a4SDavid Ahern if (rt) { 22270e09edccSWei Wang goto out; 22283da59bd9SMartin KaFai Lau } else if (unlikely((fl6->flowi6_flags & FLOWI_FLAG_KNOWN_NH) && 2229b1d40991SDavid Ahern !res.nh->fib_nh_gw_family)) { 22303da59bd9SMartin KaFai Lau /* Create a RTF_CACHE clone which will not be 22313da59bd9SMartin KaFai Lau * owned by the fib6 tree. It is for the special case where 22323da59bd9SMartin KaFai Lau * the daddr in the skb during the neighbor look-up is different 22333da59bd9SMartin KaFai Lau * from the fl6->daddr used to look-up route here. 22343da59bd9SMartin KaFai Lau */ 22350e09edccSWei Wang rt = ip6_rt_cache_alloc(&res, &fl6->daddr, NULL); 22363da59bd9SMartin KaFai Lau 22370e09edccSWei Wang if (rt) { 22380e09edccSWei Wang /* 1 refcnt is taken during ip6_rt_cache_alloc(). 22390e09edccSWei Wang * As rt6_uncached_list_add() does not consume refcnt, 22400e09edccSWei Wang * this refcnt is always returned to the caller even 22410e09edccSWei Wang * if caller sets RT6_LOOKUP_F_DST_NOREF flag. 22420e09edccSWei Wang */ 22430e09edccSWei Wang rt6_uncached_list_add(rt); 22444d85cd0cSDavid Ahern rcu_read_unlock(); 22453da59bd9SMartin KaFai Lau 22460e09edccSWei Wang return rt; 22471cfb71eeSWei Wang } 2248d52d3997SMartin KaFai Lau } else { 2249d52d3997SMartin KaFai Lau /* Get a percpu copy */ 2250951f788aSEric Dumazet local_bh_disable(); 22510e09edccSWei Wang rt = rt6_get_pcpu_route(&res); 2252d52d3997SMartin KaFai Lau 22530e09edccSWei Wang if (!rt) 22540e09edccSWei Wang rt = rt6_make_pcpu_route(net, &res); 225593531c67SDavid Ahern 2256951f788aSEric Dumazet local_bh_enable(); 22570e09edccSWei Wang } 22580e09edccSWei Wang out: 22590e09edccSWei Wang if (!rt) 22600e09edccSWei Wang rt = net->ipv6.ip6_null_entry; 22610e09edccSWei Wang if (!(flags & RT6_LOOKUP_F_DST_NOREF)) 22620e09edccSWei Wang ip6_hold_safe(net, &rt); 2263951f788aSEric Dumazet rcu_read_unlock(); 2264d4bea421SDavid Ahern 22650e09edccSWei Wang return rt; 2266c71099acSThomas Graf } 22679ff74384SDavid Ahern EXPORT_SYMBOL_GPL(ip6_pol_route); 2268c71099acSThomas Graf 226955cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_input(struct net *net, 2270b75cc8f9SDavid Ahern struct fib6_table *table, 2271b75cc8f9SDavid Ahern struct flowi6 *fl6, 2272b75cc8f9SDavid Ahern const struct sk_buff *skb, 2273b75cc8f9SDavid Ahern int flags) 22744acad72dSPavel Emelyanov { 2275b75cc8f9SDavid Ahern return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, skb, flags); 22764acad72dSPavel Emelyanov } 22774acad72dSPavel Emelyanov 2278d409b847SMahesh Bandewar struct dst_entry *ip6_route_input_lookup(struct net *net, 227972331bc0SShmulik Ladkani struct net_device *dev, 2280b75cc8f9SDavid Ahern struct flowi6 *fl6, 2281b75cc8f9SDavid Ahern const struct sk_buff *skb, 2282b75cc8f9SDavid Ahern int flags) 228372331bc0SShmulik Ladkani { 228472331bc0SShmulik Ladkani if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG) 228572331bc0SShmulik Ladkani flags |= RT6_LOOKUP_F_IFACE; 228672331bc0SShmulik Ladkani 2287b75cc8f9SDavid Ahern return fib6_rule_lookup(net, fl6, skb, flags, ip6_pol_route_input); 228872331bc0SShmulik Ladkani } 2289d409b847SMahesh Bandewar EXPORT_SYMBOL_GPL(ip6_route_input_lookup); 229072331bc0SShmulik Ladkani 229123aebdacSJakub Sitnicki static void ip6_multipath_l3_keys(const struct sk_buff *skb, 22925e5d6fedSRoopa Prabhu struct flow_keys *keys, 22935e5d6fedSRoopa Prabhu struct flow_keys *flkeys) 229423aebdacSJakub Sitnicki { 229523aebdacSJakub Sitnicki const struct ipv6hdr *outer_iph = ipv6_hdr(skb); 229623aebdacSJakub Sitnicki const struct ipv6hdr *key_iph = outer_iph; 22975e5d6fedSRoopa Prabhu struct flow_keys *_flkeys = flkeys; 229823aebdacSJakub Sitnicki const struct ipv6hdr *inner_iph; 229923aebdacSJakub Sitnicki const struct icmp6hdr *icmph; 230023aebdacSJakub Sitnicki struct ipv6hdr _inner_iph; 2301cea67a2dSEric Dumazet struct icmp6hdr _icmph; 230223aebdacSJakub Sitnicki 230323aebdacSJakub Sitnicki if (likely(outer_iph->nexthdr != IPPROTO_ICMPV6)) 230423aebdacSJakub Sitnicki goto out; 230523aebdacSJakub Sitnicki 2306cea67a2dSEric Dumazet icmph = skb_header_pointer(skb, skb_transport_offset(skb), 2307cea67a2dSEric Dumazet sizeof(_icmph), &_icmph); 2308cea67a2dSEric Dumazet if (!icmph) 2309cea67a2dSEric Dumazet goto out; 2310cea67a2dSEric Dumazet 231154074f1dSMatteo Croce if (!icmpv6_is_err(icmph->icmp6_type)) 231223aebdacSJakub Sitnicki goto out; 231323aebdacSJakub Sitnicki 231423aebdacSJakub Sitnicki inner_iph = skb_header_pointer(skb, 231523aebdacSJakub Sitnicki skb_transport_offset(skb) + sizeof(*icmph), 231623aebdacSJakub Sitnicki sizeof(_inner_iph), &_inner_iph); 231723aebdacSJakub Sitnicki if (!inner_iph) 231823aebdacSJakub Sitnicki goto out; 231923aebdacSJakub Sitnicki 232023aebdacSJakub Sitnicki key_iph = inner_iph; 23215e5d6fedSRoopa Prabhu _flkeys = NULL; 232223aebdacSJakub Sitnicki out: 23235e5d6fedSRoopa Prabhu if (_flkeys) { 23245e5d6fedSRoopa Prabhu keys->addrs.v6addrs.src = _flkeys->addrs.v6addrs.src; 23255e5d6fedSRoopa Prabhu keys->addrs.v6addrs.dst = _flkeys->addrs.v6addrs.dst; 23265e5d6fedSRoopa Prabhu keys->tags.flow_label = _flkeys->tags.flow_label; 23275e5d6fedSRoopa Prabhu keys->basic.ip_proto = _flkeys->basic.ip_proto; 23285e5d6fedSRoopa Prabhu } else { 232923aebdacSJakub Sitnicki keys->addrs.v6addrs.src = key_iph->saddr; 233023aebdacSJakub Sitnicki keys->addrs.v6addrs.dst = key_iph->daddr; 2331fa1be7e0SMichal Kubecek keys->tags.flow_label = ip6_flowlabel(key_iph); 233223aebdacSJakub Sitnicki keys->basic.ip_proto = key_iph->nexthdr; 233323aebdacSJakub Sitnicki } 23345e5d6fedSRoopa Prabhu } 233523aebdacSJakub Sitnicki 233673c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_outer(const struct net *net, 233773c2c5cbSIdo Schimmel const struct sk_buff *skb, 233873c2c5cbSIdo Schimmel bool *p_has_inner) 233973c2c5cbSIdo Schimmel { 234073c2c5cbSIdo Schimmel u32 hash_fields = ip6_multipath_hash_fields(net); 234173c2c5cbSIdo Schimmel struct flow_keys keys, hash_keys; 234273c2c5cbSIdo Schimmel 234373c2c5cbSIdo Schimmel if (!(hash_fields & FIB_MULTIPATH_HASH_FIELD_OUTER_MASK)) 234473c2c5cbSIdo Schimmel return 0; 234573c2c5cbSIdo Schimmel 234673c2c5cbSIdo Schimmel memset(&hash_keys, 0, sizeof(hash_keys)); 234773c2c5cbSIdo Schimmel skb_flow_dissect_flow_keys(skb, &keys, FLOW_DISSECTOR_F_STOP_AT_ENCAP); 234873c2c5cbSIdo Schimmel 234973c2c5cbSIdo Schimmel hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 235073c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_IP) 235173c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.src = keys.addrs.v6addrs.src; 235273c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_IP) 235373c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.dst = keys.addrs.v6addrs.dst; 235473c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_IP_PROTO) 235573c2c5cbSIdo Schimmel hash_keys.basic.ip_proto = keys.basic.ip_proto; 235673c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_FLOWLABEL) 235773c2c5cbSIdo Schimmel hash_keys.tags.flow_label = keys.tags.flow_label; 235873c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_PORT) 235973c2c5cbSIdo Schimmel hash_keys.ports.src = keys.ports.src; 236073c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_PORT) 236173c2c5cbSIdo Schimmel hash_keys.ports.dst = keys.ports.dst; 236273c2c5cbSIdo Schimmel 236373c2c5cbSIdo Schimmel *p_has_inner = !!(keys.control.flags & FLOW_DIS_ENCAPSULATION); 236473c2c5cbSIdo Schimmel return flow_hash_from_keys(&hash_keys); 236573c2c5cbSIdo Schimmel } 236673c2c5cbSIdo Schimmel 236773c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_inner(const struct net *net, 236873c2c5cbSIdo Schimmel const struct sk_buff *skb, 236973c2c5cbSIdo Schimmel bool has_inner) 237073c2c5cbSIdo Schimmel { 237173c2c5cbSIdo Schimmel u32 hash_fields = ip6_multipath_hash_fields(net); 237273c2c5cbSIdo Schimmel struct flow_keys keys, hash_keys; 237373c2c5cbSIdo Schimmel 237473c2c5cbSIdo Schimmel /* We assume the packet carries an encapsulation, but if none was 237573c2c5cbSIdo Schimmel * encountered during dissection of the outer flow, then there is no 237673c2c5cbSIdo Schimmel * point in calling the flow dissector again. 237773c2c5cbSIdo Schimmel */ 237873c2c5cbSIdo Schimmel if (!has_inner) 237973c2c5cbSIdo Schimmel return 0; 238073c2c5cbSIdo Schimmel 238173c2c5cbSIdo Schimmel if (!(hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_MASK)) 238273c2c5cbSIdo Schimmel return 0; 238373c2c5cbSIdo Schimmel 238473c2c5cbSIdo Schimmel memset(&hash_keys, 0, sizeof(hash_keys)); 238573c2c5cbSIdo Schimmel skb_flow_dissect_flow_keys(skb, &keys, 0); 238673c2c5cbSIdo Schimmel 238773c2c5cbSIdo Schimmel if (!(keys.control.flags & FLOW_DIS_ENCAPSULATION)) 238873c2c5cbSIdo Schimmel return 0; 238973c2c5cbSIdo Schimmel 239073c2c5cbSIdo Schimmel if (keys.control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) { 239173c2c5cbSIdo Schimmel hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS; 239273c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_SRC_IP) 239373c2c5cbSIdo Schimmel hash_keys.addrs.v4addrs.src = keys.addrs.v4addrs.src; 239473c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_DST_IP) 239573c2c5cbSIdo Schimmel hash_keys.addrs.v4addrs.dst = keys.addrs.v4addrs.dst; 239673c2c5cbSIdo Schimmel } else if (keys.control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS) { 239773c2c5cbSIdo Schimmel hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 239873c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_SRC_IP) 239973c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.src = keys.addrs.v6addrs.src; 240073c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_DST_IP) 240173c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.dst = keys.addrs.v6addrs.dst; 240273c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_FLOWLABEL) 240373c2c5cbSIdo Schimmel hash_keys.tags.flow_label = keys.tags.flow_label; 240473c2c5cbSIdo Schimmel } 240573c2c5cbSIdo Schimmel 240673c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_IP_PROTO) 240773c2c5cbSIdo Schimmel hash_keys.basic.ip_proto = keys.basic.ip_proto; 240873c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_SRC_PORT) 240973c2c5cbSIdo Schimmel hash_keys.ports.src = keys.ports.src; 241073c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_INNER_DST_PORT) 241173c2c5cbSIdo Schimmel hash_keys.ports.dst = keys.ports.dst; 241273c2c5cbSIdo Schimmel 241373c2c5cbSIdo Schimmel return flow_hash_from_keys(&hash_keys); 241473c2c5cbSIdo Schimmel } 241573c2c5cbSIdo Schimmel 241673c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_skb(const struct net *net, 241773c2c5cbSIdo Schimmel const struct sk_buff *skb) 241873c2c5cbSIdo Schimmel { 241973c2c5cbSIdo Schimmel u32 mhash, mhash_inner; 242073c2c5cbSIdo Schimmel bool has_inner = true; 242173c2c5cbSIdo Schimmel 242273c2c5cbSIdo Schimmel mhash = rt6_multipath_custom_hash_outer(net, skb, &has_inner); 242373c2c5cbSIdo Schimmel mhash_inner = rt6_multipath_custom_hash_inner(net, skb, has_inner); 242473c2c5cbSIdo Schimmel 242573c2c5cbSIdo Schimmel return jhash_2words(mhash, mhash_inner, 0); 242673c2c5cbSIdo Schimmel } 242773c2c5cbSIdo Schimmel 242873c2c5cbSIdo Schimmel static u32 rt6_multipath_custom_hash_fl6(const struct net *net, 242973c2c5cbSIdo Schimmel const struct flowi6 *fl6) 243073c2c5cbSIdo Schimmel { 243173c2c5cbSIdo Schimmel u32 hash_fields = ip6_multipath_hash_fields(net); 243273c2c5cbSIdo Schimmel struct flow_keys hash_keys; 243373c2c5cbSIdo Schimmel 243473c2c5cbSIdo Schimmel if (!(hash_fields & FIB_MULTIPATH_HASH_FIELD_OUTER_MASK)) 243573c2c5cbSIdo Schimmel return 0; 243673c2c5cbSIdo Schimmel 243773c2c5cbSIdo Schimmel memset(&hash_keys, 0, sizeof(hash_keys)); 243873c2c5cbSIdo Schimmel hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 243973c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_IP) 244073c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.src = fl6->saddr; 244173c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_IP) 244273c2c5cbSIdo Schimmel hash_keys.addrs.v6addrs.dst = fl6->daddr; 244373c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_IP_PROTO) 244473c2c5cbSIdo Schimmel hash_keys.basic.ip_proto = fl6->flowi6_proto; 244573c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_FLOWLABEL) 244673c2c5cbSIdo Schimmel hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6); 244773c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_SRC_PORT) 244873c2c5cbSIdo Schimmel hash_keys.ports.src = fl6->fl6_sport; 244973c2c5cbSIdo Schimmel if (hash_fields & FIB_MULTIPATH_HASH_FIELD_DST_PORT) 245073c2c5cbSIdo Schimmel hash_keys.ports.dst = fl6->fl6_dport; 245173c2c5cbSIdo Schimmel 245273c2c5cbSIdo Schimmel return flow_hash_from_keys(&hash_keys); 245373c2c5cbSIdo Schimmel } 245473c2c5cbSIdo Schimmel 245523aebdacSJakub Sitnicki /* if skb is set it will be used and fl6 can be NULL */ 2456b4bac172SDavid Ahern u32 rt6_multipath_hash(const struct net *net, const struct flowi6 *fl6, 2457b4bac172SDavid Ahern const struct sk_buff *skb, struct flow_keys *flkeys) 245823aebdacSJakub Sitnicki { 245923aebdacSJakub Sitnicki struct flow_keys hash_keys; 2460b95b6e07SIdo Schimmel u32 mhash = 0; 246123aebdacSJakub Sitnicki 2462bbfa047aSDavid S. Miller switch (ip6_multipath_hash_policy(net)) { 2463b4bac172SDavid Ahern case 0: 24646f74b6c2SDavid Ahern memset(&hash_keys, 0, sizeof(hash_keys)); 24656f74b6c2SDavid Ahern hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 24669a2a537aSDavid Ahern if (skb) { 24675e5d6fedSRoopa Prabhu ip6_multipath_l3_keys(skb, &hash_keys, flkeys); 24689a2a537aSDavid Ahern } else { 24699a2a537aSDavid Ahern hash_keys.addrs.v6addrs.src = fl6->saddr; 24709a2a537aSDavid Ahern hash_keys.addrs.v6addrs.dst = fl6->daddr; 2471fa1be7e0SMichal Kubecek hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6); 24729a2a537aSDavid Ahern hash_keys.basic.ip_proto = fl6->flowi6_proto; 247323aebdacSJakub Sitnicki } 2474b95b6e07SIdo Schimmel mhash = flow_hash_from_keys(&hash_keys); 2475b4bac172SDavid Ahern break; 2476b4bac172SDavid Ahern case 1: 2477b4bac172SDavid Ahern if (skb) { 2478b4bac172SDavid Ahern unsigned int flag = FLOW_DISSECTOR_F_STOP_AT_ENCAP; 2479b4bac172SDavid Ahern struct flow_keys keys; 2480b4bac172SDavid Ahern 2481b4bac172SDavid Ahern /* short-circuit if we already have L4 hash present */ 2482b4bac172SDavid Ahern if (skb->l4_hash) 2483b4bac172SDavid Ahern return skb_get_hash_raw(skb) >> 1; 2484b4bac172SDavid Ahern 2485b4bac172SDavid Ahern memset(&hash_keys, 0, sizeof(hash_keys)); 2486b4bac172SDavid Ahern 2487b4bac172SDavid Ahern if (!flkeys) { 2488b4bac172SDavid Ahern skb_flow_dissect_flow_keys(skb, &keys, flag); 2489b4bac172SDavid Ahern flkeys = &keys; 2490b4bac172SDavid Ahern } 2491b4bac172SDavid Ahern hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2492b4bac172SDavid Ahern hash_keys.addrs.v6addrs.src = flkeys->addrs.v6addrs.src; 2493b4bac172SDavid Ahern hash_keys.addrs.v6addrs.dst = flkeys->addrs.v6addrs.dst; 2494b4bac172SDavid Ahern hash_keys.ports.src = flkeys->ports.src; 2495b4bac172SDavid Ahern hash_keys.ports.dst = flkeys->ports.dst; 2496b4bac172SDavid Ahern hash_keys.basic.ip_proto = flkeys->basic.ip_proto; 2497b4bac172SDavid Ahern } else { 2498b4bac172SDavid Ahern memset(&hash_keys, 0, sizeof(hash_keys)); 2499b4bac172SDavid Ahern hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2500b4bac172SDavid Ahern hash_keys.addrs.v6addrs.src = fl6->saddr; 2501b4bac172SDavid Ahern hash_keys.addrs.v6addrs.dst = fl6->daddr; 2502b4bac172SDavid Ahern hash_keys.ports.src = fl6->fl6_sport; 2503b4bac172SDavid Ahern hash_keys.ports.dst = fl6->fl6_dport; 2504b4bac172SDavid Ahern hash_keys.basic.ip_proto = fl6->flowi6_proto; 2505b4bac172SDavid Ahern } 2506b95b6e07SIdo Schimmel mhash = flow_hash_from_keys(&hash_keys); 2507b4bac172SDavid Ahern break; 2508d8f74f09SStephen Suryaputra case 2: 2509d8f74f09SStephen Suryaputra memset(&hash_keys, 0, sizeof(hash_keys)); 2510d8f74f09SStephen Suryaputra hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2511d8f74f09SStephen Suryaputra if (skb) { 2512d8f74f09SStephen Suryaputra struct flow_keys keys; 2513d8f74f09SStephen Suryaputra 2514d8f74f09SStephen Suryaputra if (!flkeys) { 2515d8f74f09SStephen Suryaputra skb_flow_dissect_flow_keys(skb, &keys, 0); 2516d8f74f09SStephen Suryaputra flkeys = &keys; 2517d8f74f09SStephen Suryaputra } 2518d8f74f09SStephen Suryaputra 2519d8f74f09SStephen Suryaputra /* Inner can be v4 or v6 */ 2520d8f74f09SStephen Suryaputra if (flkeys->control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) { 2521d8f74f09SStephen Suryaputra hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS; 2522d8f74f09SStephen Suryaputra hash_keys.addrs.v4addrs.src = flkeys->addrs.v4addrs.src; 2523d8f74f09SStephen Suryaputra hash_keys.addrs.v4addrs.dst = flkeys->addrs.v4addrs.dst; 2524d8f74f09SStephen Suryaputra } else if (flkeys->control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS) { 2525d8f74f09SStephen Suryaputra hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2526d8f74f09SStephen Suryaputra hash_keys.addrs.v6addrs.src = flkeys->addrs.v6addrs.src; 2527d8f74f09SStephen Suryaputra hash_keys.addrs.v6addrs.dst = flkeys->addrs.v6addrs.dst; 2528d8f74f09SStephen Suryaputra hash_keys.tags.flow_label = flkeys->tags.flow_label; 2529d8f74f09SStephen Suryaputra hash_keys.basic.ip_proto = flkeys->basic.ip_proto; 2530d8f74f09SStephen Suryaputra } else { 2531d8f74f09SStephen Suryaputra /* Same as case 0 */ 2532d8f74f09SStephen Suryaputra hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2533d8f74f09SStephen Suryaputra ip6_multipath_l3_keys(skb, &hash_keys, flkeys); 2534d8f74f09SStephen Suryaputra } 2535d8f74f09SStephen Suryaputra } else { 2536d8f74f09SStephen Suryaputra /* Same as case 0 */ 2537d8f74f09SStephen Suryaputra hash_keys.control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; 2538d8f74f09SStephen Suryaputra hash_keys.addrs.v6addrs.src = fl6->saddr; 2539d8f74f09SStephen Suryaputra hash_keys.addrs.v6addrs.dst = fl6->daddr; 2540d8f74f09SStephen Suryaputra hash_keys.tags.flow_label = (__force u32)flowi6_get_flowlabel(fl6); 2541d8f74f09SStephen Suryaputra hash_keys.basic.ip_proto = fl6->flowi6_proto; 2542d8f74f09SStephen Suryaputra } 2543b95b6e07SIdo Schimmel mhash = flow_hash_from_keys(&hash_keys); 2544d8f74f09SStephen Suryaputra break; 254573c2c5cbSIdo Schimmel case 3: 254673c2c5cbSIdo Schimmel if (skb) 254773c2c5cbSIdo Schimmel mhash = rt6_multipath_custom_hash_skb(net, skb); 254873c2c5cbSIdo Schimmel else 254973c2c5cbSIdo Schimmel mhash = rt6_multipath_custom_hash_fl6(net, fl6); 255073c2c5cbSIdo Schimmel break; 2551b4bac172SDavid Ahern } 255223aebdacSJakub Sitnicki 25539a2a537aSDavid Ahern return mhash >> 1; 255423aebdacSJakub Sitnicki } 255523aebdacSJakub Sitnicki 255667f415ddSWei Wang /* Called with rcu held */ 2557c71099acSThomas Graf void ip6_route_input(struct sk_buff *skb) 2558c71099acSThomas Graf { 2559b71d1d42SEric Dumazet const struct ipv6hdr *iph = ipv6_hdr(skb); 2560c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(skb->dev); 256167f415ddSWei Wang int flags = RT6_LOOKUP_F_HAS_SADDR | RT6_LOOKUP_F_DST_NOREF; 2562904af04dSJiri Benc struct ip_tunnel_info *tun_info; 25634c9483b2SDavid S. Miller struct flowi6 fl6 = { 2564e0d56fddSDavid Ahern .flowi6_iif = skb->dev->ifindex, 25654c9483b2SDavid S. Miller .daddr = iph->daddr, 25664c9483b2SDavid S. Miller .saddr = iph->saddr, 25676502ca52SYOSHIFUJI Hideaki / 吉藤英明 .flowlabel = ip6_flowinfo(iph), 25684c9483b2SDavid S. Miller .flowi6_mark = skb->mark, 25694c9483b2SDavid S. Miller .flowi6_proto = iph->nexthdr, 2570c71099acSThomas Graf }; 25715e5d6fedSRoopa Prabhu struct flow_keys *flkeys = NULL, _flkeys; 2572adaa70bbSThomas Graf 2573904af04dSJiri Benc tun_info = skb_tunnel_info(skb); 257446fa062aSJiri Benc if (tun_info && !(tun_info->mode & IP_TUNNEL_INFO_TX)) 2575904af04dSJiri Benc fl6.flowi6_tun_key.tun_id = tun_info->key.tun_id; 25765e5d6fedSRoopa Prabhu 25775e5d6fedSRoopa Prabhu if (fib6_rules_early_flow_dissect(net, skb, &fl6, &_flkeys)) 25785e5d6fedSRoopa Prabhu flkeys = &_flkeys; 25795e5d6fedSRoopa Prabhu 258023aebdacSJakub Sitnicki if (unlikely(fl6.flowi6_proto == IPPROTO_ICMPV6)) 2581b4bac172SDavid Ahern fl6.mp_hash = rt6_multipath_hash(net, &fl6, skb, flkeys); 258206e9d040SJiri Benc skb_dst_drop(skb); 258367f415ddSWei Wang skb_dst_set_noref(skb, ip6_route_input_lookup(net, skb->dev, 258467f415ddSWei Wang &fl6, skb, flags)); 2585c71099acSThomas Graf } 2586c71099acSThomas Graf 258755cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *ip6_pol_route_output(struct net *net, 2588b75cc8f9SDavid Ahern struct fib6_table *table, 2589b75cc8f9SDavid Ahern struct flowi6 *fl6, 2590b75cc8f9SDavid Ahern const struct sk_buff *skb, 2591b75cc8f9SDavid Ahern int flags) 2592c71099acSThomas Graf { 2593b75cc8f9SDavid Ahern return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, skb, flags); 2594c71099acSThomas Graf } 2595c71099acSThomas Graf 25967d9e5f42SWei Wang struct dst_entry *ip6_route_output_flags_noref(struct net *net, 25977d9e5f42SWei Wang const struct sock *sk, 25986f21c96aSPaolo Abeni struct flowi6 *fl6, int flags) 2599c71099acSThomas Graf { 2600d46a9d67SDavid Ahern bool any_src; 2601c71099acSThomas Graf 26023ede0bbcSRobert Shearman if (ipv6_addr_type(&fl6->daddr) & 26033ede0bbcSRobert Shearman (IPV6_ADDR_MULTICAST | IPV6_ADDR_LINKLOCAL)) { 26044c1feac5SDavid Ahern struct dst_entry *dst; 26054c1feac5SDavid Ahern 26067d9e5f42SWei Wang /* This function does not take refcnt on the dst */ 26074c1feac5SDavid Ahern dst = l3mdev_link_scope_lookup(net, fl6); 2608ca254490SDavid Ahern if (dst) 2609ca254490SDavid Ahern return dst; 26104c1feac5SDavid Ahern } 2611ca254490SDavid Ahern 26121fb9489bSPavel Emelyanov fl6->flowi6_iif = LOOPBACK_IFINDEX; 26134dc27d1cSDavid McCullough 26147d9e5f42SWei Wang flags |= RT6_LOOKUP_F_DST_NOREF; 2615d46a9d67SDavid Ahern any_src = ipv6_addr_any(&fl6->saddr); 2616741a11d9SDavid Ahern if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr) || 2617d46a9d67SDavid Ahern (fl6->flowi6_oif && any_src)) 261877d16f45SYOSHIFUJI Hideaki flags |= RT6_LOOKUP_F_IFACE; 2619c71099acSThomas Graf 2620d46a9d67SDavid Ahern if (!any_src) 2621adaa70bbSThomas Graf flags |= RT6_LOOKUP_F_HAS_SADDR; 26220c9a2ac1SYOSHIFUJI Hideaki / 吉藤英明 else if (sk) 26230c9a2ac1SYOSHIFUJI Hideaki / 吉藤英明 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs); 2624adaa70bbSThomas Graf 2625b75cc8f9SDavid Ahern return fib6_rule_lookup(net, fl6, NULL, flags, ip6_pol_route_output); 26261da177e4SLinus Torvalds } 26277d9e5f42SWei Wang EXPORT_SYMBOL_GPL(ip6_route_output_flags_noref); 26287d9e5f42SWei Wang 26297d9e5f42SWei Wang struct dst_entry *ip6_route_output_flags(struct net *net, 26307d9e5f42SWei Wang const struct sock *sk, 26317d9e5f42SWei Wang struct flowi6 *fl6, 26327d9e5f42SWei Wang int flags) 26337d9e5f42SWei Wang { 26347d9e5f42SWei Wang struct dst_entry *dst; 26357d9e5f42SWei Wang struct rt6_info *rt6; 26367d9e5f42SWei Wang 26377d9e5f42SWei Wang rcu_read_lock(); 26387d9e5f42SWei Wang dst = ip6_route_output_flags_noref(net, sk, fl6, flags); 26397d9e5f42SWei Wang rt6 = (struct rt6_info *)dst; 26407d9e5f42SWei Wang /* For dst cached in uncached_list, refcnt is already taken. */ 26417d9e5f42SWei Wang if (list_empty(&rt6->rt6i_uncached) && !dst_hold_safe(dst)) { 26427d9e5f42SWei Wang dst = &net->ipv6.ip6_null_entry->dst; 26437d9e5f42SWei Wang dst_hold(dst); 26447d9e5f42SWei Wang } 26457d9e5f42SWei Wang rcu_read_unlock(); 26467d9e5f42SWei Wang 26477d9e5f42SWei Wang return dst; 26487d9e5f42SWei Wang } 26496f21c96aSPaolo Abeni EXPORT_SYMBOL_GPL(ip6_route_output_flags); 26501da177e4SLinus Torvalds 26512774c131SDavid S. Miller struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig) 265214e50e57SDavid S. Miller { 26535c1e6aa3SDavid S. Miller struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig; 26541dbe3252SWei Wang struct net_device *loopback_dev = net->loopback_dev; 265514e50e57SDavid S. Miller struct dst_entry *new = NULL; 265614e50e57SDavid S. Miller 26571dbe3252SWei Wang rt = dst_alloc(&ip6_dst_blackhole_ops, loopback_dev, 1, 265862cf27e5SSteffen Klassert DST_OBSOLETE_DEAD, 0); 265914e50e57SDavid S. Miller if (rt) { 26600a1f5962SMartin KaFai Lau rt6_info_init(rt); 266181eb8447SWei Wang atomic_inc(&net->ipv6.rt6_stats->fib_rt_alloc); 26620a1f5962SMartin KaFai Lau 2663d8d1f30bSChangli Gao new = &rt->dst; 266414e50e57SDavid S. Miller new->__use = 1; 2665352e512cSHerbert Xu new->input = dst_discard; 2666ede2059dSEric W. Biederman new->output = dst_discard_out; 266714e50e57SDavid S. Miller 2668defb3519SDavid S. Miller dst_copy_metrics(new, &ort->dst); 266914e50e57SDavid S. Miller 26701dbe3252SWei Wang rt->rt6i_idev = in6_dev_get(loopback_dev); 26714e3fd7a0SAlexey Dobriyan rt->rt6i_gateway = ort->rt6i_gateway; 26720a1f5962SMartin KaFai Lau rt->rt6i_flags = ort->rt6i_flags & ~RTF_PCPU; 267314e50e57SDavid S. Miller 267414e50e57SDavid S. Miller memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key)); 267514e50e57SDavid S. Miller #ifdef CONFIG_IPV6_SUBTREES 267614e50e57SDavid S. Miller memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key)); 267714e50e57SDavid S. Miller #endif 267814e50e57SDavid S. Miller } 267914e50e57SDavid S. Miller 268069ead7afSDavid S. Miller dst_release(dst_orig); 268169ead7afSDavid S. Miller return new ? new : ERR_PTR(-ENOMEM); 268214e50e57SDavid S. Miller } 268314e50e57SDavid S. Miller 26841da177e4SLinus Torvalds /* 26851da177e4SLinus Torvalds * Destination cache support functions 26861da177e4SLinus Torvalds */ 26871da177e4SLinus Torvalds 26888d1c802bSDavid Ahern static bool fib6_check(struct fib6_info *f6i, u32 cookie) 26893da59bd9SMartin KaFai Lau { 269036143645SSteffen Klassert u32 rt_cookie = 0; 2691c5cff856SWei Wang 26928ae86971SDavid Ahern if (!fib6_get_cookie_safe(f6i, &rt_cookie) || rt_cookie != cookie) 269393531c67SDavid Ahern return false; 269493531c67SDavid Ahern 269593531c67SDavid Ahern if (fib6_check_expired(f6i)) 269693531c67SDavid Ahern return false; 269793531c67SDavid Ahern 269893531c67SDavid Ahern return true; 269993531c67SDavid Ahern } 270093531c67SDavid Ahern 2701a68886a6SDavid Ahern static struct dst_entry *rt6_check(struct rt6_info *rt, 2702a68886a6SDavid Ahern struct fib6_info *from, 2703a68886a6SDavid Ahern u32 cookie) 27043da59bd9SMartin KaFai Lau { 2705c5cff856SWei Wang u32 rt_cookie = 0; 2706c5cff856SWei Wang 270749d05fe2SDavid Ahern if (!from || !fib6_get_cookie_safe(from, &rt_cookie) || 270893531c67SDavid Ahern rt_cookie != cookie) 27093da59bd9SMartin KaFai Lau return NULL; 27103da59bd9SMartin KaFai Lau 27113da59bd9SMartin KaFai Lau if (rt6_check_expired(rt)) 27123da59bd9SMartin KaFai Lau return NULL; 27133da59bd9SMartin KaFai Lau 27143da59bd9SMartin KaFai Lau return &rt->dst; 27153da59bd9SMartin KaFai Lau } 27163da59bd9SMartin KaFai Lau 2717a68886a6SDavid Ahern static struct dst_entry *rt6_dst_from_check(struct rt6_info *rt, 2718a68886a6SDavid Ahern struct fib6_info *from, 2719a68886a6SDavid Ahern u32 cookie) 27203da59bd9SMartin KaFai Lau { 27215973fb1eSMartin KaFai Lau if (!__rt6_check_expired(rt) && 27225973fb1eSMartin KaFai Lau rt->dst.obsolete == DST_OBSOLETE_FORCE_CHK && 2723a68886a6SDavid Ahern fib6_check(from, cookie)) 27243da59bd9SMartin KaFai Lau return &rt->dst; 27253da59bd9SMartin KaFai Lau else 27263da59bd9SMartin KaFai Lau return NULL; 27273da59bd9SMartin KaFai Lau } 27283da59bd9SMartin KaFai Lau 2729bbd807dfSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct dst_entry *ip6_dst_check(struct dst_entry *dst, 2730bbd807dfSBrian Vazquez u32 cookie) 27311da177e4SLinus Torvalds { 2732a87b7dc9SDavid Ahern struct dst_entry *dst_ret; 2733a68886a6SDavid Ahern struct fib6_info *from; 27341da177e4SLinus Torvalds struct rt6_info *rt; 27351da177e4SLinus Torvalds 2736a87b7dc9SDavid Ahern rt = container_of(dst, struct rt6_info, dst); 2737a87b7dc9SDavid Ahern 27388f34e53bSDavid Ahern if (rt->sernum) 27398f34e53bSDavid Ahern return rt6_is_valid(rt) ? dst : NULL; 27408f34e53bSDavid Ahern 2741a87b7dc9SDavid Ahern rcu_read_lock(); 27421da177e4SLinus Torvalds 27436f3118b5SNicolas Dichtel /* All IPV6 dsts are created with ->obsolete set to the value 27446f3118b5SNicolas Dichtel * DST_OBSOLETE_FORCE_CHK which forces validation calls down 27456f3118b5SNicolas Dichtel * into this function always. 27466f3118b5SNicolas Dichtel */ 2747e3bc10bdSHannes Frederic Sowa 2748a68886a6SDavid Ahern from = rcu_dereference(rt->from); 27494b32b5adSMartin KaFai Lau 2750a68886a6SDavid Ahern if (from && (rt->rt6i_flags & RTF_PCPU || 2751a68886a6SDavid Ahern unlikely(!list_empty(&rt->rt6i_uncached)))) 2752a68886a6SDavid Ahern dst_ret = rt6_dst_from_check(rt, from, cookie); 27533da59bd9SMartin KaFai Lau else 2754a68886a6SDavid Ahern dst_ret = rt6_check(rt, from, cookie); 2755a87b7dc9SDavid Ahern 2756a87b7dc9SDavid Ahern rcu_read_unlock(); 2757a87b7dc9SDavid Ahern 2758a87b7dc9SDavid Ahern return dst_ret; 27591da177e4SLinus Torvalds } 27609c97921aSBrian Vazquez EXPORT_INDIRECT_CALLABLE(ip6_dst_check); 27611da177e4SLinus Torvalds 27621da177e4SLinus Torvalds static struct dst_entry *ip6_negative_advice(struct dst_entry *dst) 27631da177e4SLinus Torvalds { 27641da177e4SLinus Torvalds struct rt6_info *rt = (struct rt6_info *) dst; 27651da177e4SLinus Torvalds 27661da177e4SLinus Torvalds if (rt) { 276754c1a859SYOSHIFUJI Hideaki / 吉藤英明 if (rt->rt6i_flags & RTF_CACHE) { 2768c3c14da0SDavid Ahern rcu_read_lock(); 276954c1a859SYOSHIFUJI Hideaki / 吉藤英明 if (rt6_check_expired(rt)) { 277093531c67SDavid Ahern rt6_remove_exception_rt(rt); 277154c1a859SYOSHIFUJI Hideaki / 吉藤英明 dst = NULL; 27721da177e4SLinus Torvalds } 2773c3c14da0SDavid Ahern rcu_read_unlock(); 277454c1a859SYOSHIFUJI Hideaki / 吉藤英明 } else { 277554c1a859SYOSHIFUJI Hideaki / 吉藤英明 dst_release(dst); 277654c1a859SYOSHIFUJI Hideaki / 吉藤英明 dst = NULL; 277754c1a859SYOSHIFUJI Hideaki / 吉藤英明 } 277854c1a859SYOSHIFUJI Hideaki / 吉藤英明 } 277954c1a859SYOSHIFUJI Hideaki / 吉藤英明 return dst; 27801da177e4SLinus Torvalds } 27811da177e4SLinus Torvalds 27821da177e4SLinus Torvalds static void ip6_link_failure(struct sk_buff *skb) 27831da177e4SLinus Torvalds { 27841da177e4SLinus Torvalds struct rt6_info *rt; 27851da177e4SLinus Torvalds 27863ffe533cSAlexey Dobriyan icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0); 27871da177e4SLinus Torvalds 2788adf30907SEric Dumazet rt = (struct rt6_info *) skb_dst(skb); 27891da177e4SLinus Torvalds if (rt) { 27908a14e46fSDavid Ahern rcu_read_lock(); 27911eb4f758SHannes Frederic Sowa if (rt->rt6i_flags & RTF_CACHE) { 279293531c67SDavid Ahern rt6_remove_exception_rt(rt); 2793c5cff856SWei Wang } else { 2794a68886a6SDavid Ahern struct fib6_info *from; 2795c5cff856SWei Wang struct fib6_node *fn; 2796c5cff856SWei Wang 2797a68886a6SDavid Ahern from = rcu_dereference(rt->from); 2798a68886a6SDavid Ahern if (from) { 2799a68886a6SDavid Ahern fn = rcu_dereference(from->fib6_node); 2800c5cff856SWei Wang if (fn && (rt->rt6i_flags & RTF_DEFAULT)) 2801aafc2e32SEric Dumazet WRITE_ONCE(fn->fn_sernum, -1); 2802a68886a6SDavid Ahern } 28031da177e4SLinus Torvalds } 28041da177e4SLinus Torvalds rcu_read_unlock(); 28051da177e4SLinus Torvalds } 28061da177e4SLinus Torvalds } 28071da177e4SLinus Torvalds 28086a3e030fSDavid Ahern static void rt6_update_expires(struct rt6_info *rt0, int timeout) 28096a3e030fSDavid Ahern { 2810a68886a6SDavid Ahern if (!(rt0->rt6i_flags & RTF_EXPIRES)) { 2811a68886a6SDavid Ahern struct fib6_info *from; 2812a68886a6SDavid Ahern 2813a68886a6SDavid Ahern rcu_read_lock(); 2814a68886a6SDavid Ahern from = rcu_dereference(rt0->from); 2815a68886a6SDavid Ahern if (from) 2816a68886a6SDavid Ahern rt0->dst.expires = from->expires; 2817a68886a6SDavid Ahern rcu_read_unlock(); 2818a68886a6SDavid Ahern } 28196a3e030fSDavid Ahern 28206a3e030fSDavid Ahern dst_set_expires(&rt0->dst, timeout); 28216a3e030fSDavid Ahern rt0->rt6i_flags |= RTF_EXPIRES; 28226700c270SDavid S. Miller } 28231da177e4SLinus Torvalds 282445e4fd26SMartin KaFai Lau static void rt6_do_update_pmtu(struct rt6_info *rt, u32 mtu) 282545e4fd26SMartin KaFai Lau { 282645e4fd26SMartin KaFai Lau struct net *net = dev_net(rt->dst.dev); 282745e4fd26SMartin KaFai Lau 2828d4ead6b3SDavid Ahern dst_metric_set(&rt->dst, RTAX_MTU, mtu); 282945e4fd26SMartin KaFai Lau rt->rt6i_flags |= RTF_MODIFIED; 283045e4fd26SMartin KaFai Lau rt6_update_expires(rt, net->ipv6.sysctl.ip6_rt_mtu_expires); 283145e4fd26SMartin KaFai Lau } 283245e4fd26SMartin KaFai Lau 28330d3f6d29SMartin KaFai Lau static bool rt6_cache_allowed_for_pmtu(const struct rt6_info *rt) 28340d3f6d29SMartin KaFai Lau { 28350d3f6d29SMartin KaFai Lau return !(rt->rt6i_flags & RTF_CACHE) && 28361490ed2aSPaolo Abeni (rt->rt6i_flags & RTF_PCPU || rcu_access_pointer(rt->from)); 28370d3f6d29SMartin KaFai Lau } 28380d3f6d29SMartin KaFai Lau 283945e4fd26SMartin KaFai Lau static void __ip6_rt_update_pmtu(struct dst_entry *dst, const struct sock *sk, 2840bd085ef6SHangbin Liu const struct ipv6hdr *iph, u32 mtu, 2841bd085ef6SHangbin Liu bool confirm_neigh) 28421da177e4SLinus Torvalds { 28430dec879fSJulian Anastasov const struct in6_addr *daddr, *saddr; 28441da177e4SLinus Torvalds struct rt6_info *rt6 = (struct rt6_info *)dst; 28451da177e4SLinus Torvalds 284609454fd0SMaciej Żenczykowski /* Note: do *NOT* check dst_metric_locked(dst, RTAX_MTU) 284709454fd0SMaciej Żenczykowski * IPv6 pmtu discovery isn't optional, so 'mtu lock' cannot disable it. 284809454fd0SMaciej Żenczykowski * [see also comment in rt6_mtu_change_route()] 284909454fd0SMaciej Żenczykowski */ 285019bda36cSXin Long 285145e4fd26SMartin KaFai Lau if (iph) { 285245e4fd26SMartin KaFai Lau daddr = &iph->daddr; 285345e4fd26SMartin KaFai Lau saddr = &iph->saddr; 285445e4fd26SMartin KaFai Lau } else if (sk) { 285545e4fd26SMartin KaFai Lau daddr = &sk->sk_v6_daddr; 285645e4fd26SMartin KaFai Lau saddr = &inet6_sk(sk)->saddr; 285745e4fd26SMartin KaFai Lau } else { 28580dec879fSJulian Anastasov daddr = NULL; 28590dec879fSJulian Anastasov saddr = NULL; 28601da177e4SLinus Torvalds } 2861bd085ef6SHangbin Liu 2862bd085ef6SHangbin Liu if (confirm_neigh) 28630dec879fSJulian Anastasov dst_confirm_neigh(dst, daddr); 2864bd085ef6SHangbin Liu 28654a65dff8SGeorg Kohmann if (mtu < IPV6_MIN_MTU) 28664a65dff8SGeorg Kohmann return; 28670dec879fSJulian Anastasov if (mtu >= dst_mtu(dst)) 28680dec879fSJulian Anastasov return; 28690dec879fSJulian Anastasov 28700dec879fSJulian Anastasov if (!rt6_cache_allowed_for_pmtu(rt6)) { 28710dec879fSJulian Anastasov rt6_do_update_pmtu(rt6, mtu); 28722b760fcfSWei Wang /* update rt6_ex->stamp for cache */ 28732b760fcfSWei Wang if (rt6->rt6i_flags & RTF_CACHE) 28742b760fcfSWei Wang rt6_update_exception_stamp_rt(rt6); 28750dec879fSJulian Anastasov } else if (daddr) { 287685bd05deSDavid Ahern struct fib6_result res = {}; 28770dec879fSJulian Anastasov struct rt6_info *nrt6; 28780dec879fSJulian Anastasov 28794d85cd0cSDavid Ahern rcu_read_lock(); 288085bd05deSDavid Ahern res.f6i = rcu_dereference(rt6->from); 288143a4b60dSDavid Ahern if (!res.f6i) 288243a4b60dSDavid Ahern goto out_unlock; 288343a4b60dSDavid Ahern 28847d21fec9SDavid Ahern res.fib6_flags = res.f6i->fib6_flags; 28857d21fec9SDavid Ahern res.fib6_type = res.f6i->fib6_type; 28867d21fec9SDavid Ahern 28872d44234bSDavid Ahern if (res.f6i->nh) { 28882d44234bSDavid Ahern struct fib6_nh_match_arg arg = { 28892d44234bSDavid Ahern .dev = dst->dev, 28902d44234bSDavid Ahern .gw = &rt6->rt6i_gateway, 28912d44234bSDavid Ahern }; 28922d44234bSDavid Ahern 28932d44234bSDavid Ahern nexthop_for_each_fib6_nh(res.f6i->nh, 28942d44234bSDavid Ahern fib6_nh_find_match, &arg); 28952d44234bSDavid Ahern 28962d44234bSDavid Ahern /* fib6_info uses a nexthop that does not have fib6_nh 28972d44234bSDavid Ahern * using the dst->dev + gw. Should be impossible. 28982d44234bSDavid Ahern */ 289943a4b60dSDavid Ahern if (!arg.match) 290043a4b60dSDavid Ahern goto out_unlock; 29012d44234bSDavid Ahern 29022d44234bSDavid Ahern res.nh = arg.match; 29032d44234bSDavid Ahern } else { 29042d44234bSDavid Ahern res.nh = res.f6i->fib6_nh; 29052d44234bSDavid Ahern } 29062d44234bSDavid Ahern 290785bd05deSDavid Ahern nrt6 = ip6_rt_cache_alloc(&res, daddr, saddr); 290845e4fd26SMartin KaFai Lau if (nrt6) { 290945e4fd26SMartin KaFai Lau rt6_do_update_pmtu(nrt6, mtu); 29105012f0a5SDavid Ahern if (rt6_insert_exception(nrt6, &res)) 29112b760fcfSWei Wang dst_release_immediate(&nrt6->dst); 291245e4fd26SMartin KaFai Lau } 291343a4b60dSDavid Ahern out_unlock: 2914a68886a6SDavid Ahern rcu_read_unlock(); 291545e4fd26SMartin KaFai Lau } 291645e4fd26SMartin KaFai Lau } 291745e4fd26SMartin KaFai Lau 291845e4fd26SMartin KaFai Lau static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk, 2919bd085ef6SHangbin Liu struct sk_buff *skb, u32 mtu, 2920bd085ef6SHangbin Liu bool confirm_neigh) 292145e4fd26SMartin KaFai Lau { 2922bd085ef6SHangbin Liu __ip6_rt_update_pmtu(dst, sk, skb ? ipv6_hdr(skb) : NULL, mtu, 2923bd085ef6SHangbin Liu confirm_neigh); 29241da177e4SLinus Torvalds } 29251da177e4SLinus Torvalds 292642ae66c8SDavid S. Miller void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu, 2927e2d118a1SLorenzo Colitti int oif, u32 mark, kuid_t uid) 292881aded24SDavid S. Miller { 292981aded24SDavid S. Miller const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; 293081aded24SDavid S. Miller struct dst_entry *dst; 2931dc92095dSMaciej Żenczykowski struct flowi6 fl6 = { 2932dc92095dSMaciej Żenczykowski .flowi6_oif = oif, 2933dc92095dSMaciej Żenczykowski .flowi6_mark = mark ? mark : IP6_REPLY_MARK(net, skb->mark), 2934dc92095dSMaciej Żenczykowski .daddr = iph->daddr, 2935dc92095dSMaciej Żenczykowski .saddr = iph->saddr, 2936dc92095dSMaciej Żenczykowski .flowlabel = ip6_flowinfo(iph), 2937dc92095dSMaciej Żenczykowski .flowi6_uid = uid, 2938dc92095dSMaciej Żenczykowski }; 293981aded24SDavid S. Miller 294081aded24SDavid S. Miller dst = ip6_route_output(net, NULL, &fl6); 294181aded24SDavid S. Miller if (!dst->error) 2942bd085ef6SHangbin Liu __ip6_rt_update_pmtu(dst, NULL, iph, ntohl(mtu), true); 294381aded24SDavid S. Miller dst_release(dst); 294481aded24SDavid S. Miller } 294581aded24SDavid S. Miller EXPORT_SYMBOL_GPL(ip6_update_pmtu); 294681aded24SDavid S. Miller 294781aded24SDavid S. Miller void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu) 294881aded24SDavid S. Miller { 29497ddacfa5SDavid Ahern int oif = sk->sk_bound_dev_if; 295033c162a9SMartin KaFai Lau struct dst_entry *dst; 295133c162a9SMartin KaFai Lau 29527ddacfa5SDavid Ahern if (!oif && skb->dev) 29537ddacfa5SDavid Ahern oif = l3mdev_master_ifindex(skb->dev); 29547ddacfa5SDavid Ahern 29557ddacfa5SDavid Ahern ip6_update_pmtu(skb, sock_net(sk), mtu, oif, sk->sk_mark, sk->sk_uid); 295633c162a9SMartin KaFai Lau 295733c162a9SMartin KaFai Lau dst = __sk_dst_get(sk); 295833c162a9SMartin KaFai Lau if (!dst || !dst->obsolete || 295933c162a9SMartin KaFai Lau dst->ops->check(dst, inet6_sk(sk)->dst_cookie)) 296033c162a9SMartin KaFai Lau return; 296133c162a9SMartin KaFai Lau 296233c162a9SMartin KaFai Lau bh_lock_sock(sk); 296333c162a9SMartin KaFai Lau if (!sock_owned_by_user(sk) && !ipv6_addr_v4mapped(&sk->sk_v6_daddr)) 296433c162a9SMartin KaFai Lau ip6_datagram_dst_update(sk, false); 296533c162a9SMartin KaFai Lau bh_unlock_sock(sk); 296681aded24SDavid S. Miller } 296781aded24SDavid S. Miller EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu); 296881aded24SDavid S. Miller 29697d6850f7SAlexey Kodanev void ip6_sk_dst_store_flow(struct sock *sk, struct dst_entry *dst, 29707d6850f7SAlexey Kodanev const struct flowi6 *fl6) 29717d6850f7SAlexey Kodanev { 29727d6850f7SAlexey Kodanev #ifdef CONFIG_IPV6_SUBTREES 29737d6850f7SAlexey Kodanev struct ipv6_pinfo *np = inet6_sk(sk); 29747d6850f7SAlexey Kodanev #endif 29757d6850f7SAlexey Kodanev 29767d6850f7SAlexey Kodanev ip6_dst_store(sk, dst, 29777d6850f7SAlexey Kodanev ipv6_addr_equal(&fl6->daddr, &sk->sk_v6_daddr) ? 29787d6850f7SAlexey Kodanev &sk->sk_v6_daddr : NULL, 29797d6850f7SAlexey Kodanev #ifdef CONFIG_IPV6_SUBTREES 29807d6850f7SAlexey Kodanev ipv6_addr_equal(&fl6->saddr, &np->saddr) ? 29817d6850f7SAlexey Kodanev &np->saddr : 29827d6850f7SAlexey Kodanev #endif 29837d6850f7SAlexey Kodanev NULL); 29847d6850f7SAlexey Kodanev } 29857d6850f7SAlexey Kodanev 29869b6b35abSDavid Ahern static bool ip6_redirect_nh_match(const struct fib6_result *res, 29870b34eb00SDavid Ahern struct flowi6 *fl6, 29880b34eb00SDavid Ahern const struct in6_addr *gw, 29890b34eb00SDavid Ahern struct rt6_info **ret) 29900b34eb00SDavid Ahern { 29919b6b35abSDavid Ahern const struct fib6_nh *nh = res->nh; 29929b6b35abSDavid Ahern 29930b34eb00SDavid Ahern if (nh->fib_nh_flags & RTNH_F_DEAD || !nh->fib_nh_gw_family || 29940b34eb00SDavid Ahern fl6->flowi6_oif != nh->fib_nh_dev->ifindex) 29950b34eb00SDavid Ahern return false; 29960b34eb00SDavid Ahern 29970b34eb00SDavid Ahern /* rt_cache's gateway might be different from its 'parent' 29980b34eb00SDavid Ahern * in the case of an ip redirect. 29990b34eb00SDavid Ahern * So we keep searching in the exception table if the gateway 30000b34eb00SDavid Ahern * is different. 30010b34eb00SDavid Ahern */ 30020b34eb00SDavid Ahern if (!ipv6_addr_equal(gw, &nh->fib_nh_gw6)) { 30030b34eb00SDavid Ahern struct rt6_info *rt_cache; 30040b34eb00SDavid Ahern 30059b6b35abSDavid Ahern rt_cache = rt6_find_cached_rt(res, &fl6->daddr, &fl6->saddr); 30060b34eb00SDavid Ahern if (rt_cache && 30070b34eb00SDavid Ahern ipv6_addr_equal(gw, &rt_cache->rt6i_gateway)) { 30080b34eb00SDavid Ahern *ret = rt_cache; 30090b34eb00SDavid Ahern return true; 30100b34eb00SDavid Ahern } 30110b34eb00SDavid Ahern return false; 30120b34eb00SDavid Ahern } 30130b34eb00SDavid Ahern return true; 30140b34eb00SDavid Ahern } 30150b34eb00SDavid Ahern 3016c55c8988SDavid Ahern struct fib6_nh_rd_arg { 3017c55c8988SDavid Ahern struct fib6_result *res; 3018c55c8988SDavid Ahern struct flowi6 *fl6; 3019c55c8988SDavid Ahern const struct in6_addr *gw; 3020c55c8988SDavid Ahern struct rt6_info **ret; 3021c55c8988SDavid Ahern }; 3022c55c8988SDavid Ahern 3023c55c8988SDavid Ahern static int fib6_nh_redirect_match(struct fib6_nh *nh, void *_arg) 3024c55c8988SDavid Ahern { 3025c55c8988SDavid Ahern struct fib6_nh_rd_arg *arg = _arg; 3026c55c8988SDavid Ahern 3027c55c8988SDavid Ahern arg->res->nh = nh; 3028c55c8988SDavid Ahern return ip6_redirect_nh_match(arg->res, arg->fl6, arg->gw, arg->ret); 3029c55c8988SDavid Ahern } 3030c55c8988SDavid Ahern 3031b55b76b2SDuan Jiong /* Handle redirects */ 3032b55b76b2SDuan Jiong struct ip6rd_flowi { 3033b55b76b2SDuan Jiong struct flowi6 fl6; 3034b55b76b2SDuan Jiong struct in6_addr gateway; 3035b55b76b2SDuan Jiong }; 3036b55b76b2SDuan Jiong 303755cced4fSBrian Vazquez INDIRECT_CALLABLE_SCOPE struct rt6_info *__ip6_route_redirect(struct net *net, 3038b55b76b2SDuan Jiong struct fib6_table *table, 3039b55b76b2SDuan Jiong struct flowi6 *fl6, 3040b75cc8f9SDavid Ahern const struct sk_buff *skb, 3041b55b76b2SDuan Jiong int flags) 3042b55b76b2SDuan Jiong { 3043b55b76b2SDuan Jiong struct ip6rd_flowi *rdfl = (struct ip6rd_flowi *)fl6; 30440b34eb00SDavid Ahern struct rt6_info *ret = NULL; 30459b6b35abSDavid Ahern struct fib6_result res = {}; 3046c55c8988SDavid Ahern struct fib6_nh_rd_arg arg = { 3047c55c8988SDavid Ahern .res = &res, 3048c55c8988SDavid Ahern .fl6 = fl6, 3049c55c8988SDavid Ahern .gw = &rdfl->gateway, 3050c55c8988SDavid Ahern .ret = &ret 3051c55c8988SDavid Ahern }; 30528d1c802bSDavid Ahern struct fib6_info *rt; 3053b55b76b2SDuan Jiong struct fib6_node *fn; 3054b55b76b2SDuan Jiong 3055b55b76b2SDuan Jiong /* Get the "current" route for this destination and 305667c408cfSAlexander Alemayhu * check if the redirect has come from appropriate router. 3057b55b76b2SDuan Jiong * 3058b55b76b2SDuan Jiong * RFC 4861 specifies that redirects should only be 3059b55b76b2SDuan Jiong * accepted if they come from the nexthop to the target. 3060b55b76b2SDuan Jiong * Due to the way the routes are chosen, this notion 3061b55b76b2SDuan Jiong * is a bit fuzzy and one might need to check all possible 3062b55b76b2SDuan Jiong * routes. 3063b55b76b2SDuan Jiong */ 3064b55b76b2SDuan Jiong 306566f5d6ceSWei Wang rcu_read_lock(); 30666454743bSDavid Ahern fn = fib6_node_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); 3067b55b76b2SDuan Jiong restart: 306866f5d6ceSWei Wang for_each_fib6_node_rt_rcu(fn) { 30699b6b35abSDavid Ahern res.f6i = rt; 307014895687SDavid Ahern if (fib6_check_expired(rt)) 3071b55b76b2SDuan Jiong continue; 307293c2fb25SDavid Ahern if (rt->fib6_flags & RTF_REJECT) 3073b55b76b2SDuan Jiong break; 3074c55c8988SDavid Ahern if (unlikely(rt->nh)) { 3075c55c8988SDavid Ahern if (nexthop_is_blackhole(rt->nh)) 3076c55c8988SDavid Ahern continue; 3077c55c8988SDavid Ahern /* on match, res->nh is filled in and potentially ret */ 3078c55c8988SDavid Ahern if (nexthop_for_each_fib6_nh(rt->nh, 3079c55c8988SDavid Ahern fib6_nh_redirect_match, 3080c55c8988SDavid Ahern &arg)) 30810b34eb00SDavid Ahern goto out; 3082c55c8988SDavid Ahern } else { 3083c55c8988SDavid Ahern res.nh = rt->fib6_nh; 3084c55c8988SDavid Ahern if (ip6_redirect_nh_match(&res, fl6, &rdfl->gateway, 3085c55c8988SDavid Ahern &ret)) 3086c55c8988SDavid Ahern goto out; 3087c55c8988SDavid Ahern } 3088b55b76b2SDuan Jiong } 3089b55b76b2SDuan Jiong 3090b55b76b2SDuan Jiong if (!rt) 3091421842edSDavid Ahern rt = net->ipv6.fib6_null_entry; 309293c2fb25SDavid Ahern else if (rt->fib6_flags & RTF_REJECT) { 309323fb93a4SDavid Ahern ret = net->ipv6.ip6_null_entry; 3094b0a1ba59SMartin KaFai Lau goto out; 3095b0a1ba59SMartin KaFai Lau } 3096b0a1ba59SMartin KaFai Lau 3097421842edSDavid Ahern if (rt == net->ipv6.fib6_null_entry) { 3098a3c00e46SMartin KaFai Lau fn = fib6_backtrack(fn, &fl6->saddr); 3099a3c00e46SMartin KaFai Lau if (fn) 3100a3c00e46SMartin KaFai Lau goto restart; 3101b55b76b2SDuan Jiong } 3102a3c00e46SMartin KaFai Lau 31039b6b35abSDavid Ahern res.f6i = rt; 31041cf844c7SDavid Ahern res.nh = rt->fib6_nh; 3105b0a1ba59SMartin KaFai Lau out: 31067d21fec9SDavid Ahern if (ret) { 310710585b43SDavid Ahern ip6_hold_safe(net, &ret); 31087d21fec9SDavid Ahern } else { 31097d21fec9SDavid Ahern res.fib6_flags = res.f6i->fib6_flags; 31107d21fec9SDavid Ahern res.fib6_type = res.f6i->fib6_type; 31119b6b35abSDavid Ahern ret = ip6_create_rt_rcu(&res); 31127d21fec9SDavid Ahern } 3113b55b76b2SDuan Jiong 311466f5d6ceSWei Wang rcu_read_unlock(); 3115b55b76b2SDuan Jiong 31168ff2e5b2SDavid Ahern trace_fib6_table_lookup(net, &res, table, fl6); 311723fb93a4SDavid Ahern return ret; 3118b55b76b2SDuan Jiong }; 3119b55b76b2SDuan Jiong 3120b55b76b2SDuan Jiong static struct dst_entry *ip6_route_redirect(struct net *net, 3121b55b76b2SDuan Jiong const struct flowi6 *fl6, 3122b75cc8f9SDavid Ahern const struct sk_buff *skb, 3123b55b76b2SDuan Jiong const struct in6_addr *gateway) 3124b55b76b2SDuan Jiong { 3125b55b76b2SDuan Jiong int flags = RT6_LOOKUP_F_HAS_SADDR; 3126b55b76b2SDuan Jiong struct ip6rd_flowi rdfl; 3127b55b76b2SDuan Jiong 3128b55b76b2SDuan Jiong rdfl.fl6 = *fl6; 3129b55b76b2SDuan Jiong rdfl.gateway = *gateway; 3130b55b76b2SDuan Jiong 3131b75cc8f9SDavid Ahern return fib6_rule_lookup(net, &rdfl.fl6, skb, 3132b55b76b2SDuan Jiong flags, __ip6_route_redirect); 3133b55b76b2SDuan Jiong } 3134b55b76b2SDuan Jiong 3135e2d118a1SLorenzo Colitti void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark, 3136e2d118a1SLorenzo Colitti kuid_t uid) 31373a5ad2eeSDavid S. Miller { 31383a5ad2eeSDavid S. Miller const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; 31393a5ad2eeSDavid S. Miller struct dst_entry *dst; 31401f7f10acSMaciej Żenczykowski struct flowi6 fl6 = { 31411f7f10acSMaciej Żenczykowski .flowi6_iif = LOOPBACK_IFINDEX, 31421f7f10acSMaciej Żenczykowski .flowi6_oif = oif, 31431f7f10acSMaciej Żenczykowski .flowi6_mark = mark, 31441f7f10acSMaciej Żenczykowski .daddr = iph->daddr, 31451f7f10acSMaciej Żenczykowski .saddr = iph->saddr, 31461f7f10acSMaciej Żenczykowski .flowlabel = ip6_flowinfo(iph), 31471f7f10acSMaciej Żenczykowski .flowi6_uid = uid, 31481f7f10acSMaciej Żenczykowski }; 31493a5ad2eeSDavid S. Miller 3150b75cc8f9SDavid Ahern dst = ip6_route_redirect(net, &fl6, skb, &ipv6_hdr(skb)->saddr); 31516700c270SDavid S. Miller rt6_do_redirect(dst, NULL, skb); 31523a5ad2eeSDavid S. Miller dst_release(dst); 31533a5ad2eeSDavid S. Miller } 31543a5ad2eeSDavid S. Miller EXPORT_SYMBOL_GPL(ip6_redirect); 31553a5ad2eeSDavid S. Miller 3156d456336dSMaciej Żenczykowski void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif) 3157c92a59ecSDuan Jiong { 3158c92a59ecSDuan Jiong const struct ipv6hdr *iph = ipv6_hdr(skb); 3159c92a59ecSDuan Jiong const struct rd_msg *msg = (struct rd_msg *)icmp6_hdr(skb); 3160c92a59ecSDuan Jiong struct dst_entry *dst; 31610b26fb17SMaciej Żenczykowski struct flowi6 fl6 = { 31620b26fb17SMaciej Żenczykowski .flowi6_iif = LOOPBACK_IFINDEX, 31630b26fb17SMaciej Żenczykowski .flowi6_oif = oif, 31640b26fb17SMaciej Żenczykowski .daddr = msg->dest, 31650b26fb17SMaciej Żenczykowski .saddr = iph->daddr, 31660b26fb17SMaciej Żenczykowski .flowi6_uid = sock_net_uid(net, NULL), 31670b26fb17SMaciej Żenczykowski }; 3168c92a59ecSDuan Jiong 3169b75cc8f9SDavid Ahern dst = ip6_route_redirect(net, &fl6, skb, &iph->saddr); 3170c92a59ecSDuan Jiong rt6_do_redirect(dst, NULL, skb); 3171c92a59ecSDuan Jiong dst_release(dst); 3172c92a59ecSDuan Jiong } 3173c92a59ecSDuan Jiong 31743a5ad2eeSDavid S. Miller void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk) 31753a5ad2eeSDavid S. Miller { 3176e2d118a1SLorenzo Colitti ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark, 3177e2d118a1SLorenzo Colitti sk->sk_uid); 31783a5ad2eeSDavid S. Miller } 31793a5ad2eeSDavid S. Miller EXPORT_SYMBOL_GPL(ip6_sk_redirect); 31803a5ad2eeSDavid S. Miller 31810dbaee3bSDavid S. Miller static unsigned int ip6_default_advmss(const struct dst_entry *dst) 31821da177e4SLinus Torvalds { 31830dbaee3bSDavid S. Miller struct net_device *dev = dst->dev; 31840dbaee3bSDavid S. Miller unsigned int mtu = dst_mtu(dst); 31850dbaee3bSDavid S. Miller struct net *net = dev_net(dev); 31860dbaee3bSDavid S. Miller 31871da177e4SLinus Torvalds mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr); 31881da177e4SLinus Torvalds 31895578689aSDaniel Lezcano if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss) 31905578689aSDaniel Lezcano mtu = net->ipv6.sysctl.ip6_rt_min_advmss; 31911da177e4SLinus Torvalds 31921da177e4SLinus Torvalds /* 31931da177e4SLinus Torvalds * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and 31941da177e4SLinus Torvalds * corresponding MSS is IPV6_MAXPLEN - tcp_header_size. 31951da177e4SLinus Torvalds * IPV6_MAXPLEN is also valid and means: "any MSS, 31961da177e4SLinus Torvalds * rely only on pmtu discovery" 31971da177e4SLinus Torvalds */ 31981da177e4SLinus Torvalds if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr)) 31991da177e4SLinus Torvalds mtu = IPV6_MAXPLEN; 32001da177e4SLinus Torvalds return mtu; 32011da177e4SLinus Torvalds } 32021da177e4SLinus Torvalds 3203f67fbeaeSBrian Vazquez INDIRECT_CALLABLE_SCOPE unsigned int ip6_mtu(const struct dst_entry *dst) 3204d33e4553SDavid S. Miller { 3205427faee1SVadim Fedorenko return ip6_dst_mtu_maybe_forward(dst, false); 3206d33e4553SDavid S. Miller } 32079c97921aSBrian Vazquez EXPORT_INDIRECT_CALLABLE(ip6_mtu); 3208d33e4553SDavid S. Miller 3209901731b8SDavid Ahern /* MTU selection: 3210901731b8SDavid Ahern * 1. mtu on route is locked - use it 3211901731b8SDavid Ahern * 2. mtu from nexthop exception 3212901731b8SDavid Ahern * 3. mtu from egress device 3213901731b8SDavid Ahern * 3214901731b8SDavid Ahern * based on ip6_dst_mtu_forward and exception logic of 3215901731b8SDavid Ahern * rt6_find_cached_rt; called with rcu_read_lock 3216901731b8SDavid Ahern */ 3217b748f260SDavid Ahern u32 ip6_mtu_from_fib6(const struct fib6_result *res, 3218b748f260SDavid Ahern const struct in6_addr *daddr, 3219b748f260SDavid Ahern const struct in6_addr *saddr) 3220901731b8SDavid Ahern { 3221b748f260SDavid Ahern const struct fib6_nh *nh = res->nh; 3222b748f260SDavid Ahern struct fib6_info *f6i = res->f6i; 3223901731b8SDavid Ahern struct inet6_dev *idev; 3224510e2cedSWei Wang struct rt6_info *rt; 3225901731b8SDavid Ahern u32 mtu = 0; 3226901731b8SDavid Ahern 3227901731b8SDavid Ahern if (unlikely(fib6_metric_locked(f6i, RTAX_MTU))) { 3228901731b8SDavid Ahern mtu = f6i->fib6_pmtu; 3229901731b8SDavid Ahern if (mtu) 3230901731b8SDavid Ahern goto out; 3231901731b8SDavid Ahern } 3232901731b8SDavid Ahern 3233510e2cedSWei Wang rt = rt6_find_cached_rt(res, daddr, saddr); 3234510e2cedSWei Wang if (unlikely(rt)) { 3235510e2cedSWei Wang mtu = dst_metric_raw(&rt->dst, RTAX_MTU); 3236510e2cedSWei Wang } else { 3237b748f260SDavid Ahern struct net_device *dev = nh->fib_nh_dev; 3238901731b8SDavid Ahern 3239901731b8SDavid Ahern mtu = IPV6_MIN_MTU; 3240901731b8SDavid Ahern idev = __in6_dev_get(dev); 3241901731b8SDavid Ahern if (idev && idev->cnf.mtu6 > mtu) 3242901731b8SDavid Ahern mtu = idev->cnf.mtu6; 3243901731b8SDavid Ahern } 3244901731b8SDavid Ahern 3245901731b8SDavid Ahern mtu = min_t(unsigned int, mtu, IP6_MAX_MTU); 3246901731b8SDavid Ahern out: 3247b748f260SDavid Ahern return mtu - lwtunnel_headroom(nh->fib_nh_lws, mtu); 3248901731b8SDavid Ahern } 3249901731b8SDavid Ahern 32503b00944cSYOSHIFUJI Hideaki struct dst_entry *icmp6_dst_alloc(struct net_device *dev, 325187a11578SDavid S. Miller struct flowi6 *fl6) 32521da177e4SLinus Torvalds { 325387a11578SDavid S. Miller struct dst_entry *dst; 32541da177e4SLinus Torvalds struct rt6_info *rt; 32551da177e4SLinus Torvalds struct inet6_dev *idev = in6_dev_get(dev); 3256c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(dev); 32571da177e4SLinus Torvalds 325838308473SDavid S. Miller if (unlikely(!idev)) 3259122bdf67SEric Dumazet return ERR_PTR(-ENODEV); 32601da177e4SLinus Torvalds 3261ad706862SMartin KaFai Lau rt = ip6_dst_alloc(net, dev, 0); 326238308473SDavid S. Miller if (unlikely(!rt)) { 32631da177e4SLinus Torvalds in6_dev_put(idev); 326487a11578SDavid S. Miller dst = ERR_PTR(-ENOMEM); 32651da177e4SLinus Torvalds goto out; 32661da177e4SLinus Torvalds } 32671da177e4SLinus Torvalds 3268588753f1SBrendan McGrath rt->dst.input = ip6_input; 32698e2ec639SYan, Zheng rt->dst.output = ip6_output; 3270550bab42SJulian Anastasov rt->rt6i_gateway = fl6->daddr; 327187a11578SDavid S. Miller rt->rt6i_dst.addr = fl6->daddr; 32728e2ec639SYan, Zheng rt->rt6i_dst.plen = 128; 32738e2ec639SYan, Zheng rt->rt6i_idev = idev; 327414edd87dSLi RongQing dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0); 32751da177e4SLinus Torvalds 32764c981e28SIdo Schimmel /* Add this dst into uncached_list so that rt6_disable_ip() can 3277587fea74SWei Wang * do proper release of the net_device 3278587fea74SWei Wang */ 3279587fea74SWei Wang rt6_uncached_list_add(rt); 32801da177e4SLinus Torvalds 328187a11578SDavid S. Miller dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0); 328287a11578SDavid S. Miller 32831da177e4SLinus Torvalds out: 328487a11578SDavid S. Miller return dst; 32851da177e4SLinus Torvalds } 32861da177e4SLinus Torvalds 3287*af6d1034SJon Maxwell static void ip6_dst_gc(struct dst_ops *ops) 32881da177e4SLinus Torvalds { 328986393e52SAlexey Dobriyan struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops); 32907019b78eSDaniel Lezcano int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval; 32917019b78eSDaniel Lezcano int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity; 32927019b78eSDaniel Lezcano int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout; 32937019b78eSDaniel Lezcano unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc; 32949cb7c013SEric Dumazet unsigned int val; 3295fc66f95cSEric Dumazet int entries; 32961da177e4SLinus Torvalds 3297fc66f95cSEric Dumazet entries = dst_entries_get_fast(ops); 3298*af6d1034SJon Maxwell if (entries > ops->gc_thresh) 3299cf86a086SEric Dumazet entries = dst_entries_get_slow(ops); 3300cf86a086SEric Dumazet 3301*af6d1034SJon Maxwell if (time_after(rt_last_gc + rt_min_interval, jiffies)) 33021da177e4SLinus Torvalds goto out; 33031da177e4SLinus Torvalds 33049cb7c013SEric Dumazet fib6_run_gc(atomic_inc_return(&net->ipv6.ip6_rt_gc_expire), net, true); 3305fc66f95cSEric Dumazet entries = dst_entries_get_slow(ops); 3306fc66f95cSEric Dumazet if (entries < ops->gc_thresh) 33079cb7c013SEric Dumazet atomic_set(&net->ipv6.ip6_rt_gc_expire, rt_gc_timeout >> 1); 33081da177e4SLinus Torvalds out: 33099cb7c013SEric Dumazet val = atomic_read(&net->ipv6.ip6_rt_gc_expire); 33109cb7c013SEric Dumazet atomic_set(&net->ipv6.ip6_rt_gc_expire, val - (val >> rt_elasticity)); 33111da177e4SLinus Torvalds } 33121da177e4SLinus Torvalds 3313b2c709ccSDavid Ahern static int ip6_nh_lookup_table(struct net *net, struct fib6_config *cfg, 3314b2c709ccSDavid Ahern const struct in6_addr *gw_addr, u32 tbid, 3315b2c709ccSDavid Ahern int flags, struct fib6_result *res) 33168c14586fSDavid Ahern { 33178c14586fSDavid Ahern struct flowi6 fl6 = { 33188c14586fSDavid Ahern .flowi6_oif = cfg->fc_ifindex, 33198c14586fSDavid Ahern .daddr = *gw_addr, 33208c14586fSDavid Ahern .saddr = cfg->fc_prefsrc, 33218c14586fSDavid Ahern }; 33228c14586fSDavid Ahern struct fib6_table *table; 3323b2c709ccSDavid Ahern int err; 33248c14586fSDavid Ahern 3325f4797b33SDavid Ahern table = fib6_get_table(net, tbid); 33268c14586fSDavid Ahern if (!table) 3327b2c709ccSDavid Ahern return -EINVAL; 33288c14586fSDavid Ahern 33298c14586fSDavid Ahern if (!ipv6_addr_any(&cfg->fc_prefsrc)) 33308c14586fSDavid Ahern flags |= RT6_LOOKUP_F_HAS_SADDR; 33318c14586fSDavid Ahern 3332f4797b33SDavid Ahern flags |= RT6_LOOKUP_F_IGNORE_LINKSTATE; 33338c14586fSDavid Ahern 3334b2c709ccSDavid Ahern err = fib6_table_lookup(net, table, cfg->fc_ifindex, &fl6, res, flags); 3335b2c709ccSDavid Ahern if (!err && res->f6i != net->ipv6.fib6_null_entry) 3336b2c709ccSDavid Ahern fib6_select_path(net, res, &fl6, cfg->fc_ifindex, 3337b2c709ccSDavid Ahern cfg->fc_ifindex != 0, NULL, flags); 33388c14586fSDavid Ahern 3339b2c709ccSDavid Ahern return err; 33408c14586fSDavid Ahern } 33418c14586fSDavid Ahern 3342fc1e64e1SDavid Ahern static int ip6_route_check_nh_onlink(struct net *net, 3343fc1e64e1SDavid Ahern struct fib6_config *cfg, 33449fbb704cSDavid Ahern const struct net_device *dev, 3345fc1e64e1SDavid Ahern struct netlink_ext_ack *extack) 3346fc1e64e1SDavid Ahern { 3347b2c709ccSDavid Ahern u32 tbid = l3mdev_fib_table_rcu(dev) ? : RT_TABLE_MAIN; 3348fc1e64e1SDavid Ahern const struct in6_addr *gw_addr = &cfg->fc_gateway; 3349b2c709ccSDavid Ahern struct fib6_result res = {}; 3350fc1e64e1SDavid Ahern int err; 3351fc1e64e1SDavid Ahern 3352b2c709ccSDavid Ahern err = ip6_nh_lookup_table(net, cfg, gw_addr, tbid, 0, &res); 3353b2c709ccSDavid Ahern if (!err && !(res.fib6_flags & RTF_REJECT) && 33544ed591c8SDavid Ahern /* ignore match if it is the default route */ 3355b2c709ccSDavid Ahern !ipv6_addr_any(&res.f6i->fib6_dst.addr) && 3356b2c709ccSDavid Ahern (res.fib6_type != RTN_UNICAST || dev != res.nh->fib_nh_dev)) { 335744750f84SDavid Ahern NL_SET_ERR_MSG(extack, 335844750f84SDavid Ahern "Nexthop has invalid gateway or device mismatch"); 3359fc1e64e1SDavid Ahern err = -EINVAL; 3360fc1e64e1SDavid Ahern } 3361fc1e64e1SDavid Ahern 3362fc1e64e1SDavid Ahern return err; 3363fc1e64e1SDavid Ahern } 3364fc1e64e1SDavid Ahern 33651edce99fSDavid Ahern static int ip6_route_check_nh(struct net *net, 33661edce99fSDavid Ahern struct fib6_config *cfg, 33671edce99fSDavid Ahern struct net_device **_dev, 33681edce99fSDavid Ahern struct inet6_dev **idev) 33691edce99fSDavid Ahern { 33701edce99fSDavid Ahern const struct in6_addr *gw_addr = &cfg->fc_gateway; 33711edce99fSDavid Ahern struct net_device *dev = _dev ? *_dev : NULL; 3372b2c709ccSDavid Ahern int flags = RT6_LOOKUP_F_IFACE; 3373b2c709ccSDavid Ahern struct fib6_result res = {}; 33741edce99fSDavid Ahern int err = -EHOSTUNREACH; 33751edce99fSDavid Ahern 33761edce99fSDavid Ahern if (cfg->fc_table) { 3377b2c709ccSDavid Ahern err = ip6_nh_lookup_table(net, cfg, gw_addr, 3378b2c709ccSDavid Ahern cfg->fc_table, flags, &res); 3379b2c709ccSDavid Ahern /* gw_addr can not require a gateway or resolve to a reject 3380b2c709ccSDavid Ahern * route. If a device is given, it must match the result. 3381b2c709ccSDavid Ahern */ 3382b2c709ccSDavid Ahern if (err || res.fib6_flags & RTF_REJECT || 3383b2c709ccSDavid Ahern res.nh->fib_nh_gw_family || 3384b2c709ccSDavid Ahern (dev && dev != res.nh->fib_nh_dev)) 3385b2c709ccSDavid Ahern err = -EHOSTUNREACH; 33861edce99fSDavid Ahern } 33871edce99fSDavid Ahern 3388b2c709ccSDavid Ahern if (err < 0) { 3389b2c709ccSDavid Ahern struct flowi6 fl6 = { 3390b2c709ccSDavid Ahern .flowi6_oif = cfg->fc_ifindex, 3391b2c709ccSDavid Ahern .daddr = *gw_addr, 3392b2c709ccSDavid Ahern }; 33931edce99fSDavid Ahern 3394b2c709ccSDavid Ahern err = fib6_lookup(net, cfg->fc_ifindex, &fl6, &res, flags); 3395b2c709ccSDavid Ahern if (err || res.fib6_flags & RTF_REJECT || 3396b2c709ccSDavid Ahern res.nh->fib_nh_gw_family) 3397b2c709ccSDavid Ahern err = -EHOSTUNREACH; 33981edce99fSDavid Ahern 3399b2c709ccSDavid Ahern if (err) 3400b2c709ccSDavid Ahern return err; 3401b2c709ccSDavid Ahern 3402b2c709ccSDavid Ahern fib6_select_path(net, &res, &fl6, cfg->fc_ifindex, 3403b2c709ccSDavid Ahern cfg->fc_ifindex != 0, NULL, flags); 34041edce99fSDavid Ahern } 34051edce99fSDavid Ahern 34061edce99fSDavid Ahern err = 0; 3407b2c709ccSDavid Ahern if (dev) { 3408b2c709ccSDavid Ahern if (dev != res.nh->fib_nh_dev) 3409b2c709ccSDavid Ahern err = -EHOSTUNREACH; 3410b2c709ccSDavid Ahern } else { 3411b2c709ccSDavid Ahern *_dev = dev = res.nh->fib_nh_dev; 3412b2c709ccSDavid Ahern dev_hold(dev); 3413b2c709ccSDavid Ahern *idev = in6_dev_get(dev); 3414b2c709ccSDavid Ahern } 34151edce99fSDavid Ahern 34161edce99fSDavid Ahern return err; 34171edce99fSDavid Ahern } 34181edce99fSDavid Ahern 34199fbb704cSDavid Ahern static int ip6_validate_gw(struct net *net, struct fib6_config *cfg, 34209fbb704cSDavid Ahern struct net_device **_dev, struct inet6_dev **idev, 34219fbb704cSDavid Ahern struct netlink_ext_ack *extack) 34229fbb704cSDavid Ahern { 34239fbb704cSDavid Ahern const struct in6_addr *gw_addr = &cfg->fc_gateway; 34249fbb704cSDavid Ahern int gwa_type = ipv6_addr_type(gw_addr); 3425232378e8SDavid Ahern bool skip_dev = gwa_type & IPV6_ADDR_LINKLOCAL ? false : true; 34269fbb704cSDavid Ahern const struct net_device *dev = *_dev; 3427232378e8SDavid Ahern bool need_addr_check = !dev; 34289fbb704cSDavid Ahern int err = -EINVAL; 34299fbb704cSDavid Ahern 34309fbb704cSDavid Ahern /* if gw_addr is local we will fail to detect this in case 34319fbb704cSDavid Ahern * address is still TENTATIVE (DAD in progress). rt6_lookup() 34329fbb704cSDavid Ahern * will return already-added prefix route via interface that 34339fbb704cSDavid Ahern * prefix route was assigned to, which might be non-loopback. 34349fbb704cSDavid Ahern */ 3435232378e8SDavid Ahern if (dev && 3436232378e8SDavid Ahern ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) { 3437232378e8SDavid Ahern NL_SET_ERR_MSG(extack, "Gateway can not be a local address"); 34389fbb704cSDavid Ahern goto out; 34399fbb704cSDavid Ahern } 34409fbb704cSDavid Ahern 34419fbb704cSDavid Ahern if (gwa_type != (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_UNICAST)) { 34429fbb704cSDavid Ahern /* IPv6 strictly inhibits using not link-local 34439fbb704cSDavid Ahern * addresses as nexthop address. 34449fbb704cSDavid Ahern * Otherwise, router will not able to send redirects. 34459fbb704cSDavid Ahern * It is very good, but in some (rare!) circumstances 34469fbb704cSDavid Ahern * (SIT, PtP, NBMA NOARP links) it is handy to allow 34479fbb704cSDavid Ahern * some exceptions. --ANK 34489fbb704cSDavid Ahern * We allow IPv4-mapped nexthops to support RFC4798-type 34499fbb704cSDavid Ahern * addressing 34509fbb704cSDavid Ahern */ 34519fbb704cSDavid Ahern if (!(gwa_type & (IPV6_ADDR_UNICAST | IPV6_ADDR_MAPPED))) { 34529fbb704cSDavid Ahern NL_SET_ERR_MSG(extack, "Invalid gateway address"); 34539fbb704cSDavid Ahern goto out; 34549fbb704cSDavid Ahern } 34559fbb704cSDavid Ahern 3456b2c709ccSDavid Ahern rcu_read_lock(); 3457b2c709ccSDavid Ahern 34589fbb704cSDavid Ahern if (cfg->fc_flags & RTNH_F_ONLINK) 34599fbb704cSDavid Ahern err = ip6_route_check_nh_onlink(net, cfg, dev, extack); 34609fbb704cSDavid Ahern else 34619fbb704cSDavid Ahern err = ip6_route_check_nh(net, cfg, _dev, idev); 34629fbb704cSDavid Ahern 3463b2c709ccSDavid Ahern rcu_read_unlock(); 3464b2c709ccSDavid Ahern 34659fbb704cSDavid Ahern if (err) 34669fbb704cSDavid Ahern goto out; 34679fbb704cSDavid Ahern } 34689fbb704cSDavid Ahern 34699fbb704cSDavid Ahern /* reload in case device was changed */ 34709fbb704cSDavid Ahern dev = *_dev; 34719fbb704cSDavid Ahern 34729fbb704cSDavid Ahern err = -EINVAL; 34739fbb704cSDavid Ahern if (!dev) { 34749fbb704cSDavid Ahern NL_SET_ERR_MSG(extack, "Egress device not specified"); 34759fbb704cSDavid Ahern goto out; 34769fbb704cSDavid Ahern } else if (dev->flags & IFF_LOOPBACK) { 34779fbb704cSDavid Ahern NL_SET_ERR_MSG(extack, 34789fbb704cSDavid Ahern "Egress device can not be loopback device for this route"); 34799fbb704cSDavid Ahern goto out; 34809fbb704cSDavid Ahern } 3481232378e8SDavid Ahern 3482232378e8SDavid Ahern /* if we did not check gw_addr above, do so now that the 3483232378e8SDavid Ahern * egress device has been resolved. 3484232378e8SDavid Ahern */ 3485232378e8SDavid Ahern if (need_addr_check && 3486232378e8SDavid Ahern ipv6_chk_addr_and_flags(net, gw_addr, dev, skip_dev, 0, 0)) { 3487232378e8SDavid Ahern NL_SET_ERR_MSG(extack, "Gateway can not be a local address"); 3488232378e8SDavid Ahern goto out; 3489232378e8SDavid Ahern } 3490232378e8SDavid Ahern 34919fbb704cSDavid Ahern err = 0; 34929fbb704cSDavid Ahern out: 34939fbb704cSDavid Ahern return err; 34949fbb704cSDavid Ahern } 34959fbb704cSDavid Ahern 349683c44251SDavid Ahern static bool fib6_is_reject(u32 flags, struct net_device *dev, int addr_type) 349783c44251SDavid Ahern { 349883c44251SDavid Ahern if ((flags & RTF_REJECT) || 349983c44251SDavid Ahern (dev && (dev->flags & IFF_LOOPBACK) && 350083c44251SDavid Ahern !(addr_type & IPV6_ADDR_LOOPBACK) && 3501aea23c32SDavid Ahern !(flags & (RTF_ANYCAST | RTF_LOCAL)))) 350283c44251SDavid Ahern return true; 350383c44251SDavid Ahern 350483c44251SDavid Ahern return false; 350583c44251SDavid Ahern } 350683c44251SDavid Ahern 350783c44251SDavid Ahern int fib6_nh_init(struct net *net, struct fib6_nh *fib6_nh, 350883c44251SDavid Ahern struct fib6_config *cfg, gfp_t gfp_flags, 350983c44251SDavid Ahern struct netlink_ext_ack *extack) 351083c44251SDavid Ahern { 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) { 352883c44251SDavid Ahern dev = dev_get_by_index(net, cfg->fc_ifindex); 352983c44251SDavid Ahern if (!dev) 353083c44251SDavid Ahern goto out; 353183c44251SDavid Ahern idev = in6_dev_get(dev); 353283c44251SDavid Ahern if (!idev) 353383c44251SDavid Ahern goto out; 353483c44251SDavid Ahern } 353583c44251SDavid Ahern 353683c44251SDavid Ahern if (cfg->fc_flags & RTNH_F_ONLINK) { 353783c44251SDavid Ahern if (!dev) { 353883c44251SDavid Ahern NL_SET_ERR_MSG(extack, 353983c44251SDavid Ahern "Nexthop device required for onlink"); 354083c44251SDavid Ahern goto out; 354183c44251SDavid Ahern } 354283c44251SDavid Ahern 354383c44251SDavid Ahern if (!(dev->flags & IFF_UP)) { 354483c44251SDavid Ahern NL_SET_ERR_MSG(extack, "Nexthop device is not up"); 354583c44251SDavid Ahern err = -ENETDOWN; 354683c44251SDavid Ahern goto out; 354783c44251SDavid Ahern } 354883c44251SDavid Ahern 3549ad1601aeSDavid Ahern fib6_nh->fib_nh_flags |= RTNH_F_ONLINK; 355083c44251SDavid Ahern } 355183c44251SDavid Ahern 3552ad1601aeSDavid Ahern fib6_nh->fib_nh_weight = 1; 355383c44251SDavid Ahern 355483c44251SDavid Ahern /* We cannot add true routes via loopback here, 355583c44251SDavid Ahern * they would result in kernel looping; promote them to reject routes 355683c44251SDavid Ahern */ 355783c44251SDavid Ahern addr_type = ipv6_addr_type(&cfg->fc_dst); 355883c44251SDavid Ahern if (fib6_is_reject(cfg->fc_flags, dev, addr_type)) { 355983c44251SDavid Ahern /* hold loopback dev/idev if we haven't done so. */ 356083c44251SDavid Ahern if (dev != net->loopback_dev) { 356183c44251SDavid Ahern if (dev) { 356283c44251SDavid Ahern dev_put(dev); 356383c44251SDavid Ahern in6_dev_put(idev); 356483c44251SDavid Ahern } 356583c44251SDavid Ahern dev = net->loopback_dev; 356683c44251SDavid Ahern dev_hold(dev); 356783c44251SDavid Ahern idev = in6_dev_get(dev); 356883c44251SDavid Ahern if (!idev) { 356983c44251SDavid Ahern err = -ENODEV; 357083c44251SDavid Ahern goto out; 357183c44251SDavid Ahern } 357283c44251SDavid Ahern } 35737dd73168SDavid Ahern goto pcpu_alloc; 357483c44251SDavid Ahern } 357583c44251SDavid Ahern 357683c44251SDavid Ahern if (cfg->fc_flags & RTF_GATEWAY) { 357783c44251SDavid Ahern err = ip6_validate_gw(net, cfg, &dev, &idev, extack); 357883c44251SDavid Ahern if (err) 357983c44251SDavid Ahern goto out; 358083c44251SDavid Ahern 3581ad1601aeSDavid Ahern fib6_nh->fib_nh_gw6 = cfg->fc_gateway; 3582bdf00467SDavid Ahern fib6_nh->fib_nh_gw_family = AF_INET6; 358383c44251SDavid Ahern } 358483c44251SDavid Ahern 358583c44251SDavid Ahern err = -ENODEV; 358683c44251SDavid Ahern if (!dev) 358783c44251SDavid Ahern goto out; 358883c44251SDavid Ahern 358983c44251SDavid Ahern if (idev->cnf.disable_ipv6) { 359083c44251SDavid Ahern NL_SET_ERR_MSG(extack, "IPv6 is disabled on nexthop device"); 359183c44251SDavid Ahern err = -EACCES; 359283c44251SDavid Ahern goto out; 359383c44251SDavid Ahern } 359483c44251SDavid Ahern 359583c44251SDavid Ahern if (!(dev->flags & IFF_UP) && !cfg->fc_ignore_dev_down) { 359683c44251SDavid Ahern NL_SET_ERR_MSG(extack, "Nexthop device is not up"); 359783c44251SDavid Ahern err = -ENETDOWN; 359883c44251SDavid Ahern goto out; 359983c44251SDavid Ahern } 360083c44251SDavid Ahern 360183c44251SDavid Ahern if (!(cfg->fc_flags & (RTF_LOCAL | RTF_ANYCAST)) && 360283c44251SDavid Ahern !netif_carrier_ok(dev)) 3603ad1601aeSDavid Ahern fib6_nh->fib_nh_flags |= RTNH_F_LINKDOWN; 360483c44251SDavid Ahern 3605faee6769SAlexander Aring err = fib_nh_common_init(net, &fib6_nh->nh_common, cfg->fc_encap, 36067dd73168SDavid Ahern cfg->fc_encap_type, cfg, gfp_flags, extack); 36077dd73168SDavid Ahern if (err) 36087dd73168SDavid Ahern goto out; 36097dd73168SDavid Ahern 36107dd73168SDavid Ahern pcpu_alloc: 3611f40b6ae2SDavid Ahern fib6_nh->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, gfp_flags); 3612f40b6ae2SDavid Ahern if (!fib6_nh->rt6i_pcpu) { 3613f40b6ae2SDavid Ahern err = -ENOMEM; 3614f40b6ae2SDavid Ahern goto out; 3615f40b6ae2SDavid Ahern } 3616f40b6ae2SDavid Ahern 3617ad1601aeSDavid Ahern fib6_nh->fib_nh_dev = dev; 3618e44b14ebSEric Dumazet netdev_tracker_alloc(dev, &fib6_nh->fib_nh_dev_tracker, gfp_flags); 3619e44b14ebSEric Dumazet 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; 362983c44251SDavid Ahern dev_put(dev); 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) 376314895687SDavid Ahern fib6_set_expires(rt, jiffies + 37641716a961SGao feng clock_t_to_jiffies(cfg->fc_expires)); 37651716a961SGao feng else 376614895687SDavid Ahern fib6_clean_expires(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, 4546acb54e3cSDavid Ahern bool anycast, gfp_t gfp_flags) 45471da177e4SLinus Torvalds { 4548c7a1ce39SDavid Ahern struct fib6_config cfg = { 4549c7a1ce39SDavid Ahern .fc_table = l3mdev_fib_table(idev->dev) ? : RT6_TABLE_LOCAL, 4550c7a1ce39SDavid Ahern .fc_ifindex = idev->dev->ifindex, 4551d55a2e37SMaciej Żenczykowski .fc_flags = RTF_UP | RTF_NONEXTHOP, 4552c7a1ce39SDavid Ahern .fc_dst = *addr, 4553c7a1ce39SDavid Ahern .fc_dst_len = 128, 4554c7a1ce39SDavid Ahern .fc_protocol = RTPROT_KERNEL, 4555c7a1ce39SDavid Ahern .fc_nlinfo.nl_net = net, 4556c7a1ce39SDavid Ahern .fc_ignore_dev_down = true, 4557c7a1ce39SDavid Ahern }; 4558d55a2e37SMaciej Żenczykowski struct fib6_info *f6i; 45595f02ce24SDavid Ahern 4560e8478e80SDavid Ahern if (anycast) { 4561c7a1ce39SDavid Ahern cfg.fc_type = RTN_ANYCAST; 4562c7a1ce39SDavid Ahern cfg.fc_flags |= RTF_ANYCAST; 4563e8478e80SDavid Ahern } else { 4564c7a1ce39SDavid Ahern cfg.fc_type = RTN_LOCAL; 4565c7a1ce39SDavid Ahern cfg.fc_flags |= RTF_LOCAL; 4566e8478e80SDavid Ahern } 45671da177e4SLinus Torvalds 4568d55a2e37SMaciej Żenczykowski f6i = ip6_route_info_create(&cfg, gfp_flags, NULL); 45693b0dc529SNicolas Dichtel if (!IS_ERR(f6i)) { 4570d55a2e37SMaciej Żenczykowski f6i->dst_nocount = true; 45713b0dc529SNicolas Dichtel 45723b0dc529SNicolas Dichtel if (!anycast && 45733b0dc529SNicolas Dichtel (net->ipv6.devconf_all->disable_policy || 45743b0dc529SNicolas Dichtel idev->cnf.disable_policy)) 45753b0dc529SNicolas Dichtel f6i->dst_nopolicy = true; 45763b0dc529SNicolas Dichtel } 45773b0dc529SNicolas Dichtel 4578d55a2e37SMaciej Żenczykowski return f6i; 45791da177e4SLinus Torvalds } 45801da177e4SLinus Torvalds 4581c3968a85SDaniel Walter /* remove deleted ip from prefsrc entries */ 4582c3968a85SDaniel Walter struct arg_dev_net_ip { 4583c3968a85SDaniel Walter struct net_device *dev; 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_device *dev = ((struct arg_dev_net_ip *)arg)->dev; 4591c3968a85SDaniel Walter struct net *net = ((struct arg_dev_net_ip *)arg)->net; 4592c3968a85SDaniel Walter struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr; 4593c3968a85SDaniel Walter 4594f88d8ea6SDavid Ahern if (!rt->nh && 4595f88d8ea6SDavid Ahern ((void *)rt->fib6_nh->fib_nh_dev == dev || !dev) && 4596421842edSDavid Ahern rt != net->ipv6.fib6_null_entry && 459793c2fb25SDavid Ahern ipv6_addr_equal(addr, &rt->fib6_prefsrc.addr)) { 459860006a48SWei Wang spin_lock_bh(&rt6_exception_lock); 4599c3968a85SDaniel Walter /* remove prefsrc entry */ 460093c2fb25SDavid Ahern rt->fib6_prefsrc.plen = 0; 460160006a48SWei Wang spin_unlock_bh(&rt6_exception_lock); 4602c3968a85SDaniel Walter } 4603c3968a85SDaniel Walter return 0; 4604c3968a85SDaniel Walter } 4605c3968a85SDaniel Walter 4606c3968a85SDaniel Walter void rt6_remove_prefsrc(struct inet6_ifaddr *ifp) 4607c3968a85SDaniel Walter { 4608c3968a85SDaniel Walter struct net *net = dev_net(ifp->idev->dev); 4609c3968a85SDaniel Walter struct arg_dev_net_ip adni = { 4610c3968a85SDaniel Walter .dev = ifp->idev->dev, 4611c3968a85SDaniel Walter .net = net, 4612c3968a85SDaniel Walter .addr = &ifp->addr, 4613c3968a85SDaniel Walter }; 46140c3584d5SLi RongQing fib6_clean_all(net, fib6_remove_prefsrc, &adni); 4615c3968a85SDaniel Walter } 4616c3968a85SDaniel Walter 46172b2450caSDavid Ahern #define RTF_RA_ROUTER (RTF_ADDRCONF | RTF_DEFAULT) 4618be7a010dSDuan Jiong 4619be7a010dSDuan Jiong /* Remove routers and update dst entries when gateway turn into host. */ 46208d1c802bSDavid Ahern static int fib6_clean_tohost(struct fib6_info *rt, void *arg) 4621be7a010dSDuan Jiong { 4622be7a010dSDuan Jiong struct in6_addr *gateway = (struct in6_addr *)arg; 4623f88d8ea6SDavid Ahern struct fib6_nh *nh; 4624be7a010dSDuan Jiong 4625f88d8ea6SDavid Ahern /* RA routes do not use nexthops */ 4626f88d8ea6SDavid Ahern if (rt->nh) 4627f88d8ea6SDavid Ahern return 0; 4628f88d8ea6SDavid Ahern 4629f88d8ea6SDavid Ahern nh = rt->fib6_nh; 463093c2fb25SDavid Ahern if (((rt->fib6_flags & RTF_RA_ROUTER) == RTF_RA_ROUTER) && 4631cc5c073aSDavid Ahern nh->fib_nh_gw_family && ipv6_addr_equal(gateway, &nh->fib_nh_gw6)) 4632be7a010dSDuan Jiong return -1; 4633b16cb459SWei Wang 4634b16cb459SWei Wang /* Further clean up cached routes in exception table. 4635b16cb459SWei Wang * This is needed because cached route may have a different 4636b16cb459SWei Wang * gateway than its 'parent' in the case of an ip redirect. 4637b16cb459SWei Wang */ 4638cc5c073aSDavid Ahern fib6_nh_exceptions_clean_tohost(nh, gateway); 4639b16cb459SWei Wang 4640be7a010dSDuan Jiong return 0; 4641be7a010dSDuan Jiong } 4642be7a010dSDuan Jiong 4643be7a010dSDuan Jiong void rt6_clean_tohost(struct net *net, struct in6_addr *gateway) 4644be7a010dSDuan Jiong { 4645be7a010dSDuan Jiong fib6_clean_all(net, fib6_clean_tohost, gateway); 4646be7a010dSDuan Jiong } 4647be7a010dSDuan Jiong 46482127d95aSIdo Schimmel struct arg_netdev_event { 46492127d95aSIdo Schimmel const struct net_device *dev; 46504c981e28SIdo Schimmel union { 4651ecc5663cSDavid Ahern unsigned char nh_flags; 46524c981e28SIdo Schimmel unsigned long event; 46534c981e28SIdo Schimmel }; 46542127d95aSIdo Schimmel }; 46552127d95aSIdo Schimmel 46568d1c802bSDavid Ahern static struct fib6_info *rt6_multipath_first_sibling(const struct fib6_info *rt) 4657d7dedee1SIdo Schimmel { 46588d1c802bSDavid Ahern struct fib6_info *iter; 4659d7dedee1SIdo Schimmel struct fib6_node *fn; 4660d7dedee1SIdo Schimmel 466193c2fb25SDavid Ahern fn = rcu_dereference_protected(rt->fib6_node, 466293c2fb25SDavid Ahern lockdep_is_held(&rt->fib6_table->tb6_lock)); 4663d7dedee1SIdo Schimmel iter = rcu_dereference_protected(fn->leaf, 466493c2fb25SDavid Ahern lockdep_is_held(&rt->fib6_table->tb6_lock)); 4665d7dedee1SIdo Schimmel while (iter) { 466693c2fb25SDavid Ahern if (iter->fib6_metric == rt->fib6_metric && 466733bd5ac5SDavid Ahern rt6_qualify_for_ecmp(iter)) 4668d7dedee1SIdo Schimmel return iter; 46698fb11a9aSDavid Ahern iter = rcu_dereference_protected(iter->fib6_next, 467093c2fb25SDavid Ahern lockdep_is_held(&rt->fib6_table->tb6_lock)); 4671d7dedee1SIdo Schimmel } 4672d7dedee1SIdo Schimmel 4673d7dedee1SIdo Schimmel return NULL; 4674d7dedee1SIdo Schimmel } 4675d7dedee1SIdo Schimmel 4676f88d8ea6SDavid Ahern /* only called for fib entries with builtin fib6_nh */ 46778d1c802bSDavid Ahern static bool rt6_is_dead(const struct fib6_info *rt) 4678d7dedee1SIdo Schimmel { 46791cf844c7SDavid Ahern if (rt->fib6_nh->fib_nh_flags & RTNH_F_DEAD || 46801cf844c7SDavid Ahern (rt->fib6_nh->fib_nh_flags & RTNH_F_LINKDOWN && 46811cf844c7SDavid Ahern ip6_ignore_linkdown(rt->fib6_nh->fib_nh_dev))) 4682d7dedee1SIdo Schimmel return true; 4683d7dedee1SIdo Schimmel 4684d7dedee1SIdo Schimmel return false; 4685d7dedee1SIdo Schimmel } 4686d7dedee1SIdo Schimmel 46878d1c802bSDavid Ahern static int rt6_multipath_total_weight(const struct fib6_info *rt) 4688d7dedee1SIdo Schimmel { 46898d1c802bSDavid Ahern struct fib6_info *iter; 4690d7dedee1SIdo Schimmel int total = 0; 4691d7dedee1SIdo Schimmel 4692d7dedee1SIdo Schimmel if (!rt6_is_dead(rt)) 46931cf844c7SDavid Ahern total += rt->fib6_nh->fib_nh_weight; 4694d7dedee1SIdo Schimmel 469593c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) { 4696d7dedee1SIdo Schimmel if (!rt6_is_dead(iter)) 46971cf844c7SDavid Ahern total += iter->fib6_nh->fib_nh_weight; 4698d7dedee1SIdo Schimmel } 4699d7dedee1SIdo Schimmel 4700d7dedee1SIdo Schimmel return total; 4701d7dedee1SIdo Schimmel } 4702d7dedee1SIdo Schimmel 47038d1c802bSDavid Ahern static void rt6_upper_bound_set(struct fib6_info *rt, int *weight, int total) 4704d7dedee1SIdo Schimmel { 4705d7dedee1SIdo Schimmel int upper_bound = -1; 4706d7dedee1SIdo Schimmel 4707d7dedee1SIdo Schimmel if (!rt6_is_dead(rt)) { 47081cf844c7SDavid Ahern *weight += rt->fib6_nh->fib_nh_weight; 4709d7dedee1SIdo Schimmel upper_bound = DIV_ROUND_CLOSEST_ULL((u64) (*weight) << 31, 4710d7dedee1SIdo Schimmel total) - 1; 4711d7dedee1SIdo Schimmel } 47121cf844c7SDavid Ahern atomic_set(&rt->fib6_nh->fib_nh_upper_bound, upper_bound); 4713d7dedee1SIdo Schimmel } 4714d7dedee1SIdo Schimmel 47158d1c802bSDavid Ahern static void rt6_multipath_upper_bound_set(struct fib6_info *rt, int total) 4716d7dedee1SIdo Schimmel { 47178d1c802bSDavid Ahern struct fib6_info *iter; 4718d7dedee1SIdo Schimmel int weight = 0; 4719d7dedee1SIdo Schimmel 4720d7dedee1SIdo Schimmel rt6_upper_bound_set(rt, &weight, total); 4721d7dedee1SIdo Schimmel 472293c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) 4723d7dedee1SIdo Schimmel rt6_upper_bound_set(iter, &weight, total); 4724d7dedee1SIdo Schimmel } 4725d7dedee1SIdo Schimmel 47268d1c802bSDavid Ahern void rt6_multipath_rebalance(struct fib6_info *rt) 4727d7dedee1SIdo Schimmel { 47288d1c802bSDavid Ahern struct fib6_info *first; 4729d7dedee1SIdo Schimmel int total; 4730d7dedee1SIdo Schimmel 4731d7dedee1SIdo Schimmel /* In case the entire multipath route was marked for flushing, 4732d7dedee1SIdo Schimmel * then there is no need to rebalance upon the removal of every 4733d7dedee1SIdo Schimmel * sibling route. 4734d7dedee1SIdo Schimmel */ 473593c2fb25SDavid Ahern if (!rt->fib6_nsiblings || rt->should_flush) 4736d7dedee1SIdo Schimmel return; 4737d7dedee1SIdo Schimmel 4738d7dedee1SIdo Schimmel /* During lookup routes are evaluated in order, so we need to 4739d7dedee1SIdo Schimmel * make sure upper bounds are assigned from the first sibling 4740d7dedee1SIdo Schimmel * onwards. 4741d7dedee1SIdo Schimmel */ 4742d7dedee1SIdo Schimmel first = rt6_multipath_first_sibling(rt); 4743d7dedee1SIdo Schimmel if (WARN_ON_ONCE(!first)) 4744d7dedee1SIdo Schimmel return; 4745d7dedee1SIdo Schimmel 4746d7dedee1SIdo Schimmel total = rt6_multipath_total_weight(first); 4747d7dedee1SIdo Schimmel rt6_multipath_upper_bound_set(first, total); 4748d7dedee1SIdo Schimmel } 4749d7dedee1SIdo Schimmel 47508d1c802bSDavid Ahern static int fib6_ifup(struct fib6_info *rt, void *p_arg) 47512127d95aSIdo Schimmel { 47522127d95aSIdo Schimmel const struct arg_netdev_event *arg = p_arg; 47537aef6859SDavid Ahern struct net *net = dev_net(arg->dev); 47542127d95aSIdo Schimmel 4755f88d8ea6SDavid Ahern if (rt != net->ipv6.fib6_null_entry && !rt->nh && 47561cf844c7SDavid Ahern rt->fib6_nh->fib_nh_dev == arg->dev) { 47571cf844c7SDavid Ahern rt->fib6_nh->fib_nh_flags &= ~arg->nh_flags; 47587aef6859SDavid Ahern fib6_update_sernum_upto_root(net, rt); 4759d7dedee1SIdo Schimmel rt6_multipath_rebalance(rt); 47601de178edSIdo Schimmel } 47612127d95aSIdo Schimmel 47622127d95aSIdo Schimmel return 0; 47632127d95aSIdo Schimmel } 47642127d95aSIdo Schimmel 4765ecc5663cSDavid Ahern void rt6_sync_up(struct net_device *dev, unsigned char nh_flags) 47662127d95aSIdo Schimmel { 47672127d95aSIdo Schimmel struct arg_netdev_event arg = { 47682127d95aSIdo Schimmel .dev = dev, 47696802f3adSIdo Schimmel { 47702127d95aSIdo Schimmel .nh_flags = nh_flags, 47716802f3adSIdo Schimmel }, 47722127d95aSIdo Schimmel }; 47732127d95aSIdo Schimmel 47742127d95aSIdo Schimmel if (nh_flags & RTNH_F_DEAD && netif_carrier_ok(dev)) 47752127d95aSIdo Schimmel arg.nh_flags |= RTNH_F_LINKDOWN; 47762127d95aSIdo Schimmel 47772127d95aSIdo Schimmel fib6_clean_all(dev_net(dev), fib6_ifup, &arg); 47782127d95aSIdo Schimmel } 47792127d95aSIdo Schimmel 4780f88d8ea6SDavid Ahern /* only called for fib entries with inline fib6_nh */ 47818d1c802bSDavid Ahern static bool rt6_multipath_uses_dev(const struct fib6_info *rt, 47821de178edSIdo Schimmel const struct net_device *dev) 47831de178edSIdo Schimmel { 47848d1c802bSDavid Ahern struct fib6_info *iter; 47851de178edSIdo Schimmel 47861cf844c7SDavid Ahern if (rt->fib6_nh->fib_nh_dev == dev) 47871de178edSIdo Schimmel return true; 478893c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) 47891cf844c7SDavid Ahern if (iter->fib6_nh->fib_nh_dev == dev) 47901de178edSIdo Schimmel return true; 47911de178edSIdo Schimmel 47921de178edSIdo Schimmel return false; 47931de178edSIdo Schimmel } 47941de178edSIdo Schimmel 47958d1c802bSDavid Ahern static void rt6_multipath_flush(struct fib6_info *rt) 47961de178edSIdo Schimmel { 47978d1c802bSDavid Ahern struct fib6_info *iter; 47981de178edSIdo Schimmel 47991de178edSIdo Schimmel rt->should_flush = 1; 480093c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) 48011de178edSIdo Schimmel iter->should_flush = 1; 48021de178edSIdo Schimmel } 48031de178edSIdo Schimmel 48048d1c802bSDavid Ahern static unsigned int rt6_multipath_dead_count(const struct fib6_info *rt, 48051de178edSIdo Schimmel const struct net_device *down_dev) 48061de178edSIdo Schimmel { 48078d1c802bSDavid Ahern struct fib6_info *iter; 48081de178edSIdo Schimmel unsigned int dead = 0; 48091de178edSIdo Schimmel 48101cf844c7SDavid Ahern if (rt->fib6_nh->fib_nh_dev == down_dev || 48111cf844c7SDavid Ahern rt->fib6_nh->fib_nh_flags & RTNH_F_DEAD) 48121de178edSIdo Schimmel dead++; 481393c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) 48141cf844c7SDavid Ahern if (iter->fib6_nh->fib_nh_dev == down_dev || 48151cf844c7SDavid Ahern iter->fib6_nh->fib_nh_flags & RTNH_F_DEAD) 48161de178edSIdo Schimmel dead++; 48171de178edSIdo Schimmel 48181de178edSIdo Schimmel return dead; 48191de178edSIdo Schimmel } 48201de178edSIdo Schimmel 48218d1c802bSDavid Ahern static void rt6_multipath_nh_flags_set(struct fib6_info *rt, 48221de178edSIdo Schimmel const struct net_device *dev, 4823ecc5663cSDavid Ahern unsigned char nh_flags) 48241de178edSIdo Schimmel { 48258d1c802bSDavid Ahern struct fib6_info *iter; 48261de178edSIdo Schimmel 48271cf844c7SDavid Ahern if (rt->fib6_nh->fib_nh_dev == dev) 48281cf844c7SDavid Ahern rt->fib6_nh->fib_nh_flags |= nh_flags; 482993c2fb25SDavid Ahern list_for_each_entry(iter, &rt->fib6_siblings, fib6_siblings) 48301cf844c7SDavid Ahern if (iter->fib6_nh->fib_nh_dev == dev) 48311cf844c7SDavid Ahern iter->fib6_nh->fib_nh_flags |= nh_flags; 48321de178edSIdo Schimmel } 48331de178edSIdo Schimmel 4834a1a22c12SDavid Ahern /* called with write lock held for table with rt */ 48358d1c802bSDavid Ahern static int fib6_ifdown(struct fib6_info *rt, void *p_arg) 48361da177e4SLinus Torvalds { 48374c981e28SIdo Schimmel const struct arg_netdev_event *arg = p_arg; 48384c981e28SIdo Schimmel const struct net_device *dev = arg->dev; 48397aef6859SDavid Ahern struct net *net = dev_net(dev); 48408ed67789SDaniel Lezcano 4841f88d8ea6SDavid Ahern if (rt == net->ipv6.fib6_null_entry || rt->nh) 484227c6fa73SIdo Schimmel return 0; 484327c6fa73SIdo Schimmel 484427c6fa73SIdo Schimmel switch (arg->event) { 484527c6fa73SIdo Schimmel case NETDEV_UNREGISTER: 48461cf844c7SDavid Ahern return rt->fib6_nh->fib_nh_dev == dev ? -1 : 0; 484727c6fa73SIdo Schimmel case NETDEV_DOWN: 48481de178edSIdo Schimmel if (rt->should_flush) 484927c6fa73SIdo Schimmel return -1; 485093c2fb25SDavid Ahern if (!rt->fib6_nsiblings) 48511cf844c7SDavid Ahern return rt->fib6_nh->fib_nh_dev == dev ? -1 : 0; 48521de178edSIdo Schimmel if (rt6_multipath_uses_dev(rt, dev)) { 48531de178edSIdo Schimmel unsigned int count; 48541de178edSIdo Schimmel 48551de178edSIdo Schimmel count = rt6_multipath_dead_count(rt, dev); 485693c2fb25SDavid Ahern if (rt->fib6_nsiblings + 1 == count) { 48571de178edSIdo Schimmel rt6_multipath_flush(rt); 48581de178edSIdo Schimmel return -1; 48591de178edSIdo Schimmel } 48601de178edSIdo Schimmel rt6_multipath_nh_flags_set(rt, dev, RTNH_F_DEAD | 48611de178edSIdo Schimmel RTNH_F_LINKDOWN); 48627aef6859SDavid Ahern fib6_update_sernum(net, rt); 4863d7dedee1SIdo Schimmel rt6_multipath_rebalance(rt); 48641de178edSIdo Schimmel } 48651de178edSIdo Schimmel return -2; 486627c6fa73SIdo Schimmel case NETDEV_CHANGE: 48671cf844c7SDavid Ahern if (rt->fib6_nh->fib_nh_dev != dev || 486893c2fb25SDavid Ahern rt->fib6_flags & (RTF_LOCAL | RTF_ANYCAST)) 486927c6fa73SIdo Schimmel break; 48701cf844c7SDavid Ahern rt->fib6_nh->fib_nh_flags |= RTNH_F_LINKDOWN; 4871d7dedee1SIdo Schimmel rt6_multipath_rebalance(rt); 487227c6fa73SIdo Schimmel break; 48732b241361SIdo Schimmel } 4874c159d30cSDavid S. Miller 48751da177e4SLinus Torvalds return 0; 48761da177e4SLinus Torvalds } 48771da177e4SLinus Torvalds 487827c6fa73SIdo Schimmel void rt6_sync_down_dev(struct net_device *dev, unsigned long event) 48791da177e4SLinus Torvalds { 48804c981e28SIdo Schimmel struct arg_netdev_event arg = { 48818ed67789SDaniel Lezcano .dev = dev, 48826802f3adSIdo Schimmel { 48834c981e28SIdo Schimmel .event = event, 48846802f3adSIdo Schimmel }, 48858ed67789SDaniel Lezcano }; 48867c6bb7d2SDavid Ahern struct net *net = dev_net(dev); 48878ed67789SDaniel Lezcano 48887c6bb7d2SDavid Ahern if (net->ipv6.sysctl.skip_notify_on_dev_down) 48897c6bb7d2SDavid Ahern fib6_clean_all_skip_notify(net, fib6_ifdown, &arg); 48907c6bb7d2SDavid Ahern else 48917c6bb7d2SDavid Ahern fib6_clean_all(net, fib6_ifdown, &arg); 48924c981e28SIdo Schimmel } 48934c981e28SIdo Schimmel 48944c981e28SIdo Schimmel void rt6_disable_ip(struct net_device *dev, unsigned long event) 48954c981e28SIdo Schimmel { 48964c981e28SIdo Schimmel rt6_sync_down_dev(dev, event); 4897e5f80fcfSEric Dumazet rt6_uncached_list_flush_dev(dev); 48984c981e28SIdo Schimmel neigh_ifdown(&nd_tbl, dev); 48991da177e4SLinus Torvalds } 49001da177e4SLinus Torvalds 490195c96174SEric Dumazet struct rt6_mtu_change_arg { 49021da177e4SLinus Torvalds struct net_device *dev; 490395c96174SEric Dumazet unsigned int mtu; 4904c0b220cfSDavid Ahern struct fib6_info *f6i; 49051da177e4SLinus Torvalds }; 49061da177e4SLinus Torvalds 4907cc5c073aSDavid Ahern static int fib6_nh_mtu_change(struct fib6_nh *nh, void *_arg) 4908c0b220cfSDavid Ahern { 4909c0b220cfSDavid Ahern struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *)_arg; 4910cc5c073aSDavid Ahern struct fib6_info *f6i = arg->f6i; 4911c0b220cfSDavid Ahern 4912c0b220cfSDavid Ahern /* For administrative MTU increase, there is no way to discover 4913c0b220cfSDavid Ahern * IPv6 PMTU increase, so PMTU increase should be updated here. 4914c0b220cfSDavid Ahern * Since RFC 1981 doesn't include administrative MTU increase 4915c0b220cfSDavid Ahern * update PMTU increase is a MUST. (i.e. jumbo frame) 4916c0b220cfSDavid Ahern */ 4917c0b220cfSDavid Ahern if (nh->fib_nh_dev == arg->dev) { 4918c0b220cfSDavid Ahern struct inet6_dev *idev = __in6_dev_get(arg->dev); 4919c0b220cfSDavid Ahern u32 mtu = f6i->fib6_pmtu; 4920c0b220cfSDavid Ahern 4921c0b220cfSDavid Ahern if (mtu >= arg->mtu || 4922c0b220cfSDavid Ahern (mtu < arg->mtu && mtu == idev->cnf.mtu6)) 4923c0b220cfSDavid Ahern fib6_metric_set(f6i, RTAX_MTU, arg->mtu); 4924c0b220cfSDavid Ahern 4925c0b220cfSDavid Ahern spin_lock_bh(&rt6_exception_lock); 4926cc5c073aSDavid Ahern rt6_exceptions_update_pmtu(idev, nh, arg->mtu); 4927c0b220cfSDavid Ahern spin_unlock_bh(&rt6_exception_lock); 4928c0b220cfSDavid Ahern } 4929c0b220cfSDavid Ahern 4930c0b220cfSDavid Ahern return 0; 4931c0b220cfSDavid Ahern } 4932c0b220cfSDavid Ahern 4933c0b220cfSDavid Ahern static int rt6_mtu_change_route(struct fib6_info *f6i, void *p_arg) 49341da177e4SLinus Torvalds { 49351da177e4SLinus Torvalds struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg; 49361da177e4SLinus Torvalds struct inet6_dev *idev; 49371da177e4SLinus Torvalds 49381da177e4SLinus Torvalds /* In IPv6 pmtu discovery is not optional, 49391da177e4SLinus Torvalds so that RTAX_MTU lock cannot disable it. 49401da177e4SLinus Torvalds We still use this lock to block changes 49411da177e4SLinus Torvalds caused by addrconf/ndisc. 49421da177e4SLinus Torvalds */ 49431da177e4SLinus Torvalds 49441da177e4SLinus Torvalds idev = __in6_dev_get(arg->dev); 494538308473SDavid S. Miller if (!idev) 49461da177e4SLinus Torvalds return 0; 49471da177e4SLinus Torvalds 4948c0b220cfSDavid Ahern if (fib6_metric_locked(f6i, RTAX_MTU)) 49491da177e4SLinus Torvalds return 0; 4950c0b220cfSDavid Ahern 4951c0b220cfSDavid Ahern arg->f6i = f6i; 49522d44234bSDavid Ahern if (f6i->nh) { 49532d44234bSDavid Ahern /* fib6_nh_mtu_change only returns 0, so this is safe */ 49542d44234bSDavid Ahern return nexthop_for_each_fib6_nh(f6i->nh, fib6_nh_mtu_change, 49552d44234bSDavid Ahern arg); 49562d44234bSDavid Ahern } 49572d44234bSDavid Ahern 49581cf844c7SDavid Ahern return fib6_nh_mtu_change(f6i->fib6_nh, arg); 49591da177e4SLinus Torvalds } 49601da177e4SLinus Torvalds 496195c96174SEric Dumazet void rt6_mtu_change(struct net_device *dev, unsigned int mtu) 49621da177e4SLinus Torvalds { 4963c71099acSThomas Graf struct rt6_mtu_change_arg arg = { 4964c71099acSThomas Graf .dev = dev, 4965c71099acSThomas Graf .mtu = mtu, 4966c71099acSThomas Graf }; 49671da177e4SLinus Torvalds 49680c3584d5SLi RongQing fib6_clean_all(dev_net(dev), rt6_mtu_change_route, &arg); 49691da177e4SLinus Torvalds } 49701da177e4SLinus Torvalds 4971ef7c79edSPatrick McHardy static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = { 497275425657SDavid Ahern [RTA_UNSPEC] = { .strict_start_type = RTA_DPORT + 1 }, 49735176f91eSThomas Graf [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) }, 4974aa8f8778SEric Dumazet [RTA_PREFSRC] = { .len = sizeof(struct in6_addr) }, 497586872cb5SThomas Graf [RTA_OIF] = { .type = NLA_U32 }, 4976ab364a6fSThomas Graf [RTA_IIF] = { .type = NLA_U32 }, 497786872cb5SThomas Graf [RTA_PRIORITY] = { .type = NLA_U32 }, 497886872cb5SThomas Graf [RTA_METRICS] = { .type = NLA_NESTED }, 497951ebd318SNicolas Dichtel [RTA_MULTIPATH] = { .len = sizeof(struct rtnexthop) }, 4980c78ba6d6SLubomir Rintel [RTA_PREF] = { .type = NLA_U8 }, 498119e42e45SRoopa Prabhu [RTA_ENCAP_TYPE] = { .type = NLA_U16 }, 498219e42e45SRoopa Prabhu [RTA_ENCAP] = { .type = NLA_NESTED }, 498332bc201eSXin Long [RTA_EXPIRES] = { .type = NLA_U32 }, 4984622ec2c9SLorenzo Colitti [RTA_UID] = { .type = NLA_U32 }, 49853b45a410SLiping Zhang [RTA_MARK] = { .type = NLA_U32 }, 4986aa8f8778SEric Dumazet [RTA_TABLE] = { .type = NLA_U32 }, 4987eacb9384SRoopa Prabhu [RTA_IP_PROTO] = { .type = NLA_U8 }, 4988eacb9384SRoopa Prabhu [RTA_SPORT] = { .type = NLA_U16 }, 4989eacb9384SRoopa Prabhu [RTA_DPORT] = { .type = NLA_U16 }, 49905b98324eSDavid Ahern [RTA_NH_ID] = { .type = NLA_U32 }, 499186872cb5SThomas Graf }; 499286872cb5SThomas Graf 499386872cb5SThomas Graf static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh, 4994333c4301SDavid Ahern struct fib6_config *cfg, 4995333c4301SDavid Ahern struct netlink_ext_ack *extack) 49961da177e4SLinus Torvalds { 499786872cb5SThomas Graf struct rtmsg *rtm; 499886872cb5SThomas Graf struct nlattr *tb[RTA_MAX+1]; 4999c78ba6d6SLubomir Rintel unsigned int pref; 500086872cb5SThomas Graf int err; 50011da177e4SLinus Torvalds 50028cb08174SJohannes Berg err = nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX, 50038cb08174SJohannes Berg rtm_ipv6_policy, extack); 500486872cb5SThomas Graf if (err < 0) 500586872cb5SThomas Graf goto errout; 50061da177e4SLinus Torvalds 500786872cb5SThomas Graf err = -EINVAL; 500886872cb5SThomas Graf rtm = nlmsg_data(nlh); 500986872cb5SThomas Graf 5010b9605161SGuillaume Nault if (rtm->rtm_tos) { 5011b9605161SGuillaume Nault NL_SET_ERR_MSG(extack, 5012b9605161SGuillaume Nault "Invalid dsfield (tos): option not available for IPv6"); 5013b9605161SGuillaume Nault goto errout; 5014b9605161SGuillaume Nault } 5015b9605161SGuillaume Nault 501684db8407SMaciej Żenczykowski *cfg = (struct fib6_config){ 501784db8407SMaciej Żenczykowski .fc_table = rtm->rtm_table, 501884db8407SMaciej Żenczykowski .fc_dst_len = rtm->rtm_dst_len, 501984db8407SMaciej Żenczykowski .fc_src_len = rtm->rtm_src_len, 502084db8407SMaciej Żenczykowski .fc_flags = RTF_UP, 502184db8407SMaciej Żenczykowski .fc_protocol = rtm->rtm_protocol, 502284db8407SMaciej Żenczykowski .fc_type = rtm->rtm_type, 502384db8407SMaciej Żenczykowski 502484db8407SMaciej Żenczykowski .fc_nlinfo.portid = NETLINK_CB(skb).portid, 502584db8407SMaciej Żenczykowski .fc_nlinfo.nlh = nlh, 502684db8407SMaciej Żenczykowski .fc_nlinfo.nl_net = sock_net(skb->sk), 502784db8407SMaciej Żenczykowski }; 502886872cb5SThomas Graf 5029ef2c7d7bSNicolas Dichtel if (rtm->rtm_type == RTN_UNREACHABLE || 5030ef2c7d7bSNicolas Dichtel rtm->rtm_type == RTN_BLACKHOLE || 5031b4949ab2SNicolas Dichtel rtm->rtm_type == RTN_PROHIBIT || 5032b4949ab2SNicolas Dichtel rtm->rtm_type == RTN_THROW) 503386872cb5SThomas Graf cfg->fc_flags |= RTF_REJECT; 503486872cb5SThomas Graf 5035ab79ad14SMaciej Żenczykowski if (rtm->rtm_type == RTN_LOCAL) 5036ab79ad14SMaciej Żenczykowski cfg->fc_flags |= RTF_LOCAL; 5037ab79ad14SMaciej Żenczykowski 50381f56a01fSMartin KaFai Lau if (rtm->rtm_flags & RTM_F_CLONED) 50391f56a01fSMartin KaFai Lau cfg->fc_flags |= RTF_CACHE; 50401f56a01fSMartin KaFai Lau 5041fc1e64e1SDavid Ahern cfg->fc_flags |= (rtm->rtm_flags & RTNH_F_ONLINK); 5042fc1e64e1SDavid Ahern 50435b98324eSDavid Ahern if (tb[RTA_NH_ID]) { 50445b98324eSDavid Ahern if (tb[RTA_GATEWAY] || tb[RTA_OIF] || 50455b98324eSDavid Ahern tb[RTA_MULTIPATH] || tb[RTA_ENCAP]) { 50465b98324eSDavid Ahern NL_SET_ERR_MSG(extack, 50475b98324eSDavid Ahern "Nexthop specification and nexthop id are mutually exclusive"); 50485b98324eSDavid Ahern goto errout; 50495b98324eSDavid Ahern } 50505b98324eSDavid Ahern cfg->fc_nh_id = nla_get_u32(tb[RTA_NH_ID]); 50515b98324eSDavid Ahern } 50525b98324eSDavid Ahern 505386872cb5SThomas Graf if (tb[RTA_GATEWAY]) { 505467b61f6cSJiri Benc cfg->fc_gateway = nla_get_in6_addr(tb[RTA_GATEWAY]); 505586872cb5SThomas Graf cfg->fc_flags |= RTF_GATEWAY; 50561da177e4SLinus Torvalds } 5057e3818541SDavid Ahern if (tb[RTA_VIA]) { 5058e3818541SDavid Ahern NL_SET_ERR_MSG(extack, "IPv6 does not support RTA_VIA attribute"); 5059e3818541SDavid Ahern goto errout; 5060e3818541SDavid Ahern } 506186872cb5SThomas Graf 506286872cb5SThomas Graf if (tb[RTA_DST]) { 506386872cb5SThomas Graf int plen = (rtm->rtm_dst_len + 7) >> 3; 506486872cb5SThomas Graf 506586872cb5SThomas Graf if (nla_len(tb[RTA_DST]) < plen) 506686872cb5SThomas Graf goto errout; 506786872cb5SThomas Graf 506886872cb5SThomas Graf nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen); 50691da177e4SLinus Torvalds } 507086872cb5SThomas Graf 507186872cb5SThomas Graf if (tb[RTA_SRC]) { 507286872cb5SThomas Graf int plen = (rtm->rtm_src_len + 7) >> 3; 507386872cb5SThomas Graf 507486872cb5SThomas Graf if (nla_len(tb[RTA_SRC]) < plen) 507586872cb5SThomas Graf goto errout; 507686872cb5SThomas Graf 507786872cb5SThomas Graf nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen); 50781da177e4SLinus Torvalds } 507986872cb5SThomas Graf 5080c3968a85SDaniel Walter if (tb[RTA_PREFSRC]) 508167b61f6cSJiri Benc cfg->fc_prefsrc = nla_get_in6_addr(tb[RTA_PREFSRC]); 5082c3968a85SDaniel Walter 508386872cb5SThomas Graf if (tb[RTA_OIF]) 508486872cb5SThomas Graf cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]); 508586872cb5SThomas Graf 508686872cb5SThomas Graf if (tb[RTA_PRIORITY]) 508786872cb5SThomas Graf cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]); 508886872cb5SThomas Graf 508986872cb5SThomas Graf if (tb[RTA_METRICS]) { 509086872cb5SThomas Graf cfg->fc_mx = nla_data(tb[RTA_METRICS]); 509186872cb5SThomas Graf cfg->fc_mx_len = nla_len(tb[RTA_METRICS]); 50921da177e4SLinus Torvalds } 509386872cb5SThomas Graf 509486872cb5SThomas Graf if (tb[RTA_TABLE]) 509586872cb5SThomas Graf cfg->fc_table = nla_get_u32(tb[RTA_TABLE]); 509686872cb5SThomas Graf 509751ebd318SNicolas Dichtel if (tb[RTA_MULTIPATH]) { 509851ebd318SNicolas Dichtel cfg->fc_mp = nla_data(tb[RTA_MULTIPATH]); 509951ebd318SNicolas Dichtel cfg->fc_mp_len = nla_len(tb[RTA_MULTIPATH]); 51009ed59592SDavid Ahern 51019ed59592SDavid Ahern err = lwtunnel_valid_encap_type_attr(cfg->fc_mp, 5102c255bd68SDavid Ahern cfg->fc_mp_len, extack); 51039ed59592SDavid Ahern if (err < 0) 51049ed59592SDavid Ahern goto errout; 510551ebd318SNicolas Dichtel } 510651ebd318SNicolas Dichtel 5107c78ba6d6SLubomir Rintel if (tb[RTA_PREF]) { 5108c78ba6d6SLubomir Rintel pref = nla_get_u8(tb[RTA_PREF]); 5109c78ba6d6SLubomir Rintel if (pref != ICMPV6_ROUTER_PREF_LOW && 5110c78ba6d6SLubomir Rintel pref != ICMPV6_ROUTER_PREF_HIGH) 5111c78ba6d6SLubomir Rintel pref = ICMPV6_ROUTER_PREF_MEDIUM; 5112c78ba6d6SLubomir Rintel cfg->fc_flags |= RTF_PREF(pref); 5113c78ba6d6SLubomir Rintel } 5114c78ba6d6SLubomir Rintel 511519e42e45SRoopa Prabhu if (tb[RTA_ENCAP]) 511619e42e45SRoopa Prabhu cfg->fc_encap = tb[RTA_ENCAP]; 511719e42e45SRoopa Prabhu 51189ed59592SDavid Ahern if (tb[RTA_ENCAP_TYPE]) { 511919e42e45SRoopa Prabhu cfg->fc_encap_type = nla_get_u16(tb[RTA_ENCAP_TYPE]); 512019e42e45SRoopa Prabhu 5121c255bd68SDavid Ahern err = lwtunnel_valid_encap_type(cfg->fc_encap_type, extack); 51229ed59592SDavid Ahern if (err < 0) 51239ed59592SDavid Ahern goto errout; 51249ed59592SDavid Ahern } 51259ed59592SDavid Ahern 512632bc201eSXin Long if (tb[RTA_EXPIRES]) { 512732bc201eSXin Long unsigned long timeout = addrconf_timeout_fixup(nla_get_u32(tb[RTA_EXPIRES]), HZ); 512832bc201eSXin Long 512932bc201eSXin Long if (addrconf_finite_timeout(timeout)) { 513032bc201eSXin Long cfg->fc_expires = jiffies_to_clock_t(timeout * HZ); 513132bc201eSXin Long cfg->fc_flags |= RTF_EXPIRES; 513232bc201eSXin Long } 513332bc201eSXin Long } 513432bc201eSXin Long 513586872cb5SThomas Graf err = 0; 513686872cb5SThomas Graf errout: 513786872cb5SThomas Graf return err; 51381da177e4SLinus Torvalds } 51391da177e4SLinus Torvalds 51406b9ea5a6SRoopa Prabhu struct rt6_nh { 51418d1c802bSDavid Ahern struct fib6_info *fib6_info; 51426b9ea5a6SRoopa Prabhu struct fib6_config r_cfg; 51436b9ea5a6SRoopa Prabhu struct list_head next; 51446b9ea5a6SRoopa Prabhu }; 51456b9ea5a6SRoopa Prabhu 5146d4ead6b3SDavid Ahern static int ip6_route_info_append(struct net *net, 5147d4ead6b3SDavid Ahern struct list_head *rt6_nh_list, 51488d1c802bSDavid Ahern struct fib6_info *rt, 51498d1c802bSDavid Ahern struct fib6_config *r_cfg) 51506b9ea5a6SRoopa Prabhu { 51516b9ea5a6SRoopa Prabhu struct rt6_nh *nh; 51526b9ea5a6SRoopa Prabhu int err = -EEXIST; 51536b9ea5a6SRoopa Prabhu 51546b9ea5a6SRoopa Prabhu list_for_each_entry(nh, rt6_nh_list, next) { 51558d1c802bSDavid Ahern /* check if fib6_info already exists */ 51568d1c802bSDavid Ahern if (rt6_duplicate_nexthop(nh->fib6_info, rt)) 51576b9ea5a6SRoopa Prabhu return err; 51586b9ea5a6SRoopa Prabhu } 51596b9ea5a6SRoopa Prabhu 51606b9ea5a6SRoopa Prabhu nh = kzalloc(sizeof(*nh), GFP_KERNEL); 51616b9ea5a6SRoopa Prabhu if (!nh) 51626b9ea5a6SRoopa Prabhu return -ENOMEM; 51638d1c802bSDavid Ahern nh->fib6_info = rt; 51646b9ea5a6SRoopa Prabhu memcpy(&nh->r_cfg, r_cfg, sizeof(*r_cfg)); 51656b9ea5a6SRoopa Prabhu list_add_tail(&nh->next, rt6_nh_list); 51666b9ea5a6SRoopa Prabhu 51676b9ea5a6SRoopa Prabhu return 0; 51686b9ea5a6SRoopa Prabhu } 51696b9ea5a6SRoopa Prabhu 51708d1c802bSDavid Ahern static void ip6_route_mpath_notify(struct fib6_info *rt, 51718d1c802bSDavid Ahern struct fib6_info *rt_last, 51723b1137feSDavid Ahern struct nl_info *info, 51733b1137feSDavid Ahern __u16 nlflags) 51743b1137feSDavid Ahern { 51753b1137feSDavid Ahern /* if this is an APPEND route, then rt points to the first route 51763b1137feSDavid Ahern * inserted and rt_last points to last route inserted. Userspace 51773b1137feSDavid Ahern * wants a consistent dump of the route which starts at the first 51783b1137feSDavid Ahern * nexthop. Since sibling routes are always added at the end of 51793b1137feSDavid Ahern * the list, find the first sibling of the last route appended 51803b1137feSDavid Ahern */ 518193c2fb25SDavid Ahern if ((nlflags & NLM_F_APPEND) && rt_last && rt_last->fib6_nsiblings) { 518293c2fb25SDavid Ahern rt = list_first_entry(&rt_last->fib6_siblings, 51838d1c802bSDavid Ahern struct fib6_info, 518493c2fb25SDavid Ahern fib6_siblings); 51853b1137feSDavid Ahern } 51863b1137feSDavid Ahern 51873b1137feSDavid Ahern if (rt) 51883b1137feSDavid Ahern inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags); 51893b1137feSDavid Ahern } 51903b1137feSDavid Ahern 51910ee0f47cSIdo Schimmel static bool ip6_route_mpath_should_notify(const struct fib6_info *rt) 51920ee0f47cSIdo Schimmel { 51930ee0f47cSIdo Schimmel bool rt_can_ecmp = rt6_qualify_for_ecmp(rt); 51940ee0f47cSIdo Schimmel bool should_notify = false; 51950ee0f47cSIdo Schimmel struct fib6_info *leaf; 51960ee0f47cSIdo Schimmel struct fib6_node *fn; 51970ee0f47cSIdo Schimmel 51980ee0f47cSIdo Schimmel rcu_read_lock(); 51990ee0f47cSIdo Schimmel fn = rcu_dereference(rt->fib6_node); 52000ee0f47cSIdo Schimmel if (!fn) 52010ee0f47cSIdo Schimmel goto out; 52020ee0f47cSIdo Schimmel 52030ee0f47cSIdo Schimmel leaf = rcu_dereference(fn->leaf); 52040ee0f47cSIdo Schimmel if (!leaf) 52050ee0f47cSIdo Schimmel goto out; 52060ee0f47cSIdo Schimmel 52070ee0f47cSIdo Schimmel if (rt == leaf || 52080ee0f47cSIdo Schimmel (rt_can_ecmp && rt->fib6_metric == leaf->fib6_metric && 52090ee0f47cSIdo Schimmel rt6_qualify_for_ecmp(leaf))) 52100ee0f47cSIdo Schimmel should_notify = true; 52110ee0f47cSIdo Schimmel out: 52120ee0f47cSIdo Schimmel rcu_read_unlock(); 52130ee0f47cSIdo Schimmel 52140ee0f47cSIdo Schimmel return should_notify; 52150ee0f47cSIdo Schimmel } 52160ee0f47cSIdo Schimmel 52174619bcf9SDavid Ahern static int fib6_gw_from_attr(struct in6_addr *gw, struct nlattr *nla, 52184619bcf9SDavid Ahern struct netlink_ext_ack *extack) 52194619bcf9SDavid Ahern { 52204619bcf9SDavid Ahern if (nla_len(nla) < sizeof(*gw)) { 52214619bcf9SDavid Ahern NL_SET_ERR_MSG(extack, "Invalid IPv6 address in RTA_GATEWAY"); 52224619bcf9SDavid Ahern return -EINVAL; 52234619bcf9SDavid Ahern } 52244619bcf9SDavid Ahern 52254619bcf9SDavid Ahern *gw = nla_get_in6_addr(nla); 52264619bcf9SDavid Ahern 52274619bcf9SDavid Ahern return 0; 52284619bcf9SDavid Ahern } 52294619bcf9SDavid Ahern 5230333c4301SDavid Ahern static int ip6_route_multipath_add(struct fib6_config *cfg, 5231333c4301SDavid Ahern struct netlink_ext_ack *extack) 523251ebd318SNicolas Dichtel { 52338d1c802bSDavid Ahern struct fib6_info *rt_notif = NULL, *rt_last = NULL; 52343b1137feSDavid Ahern struct nl_info *info = &cfg->fc_nlinfo; 523551ebd318SNicolas Dichtel struct fib6_config r_cfg; 523651ebd318SNicolas Dichtel struct rtnexthop *rtnh; 52378d1c802bSDavid Ahern struct fib6_info *rt; 52386b9ea5a6SRoopa Prabhu struct rt6_nh *err_nh; 52396b9ea5a6SRoopa Prabhu struct rt6_nh *nh, *nh_safe; 52403b1137feSDavid Ahern __u16 nlflags; 524151ebd318SNicolas Dichtel int remaining; 524251ebd318SNicolas Dichtel int attrlen; 52436b9ea5a6SRoopa Prabhu int err = 1; 52446b9ea5a6SRoopa Prabhu int nhn = 0; 52456b9ea5a6SRoopa Prabhu int replace = (cfg->fc_nlinfo.nlh && 52466b9ea5a6SRoopa Prabhu (cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_REPLACE)); 52476b9ea5a6SRoopa Prabhu LIST_HEAD(rt6_nh_list); 524851ebd318SNicolas Dichtel 52493b1137feSDavid Ahern nlflags = replace ? NLM_F_REPLACE : NLM_F_CREATE; 52503b1137feSDavid Ahern if (info->nlh && info->nlh->nlmsg_flags & NLM_F_APPEND) 52513b1137feSDavid Ahern nlflags |= NLM_F_APPEND; 52523b1137feSDavid Ahern 525335f1b4e9SMichal Kubeček remaining = cfg->fc_mp_len; 525451ebd318SNicolas Dichtel rtnh = (struct rtnexthop *)cfg->fc_mp; 525551ebd318SNicolas Dichtel 52566b9ea5a6SRoopa Prabhu /* Parse a Multipath Entry and build a list (rt6_nh_list) of 52578d1c802bSDavid Ahern * fib6_info structs per nexthop 52586b9ea5a6SRoopa Prabhu */ 525951ebd318SNicolas Dichtel while (rtnh_ok(rtnh, remaining)) { 526051ebd318SNicolas Dichtel memcpy(&r_cfg, cfg, sizeof(*cfg)); 526151ebd318SNicolas Dichtel if (rtnh->rtnh_ifindex) 526251ebd318SNicolas Dichtel r_cfg.fc_ifindex = rtnh->rtnh_ifindex; 526351ebd318SNicolas Dichtel 526451ebd318SNicolas Dichtel attrlen = rtnh_attrlen(rtnh); 526551ebd318SNicolas Dichtel if (attrlen > 0) { 526651ebd318SNicolas Dichtel struct nlattr *nla, *attrs = rtnh_attrs(rtnh); 526751ebd318SNicolas Dichtel 526851ebd318SNicolas Dichtel nla = nla_find(attrs, attrlen, RTA_GATEWAY); 526951ebd318SNicolas Dichtel if (nla) { 527095bdba23SDavid Ahern err = fib6_gw_from_attr(&r_cfg.fc_gateway, nla, 52714619bcf9SDavid Ahern extack); 527295bdba23SDavid Ahern if (err) 527395bdba23SDavid Ahern goto cleanup; 52744619bcf9SDavid Ahern 527551ebd318SNicolas Dichtel r_cfg.fc_flags |= RTF_GATEWAY; 527651ebd318SNicolas Dichtel } 527719e42e45SRoopa Prabhu r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP); 52788bda81a4SDavid Ahern 52798bda81a4SDavid Ahern /* RTA_ENCAP_TYPE length checked in 52808bda81a4SDavid Ahern * lwtunnel_valid_encap_type_attr 52818bda81a4SDavid Ahern */ 528219e42e45SRoopa Prabhu nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE); 528319e42e45SRoopa Prabhu if (nla) 528419e42e45SRoopa Prabhu r_cfg.fc_encap_type = nla_get_u16(nla); 528551ebd318SNicolas Dichtel } 52866b9ea5a6SRoopa Prabhu 528768e2ffdeSDavid Ahern r_cfg.fc_flags |= (rtnh->rtnh_flags & RTNH_F_ONLINK); 5288acb54e3cSDavid Ahern rt = ip6_route_info_create(&r_cfg, GFP_KERNEL, extack); 52898c5b83f0SRoopa Prabhu if (IS_ERR(rt)) { 52908c5b83f0SRoopa Prabhu err = PTR_ERR(rt); 52918c5b83f0SRoopa Prabhu rt = NULL; 52926b9ea5a6SRoopa Prabhu goto cleanup; 52938c5b83f0SRoopa Prabhu } 5294b5d2d75eSDavid Ahern if (!rt6_qualify_for_ecmp(rt)) { 5295b5d2d75eSDavid Ahern err = -EINVAL; 5296b5d2d75eSDavid Ahern NL_SET_ERR_MSG(extack, 5297b5d2d75eSDavid Ahern "Device only routes can not be added for IPv6 using the multipath API."); 5298b5d2d75eSDavid Ahern fib6_info_release(rt); 5299b5d2d75eSDavid Ahern goto cleanup; 5300b5d2d75eSDavid Ahern } 53016b9ea5a6SRoopa Prabhu 53021cf844c7SDavid Ahern rt->fib6_nh->fib_nh_weight = rtnh->rtnh_hops + 1; 5303398958aeSIdo Schimmel 5304d4ead6b3SDavid Ahern err = ip6_route_info_append(info->nl_net, &rt6_nh_list, 5305d4ead6b3SDavid Ahern rt, &r_cfg); 530651ebd318SNicolas Dichtel if (err) { 530793531c67SDavid Ahern fib6_info_release(rt); 53086b9ea5a6SRoopa Prabhu goto cleanup; 530951ebd318SNicolas Dichtel } 53106b9ea5a6SRoopa Prabhu 53116b9ea5a6SRoopa Prabhu rtnh = rtnh_next(rtnh, &remaining); 531251ebd318SNicolas Dichtel } 53136b9ea5a6SRoopa Prabhu 53149eee3b49SIdo Schimmel if (list_empty(&rt6_nh_list)) { 53159eee3b49SIdo Schimmel NL_SET_ERR_MSG(extack, 53169eee3b49SIdo Schimmel "Invalid nexthop configuration - no valid nexthops"); 53179eee3b49SIdo Schimmel return -EINVAL; 53189eee3b49SIdo Schimmel } 53199eee3b49SIdo Schimmel 53203b1137feSDavid Ahern /* for add and replace send one notification with all nexthops. 53213b1137feSDavid Ahern * Skip the notification in fib6_add_rt2node and send one with 53223b1137feSDavid Ahern * the full route when done 53233b1137feSDavid Ahern */ 53243b1137feSDavid Ahern info->skip_notify = 1; 53253b1137feSDavid Ahern 5326ebee3cadSIdo Schimmel /* For add and replace, send one notification with all nexthops. For 5327ebee3cadSIdo Schimmel * append, send one notification with all appended nexthops. 5328ebee3cadSIdo Schimmel */ 5329ebee3cadSIdo Schimmel info->skip_notify_kernel = 1; 5330ebee3cadSIdo Schimmel 53316b9ea5a6SRoopa Prabhu err_nh = NULL; 53326b9ea5a6SRoopa Prabhu list_for_each_entry(nh, &rt6_nh_list, next) { 53338d1c802bSDavid Ahern err = __ip6_ins_rt(nh->fib6_info, info, extack); 53348d1c802bSDavid Ahern fib6_info_release(nh->fib6_info); 53353b1137feSDavid Ahern 5336f7225172SDavid Ahern if (!err) { 5337f7225172SDavid Ahern /* save reference to last route successfully inserted */ 5338f7225172SDavid Ahern rt_last = nh->fib6_info; 5339f7225172SDavid Ahern 53406b9ea5a6SRoopa Prabhu /* save reference to first route for notification */ 5341f7225172SDavid Ahern if (!rt_notif) 53428d1c802bSDavid Ahern rt_notif = nh->fib6_info; 5343f7225172SDavid Ahern } 53446b9ea5a6SRoopa Prabhu 53458d1c802bSDavid Ahern /* nh->fib6_info is used or freed at this point, reset to NULL*/ 53468d1c802bSDavid Ahern nh->fib6_info = NULL; 53476b9ea5a6SRoopa Prabhu if (err) { 53486b9ea5a6SRoopa Prabhu if (replace && nhn) 5349a5a82d84SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, 5350a5a82d84SJakub Kicinski "multipath route replace failed (check consistency of installed routes)"); 53516b9ea5a6SRoopa Prabhu err_nh = nh; 53526b9ea5a6SRoopa Prabhu goto add_errout; 53536b9ea5a6SRoopa Prabhu } 53546b9ea5a6SRoopa Prabhu 53551a72418bSNicolas Dichtel /* Because each route is added like a single route we remove 535627596472SMichal Kubeček * these flags after the first nexthop: if there is a collision, 535727596472SMichal Kubeček * we have already failed to add the first nexthop: 535827596472SMichal Kubeček * fib6_add_rt2node() has rejected it; when replacing, old 535927596472SMichal Kubeček * nexthops have been replaced by first new, the rest should 536027596472SMichal Kubeček * be added to it. 53611a72418bSNicolas Dichtel */ 5362864db232SMuhammad Usama Anjum if (cfg->fc_nlinfo.nlh) { 536327596472SMichal Kubeček cfg->fc_nlinfo.nlh->nlmsg_flags &= ~(NLM_F_EXCL | 536427596472SMichal Kubeček NLM_F_REPLACE); 5365afecdb37SBenjamin Poirier cfg->fc_nlinfo.nlh->nlmsg_flags |= NLM_F_CREATE; 5366864db232SMuhammad Usama Anjum } 53676b9ea5a6SRoopa Prabhu nhn++; 53686b9ea5a6SRoopa Prabhu } 53696b9ea5a6SRoopa Prabhu 53700ee0f47cSIdo Schimmel /* An in-kernel notification should only be sent in case the new 53710ee0f47cSIdo Schimmel * multipath route is added as the first route in the node, or if 53720ee0f47cSIdo Schimmel * it was appended to it. We pass 'rt_notif' since it is the first 53730ee0f47cSIdo Schimmel * sibling and might allow us to skip some checks in the replace case. 53740ee0f47cSIdo Schimmel */ 53750ee0f47cSIdo Schimmel if (ip6_route_mpath_should_notify(rt_notif)) { 53760ee0f47cSIdo Schimmel enum fib_event_type fib_event; 53770ee0f47cSIdo Schimmel 53780ee0f47cSIdo Schimmel if (rt_notif->fib6_nsiblings != nhn - 1) 53790ee0f47cSIdo Schimmel fib_event = FIB_EVENT_ENTRY_APPEND; 53800ee0f47cSIdo Schimmel else 5381caafb250SIdo Schimmel fib_event = FIB_EVENT_ENTRY_REPLACE; 53820ee0f47cSIdo Schimmel 53830ee0f47cSIdo Schimmel err = call_fib6_multipath_entry_notifiers(info->nl_net, 53840ee0f47cSIdo Schimmel fib_event, rt_notif, 53850ee0f47cSIdo Schimmel nhn - 1, extack); 53860ee0f47cSIdo Schimmel if (err) { 53870ee0f47cSIdo Schimmel /* Delete all the siblings that were just added */ 53880ee0f47cSIdo Schimmel err_nh = NULL; 53890ee0f47cSIdo Schimmel goto add_errout; 53900ee0f47cSIdo Schimmel } 53910ee0f47cSIdo Schimmel } 5392ebee3cadSIdo Schimmel 53933b1137feSDavid Ahern /* success ... tell user about new route */ 53943b1137feSDavid Ahern ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags); 53956b9ea5a6SRoopa Prabhu goto cleanup; 53966b9ea5a6SRoopa Prabhu 53976b9ea5a6SRoopa Prabhu add_errout: 53983b1137feSDavid Ahern /* send notification for routes that were added so that 53993b1137feSDavid Ahern * the delete notifications sent by ip6_route_del are 54003b1137feSDavid Ahern * coherent 54013b1137feSDavid Ahern */ 54023b1137feSDavid Ahern if (rt_notif) 54033b1137feSDavid Ahern ip6_route_mpath_notify(rt_notif, rt_last, info, nlflags); 54043b1137feSDavid Ahern 54056b9ea5a6SRoopa Prabhu /* Delete routes that were already added */ 54066b9ea5a6SRoopa Prabhu list_for_each_entry(nh, &rt6_nh_list, next) { 54076b9ea5a6SRoopa Prabhu if (err_nh == nh) 54086b9ea5a6SRoopa Prabhu break; 5409333c4301SDavid Ahern ip6_route_del(&nh->r_cfg, extack); 54106b9ea5a6SRoopa Prabhu } 54116b9ea5a6SRoopa Prabhu 54126b9ea5a6SRoopa Prabhu cleanup: 54136b9ea5a6SRoopa Prabhu list_for_each_entry_safe(nh, nh_safe, &rt6_nh_list, next) { 54148d1c802bSDavid Ahern if (nh->fib6_info) 54158d1c802bSDavid Ahern fib6_info_release(nh->fib6_info); 54166b9ea5a6SRoopa Prabhu list_del(&nh->next); 54176b9ea5a6SRoopa Prabhu kfree(nh); 54186b9ea5a6SRoopa Prabhu } 54196b9ea5a6SRoopa Prabhu 54206b9ea5a6SRoopa Prabhu return err; 54216b9ea5a6SRoopa Prabhu } 54226b9ea5a6SRoopa Prabhu 5423333c4301SDavid Ahern static int ip6_route_multipath_del(struct fib6_config *cfg, 5424333c4301SDavid Ahern struct netlink_ext_ack *extack) 54256b9ea5a6SRoopa Prabhu { 54266b9ea5a6SRoopa Prabhu struct fib6_config r_cfg; 54276b9ea5a6SRoopa Prabhu struct rtnexthop *rtnh; 54282291267eSColin Ian King int last_err = 0; 54296b9ea5a6SRoopa Prabhu int remaining; 54306b9ea5a6SRoopa Prabhu int attrlen; 54312291267eSColin Ian King int err; 54326b9ea5a6SRoopa Prabhu 54336b9ea5a6SRoopa Prabhu remaining = cfg->fc_mp_len; 54346b9ea5a6SRoopa Prabhu rtnh = (struct rtnexthop *)cfg->fc_mp; 54356b9ea5a6SRoopa Prabhu 54366b9ea5a6SRoopa Prabhu /* Parse a Multipath Entry */ 54376b9ea5a6SRoopa Prabhu while (rtnh_ok(rtnh, remaining)) { 54386b9ea5a6SRoopa Prabhu memcpy(&r_cfg, cfg, sizeof(*cfg)); 54396b9ea5a6SRoopa Prabhu if (rtnh->rtnh_ifindex) 54406b9ea5a6SRoopa Prabhu r_cfg.fc_ifindex = rtnh->rtnh_ifindex; 54416b9ea5a6SRoopa Prabhu 54426b9ea5a6SRoopa Prabhu attrlen = rtnh_attrlen(rtnh); 54436b9ea5a6SRoopa Prabhu if (attrlen > 0) { 54446b9ea5a6SRoopa Prabhu struct nlattr *nla, *attrs = rtnh_attrs(rtnh); 54456b9ea5a6SRoopa Prabhu 54466b9ea5a6SRoopa Prabhu nla = nla_find(attrs, attrlen, RTA_GATEWAY); 54476b9ea5a6SRoopa Prabhu if (nla) { 54481ff15a71SDavid Ahern err = fib6_gw_from_attr(&r_cfg.fc_gateway, nla, 54491ff15a71SDavid Ahern extack); 5450e30a845bSDavid Ahern if (err) { 5451e30a845bSDavid Ahern last_err = err; 5452e30a845bSDavid Ahern goto next_rtnh; 5453e30a845bSDavid Ahern } 54541ff15a71SDavid Ahern 54556b9ea5a6SRoopa Prabhu r_cfg.fc_flags |= RTF_GATEWAY; 54566b9ea5a6SRoopa Prabhu } 54576b9ea5a6SRoopa Prabhu } 5458333c4301SDavid Ahern err = ip6_route_del(&r_cfg, extack); 54596b9ea5a6SRoopa Prabhu if (err) 54606b9ea5a6SRoopa Prabhu last_err = err; 54616b9ea5a6SRoopa Prabhu 5462e30a845bSDavid Ahern next_rtnh: 546351ebd318SNicolas Dichtel rtnh = rtnh_next(rtnh, &remaining); 546451ebd318SNicolas Dichtel } 546551ebd318SNicolas Dichtel 546651ebd318SNicolas Dichtel return last_err; 546751ebd318SNicolas Dichtel } 546851ebd318SNicolas Dichtel 5469c21ef3e3SDavid Ahern static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh, 5470c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 54711da177e4SLinus Torvalds { 547286872cb5SThomas Graf struct fib6_config cfg; 547386872cb5SThomas Graf int err; 54741da177e4SLinus Torvalds 5475333c4301SDavid Ahern err = rtm_to_fib6_config(skb, nlh, &cfg, extack); 547686872cb5SThomas Graf if (err < 0) 547786872cb5SThomas Graf return err; 547886872cb5SThomas Graf 54795b98324eSDavid Ahern if (cfg.fc_nh_id && 54805b98324eSDavid Ahern !nexthop_find_by_id(sock_net(skb->sk), cfg.fc_nh_id)) { 54815b98324eSDavid Ahern NL_SET_ERR_MSG(extack, "Nexthop id does not exist"); 54825b98324eSDavid Ahern return -EINVAL; 54835b98324eSDavid Ahern } 54845b98324eSDavid Ahern 548551ebd318SNicolas Dichtel if (cfg.fc_mp) 5486333c4301SDavid Ahern return ip6_route_multipath_del(&cfg, extack); 54870ae81335SDavid Ahern else { 54880ae81335SDavid Ahern cfg.fc_delete_all_nh = 1; 5489333c4301SDavid Ahern return ip6_route_del(&cfg, extack); 54901da177e4SLinus Torvalds } 54910ae81335SDavid Ahern } 54921da177e4SLinus Torvalds 5493c21ef3e3SDavid Ahern static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh, 5494c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 54951da177e4SLinus Torvalds { 549686872cb5SThomas Graf struct fib6_config cfg; 549786872cb5SThomas Graf int err; 54981da177e4SLinus Torvalds 5499333c4301SDavid Ahern err = rtm_to_fib6_config(skb, nlh, &cfg, extack); 550086872cb5SThomas Graf if (err < 0) 550186872cb5SThomas Graf return err; 550286872cb5SThomas Graf 550367f69513SDavid Ahern if (cfg.fc_metric == 0) 550467f69513SDavid Ahern cfg.fc_metric = IP6_RT_PRIO_USER; 550567f69513SDavid Ahern 550651ebd318SNicolas Dichtel if (cfg.fc_mp) 5507333c4301SDavid Ahern return ip6_route_multipath_add(&cfg, extack); 550851ebd318SNicolas Dichtel else 5509acb54e3cSDavid Ahern return ip6_route_add(&cfg, GFP_KERNEL, extack); 55101da177e4SLinus Torvalds } 55111da177e4SLinus Torvalds 5512a1b7a1f0SDavid Ahern /* add the overhead of this fib6_nh to nexthop_len */ 5513a1b7a1f0SDavid Ahern static int rt6_nh_nlmsg_size(struct fib6_nh *nh, void *arg) 5514339bf98fSThomas Graf { 5515a1b7a1f0SDavid Ahern int *nexthop_len = arg; 5516beb1afacSDavid Ahern 5517a1b7a1f0SDavid Ahern *nexthop_len += nla_total_size(0) /* RTA_MULTIPATH */ 5518a1b7a1f0SDavid Ahern + NLA_ALIGN(sizeof(struct rtnexthop)) 5519a1b7a1f0SDavid Ahern + nla_total_size(16); /* RTA_GATEWAY */ 5520f88d8ea6SDavid Ahern 5521a1b7a1f0SDavid Ahern if (nh->fib_nh_lws) { 5522a1b7a1f0SDavid Ahern /* RTA_ENCAP_TYPE */ 5523a1b7a1f0SDavid Ahern *nexthop_len += lwtunnel_get_encap_size(nh->fib_nh_lws); 5524a1b7a1f0SDavid Ahern /* RTA_ENCAP */ 5525a1b7a1f0SDavid Ahern *nexthop_len += nla_total_size(2); 5526a1b7a1f0SDavid Ahern } 5527a1b7a1f0SDavid Ahern 5528a1b7a1f0SDavid Ahern return 0; 5529a1b7a1f0SDavid Ahern } 5530a1b7a1f0SDavid Ahern 5531a1b7a1f0SDavid Ahern static size_t rt6_nlmsg_size(struct fib6_info *f6i) 5532a1b7a1f0SDavid Ahern { 5533a1b7a1f0SDavid Ahern int nexthop_len; 5534a1b7a1f0SDavid Ahern 5535a1b7a1f0SDavid Ahern if (f6i->nh) { 5536a1b7a1f0SDavid Ahern nexthop_len = nla_total_size(4); /* RTA_NH_ID */ 5537a1b7a1f0SDavid Ahern nexthop_for_each_fib6_nh(f6i->nh, rt6_nh_nlmsg_size, 5538a1b7a1f0SDavid Ahern &nexthop_len); 5539a1b7a1f0SDavid Ahern } else { 5540a1b7a1f0SDavid Ahern struct fib6_nh *nh = f6i->fib6_nh; 5541a1b7a1f0SDavid Ahern 5542a1b7a1f0SDavid Ahern nexthop_len = 0; 5543a1b7a1f0SDavid Ahern if (f6i->fib6_nsiblings) { 5544beb1afacSDavid Ahern nexthop_len = nla_total_size(0) /* RTA_MULTIPATH */ 5545beb1afacSDavid Ahern + NLA_ALIGN(sizeof(struct rtnexthop)) 5546beb1afacSDavid Ahern + nla_total_size(16) /* RTA_GATEWAY */ 5547a1b7a1f0SDavid Ahern + lwtunnel_get_encap_size(nh->fib_nh_lws); 5548beb1afacSDavid Ahern 5549a1b7a1f0SDavid Ahern nexthop_len *= f6i->fib6_nsiblings; 5550a1b7a1f0SDavid Ahern } 5551a1b7a1f0SDavid Ahern nexthop_len += lwtunnel_get_encap_size(nh->fib_nh_lws); 5552beb1afacSDavid Ahern } 5553beb1afacSDavid Ahern 5554339bf98fSThomas Graf return NLMSG_ALIGN(sizeof(struct rtmsg)) 5555339bf98fSThomas Graf + nla_total_size(16) /* RTA_SRC */ 5556339bf98fSThomas Graf + nla_total_size(16) /* RTA_DST */ 5557339bf98fSThomas Graf + nla_total_size(16) /* RTA_GATEWAY */ 5558339bf98fSThomas Graf + nla_total_size(16) /* RTA_PREFSRC */ 5559339bf98fSThomas Graf + nla_total_size(4) /* RTA_TABLE */ 5560339bf98fSThomas Graf + nla_total_size(4) /* RTA_IIF */ 5561339bf98fSThomas Graf + nla_total_size(4) /* RTA_OIF */ 5562339bf98fSThomas Graf + nla_total_size(4) /* RTA_PRIORITY */ 55636a2b9ce0SNoriaki TAKAMIYA + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */ 5564ea697639SDaniel Borkmann + nla_total_size(sizeof(struct rta_cacheinfo)) 5565c78ba6d6SLubomir Rintel + nla_total_size(TCP_CA_NAME_MAX) /* RTAX_CC_ALGO */ 556619e42e45SRoopa Prabhu + nla_total_size(1) /* RTA_PREF */ 5567beb1afacSDavid Ahern + nexthop_len; 5568beb1afacSDavid Ahern } 5569beb1afacSDavid Ahern 5570f88d8ea6SDavid Ahern static int rt6_fill_node_nexthop(struct sk_buff *skb, struct nexthop *nh, 5571f88d8ea6SDavid Ahern unsigned char *flags) 5572f88d8ea6SDavid Ahern { 5573f88d8ea6SDavid Ahern if (nexthop_is_multipath(nh)) { 5574f88d8ea6SDavid Ahern struct nlattr *mp; 5575f88d8ea6SDavid Ahern 55764255ff05SDavid Ahern mp = nla_nest_start_noflag(skb, RTA_MULTIPATH); 5577f88d8ea6SDavid Ahern if (!mp) 5578f88d8ea6SDavid Ahern goto nla_put_failure; 5579f88d8ea6SDavid Ahern 55807bdf4de1SDonald Sharp if (nexthop_mpath_fill_node(skb, nh, AF_INET6)) 5581f88d8ea6SDavid Ahern goto nla_put_failure; 5582f88d8ea6SDavid Ahern 5583f88d8ea6SDavid Ahern nla_nest_end(skb, mp); 5584f88d8ea6SDavid Ahern } else { 5585f88d8ea6SDavid Ahern struct fib6_nh *fib6_nh; 5586f88d8ea6SDavid Ahern 5587f88d8ea6SDavid Ahern fib6_nh = nexthop_fib6_nh(nh); 55887bdf4de1SDonald Sharp if (fib_nexthop_info(skb, &fib6_nh->nh_common, AF_INET6, 5589f88d8ea6SDavid Ahern flags, false) < 0) 5590f88d8ea6SDavid Ahern goto nla_put_failure; 5591f88d8ea6SDavid Ahern } 5592f88d8ea6SDavid Ahern 5593f88d8ea6SDavid Ahern return 0; 5594f88d8ea6SDavid Ahern 5595f88d8ea6SDavid Ahern nla_put_failure: 5596f88d8ea6SDavid Ahern return -EMSGSIZE; 5597f88d8ea6SDavid Ahern } 5598f88d8ea6SDavid Ahern 5599d4ead6b3SDavid Ahern static int rt6_fill_node(struct net *net, struct sk_buff *skb, 56008d1c802bSDavid Ahern struct fib6_info *rt, struct dst_entry *dst, 5601d4ead6b3SDavid Ahern struct in6_addr *dest, struct in6_addr *src, 560215e47304SEric W. Biederman int iif, int type, u32 portid, u32 seq, 5603f8cfe2ceSDavid Ahern unsigned int flags) 56041da177e4SLinus Torvalds { 560522d0bd82SXin Long struct rt6_info *rt6 = (struct rt6_info *)dst; 560622d0bd82SXin Long struct rt6key *rt6_dst, *rt6_src; 560722d0bd82SXin Long u32 *pmetrics, table, rt6_flags; 5608f88d8ea6SDavid Ahern unsigned char nh_flags = 0; 56091da177e4SLinus Torvalds struct nlmsghdr *nlh; 561022d0bd82SXin Long struct rtmsg *rtm; 5611d4ead6b3SDavid Ahern long expires = 0; 56121da177e4SLinus Torvalds 561315e47304SEric W. Biederman nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags); 561438308473SDavid S. Miller if (!nlh) 561526932566SPatrick McHardy return -EMSGSIZE; 56162d7202bfSThomas Graf 561722d0bd82SXin Long if (rt6) { 561822d0bd82SXin Long rt6_dst = &rt6->rt6i_dst; 561922d0bd82SXin Long rt6_src = &rt6->rt6i_src; 562022d0bd82SXin Long rt6_flags = rt6->rt6i_flags; 562122d0bd82SXin Long } else { 562222d0bd82SXin Long rt6_dst = &rt->fib6_dst; 562322d0bd82SXin Long rt6_src = &rt->fib6_src; 562422d0bd82SXin Long rt6_flags = rt->fib6_flags; 562522d0bd82SXin Long } 562622d0bd82SXin Long 56272d7202bfSThomas Graf rtm = nlmsg_data(nlh); 56281da177e4SLinus Torvalds rtm->rtm_family = AF_INET6; 562922d0bd82SXin Long rtm->rtm_dst_len = rt6_dst->plen; 563022d0bd82SXin Long rtm->rtm_src_len = rt6_src->plen; 56311da177e4SLinus Torvalds rtm->rtm_tos = 0; 563293c2fb25SDavid Ahern if (rt->fib6_table) 563393c2fb25SDavid Ahern table = rt->fib6_table->tb6_id; 5634c71099acSThomas Graf else 56359e762a4aSPatrick McHardy table = RT6_TABLE_UNSPEC; 563697f0082aSKalash Nainwal rtm->rtm_table = table < 256 ? table : RT_TABLE_COMPAT; 5637c78679e8SDavid S. Miller if (nla_put_u32(skb, RTA_TABLE, table)) 5638c78679e8SDavid S. Miller goto nla_put_failure; 5639e8478e80SDavid Ahern 5640e8478e80SDavid Ahern rtm->rtm_type = rt->fib6_type; 56411da177e4SLinus Torvalds rtm->rtm_flags = 0; 56421da177e4SLinus Torvalds rtm->rtm_scope = RT_SCOPE_UNIVERSE; 564393c2fb25SDavid Ahern rtm->rtm_protocol = rt->fib6_protocol; 56441da177e4SLinus Torvalds 564522d0bd82SXin Long if (rt6_flags & RTF_CACHE) 56461da177e4SLinus Torvalds rtm->rtm_flags |= RTM_F_CLONED; 56471da177e4SLinus Torvalds 5648d4ead6b3SDavid Ahern if (dest) { 5649d4ead6b3SDavid Ahern if (nla_put_in6_addr(skb, RTA_DST, dest)) 5650c78679e8SDavid S. Miller goto nla_put_failure; 56511da177e4SLinus Torvalds rtm->rtm_dst_len = 128; 56521da177e4SLinus Torvalds } else if (rtm->rtm_dst_len) 565322d0bd82SXin Long if (nla_put_in6_addr(skb, RTA_DST, &rt6_dst->addr)) 5654c78679e8SDavid S. Miller goto nla_put_failure; 56551da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES 56561da177e4SLinus Torvalds if (src) { 5657930345eaSJiri Benc if (nla_put_in6_addr(skb, RTA_SRC, src)) 5658c78679e8SDavid S. Miller goto nla_put_failure; 56591da177e4SLinus Torvalds rtm->rtm_src_len = 128; 5660c78679e8SDavid S. Miller } else if (rtm->rtm_src_len && 566122d0bd82SXin Long nla_put_in6_addr(skb, RTA_SRC, &rt6_src->addr)) 5662c78679e8SDavid S. Miller goto nla_put_failure; 56631da177e4SLinus Torvalds #endif 56647bc570c8SYOSHIFUJI Hideaki if (iif) { 56657bc570c8SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_MROUTE 566622d0bd82SXin Long if (ipv6_addr_is_multicast(&rt6_dst->addr)) { 5667fd61c6baSDavid Ahern int err = ip6mr_get_route(net, skb, rtm, portid); 56682cf75070SNikolay Aleksandrov 56697bc570c8SYOSHIFUJI Hideaki if (err == 0) 56707bc570c8SYOSHIFUJI Hideaki return 0; 5671fd61c6baSDavid Ahern if (err < 0) 56727bc570c8SYOSHIFUJI Hideaki goto nla_put_failure; 56737bc570c8SYOSHIFUJI Hideaki } else 56747bc570c8SYOSHIFUJI Hideaki #endif 5675c78679e8SDavid S. Miller if (nla_put_u32(skb, RTA_IIF, iif)) 5676c78679e8SDavid S. Miller goto nla_put_failure; 5677d4ead6b3SDavid Ahern } else if (dest) { 56781da177e4SLinus Torvalds struct in6_addr saddr_buf; 5679d4ead6b3SDavid Ahern if (ip6_route_get_saddr(net, rt, dest, 0, &saddr_buf) == 0 && 5680930345eaSJiri Benc nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf)) 5681c78679e8SDavid S. Miller goto nla_put_failure; 5682c3968a85SDaniel Walter } 5683c3968a85SDaniel Walter 568493c2fb25SDavid Ahern if (rt->fib6_prefsrc.plen) { 5685c3968a85SDaniel Walter struct in6_addr saddr_buf; 568693c2fb25SDavid Ahern saddr_buf = rt->fib6_prefsrc.addr; 5687930345eaSJiri Benc if (nla_put_in6_addr(skb, RTA_PREFSRC, &saddr_buf)) 5688c78679e8SDavid S. Miller goto nla_put_failure; 56891da177e4SLinus Torvalds } 56902d7202bfSThomas Graf 5691d4ead6b3SDavid Ahern pmetrics = dst ? dst_metrics_ptr(dst) : rt->fib6_metrics->metrics; 5692d4ead6b3SDavid Ahern if (rtnetlink_put_metrics(skb, pmetrics) < 0) 56932d7202bfSThomas Graf goto nla_put_failure; 56942d7202bfSThomas Graf 569593c2fb25SDavid Ahern if (nla_put_u32(skb, RTA_PRIORITY, rt->fib6_metric)) 5696beb1afacSDavid Ahern goto nla_put_failure; 5697beb1afacSDavid Ahern 5698beb1afacSDavid Ahern /* For multipath routes, walk the siblings list and add 5699beb1afacSDavid Ahern * each as a nexthop within RTA_MULTIPATH. 5700beb1afacSDavid Ahern */ 570122d0bd82SXin Long if (rt6) { 570222d0bd82SXin Long if (rt6_flags & RTF_GATEWAY && 570322d0bd82SXin Long nla_put_in6_addr(skb, RTA_GATEWAY, &rt6->rt6i_gateway)) 570422d0bd82SXin Long goto nla_put_failure; 570522d0bd82SXin Long 570622d0bd82SXin Long if (dst->dev && nla_put_u32(skb, RTA_OIF, dst->dev->ifindex)) 570722d0bd82SXin Long goto nla_put_failure; 57086b13d8f7SOliver Herms 57096b13d8f7SOliver Herms if (dst->lwtstate && 57106b13d8f7SOliver Herms lwtunnel_fill_encap(skb, dst->lwtstate, RTA_ENCAP, RTA_ENCAP_TYPE) < 0) 57116b13d8f7SOliver Herms goto nla_put_failure; 571222d0bd82SXin Long } else if (rt->fib6_nsiblings) { 57138d1c802bSDavid Ahern struct fib6_info *sibling, *next_sibling; 5714beb1afacSDavid Ahern struct nlattr *mp; 5715beb1afacSDavid Ahern 5716ae0be8deSMichal Kubecek mp = nla_nest_start_noflag(skb, RTA_MULTIPATH); 5717beb1afacSDavid Ahern if (!mp) 5718beb1afacSDavid Ahern goto nla_put_failure; 5719beb1afacSDavid Ahern 57201cf844c7SDavid Ahern if (fib_add_nexthop(skb, &rt->fib6_nh->nh_common, 5721597aa16cSXiao Liang rt->fib6_nh->fib_nh_weight, AF_INET6, 5722597aa16cSXiao Liang 0) < 0) 5723beb1afacSDavid Ahern goto nla_put_failure; 5724beb1afacSDavid Ahern 5725beb1afacSDavid Ahern list_for_each_entry_safe(sibling, next_sibling, 572693c2fb25SDavid Ahern &rt->fib6_siblings, fib6_siblings) { 57271cf844c7SDavid Ahern if (fib_add_nexthop(skb, &sibling->fib6_nh->nh_common, 57287bdf4de1SDonald Sharp sibling->fib6_nh->fib_nh_weight, 5729597aa16cSXiao Liang AF_INET6, 0) < 0) 573094f826b8SEric Dumazet goto nla_put_failure; 573194f826b8SEric Dumazet } 57322d7202bfSThomas Graf 5733beb1afacSDavid Ahern nla_nest_end(skb, mp); 5734f88d8ea6SDavid Ahern } else if (rt->nh) { 5735f88d8ea6SDavid Ahern if (nla_put_u32(skb, RTA_NH_ID, rt->nh->id)) 5736f88d8ea6SDavid Ahern goto nla_put_failure; 5737ecc5663cSDavid Ahern 5738f88d8ea6SDavid Ahern if (nexthop_is_blackhole(rt->nh)) 5739f88d8ea6SDavid Ahern rtm->rtm_type = RTN_BLACKHOLE; 5740f88d8ea6SDavid Ahern 5741bdf00bf2SKuniyuki Iwashima if (READ_ONCE(net->ipv4.sysctl_nexthop_compat_mode) && 57424f80116dSRoopa Prabhu rt6_fill_node_nexthop(skb, rt->nh, &nh_flags) < 0) 5743f88d8ea6SDavid Ahern goto nla_put_failure; 5744f88d8ea6SDavid Ahern 5745f88d8ea6SDavid Ahern rtm->rtm_flags |= nh_flags; 5746f88d8ea6SDavid Ahern } else { 57477bdf4de1SDonald Sharp if (fib_nexthop_info(skb, &rt->fib6_nh->nh_common, AF_INET6, 5748ecc5663cSDavid Ahern &nh_flags, false) < 0) 5749c78679e8SDavid S. Miller goto nla_put_failure; 5750ecc5663cSDavid Ahern 5751ecc5663cSDavid Ahern rtm->rtm_flags |= nh_flags; 5752beb1afacSDavid Ahern } 57538253947eSLi Wei 575422d0bd82SXin Long if (rt6_flags & RTF_EXPIRES) { 575514895687SDavid Ahern expires = dst ? dst->expires : rt->expires; 575614895687SDavid Ahern expires -= jiffies; 575714895687SDavid Ahern } 575869cdf8f9SYOSHIFUJI Hideaki 5759bb3c4ab9SIdo Schimmel if (!dst) { 5760d95d6320SEric Dumazet if (READ_ONCE(rt->offload)) 5761bb3c4ab9SIdo Schimmel rtm->rtm_flags |= RTM_F_OFFLOAD; 5762d95d6320SEric Dumazet if (READ_ONCE(rt->trap)) 5763bb3c4ab9SIdo Schimmel rtm->rtm_flags |= RTM_F_TRAP; 5764d95d6320SEric Dumazet if (READ_ONCE(rt->offload_failed)) 57650c5fcf9eSAmit Cohen rtm->rtm_flags |= RTM_F_OFFLOAD_FAILED; 5766bb3c4ab9SIdo Schimmel } 5767bb3c4ab9SIdo Schimmel 5768d4ead6b3SDavid Ahern if (rtnl_put_cacheinfo(skb, dst, 0, expires, dst ? dst->error : 0) < 0) 5769e3703b3dSThomas Graf goto nla_put_failure; 57701da177e4SLinus Torvalds 577122d0bd82SXin Long if (nla_put_u8(skb, RTA_PREF, IPV6_EXTRACT_PREF(rt6_flags))) 5772c78ba6d6SLubomir Rintel goto nla_put_failure; 5773c78ba6d6SLubomir Rintel 577419e42e45SRoopa Prabhu 5775053c095aSJohannes Berg nlmsg_end(skb, nlh); 5776053c095aSJohannes Berg return 0; 57772d7202bfSThomas Graf 57782d7202bfSThomas Graf nla_put_failure: 577926932566SPatrick McHardy nlmsg_cancel(skb, nlh); 578026932566SPatrick McHardy return -EMSGSIZE; 57811da177e4SLinus Torvalds } 57821da177e4SLinus Torvalds 57832c170e07SDavid Ahern static int fib6_info_nh_uses_dev(struct fib6_nh *nh, void *arg) 57842c170e07SDavid Ahern { 57852c170e07SDavid Ahern const struct net_device *dev = arg; 57862c170e07SDavid Ahern 57872c170e07SDavid Ahern if (nh->fib_nh_dev == dev) 57882c170e07SDavid Ahern return 1; 57892c170e07SDavid Ahern 57902c170e07SDavid Ahern return 0; 57912c170e07SDavid Ahern } 57922c170e07SDavid Ahern 579313e38901SDavid Ahern static bool fib6_info_uses_dev(const struct fib6_info *f6i, 579413e38901SDavid Ahern const struct net_device *dev) 579513e38901SDavid Ahern { 57962c170e07SDavid Ahern if (f6i->nh) { 57972c170e07SDavid Ahern struct net_device *_dev = (struct net_device *)dev; 57982c170e07SDavid Ahern 57992c170e07SDavid Ahern return !!nexthop_for_each_fib6_nh(f6i->nh, 58002c170e07SDavid Ahern fib6_info_nh_uses_dev, 58012c170e07SDavid Ahern _dev); 58022c170e07SDavid Ahern } 58032c170e07SDavid Ahern 58041cf844c7SDavid Ahern if (f6i->fib6_nh->fib_nh_dev == dev) 580513e38901SDavid Ahern return true; 580613e38901SDavid Ahern 580713e38901SDavid Ahern if (f6i->fib6_nsiblings) { 580813e38901SDavid Ahern struct fib6_info *sibling, *next_sibling; 580913e38901SDavid Ahern 581013e38901SDavid Ahern list_for_each_entry_safe(sibling, next_sibling, 581113e38901SDavid Ahern &f6i->fib6_siblings, fib6_siblings) { 58121cf844c7SDavid Ahern if (sibling->fib6_nh->fib_nh_dev == dev) 581313e38901SDavid Ahern return true; 581413e38901SDavid Ahern } 581513e38901SDavid Ahern } 581613e38901SDavid Ahern 581713e38901SDavid Ahern return false; 581813e38901SDavid Ahern } 581913e38901SDavid Ahern 58201e47b483SStefano Brivio struct fib6_nh_exception_dump_walker { 58211e47b483SStefano Brivio struct rt6_rtnl_dump_arg *dump; 58221e47b483SStefano Brivio struct fib6_info *rt; 58231e47b483SStefano Brivio unsigned int flags; 58241e47b483SStefano Brivio unsigned int skip; 58251e47b483SStefano Brivio unsigned int count; 58261e47b483SStefano Brivio }; 58271e47b483SStefano Brivio 58281e47b483SStefano Brivio static int rt6_nh_dump_exceptions(struct fib6_nh *nh, void *arg) 58291e47b483SStefano Brivio { 58301e47b483SStefano Brivio struct fib6_nh_exception_dump_walker *w = arg; 58311e47b483SStefano Brivio struct rt6_rtnl_dump_arg *dump = w->dump; 58321e47b483SStefano Brivio struct rt6_exception_bucket *bucket; 58331e47b483SStefano Brivio struct rt6_exception *rt6_ex; 58341e47b483SStefano Brivio int i, err; 58351e47b483SStefano Brivio 58361e47b483SStefano Brivio bucket = fib6_nh_get_excptn_bucket(nh, NULL); 58371e47b483SStefano Brivio if (!bucket) 58381e47b483SStefano Brivio return 0; 58391e47b483SStefano Brivio 58401e47b483SStefano Brivio for (i = 0; i < FIB6_EXCEPTION_BUCKET_SIZE; i++) { 58411e47b483SStefano Brivio hlist_for_each_entry(rt6_ex, &bucket->chain, hlist) { 58421e47b483SStefano Brivio if (w->skip) { 58431e47b483SStefano Brivio w->skip--; 58441e47b483SStefano Brivio continue; 58451e47b483SStefano Brivio } 58461e47b483SStefano Brivio 58471e47b483SStefano Brivio /* Expiration of entries doesn't bump sernum, insertion 58481e47b483SStefano Brivio * does. Removal is triggered by insertion, so we can 58491e47b483SStefano Brivio * rely on the fact that if entries change between two 58501e47b483SStefano Brivio * partial dumps, this node is scanned again completely, 58511e47b483SStefano Brivio * see rt6_insert_exception() and fib6_dump_table(). 58521e47b483SStefano Brivio * 58531e47b483SStefano Brivio * Count expired entries we go through as handled 58541e47b483SStefano Brivio * entries that we'll skip next time, in case of partial 58551e47b483SStefano Brivio * node dump. Otherwise, if entries expire meanwhile, 58561e47b483SStefano Brivio * we'll skip the wrong amount. 58571e47b483SStefano Brivio */ 58581e47b483SStefano Brivio if (rt6_check_expired(rt6_ex->rt6i)) { 58591e47b483SStefano Brivio w->count++; 58601e47b483SStefano Brivio continue; 58611e47b483SStefano Brivio } 58621e47b483SStefano Brivio 58631e47b483SStefano Brivio err = rt6_fill_node(dump->net, dump->skb, w->rt, 58641e47b483SStefano Brivio &rt6_ex->rt6i->dst, NULL, NULL, 0, 58651e47b483SStefano Brivio RTM_NEWROUTE, 58661e47b483SStefano Brivio NETLINK_CB(dump->cb->skb).portid, 58671e47b483SStefano Brivio dump->cb->nlh->nlmsg_seq, w->flags); 58681e47b483SStefano Brivio if (err) 58691e47b483SStefano Brivio return err; 58701e47b483SStefano Brivio 58711e47b483SStefano Brivio w->count++; 58721e47b483SStefano Brivio } 58731e47b483SStefano Brivio bucket++; 58741e47b483SStefano Brivio } 58751e47b483SStefano Brivio 58761e47b483SStefano Brivio return 0; 58771e47b483SStefano Brivio } 58781e47b483SStefano Brivio 5879bf9a8a06SStefano Brivio /* Return -1 if done with node, number of handled routes on partial dump */ 58801e47b483SStefano Brivio int rt6_dump_route(struct fib6_info *rt, void *p_arg, unsigned int skip) 58811da177e4SLinus Torvalds { 58821da177e4SLinus Torvalds struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg; 588313e38901SDavid Ahern struct fib_dump_filter *filter = &arg->filter; 588413e38901SDavid Ahern unsigned int flags = NLM_F_MULTI; 58851f17e2f2SDavid Ahern struct net *net = arg->net; 58861e47b483SStefano Brivio int count = 0; 58871f17e2f2SDavid Ahern 5888421842edSDavid Ahern if (rt == net->ipv6.fib6_null_entry) 5889bf9a8a06SStefano Brivio return -1; 58901da177e4SLinus Torvalds 589113e38901SDavid Ahern if ((filter->flags & RTM_F_PREFIX) && 589293c2fb25SDavid Ahern !(rt->fib6_flags & RTF_PREFIX_RT)) { 5893f8cfe2ceSDavid Ahern /* success since this is not a prefix route */ 5894bf9a8a06SStefano Brivio return -1; 5895f8cfe2ceSDavid Ahern } 58961e47b483SStefano Brivio if (filter->filter_set && 58971e47b483SStefano Brivio ((filter->rt_type && rt->fib6_type != filter->rt_type) || 589813e38901SDavid Ahern (filter->dev && !fib6_info_uses_dev(rt, filter->dev)) || 58991e47b483SStefano Brivio (filter->protocol && rt->fib6_protocol != filter->protocol))) { 5900bf9a8a06SStefano Brivio return -1; 590113e38901SDavid Ahern } 59021e47b483SStefano Brivio 59031e47b483SStefano Brivio if (filter->filter_set || 59041e47b483SStefano Brivio !filter->dump_routes || !filter->dump_exceptions) { 590513e38901SDavid Ahern flags |= NLM_F_DUMP_FILTERED; 5906f8cfe2ceSDavid Ahern } 59071da177e4SLinus Torvalds 59081e47b483SStefano Brivio if (filter->dump_routes) { 59091e47b483SStefano Brivio if (skip) { 59101e47b483SStefano Brivio skip--; 59111e47b483SStefano Brivio } else { 59121e47b483SStefano Brivio if (rt6_fill_node(net, arg->skb, rt, NULL, NULL, NULL, 59131e47b483SStefano Brivio 0, RTM_NEWROUTE, 5914bf9a8a06SStefano Brivio NETLINK_CB(arg->cb->skb).portid, 59151e47b483SStefano Brivio arg->cb->nlh->nlmsg_seq, flags)) { 5916bf9a8a06SStefano Brivio return 0; 59171e47b483SStefano Brivio } 59181e47b483SStefano Brivio count++; 59191e47b483SStefano Brivio } 59201e47b483SStefano Brivio } 59211e47b483SStefano Brivio 59221e47b483SStefano Brivio if (filter->dump_exceptions) { 59231e47b483SStefano Brivio struct fib6_nh_exception_dump_walker w = { .dump = arg, 59241e47b483SStefano Brivio .rt = rt, 59251e47b483SStefano Brivio .flags = flags, 59261e47b483SStefano Brivio .skip = skip, 59271e47b483SStefano Brivio .count = 0 }; 59281e47b483SStefano Brivio int err; 59291e47b483SStefano Brivio 59303b525691SEric Dumazet rcu_read_lock(); 59311e47b483SStefano Brivio if (rt->nh) { 59321e47b483SStefano Brivio err = nexthop_for_each_fib6_nh(rt->nh, 59331e47b483SStefano Brivio rt6_nh_dump_exceptions, 59341e47b483SStefano Brivio &w); 59351e47b483SStefano Brivio } else { 59361e47b483SStefano Brivio err = rt6_nh_dump_exceptions(rt->fib6_nh, &w); 59371e47b483SStefano Brivio } 59383b525691SEric Dumazet rcu_read_unlock(); 59391e47b483SStefano Brivio 59401e47b483SStefano Brivio if (err) 594174fd304fSColin Ian King return count + w.count; 59421e47b483SStefano Brivio } 5943bf9a8a06SStefano Brivio 5944bf9a8a06SStefano Brivio return -1; 59451da177e4SLinus Torvalds } 59461da177e4SLinus Torvalds 59470eff0a27SJakub Kicinski static int inet6_rtm_valid_getroute_req(struct sk_buff *skb, 59480eff0a27SJakub Kicinski const struct nlmsghdr *nlh, 59490eff0a27SJakub Kicinski struct nlattr **tb, 59500eff0a27SJakub Kicinski struct netlink_ext_ack *extack) 59510eff0a27SJakub Kicinski { 59520eff0a27SJakub Kicinski struct rtmsg *rtm; 59530eff0a27SJakub Kicinski int i, err; 59540eff0a27SJakub Kicinski 59550eff0a27SJakub Kicinski if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*rtm))) { 59560eff0a27SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, 59570eff0a27SJakub Kicinski "Invalid header for get route request"); 59580eff0a27SJakub Kicinski return -EINVAL; 59590eff0a27SJakub Kicinski } 59600eff0a27SJakub Kicinski 59610eff0a27SJakub Kicinski if (!netlink_strict_get_check(skb)) 59628cb08174SJohannes Berg return nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX, 59630eff0a27SJakub Kicinski rtm_ipv6_policy, extack); 59640eff0a27SJakub Kicinski 59650eff0a27SJakub Kicinski rtm = nlmsg_data(nlh); 59660eff0a27SJakub Kicinski if ((rtm->rtm_src_len && rtm->rtm_src_len != 128) || 59670eff0a27SJakub Kicinski (rtm->rtm_dst_len && rtm->rtm_dst_len != 128) || 59680eff0a27SJakub Kicinski rtm->rtm_table || rtm->rtm_protocol || rtm->rtm_scope || 59690eff0a27SJakub Kicinski rtm->rtm_type) { 59700eff0a27SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, "Invalid values in header for get route request"); 59710eff0a27SJakub Kicinski return -EINVAL; 59720eff0a27SJakub Kicinski } 59730eff0a27SJakub Kicinski if (rtm->rtm_flags & ~RTM_F_FIB_MATCH) { 59740eff0a27SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, 59750eff0a27SJakub Kicinski "Invalid flags for get route request"); 59760eff0a27SJakub Kicinski return -EINVAL; 59770eff0a27SJakub Kicinski } 59780eff0a27SJakub Kicinski 59798cb08174SJohannes Berg err = nlmsg_parse_deprecated_strict(nlh, sizeof(*rtm), tb, RTA_MAX, 59800eff0a27SJakub Kicinski rtm_ipv6_policy, extack); 59810eff0a27SJakub Kicinski if (err) 59820eff0a27SJakub Kicinski return err; 59830eff0a27SJakub Kicinski 59840eff0a27SJakub Kicinski if ((tb[RTA_SRC] && !rtm->rtm_src_len) || 59850eff0a27SJakub Kicinski (tb[RTA_DST] && !rtm->rtm_dst_len)) { 59860eff0a27SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, "rtm_src_len and rtm_dst_len must be 128 for IPv6"); 59870eff0a27SJakub Kicinski return -EINVAL; 59880eff0a27SJakub Kicinski } 59890eff0a27SJakub Kicinski 59900eff0a27SJakub Kicinski for (i = 0; i <= RTA_MAX; i++) { 59910eff0a27SJakub Kicinski if (!tb[i]) 59920eff0a27SJakub Kicinski continue; 59930eff0a27SJakub Kicinski 59940eff0a27SJakub Kicinski switch (i) { 59950eff0a27SJakub Kicinski case RTA_SRC: 59960eff0a27SJakub Kicinski case RTA_DST: 59970eff0a27SJakub Kicinski case RTA_IIF: 59980eff0a27SJakub Kicinski case RTA_OIF: 59990eff0a27SJakub Kicinski case RTA_MARK: 60000eff0a27SJakub Kicinski case RTA_UID: 60010eff0a27SJakub Kicinski case RTA_SPORT: 60020eff0a27SJakub Kicinski case RTA_DPORT: 60030eff0a27SJakub Kicinski case RTA_IP_PROTO: 60040eff0a27SJakub Kicinski break; 60050eff0a27SJakub Kicinski default: 60060eff0a27SJakub Kicinski NL_SET_ERR_MSG_MOD(extack, "Unsupported attribute in get route request"); 60070eff0a27SJakub Kicinski return -EINVAL; 60080eff0a27SJakub Kicinski } 60090eff0a27SJakub Kicinski } 60100eff0a27SJakub Kicinski 60110eff0a27SJakub Kicinski return 0; 60120eff0a27SJakub Kicinski } 60130eff0a27SJakub Kicinski 6014c21ef3e3SDavid Ahern static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, 6015c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 60161da177e4SLinus Torvalds { 60173b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(in_skb->sk); 6018ab364a6fSThomas Graf struct nlattr *tb[RTA_MAX+1]; 601918c3a61cSRoopa Prabhu int err, iif = 0, oif = 0; 6020a68886a6SDavid Ahern struct fib6_info *from; 602118c3a61cSRoopa Prabhu struct dst_entry *dst; 60221da177e4SLinus Torvalds struct rt6_info *rt; 6023ab364a6fSThomas Graf struct sk_buff *skb; 6024ab364a6fSThomas Graf struct rtmsg *rtm; 6025744486d4SMaciej Żenczykowski struct flowi6 fl6 = {}; 602618c3a61cSRoopa Prabhu bool fibmatch; 6027ab364a6fSThomas Graf 60280eff0a27SJakub Kicinski err = inet6_rtm_valid_getroute_req(in_skb, nlh, tb, extack); 6029ab364a6fSThomas Graf if (err < 0) 6030ab364a6fSThomas Graf goto errout; 6031ab364a6fSThomas Graf 6032ab364a6fSThomas Graf err = -EINVAL; 603338b7097bSHannes Frederic Sowa rtm = nlmsg_data(nlh); 603438b7097bSHannes Frederic Sowa fl6.flowlabel = ip6_make_flowinfo(rtm->rtm_tos, 0); 603518c3a61cSRoopa Prabhu fibmatch = !!(rtm->rtm_flags & RTM_F_FIB_MATCH); 6036ab364a6fSThomas Graf 6037ab364a6fSThomas Graf if (tb[RTA_SRC]) { 6038ab364a6fSThomas Graf if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr)) 6039ab364a6fSThomas Graf goto errout; 6040ab364a6fSThomas Graf 60414e3fd7a0SAlexey Dobriyan fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]); 6042ab364a6fSThomas Graf } 6043ab364a6fSThomas Graf 6044ab364a6fSThomas Graf if (tb[RTA_DST]) { 6045ab364a6fSThomas Graf if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr)) 6046ab364a6fSThomas Graf goto errout; 6047ab364a6fSThomas Graf 60484e3fd7a0SAlexey Dobriyan fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]); 6049ab364a6fSThomas Graf } 6050ab364a6fSThomas Graf 6051ab364a6fSThomas Graf if (tb[RTA_IIF]) 6052ab364a6fSThomas Graf iif = nla_get_u32(tb[RTA_IIF]); 6053ab364a6fSThomas Graf 6054ab364a6fSThomas Graf if (tb[RTA_OIF]) 605572331bc0SShmulik Ladkani oif = nla_get_u32(tb[RTA_OIF]); 6056ab364a6fSThomas Graf 60572e47b291SLorenzo Colitti if (tb[RTA_MARK]) 60582e47b291SLorenzo Colitti fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]); 60592e47b291SLorenzo Colitti 6060622ec2c9SLorenzo Colitti if (tb[RTA_UID]) 6061622ec2c9SLorenzo Colitti fl6.flowi6_uid = make_kuid(current_user_ns(), 6062622ec2c9SLorenzo Colitti nla_get_u32(tb[RTA_UID])); 6063622ec2c9SLorenzo Colitti else 6064622ec2c9SLorenzo Colitti fl6.flowi6_uid = iif ? INVALID_UID : current_uid(); 6065622ec2c9SLorenzo Colitti 6066eacb9384SRoopa Prabhu if (tb[RTA_SPORT]) 6067eacb9384SRoopa Prabhu fl6.fl6_sport = nla_get_be16(tb[RTA_SPORT]); 6068eacb9384SRoopa Prabhu 6069eacb9384SRoopa Prabhu if (tb[RTA_DPORT]) 6070eacb9384SRoopa Prabhu fl6.fl6_dport = nla_get_be16(tb[RTA_DPORT]); 6071eacb9384SRoopa Prabhu 6072eacb9384SRoopa Prabhu if (tb[RTA_IP_PROTO]) { 6073eacb9384SRoopa Prabhu err = rtm_getroute_parse_ip_proto(tb[RTA_IP_PROTO], 60745e1a99eaSHangbin Liu &fl6.flowi6_proto, AF_INET6, 60755e1a99eaSHangbin Liu extack); 6076eacb9384SRoopa Prabhu if (err) 6077eacb9384SRoopa Prabhu goto errout; 6078eacb9384SRoopa Prabhu } 6079eacb9384SRoopa Prabhu 6080ab364a6fSThomas Graf if (iif) { 6081ab364a6fSThomas Graf struct net_device *dev; 608272331bc0SShmulik Ladkani int flags = 0; 608372331bc0SShmulik Ladkani 6084121622dbSFlorian Westphal rcu_read_lock(); 6085121622dbSFlorian Westphal 6086121622dbSFlorian Westphal dev = dev_get_by_index_rcu(net, iif); 6087ab364a6fSThomas Graf if (!dev) { 6088121622dbSFlorian Westphal rcu_read_unlock(); 6089ab364a6fSThomas Graf err = -ENODEV; 6090ab364a6fSThomas Graf goto errout; 6091ab364a6fSThomas Graf } 609272331bc0SShmulik Ladkani 609372331bc0SShmulik Ladkani fl6.flowi6_iif = iif; 609472331bc0SShmulik Ladkani 609572331bc0SShmulik Ladkani if (!ipv6_addr_any(&fl6.saddr)) 609672331bc0SShmulik Ladkani flags |= RT6_LOOKUP_F_HAS_SADDR; 609772331bc0SShmulik Ladkani 6098b75cc8f9SDavid Ahern dst = ip6_route_input_lookup(net, dev, &fl6, NULL, flags); 6099121622dbSFlorian Westphal 6100121622dbSFlorian Westphal rcu_read_unlock(); 610172331bc0SShmulik Ladkani } else { 610272331bc0SShmulik Ladkani fl6.flowi6_oif = oif; 610372331bc0SShmulik Ladkani 610418c3a61cSRoopa Prabhu dst = ip6_route_output(net, NULL, &fl6); 610518c3a61cSRoopa Prabhu } 610618c3a61cSRoopa Prabhu 610718c3a61cSRoopa Prabhu 610818c3a61cSRoopa Prabhu rt = container_of(dst, struct rt6_info, dst); 610918c3a61cSRoopa Prabhu if (rt->dst.error) { 611018c3a61cSRoopa Prabhu err = rt->dst.error; 611118c3a61cSRoopa Prabhu ip6_rt_put(rt); 611218c3a61cSRoopa Prabhu goto errout; 6113ab364a6fSThomas Graf } 61141da177e4SLinus Torvalds 61159d6acb3bSWANG Cong if (rt == net->ipv6.ip6_null_entry) { 61169d6acb3bSWANG Cong err = rt->dst.error; 61179d6acb3bSWANG Cong ip6_rt_put(rt); 61189d6acb3bSWANG Cong goto errout; 61199d6acb3bSWANG Cong } 61209d6acb3bSWANG Cong 61211da177e4SLinus Torvalds skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); 612238308473SDavid S. Miller if (!skb) { 612394e187c0SAmerigo Wang ip6_rt_put(rt); 6124ab364a6fSThomas Graf err = -ENOBUFS; 6125ab364a6fSThomas Graf goto errout; 6126ab364a6fSThomas Graf } 61271da177e4SLinus Torvalds 6128d8d1f30bSChangli Gao skb_dst_set(skb, &rt->dst); 6129a68886a6SDavid Ahern 6130a68886a6SDavid Ahern rcu_read_lock(); 6131a68886a6SDavid Ahern from = rcu_dereference(rt->from); 6132886b7a50SMartin KaFai Lau if (from) { 613318c3a61cSRoopa Prabhu if (fibmatch) 6134886b7a50SMartin KaFai Lau err = rt6_fill_node(net, skb, from, NULL, NULL, NULL, 6135886b7a50SMartin KaFai Lau iif, RTM_NEWROUTE, 6136886b7a50SMartin KaFai Lau NETLINK_CB(in_skb).portid, 613718c3a61cSRoopa Prabhu nlh->nlmsg_seq, 0); 613818c3a61cSRoopa Prabhu else 6139a68886a6SDavid Ahern err = rt6_fill_node(net, skb, from, dst, &fl6.daddr, 6140a68886a6SDavid Ahern &fl6.saddr, iif, RTM_NEWROUTE, 6141886b7a50SMartin KaFai Lau NETLINK_CB(in_skb).portid, 6142886b7a50SMartin KaFai Lau nlh->nlmsg_seq, 0); 6143886b7a50SMartin KaFai Lau } else { 6144886b7a50SMartin KaFai Lau err = -ENETUNREACH; 6145886b7a50SMartin KaFai Lau } 6146a68886a6SDavid Ahern rcu_read_unlock(); 6147a68886a6SDavid Ahern 61481da177e4SLinus Torvalds if (err < 0) { 6149ab364a6fSThomas Graf kfree_skb(skb); 6150ab364a6fSThomas Graf goto errout; 61511da177e4SLinus Torvalds } 61521da177e4SLinus Torvalds 615315e47304SEric W. Biederman err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid); 6154ab364a6fSThomas Graf errout: 61551da177e4SLinus Torvalds return err; 61561da177e4SLinus Torvalds } 61571da177e4SLinus Torvalds 61588d1c802bSDavid Ahern void inet6_rt_notify(int event, struct fib6_info *rt, struct nl_info *info, 615937a1d361SRoopa Prabhu unsigned int nlm_flags) 61601da177e4SLinus Torvalds { 61611da177e4SLinus Torvalds struct sk_buff *skb; 61625578689aSDaniel Lezcano struct net *net = info->nl_net; 6163528c4cebSDenis V. Lunev u32 seq; 6164528c4cebSDenis V. Lunev int err; 61650d51aa80SJamal Hadi Salim 6166528c4cebSDenis V. Lunev err = -ENOBUFS; 616738308473SDavid S. Miller seq = info->nlh ? info->nlh->nlmsg_seq : 0; 616886872cb5SThomas Graf 616919e42e45SRoopa Prabhu skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any()); 617038308473SDavid S. Miller if (!skb) 617121713ebcSThomas Graf goto errout; 61721da177e4SLinus Torvalds 6173d4ead6b3SDavid Ahern err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0, 6174f8cfe2ceSDavid Ahern event, info->portid, seq, nlm_flags); 617526932566SPatrick McHardy if (err < 0) { 617626932566SPatrick McHardy /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */ 617726932566SPatrick McHardy WARN_ON(err == -EMSGSIZE); 617826932566SPatrick McHardy kfree_skb(skb); 617926932566SPatrick McHardy goto errout; 618026932566SPatrick McHardy } 618115e47304SEric W. Biederman rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE, 61825578689aSDaniel Lezcano info->nlh, gfp_any()); 61831ce85fe4SPablo Neira Ayuso return; 618421713ebcSThomas Graf errout: 618521713ebcSThomas Graf if (err < 0) 61865578689aSDaniel Lezcano rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err); 61871da177e4SLinus Torvalds } 61881da177e4SLinus Torvalds 618919a3b7eeSDavid Ahern void fib6_rt_update(struct net *net, struct fib6_info *rt, 619019a3b7eeSDavid Ahern struct nl_info *info) 619119a3b7eeSDavid Ahern { 619219a3b7eeSDavid Ahern u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0; 619319a3b7eeSDavid Ahern struct sk_buff *skb; 619419a3b7eeSDavid Ahern int err = -ENOBUFS; 619519a3b7eeSDavid Ahern 619619a3b7eeSDavid Ahern skb = nlmsg_new(rt6_nlmsg_size(rt), gfp_any()); 619719a3b7eeSDavid Ahern if (!skb) 619819a3b7eeSDavid Ahern goto errout; 619919a3b7eeSDavid Ahern 620019a3b7eeSDavid Ahern err = rt6_fill_node(net, skb, rt, NULL, NULL, NULL, 0, 620119a3b7eeSDavid Ahern RTM_NEWROUTE, info->portid, seq, NLM_F_REPLACE); 620219a3b7eeSDavid Ahern if (err < 0) { 620319a3b7eeSDavid Ahern /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */ 620419a3b7eeSDavid Ahern WARN_ON(err == -EMSGSIZE); 620519a3b7eeSDavid Ahern kfree_skb(skb); 620619a3b7eeSDavid Ahern goto errout; 620719a3b7eeSDavid Ahern } 620819a3b7eeSDavid Ahern rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE, 620919a3b7eeSDavid Ahern info->nlh, gfp_any()); 621019a3b7eeSDavid Ahern return; 621119a3b7eeSDavid Ahern errout: 621219a3b7eeSDavid Ahern if (err < 0) 621319a3b7eeSDavid Ahern rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err); 621419a3b7eeSDavid Ahern } 621519a3b7eeSDavid Ahern 6216907eea48SAmit Cohen void fib6_info_hw_flags_set(struct net *net, struct fib6_info *f6i, 62170c5fcf9eSAmit Cohen bool offload, bool trap, bool offload_failed) 6218907eea48SAmit Cohen { 6219907eea48SAmit Cohen struct sk_buff *skb; 6220907eea48SAmit Cohen int err; 6221907eea48SAmit Cohen 6222d95d6320SEric Dumazet if (READ_ONCE(f6i->offload) == offload && 6223d95d6320SEric Dumazet READ_ONCE(f6i->trap) == trap && 6224d95d6320SEric Dumazet READ_ONCE(f6i->offload_failed) == offload_failed) 6225907eea48SAmit Cohen return; 6226907eea48SAmit Cohen 6227d95d6320SEric Dumazet WRITE_ONCE(f6i->offload, offload); 6228d95d6320SEric Dumazet WRITE_ONCE(f6i->trap, trap); 62296fad361aSAmit Cohen 62306fad361aSAmit Cohen /* 2 means send notifications only if offload_failed was changed. */ 62316fad361aSAmit Cohen if (net->ipv6.sysctl.fib_notify_on_flag_change == 2 && 6232d95d6320SEric Dumazet READ_ONCE(f6i->offload_failed) == offload_failed) 62336fad361aSAmit Cohen return; 62346fad361aSAmit Cohen 6235d95d6320SEric Dumazet WRITE_ONCE(f6i->offload_failed, offload_failed); 6236907eea48SAmit Cohen 6237907eea48SAmit Cohen if (!rcu_access_pointer(f6i->fib6_node)) 6238907eea48SAmit Cohen /* The route was removed from the tree, do not send 623989e8347fSBhaskar Chowdhury * notification. 6240907eea48SAmit Cohen */ 6241907eea48SAmit Cohen return; 6242907eea48SAmit Cohen 6243907eea48SAmit Cohen if (!net->ipv6.sysctl.fib_notify_on_flag_change) 6244907eea48SAmit Cohen return; 6245907eea48SAmit Cohen 6246907eea48SAmit Cohen skb = nlmsg_new(rt6_nlmsg_size(f6i), GFP_KERNEL); 6247907eea48SAmit Cohen if (!skb) { 6248907eea48SAmit Cohen err = -ENOBUFS; 6249907eea48SAmit Cohen goto errout; 6250907eea48SAmit Cohen } 6251907eea48SAmit Cohen 6252907eea48SAmit Cohen err = rt6_fill_node(net, skb, f6i, NULL, NULL, NULL, 0, RTM_NEWROUTE, 0, 6253907eea48SAmit Cohen 0, 0); 6254907eea48SAmit Cohen if (err < 0) { 6255907eea48SAmit Cohen /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */ 6256907eea48SAmit Cohen WARN_ON(err == -EMSGSIZE); 6257907eea48SAmit Cohen kfree_skb(skb); 6258907eea48SAmit Cohen goto errout; 6259907eea48SAmit Cohen } 6260907eea48SAmit Cohen 6261907eea48SAmit Cohen rtnl_notify(skb, net, 0, RTNLGRP_IPV6_ROUTE, NULL, GFP_KERNEL); 6262907eea48SAmit Cohen return; 6263907eea48SAmit Cohen 6264907eea48SAmit Cohen errout: 6265907eea48SAmit Cohen rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err); 6266907eea48SAmit Cohen } 6267907eea48SAmit Cohen EXPORT_SYMBOL(fib6_info_hw_flags_set); 6268907eea48SAmit Cohen 62698ed67789SDaniel Lezcano static int ip6_route_dev_notify(struct notifier_block *this, 6270351638e7SJiri Pirko unsigned long event, void *ptr) 62718ed67789SDaniel Lezcano { 6272351638e7SJiri Pirko struct net_device *dev = netdev_notifier_info_to_dev(ptr); 6273c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(dev); 62748ed67789SDaniel Lezcano 6275242d3a49SWANG Cong if (!(dev->flags & IFF_LOOPBACK)) 6276242d3a49SWANG Cong return NOTIFY_OK; 6277242d3a49SWANG Cong 6278242d3a49SWANG Cong if (event == NETDEV_REGISTER) { 62791cf844c7SDavid Ahern net->ipv6.fib6_null_entry->fib6_nh->fib_nh_dev = dev; 6280d8d1f30bSChangli Gao net->ipv6.ip6_null_entry->dst.dev = dev; 62818ed67789SDaniel Lezcano net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev); 62828ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES 6283d8d1f30bSChangli Gao net->ipv6.ip6_prohibit_entry->dst.dev = dev; 62848ed67789SDaniel Lezcano net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev); 6285d8d1f30bSChangli Gao net->ipv6.ip6_blk_hole_entry->dst.dev = dev; 62868ed67789SDaniel Lezcano net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev); 62878ed67789SDaniel Lezcano #endif 628876da0704SWANG Cong } else if (event == NETDEV_UNREGISTER && 628976da0704SWANG Cong dev->reg_state != NETREG_UNREGISTERED) { 629076da0704SWANG Cong /* NETDEV_UNREGISTER could be fired for multiple times by 629176da0704SWANG Cong * netdev_wait_allrefs(). Make sure we only call this once. 629276da0704SWANG Cong */ 629312d94a80SEric Dumazet in6_dev_put_clear(&net->ipv6.ip6_null_entry->rt6i_idev); 6294242d3a49SWANG Cong #ifdef CONFIG_IPV6_MULTIPLE_TABLES 629512d94a80SEric Dumazet in6_dev_put_clear(&net->ipv6.ip6_prohibit_entry->rt6i_idev); 629612d94a80SEric Dumazet in6_dev_put_clear(&net->ipv6.ip6_blk_hole_entry->rt6i_idev); 6297242d3a49SWANG Cong #endif 62988ed67789SDaniel Lezcano } 62998ed67789SDaniel Lezcano 63008ed67789SDaniel Lezcano return NOTIFY_OK; 63018ed67789SDaniel Lezcano } 63028ed67789SDaniel Lezcano 63031da177e4SLinus Torvalds /* 63041da177e4SLinus Torvalds * /proc 63051da177e4SLinus Torvalds */ 63061da177e4SLinus Torvalds 63071da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS 63081da177e4SLinus Torvalds static int rt6_stats_seq_show(struct seq_file *seq, void *v) 63091da177e4SLinus Torvalds { 631069ddb805SDaniel Lezcano struct net *net = (struct net *)seq->private; 63111da177e4SLinus Torvalds seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n", 631269ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_nodes, 631369ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_route_nodes, 631481eb8447SWei Wang atomic_read(&net->ipv6.rt6_stats->fib_rt_alloc), 631569ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_rt_entries, 631669ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_rt_cache, 6317fc66f95cSEric Dumazet dst_entries_get_slow(&net->ipv6.ip6_dst_ops), 631869ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_discarded_routes); 63191da177e4SLinus Torvalds 63201da177e4SLinus Torvalds return 0; 63211da177e4SLinus Torvalds } 63221da177e4SLinus Torvalds #endif /* CONFIG_PROC_FS */ 63231da177e4SLinus Torvalds 63241da177e4SLinus Torvalds #ifdef CONFIG_SYSCTL 63251da177e4SLinus Torvalds 632632927393SChristoph Hellwig static int ipv6_sysctl_rtcache_flush(struct ctl_table *ctl, int write, 632732927393SChristoph Hellwig void *buffer, size_t *lenp, loff_t *ppos) 63281da177e4SLinus Torvalds { 6329c486da34SLucian Adrian Grijincu struct net *net; 6330c486da34SLucian Adrian Grijincu int delay; 6331f0fb9b28SAditya Pakki int ret; 6332c486da34SLucian Adrian Grijincu if (!write) 6333c486da34SLucian Adrian Grijincu return -EINVAL; 6334c486da34SLucian Adrian Grijincu 6335c486da34SLucian Adrian Grijincu net = (struct net *)ctl->extra1; 6336c486da34SLucian Adrian Grijincu delay = net->ipv6.sysctl.flush_delay; 6337f0fb9b28SAditya Pakki ret = proc_dointvec(ctl, write, buffer, lenp, ppos); 6338f0fb9b28SAditya Pakki if (ret) 6339f0fb9b28SAditya Pakki return ret; 6340f0fb9b28SAditya Pakki 63412ac3ac8fSMichal Kubeček fib6_run_gc(delay <= 0 ? 0 : (unsigned long)delay, net, delay > 0); 63421da177e4SLinus Torvalds return 0; 63431da177e4SLinus Torvalds } 63441da177e4SLinus Torvalds 6345ed792e28SDavid Ahern static struct ctl_table ipv6_route_table_template[] = { 63461da177e4SLinus Torvalds { 634706e6c88fSAlexander Kuznetsov .procname = "max_size", 634806e6c88fSAlexander Kuznetsov .data = &init_net.ipv6.sysctl.ip6_rt_max_size, 63491da177e4SLinus Torvalds .maxlen = sizeof(int), 635006e6c88fSAlexander Kuznetsov .mode = 0644, 635106e6c88fSAlexander Kuznetsov .proc_handler = proc_dointvec, 63521da177e4SLinus Torvalds }, 63531da177e4SLinus Torvalds { 63541da177e4SLinus Torvalds .procname = "gc_thresh", 63559a7ec3a9SDaniel Lezcano .data = &ip6_dst_ops_template.gc_thresh, 63561da177e4SLinus Torvalds .maxlen = sizeof(int), 63571da177e4SLinus Torvalds .mode = 0644, 63586d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 63591da177e4SLinus Torvalds }, 63601da177e4SLinus Torvalds { 636106e6c88fSAlexander Kuznetsov .procname = "flush", 636206e6c88fSAlexander Kuznetsov .data = &init_net.ipv6.sysctl.flush_delay, 63631da177e4SLinus Torvalds .maxlen = sizeof(int), 636406e6c88fSAlexander Kuznetsov .mode = 0200, 636506e6c88fSAlexander Kuznetsov .proc_handler = ipv6_sysctl_rtcache_flush 63661da177e4SLinus Torvalds }, 63671da177e4SLinus Torvalds { 63681da177e4SLinus Torvalds .procname = "gc_min_interval", 63694990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval, 63701da177e4SLinus Torvalds .maxlen = sizeof(int), 63711da177e4SLinus Torvalds .mode = 0644, 63726d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 63731da177e4SLinus Torvalds }, 63741da177e4SLinus Torvalds { 63751da177e4SLinus Torvalds .procname = "gc_timeout", 63764990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout, 63771da177e4SLinus Torvalds .maxlen = sizeof(int), 63781da177e4SLinus Torvalds .mode = 0644, 63796d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 63801da177e4SLinus Torvalds }, 63811da177e4SLinus Torvalds { 63821da177e4SLinus Torvalds .procname = "gc_interval", 63834990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval, 63841da177e4SLinus Torvalds .maxlen = sizeof(int), 63851da177e4SLinus Torvalds .mode = 0644, 63866d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 63871da177e4SLinus Torvalds }, 63881da177e4SLinus Torvalds { 63891da177e4SLinus Torvalds .procname = "gc_elasticity", 63904990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity, 63911da177e4SLinus Torvalds .maxlen = sizeof(int), 63921da177e4SLinus Torvalds .mode = 0644, 6393f3d3f616SMin Zhang .proc_handler = proc_dointvec, 63941da177e4SLinus Torvalds }, 63951da177e4SLinus Torvalds { 63961da177e4SLinus Torvalds .procname = "mtu_expires", 63974990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires, 63981da177e4SLinus Torvalds .maxlen = sizeof(int), 63991da177e4SLinus Torvalds .mode = 0644, 64006d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 64011da177e4SLinus Torvalds }, 64021da177e4SLinus Torvalds { 64031da177e4SLinus Torvalds .procname = "min_adv_mss", 64044990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss, 64051da177e4SLinus Torvalds .maxlen = sizeof(int), 64061da177e4SLinus Torvalds .mode = 0644, 6407f3d3f616SMin Zhang .proc_handler = proc_dointvec, 64081da177e4SLinus Torvalds }, 64091da177e4SLinus Torvalds { 64101da177e4SLinus Torvalds .procname = "gc_min_interval_ms", 64114990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval, 64121da177e4SLinus Torvalds .maxlen = sizeof(int), 64131da177e4SLinus Torvalds .mode = 0644, 64146d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_ms_jiffies, 64151da177e4SLinus Torvalds }, 64167c6bb7d2SDavid Ahern { 64177c6bb7d2SDavid Ahern .procname = "skip_notify_on_dev_down", 64187c6bb7d2SDavid Ahern .data = &init_net.ipv6.sysctl.skip_notify_on_dev_down, 64197c6bb7d2SDavid Ahern .maxlen = sizeof(int), 64207c6bb7d2SDavid Ahern .mode = 0644, 6421b8e8a863SEiichi Tsukata .proc_handler = proc_dointvec_minmax, 6422eec4844fSMatteo Croce .extra1 = SYSCTL_ZERO, 6423eec4844fSMatteo Croce .extra2 = SYSCTL_ONE, 64247c6bb7d2SDavid Ahern }, 6425f8572d8fSEric W. Biederman { } 64261da177e4SLinus Torvalds }; 64271da177e4SLinus Torvalds 64282c8c1e72SAlexey Dobriyan struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net) 6429760f2d01SDaniel Lezcano { 6430760f2d01SDaniel Lezcano struct ctl_table *table; 6431760f2d01SDaniel Lezcano 6432760f2d01SDaniel Lezcano table = kmemdup(ipv6_route_table_template, 6433760f2d01SDaniel Lezcano sizeof(ipv6_route_table_template), 6434760f2d01SDaniel Lezcano GFP_KERNEL); 64355ee09105SYOSHIFUJI Hideaki 64365ee09105SYOSHIFUJI Hideaki if (table) { 643706e6c88fSAlexander Kuznetsov table[0].data = &net->ipv6.sysctl.ip6_rt_max_size; 643886393e52SAlexey Dobriyan table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh; 643906e6c88fSAlexander Kuznetsov table[2].data = &net->ipv6.sysctl.flush_delay; 644006e6c88fSAlexander Kuznetsov table[2].extra1 = net; 64415ee09105SYOSHIFUJI Hideaki table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval; 64425ee09105SYOSHIFUJI Hideaki table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout; 64435ee09105SYOSHIFUJI Hideaki table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval; 64445ee09105SYOSHIFUJI Hideaki table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity; 64455ee09105SYOSHIFUJI Hideaki table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires; 64465ee09105SYOSHIFUJI Hideaki table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss; 64479c69fabeSAlexey Dobriyan table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval; 64487c6bb7d2SDavid Ahern table[10].data = &net->ipv6.sysctl.skip_notify_on_dev_down; 6449464dc801SEric W. Biederman 6450464dc801SEric W. Biederman /* Don't export sysctls to unprivileged users */ 6451464dc801SEric W. Biederman if (net->user_ns != &init_user_ns) 645206e6c88fSAlexander Kuznetsov table[1].procname = NULL; 64535ee09105SYOSHIFUJI Hideaki } 64545ee09105SYOSHIFUJI Hideaki 6455760f2d01SDaniel Lezcano return table; 6456760f2d01SDaniel Lezcano } 64571da177e4SLinus Torvalds #endif 64581da177e4SLinus Torvalds 64592c8c1e72SAlexey Dobriyan static int __net_init ip6_route_net_init(struct net *net) 6460cdb18761SDaniel Lezcano { 6461633d424bSPavel Emelyanov int ret = -ENOMEM; 64628ed67789SDaniel Lezcano 646386393e52SAlexey Dobriyan memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template, 646486393e52SAlexey Dobriyan sizeof(net->ipv6.ip6_dst_ops)); 6465f2fc6a54SBenjamin Thery 6466fc66f95cSEric Dumazet if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0) 6467fc66f95cSEric Dumazet goto out_ip6_dst_ops; 6468fc66f95cSEric Dumazet 64691cf844c7SDavid Ahern net->ipv6.fib6_null_entry = fib6_info_alloc(GFP_KERNEL, true); 6470421842edSDavid Ahern if (!net->ipv6.fib6_null_entry) 6471421842edSDavid Ahern goto out_ip6_dst_entries; 64721cf844c7SDavid Ahern memcpy(net->ipv6.fib6_null_entry, &fib6_null_entry_template, 64731cf844c7SDavid Ahern sizeof(*net->ipv6.fib6_null_entry)); 6474421842edSDavid Ahern 64758ed67789SDaniel Lezcano net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template, 64768ed67789SDaniel Lezcano sizeof(*net->ipv6.ip6_null_entry), 64778ed67789SDaniel Lezcano GFP_KERNEL); 64788ed67789SDaniel Lezcano if (!net->ipv6.ip6_null_entry) 6479421842edSDavid Ahern goto out_fib6_null_entry; 6480d8d1f30bSChangli Gao net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops; 648162fa8a84SDavid S. Miller dst_init_metrics(&net->ipv6.ip6_null_entry->dst, 648262fa8a84SDavid S. Miller ip6_template_metrics, true); 648374109218SWei Wang INIT_LIST_HEAD(&net->ipv6.ip6_null_entry->rt6i_uncached); 64848ed67789SDaniel Lezcano 64858ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES 6486feca7d8cSVincent Bernat net->ipv6.fib6_has_custom_rules = false; 64878ed67789SDaniel Lezcano net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template, 64888ed67789SDaniel Lezcano sizeof(*net->ipv6.ip6_prohibit_entry), 64898ed67789SDaniel Lezcano GFP_KERNEL); 649068fffc67SPeter Zijlstra if (!net->ipv6.ip6_prohibit_entry) 649168fffc67SPeter Zijlstra goto out_ip6_null_entry; 6492d8d1f30bSChangli Gao net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops; 649362fa8a84SDavid S. Miller dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst, 649462fa8a84SDavid S. Miller ip6_template_metrics, true); 649574109218SWei Wang INIT_LIST_HEAD(&net->ipv6.ip6_prohibit_entry->rt6i_uncached); 64968ed67789SDaniel Lezcano 64978ed67789SDaniel Lezcano net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template, 64988ed67789SDaniel Lezcano sizeof(*net->ipv6.ip6_blk_hole_entry), 64998ed67789SDaniel Lezcano GFP_KERNEL); 650068fffc67SPeter Zijlstra if (!net->ipv6.ip6_blk_hole_entry) 650168fffc67SPeter Zijlstra goto out_ip6_prohibit_entry; 6502d8d1f30bSChangli Gao net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops; 650362fa8a84SDavid S. Miller dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst, 650462fa8a84SDavid S. Miller ip6_template_metrics, true); 650574109218SWei Wang INIT_LIST_HEAD(&net->ipv6.ip6_blk_hole_entry->rt6i_uncached); 6506b9b33e7cSPaolo Abeni #ifdef CONFIG_IPV6_SUBTREES 6507b9b33e7cSPaolo Abeni net->ipv6.fib6_routes_require_src = 0; 6508b9b33e7cSPaolo Abeni #endif 65098ed67789SDaniel Lezcano #endif 65108ed67789SDaniel Lezcano 6511b339a47cSPeter Zijlstra net->ipv6.sysctl.flush_delay = 0; 6512*af6d1034SJon Maxwell net->ipv6.sysctl.ip6_rt_max_size = INT_MAX; 6513b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2; 6514b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ; 6515b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ; 6516b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_elasticity = 9; 6517b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ; 6518b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40; 65197c6bb7d2SDavid Ahern net->ipv6.sysctl.skip_notify_on_dev_down = 0; 6520b339a47cSPeter Zijlstra 65219cb7c013SEric Dumazet atomic_set(&net->ipv6.ip6_rt_gc_expire, 30*HZ); 65226891a346SBenjamin Thery 65238ed67789SDaniel Lezcano ret = 0; 65248ed67789SDaniel Lezcano out: 65258ed67789SDaniel Lezcano return ret; 6526f2fc6a54SBenjamin Thery 652768fffc67SPeter Zijlstra #ifdef CONFIG_IPV6_MULTIPLE_TABLES 652868fffc67SPeter Zijlstra out_ip6_prohibit_entry: 652968fffc67SPeter Zijlstra kfree(net->ipv6.ip6_prohibit_entry); 653068fffc67SPeter Zijlstra out_ip6_null_entry: 653168fffc67SPeter Zijlstra kfree(net->ipv6.ip6_null_entry); 653268fffc67SPeter Zijlstra #endif 6533421842edSDavid Ahern out_fib6_null_entry: 6534421842edSDavid Ahern kfree(net->ipv6.fib6_null_entry); 6535fc66f95cSEric Dumazet out_ip6_dst_entries: 6536fc66f95cSEric Dumazet dst_entries_destroy(&net->ipv6.ip6_dst_ops); 6537f2fc6a54SBenjamin Thery out_ip6_dst_ops: 6538f2fc6a54SBenjamin Thery goto out; 6539cdb18761SDaniel Lezcano } 6540cdb18761SDaniel Lezcano 65412c8c1e72SAlexey Dobriyan static void __net_exit ip6_route_net_exit(struct net *net) 6542cdb18761SDaniel Lezcano { 6543421842edSDavid Ahern kfree(net->ipv6.fib6_null_entry); 65448ed67789SDaniel Lezcano kfree(net->ipv6.ip6_null_entry); 65458ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES 65468ed67789SDaniel Lezcano kfree(net->ipv6.ip6_prohibit_entry); 65478ed67789SDaniel Lezcano kfree(net->ipv6.ip6_blk_hole_entry); 65488ed67789SDaniel Lezcano #endif 654941bb78b4SXiaotian Feng dst_entries_destroy(&net->ipv6.ip6_dst_ops); 6550cdb18761SDaniel Lezcano } 6551cdb18761SDaniel Lezcano 6552d189634eSThomas Graf static int __net_init ip6_route_net_init_late(struct net *net) 6553d189634eSThomas Graf { 6554d189634eSThomas Graf #ifdef CONFIG_PROC_FS 6555768b3c74SZhengchao Shao if (!proc_create_net("ipv6_route", 0, net->proc_net, 6556768b3c74SZhengchao Shao &ipv6_route_seq_ops, 6557768b3c74SZhengchao Shao sizeof(struct ipv6_route_iter))) 6558768b3c74SZhengchao Shao return -ENOMEM; 6559768b3c74SZhengchao Shao 6560768b3c74SZhengchao Shao if (!proc_create_net_single("rt6_stats", 0444, net->proc_net, 6561768b3c74SZhengchao Shao rt6_stats_seq_show, NULL)) { 6562768b3c74SZhengchao Shao remove_proc_entry("ipv6_route", net->proc_net); 6563768b3c74SZhengchao Shao return -ENOMEM; 6564768b3c74SZhengchao Shao } 6565d189634eSThomas Graf #endif 6566d189634eSThomas Graf return 0; 6567d189634eSThomas Graf } 6568d189634eSThomas Graf 6569d189634eSThomas Graf static void __net_exit ip6_route_net_exit_late(struct net *net) 6570d189634eSThomas Graf { 6571d189634eSThomas Graf #ifdef CONFIG_PROC_FS 6572ece31ffdSGao feng remove_proc_entry("ipv6_route", net->proc_net); 6573ece31ffdSGao feng remove_proc_entry("rt6_stats", net->proc_net); 6574d189634eSThomas Graf #endif 6575d189634eSThomas Graf } 6576d189634eSThomas Graf 6577cdb18761SDaniel Lezcano static struct pernet_operations ip6_route_net_ops = { 6578cdb18761SDaniel Lezcano .init = ip6_route_net_init, 6579cdb18761SDaniel Lezcano .exit = ip6_route_net_exit, 6580cdb18761SDaniel Lezcano }; 6581cdb18761SDaniel Lezcano 6582c3426b47SDavid S. Miller static int __net_init ipv6_inetpeer_init(struct net *net) 6583c3426b47SDavid S. Miller { 6584c3426b47SDavid S. Miller struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL); 6585c3426b47SDavid S. Miller 6586c3426b47SDavid S. Miller if (!bp) 6587c3426b47SDavid S. Miller return -ENOMEM; 6588c3426b47SDavid S. Miller inet_peer_base_init(bp); 6589c3426b47SDavid S. Miller net->ipv6.peers = bp; 6590c3426b47SDavid S. Miller return 0; 6591c3426b47SDavid S. Miller } 6592c3426b47SDavid S. Miller 6593c3426b47SDavid S. Miller static void __net_exit ipv6_inetpeer_exit(struct net *net) 6594c3426b47SDavid S. Miller { 6595c3426b47SDavid S. Miller struct inet_peer_base *bp = net->ipv6.peers; 6596c3426b47SDavid S. Miller 6597c3426b47SDavid S. Miller net->ipv6.peers = NULL; 659856a6b248SDavid S. Miller inetpeer_invalidate_tree(bp); 6599c3426b47SDavid S. Miller kfree(bp); 6600c3426b47SDavid S. Miller } 6601c3426b47SDavid S. Miller 66022b823f72SDavid S. Miller static struct pernet_operations ipv6_inetpeer_ops = { 6603c3426b47SDavid S. Miller .init = ipv6_inetpeer_init, 6604c3426b47SDavid S. Miller .exit = ipv6_inetpeer_exit, 6605c3426b47SDavid S. Miller }; 6606c3426b47SDavid S. Miller 6607d189634eSThomas Graf static struct pernet_operations ip6_route_net_late_ops = { 6608d189634eSThomas Graf .init = ip6_route_net_init_late, 6609d189634eSThomas Graf .exit = ip6_route_net_exit_late, 6610d189634eSThomas Graf }; 6611d189634eSThomas Graf 66128ed67789SDaniel Lezcano static struct notifier_block ip6_route_dev_notifier = { 66138ed67789SDaniel Lezcano .notifier_call = ip6_route_dev_notify, 6614242d3a49SWANG Cong .priority = ADDRCONF_NOTIFY_PRIORITY - 10, 66158ed67789SDaniel Lezcano }; 66168ed67789SDaniel Lezcano 66172f460933SWANG Cong void __init ip6_route_init_special_entries(void) 66182f460933SWANG Cong { 66192f460933SWANG Cong /* Registering of the loopback is done before this portion of code, 66202f460933SWANG Cong * the loopback reference in rt6_info will not be taken, do it 66212f460933SWANG Cong * manually for init_net */ 66221cf844c7SDavid Ahern init_net.ipv6.fib6_null_entry->fib6_nh->fib_nh_dev = init_net.loopback_dev; 66232f460933SWANG Cong init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev; 66242f460933SWANG Cong init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); 66252f460933SWANG Cong #ifdef CONFIG_IPV6_MULTIPLE_TABLES 66262f460933SWANG Cong init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev; 66272f460933SWANG Cong init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); 66282f460933SWANG Cong init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev; 66292f460933SWANG Cong init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); 66302f460933SWANG Cong #endif 66312f460933SWANG Cong } 66322f460933SWANG Cong 6633138d0be3SYonghong Song #if IS_BUILTIN(CONFIG_IPV6) 6634138d0be3SYonghong Song #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) 6635138d0be3SYonghong Song DEFINE_BPF_ITER_FUNC(ipv6_route, struct bpf_iter_meta *meta, struct fib6_info *rt) 6636138d0be3SYonghong Song 6637951cf368SYonghong Song BTF_ID_LIST(btf_fib6_info_id) 6638951cf368SYonghong Song BTF_ID(struct, fib6_info) 6639951cf368SYonghong Song 664014fc6bd6SYonghong Song static const struct bpf_iter_seq_info ipv6_route_seq_info = { 6641138d0be3SYonghong Song .seq_ops = &ipv6_route_seq_ops, 6642138d0be3SYonghong Song .init_seq_private = bpf_iter_init_seq_net, 6643138d0be3SYonghong Song .fini_seq_private = bpf_iter_fini_seq_net, 6644138d0be3SYonghong Song .seq_priv_size = sizeof(struct ipv6_route_iter), 664514fc6bd6SYonghong Song }; 664614fc6bd6SYonghong Song 664714fc6bd6SYonghong Song static struct bpf_iter_reg ipv6_route_reg_info = { 664814fc6bd6SYonghong Song .target = "ipv6_route", 66493c32cc1bSYonghong Song .ctx_arg_info_size = 1, 66503c32cc1bSYonghong Song .ctx_arg_info = { 66513c32cc1bSYonghong Song { offsetof(struct bpf_iter__ipv6_route, rt), 66523c32cc1bSYonghong Song PTR_TO_BTF_ID_OR_NULL }, 66533c32cc1bSYonghong Song }, 665414fc6bd6SYonghong Song .seq_info = &ipv6_route_seq_info, 6655138d0be3SYonghong Song }; 6656138d0be3SYonghong Song 665715172a46SYonghong Song static int __init bpf_iter_register(void) 665815172a46SYonghong Song { 6659951cf368SYonghong Song ipv6_route_reg_info.ctx_arg_info[0].btf_id = *btf_fib6_info_id; 666015172a46SYonghong Song return bpf_iter_reg_target(&ipv6_route_reg_info); 6661138d0be3SYonghong Song } 6662138d0be3SYonghong Song 6663138d0be3SYonghong Song static void bpf_iter_unregister(void) 6664138d0be3SYonghong Song { 6665ab2ee4fcSYonghong Song bpf_iter_unreg_target(&ipv6_route_reg_info); 6666138d0be3SYonghong Song } 6667138d0be3SYonghong Song #endif 6668138d0be3SYonghong Song #endif 6669138d0be3SYonghong Song 6670433d49c3SDaniel Lezcano int __init ip6_route_init(void) 66711da177e4SLinus Torvalds { 6672433d49c3SDaniel Lezcano int ret; 66738d0b94afSMartin KaFai Lau int cpu; 6674433d49c3SDaniel Lezcano 66759a7ec3a9SDaniel Lezcano ret = -ENOMEM; 66769a7ec3a9SDaniel Lezcano ip6_dst_ops_template.kmem_cachep = 66779a7ec3a9SDaniel Lezcano kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0, 66786126891cSVasily Averin SLAB_HWCACHE_ALIGN | SLAB_ACCOUNT, NULL); 66799a7ec3a9SDaniel Lezcano if (!ip6_dst_ops_template.kmem_cachep) 6680c19a28e1SFernando Carrijo goto out; 668114e50e57SDavid S. Miller 6682fc66f95cSEric Dumazet ret = dst_entries_init(&ip6_dst_blackhole_ops); 66838ed67789SDaniel Lezcano if (ret) 6684bdb3289fSDaniel Lezcano goto out_kmem_cache; 6685bdb3289fSDaniel Lezcano 6686c3426b47SDavid S. Miller ret = register_pernet_subsys(&ipv6_inetpeer_ops); 6687c3426b47SDavid S. Miller if (ret) 6688e8803b6cSDavid S. Miller goto out_dst_entries; 66892a0c451aSThomas Graf 66907e52b33bSDavid S. Miller ret = register_pernet_subsys(&ip6_route_net_ops); 66917e52b33bSDavid S. Miller if (ret) 66927e52b33bSDavid S. Miller goto out_register_inetpeer; 6693c3426b47SDavid S. Miller 66945dc121e9SArnaud Ebalard ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep; 66955dc121e9SArnaud Ebalard 6696e8803b6cSDavid S. Miller ret = fib6_init(); 6697433d49c3SDaniel Lezcano if (ret) 66988ed67789SDaniel Lezcano goto out_register_subsys; 6699433d49c3SDaniel Lezcano 6700433d49c3SDaniel Lezcano ret = xfrm6_init(); 6701433d49c3SDaniel Lezcano if (ret) 6702e8803b6cSDavid S. Miller goto out_fib6_init; 6703c35b7e72SDaniel Lezcano 6704433d49c3SDaniel Lezcano ret = fib6_rules_init(); 6705433d49c3SDaniel Lezcano if (ret) 6706433d49c3SDaniel Lezcano goto xfrm6_init; 67077e5449c2SDaniel Lezcano 6708d189634eSThomas Graf ret = register_pernet_subsys(&ip6_route_net_late_ops); 6709d189634eSThomas Graf if (ret) 6710d189634eSThomas Graf goto fib6_rules_init; 6711d189634eSThomas Graf 671216feebcfSFlorian Westphal ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_NEWROUTE, 671316feebcfSFlorian Westphal inet6_rtm_newroute, NULL, 0); 671416feebcfSFlorian Westphal if (ret < 0) 671516feebcfSFlorian Westphal goto out_register_late_subsys; 671616feebcfSFlorian Westphal 671716feebcfSFlorian Westphal ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_DELROUTE, 671816feebcfSFlorian Westphal inet6_rtm_delroute, NULL, 0); 671916feebcfSFlorian Westphal if (ret < 0) 672016feebcfSFlorian Westphal goto out_register_late_subsys; 672116feebcfSFlorian Westphal 672216feebcfSFlorian Westphal ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETROUTE, 672316feebcfSFlorian Westphal inet6_rtm_getroute, NULL, 672416feebcfSFlorian Westphal RTNL_FLAG_DOIT_UNLOCKED); 672516feebcfSFlorian Westphal if (ret < 0) 6726d189634eSThomas Graf goto out_register_late_subsys; 6727433d49c3SDaniel Lezcano 67288ed67789SDaniel Lezcano ret = register_netdevice_notifier(&ip6_route_dev_notifier); 6729cdb18761SDaniel Lezcano if (ret) 6730d189634eSThomas Graf goto out_register_late_subsys; 67318ed67789SDaniel Lezcano 6732138d0be3SYonghong Song #if IS_BUILTIN(CONFIG_IPV6) 6733138d0be3SYonghong Song #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) 6734138d0be3SYonghong Song ret = bpf_iter_register(); 6735138d0be3SYonghong Song if (ret) 6736138d0be3SYonghong Song goto out_register_late_subsys; 6737138d0be3SYonghong Song #endif 6738138d0be3SYonghong Song #endif 6739138d0be3SYonghong Song 67408d0b94afSMartin KaFai Lau for_each_possible_cpu(cpu) { 67418d0b94afSMartin KaFai Lau struct uncached_list *ul = per_cpu_ptr(&rt6_uncached_list, cpu); 67428d0b94afSMartin KaFai Lau 67438d0b94afSMartin KaFai Lau INIT_LIST_HEAD(&ul->head); 6744ba55ef81SEric Dumazet INIT_LIST_HEAD(&ul->quarantine); 67458d0b94afSMartin KaFai Lau spin_lock_init(&ul->lock); 67468d0b94afSMartin KaFai Lau } 67478d0b94afSMartin KaFai Lau 6748433d49c3SDaniel Lezcano out: 6749433d49c3SDaniel Lezcano return ret; 6750433d49c3SDaniel Lezcano 6751d189634eSThomas Graf out_register_late_subsys: 675216feebcfSFlorian Westphal rtnl_unregister_all(PF_INET6); 6753d189634eSThomas Graf unregister_pernet_subsys(&ip6_route_net_late_ops); 6754433d49c3SDaniel Lezcano fib6_rules_init: 6755433d49c3SDaniel Lezcano fib6_rules_cleanup(); 6756433d49c3SDaniel Lezcano xfrm6_init: 6757433d49c3SDaniel Lezcano xfrm6_fini(); 67582a0c451aSThomas Graf out_fib6_init: 67592a0c451aSThomas Graf fib6_gc_cleanup(); 67608ed67789SDaniel Lezcano out_register_subsys: 67618ed67789SDaniel Lezcano unregister_pernet_subsys(&ip6_route_net_ops); 67627e52b33bSDavid S. Miller out_register_inetpeer: 67637e52b33bSDavid S. Miller unregister_pernet_subsys(&ipv6_inetpeer_ops); 6764fc66f95cSEric Dumazet out_dst_entries: 6765fc66f95cSEric Dumazet dst_entries_destroy(&ip6_dst_blackhole_ops); 6766433d49c3SDaniel Lezcano out_kmem_cache: 6767f2fc6a54SBenjamin Thery kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep); 6768433d49c3SDaniel Lezcano goto out; 67691da177e4SLinus Torvalds } 67701da177e4SLinus Torvalds 67711da177e4SLinus Torvalds void ip6_route_cleanup(void) 67721da177e4SLinus Torvalds { 6773138d0be3SYonghong Song #if IS_BUILTIN(CONFIG_IPV6) 6774138d0be3SYonghong Song #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) 6775138d0be3SYonghong Song bpf_iter_unregister(); 6776138d0be3SYonghong Song #endif 6777138d0be3SYonghong Song #endif 67788ed67789SDaniel Lezcano unregister_netdevice_notifier(&ip6_route_dev_notifier); 6779d189634eSThomas Graf unregister_pernet_subsys(&ip6_route_net_late_ops); 6780101367c2SThomas Graf fib6_rules_cleanup(); 67811da177e4SLinus Torvalds xfrm6_fini(); 67821da177e4SLinus Torvalds fib6_gc_cleanup(); 6783c3426b47SDavid S. Miller unregister_pernet_subsys(&ipv6_inetpeer_ops); 67848ed67789SDaniel Lezcano unregister_pernet_subsys(&ip6_route_net_ops); 678541bb78b4SXiaotian Feng dst_entries_destroy(&ip6_dst_blackhole_ops); 6786f2fc6a54SBenjamin Thery kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep); 67871da177e4SLinus Torvalds } 6788