11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * Linux INET6 implementation 31da177e4SLinus Torvalds * FIB front-end. 41da177e4SLinus Torvalds * 51da177e4SLinus Torvalds * Authors: 61da177e4SLinus Torvalds * Pedro Roque <roque@di.fc.ul.pt> 71da177e4SLinus Torvalds * 81da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or 91da177e4SLinus Torvalds * modify it under the terms of the GNU General Public License 101da177e4SLinus Torvalds * as published by the Free Software Foundation; either version 111da177e4SLinus Torvalds * 2 of the License, or (at your option) any later version. 121da177e4SLinus Torvalds */ 131da177e4SLinus Torvalds 141da177e4SLinus Torvalds /* Changes: 151da177e4SLinus Torvalds * 161da177e4SLinus Torvalds * YOSHIFUJI Hideaki @USAGI 171da177e4SLinus Torvalds * reworked default router selection. 181da177e4SLinus Torvalds * - respect outgoing interface 191da177e4SLinus Torvalds * - select from (probably) reachable routers (i.e. 201da177e4SLinus Torvalds * routers in REACHABLE, STALE, DELAY or PROBE states). 211da177e4SLinus Torvalds * - always select the same router if it is (probably) 221da177e4SLinus Torvalds * reachable. otherwise, round-robin the list. 23c0bece9fSYOSHIFUJI Hideaki * Ville Nuorvala 24c0bece9fSYOSHIFUJI Hideaki * Fixed routing subtrees. 251da177e4SLinus Torvalds */ 261da177e4SLinus Torvalds 27f3213831SJoe Perches #define pr_fmt(fmt) "IPv6: " fmt 28f3213831SJoe Perches 294fc268d2SRandy Dunlap #include <linux/capability.h> 301da177e4SLinus Torvalds #include <linux/errno.h> 31bc3b2d7fSPaul Gortmaker #include <linux/export.h> 321da177e4SLinus Torvalds #include <linux/types.h> 331da177e4SLinus Torvalds #include <linux/times.h> 341da177e4SLinus Torvalds #include <linux/socket.h> 351da177e4SLinus Torvalds #include <linux/sockios.h> 361da177e4SLinus Torvalds #include <linux/net.h> 371da177e4SLinus Torvalds #include <linux/route.h> 381da177e4SLinus Torvalds #include <linux/netdevice.h> 391da177e4SLinus Torvalds #include <linux/in6.h> 407bc570c8SYOSHIFUJI Hideaki #include <linux/mroute6.h> 411da177e4SLinus Torvalds #include <linux/init.h> 421da177e4SLinus Torvalds #include <linux/if_arp.h> 431da177e4SLinus Torvalds #include <linux/proc_fs.h> 441da177e4SLinus Torvalds #include <linux/seq_file.h> 455b7c931dSDaniel Lezcano #include <linux/nsproxy.h> 465a0e3ad6STejun Heo #include <linux/slab.h> 47457c4cbcSEric W. Biederman #include <net/net_namespace.h> 481da177e4SLinus Torvalds #include <net/snmp.h> 491da177e4SLinus Torvalds #include <net/ipv6.h> 501da177e4SLinus Torvalds #include <net/ip6_fib.h> 511da177e4SLinus Torvalds #include <net/ip6_route.h> 521da177e4SLinus Torvalds #include <net/ndisc.h> 531da177e4SLinus Torvalds #include <net/addrconf.h> 541da177e4SLinus Torvalds #include <net/tcp.h> 551da177e4SLinus Torvalds #include <linux/rtnetlink.h> 561da177e4SLinus Torvalds #include <net/dst.h> 571da177e4SLinus Torvalds #include <net/xfrm.h> 588d71740cSTom Tucker #include <net/netevent.h> 5921713ebcSThomas Graf #include <net/netlink.h> 601da177e4SLinus Torvalds 611da177e4SLinus Torvalds #include <asm/uaccess.h> 621da177e4SLinus Torvalds 631da177e4SLinus Torvalds #ifdef CONFIG_SYSCTL 641da177e4SLinus Torvalds #include <linux/sysctl.h> 651da177e4SLinus Torvalds #endif 661da177e4SLinus Torvalds 671716a961SGao feng static struct rt6_info *ip6_rt_copy(struct rt6_info *ort, 6821efcfa0SEric Dumazet const struct in6_addr *dest); 691da177e4SLinus Torvalds static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie); 700dbaee3bSDavid S. Miller static unsigned int ip6_default_advmss(const struct dst_entry *dst); 71ebb762f2SSteffen Klassert static unsigned int ip6_mtu(const struct dst_entry *dst); 721da177e4SLinus Torvalds static struct dst_entry *ip6_negative_advice(struct dst_entry *); 731da177e4SLinus Torvalds static void ip6_dst_destroy(struct dst_entry *); 741da177e4SLinus Torvalds static void ip6_dst_ifdown(struct dst_entry *, 751da177e4SLinus Torvalds struct net_device *dev, int how); 76569d3645SDaniel Lezcano static int ip6_dst_gc(struct dst_ops *ops); 771da177e4SLinus Torvalds 781da177e4SLinus Torvalds static int ip6_pkt_discard(struct sk_buff *skb); 791da177e4SLinus Torvalds static int ip6_pkt_discard_out(struct sk_buff *skb); 801da177e4SLinus Torvalds static void ip6_link_failure(struct sk_buff *skb); 816700c270SDavid S. Miller static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk, 826700c270SDavid S. Miller struct sk_buff *skb, u32 mtu); 836700c270SDavid S. Miller static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, 846700c270SDavid S. Miller struct sk_buff *skb); 851da177e4SLinus Torvalds 8670ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO 87efa2cea0SDaniel Lezcano static struct rt6_info *rt6_add_route_info(struct net *net, 88b71d1d42SEric Dumazet const struct in6_addr *prefix, int prefixlen, 89b71d1d42SEric Dumazet const struct in6_addr *gwaddr, int ifindex, 9095c96174SEric Dumazet unsigned int pref); 91efa2cea0SDaniel Lezcano static struct rt6_info *rt6_get_route_info(struct net *net, 92b71d1d42SEric Dumazet const struct in6_addr *prefix, int prefixlen, 93b71d1d42SEric Dumazet const struct in6_addr *gwaddr, int ifindex); 9470ceb4f5SYOSHIFUJI Hideaki #endif 9570ceb4f5SYOSHIFUJI Hideaki 9606582540SDavid S. Miller static u32 *ipv6_cow_metrics(struct dst_entry *dst, unsigned long old) 9706582540SDavid S. Miller { 9806582540SDavid S. Miller struct rt6_info *rt = (struct rt6_info *) dst; 9906582540SDavid S. Miller struct inet_peer *peer; 10006582540SDavid S. Miller u32 *p = NULL; 10106582540SDavid S. Miller 1028e2ec639SYan, Zheng if (!(rt->dst.flags & DST_HOST)) 1038e2ec639SYan, Zheng return NULL; 1048e2ec639SYan, Zheng 105fbfe95a4SDavid S. Miller peer = rt6_get_peer_create(rt); 10606582540SDavid S. Miller if (peer) { 10706582540SDavid S. Miller u32 *old_p = __DST_METRICS_PTR(old); 10806582540SDavid S. Miller unsigned long prev, new; 10906582540SDavid S. Miller 11006582540SDavid S. Miller p = peer->metrics; 11106582540SDavid S. Miller if (inet_metrics_new(peer)) 11206582540SDavid S. Miller memcpy(p, old_p, sizeof(u32) * RTAX_MAX); 11306582540SDavid S. Miller 11406582540SDavid S. Miller new = (unsigned long) p; 11506582540SDavid S. Miller prev = cmpxchg(&dst->_metrics, old, new); 11606582540SDavid S. Miller 11706582540SDavid S. Miller if (prev != old) { 11806582540SDavid S. Miller p = __DST_METRICS_PTR(prev); 11906582540SDavid S. Miller if (prev & DST_METRICS_READ_ONLY) 12006582540SDavid S. Miller p = NULL; 12106582540SDavid S. Miller } 12206582540SDavid S. Miller } 12306582540SDavid S. Miller return p; 12406582540SDavid S. Miller } 12506582540SDavid S. Miller 126f894cbf8SDavid S. Miller static inline const void *choose_neigh_daddr(struct rt6_info *rt, 127f894cbf8SDavid S. Miller struct sk_buff *skb, 128f894cbf8SDavid S. Miller const void *daddr) 12939232973SDavid S. Miller { 13039232973SDavid S. Miller struct in6_addr *p = &rt->rt6i_gateway; 13139232973SDavid S. Miller 132a7563f34SDavid S. Miller if (!ipv6_addr_any(p)) 13339232973SDavid S. Miller return (const void *) p; 134f894cbf8SDavid S. Miller else if (skb) 135f894cbf8SDavid S. Miller return &ipv6_hdr(skb)->daddr; 13639232973SDavid S. Miller return daddr; 13739232973SDavid S. Miller } 13839232973SDavid S. Miller 139f894cbf8SDavid S. Miller static struct neighbour *ip6_neigh_lookup(const struct dst_entry *dst, 140f894cbf8SDavid S. Miller struct sk_buff *skb, 141f894cbf8SDavid S. Miller const void *daddr) 142d3aaeb38SDavid S. Miller { 14339232973SDavid S. Miller struct rt6_info *rt = (struct rt6_info *) dst; 14439232973SDavid S. Miller struct neighbour *n; 14539232973SDavid S. Miller 146f894cbf8SDavid S. Miller daddr = choose_neigh_daddr(rt, skb, daddr); 14739232973SDavid S. Miller n = __ipv6_neigh_lookup(&nd_tbl, dst->dev, daddr); 148f83c7790SDavid S. Miller if (n) 149f83c7790SDavid S. Miller return n; 150f83c7790SDavid S. Miller return neigh_create(&nd_tbl, daddr, dst->dev); 151f83c7790SDavid S. Miller } 152f83c7790SDavid S. Miller 1538ade06c6SDavid S. Miller static int rt6_bind_neighbour(struct rt6_info *rt, struct net_device *dev) 154f83c7790SDavid S. Miller { 1558ade06c6SDavid S. Miller struct neighbour *n = __ipv6_neigh_lookup(&nd_tbl, dev, &rt->rt6i_gateway); 1568ade06c6SDavid S. Miller if (!n) { 1578ade06c6SDavid S. Miller n = neigh_create(&nd_tbl, &rt->rt6i_gateway, dev); 158f83c7790SDavid S. Miller if (IS_ERR(n)) 159f83c7790SDavid S. Miller return PTR_ERR(n); 1608ade06c6SDavid S. Miller } 16197cac082SDavid S. Miller rt->n = n; 162f83c7790SDavid S. Miller 163f83c7790SDavid S. Miller return 0; 164d3aaeb38SDavid S. Miller } 165d3aaeb38SDavid S. Miller 1669a7ec3a9SDaniel Lezcano static struct dst_ops ip6_dst_ops_template = { 1671da177e4SLinus Torvalds .family = AF_INET6, 16809640e63SHarvey Harrison .protocol = cpu_to_be16(ETH_P_IPV6), 1691da177e4SLinus Torvalds .gc = ip6_dst_gc, 1701da177e4SLinus Torvalds .gc_thresh = 1024, 1711da177e4SLinus Torvalds .check = ip6_dst_check, 1720dbaee3bSDavid S. Miller .default_advmss = ip6_default_advmss, 173ebb762f2SSteffen Klassert .mtu = ip6_mtu, 17406582540SDavid S. Miller .cow_metrics = ipv6_cow_metrics, 1751da177e4SLinus Torvalds .destroy = ip6_dst_destroy, 1761da177e4SLinus Torvalds .ifdown = ip6_dst_ifdown, 1771da177e4SLinus Torvalds .negative_advice = ip6_negative_advice, 1781da177e4SLinus Torvalds .link_failure = ip6_link_failure, 1791da177e4SLinus Torvalds .update_pmtu = ip6_rt_update_pmtu, 1806e157b6aSDavid S. Miller .redirect = rt6_do_redirect, 1811ac06e03SHerbert Xu .local_out = __ip6_local_out, 182d3aaeb38SDavid S. Miller .neigh_lookup = ip6_neigh_lookup, 1831da177e4SLinus Torvalds }; 1841da177e4SLinus Torvalds 185ebb762f2SSteffen Klassert static unsigned int ip6_blackhole_mtu(const struct dst_entry *dst) 186ec831ea7SRoland Dreier { 187618f9bc7SSteffen Klassert unsigned int mtu = dst_metric_raw(dst, RTAX_MTU); 188618f9bc7SSteffen Klassert 189618f9bc7SSteffen Klassert return mtu ? : dst->dev->mtu; 190ec831ea7SRoland Dreier } 191ec831ea7SRoland Dreier 1926700c270SDavid S. Miller static void ip6_rt_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk, 1936700c270SDavid S. Miller struct sk_buff *skb, u32 mtu) 19414e50e57SDavid S. Miller { 19514e50e57SDavid S. Miller } 19614e50e57SDavid S. Miller 1976700c270SDavid S. Miller static void ip6_rt_blackhole_redirect(struct dst_entry *dst, struct sock *sk, 1986700c270SDavid S. Miller struct sk_buff *skb) 199b587ee3bSDavid S. Miller { 200b587ee3bSDavid S. Miller } 201b587ee3bSDavid S. Miller 2020972ddb2SHeld Bernhard static u32 *ip6_rt_blackhole_cow_metrics(struct dst_entry *dst, 2030972ddb2SHeld Bernhard unsigned long old) 2040972ddb2SHeld Bernhard { 2050972ddb2SHeld Bernhard return NULL; 2060972ddb2SHeld Bernhard } 2070972ddb2SHeld Bernhard 20814e50e57SDavid S. Miller static struct dst_ops ip6_dst_blackhole_ops = { 20914e50e57SDavid S. Miller .family = AF_INET6, 21009640e63SHarvey Harrison .protocol = cpu_to_be16(ETH_P_IPV6), 21114e50e57SDavid S. Miller .destroy = ip6_dst_destroy, 21214e50e57SDavid S. Miller .check = ip6_dst_check, 213ebb762f2SSteffen Klassert .mtu = ip6_blackhole_mtu, 214214f45c9SEric Dumazet .default_advmss = ip6_default_advmss, 21514e50e57SDavid S. Miller .update_pmtu = ip6_rt_blackhole_update_pmtu, 216b587ee3bSDavid S. Miller .redirect = ip6_rt_blackhole_redirect, 2170972ddb2SHeld Bernhard .cow_metrics = ip6_rt_blackhole_cow_metrics, 218d3aaeb38SDavid S. Miller .neigh_lookup = ip6_neigh_lookup, 21914e50e57SDavid S. Miller }; 22014e50e57SDavid S. Miller 22162fa8a84SDavid S. Miller static const u32 ip6_template_metrics[RTAX_MAX] = { 222*14edd87dSLi RongQing [RTAX_HOPLIMIT - 1] = 0, 22362fa8a84SDavid S. Miller }; 22462fa8a84SDavid S. Miller 225fb0af4c7SEric Dumazet static const struct rt6_info ip6_null_entry_template = { 2261da177e4SLinus Torvalds .dst = { 2271da177e4SLinus Torvalds .__refcnt = ATOMIC_INIT(1), 2281da177e4SLinus Torvalds .__use = 1, 2292c20cbd7SNicolas Dichtel .obsolete = DST_OBSOLETE_FORCE_CHK, 2301da177e4SLinus Torvalds .error = -ENETUNREACH, 2311da177e4SLinus Torvalds .input = ip6_pkt_discard, 2321da177e4SLinus Torvalds .output = ip6_pkt_discard_out, 2331da177e4SLinus Torvalds }, 2341da177e4SLinus Torvalds .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), 2354f724279SJean-Mickael Guerin .rt6i_protocol = RTPROT_KERNEL, 2361da177e4SLinus Torvalds .rt6i_metric = ~(u32) 0, 2371da177e4SLinus Torvalds .rt6i_ref = ATOMIC_INIT(1), 2381da177e4SLinus Torvalds }; 2391da177e4SLinus Torvalds 240101367c2SThomas Graf #ifdef CONFIG_IPV6_MULTIPLE_TABLES 241101367c2SThomas Graf 2426723ab54SDavid S. Miller static int ip6_pkt_prohibit(struct sk_buff *skb); 2436723ab54SDavid S. Miller static int ip6_pkt_prohibit_out(struct sk_buff *skb); 2446723ab54SDavid S. Miller 245fb0af4c7SEric Dumazet static const struct rt6_info ip6_prohibit_entry_template = { 246101367c2SThomas Graf .dst = { 247101367c2SThomas Graf .__refcnt = ATOMIC_INIT(1), 248101367c2SThomas Graf .__use = 1, 2492c20cbd7SNicolas Dichtel .obsolete = DST_OBSOLETE_FORCE_CHK, 250101367c2SThomas Graf .error = -EACCES, 2519ce8ade0SThomas Graf .input = ip6_pkt_prohibit, 2529ce8ade0SThomas Graf .output = ip6_pkt_prohibit_out, 253101367c2SThomas Graf }, 254101367c2SThomas Graf .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), 2554f724279SJean-Mickael Guerin .rt6i_protocol = RTPROT_KERNEL, 256101367c2SThomas Graf .rt6i_metric = ~(u32) 0, 257101367c2SThomas Graf .rt6i_ref = ATOMIC_INIT(1), 258101367c2SThomas Graf }; 259101367c2SThomas Graf 260fb0af4c7SEric Dumazet static const struct rt6_info ip6_blk_hole_entry_template = { 261101367c2SThomas Graf .dst = { 262101367c2SThomas Graf .__refcnt = ATOMIC_INIT(1), 263101367c2SThomas Graf .__use = 1, 2642c20cbd7SNicolas Dichtel .obsolete = DST_OBSOLETE_FORCE_CHK, 265101367c2SThomas Graf .error = -EINVAL, 266352e512cSHerbert Xu .input = dst_discard, 267352e512cSHerbert Xu .output = dst_discard, 268101367c2SThomas Graf }, 269101367c2SThomas Graf .rt6i_flags = (RTF_REJECT | RTF_NONEXTHOP), 2704f724279SJean-Mickael Guerin .rt6i_protocol = RTPROT_KERNEL, 271101367c2SThomas Graf .rt6i_metric = ~(u32) 0, 272101367c2SThomas Graf .rt6i_ref = ATOMIC_INIT(1), 273101367c2SThomas Graf }; 274101367c2SThomas Graf 275101367c2SThomas Graf #endif 276101367c2SThomas Graf 2771da177e4SLinus Torvalds /* allocate dst with ip6_dst_ops */ 27897bab73fSDavid S. Miller static inline struct rt6_info *ip6_dst_alloc(struct net *net, 279957c665fSDavid S. Miller struct net_device *dev, 2808b96d22dSDavid S. Miller int flags, 2818b96d22dSDavid S. Miller struct fib6_table *table) 2821da177e4SLinus Torvalds { 28397bab73fSDavid S. Miller struct rt6_info *rt = dst_alloc(&net->ipv6.ip6_dst_ops, dev, 2846f3118b5SNicolas Dichtel 0, DST_OBSOLETE_FORCE_CHK, flags); 285cf911662SDavid S. Miller 28697bab73fSDavid S. Miller if (rt) { 2878104891bSSteffen Klassert struct dst_entry *dst = &rt->dst; 2888104891bSSteffen Klassert 2898104891bSSteffen Klassert memset(dst + 1, 0, sizeof(*rt) - sizeof(*dst)); 2908b96d22dSDavid S. Miller rt6_init_peer(rt, table ? &table->tb6_peers : net->ipv6.peers); 2916f3118b5SNicolas Dichtel rt->rt6i_genid = rt_genid(net); 29297bab73fSDavid S. Miller } 293cf911662SDavid S. Miller return rt; 2941da177e4SLinus Torvalds } 2951da177e4SLinus Torvalds 2961da177e4SLinus Torvalds static void ip6_dst_destroy(struct dst_entry *dst) 2971da177e4SLinus Torvalds { 2981da177e4SLinus Torvalds struct rt6_info *rt = (struct rt6_info *)dst; 2991da177e4SLinus Torvalds struct inet6_dev *idev = rt->rt6i_idev; 3001da177e4SLinus Torvalds 30197cac082SDavid S. Miller if (rt->n) 30297cac082SDavid S. Miller neigh_release(rt->n); 30397cac082SDavid S. Miller 3048e2ec639SYan, Zheng if (!(rt->dst.flags & DST_HOST)) 3058e2ec639SYan, Zheng dst_destroy_metrics_generic(dst); 3068e2ec639SYan, Zheng 30738308473SDavid S. Miller if (idev) { 3081da177e4SLinus Torvalds rt->rt6i_idev = NULL; 3091da177e4SLinus Torvalds in6_dev_put(idev); 3101da177e4SLinus Torvalds } 3111716a961SGao feng 3121716a961SGao feng if (!(rt->rt6i_flags & RTF_EXPIRES) && dst->from) 3131716a961SGao feng dst_release(dst->from); 3141716a961SGao feng 31597bab73fSDavid S. Miller if (rt6_has_peer(rt)) { 31697bab73fSDavid S. Miller struct inet_peer *peer = rt6_peer_ptr(rt); 317b3419363SDavid S. Miller inet_putpeer(peer); 318b3419363SDavid S. Miller } 319b3419363SDavid S. Miller } 320b3419363SDavid S. Miller 3216431cbc2SDavid S. Miller static atomic_t __rt6_peer_genid = ATOMIC_INIT(0); 3226431cbc2SDavid S. Miller 3236431cbc2SDavid S. Miller static u32 rt6_peer_genid(void) 3246431cbc2SDavid S. Miller { 3256431cbc2SDavid S. Miller return atomic_read(&__rt6_peer_genid); 3266431cbc2SDavid S. Miller } 3276431cbc2SDavid S. Miller 328b3419363SDavid S. Miller void rt6_bind_peer(struct rt6_info *rt, int create) 329b3419363SDavid S. Miller { 33097bab73fSDavid S. Miller struct inet_peer_base *base; 331b3419363SDavid S. Miller struct inet_peer *peer; 332b3419363SDavid S. Miller 33397bab73fSDavid S. Miller base = inetpeer_base_ptr(rt->_rt6i_peer); 33497bab73fSDavid S. Miller if (!base) 33597bab73fSDavid S. Miller return; 33697bab73fSDavid S. Miller 33797bab73fSDavid S. Miller peer = inet_getpeer_v6(base, &rt->rt6i_dst.addr, create); 3387b34ca2aSDavid S. Miller if (peer) { 33997bab73fSDavid S. Miller if (!rt6_set_peer(rt, peer)) 340b3419363SDavid S. Miller inet_putpeer(peer); 3416431cbc2SDavid S. Miller else 3426431cbc2SDavid S. Miller rt->rt6i_peer_genid = rt6_peer_genid(); 3431da177e4SLinus Torvalds } 3447b34ca2aSDavid S. Miller } 3451da177e4SLinus Torvalds 3461da177e4SLinus Torvalds static void ip6_dst_ifdown(struct dst_entry *dst, struct net_device *dev, 3471da177e4SLinus Torvalds int how) 3481da177e4SLinus Torvalds { 3491da177e4SLinus Torvalds struct rt6_info *rt = (struct rt6_info *)dst; 3501da177e4SLinus Torvalds struct inet6_dev *idev = rt->rt6i_idev; 3515a3e55d6SDenis V. Lunev struct net_device *loopback_dev = 352c346dca1SYOSHIFUJI Hideaki dev_net(dev)->loopback_dev; 3531da177e4SLinus Torvalds 35497cac082SDavid S. Miller if (dev != loopback_dev) { 35597cac082SDavid S. Miller if (idev && idev->dev == dev) { 3565a3e55d6SDenis V. Lunev struct inet6_dev *loopback_idev = 3575a3e55d6SDenis V. Lunev in6_dev_get(loopback_dev); 35838308473SDavid S. Miller if (loopback_idev) { 3591da177e4SLinus Torvalds rt->rt6i_idev = loopback_idev; 3601da177e4SLinus Torvalds in6_dev_put(idev); 3611da177e4SLinus Torvalds } 3621da177e4SLinus Torvalds } 36397cac082SDavid S. Miller if (rt->n && rt->n->dev == dev) { 36497cac082SDavid S. Miller rt->n->dev = loopback_dev; 36597cac082SDavid S. Miller dev_hold(loopback_dev); 36697cac082SDavid S. Miller dev_put(dev); 36797cac082SDavid S. Miller } 36897cac082SDavid S. Miller } 3691da177e4SLinus Torvalds } 3701da177e4SLinus Torvalds 371a50feda5SEric Dumazet static bool rt6_check_expired(const struct rt6_info *rt) 3721da177e4SLinus Torvalds { 3731716a961SGao feng if (rt->rt6i_flags & RTF_EXPIRES) { 3741716a961SGao feng if (time_after(jiffies, rt->dst.expires)) 375a50feda5SEric Dumazet return true; 3761716a961SGao feng } else if (rt->dst.from) { 3773fd91fb3SLi RongQing return rt6_check_expired((struct rt6_info *) rt->dst.from); 3781716a961SGao feng } 379a50feda5SEric Dumazet return false; 3801da177e4SLinus Torvalds } 3811da177e4SLinus Torvalds 382a50feda5SEric Dumazet static bool rt6_need_strict(const struct in6_addr *daddr) 383c71099acSThomas Graf { 384a02cec21SEric Dumazet return ipv6_addr_type(daddr) & 385a02cec21SEric Dumazet (IPV6_ADDR_MULTICAST | IPV6_ADDR_LINKLOCAL | IPV6_ADDR_LOOPBACK); 386c71099acSThomas Graf } 387c71099acSThomas Graf 3881da177e4SLinus Torvalds /* 389c71099acSThomas Graf * Route lookup. Any table->tb6_lock is implied. 3901da177e4SLinus Torvalds */ 3911da177e4SLinus Torvalds 3928ed67789SDaniel Lezcano static inline struct rt6_info *rt6_device_match(struct net *net, 3938ed67789SDaniel Lezcano struct rt6_info *rt, 394b71d1d42SEric Dumazet const struct in6_addr *saddr, 3951da177e4SLinus Torvalds int oif, 396d420895eSYOSHIFUJI Hideaki int flags) 3971da177e4SLinus Torvalds { 3981da177e4SLinus Torvalds struct rt6_info *local = NULL; 3991da177e4SLinus Torvalds struct rt6_info *sprt; 4001da177e4SLinus Torvalds 401dd3abc4eSYOSHIFUJI Hideaki if (!oif && ipv6_addr_any(saddr)) 402dd3abc4eSYOSHIFUJI Hideaki goto out; 403dd3abc4eSYOSHIFUJI Hideaki 404d8d1f30bSChangli Gao for (sprt = rt; sprt; sprt = sprt->dst.rt6_next) { 405d1918542SDavid S. Miller struct net_device *dev = sprt->dst.dev; 406dd3abc4eSYOSHIFUJI Hideaki 407dd3abc4eSYOSHIFUJI Hideaki if (oif) { 4081da177e4SLinus Torvalds if (dev->ifindex == oif) 4091da177e4SLinus Torvalds return sprt; 4101da177e4SLinus Torvalds if (dev->flags & IFF_LOOPBACK) { 41138308473SDavid S. Miller if (!sprt->rt6i_idev || 4121da177e4SLinus Torvalds sprt->rt6i_idev->dev->ifindex != oif) { 413d420895eSYOSHIFUJI Hideaki if (flags & RT6_LOOKUP_F_IFACE && oif) 4141da177e4SLinus Torvalds continue; 4151da177e4SLinus Torvalds if (local && (!oif || 4161da177e4SLinus Torvalds local->rt6i_idev->dev->ifindex == oif)) 4171da177e4SLinus Torvalds continue; 4181da177e4SLinus Torvalds } 4191da177e4SLinus Torvalds local = sprt; 4201da177e4SLinus Torvalds } 421dd3abc4eSYOSHIFUJI Hideaki } else { 422dd3abc4eSYOSHIFUJI Hideaki if (ipv6_chk_addr(net, saddr, dev, 423dd3abc4eSYOSHIFUJI Hideaki flags & RT6_LOOKUP_F_IFACE)) 424dd3abc4eSYOSHIFUJI Hideaki return sprt; 425dd3abc4eSYOSHIFUJI Hideaki } 4261da177e4SLinus Torvalds } 4271da177e4SLinus Torvalds 428dd3abc4eSYOSHIFUJI Hideaki if (oif) { 4291da177e4SLinus Torvalds if (local) 4301da177e4SLinus Torvalds return local; 4311da177e4SLinus Torvalds 432d420895eSYOSHIFUJI Hideaki if (flags & RT6_LOOKUP_F_IFACE) 4338ed67789SDaniel Lezcano return net->ipv6.ip6_null_entry; 4341da177e4SLinus Torvalds } 435dd3abc4eSYOSHIFUJI Hideaki out: 4361da177e4SLinus Torvalds return rt; 4371da177e4SLinus Torvalds } 4381da177e4SLinus Torvalds 43927097255SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF 44027097255SYOSHIFUJI Hideaki static void rt6_probe(struct rt6_info *rt) 44127097255SYOSHIFUJI Hideaki { 442f2c31e32SEric Dumazet struct neighbour *neigh; 44327097255SYOSHIFUJI Hideaki /* 44427097255SYOSHIFUJI Hideaki * Okay, this does not seem to be appropriate 44527097255SYOSHIFUJI Hideaki * for now, however, we need to check if it 44627097255SYOSHIFUJI Hideaki * is really so; aka Router Reachability Probing. 44727097255SYOSHIFUJI Hideaki * 44827097255SYOSHIFUJI Hideaki * Router Reachability Probe MUST be rate-limited 44927097255SYOSHIFUJI Hideaki * to no more than one per minute. 45027097255SYOSHIFUJI Hideaki */ 45197cac082SDavid S. Miller neigh = rt ? rt->n : NULL; 45227097255SYOSHIFUJI Hideaki if (!neigh || (neigh->nud_state & NUD_VALID)) 453fdd6681dSAmerigo Wang return; 45427097255SYOSHIFUJI Hideaki read_lock_bh(&neigh->lock); 45527097255SYOSHIFUJI Hideaki if (!(neigh->nud_state & NUD_VALID) && 45652e16356SYOSHIFUJI Hideaki time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) { 45727097255SYOSHIFUJI Hideaki struct in6_addr mcaddr; 45827097255SYOSHIFUJI Hideaki struct in6_addr *target; 45927097255SYOSHIFUJI Hideaki 46027097255SYOSHIFUJI Hideaki neigh->updated = jiffies; 46127097255SYOSHIFUJI Hideaki read_unlock_bh(&neigh->lock); 46227097255SYOSHIFUJI Hideaki 46327097255SYOSHIFUJI Hideaki target = (struct in6_addr *)&neigh->primary_key; 46427097255SYOSHIFUJI Hideaki addrconf_addr_solict_mult(target, &mcaddr); 465d1918542SDavid S. Miller ndisc_send_ns(rt->dst.dev, NULL, target, &mcaddr, NULL); 466f2c31e32SEric Dumazet } else { 46727097255SYOSHIFUJI Hideaki read_unlock_bh(&neigh->lock); 46827097255SYOSHIFUJI Hideaki } 469f2c31e32SEric Dumazet } 47027097255SYOSHIFUJI Hideaki #else 47127097255SYOSHIFUJI Hideaki static inline void rt6_probe(struct rt6_info *rt) 47227097255SYOSHIFUJI Hideaki { 47327097255SYOSHIFUJI Hideaki } 47427097255SYOSHIFUJI Hideaki #endif 47527097255SYOSHIFUJI Hideaki 4761da177e4SLinus Torvalds /* 477554cfb7eSYOSHIFUJI Hideaki * Default Router Selection (RFC 2461 6.3.6) 4781da177e4SLinus Torvalds */ 479b6f99a21SDave Jones static inline int rt6_check_dev(struct rt6_info *rt, int oif) 4801da177e4SLinus Torvalds { 481d1918542SDavid S. Miller struct net_device *dev = rt->dst.dev; 482161980f4SDavid S. Miller if (!oif || dev->ifindex == oif) 483554cfb7eSYOSHIFUJI Hideaki return 2; 484161980f4SDavid S. Miller if ((dev->flags & IFF_LOOPBACK) && 485161980f4SDavid S. Miller rt->rt6i_idev && rt->rt6i_idev->dev->ifindex == oif) 486161980f4SDavid S. Miller return 1; 487554cfb7eSYOSHIFUJI Hideaki return 0; 4881da177e4SLinus Torvalds } 4891da177e4SLinus Torvalds 490b6f99a21SDave Jones static inline int rt6_check_neigh(struct rt6_info *rt) 4911da177e4SLinus Torvalds { 492f2c31e32SEric Dumazet struct neighbour *neigh; 493398bcbebSYOSHIFUJI Hideaki int m; 494f2c31e32SEric Dumazet 49597cac082SDavid S. Miller neigh = rt->n; 4964d0c5911SYOSHIFUJI Hideaki if (rt->rt6i_flags & RTF_NONEXTHOP || 4974d0c5911SYOSHIFUJI Hideaki !(rt->rt6i_flags & RTF_GATEWAY)) 4984d0c5911SYOSHIFUJI Hideaki m = 1; 4994d0c5911SYOSHIFUJI Hideaki else if (neigh) { 5001da177e4SLinus Torvalds read_lock_bh(&neigh->lock); 501554cfb7eSYOSHIFUJI Hideaki if (neigh->nud_state & NUD_VALID) 5024d0c5911SYOSHIFUJI Hideaki m = 2; 503398bcbebSYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF 504398bcbebSYOSHIFUJI Hideaki else if (neigh->nud_state & NUD_FAILED) 505398bcbebSYOSHIFUJI Hideaki m = 0; 506398bcbebSYOSHIFUJI Hideaki #endif 507398bcbebSYOSHIFUJI Hideaki else 508ea73ee23SYOSHIFUJI Hideaki m = 1; 5091da177e4SLinus Torvalds read_unlock_bh(&neigh->lock); 510398bcbebSYOSHIFUJI Hideaki } else 511398bcbebSYOSHIFUJI Hideaki m = 0; 512554cfb7eSYOSHIFUJI Hideaki return m; 5131da177e4SLinus Torvalds } 5141da177e4SLinus Torvalds 515554cfb7eSYOSHIFUJI Hideaki static int rt6_score_route(struct rt6_info *rt, int oif, 516554cfb7eSYOSHIFUJI Hideaki int strict) 517554cfb7eSYOSHIFUJI Hideaki { 5184d0c5911SYOSHIFUJI Hideaki int m, n; 5194d0c5911SYOSHIFUJI Hideaki 5204d0c5911SYOSHIFUJI Hideaki m = rt6_check_dev(rt, oif); 52177d16f45SYOSHIFUJI Hideaki if (!m && (strict & RT6_LOOKUP_F_IFACE)) 522554cfb7eSYOSHIFUJI Hideaki return -1; 523ebacaaa0SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTER_PREF 524ebacaaa0SYOSHIFUJI Hideaki m |= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt->rt6i_flags)) << 2; 525ebacaaa0SYOSHIFUJI Hideaki #endif 5264d0c5911SYOSHIFUJI Hideaki n = rt6_check_neigh(rt); 527557e92efSYOSHIFUJI Hideaki if (!n && (strict & RT6_LOOKUP_F_REACHABLE)) 528554cfb7eSYOSHIFUJI Hideaki return -1; 529554cfb7eSYOSHIFUJI Hideaki return m; 530554cfb7eSYOSHIFUJI Hideaki } 531554cfb7eSYOSHIFUJI Hideaki 532f11e6659SDavid S. Miller static struct rt6_info *find_match(struct rt6_info *rt, int oif, int strict, 533f11e6659SDavid S. Miller int *mpri, struct rt6_info *match) 534554cfb7eSYOSHIFUJI Hideaki { 535554cfb7eSYOSHIFUJI Hideaki int m; 536554cfb7eSYOSHIFUJI Hideaki 537554cfb7eSYOSHIFUJI Hideaki if (rt6_check_expired(rt)) 538f11e6659SDavid S. Miller goto out; 539554cfb7eSYOSHIFUJI Hideaki 540554cfb7eSYOSHIFUJI Hideaki m = rt6_score_route(rt, oif, strict); 541554cfb7eSYOSHIFUJI Hideaki if (m < 0) 542f11e6659SDavid S. Miller goto out; 543554cfb7eSYOSHIFUJI Hideaki 544f11e6659SDavid S. Miller if (m > *mpri) { 545ea659e07SYOSHIFUJI Hideaki if (strict & RT6_LOOKUP_F_REACHABLE) 54627097255SYOSHIFUJI Hideaki rt6_probe(match); 547f11e6659SDavid S. Miller *mpri = m; 548554cfb7eSYOSHIFUJI Hideaki match = rt; 549ea659e07SYOSHIFUJI Hideaki } else if (strict & RT6_LOOKUP_F_REACHABLE) { 55027097255SYOSHIFUJI Hideaki rt6_probe(rt); 5511da177e4SLinus Torvalds } 552f11e6659SDavid S. Miller 553f11e6659SDavid S. Miller out: 554f11e6659SDavid S. Miller return match; 5551da177e4SLinus Torvalds } 5561da177e4SLinus Torvalds 557f11e6659SDavid S. Miller static struct rt6_info *find_rr_leaf(struct fib6_node *fn, 558f11e6659SDavid S. Miller struct rt6_info *rr_head, 559f11e6659SDavid S. Miller u32 metric, int oif, int strict) 560f11e6659SDavid S. Miller { 561f11e6659SDavid S. Miller struct rt6_info *rt, *match; 562f11e6659SDavid S. Miller int mpri = -1; 563f11e6659SDavid S. Miller 564f11e6659SDavid S. Miller match = NULL; 565f11e6659SDavid S. Miller for (rt = rr_head; rt && rt->rt6i_metric == metric; 566d8d1f30bSChangli Gao rt = rt->dst.rt6_next) 567f11e6659SDavid S. Miller match = find_match(rt, oif, strict, &mpri, match); 568f11e6659SDavid S. Miller for (rt = fn->leaf; rt && rt != rr_head && rt->rt6i_metric == metric; 569d8d1f30bSChangli Gao rt = rt->dst.rt6_next) 570f11e6659SDavid S. Miller match = find_match(rt, oif, strict, &mpri, match); 571f11e6659SDavid S. Miller 572f11e6659SDavid S. Miller return match; 573f11e6659SDavid S. Miller } 574f11e6659SDavid S. Miller 575f11e6659SDavid S. Miller static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict) 576f11e6659SDavid S. Miller { 577f11e6659SDavid S. Miller struct rt6_info *match, *rt0; 5788ed67789SDaniel Lezcano struct net *net; 579f11e6659SDavid S. Miller 580f11e6659SDavid S. Miller rt0 = fn->rr_ptr; 581f11e6659SDavid S. Miller if (!rt0) 582f11e6659SDavid S. Miller fn->rr_ptr = rt0 = fn->leaf; 583f11e6659SDavid S. Miller 584f11e6659SDavid S. Miller match = find_rr_leaf(fn, rt0, rt0->rt6i_metric, oif, strict); 585f11e6659SDavid S. Miller 586554cfb7eSYOSHIFUJI Hideaki if (!match && 587f11e6659SDavid S. Miller (strict & RT6_LOOKUP_F_REACHABLE)) { 588d8d1f30bSChangli Gao struct rt6_info *next = rt0->dst.rt6_next; 589f11e6659SDavid S. Miller 590554cfb7eSYOSHIFUJI Hideaki /* no entries matched; do round-robin */ 591f11e6659SDavid S. Miller if (!next || next->rt6i_metric != rt0->rt6i_metric) 592f11e6659SDavid S. Miller next = fn->leaf; 593f11e6659SDavid S. Miller 594f11e6659SDavid S. Miller if (next != rt0) 595f11e6659SDavid S. Miller fn->rr_ptr = next; 596554cfb7eSYOSHIFUJI Hideaki } 597554cfb7eSYOSHIFUJI Hideaki 598d1918542SDavid S. Miller net = dev_net(rt0->dst.dev); 599a02cec21SEric Dumazet return match ? match : net->ipv6.ip6_null_entry; 6001da177e4SLinus Torvalds } 6011da177e4SLinus Torvalds 60270ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO 60370ceb4f5SYOSHIFUJI Hideaki int rt6_route_rcv(struct net_device *dev, u8 *opt, int len, 604b71d1d42SEric Dumazet const struct in6_addr *gwaddr) 60570ceb4f5SYOSHIFUJI Hideaki { 606c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(dev); 60770ceb4f5SYOSHIFUJI Hideaki struct route_info *rinfo = (struct route_info *) opt; 60870ceb4f5SYOSHIFUJI Hideaki struct in6_addr prefix_buf, *prefix; 60970ceb4f5SYOSHIFUJI Hideaki unsigned int pref; 6104bed72e4SYOSHIFUJI Hideaki unsigned long lifetime; 61170ceb4f5SYOSHIFUJI Hideaki struct rt6_info *rt; 61270ceb4f5SYOSHIFUJI Hideaki 61370ceb4f5SYOSHIFUJI Hideaki if (len < sizeof(struct route_info)) { 61470ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 61570ceb4f5SYOSHIFUJI Hideaki } 61670ceb4f5SYOSHIFUJI Hideaki 61770ceb4f5SYOSHIFUJI Hideaki /* Sanity check for prefix_len and length */ 61870ceb4f5SYOSHIFUJI Hideaki if (rinfo->length > 3) { 61970ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 62070ceb4f5SYOSHIFUJI Hideaki } else if (rinfo->prefix_len > 128) { 62170ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 62270ceb4f5SYOSHIFUJI Hideaki } else if (rinfo->prefix_len > 64) { 62370ceb4f5SYOSHIFUJI Hideaki if (rinfo->length < 2) { 62470ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 62570ceb4f5SYOSHIFUJI Hideaki } 62670ceb4f5SYOSHIFUJI Hideaki } else if (rinfo->prefix_len > 0) { 62770ceb4f5SYOSHIFUJI Hideaki if (rinfo->length < 1) { 62870ceb4f5SYOSHIFUJI Hideaki return -EINVAL; 62970ceb4f5SYOSHIFUJI Hideaki } 63070ceb4f5SYOSHIFUJI Hideaki } 63170ceb4f5SYOSHIFUJI Hideaki 63270ceb4f5SYOSHIFUJI Hideaki pref = rinfo->route_pref; 63370ceb4f5SYOSHIFUJI Hideaki if (pref == ICMPV6_ROUTER_PREF_INVALID) 6343933fc95SJens Rosenboom return -EINVAL; 63570ceb4f5SYOSHIFUJI Hideaki 6364bed72e4SYOSHIFUJI Hideaki lifetime = addrconf_timeout_fixup(ntohl(rinfo->lifetime), HZ); 63770ceb4f5SYOSHIFUJI Hideaki 63870ceb4f5SYOSHIFUJI Hideaki if (rinfo->length == 3) 63970ceb4f5SYOSHIFUJI Hideaki prefix = (struct in6_addr *)rinfo->prefix; 64070ceb4f5SYOSHIFUJI Hideaki else { 64170ceb4f5SYOSHIFUJI Hideaki /* this function is safe */ 64270ceb4f5SYOSHIFUJI Hideaki ipv6_addr_prefix(&prefix_buf, 64370ceb4f5SYOSHIFUJI Hideaki (struct in6_addr *)rinfo->prefix, 64470ceb4f5SYOSHIFUJI Hideaki rinfo->prefix_len); 64570ceb4f5SYOSHIFUJI Hideaki prefix = &prefix_buf; 64670ceb4f5SYOSHIFUJI Hideaki } 64770ceb4f5SYOSHIFUJI Hideaki 648efa2cea0SDaniel Lezcano rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, gwaddr, 649efa2cea0SDaniel Lezcano dev->ifindex); 65070ceb4f5SYOSHIFUJI Hideaki 65170ceb4f5SYOSHIFUJI Hideaki if (rt && !lifetime) { 652e0a1ad73SThomas Graf ip6_del_rt(rt); 65370ceb4f5SYOSHIFUJI Hideaki rt = NULL; 65470ceb4f5SYOSHIFUJI Hideaki } 65570ceb4f5SYOSHIFUJI Hideaki 65670ceb4f5SYOSHIFUJI Hideaki if (!rt && lifetime) 657efa2cea0SDaniel Lezcano rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex, 65870ceb4f5SYOSHIFUJI Hideaki pref); 65970ceb4f5SYOSHIFUJI Hideaki else if (rt) 66070ceb4f5SYOSHIFUJI Hideaki rt->rt6i_flags = RTF_ROUTEINFO | 66170ceb4f5SYOSHIFUJI Hideaki (rt->rt6i_flags & ~RTF_PREF_MASK) | RTF_PREF(pref); 66270ceb4f5SYOSHIFUJI Hideaki 66370ceb4f5SYOSHIFUJI Hideaki if (rt) { 6641716a961SGao feng if (!addrconf_finite_timeout(lifetime)) 6651716a961SGao feng rt6_clean_expires(rt); 6661716a961SGao feng else 6671716a961SGao feng rt6_set_expires(rt, jiffies + HZ * lifetime); 6681716a961SGao feng 669d8d1f30bSChangli Gao dst_release(&rt->dst); 67070ceb4f5SYOSHIFUJI Hideaki } 67170ceb4f5SYOSHIFUJI Hideaki return 0; 67270ceb4f5SYOSHIFUJI Hideaki } 67370ceb4f5SYOSHIFUJI Hideaki #endif 67470ceb4f5SYOSHIFUJI Hideaki 6758ed67789SDaniel Lezcano #define BACKTRACK(__net, saddr) \ 676982f56f3SYOSHIFUJI Hideaki do { \ 6778ed67789SDaniel Lezcano if (rt == __net->ipv6.ip6_null_entry) { \ 678982f56f3SYOSHIFUJI Hideaki struct fib6_node *pn; \ 679e0eda7bbSVille Nuorvala while (1) { \ 680982f56f3SYOSHIFUJI Hideaki if (fn->fn_flags & RTN_TL_ROOT) \ 681c71099acSThomas Graf goto out; \ 682982f56f3SYOSHIFUJI Hideaki pn = fn->parent; \ 683982f56f3SYOSHIFUJI Hideaki if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) \ 6848bce65b9SKim Nordlund fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr); \ 685982f56f3SYOSHIFUJI Hideaki else \ 686982f56f3SYOSHIFUJI Hideaki fn = pn; \ 687c71099acSThomas Graf if (fn->fn_flags & RTN_RTINFO) \ 688c71099acSThomas Graf goto restart; \ 689c71099acSThomas Graf } \ 690982f56f3SYOSHIFUJI Hideaki } \ 691982f56f3SYOSHIFUJI Hideaki } while (0) 692c71099acSThomas Graf 6938ed67789SDaniel Lezcano static struct rt6_info *ip6_pol_route_lookup(struct net *net, 6948ed67789SDaniel Lezcano struct fib6_table *table, 6954c9483b2SDavid S. Miller struct flowi6 *fl6, int flags) 6961da177e4SLinus Torvalds { 6971da177e4SLinus Torvalds struct fib6_node *fn; 6981da177e4SLinus Torvalds struct rt6_info *rt; 6991da177e4SLinus Torvalds 700c71099acSThomas Graf read_lock_bh(&table->tb6_lock); 7014c9483b2SDavid S. Miller fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); 702c71099acSThomas Graf restart: 703c71099acSThomas Graf rt = fn->leaf; 7044c9483b2SDavid S. Miller rt = rt6_device_match(net, rt, &fl6->saddr, fl6->flowi6_oif, flags); 7054c9483b2SDavid S. Miller BACKTRACK(net, &fl6->saddr); 706c71099acSThomas Graf out: 707d8d1f30bSChangli Gao dst_use(&rt->dst, jiffies); 708c71099acSThomas Graf read_unlock_bh(&table->tb6_lock); 7091da177e4SLinus Torvalds return rt; 710c71099acSThomas Graf 711c71099acSThomas Graf } 712c71099acSThomas Graf 713ea6e574eSFlorian Westphal struct dst_entry * ip6_route_lookup(struct net *net, struct flowi6 *fl6, 714ea6e574eSFlorian Westphal int flags) 715ea6e574eSFlorian Westphal { 716ea6e574eSFlorian Westphal return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_lookup); 717ea6e574eSFlorian Westphal } 718ea6e574eSFlorian Westphal EXPORT_SYMBOL_GPL(ip6_route_lookup); 719ea6e574eSFlorian Westphal 7209acd9f3aSYOSHIFUJI Hideaki struct rt6_info *rt6_lookup(struct net *net, const struct in6_addr *daddr, 7219acd9f3aSYOSHIFUJI Hideaki const struct in6_addr *saddr, int oif, int strict) 722c71099acSThomas Graf { 7234c9483b2SDavid S. Miller struct flowi6 fl6 = { 7244c9483b2SDavid S. Miller .flowi6_oif = oif, 7254c9483b2SDavid S. Miller .daddr = *daddr, 726c71099acSThomas Graf }; 727c71099acSThomas Graf struct dst_entry *dst; 72877d16f45SYOSHIFUJI Hideaki int flags = strict ? RT6_LOOKUP_F_IFACE : 0; 729c71099acSThomas Graf 730adaa70bbSThomas Graf if (saddr) { 7314c9483b2SDavid S. Miller memcpy(&fl6.saddr, saddr, sizeof(*saddr)); 732adaa70bbSThomas Graf flags |= RT6_LOOKUP_F_HAS_SADDR; 733adaa70bbSThomas Graf } 734adaa70bbSThomas Graf 7354c9483b2SDavid S. Miller dst = fib6_rule_lookup(net, &fl6, flags, ip6_pol_route_lookup); 736c71099acSThomas Graf if (dst->error == 0) 737c71099acSThomas Graf return (struct rt6_info *) dst; 738c71099acSThomas Graf 739c71099acSThomas Graf dst_release(dst); 740c71099acSThomas Graf 7411da177e4SLinus Torvalds return NULL; 7421da177e4SLinus Torvalds } 7431da177e4SLinus Torvalds 7447159039aSYOSHIFUJI Hideaki EXPORT_SYMBOL(rt6_lookup); 7457159039aSYOSHIFUJI Hideaki 746c71099acSThomas Graf /* ip6_ins_rt is called with FREE table->tb6_lock. 7471da177e4SLinus Torvalds It takes new route entry, the addition fails by any reason the 7481da177e4SLinus Torvalds route is freed. In any case, if caller does not hold it, it may 7491da177e4SLinus Torvalds be destroyed. 7501da177e4SLinus Torvalds */ 7511da177e4SLinus Torvalds 75286872cb5SThomas Graf static int __ip6_ins_rt(struct rt6_info *rt, struct nl_info *info) 7531da177e4SLinus Torvalds { 7541da177e4SLinus Torvalds int err; 755c71099acSThomas Graf struct fib6_table *table; 7561da177e4SLinus Torvalds 757c71099acSThomas Graf table = rt->rt6i_table; 758c71099acSThomas Graf write_lock_bh(&table->tb6_lock); 75986872cb5SThomas Graf err = fib6_add(&table->tb6_root, rt, info); 760c71099acSThomas Graf write_unlock_bh(&table->tb6_lock); 7611da177e4SLinus Torvalds 7621da177e4SLinus Torvalds return err; 7631da177e4SLinus Torvalds } 7641da177e4SLinus Torvalds 76540e22e8fSThomas Graf int ip6_ins_rt(struct rt6_info *rt) 76640e22e8fSThomas Graf { 7674d1169c1SDenis V. Lunev struct nl_info info = { 768d1918542SDavid S. Miller .nl_net = dev_net(rt->dst.dev), 7694d1169c1SDenis V. Lunev }; 770528c4cebSDenis V. Lunev return __ip6_ins_rt(rt, &info); 77140e22e8fSThomas Graf } 77240e22e8fSThomas Graf 7731716a961SGao feng static struct rt6_info *rt6_alloc_cow(struct rt6_info *ort, 77421efcfa0SEric Dumazet const struct in6_addr *daddr, 775b71d1d42SEric Dumazet const struct in6_addr *saddr) 7761da177e4SLinus Torvalds { 7771da177e4SLinus Torvalds struct rt6_info *rt; 7781da177e4SLinus Torvalds 7791da177e4SLinus Torvalds /* 7801da177e4SLinus Torvalds * Clone the route. 7811da177e4SLinus Torvalds */ 7821da177e4SLinus Torvalds 78321efcfa0SEric Dumazet rt = ip6_rt_copy(ort, daddr); 7841da177e4SLinus Torvalds 7851da177e4SLinus Torvalds if (rt) { 78614deae41SDavid S. Miller int attempts = !in_softirq(); 78714deae41SDavid S. Miller 78858c4fb86SYOSHIFUJI Hideaki if (!(rt->rt6i_flags & RTF_GATEWAY)) { 789bb3c3686SDavid S. Miller if (ort->rt6i_dst.plen != 128 && 79021efcfa0SEric Dumazet ipv6_addr_equal(&ort->rt6i_dst.addr, daddr)) 79158c4fb86SYOSHIFUJI Hideaki rt->rt6i_flags |= RTF_ANYCAST; 7924e3fd7a0SAlexey Dobriyan rt->rt6i_gateway = *daddr; 79358c4fb86SYOSHIFUJI Hideaki } 7941da177e4SLinus Torvalds 7951da177e4SLinus Torvalds rt->rt6i_flags |= RTF_CACHE; 7961da177e4SLinus Torvalds 7971da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES 7981da177e4SLinus Torvalds if (rt->rt6i_src.plen && saddr) { 7994e3fd7a0SAlexey Dobriyan rt->rt6i_src.addr = *saddr; 8001da177e4SLinus Torvalds rt->rt6i_src.plen = 128; 8011da177e4SLinus Torvalds } 8021da177e4SLinus Torvalds #endif 8031da177e4SLinus Torvalds 80414deae41SDavid S. Miller retry: 8058ade06c6SDavid S. Miller if (rt6_bind_neighbour(rt, rt->dst.dev)) { 806d1918542SDavid S. Miller struct net *net = dev_net(rt->dst.dev); 80714deae41SDavid S. Miller int saved_rt_min_interval = 80814deae41SDavid S. Miller net->ipv6.sysctl.ip6_rt_gc_min_interval; 80914deae41SDavid S. Miller int saved_rt_elasticity = 81014deae41SDavid S. Miller net->ipv6.sysctl.ip6_rt_gc_elasticity; 81114deae41SDavid S. Miller 81214deae41SDavid S. Miller if (attempts-- > 0) { 81314deae41SDavid S. Miller net->ipv6.sysctl.ip6_rt_gc_elasticity = 1; 81414deae41SDavid S. Miller net->ipv6.sysctl.ip6_rt_gc_min_interval = 0; 81514deae41SDavid S. Miller 81686393e52SAlexey Dobriyan ip6_dst_gc(&net->ipv6.ip6_dst_ops); 81714deae41SDavid S. Miller 81814deae41SDavid S. Miller net->ipv6.sysctl.ip6_rt_gc_elasticity = 81914deae41SDavid S. Miller saved_rt_elasticity; 82014deae41SDavid S. Miller net->ipv6.sysctl.ip6_rt_gc_min_interval = 82114deae41SDavid S. Miller saved_rt_min_interval; 82214deae41SDavid S. Miller goto retry; 82314deae41SDavid S. Miller } 82414deae41SDavid S. Miller 825f3213831SJoe Perches net_warn_ratelimited("Neighbour table overflow\n"); 826d8d1f30bSChangli Gao dst_free(&rt->dst); 82714deae41SDavid S. Miller return NULL; 82814deae41SDavid S. Miller } 82995a9a5baSYOSHIFUJI Hideaki } 8301da177e4SLinus Torvalds 8311da177e4SLinus Torvalds return rt; 8321da177e4SLinus Torvalds } 83395a9a5baSYOSHIFUJI Hideaki 83421efcfa0SEric Dumazet static struct rt6_info *rt6_alloc_clone(struct rt6_info *ort, 83521efcfa0SEric Dumazet const struct in6_addr *daddr) 836299d9939SYOSHIFUJI Hideaki { 83721efcfa0SEric Dumazet struct rt6_info *rt = ip6_rt_copy(ort, daddr); 83821efcfa0SEric Dumazet 839299d9939SYOSHIFUJI Hideaki if (rt) { 840299d9939SYOSHIFUJI Hideaki rt->rt6i_flags |= RTF_CACHE; 84197cac082SDavid S. Miller rt->n = neigh_clone(ort->n); 842299d9939SYOSHIFUJI Hideaki } 843299d9939SYOSHIFUJI Hideaki return rt; 844299d9939SYOSHIFUJI Hideaki } 845299d9939SYOSHIFUJI Hideaki 8468ed67789SDaniel Lezcano static struct rt6_info *ip6_pol_route(struct net *net, struct fib6_table *table, int oif, 8474c9483b2SDavid S. Miller struct flowi6 *fl6, int flags) 8481da177e4SLinus Torvalds { 8491da177e4SLinus Torvalds struct fib6_node *fn; 850519fbd87SYOSHIFUJI Hideaki struct rt6_info *rt, *nrt; 851c71099acSThomas Graf int strict = 0; 8521da177e4SLinus Torvalds int attempts = 3; 853519fbd87SYOSHIFUJI Hideaki int err; 85453b7997fSYOSHIFUJI Hideaki int reachable = net->ipv6.devconf_all->forwarding ? 0 : RT6_LOOKUP_F_REACHABLE; 8551da177e4SLinus Torvalds 85677d16f45SYOSHIFUJI Hideaki strict |= flags & RT6_LOOKUP_F_IFACE; 8571da177e4SLinus Torvalds 8581da177e4SLinus Torvalds relookup: 859c71099acSThomas Graf read_lock_bh(&table->tb6_lock); 8601da177e4SLinus Torvalds 8618238dd06SYOSHIFUJI Hideaki restart_2: 8624c9483b2SDavid S. Miller fn = fib6_lookup(&table->tb6_root, &fl6->daddr, &fl6->saddr); 8631da177e4SLinus Torvalds 8641da177e4SLinus Torvalds restart: 8654acad72dSPavel Emelyanov rt = rt6_select(fn, oif, strict | reachable); 8668ed67789SDaniel Lezcano 8674c9483b2SDavid S. Miller BACKTRACK(net, &fl6->saddr); 8688ed67789SDaniel Lezcano if (rt == net->ipv6.ip6_null_entry || 8698238dd06SYOSHIFUJI Hideaki rt->rt6i_flags & RTF_CACHE) 8701da177e4SLinus Torvalds goto out; 8711da177e4SLinus Torvalds 872d8d1f30bSChangli Gao dst_hold(&rt->dst); 873c71099acSThomas Graf read_unlock_bh(&table->tb6_lock); 8741da177e4SLinus Torvalds 87597cac082SDavid S. Miller if (!rt->n && !(rt->rt6i_flags & RTF_NONEXTHOP)) 8764c9483b2SDavid S. Miller nrt = rt6_alloc_cow(rt, &fl6->daddr, &fl6->saddr); 8777343ff31SDavid S. Miller else if (!(rt->dst.flags & DST_HOST)) 8784c9483b2SDavid S. Miller nrt = rt6_alloc_clone(rt, &fl6->daddr); 8797343ff31SDavid S. Miller else 8807343ff31SDavid S. Miller goto out2; 8811da177e4SLinus Torvalds 882d8d1f30bSChangli Gao dst_release(&rt->dst); 8838ed67789SDaniel Lezcano rt = nrt ? : net->ipv6.ip6_null_entry; 8841da177e4SLinus Torvalds 885d8d1f30bSChangli Gao dst_hold(&rt->dst); 886e40cf353SYOSHIFUJI Hideaki if (nrt) { 88740e22e8fSThomas Graf err = ip6_ins_rt(nrt); 888e40cf353SYOSHIFUJI Hideaki if (!err) 889e40cf353SYOSHIFUJI Hideaki goto out2; 890e40cf353SYOSHIFUJI Hideaki } 891e40cf353SYOSHIFUJI Hideaki 892e40cf353SYOSHIFUJI Hideaki if (--attempts <= 0) 8931da177e4SLinus Torvalds goto out2; 8941da177e4SLinus Torvalds 895519fbd87SYOSHIFUJI Hideaki /* 896c71099acSThomas Graf * Race condition! In the gap, when table->tb6_lock was 897519fbd87SYOSHIFUJI Hideaki * released someone could insert this route. Relookup. 8981da177e4SLinus Torvalds */ 899d8d1f30bSChangli Gao dst_release(&rt->dst); 9001da177e4SLinus Torvalds goto relookup; 901e40cf353SYOSHIFUJI Hideaki 902519fbd87SYOSHIFUJI Hideaki out: 9038238dd06SYOSHIFUJI Hideaki if (reachable) { 9048238dd06SYOSHIFUJI Hideaki reachable = 0; 9058238dd06SYOSHIFUJI Hideaki goto restart_2; 9068238dd06SYOSHIFUJI Hideaki } 907d8d1f30bSChangli Gao dst_hold(&rt->dst); 908c71099acSThomas Graf read_unlock_bh(&table->tb6_lock); 9091da177e4SLinus Torvalds out2: 910d8d1f30bSChangli Gao rt->dst.lastuse = jiffies; 911d8d1f30bSChangli Gao rt->dst.__use++; 912c71099acSThomas Graf 913c71099acSThomas Graf return rt; 914c71099acSThomas Graf } 915c71099acSThomas Graf 9168ed67789SDaniel Lezcano static struct rt6_info *ip6_pol_route_input(struct net *net, struct fib6_table *table, 9174c9483b2SDavid S. Miller struct flowi6 *fl6, int flags) 9184acad72dSPavel Emelyanov { 9194c9483b2SDavid S. Miller return ip6_pol_route(net, table, fl6->flowi6_iif, fl6, flags); 9204acad72dSPavel Emelyanov } 9214acad72dSPavel Emelyanov 92272331bc0SShmulik Ladkani static struct dst_entry *ip6_route_input_lookup(struct net *net, 92372331bc0SShmulik Ladkani struct net_device *dev, 92472331bc0SShmulik Ladkani struct flowi6 *fl6, int flags) 92572331bc0SShmulik Ladkani { 92672331bc0SShmulik Ladkani if (rt6_need_strict(&fl6->daddr) && dev->type != ARPHRD_PIMREG) 92772331bc0SShmulik Ladkani flags |= RT6_LOOKUP_F_IFACE; 92872331bc0SShmulik Ladkani 92972331bc0SShmulik Ladkani return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_input); 93072331bc0SShmulik Ladkani } 93172331bc0SShmulik Ladkani 932c71099acSThomas Graf void ip6_route_input(struct sk_buff *skb) 933c71099acSThomas Graf { 934b71d1d42SEric Dumazet const struct ipv6hdr *iph = ipv6_hdr(skb); 935c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(skb->dev); 936adaa70bbSThomas Graf int flags = RT6_LOOKUP_F_HAS_SADDR; 9374c9483b2SDavid S. Miller struct flowi6 fl6 = { 9384c9483b2SDavid S. Miller .flowi6_iif = skb->dev->ifindex, 9394c9483b2SDavid S. Miller .daddr = iph->daddr, 9404c9483b2SDavid S. Miller .saddr = iph->saddr, 9414c9483b2SDavid S. Miller .flowlabel = (* (__be32 *) iph) & IPV6_FLOWINFO_MASK, 9424c9483b2SDavid S. Miller .flowi6_mark = skb->mark, 9434c9483b2SDavid S. Miller .flowi6_proto = iph->nexthdr, 944c71099acSThomas Graf }; 945adaa70bbSThomas Graf 94672331bc0SShmulik Ladkani skb_dst_set(skb, ip6_route_input_lookup(net, skb->dev, &fl6, flags)); 947c71099acSThomas Graf } 948c71099acSThomas Graf 9498ed67789SDaniel Lezcano static struct rt6_info *ip6_pol_route_output(struct net *net, struct fib6_table *table, 9504c9483b2SDavid S. Miller struct flowi6 *fl6, int flags) 951c71099acSThomas Graf { 9524c9483b2SDavid S. Miller return ip6_pol_route(net, table, fl6->flowi6_oif, fl6, flags); 953c71099acSThomas Graf } 954c71099acSThomas Graf 9559c7a4f9cSFlorian Westphal struct dst_entry * ip6_route_output(struct net *net, const struct sock *sk, 9564c9483b2SDavid S. Miller struct flowi6 *fl6) 957c71099acSThomas Graf { 958c71099acSThomas Graf int flags = 0; 959c71099acSThomas Graf 9601fb9489bSPavel Emelyanov fl6->flowi6_iif = LOOPBACK_IFINDEX; 9614dc27d1cSDavid McCullough 9624c9483b2SDavid S. Miller if ((sk && sk->sk_bound_dev_if) || rt6_need_strict(&fl6->daddr)) 96377d16f45SYOSHIFUJI Hideaki flags |= RT6_LOOKUP_F_IFACE; 964c71099acSThomas Graf 9654c9483b2SDavid S. Miller if (!ipv6_addr_any(&fl6->saddr)) 966adaa70bbSThomas Graf flags |= RT6_LOOKUP_F_HAS_SADDR; 9670c9a2ac1SYOSHIFUJI Hideaki / 吉藤英明 else if (sk) 9680c9a2ac1SYOSHIFUJI Hideaki / 吉藤英明 flags |= rt6_srcprefs2flags(inet6_sk(sk)->srcprefs); 969adaa70bbSThomas Graf 9704c9483b2SDavid S. Miller return fib6_rule_lookup(net, fl6, flags, ip6_pol_route_output); 9711da177e4SLinus Torvalds } 9721da177e4SLinus Torvalds 9737159039aSYOSHIFUJI Hideaki EXPORT_SYMBOL(ip6_route_output); 9741da177e4SLinus Torvalds 9752774c131SDavid S. Miller struct dst_entry *ip6_blackhole_route(struct net *net, struct dst_entry *dst_orig) 97614e50e57SDavid S. Miller { 9775c1e6aa3SDavid S. Miller struct rt6_info *rt, *ort = (struct rt6_info *) dst_orig; 97814e50e57SDavid S. Miller struct dst_entry *new = NULL; 97914e50e57SDavid S. Miller 980f5b0a874SDavid S. Miller rt = dst_alloc(&ip6_dst_blackhole_ops, ort->dst.dev, 1, DST_OBSOLETE_NONE, 0); 98114e50e57SDavid S. Miller if (rt) { 982d8d1f30bSChangli Gao new = &rt->dst; 98314e50e57SDavid S. Miller 9848104891bSSteffen Klassert memset(new + 1, 0, sizeof(*rt) - sizeof(*new)); 9858104891bSSteffen Klassert rt6_init_peer(rt, net->ipv6.peers); 9868104891bSSteffen Klassert 98714e50e57SDavid S. Miller new->__use = 1; 988352e512cSHerbert Xu new->input = dst_discard; 989352e512cSHerbert Xu new->output = dst_discard; 99014e50e57SDavid S. Miller 99121efcfa0SEric Dumazet if (dst_metrics_read_only(&ort->dst)) 99221efcfa0SEric Dumazet new->_metrics = ort->dst._metrics; 99321efcfa0SEric Dumazet else 994defb3519SDavid S. Miller dst_copy_metrics(new, &ort->dst); 99514e50e57SDavid S. Miller rt->rt6i_idev = ort->rt6i_idev; 99614e50e57SDavid S. Miller if (rt->rt6i_idev) 99714e50e57SDavid S. Miller in6_dev_hold(rt->rt6i_idev); 99814e50e57SDavid S. Miller 9994e3fd7a0SAlexey Dobriyan rt->rt6i_gateway = ort->rt6i_gateway; 10001716a961SGao feng rt->rt6i_flags = ort->rt6i_flags; 10011716a961SGao feng rt6_clean_expires(rt); 100214e50e57SDavid S. Miller rt->rt6i_metric = 0; 100314e50e57SDavid S. Miller 100414e50e57SDavid S. Miller memcpy(&rt->rt6i_dst, &ort->rt6i_dst, sizeof(struct rt6key)); 100514e50e57SDavid S. Miller #ifdef CONFIG_IPV6_SUBTREES 100614e50e57SDavid S. Miller memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key)); 100714e50e57SDavid S. Miller #endif 100814e50e57SDavid S. Miller 100914e50e57SDavid S. Miller dst_free(new); 101014e50e57SDavid S. Miller } 101114e50e57SDavid S. Miller 101269ead7afSDavid S. Miller dst_release(dst_orig); 101369ead7afSDavid S. Miller return new ? new : ERR_PTR(-ENOMEM); 101414e50e57SDavid S. Miller } 101514e50e57SDavid S. Miller 10161da177e4SLinus Torvalds /* 10171da177e4SLinus Torvalds * Destination cache support functions 10181da177e4SLinus Torvalds */ 10191da177e4SLinus Torvalds 10201da177e4SLinus Torvalds static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie) 10211da177e4SLinus Torvalds { 10221da177e4SLinus Torvalds struct rt6_info *rt; 10231da177e4SLinus Torvalds 10241da177e4SLinus Torvalds rt = (struct rt6_info *) dst; 10251da177e4SLinus Torvalds 10266f3118b5SNicolas Dichtel /* All IPV6 dsts are created with ->obsolete set to the value 10276f3118b5SNicolas Dichtel * DST_OBSOLETE_FORCE_CHK which forces validation calls down 10286f3118b5SNicolas Dichtel * into this function always. 10296f3118b5SNicolas Dichtel */ 10306f3118b5SNicolas Dichtel if (rt->rt6i_genid != rt_genid(dev_net(rt->dst.dev))) 10316f3118b5SNicolas Dichtel return NULL; 10326f3118b5SNicolas Dichtel 10336431cbc2SDavid S. Miller if (rt->rt6i_node && (rt->rt6i_node->fn_sernum == cookie)) { 10346431cbc2SDavid S. Miller if (rt->rt6i_peer_genid != rt6_peer_genid()) { 103597bab73fSDavid S. Miller if (!rt6_has_peer(rt)) 10366431cbc2SDavid S. Miller rt6_bind_peer(rt, 0); 10376431cbc2SDavid S. Miller rt->rt6i_peer_genid = rt6_peer_genid(); 10386431cbc2SDavid S. Miller } 10391da177e4SLinus Torvalds return dst; 10406431cbc2SDavid S. Miller } 10411da177e4SLinus Torvalds return NULL; 10421da177e4SLinus Torvalds } 10431da177e4SLinus Torvalds 10441da177e4SLinus Torvalds static struct dst_entry *ip6_negative_advice(struct dst_entry *dst) 10451da177e4SLinus Torvalds { 10461da177e4SLinus Torvalds struct rt6_info *rt = (struct rt6_info *) dst; 10471da177e4SLinus Torvalds 10481da177e4SLinus Torvalds if (rt) { 104954c1a859SYOSHIFUJI Hideaki / 吉藤英明 if (rt->rt6i_flags & RTF_CACHE) { 105054c1a859SYOSHIFUJI Hideaki / 吉藤英明 if (rt6_check_expired(rt)) { 1051e0a1ad73SThomas Graf ip6_del_rt(rt); 105254c1a859SYOSHIFUJI Hideaki / 吉藤英明 dst = NULL; 10531da177e4SLinus Torvalds } 105454c1a859SYOSHIFUJI Hideaki / 吉藤英明 } else { 105554c1a859SYOSHIFUJI Hideaki / 吉藤英明 dst_release(dst); 105654c1a859SYOSHIFUJI Hideaki / 吉藤英明 dst = NULL; 105754c1a859SYOSHIFUJI Hideaki / 吉藤英明 } 105854c1a859SYOSHIFUJI Hideaki / 吉藤英明 } 105954c1a859SYOSHIFUJI Hideaki / 吉藤英明 return dst; 10601da177e4SLinus Torvalds } 10611da177e4SLinus Torvalds 10621da177e4SLinus Torvalds static void ip6_link_failure(struct sk_buff *skb) 10631da177e4SLinus Torvalds { 10641da177e4SLinus Torvalds struct rt6_info *rt; 10651da177e4SLinus Torvalds 10663ffe533cSAlexey Dobriyan icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0); 10671da177e4SLinus Torvalds 1068adf30907SEric Dumazet rt = (struct rt6_info *) skb_dst(skb); 10691da177e4SLinus Torvalds if (rt) { 10701716a961SGao feng if (rt->rt6i_flags & RTF_CACHE) 10711716a961SGao feng rt6_update_expires(rt, 0); 10721716a961SGao feng else if (rt->rt6i_node && (rt->rt6i_flags & RTF_DEFAULT)) 10731da177e4SLinus Torvalds rt->rt6i_node->fn_sernum = -1; 10741da177e4SLinus Torvalds } 10751da177e4SLinus Torvalds } 10761da177e4SLinus Torvalds 10776700c270SDavid S. Miller static void ip6_rt_update_pmtu(struct dst_entry *dst, struct sock *sk, 10786700c270SDavid S. Miller struct sk_buff *skb, u32 mtu) 10791da177e4SLinus Torvalds { 10801da177e4SLinus Torvalds struct rt6_info *rt6 = (struct rt6_info*)dst; 10811da177e4SLinus Torvalds 108281aded24SDavid S. Miller dst_confirm(dst); 10831da177e4SLinus Torvalds if (mtu < dst_mtu(dst) && rt6->rt6i_dst.plen == 128) { 108481aded24SDavid S. Miller struct net *net = dev_net(dst->dev); 108581aded24SDavid S. Miller 10861da177e4SLinus Torvalds rt6->rt6i_flags |= RTF_MODIFIED; 10871da177e4SLinus Torvalds if (mtu < IPV6_MIN_MTU) { 1088defb3519SDavid S. Miller u32 features = dst_metric(dst, RTAX_FEATURES); 10891da177e4SLinus Torvalds mtu = IPV6_MIN_MTU; 1090defb3519SDavid S. Miller features |= RTAX_FEATURE_ALLFRAG; 1091defb3519SDavid S. Miller dst_metric_set(dst, RTAX_FEATURES, features); 10921da177e4SLinus Torvalds } 1093defb3519SDavid S. Miller dst_metric_set(dst, RTAX_MTU, mtu); 109481aded24SDavid S. Miller rt6_update_expires(rt6, net->ipv6.sysctl.ip6_rt_mtu_expires); 10951da177e4SLinus Torvalds } 10961da177e4SLinus Torvalds } 10971da177e4SLinus Torvalds 109842ae66c8SDavid S. Miller void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu, 109942ae66c8SDavid S. Miller int oif, u32 mark) 110081aded24SDavid S. Miller { 110181aded24SDavid S. Miller const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; 110281aded24SDavid S. Miller struct dst_entry *dst; 110381aded24SDavid S. Miller struct flowi6 fl6; 110481aded24SDavid S. Miller 110581aded24SDavid S. Miller memset(&fl6, 0, sizeof(fl6)); 110681aded24SDavid S. Miller fl6.flowi6_oif = oif; 110781aded24SDavid S. Miller fl6.flowi6_mark = mark; 11083e12939aSDavid S. Miller fl6.flowi6_flags = 0; 110981aded24SDavid S. Miller fl6.daddr = iph->daddr; 111081aded24SDavid S. Miller fl6.saddr = iph->saddr; 111181aded24SDavid S. Miller fl6.flowlabel = (*(__be32 *) iph) & IPV6_FLOWINFO_MASK; 111281aded24SDavid S. Miller 111381aded24SDavid S. Miller dst = ip6_route_output(net, NULL, &fl6); 111481aded24SDavid S. Miller if (!dst->error) 11156700c270SDavid S. Miller ip6_rt_update_pmtu(dst, NULL, skb, ntohl(mtu)); 111681aded24SDavid S. Miller dst_release(dst); 111781aded24SDavid S. Miller } 111881aded24SDavid S. Miller EXPORT_SYMBOL_GPL(ip6_update_pmtu); 111981aded24SDavid S. Miller 112081aded24SDavid S. Miller void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu) 112181aded24SDavid S. Miller { 112281aded24SDavid S. Miller ip6_update_pmtu(skb, sock_net(sk), mtu, 112381aded24SDavid S. Miller sk->sk_bound_dev_if, sk->sk_mark); 112481aded24SDavid S. Miller } 112581aded24SDavid S. Miller EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu); 112681aded24SDavid S. Miller 11273a5ad2eeSDavid S. Miller void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark) 11283a5ad2eeSDavid S. Miller { 11293a5ad2eeSDavid S. Miller const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data; 11303a5ad2eeSDavid S. Miller struct dst_entry *dst; 11313a5ad2eeSDavid S. Miller struct flowi6 fl6; 11323a5ad2eeSDavid S. Miller 11333a5ad2eeSDavid S. Miller memset(&fl6, 0, sizeof(fl6)); 11343a5ad2eeSDavid S. Miller fl6.flowi6_oif = oif; 11353a5ad2eeSDavid S. Miller fl6.flowi6_mark = mark; 11363a5ad2eeSDavid S. Miller fl6.flowi6_flags = 0; 11373a5ad2eeSDavid S. Miller fl6.daddr = iph->daddr; 11383a5ad2eeSDavid S. Miller fl6.saddr = iph->saddr; 11393a5ad2eeSDavid S. Miller fl6.flowlabel = (*(__be32 *) iph) & IPV6_FLOWINFO_MASK; 11403a5ad2eeSDavid S. Miller 11413a5ad2eeSDavid S. Miller dst = ip6_route_output(net, NULL, &fl6); 11423a5ad2eeSDavid S. Miller if (!dst->error) 11436700c270SDavid S. Miller rt6_do_redirect(dst, NULL, skb); 11443a5ad2eeSDavid S. Miller dst_release(dst); 11453a5ad2eeSDavid S. Miller } 11463a5ad2eeSDavid S. Miller EXPORT_SYMBOL_GPL(ip6_redirect); 11473a5ad2eeSDavid S. Miller 11483a5ad2eeSDavid S. Miller void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk) 11493a5ad2eeSDavid S. Miller { 11503a5ad2eeSDavid S. Miller ip6_redirect(skb, sock_net(sk), sk->sk_bound_dev_if, sk->sk_mark); 11513a5ad2eeSDavid S. Miller } 11523a5ad2eeSDavid S. Miller EXPORT_SYMBOL_GPL(ip6_sk_redirect); 11533a5ad2eeSDavid S. Miller 11540dbaee3bSDavid S. Miller static unsigned int ip6_default_advmss(const struct dst_entry *dst) 11551da177e4SLinus Torvalds { 11560dbaee3bSDavid S. Miller struct net_device *dev = dst->dev; 11570dbaee3bSDavid S. Miller unsigned int mtu = dst_mtu(dst); 11580dbaee3bSDavid S. Miller struct net *net = dev_net(dev); 11590dbaee3bSDavid S. Miller 11601da177e4SLinus Torvalds mtu -= sizeof(struct ipv6hdr) + sizeof(struct tcphdr); 11611da177e4SLinus Torvalds 11625578689aSDaniel Lezcano if (mtu < net->ipv6.sysctl.ip6_rt_min_advmss) 11635578689aSDaniel Lezcano mtu = net->ipv6.sysctl.ip6_rt_min_advmss; 11641da177e4SLinus Torvalds 11651da177e4SLinus Torvalds /* 11661da177e4SLinus Torvalds * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and 11671da177e4SLinus Torvalds * corresponding MSS is IPV6_MAXPLEN - tcp_header_size. 11681da177e4SLinus Torvalds * IPV6_MAXPLEN is also valid and means: "any MSS, 11691da177e4SLinus Torvalds * rely only on pmtu discovery" 11701da177e4SLinus Torvalds */ 11711da177e4SLinus Torvalds if (mtu > IPV6_MAXPLEN - sizeof(struct tcphdr)) 11721da177e4SLinus Torvalds mtu = IPV6_MAXPLEN; 11731da177e4SLinus Torvalds return mtu; 11741da177e4SLinus Torvalds } 11751da177e4SLinus Torvalds 1176ebb762f2SSteffen Klassert static unsigned int ip6_mtu(const struct dst_entry *dst) 1177d33e4553SDavid S. Miller { 1178d33e4553SDavid S. Miller struct inet6_dev *idev; 1179618f9bc7SSteffen Klassert unsigned int mtu = dst_metric_raw(dst, RTAX_MTU); 1180618f9bc7SSteffen Klassert 1181618f9bc7SSteffen Klassert if (mtu) 1182618f9bc7SSteffen Klassert return mtu; 1183618f9bc7SSteffen Klassert 1184618f9bc7SSteffen Klassert mtu = IPV6_MIN_MTU; 1185d33e4553SDavid S. Miller 1186d33e4553SDavid S. Miller rcu_read_lock(); 1187d33e4553SDavid S. Miller idev = __in6_dev_get(dst->dev); 1188d33e4553SDavid S. Miller if (idev) 1189d33e4553SDavid S. Miller mtu = idev->cnf.mtu6; 1190d33e4553SDavid S. Miller rcu_read_unlock(); 1191d33e4553SDavid S. Miller 1192d33e4553SDavid S. Miller return mtu; 1193d33e4553SDavid S. Miller } 1194d33e4553SDavid S. Miller 11953b00944cSYOSHIFUJI Hideaki static struct dst_entry *icmp6_dst_gc_list; 11963b00944cSYOSHIFUJI Hideaki static DEFINE_SPINLOCK(icmp6_dst_lock); 11975d0bbeebSThomas Graf 11983b00944cSYOSHIFUJI Hideaki struct dst_entry *icmp6_dst_alloc(struct net_device *dev, 11991da177e4SLinus Torvalds struct neighbour *neigh, 120087a11578SDavid S. Miller struct flowi6 *fl6) 12011da177e4SLinus Torvalds { 120287a11578SDavid S. Miller struct dst_entry *dst; 12031da177e4SLinus Torvalds struct rt6_info *rt; 12041da177e4SLinus Torvalds struct inet6_dev *idev = in6_dev_get(dev); 1205c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(dev); 12061da177e4SLinus Torvalds 120738308473SDavid S. Miller if (unlikely(!idev)) 1208122bdf67SEric Dumazet return ERR_PTR(-ENODEV); 12091da177e4SLinus Torvalds 12108b96d22dSDavid S. Miller rt = ip6_dst_alloc(net, dev, 0, NULL); 121138308473SDavid S. Miller if (unlikely(!rt)) { 12121da177e4SLinus Torvalds in6_dev_put(idev); 121387a11578SDavid S. Miller dst = ERR_PTR(-ENOMEM); 12141da177e4SLinus Torvalds goto out; 12151da177e4SLinus Torvalds } 12161da177e4SLinus Torvalds 12171da177e4SLinus Torvalds if (neigh) 12181da177e4SLinus Torvalds neigh_hold(neigh); 121914deae41SDavid S. Miller else { 1220f894cbf8SDavid S. Miller neigh = ip6_neigh_lookup(&rt->dst, NULL, &fl6->daddr); 1221b43faac6SDavid S. Miller if (IS_ERR(neigh)) { 1222252c3d84SRongQing.Li in6_dev_put(idev); 1223b43faac6SDavid S. Miller dst_free(&rt->dst); 1224b43faac6SDavid S. Miller return ERR_CAST(neigh); 1225b43faac6SDavid S. Miller } 122614deae41SDavid S. Miller } 12271da177e4SLinus Torvalds 12288e2ec639SYan, Zheng rt->dst.flags |= DST_HOST; 12298e2ec639SYan, Zheng rt->dst.output = ip6_output; 123097cac082SDavid S. Miller rt->n = neigh; 1231d8d1f30bSChangli Gao atomic_set(&rt->dst.__refcnt, 1); 123287a11578SDavid S. Miller rt->rt6i_dst.addr = fl6->daddr; 12338e2ec639SYan, Zheng rt->rt6i_dst.plen = 128; 12348e2ec639SYan, Zheng rt->rt6i_idev = idev; 1235*14edd87dSLi RongQing dst_metric_set(&rt->dst, RTAX_HOPLIMIT, 0); 12361da177e4SLinus Torvalds 12373b00944cSYOSHIFUJI Hideaki spin_lock_bh(&icmp6_dst_lock); 1238d8d1f30bSChangli Gao rt->dst.next = icmp6_dst_gc_list; 1239d8d1f30bSChangli Gao icmp6_dst_gc_list = &rt->dst; 12403b00944cSYOSHIFUJI Hideaki spin_unlock_bh(&icmp6_dst_lock); 12411da177e4SLinus Torvalds 12425578689aSDaniel Lezcano fib6_force_start_gc(net); 12431da177e4SLinus Torvalds 124487a11578SDavid S. Miller dst = xfrm_lookup(net, &rt->dst, flowi6_to_flowi(fl6), NULL, 0); 124587a11578SDavid S. Miller 12461da177e4SLinus Torvalds out: 124787a11578SDavid S. Miller return dst; 12481da177e4SLinus Torvalds } 12491da177e4SLinus Torvalds 12503d0f24a7SStephen Hemminger int icmp6_dst_gc(void) 12511da177e4SLinus Torvalds { 1252e9476e95SHagen Paul Pfeifer struct dst_entry *dst, **pprev; 12533d0f24a7SStephen Hemminger int more = 0; 12541da177e4SLinus Torvalds 12553b00944cSYOSHIFUJI Hideaki spin_lock_bh(&icmp6_dst_lock); 12563b00944cSYOSHIFUJI Hideaki pprev = &icmp6_dst_gc_list; 12575d0bbeebSThomas Graf 12581da177e4SLinus Torvalds while ((dst = *pprev) != NULL) { 12591da177e4SLinus Torvalds if (!atomic_read(&dst->__refcnt)) { 12601da177e4SLinus Torvalds *pprev = dst->next; 12611da177e4SLinus Torvalds dst_free(dst); 12621da177e4SLinus Torvalds } else { 12631da177e4SLinus Torvalds pprev = &dst->next; 12643d0f24a7SStephen Hemminger ++more; 12651da177e4SLinus Torvalds } 12661da177e4SLinus Torvalds } 12671da177e4SLinus Torvalds 12683b00944cSYOSHIFUJI Hideaki spin_unlock_bh(&icmp6_dst_lock); 12695d0bbeebSThomas Graf 12703d0f24a7SStephen Hemminger return more; 12711da177e4SLinus Torvalds } 12721da177e4SLinus Torvalds 12731e493d19SDavid S. Miller static void icmp6_clean_all(int (*func)(struct rt6_info *rt, void *arg), 12741e493d19SDavid S. Miller void *arg) 12751e493d19SDavid S. Miller { 12761e493d19SDavid S. Miller struct dst_entry *dst, **pprev; 12771e493d19SDavid S. Miller 12781e493d19SDavid S. Miller spin_lock_bh(&icmp6_dst_lock); 12791e493d19SDavid S. Miller pprev = &icmp6_dst_gc_list; 12801e493d19SDavid S. Miller while ((dst = *pprev) != NULL) { 12811e493d19SDavid S. Miller struct rt6_info *rt = (struct rt6_info *) dst; 12821e493d19SDavid S. Miller if (func(rt, arg)) { 12831e493d19SDavid S. Miller *pprev = dst->next; 12841e493d19SDavid S. Miller dst_free(dst); 12851e493d19SDavid S. Miller } else { 12861e493d19SDavid S. Miller pprev = &dst->next; 12871e493d19SDavid S. Miller } 12881e493d19SDavid S. Miller } 12891e493d19SDavid S. Miller spin_unlock_bh(&icmp6_dst_lock); 12901e493d19SDavid S. Miller } 12911e493d19SDavid S. Miller 1292569d3645SDaniel Lezcano static int ip6_dst_gc(struct dst_ops *ops) 12931da177e4SLinus Torvalds { 12941da177e4SLinus Torvalds unsigned long now = jiffies; 129586393e52SAlexey Dobriyan struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops); 12967019b78eSDaniel Lezcano int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval; 12977019b78eSDaniel Lezcano int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size; 12987019b78eSDaniel Lezcano int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity; 12997019b78eSDaniel Lezcano int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout; 13007019b78eSDaniel Lezcano unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc; 1301fc66f95cSEric Dumazet int entries; 13021da177e4SLinus Torvalds 1303fc66f95cSEric Dumazet entries = dst_entries_get_fast(ops); 13047019b78eSDaniel Lezcano if (time_after(rt_last_gc + rt_min_interval, now) && 1305fc66f95cSEric Dumazet entries <= rt_max_size) 13061da177e4SLinus Torvalds goto out; 13071da177e4SLinus Torvalds 13086891a346SBenjamin Thery net->ipv6.ip6_rt_gc_expire++; 13096891a346SBenjamin Thery fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net); 13106891a346SBenjamin Thery net->ipv6.ip6_rt_last_gc = now; 1311fc66f95cSEric Dumazet entries = dst_entries_get_slow(ops); 1312fc66f95cSEric Dumazet if (entries < ops->gc_thresh) 13137019b78eSDaniel Lezcano net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1; 13141da177e4SLinus Torvalds out: 13157019b78eSDaniel Lezcano net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity; 1316fc66f95cSEric Dumazet return entries > rt_max_size; 13171da177e4SLinus Torvalds } 13181da177e4SLinus Torvalds 13191da177e4SLinus Torvalds /* Clean host part of a prefix. Not necessary in radix tree, 13201da177e4SLinus Torvalds but results in cleaner routing tables. 13211da177e4SLinus Torvalds 13221da177e4SLinus Torvalds Remove it only when all the things will work! 13231da177e4SLinus Torvalds */ 13241da177e4SLinus Torvalds 13256b75d090SYOSHIFUJI Hideaki int ip6_dst_hoplimit(struct dst_entry *dst) 13261da177e4SLinus Torvalds { 13275170ae82SDavid S. Miller int hoplimit = dst_metric_raw(dst, RTAX_HOPLIMIT); 1328a02e4b7dSDavid S. Miller if (hoplimit == 0) { 13296b75d090SYOSHIFUJI Hideaki struct net_device *dev = dst->dev; 1330c68f24ccSEric Dumazet struct inet6_dev *idev; 1331c68f24ccSEric Dumazet 1332c68f24ccSEric Dumazet rcu_read_lock(); 1333c68f24ccSEric Dumazet idev = __in6_dev_get(dev); 1334c68f24ccSEric Dumazet if (idev) 13351da177e4SLinus Torvalds hoplimit = idev->cnf.hop_limit; 1336c68f24ccSEric Dumazet else 133753b7997fSYOSHIFUJI Hideaki hoplimit = dev_net(dev)->ipv6.devconf_all->hop_limit; 1338c68f24ccSEric Dumazet rcu_read_unlock(); 13391da177e4SLinus Torvalds } 13401da177e4SLinus Torvalds return hoplimit; 13411da177e4SLinus Torvalds } 1342abbf46aeSDavid S. Miller EXPORT_SYMBOL(ip6_dst_hoplimit); 13431da177e4SLinus Torvalds 13441da177e4SLinus Torvalds /* 13451da177e4SLinus Torvalds * 13461da177e4SLinus Torvalds */ 13471da177e4SLinus Torvalds 134886872cb5SThomas Graf int ip6_route_add(struct fib6_config *cfg) 13491da177e4SLinus Torvalds { 13501da177e4SLinus Torvalds int err; 13515578689aSDaniel Lezcano struct net *net = cfg->fc_nlinfo.nl_net; 13521da177e4SLinus Torvalds struct rt6_info *rt = NULL; 13531da177e4SLinus Torvalds struct net_device *dev = NULL; 13541da177e4SLinus Torvalds struct inet6_dev *idev = NULL; 1355c71099acSThomas Graf struct fib6_table *table; 13561da177e4SLinus Torvalds int addr_type; 13571da177e4SLinus Torvalds 135886872cb5SThomas Graf if (cfg->fc_dst_len > 128 || cfg->fc_src_len > 128) 13591da177e4SLinus Torvalds return -EINVAL; 13601da177e4SLinus Torvalds #ifndef CONFIG_IPV6_SUBTREES 136186872cb5SThomas Graf if (cfg->fc_src_len) 13621da177e4SLinus Torvalds return -EINVAL; 13631da177e4SLinus Torvalds #endif 136486872cb5SThomas Graf if (cfg->fc_ifindex) { 13651da177e4SLinus Torvalds err = -ENODEV; 13665578689aSDaniel Lezcano dev = dev_get_by_index(net, cfg->fc_ifindex); 13671da177e4SLinus Torvalds if (!dev) 13681da177e4SLinus Torvalds goto out; 13691da177e4SLinus Torvalds idev = in6_dev_get(dev); 13701da177e4SLinus Torvalds if (!idev) 13711da177e4SLinus Torvalds goto out; 13721da177e4SLinus Torvalds } 13731da177e4SLinus Torvalds 137486872cb5SThomas Graf if (cfg->fc_metric == 0) 137586872cb5SThomas Graf cfg->fc_metric = IP6_RT_PRIO_USER; 13761da177e4SLinus Torvalds 1377c71099acSThomas Graf err = -ENOBUFS; 137838308473SDavid S. Miller if (cfg->fc_nlinfo.nlh && 1379d71314b4SMatti Vaittinen !(cfg->fc_nlinfo.nlh->nlmsg_flags & NLM_F_CREATE)) { 1380d71314b4SMatti Vaittinen table = fib6_get_table(net, cfg->fc_table); 138138308473SDavid S. Miller if (!table) { 1382f3213831SJoe Perches pr_warn("NLM_F_CREATE should be specified when creating new route\n"); 1383d71314b4SMatti Vaittinen table = fib6_new_table(net, cfg->fc_table); 1384d71314b4SMatti Vaittinen } 1385d71314b4SMatti Vaittinen } else { 1386d71314b4SMatti Vaittinen table = fib6_new_table(net, cfg->fc_table); 1387d71314b4SMatti Vaittinen } 138838308473SDavid S. Miller 138938308473SDavid S. Miller if (!table) 1390c71099acSThomas Graf goto out; 1391c71099acSThomas Graf 13928b96d22dSDavid S. Miller rt = ip6_dst_alloc(net, NULL, DST_NOCOUNT, table); 13931da177e4SLinus Torvalds 139438308473SDavid S. Miller if (!rt) { 13951da177e4SLinus Torvalds err = -ENOMEM; 13961da177e4SLinus Torvalds goto out; 13971da177e4SLinus Torvalds } 13981da177e4SLinus Torvalds 13991716a961SGao feng if (cfg->fc_flags & RTF_EXPIRES) 14001716a961SGao feng rt6_set_expires(rt, jiffies + 14011716a961SGao feng clock_t_to_jiffies(cfg->fc_expires)); 14021716a961SGao feng else 14031716a961SGao feng rt6_clean_expires(rt); 14041da177e4SLinus Torvalds 140586872cb5SThomas Graf if (cfg->fc_protocol == RTPROT_UNSPEC) 140686872cb5SThomas Graf cfg->fc_protocol = RTPROT_BOOT; 140786872cb5SThomas Graf rt->rt6i_protocol = cfg->fc_protocol; 140886872cb5SThomas Graf 140986872cb5SThomas Graf addr_type = ipv6_addr_type(&cfg->fc_dst); 14101da177e4SLinus Torvalds 14111da177e4SLinus Torvalds if (addr_type & IPV6_ADDR_MULTICAST) 1412d8d1f30bSChangli Gao rt->dst.input = ip6_mc_input; 1413ab79ad14SMaciej Żenczykowski else if (cfg->fc_flags & RTF_LOCAL) 1414ab79ad14SMaciej Żenczykowski rt->dst.input = ip6_input; 14151da177e4SLinus Torvalds else 1416d8d1f30bSChangli Gao rt->dst.input = ip6_forward; 14171da177e4SLinus Torvalds 1418d8d1f30bSChangli Gao rt->dst.output = ip6_output; 14191da177e4SLinus Torvalds 142086872cb5SThomas Graf ipv6_addr_prefix(&rt->rt6i_dst.addr, &cfg->fc_dst, cfg->fc_dst_len); 142186872cb5SThomas Graf rt->rt6i_dst.plen = cfg->fc_dst_len; 14221da177e4SLinus Torvalds if (rt->rt6i_dst.plen == 128) 142311d53b49SDavid S. Miller rt->dst.flags |= DST_HOST; 14241da177e4SLinus Torvalds 14258e2ec639SYan, Zheng if (!(rt->dst.flags & DST_HOST) && cfg->fc_mx) { 14268e2ec639SYan, Zheng u32 *metrics = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL); 14278e2ec639SYan, Zheng if (!metrics) { 14288e2ec639SYan, Zheng err = -ENOMEM; 14298e2ec639SYan, Zheng goto out; 14308e2ec639SYan, Zheng } 14318e2ec639SYan, Zheng dst_init_metrics(&rt->dst, metrics, 0); 14328e2ec639SYan, Zheng } 14331da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES 143486872cb5SThomas Graf ipv6_addr_prefix(&rt->rt6i_src.addr, &cfg->fc_src, cfg->fc_src_len); 143586872cb5SThomas Graf rt->rt6i_src.plen = cfg->fc_src_len; 14361da177e4SLinus Torvalds #endif 14371da177e4SLinus Torvalds 143886872cb5SThomas Graf rt->rt6i_metric = cfg->fc_metric; 14391da177e4SLinus Torvalds 14401da177e4SLinus Torvalds /* We cannot add true routes via loopback here, 14411da177e4SLinus Torvalds they would result in kernel looping; promote them to reject routes 14421da177e4SLinus Torvalds */ 144386872cb5SThomas Graf if ((cfg->fc_flags & RTF_REJECT) || 144438308473SDavid S. Miller (dev && (dev->flags & IFF_LOOPBACK) && 144538308473SDavid S. Miller !(addr_type & IPV6_ADDR_LOOPBACK) && 144638308473SDavid S. Miller !(cfg->fc_flags & RTF_LOCAL))) { 14471da177e4SLinus Torvalds /* hold loopback dev/idev if we haven't done so. */ 14485578689aSDaniel Lezcano if (dev != net->loopback_dev) { 14491da177e4SLinus Torvalds if (dev) { 14501da177e4SLinus Torvalds dev_put(dev); 14511da177e4SLinus Torvalds in6_dev_put(idev); 14521da177e4SLinus Torvalds } 14535578689aSDaniel Lezcano dev = net->loopback_dev; 14541da177e4SLinus Torvalds dev_hold(dev); 14551da177e4SLinus Torvalds idev = in6_dev_get(dev); 14561da177e4SLinus Torvalds if (!idev) { 14571da177e4SLinus Torvalds err = -ENODEV; 14581da177e4SLinus Torvalds goto out; 14591da177e4SLinus Torvalds } 14601da177e4SLinus Torvalds } 1461d8d1f30bSChangli Gao rt->dst.output = ip6_pkt_discard_out; 1462d8d1f30bSChangli Gao rt->dst.input = ip6_pkt_discard; 14631da177e4SLinus Torvalds rt->rt6i_flags = RTF_REJECT|RTF_NONEXTHOP; 1464ef2c7d7bSNicolas Dichtel switch (cfg->fc_type) { 1465ef2c7d7bSNicolas Dichtel case RTN_BLACKHOLE: 1466ef2c7d7bSNicolas Dichtel rt->dst.error = -EINVAL; 1467ef2c7d7bSNicolas Dichtel break; 1468ef2c7d7bSNicolas Dichtel case RTN_PROHIBIT: 1469ef2c7d7bSNicolas Dichtel rt->dst.error = -EACCES; 1470ef2c7d7bSNicolas Dichtel break; 1471b4949ab2SNicolas Dichtel case RTN_THROW: 1472b4949ab2SNicolas Dichtel rt->dst.error = -EAGAIN; 1473b4949ab2SNicolas Dichtel break; 1474ef2c7d7bSNicolas Dichtel default: 1475ef2c7d7bSNicolas Dichtel rt->dst.error = -ENETUNREACH; 1476ef2c7d7bSNicolas Dichtel break; 1477ef2c7d7bSNicolas Dichtel } 14781da177e4SLinus Torvalds goto install_route; 14791da177e4SLinus Torvalds } 14801da177e4SLinus Torvalds 148186872cb5SThomas Graf if (cfg->fc_flags & RTF_GATEWAY) { 1482b71d1d42SEric Dumazet const struct in6_addr *gw_addr; 14831da177e4SLinus Torvalds int gwa_type; 14841da177e4SLinus Torvalds 148586872cb5SThomas Graf gw_addr = &cfg->fc_gateway; 14864e3fd7a0SAlexey Dobriyan rt->rt6i_gateway = *gw_addr; 14871da177e4SLinus Torvalds gwa_type = ipv6_addr_type(gw_addr); 14881da177e4SLinus Torvalds 14891da177e4SLinus Torvalds if (gwa_type != (IPV6_ADDR_LINKLOCAL|IPV6_ADDR_UNICAST)) { 14901da177e4SLinus Torvalds struct rt6_info *grt; 14911da177e4SLinus Torvalds 14921da177e4SLinus Torvalds /* IPv6 strictly inhibits using not link-local 14931da177e4SLinus Torvalds addresses as nexthop address. 14941da177e4SLinus Torvalds Otherwise, router will not able to send redirects. 14951da177e4SLinus Torvalds It is very good, but in some (rare!) circumstances 14961da177e4SLinus Torvalds (SIT, PtP, NBMA NOARP links) it is handy to allow 14971da177e4SLinus Torvalds some exceptions. --ANK 14981da177e4SLinus Torvalds */ 14991da177e4SLinus Torvalds err = -EINVAL; 15001da177e4SLinus Torvalds if (!(gwa_type & IPV6_ADDR_UNICAST)) 15011da177e4SLinus Torvalds goto out; 15021da177e4SLinus Torvalds 15035578689aSDaniel Lezcano grt = rt6_lookup(net, gw_addr, NULL, cfg->fc_ifindex, 1); 15041da177e4SLinus Torvalds 15051da177e4SLinus Torvalds err = -EHOSTUNREACH; 150638308473SDavid S. Miller if (!grt) 15071da177e4SLinus Torvalds goto out; 15081da177e4SLinus Torvalds if (dev) { 1509d1918542SDavid S. Miller if (dev != grt->dst.dev) { 1510d8d1f30bSChangli Gao dst_release(&grt->dst); 15111da177e4SLinus Torvalds goto out; 15121da177e4SLinus Torvalds } 15131da177e4SLinus Torvalds } else { 1514d1918542SDavid S. Miller dev = grt->dst.dev; 15151da177e4SLinus Torvalds idev = grt->rt6i_idev; 15161da177e4SLinus Torvalds dev_hold(dev); 15171da177e4SLinus Torvalds in6_dev_hold(grt->rt6i_idev); 15181da177e4SLinus Torvalds } 15191da177e4SLinus Torvalds if (!(grt->rt6i_flags & RTF_GATEWAY)) 15201da177e4SLinus Torvalds err = 0; 1521d8d1f30bSChangli Gao dst_release(&grt->dst); 15221da177e4SLinus Torvalds 15231da177e4SLinus Torvalds if (err) 15241da177e4SLinus Torvalds goto out; 15251da177e4SLinus Torvalds } 15261da177e4SLinus Torvalds err = -EINVAL; 152738308473SDavid S. Miller if (!dev || (dev->flags & IFF_LOOPBACK)) 15281da177e4SLinus Torvalds goto out; 15291da177e4SLinus Torvalds } 15301da177e4SLinus Torvalds 15311da177e4SLinus Torvalds err = -ENODEV; 153238308473SDavid S. Miller if (!dev) 15331da177e4SLinus Torvalds goto out; 15341da177e4SLinus Torvalds 1535c3968a85SDaniel Walter if (!ipv6_addr_any(&cfg->fc_prefsrc)) { 1536c3968a85SDaniel Walter if (!ipv6_chk_addr(net, &cfg->fc_prefsrc, dev, 0)) { 1537c3968a85SDaniel Walter err = -EINVAL; 1538c3968a85SDaniel Walter goto out; 1539c3968a85SDaniel Walter } 15404e3fd7a0SAlexey Dobriyan rt->rt6i_prefsrc.addr = cfg->fc_prefsrc; 1541c3968a85SDaniel Walter rt->rt6i_prefsrc.plen = 128; 1542c3968a85SDaniel Walter } else 1543c3968a85SDaniel Walter rt->rt6i_prefsrc.plen = 0; 1544c3968a85SDaniel Walter 154586872cb5SThomas Graf if (cfg->fc_flags & (RTF_GATEWAY | RTF_NONEXTHOP)) { 15468ade06c6SDavid S. Miller err = rt6_bind_neighbour(rt, dev); 1547f83c7790SDavid S. Miller if (err) 15481da177e4SLinus Torvalds goto out; 15491da177e4SLinus Torvalds } 15501da177e4SLinus Torvalds 155186872cb5SThomas Graf rt->rt6i_flags = cfg->fc_flags; 15521da177e4SLinus Torvalds 15531da177e4SLinus Torvalds install_route: 155486872cb5SThomas Graf if (cfg->fc_mx) { 155586872cb5SThomas Graf struct nlattr *nla; 155686872cb5SThomas Graf int remaining; 15571da177e4SLinus Torvalds 155886872cb5SThomas Graf nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) { 15598f4c1f9bSThomas Graf int type = nla_type(nla); 156086872cb5SThomas Graf 156186872cb5SThomas Graf if (type) { 156286872cb5SThomas Graf if (type > RTAX_MAX) { 15631da177e4SLinus Torvalds err = -EINVAL; 15641da177e4SLinus Torvalds goto out; 15651da177e4SLinus Torvalds } 156686872cb5SThomas Graf 1567defb3519SDavid S. Miller dst_metric_set(&rt->dst, type, nla_get_u32(nla)); 15681da177e4SLinus Torvalds } 15691da177e4SLinus Torvalds } 15701da177e4SLinus Torvalds } 15711da177e4SLinus Torvalds 1572d8d1f30bSChangli Gao rt->dst.dev = dev; 15731da177e4SLinus Torvalds rt->rt6i_idev = idev; 1574c71099acSThomas Graf rt->rt6i_table = table; 157563152fc0SDaniel Lezcano 1576c346dca1SYOSHIFUJI Hideaki cfg->fc_nlinfo.nl_net = dev_net(dev); 157763152fc0SDaniel Lezcano 157886872cb5SThomas Graf return __ip6_ins_rt(rt, &cfg->fc_nlinfo); 15791da177e4SLinus Torvalds 15801da177e4SLinus Torvalds out: 15811da177e4SLinus Torvalds if (dev) 15821da177e4SLinus Torvalds dev_put(dev); 15831da177e4SLinus Torvalds if (idev) 15841da177e4SLinus Torvalds in6_dev_put(idev); 15851da177e4SLinus Torvalds if (rt) 1586d8d1f30bSChangli Gao dst_free(&rt->dst); 15871da177e4SLinus Torvalds return err; 15881da177e4SLinus Torvalds } 15891da177e4SLinus Torvalds 159086872cb5SThomas Graf static int __ip6_del_rt(struct rt6_info *rt, struct nl_info *info) 15911da177e4SLinus Torvalds { 15921da177e4SLinus Torvalds int err; 1593c71099acSThomas Graf struct fib6_table *table; 1594d1918542SDavid S. Miller struct net *net = dev_net(rt->dst.dev); 15951da177e4SLinus Torvalds 15966825a26cSGao feng if (rt == net->ipv6.ip6_null_entry) { 15976825a26cSGao feng err = -ENOENT; 15986825a26cSGao feng goto out; 15996825a26cSGao feng } 16006c813a72SPatrick McHardy 1601c71099acSThomas Graf table = rt->rt6i_table; 1602c71099acSThomas Graf write_lock_bh(&table->tb6_lock); 160386872cb5SThomas Graf err = fib6_del(rt, info); 1604c71099acSThomas Graf write_unlock_bh(&table->tb6_lock); 16051da177e4SLinus Torvalds 16066825a26cSGao feng out: 16076825a26cSGao feng dst_release(&rt->dst); 16081da177e4SLinus Torvalds return err; 16091da177e4SLinus Torvalds } 16101da177e4SLinus Torvalds 1611e0a1ad73SThomas Graf int ip6_del_rt(struct rt6_info *rt) 1612e0a1ad73SThomas Graf { 16134d1169c1SDenis V. Lunev struct nl_info info = { 1614d1918542SDavid S. Miller .nl_net = dev_net(rt->dst.dev), 16154d1169c1SDenis V. Lunev }; 1616528c4cebSDenis V. Lunev return __ip6_del_rt(rt, &info); 1617e0a1ad73SThomas Graf } 1618e0a1ad73SThomas Graf 161986872cb5SThomas Graf static int ip6_route_del(struct fib6_config *cfg) 16201da177e4SLinus Torvalds { 1621c71099acSThomas Graf struct fib6_table *table; 16221da177e4SLinus Torvalds struct fib6_node *fn; 16231da177e4SLinus Torvalds struct rt6_info *rt; 16241da177e4SLinus Torvalds int err = -ESRCH; 16251da177e4SLinus Torvalds 16265578689aSDaniel Lezcano table = fib6_get_table(cfg->fc_nlinfo.nl_net, cfg->fc_table); 162738308473SDavid S. Miller if (!table) 1628c71099acSThomas Graf return err; 16291da177e4SLinus Torvalds 1630c71099acSThomas Graf read_lock_bh(&table->tb6_lock); 1631c71099acSThomas Graf 1632c71099acSThomas Graf fn = fib6_locate(&table->tb6_root, 163386872cb5SThomas Graf &cfg->fc_dst, cfg->fc_dst_len, 163486872cb5SThomas Graf &cfg->fc_src, cfg->fc_src_len); 16351da177e4SLinus Torvalds 16361da177e4SLinus Torvalds if (fn) { 1637d8d1f30bSChangli Gao for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) { 163886872cb5SThomas Graf if (cfg->fc_ifindex && 1639d1918542SDavid S. Miller (!rt->dst.dev || 1640d1918542SDavid S. Miller rt->dst.dev->ifindex != cfg->fc_ifindex)) 16411da177e4SLinus Torvalds continue; 164286872cb5SThomas Graf if (cfg->fc_flags & RTF_GATEWAY && 164386872cb5SThomas Graf !ipv6_addr_equal(&cfg->fc_gateway, &rt->rt6i_gateway)) 16441da177e4SLinus Torvalds continue; 164586872cb5SThomas Graf if (cfg->fc_metric && cfg->fc_metric != rt->rt6i_metric) 16461da177e4SLinus Torvalds continue; 1647d8d1f30bSChangli Gao dst_hold(&rt->dst); 1648c71099acSThomas Graf read_unlock_bh(&table->tb6_lock); 16491da177e4SLinus Torvalds 165086872cb5SThomas Graf return __ip6_del_rt(rt, &cfg->fc_nlinfo); 16511da177e4SLinus Torvalds } 16521da177e4SLinus Torvalds } 1653c71099acSThomas Graf read_unlock_bh(&table->tb6_lock); 16541da177e4SLinus Torvalds 16551da177e4SLinus Torvalds return err; 16561da177e4SLinus Torvalds } 16571da177e4SLinus Torvalds 16586700c270SDavid S. Miller static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb) 1659a6279458SYOSHIFUJI Hideaki { 1660e8599ff4SDavid S. Miller struct net *net = dev_net(skb->dev); 1661a6279458SYOSHIFUJI Hideaki struct netevent_redirect netevent; 1662e8599ff4SDavid S. Miller struct rt6_info *rt, *nrt = NULL; 1663e8599ff4SDavid S. Miller const struct in6_addr *target; 1664e8599ff4SDavid S. Miller struct ndisc_options ndopts; 16656e157b6aSDavid S. Miller const struct in6_addr *dest; 16666e157b6aSDavid S. Miller struct neighbour *old_neigh; 1667e8599ff4SDavid S. Miller struct inet6_dev *in6_dev; 1668e8599ff4SDavid S. Miller struct neighbour *neigh; 1669e8599ff4SDavid S. Miller struct icmp6hdr *icmph; 16706e157b6aSDavid S. Miller int optlen, on_link; 16716e157b6aSDavid S. Miller u8 *lladdr; 1672e8599ff4SDavid S. Miller 1673e8599ff4SDavid S. Miller optlen = skb->tail - skb->transport_header; 1674e8599ff4SDavid S. Miller optlen -= sizeof(struct icmp6hdr) + 2 * sizeof(struct in6_addr); 1675e8599ff4SDavid S. Miller 1676e8599ff4SDavid S. Miller if (optlen < 0) { 16776e157b6aSDavid S. Miller net_dbg_ratelimited("rt6_do_redirect: packet too short\n"); 1678e8599ff4SDavid S. Miller return; 1679e8599ff4SDavid S. Miller } 1680e8599ff4SDavid S. Miller 1681e8599ff4SDavid S. Miller icmph = icmp6_hdr(skb); 1682e8599ff4SDavid S. Miller target = (const struct in6_addr *) (icmph + 1); 1683e8599ff4SDavid S. Miller dest = target + 1; 1684e8599ff4SDavid S. Miller 1685e8599ff4SDavid S. Miller if (ipv6_addr_is_multicast(dest)) { 16866e157b6aSDavid S. Miller net_dbg_ratelimited("rt6_do_redirect: destination address is multicast\n"); 1687e8599ff4SDavid S. Miller return; 1688e8599ff4SDavid S. Miller } 1689e8599ff4SDavid S. Miller 16906e157b6aSDavid S. Miller on_link = 0; 1691e8599ff4SDavid S. Miller if (ipv6_addr_equal(dest, target)) { 1692e8599ff4SDavid S. Miller on_link = 1; 1693e8599ff4SDavid S. Miller } else if (ipv6_addr_type(target) != 1694e8599ff4SDavid S. Miller (IPV6_ADDR_UNICAST|IPV6_ADDR_LINKLOCAL)) { 16956e157b6aSDavid S. Miller net_dbg_ratelimited("rt6_do_redirect: target address is not link-local unicast\n"); 1696e8599ff4SDavid S. Miller return; 1697e8599ff4SDavid S. Miller } 1698e8599ff4SDavid S. Miller 1699e8599ff4SDavid S. Miller in6_dev = __in6_dev_get(skb->dev); 1700e8599ff4SDavid S. Miller if (!in6_dev) 1701e8599ff4SDavid S. Miller return; 1702e8599ff4SDavid S. Miller if (in6_dev->cnf.forwarding || !in6_dev->cnf.accept_redirects) 1703e8599ff4SDavid S. Miller return; 1704e8599ff4SDavid S. Miller 1705e8599ff4SDavid S. Miller /* RFC2461 8.1: 1706e8599ff4SDavid S. Miller * The IP source address of the Redirect MUST be the same as the current 1707e8599ff4SDavid S. Miller * first-hop router for the specified ICMP Destination Address. 1708e8599ff4SDavid S. Miller */ 1709e8599ff4SDavid S. Miller 1710e8599ff4SDavid S. Miller if (!ndisc_parse_options((u8*)(dest + 1), optlen, &ndopts)) { 1711e8599ff4SDavid S. Miller net_dbg_ratelimited("rt6_redirect: invalid ND options\n"); 1712e8599ff4SDavid S. Miller return; 1713e8599ff4SDavid S. Miller } 17146e157b6aSDavid S. Miller 17156e157b6aSDavid S. Miller lladdr = NULL; 1716e8599ff4SDavid S. Miller if (ndopts.nd_opts_tgt_lladdr) { 1717e8599ff4SDavid S. Miller lladdr = ndisc_opt_addr_data(ndopts.nd_opts_tgt_lladdr, 1718e8599ff4SDavid S. Miller skb->dev); 1719e8599ff4SDavid S. Miller if (!lladdr) { 1720e8599ff4SDavid S. Miller net_dbg_ratelimited("rt6_redirect: invalid link-layer address length\n"); 1721e8599ff4SDavid S. Miller return; 1722e8599ff4SDavid S. Miller } 1723e8599ff4SDavid S. Miller } 1724e8599ff4SDavid S. Miller 17256e157b6aSDavid S. Miller rt = (struct rt6_info *) dst; 17266e157b6aSDavid S. Miller if (rt == net->ipv6.ip6_null_entry) { 17276e157b6aSDavid S. Miller net_dbg_ratelimited("rt6_redirect: source isn't a valid nexthop for redirect target\n"); 17286e157b6aSDavid S. Miller return; 17296e157b6aSDavid S. Miller } 17306e157b6aSDavid S. Miller 17316e157b6aSDavid S. Miller /* Redirect received -> path was valid. 17326e157b6aSDavid S. Miller * Look, redirects are sent only in response to data packets, 17336e157b6aSDavid S. Miller * so that this nexthop apparently is reachable. --ANK 17346e157b6aSDavid S. Miller */ 17356e157b6aSDavid S. Miller dst_confirm(&rt->dst); 17366e157b6aSDavid S. Miller 1737e8599ff4SDavid S. Miller neigh = __neigh_lookup(&nd_tbl, target, skb->dev, 1); 1738e8599ff4SDavid S. Miller if (!neigh) 1739e8599ff4SDavid S. Miller return; 1740e8599ff4SDavid S. Miller 17416e157b6aSDavid S. Miller /* Duplicate redirect: silently ignore. */ 17426e157b6aSDavid S. Miller old_neigh = rt->n; 17436e157b6aSDavid S. Miller if (neigh == old_neigh) 1744a6279458SYOSHIFUJI Hideaki goto out; 17451da177e4SLinus Torvalds 17461da177e4SLinus Torvalds /* 17471da177e4SLinus Torvalds * We have finally decided to accept it. 17481da177e4SLinus Torvalds */ 17491da177e4SLinus Torvalds 17501da177e4SLinus Torvalds neigh_update(neigh, lladdr, NUD_STALE, 17511da177e4SLinus Torvalds NEIGH_UPDATE_F_WEAK_OVERRIDE| 17521da177e4SLinus Torvalds NEIGH_UPDATE_F_OVERRIDE| 17531da177e4SLinus Torvalds (on_link ? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER| 17541da177e4SLinus Torvalds NEIGH_UPDATE_F_ISROUTER)) 17551da177e4SLinus Torvalds ); 17561da177e4SLinus Torvalds 175721efcfa0SEric Dumazet nrt = ip6_rt_copy(rt, dest); 175838308473SDavid S. Miller if (!nrt) 17591da177e4SLinus Torvalds goto out; 17601da177e4SLinus Torvalds 17611da177e4SLinus Torvalds nrt->rt6i_flags = RTF_GATEWAY|RTF_UP|RTF_DYNAMIC|RTF_CACHE; 17621da177e4SLinus Torvalds if (on_link) 17631da177e4SLinus Torvalds nrt->rt6i_flags &= ~RTF_GATEWAY; 17641da177e4SLinus Torvalds 17654e3fd7a0SAlexey Dobriyan nrt->rt6i_gateway = *(struct in6_addr *)neigh->primary_key; 176697cac082SDavid S. Miller nrt->n = neigh_clone(neigh); 17671da177e4SLinus Torvalds 176840e22e8fSThomas Graf if (ip6_ins_rt(nrt)) 17691da177e4SLinus Torvalds goto out; 17701da177e4SLinus Torvalds 1771d8d1f30bSChangli Gao netevent.old = &rt->dst; 17721d248b1cSDavid S. Miller netevent.old_neigh = old_neigh; 1773d8d1f30bSChangli Gao netevent.new = &nrt->dst; 17741d248b1cSDavid S. Miller netevent.new_neigh = neigh; 17751d248b1cSDavid S. Miller netevent.daddr = dest; 17768d71740cSTom Tucker call_netevent_notifiers(NETEVENT_REDIRECT, &netevent); 17778d71740cSTom Tucker 17781da177e4SLinus Torvalds if (rt->rt6i_flags & RTF_CACHE) { 17796e157b6aSDavid S. Miller rt = (struct rt6_info *) dst_clone(&rt->dst); 1780e0a1ad73SThomas Graf ip6_del_rt(rt); 17811da177e4SLinus Torvalds } 17821da177e4SLinus Torvalds 17831da177e4SLinus Torvalds out: 1784e8599ff4SDavid S. Miller neigh_release(neigh); 17856e157b6aSDavid S. Miller } 17866e157b6aSDavid S. Miller 17871da177e4SLinus Torvalds /* 17881da177e4SLinus Torvalds * Misc support functions 17891da177e4SLinus Torvalds */ 17901da177e4SLinus Torvalds 17911716a961SGao feng static struct rt6_info *ip6_rt_copy(struct rt6_info *ort, 179221efcfa0SEric Dumazet const struct in6_addr *dest) 17931da177e4SLinus Torvalds { 1794d1918542SDavid S. Miller struct net *net = dev_net(ort->dst.dev); 17958b96d22dSDavid S. Miller struct rt6_info *rt = ip6_dst_alloc(net, ort->dst.dev, 0, 17968b96d22dSDavid S. Miller ort->rt6i_table); 17971da177e4SLinus Torvalds 17981da177e4SLinus Torvalds if (rt) { 1799d8d1f30bSChangli Gao rt->dst.input = ort->dst.input; 1800d8d1f30bSChangli Gao rt->dst.output = ort->dst.output; 18018e2ec639SYan, Zheng rt->dst.flags |= DST_HOST; 18021da177e4SLinus Torvalds 18034e3fd7a0SAlexey Dobriyan rt->rt6i_dst.addr = *dest; 18048e2ec639SYan, Zheng rt->rt6i_dst.plen = 128; 1805defb3519SDavid S. Miller dst_copy_metrics(&rt->dst, &ort->dst); 1806d8d1f30bSChangli Gao rt->dst.error = ort->dst.error; 18071da177e4SLinus Torvalds rt->rt6i_idev = ort->rt6i_idev; 18081da177e4SLinus Torvalds if (rt->rt6i_idev) 18091da177e4SLinus Torvalds in6_dev_hold(rt->rt6i_idev); 1810d8d1f30bSChangli Gao rt->dst.lastuse = jiffies; 18111da177e4SLinus Torvalds 18124e3fd7a0SAlexey Dobriyan rt->rt6i_gateway = ort->rt6i_gateway; 18131716a961SGao feng rt->rt6i_flags = ort->rt6i_flags; 18141716a961SGao feng if ((ort->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) == 18151716a961SGao feng (RTF_DEFAULT | RTF_ADDRCONF)) 18161716a961SGao feng rt6_set_from(rt, ort); 18171716a961SGao feng else 18181716a961SGao feng rt6_clean_expires(rt); 18191da177e4SLinus Torvalds rt->rt6i_metric = 0; 18201da177e4SLinus Torvalds 18211da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES 18221da177e4SLinus Torvalds memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key)); 18231da177e4SLinus Torvalds #endif 18240f6c6392SFlorian Westphal memcpy(&rt->rt6i_prefsrc, &ort->rt6i_prefsrc, sizeof(struct rt6key)); 1825c71099acSThomas Graf rt->rt6i_table = ort->rt6i_table; 18261da177e4SLinus Torvalds } 18271da177e4SLinus Torvalds return rt; 18281da177e4SLinus Torvalds } 18291da177e4SLinus Torvalds 183070ceb4f5SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_ROUTE_INFO 1831efa2cea0SDaniel Lezcano static struct rt6_info *rt6_get_route_info(struct net *net, 1832b71d1d42SEric Dumazet const struct in6_addr *prefix, int prefixlen, 1833b71d1d42SEric Dumazet const struct in6_addr *gwaddr, int ifindex) 183470ceb4f5SYOSHIFUJI Hideaki { 183570ceb4f5SYOSHIFUJI Hideaki struct fib6_node *fn; 183670ceb4f5SYOSHIFUJI Hideaki struct rt6_info *rt = NULL; 1837c71099acSThomas Graf struct fib6_table *table; 183870ceb4f5SYOSHIFUJI Hideaki 1839efa2cea0SDaniel Lezcano table = fib6_get_table(net, RT6_TABLE_INFO); 184038308473SDavid S. Miller if (!table) 1841c71099acSThomas Graf return NULL; 1842c71099acSThomas Graf 18435744dd9bSLi RongQing read_lock_bh(&table->tb6_lock); 1844c71099acSThomas Graf fn = fib6_locate(&table->tb6_root, prefix ,prefixlen, NULL, 0); 184570ceb4f5SYOSHIFUJI Hideaki if (!fn) 184670ceb4f5SYOSHIFUJI Hideaki goto out; 184770ceb4f5SYOSHIFUJI Hideaki 1848d8d1f30bSChangli Gao for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) { 1849d1918542SDavid S. Miller if (rt->dst.dev->ifindex != ifindex) 185070ceb4f5SYOSHIFUJI Hideaki continue; 185170ceb4f5SYOSHIFUJI Hideaki if ((rt->rt6i_flags & (RTF_ROUTEINFO|RTF_GATEWAY)) != (RTF_ROUTEINFO|RTF_GATEWAY)) 185270ceb4f5SYOSHIFUJI Hideaki continue; 185370ceb4f5SYOSHIFUJI Hideaki if (!ipv6_addr_equal(&rt->rt6i_gateway, gwaddr)) 185470ceb4f5SYOSHIFUJI Hideaki continue; 1855d8d1f30bSChangli Gao dst_hold(&rt->dst); 185670ceb4f5SYOSHIFUJI Hideaki break; 185770ceb4f5SYOSHIFUJI Hideaki } 185870ceb4f5SYOSHIFUJI Hideaki out: 18595744dd9bSLi RongQing read_unlock_bh(&table->tb6_lock); 186070ceb4f5SYOSHIFUJI Hideaki return rt; 186170ceb4f5SYOSHIFUJI Hideaki } 186270ceb4f5SYOSHIFUJI Hideaki 1863efa2cea0SDaniel Lezcano static struct rt6_info *rt6_add_route_info(struct net *net, 1864b71d1d42SEric Dumazet const struct in6_addr *prefix, int prefixlen, 1865b71d1d42SEric Dumazet const struct in6_addr *gwaddr, int ifindex, 186695c96174SEric Dumazet unsigned int pref) 186770ceb4f5SYOSHIFUJI Hideaki { 186886872cb5SThomas Graf struct fib6_config cfg = { 186986872cb5SThomas Graf .fc_table = RT6_TABLE_INFO, 1870238fc7eaSRami Rosen .fc_metric = IP6_RT_PRIO_USER, 187186872cb5SThomas Graf .fc_ifindex = ifindex, 187286872cb5SThomas Graf .fc_dst_len = prefixlen, 187386872cb5SThomas Graf .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO | 187486872cb5SThomas Graf RTF_UP | RTF_PREF(pref), 187515e47304SEric W. Biederman .fc_nlinfo.portid = 0, 1876efa2cea0SDaniel Lezcano .fc_nlinfo.nlh = NULL, 1877efa2cea0SDaniel Lezcano .fc_nlinfo.nl_net = net, 187886872cb5SThomas Graf }; 187970ceb4f5SYOSHIFUJI Hideaki 18804e3fd7a0SAlexey Dobriyan cfg.fc_dst = *prefix; 18814e3fd7a0SAlexey Dobriyan cfg.fc_gateway = *gwaddr; 188286872cb5SThomas Graf 1883e317da96SYOSHIFUJI Hideaki /* We should treat it as a default route if prefix length is 0. */ 1884e317da96SYOSHIFUJI Hideaki if (!prefixlen) 188586872cb5SThomas Graf cfg.fc_flags |= RTF_DEFAULT; 188670ceb4f5SYOSHIFUJI Hideaki 188786872cb5SThomas Graf ip6_route_add(&cfg); 188870ceb4f5SYOSHIFUJI Hideaki 1889efa2cea0SDaniel Lezcano return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex); 189070ceb4f5SYOSHIFUJI Hideaki } 189170ceb4f5SYOSHIFUJI Hideaki #endif 189270ceb4f5SYOSHIFUJI Hideaki 1893b71d1d42SEric Dumazet struct rt6_info *rt6_get_dflt_router(const struct in6_addr *addr, struct net_device *dev) 18941da177e4SLinus Torvalds { 18951da177e4SLinus Torvalds struct rt6_info *rt; 1896c71099acSThomas Graf struct fib6_table *table; 18971da177e4SLinus Torvalds 1898c346dca1SYOSHIFUJI Hideaki table = fib6_get_table(dev_net(dev), RT6_TABLE_DFLT); 189938308473SDavid S. Miller if (!table) 1900c71099acSThomas Graf return NULL; 19011da177e4SLinus Torvalds 19025744dd9bSLi RongQing read_lock_bh(&table->tb6_lock); 1903d8d1f30bSChangli Gao for (rt = table->tb6_root.leaf; rt; rt=rt->dst.rt6_next) { 1904d1918542SDavid S. Miller if (dev == rt->dst.dev && 1905045927ffSYOSHIFUJI Hideaki ((rt->rt6i_flags & (RTF_ADDRCONF | RTF_DEFAULT)) == (RTF_ADDRCONF | RTF_DEFAULT)) && 19061da177e4SLinus Torvalds ipv6_addr_equal(&rt->rt6i_gateway, addr)) 19071da177e4SLinus Torvalds break; 19081da177e4SLinus Torvalds } 19091da177e4SLinus Torvalds if (rt) 1910d8d1f30bSChangli Gao dst_hold(&rt->dst); 19115744dd9bSLi RongQing read_unlock_bh(&table->tb6_lock); 19121da177e4SLinus Torvalds return rt; 19131da177e4SLinus Torvalds } 19141da177e4SLinus Torvalds 1915b71d1d42SEric Dumazet struct rt6_info *rt6_add_dflt_router(const struct in6_addr *gwaddr, 1916ebacaaa0SYOSHIFUJI Hideaki struct net_device *dev, 1917ebacaaa0SYOSHIFUJI Hideaki unsigned int pref) 19181da177e4SLinus Torvalds { 191986872cb5SThomas Graf struct fib6_config cfg = { 192086872cb5SThomas Graf .fc_table = RT6_TABLE_DFLT, 1921238fc7eaSRami Rosen .fc_metric = IP6_RT_PRIO_USER, 192286872cb5SThomas Graf .fc_ifindex = dev->ifindex, 192386872cb5SThomas Graf .fc_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_DEFAULT | 192486872cb5SThomas Graf RTF_UP | RTF_EXPIRES | RTF_PREF(pref), 192515e47304SEric W. Biederman .fc_nlinfo.portid = 0, 19265578689aSDaniel Lezcano .fc_nlinfo.nlh = NULL, 1927c346dca1SYOSHIFUJI Hideaki .fc_nlinfo.nl_net = dev_net(dev), 192886872cb5SThomas Graf }; 19291da177e4SLinus Torvalds 19304e3fd7a0SAlexey Dobriyan cfg.fc_gateway = *gwaddr; 19311da177e4SLinus Torvalds 193286872cb5SThomas Graf ip6_route_add(&cfg); 19331da177e4SLinus Torvalds 19341da177e4SLinus Torvalds return rt6_get_dflt_router(gwaddr, dev); 19351da177e4SLinus Torvalds } 19361da177e4SLinus Torvalds 19377b4da532SDaniel Lezcano void rt6_purge_dflt_routers(struct net *net) 19381da177e4SLinus Torvalds { 19391da177e4SLinus Torvalds struct rt6_info *rt; 1940c71099acSThomas Graf struct fib6_table *table; 1941c71099acSThomas Graf 1942c71099acSThomas Graf /* NOTE: Keep consistent with rt6_get_dflt_router */ 19437b4da532SDaniel Lezcano table = fib6_get_table(net, RT6_TABLE_DFLT); 194438308473SDavid S. Miller if (!table) 1945c71099acSThomas Graf return; 19461da177e4SLinus Torvalds 19471da177e4SLinus Torvalds restart: 1948c71099acSThomas Graf read_lock_bh(&table->tb6_lock); 1949d8d1f30bSChangli Gao for (rt = table->tb6_root.leaf; rt; rt = rt->dst.rt6_next) { 19501da177e4SLinus Torvalds if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ADDRCONF)) { 1951d8d1f30bSChangli Gao dst_hold(&rt->dst); 1952c71099acSThomas Graf read_unlock_bh(&table->tb6_lock); 1953e0a1ad73SThomas Graf ip6_del_rt(rt); 19541da177e4SLinus Torvalds goto restart; 19551da177e4SLinus Torvalds } 19561da177e4SLinus Torvalds } 1957c71099acSThomas Graf read_unlock_bh(&table->tb6_lock); 19581da177e4SLinus Torvalds } 19591da177e4SLinus Torvalds 19605578689aSDaniel Lezcano static void rtmsg_to_fib6_config(struct net *net, 19615578689aSDaniel Lezcano struct in6_rtmsg *rtmsg, 196286872cb5SThomas Graf struct fib6_config *cfg) 196386872cb5SThomas Graf { 196486872cb5SThomas Graf memset(cfg, 0, sizeof(*cfg)); 196586872cb5SThomas Graf 196686872cb5SThomas Graf cfg->fc_table = RT6_TABLE_MAIN; 196786872cb5SThomas Graf cfg->fc_ifindex = rtmsg->rtmsg_ifindex; 196886872cb5SThomas Graf cfg->fc_metric = rtmsg->rtmsg_metric; 196986872cb5SThomas Graf cfg->fc_expires = rtmsg->rtmsg_info; 197086872cb5SThomas Graf cfg->fc_dst_len = rtmsg->rtmsg_dst_len; 197186872cb5SThomas Graf cfg->fc_src_len = rtmsg->rtmsg_src_len; 197286872cb5SThomas Graf cfg->fc_flags = rtmsg->rtmsg_flags; 197386872cb5SThomas Graf 19745578689aSDaniel Lezcano cfg->fc_nlinfo.nl_net = net; 1975f1243c2dSBenjamin Thery 19764e3fd7a0SAlexey Dobriyan cfg->fc_dst = rtmsg->rtmsg_dst; 19774e3fd7a0SAlexey Dobriyan cfg->fc_src = rtmsg->rtmsg_src; 19784e3fd7a0SAlexey Dobriyan cfg->fc_gateway = rtmsg->rtmsg_gateway; 197986872cb5SThomas Graf } 198086872cb5SThomas Graf 19815578689aSDaniel Lezcano int ipv6_route_ioctl(struct net *net, unsigned int cmd, void __user *arg) 19821da177e4SLinus Torvalds { 198386872cb5SThomas Graf struct fib6_config cfg; 19841da177e4SLinus Torvalds struct in6_rtmsg rtmsg; 19851da177e4SLinus Torvalds int err; 19861da177e4SLinus Torvalds 19871da177e4SLinus Torvalds switch(cmd) { 19881da177e4SLinus Torvalds case SIOCADDRT: /* Add a route */ 19891da177e4SLinus Torvalds case SIOCDELRT: /* Delete a route */ 19901da177e4SLinus Torvalds if (!capable(CAP_NET_ADMIN)) 19911da177e4SLinus Torvalds return -EPERM; 19921da177e4SLinus Torvalds err = copy_from_user(&rtmsg, arg, 19931da177e4SLinus Torvalds sizeof(struct in6_rtmsg)); 19941da177e4SLinus Torvalds if (err) 19951da177e4SLinus Torvalds return -EFAULT; 19961da177e4SLinus Torvalds 19975578689aSDaniel Lezcano rtmsg_to_fib6_config(net, &rtmsg, &cfg); 199886872cb5SThomas Graf 19991da177e4SLinus Torvalds rtnl_lock(); 20001da177e4SLinus Torvalds switch (cmd) { 20011da177e4SLinus Torvalds case SIOCADDRT: 200286872cb5SThomas Graf err = ip6_route_add(&cfg); 20031da177e4SLinus Torvalds break; 20041da177e4SLinus Torvalds case SIOCDELRT: 200586872cb5SThomas Graf err = ip6_route_del(&cfg); 20061da177e4SLinus Torvalds break; 20071da177e4SLinus Torvalds default: 20081da177e4SLinus Torvalds err = -EINVAL; 20091da177e4SLinus Torvalds } 20101da177e4SLinus Torvalds rtnl_unlock(); 20111da177e4SLinus Torvalds 20121da177e4SLinus Torvalds return err; 20133ff50b79SStephen Hemminger } 20141da177e4SLinus Torvalds 20151da177e4SLinus Torvalds return -EINVAL; 20161da177e4SLinus Torvalds } 20171da177e4SLinus Torvalds 20181da177e4SLinus Torvalds /* 20191da177e4SLinus Torvalds * Drop the packet on the floor 20201da177e4SLinus Torvalds */ 20211da177e4SLinus Torvalds 2022d5fdd6baSBrian Haley static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes) 20231da177e4SLinus Torvalds { 2024612f09e8SYOSHIFUJI Hideaki int type; 2025adf30907SEric Dumazet struct dst_entry *dst = skb_dst(skb); 2026612f09e8SYOSHIFUJI Hideaki switch (ipstats_mib_noroutes) { 2027612f09e8SYOSHIFUJI Hideaki case IPSTATS_MIB_INNOROUTES: 20280660e03fSArnaldo Carvalho de Melo type = ipv6_addr_type(&ipv6_hdr(skb)->daddr); 202945bb0060SUlrich Weber if (type == IPV6_ADDR_ANY) { 20303bd653c8SDenis V. Lunev IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst), 20313bd653c8SDenis V. Lunev IPSTATS_MIB_INADDRERRORS); 2032612f09e8SYOSHIFUJI Hideaki break; 2033612f09e8SYOSHIFUJI Hideaki } 2034612f09e8SYOSHIFUJI Hideaki /* FALLTHROUGH */ 2035612f09e8SYOSHIFUJI Hideaki case IPSTATS_MIB_OUTNOROUTES: 20363bd653c8SDenis V. Lunev IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst), 20373bd653c8SDenis V. Lunev ipstats_mib_noroutes); 2038612f09e8SYOSHIFUJI Hideaki break; 2039612f09e8SYOSHIFUJI Hideaki } 20403ffe533cSAlexey Dobriyan icmpv6_send(skb, ICMPV6_DEST_UNREACH, code, 0); 20411da177e4SLinus Torvalds kfree_skb(skb); 20421da177e4SLinus Torvalds return 0; 20431da177e4SLinus Torvalds } 20441da177e4SLinus Torvalds 20459ce8ade0SThomas Graf static int ip6_pkt_discard(struct sk_buff *skb) 20469ce8ade0SThomas Graf { 2047612f09e8SYOSHIFUJI Hideaki return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_INNOROUTES); 20489ce8ade0SThomas Graf } 20499ce8ade0SThomas Graf 205020380731SArnaldo Carvalho de Melo static int ip6_pkt_discard_out(struct sk_buff *skb) 20511da177e4SLinus Torvalds { 2052adf30907SEric Dumazet skb->dev = skb_dst(skb)->dev; 2053612f09e8SYOSHIFUJI Hideaki return ip6_pkt_drop(skb, ICMPV6_NOROUTE, IPSTATS_MIB_OUTNOROUTES); 20541da177e4SLinus Torvalds } 20551da177e4SLinus Torvalds 20566723ab54SDavid S. Miller #ifdef CONFIG_IPV6_MULTIPLE_TABLES 20576723ab54SDavid S. Miller 20589ce8ade0SThomas Graf static int ip6_pkt_prohibit(struct sk_buff *skb) 20599ce8ade0SThomas Graf { 2060612f09e8SYOSHIFUJI Hideaki return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_INNOROUTES); 20619ce8ade0SThomas Graf } 20629ce8ade0SThomas Graf 20639ce8ade0SThomas Graf static int ip6_pkt_prohibit_out(struct sk_buff *skb) 20649ce8ade0SThomas Graf { 2065adf30907SEric Dumazet skb->dev = skb_dst(skb)->dev; 2066612f09e8SYOSHIFUJI Hideaki return ip6_pkt_drop(skb, ICMPV6_ADM_PROHIBITED, IPSTATS_MIB_OUTNOROUTES); 20679ce8ade0SThomas Graf } 20689ce8ade0SThomas Graf 20696723ab54SDavid S. Miller #endif 20706723ab54SDavid S. Miller 20711da177e4SLinus Torvalds /* 20721da177e4SLinus Torvalds * Allocate a dst for local (unicast / anycast) address. 20731da177e4SLinus Torvalds */ 20741da177e4SLinus Torvalds 20751da177e4SLinus Torvalds struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev, 20761da177e4SLinus Torvalds const struct in6_addr *addr, 20778f031519SDavid S. Miller bool anycast) 20781da177e4SLinus Torvalds { 2079c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(idev->dev); 20808b96d22dSDavid S. Miller struct rt6_info *rt = ip6_dst_alloc(net, net->loopback_dev, 0, NULL); 2081f83c7790SDavid S. Miller int err; 20821da177e4SLinus Torvalds 208338308473SDavid S. Miller if (!rt) { 2084f3213831SJoe Perches net_warn_ratelimited("Maximum number of routes reached, consider increasing route/max_size\n"); 20851da177e4SLinus Torvalds return ERR_PTR(-ENOMEM); 208640385653SBen Greear } 20871da177e4SLinus Torvalds 20881da177e4SLinus Torvalds in6_dev_hold(idev); 20891da177e4SLinus Torvalds 209011d53b49SDavid S. Miller rt->dst.flags |= DST_HOST; 2091d8d1f30bSChangli Gao rt->dst.input = ip6_input; 2092d8d1f30bSChangli Gao rt->dst.output = ip6_output; 20931da177e4SLinus Torvalds rt->rt6i_idev = idev; 20941da177e4SLinus Torvalds 20951da177e4SLinus Torvalds rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP; 209658c4fb86SYOSHIFUJI Hideaki if (anycast) 209758c4fb86SYOSHIFUJI Hideaki rt->rt6i_flags |= RTF_ANYCAST; 209858c4fb86SYOSHIFUJI Hideaki else 20991da177e4SLinus Torvalds rt->rt6i_flags |= RTF_LOCAL; 21008ade06c6SDavid S. Miller err = rt6_bind_neighbour(rt, rt->dst.dev); 2101f83c7790SDavid S. Miller if (err) { 2102d8d1f30bSChangli Gao dst_free(&rt->dst); 2103f83c7790SDavid S. Miller return ERR_PTR(err); 21041da177e4SLinus Torvalds } 21051da177e4SLinus Torvalds 21064e3fd7a0SAlexey Dobriyan rt->rt6i_dst.addr = *addr; 21071da177e4SLinus Torvalds rt->rt6i_dst.plen = 128; 21085578689aSDaniel Lezcano rt->rt6i_table = fib6_get_table(net, RT6_TABLE_LOCAL); 21091da177e4SLinus Torvalds 2110d8d1f30bSChangli Gao atomic_set(&rt->dst.__refcnt, 1); 21111da177e4SLinus Torvalds 21121da177e4SLinus Torvalds return rt; 21131da177e4SLinus Torvalds } 21141da177e4SLinus Torvalds 2115c3968a85SDaniel Walter int ip6_route_get_saddr(struct net *net, 2116c3968a85SDaniel Walter struct rt6_info *rt, 2117b71d1d42SEric Dumazet const struct in6_addr *daddr, 2118c3968a85SDaniel Walter unsigned int prefs, 2119c3968a85SDaniel Walter struct in6_addr *saddr) 2120c3968a85SDaniel Walter { 2121c3968a85SDaniel Walter struct inet6_dev *idev = ip6_dst_idev((struct dst_entry*)rt); 2122c3968a85SDaniel Walter int err = 0; 2123c3968a85SDaniel Walter if (rt->rt6i_prefsrc.plen) 21244e3fd7a0SAlexey Dobriyan *saddr = rt->rt6i_prefsrc.addr; 2125c3968a85SDaniel Walter else 2126c3968a85SDaniel Walter err = ipv6_dev_get_saddr(net, idev ? idev->dev : NULL, 2127c3968a85SDaniel Walter daddr, prefs, saddr); 2128c3968a85SDaniel Walter return err; 2129c3968a85SDaniel Walter } 2130c3968a85SDaniel Walter 2131c3968a85SDaniel Walter /* remove deleted ip from prefsrc entries */ 2132c3968a85SDaniel Walter struct arg_dev_net_ip { 2133c3968a85SDaniel Walter struct net_device *dev; 2134c3968a85SDaniel Walter struct net *net; 2135c3968a85SDaniel Walter struct in6_addr *addr; 2136c3968a85SDaniel Walter }; 2137c3968a85SDaniel Walter 2138c3968a85SDaniel Walter static int fib6_remove_prefsrc(struct rt6_info *rt, void *arg) 2139c3968a85SDaniel Walter { 2140c3968a85SDaniel Walter struct net_device *dev = ((struct arg_dev_net_ip *)arg)->dev; 2141c3968a85SDaniel Walter struct net *net = ((struct arg_dev_net_ip *)arg)->net; 2142c3968a85SDaniel Walter struct in6_addr *addr = ((struct arg_dev_net_ip *)arg)->addr; 2143c3968a85SDaniel Walter 2144d1918542SDavid S. Miller if (((void *)rt->dst.dev == dev || !dev) && 2145c3968a85SDaniel Walter rt != net->ipv6.ip6_null_entry && 2146c3968a85SDaniel Walter ipv6_addr_equal(addr, &rt->rt6i_prefsrc.addr)) { 2147c3968a85SDaniel Walter /* remove prefsrc entry */ 2148c3968a85SDaniel Walter rt->rt6i_prefsrc.plen = 0; 2149c3968a85SDaniel Walter } 2150c3968a85SDaniel Walter return 0; 2151c3968a85SDaniel Walter } 2152c3968a85SDaniel Walter 2153c3968a85SDaniel Walter void rt6_remove_prefsrc(struct inet6_ifaddr *ifp) 2154c3968a85SDaniel Walter { 2155c3968a85SDaniel Walter struct net *net = dev_net(ifp->idev->dev); 2156c3968a85SDaniel Walter struct arg_dev_net_ip adni = { 2157c3968a85SDaniel Walter .dev = ifp->idev->dev, 2158c3968a85SDaniel Walter .net = net, 2159c3968a85SDaniel Walter .addr = &ifp->addr, 2160c3968a85SDaniel Walter }; 2161c3968a85SDaniel Walter fib6_clean_all(net, fib6_remove_prefsrc, 0, &adni); 2162c3968a85SDaniel Walter } 2163c3968a85SDaniel Walter 21648ed67789SDaniel Lezcano struct arg_dev_net { 21658ed67789SDaniel Lezcano struct net_device *dev; 21668ed67789SDaniel Lezcano struct net *net; 21678ed67789SDaniel Lezcano }; 21688ed67789SDaniel Lezcano 21691da177e4SLinus Torvalds static int fib6_ifdown(struct rt6_info *rt, void *arg) 21701da177e4SLinus Torvalds { 2171bc3ef660Sstephen hemminger const struct arg_dev_net *adn = arg; 2172bc3ef660Sstephen hemminger const struct net_device *dev = adn->dev; 21738ed67789SDaniel Lezcano 2174d1918542SDavid S. Miller if ((rt->dst.dev == dev || !dev) && 2175c159d30cSDavid S. Miller rt != adn->net->ipv6.ip6_null_entry) 21761da177e4SLinus Torvalds return -1; 2177c159d30cSDavid S. Miller 21781da177e4SLinus Torvalds return 0; 21791da177e4SLinus Torvalds } 21801da177e4SLinus Torvalds 2181f3db4851SDaniel Lezcano void rt6_ifdown(struct net *net, struct net_device *dev) 21821da177e4SLinus Torvalds { 21838ed67789SDaniel Lezcano struct arg_dev_net adn = { 21848ed67789SDaniel Lezcano .dev = dev, 21858ed67789SDaniel Lezcano .net = net, 21868ed67789SDaniel Lezcano }; 21878ed67789SDaniel Lezcano 21888ed67789SDaniel Lezcano fib6_clean_all(net, fib6_ifdown, 0, &adn); 21891e493d19SDavid S. Miller icmp6_clean_all(fib6_ifdown, &adn); 21901da177e4SLinus Torvalds } 21911da177e4SLinus Torvalds 219295c96174SEric Dumazet struct rt6_mtu_change_arg { 21931da177e4SLinus Torvalds struct net_device *dev; 219495c96174SEric Dumazet unsigned int mtu; 21951da177e4SLinus Torvalds }; 21961da177e4SLinus Torvalds 21971da177e4SLinus Torvalds static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg) 21981da177e4SLinus Torvalds { 21991da177e4SLinus Torvalds struct rt6_mtu_change_arg *arg = (struct rt6_mtu_change_arg *) p_arg; 22001da177e4SLinus Torvalds struct inet6_dev *idev; 22011da177e4SLinus Torvalds 22021da177e4SLinus Torvalds /* In IPv6 pmtu discovery is not optional, 22031da177e4SLinus Torvalds so that RTAX_MTU lock cannot disable it. 22041da177e4SLinus Torvalds We still use this lock to block changes 22051da177e4SLinus Torvalds caused by addrconf/ndisc. 22061da177e4SLinus Torvalds */ 22071da177e4SLinus Torvalds 22081da177e4SLinus Torvalds idev = __in6_dev_get(arg->dev); 220938308473SDavid S. Miller if (!idev) 22101da177e4SLinus Torvalds return 0; 22111da177e4SLinus Torvalds 22121da177e4SLinus Torvalds /* For administrative MTU increase, there is no way to discover 22131da177e4SLinus Torvalds IPv6 PMTU increase, so PMTU increase should be updated here. 22141da177e4SLinus Torvalds Since RFC 1981 doesn't include administrative MTU increase 22151da177e4SLinus Torvalds update PMTU increase is a MUST. (i.e. jumbo frame) 22161da177e4SLinus Torvalds */ 22171da177e4SLinus Torvalds /* 22181da177e4SLinus Torvalds If new MTU is less than route PMTU, this new MTU will be the 22191da177e4SLinus Torvalds lowest MTU in the path, update the route PMTU to reflect PMTU 22201da177e4SLinus Torvalds decreases; if new MTU is greater than route PMTU, and the 22211da177e4SLinus Torvalds old MTU is the lowest MTU in the path, update the route PMTU 22221da177e4SLinus Torvalds to reflect the increase. In this case if the other nodes' MTU 22231da177e4SLinus Torvalds also have the lowest MTU, TOO BIG MESSAGE will be lead to 22241da177e4SLinus Torvalds PMTU discouvery. 22251da177e4SLinus Torvalds */ 2226d1918542SDavid S. Miller if (rt->dst.dev == arg->dev && 2227d8d1f30bSChangli Gao !dst_metric_locked(&rt->dst, RTAX_MTU) && 2228d8d1f30bSChangli Gao (dst_mtu(&rt->dst) >= arg->mtu || 2229d8d1f30bSChangli Gao (dst_mtu(&rt->dst) < arg->mtu && 2230d8d1f30bSChangli Gao dst_mtu(&rt->dst) == idev->cnf.mtu6))) { 2231defb3519SDavid S. Miller dst_metric_set(&rt->dst, RTAX_MTU, arg->mtu); 2232566cfd8fSSimon Arlott } 22331da177e4SLinus Torvalds return 0; 22341da177e4SLinus Torvalds } 22351da177e4SLinus Torvalds 223695c96174SEric Dumazet void rt6_mtu_change(struct net_device *dev, unsigned int mtu) 22371da177e4SLinus Torvalds { 2238c71099acSThomas Graf struct rt6_mtu_change_arg arg = { 2239c71099acSThomas Graf .dev = dev, 2240c71099acSThomas Graf .mtu = mtu, 2241c71099acSThomas Graf }; 22421da177e4SLinus Torvalds 2243c346dca1SYOSHIFUJI Hideaki fib6_clean_all(dev_net(dev), rt6_mtu_change_route, 0, &arg); 22441da177e4SLinus Torvalds } 22451da177e4SLinus Torvalds 2246ef7c79edSPatrick McHardy static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = { 22475176f91eSThomas Graf [RTA_GATEWAY] = { .len = sizeof(struct in6_addr) }, 224886872cb5SThomas Graf [RTA_OIF] = { .type = NLA_U32 }, 2249ab364a6fSThomas Graf [RTA_IIF] = { .type = NLA_U32 }, 225086872cb5SThomas Graf [RTA_PRIORITY] = { .type = NLA_U32 }, 225186872cb5SThomas Graf [RTA_METRICS] = { .type = NLA_NESTED }, 225286872cb5SThomas Graf }; 225386872cb5SThomas Graf 225486872cb5SThomas Graf static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh, 225586872cb5SThomas Graf struct fib6_config *cfg) 22561da177e4SLinus Torvalds { 225786872cb5SThomas Graf struct rtmsg *rtm; 225886872cb5SThomas Graf struct nlattr *tb[RTA_MAX+1]; 225986872cb5SThomas Graf int err; 22601da177e4SLinus Torvalds 226186872cb5SThomas Graf err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy); 226286872cb5SThomas Graf if (err < 0) 226386872cb5SThomas Graf goto errout; 22641da177e4SLinus Torvalds 226586872cb5SThomas Graf err = -EINVAL; 226686872cb5SThomas Graf rtm = nlmsg_data(nlh); 226786872cb5SThomas Graf memset(cfg, 0, sizeof(*cfg)); 226886872cb5SThomas Graf 226986872cb5SThomas Graf cfg->fc_table = rtm->rtm_table; 227086872cb5SThomas Graf cfg->fc_dst_len = rtm->rtm_dst_len; 227186872cb5SThomas Graf cfg->fc_src_len = rtm->rtm_src_len; 227286872cb5SThomas Graf cfg->fc_flags = RTF_UP; 227386872cb5SThomas Graf cfg->fc_protocol = rtm->rtm_protocol; 2274ef2c7d7bSNicolas Dichtel cfg->fc_type = rtm->rtm_type; 227586872cb5SThomas Graf 2276ef2c7d7bSNicolas Dichtel if (rtm->rtm_type == RTN_UNREACHABLE || 2277ef2c7d7bSNicolas Dichtel rtm->rtm_type == RTN_BLACKHOLE || 2278b4949ab2SNicolas Dichtel rtm->rtm_type == RTN_PROHIBIT || 2279b4949ab2SNicolas Dichtel rtm->rtm_type == RTN_THROW) 228086872cb5SThomas Graf cfg->fc_flags |= RTF_REJECT; 228186872cb5SThomas Graf 2282ab79ad14SMaciej Żenczykowski if (rtm->rtm_type == RTN_LOCAL) 2283ab79ad14SMaciej Żenczykowski cfg->fc_flags |= RTF_LOCAL; 2284ab79ad14SMaciej Żenczykowski 228515e47304SEric W. Biederman cfg->fc_nlinfo.portid = NETLINK_CB(skb).portid; 228686872cb5SThomas Graf cfg->fc_nlinfo.nlh = nlh; 22873b1e0a65SYOSHIFUJI Hideaki cfg->fc_nlinfo.nl_net = sock_net(skb->sk); 228886872cb5SThomas Graf 228986872cb5SThomas Graf if (tb[RTA_GATEWAY]) { 229086872cb5SThomas Graf nla_memcpy(&cfg->fc_gateway, tb[RTA_GATEWAY], 16); 229186872cb5SThomas Graf cfg->fc_flags |= RTF_GATEWAY; 22921da177e4SLinus Torvalds } 229386872cb5SThomas Graf 229486872cb5SThomas Graf if (tb[RTA_DST]) { 229586872cb5SThomas Graf int plen = (rtm->rtm_dst_len + 7) >> 3; 229686872cb5SThomas Graf 229786872cb5SThomas Graf if (nla_len(tb[RTA_DST]) < plen) 229886872cb5SThomas Graf goto errout; 229986872cb5SThomas Graf 230086872cb5SThomas Graf nla_memcpy(&cfg->fc_dst, tb[RTA_DST], plen); 23011da177e4SLinus Torvalds } 230286872cb5SThomas Graf 230386872cb5SThomas Graf if (tb[RTA_SRC]) { 230486872cb5SThomas Graf int plen = (rtm->rtm_src_len + 7) >> 3; 230586872cb5SThomas Graf 230686872cb5SThomas Graf if (nla_len(tb[RTA_SRC]) < plen) 230786872cb5SThomas Graf goto errout; 230886872cb5SThomas Graf 230986872cb5SThomas Graf nla_memcpy(&cfg->fc_src, tb[RTA_SRC], plen); 23101da177e4SLinus Torvalds } 231186872cb5SThomas Graf 2312c3968a85SDaniel Walter if (tb[RTA_PREFSRC]) 2313c3968a85SDaniel Walter nla_memcpy(&cfg->fc_prefsrc, tb[RTA_PREFSRC], 16); 2314c3968a85SDaniel Walter 231586872cb5SThomas Graf if (tb[RTA_OIF]) 231686872cb5SThomas Graf cfg->fc_ifindex = nla_get_u32(tb[RTA_OIF]); 231786872cb5SThomas Graf 231886872cb5SThomas Graf if (tb[RTA_PRIORITY]) 231986872cb5SThomas Graf cfg->fc_metric = nla_get_u32(tb[RTA_PRIORITY]); 232086872cb5SThomas Graf 232186872cb5SThomas Graf if (tb[RTA_METRICS]) { 232286872cb5SThomas Graf cfg->fc_mx = nla_data(tb[RTA_METRICS]); 232386872cb5SThomas Graf cfg->fc_mx_len = nla_len(tb[RTA_METRICS]); 23241da177e4SLinus Torvalds } 232586872cb5SThomas Graf 232686872cb5SThomas Graf if (tb[RTA_TABLE]) 232786872cb5SThomas Graf cfg->fc_table = nla_get_u32(tb[RTA_TABLE]); 232886872cb5SThomas Graf 232986872cb5SThomas Graf err = 0; 233086872cb5SThomas Graf errout: 233186872cb5SThomas Graf return err; 23321da177e4SLinus Torvalds } 23331da177e4SLinus Torvalds 2334c127ea2cSThomas Graf static int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg) 23351da177e4SLinus Torvalds { 233686872cb5SThomas Graf struct fib6_config cfg; 233786872cb5SThomas Graf int err; 23381da177e4SLinus Torvalds 233986872cb5SThomas Graf err = rtm_to_fib6_config(skb, nlh, &cfg); 234086872cb5SThomas Graf if (err < 0) 234186872cb5SThomas Graf return err; 234286872cb5SThomas Graf 234386872cb5SThomas Graf return ip6_route_del(&cfg); 23441da177e4SLinus Torvalds } 23451da177e4SLinus Torvalds 2346c127ea2cSThomas Graf static int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg) 23471da177e4SLinus Torvalds { 234886872cb5SThomas Graf struct fib6_config cfg; 234986872cb5SThomas Graf int err; 23501da177e4SLinus Torvalds 235186872cb5SThomas Graf err = rtm_to_fib6_config(skb, nlh, &cfg); 235286872cb5SThomas Graf if (err < 0) 235386872cb5SThomas Graf return err; 235486872cb5SThomas Graf 235586872cb5SThomas Graf return ip6_route_add(&cfg); 23561da177e4SLinus Torvalds } 23571da177e4SLinus Torvalds 2358339bf98fSThomas Graf static inline size_t rt6_nlmsg_size(void) 2359339bf98fSThomas Graf { 2360339bf98fSThomas Graf return NLMSG_ALIGN(sizeof(struct rtmsg)) 2361339bf98fSThomas Graf + nla_total_size(16) /* RTA_SRC */ 2362339bf98fSThomas Graf + nla_total_size(16) /* RTA_DST */ 2363339bf98fSThomas Graf + nla_total_size(16) /* RTA_GATEWAY */ 2364339bf98fSThomas Graf + nla_total_size(16) /* RTA_PREFSRC */ 2365339bf98fSThomas Graf + nla_total_size(4) /* RTA_TABLE */ 2366339bf98fSThomas Graf + nla_total_size(4) /* RTA_IIF */ 2367339bf98fSThomas Graf + nla_total_size(4) /* RTA_OIF */ 2368339bf98fSThomas Graf + nla_total_size(4) /* RTA_PRIORITY */ 23696a2b9ce0SNoriaki TAKAMIYA + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */ 2370339bf98fSThomas Graf + nla_total_size(sizeof(struct rta_cacheinfo)); 2371339bf98fSThomas Graf } 2372339bf98fSThomas Graf 2373191cd582SBrian Haley static int rt6_fill_node(struct net *net, 2374191cd582SBrian Haley struct sk_buff *skb, struct rt6_info *rt, 23750d51aa80SJamal Hadi Salim struct in6_addr *dst, struct in6_addr *src, 237615e47304SEric W. Biederman int iif, int type, u32 portid, u32 seq, 23777bc570c8SYOSHIFUJI Hideaki int prefix, int nowait, unsigned int flags) 23781da177e4SLinus Torvalds { 23791da177e4SLinus Torvalds struct rtmsg *rtm; 23801da177e4SLinus Torvalds struct nlmsghdr *nlh; 2381e3703b3dSThomas Graf long expires; 23829e762a4aSPatrick McHardy u32 table; 2383f2c31e32SEric Dumazet struct neighbour *n; 23841da177e4SLinus Torvalds 23851da177e4SLinus Torvalds if (prefix) { /* user wants prefix routes only */ 23861da177e4SLinus Torvalds if (!(rt->rt6i_flags & RTF_PREFIX_RT)) { 23871da177e4SLinus Torvalds /* success since this is not a prefix route */ 23881da177e4SLinus Torvalds return 1; 23891da177e4SLinus Torvalds } 23901da177e4SLinus Torvalds } 23911da177e4SLinus Torvalds 239215e47304SEric W. Biederman nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags); 239338308473SDavid S. Miller if (!nlh) 239426932566SPatrick McHardy return -EMSGSIZE; 23952d7202bfSThomas Graf 23962d7202bfSThomas Graf rtm = nlmsg_data(nlh); 23971da177e4SLinus Torvalds rtm->rtm_family = AF_INET6; 23981da177e4SLinus Torvalds rtm->rtm_dst_len = rt->rt6i_dst.plen; 23991da177e4SLinus Torvalds rtm->rtm_src_len = rt->rt6i_src.plen; 24001da177e4SLinus Torvalds rtm->rtm_tos = 0; 2401c71099acSThomas Graf if (rt->rt6i_table) 24029e762a4aSPatrick McHardy table = rt->rt6i_table->tb6_id; 2403c71099acSThomas Graf else 24049e762a4aSPatrick McHardy table = RT6_TABLE_UNSPEC; 24059e762a4aSPatrick McHardy rtm->rtm_table = table; 2406c78679e8SDavid S. Miller if (nla_put_u32(skb, RTA_TABLE, table)) 2407c78679e8SDavid S. Miller goto nla_put_failure; 2408ef2c7d7bSNicolas Dichtel if (rt->rt6i_flags & RTF_REJECT) { 2409ef2c7d7bSNicolas Dichtel switch (rt->dst.error) { 2410ef2c7d7bSNicolas Dichtel case -EINVAL: 2411ef2c7d7bSNicolas Dichtel rtm->rtm_type = RTN_BLACKHOLE; 2412ef2c7d7bSNicolas Dichtel break; 2413ef2c7d7bSNicolas Dichtel case -EACCES: 2414ef2c7d7bSNicolas Dichtel rtm->rtm_type = RTN_PROHIBIT; 2415ef2c7d7bSNicolas Dichtel break; 2416b4949ab2SNicolas Dichtel case -EAGAIN: 2417b4949ab2SNicolas Dichtel rtm->rtm_type = RTN_THROW; 2418b4949ab2SNicolas Dichtel break; 2419ef2c7d7bSNicolas Dichtel default: 24201da177e4SLinus Torvalds rtm->rtm_type = RTN_UNREACHABLE; 2421ef2c7d7bSNicolas Dichtel break; 2422ef2c7d7bSNicolas Dichtel } 2423ef2c7d7bSNicolas Dichtel } 2424ab79ad14SMaciej Żenczykowski else if (rt->rt6i_flags & RTF_LOCAL) 2425ab79ad14SMaciej Żenczykowski rtm->rtm_type = RTN_LOCAL; 2426d1918542SDavid S. Miller else if (rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK)) 24271da177e4SLinus Torvalds rtm->rtm_type = RTN_LOCAL; 24281da177e4SLinus Torvalds else 24291da177e4SLinus Torvalds rtm->rtm_type = RTN_UNICAST; 24301da177e4SLinus Torvalds rtm->rtm_flags = 0; 24311da177e4SLinus Torvalds rtm->rtm_scope = RT_SCOPE_UNIVERSE; 24321da177e4SLinus Torvalds rtm->rtm_protocol = rt->rt6i_protocol; 24331da177e4SLinus Torvalds if (rt->rt6i_flags & RTF_DYNAMIC) 24341da177e4SLinus Torvalds rtm->rtm_protocol = RTPROT_REDIRECT; 2435f0396f60SDenis Ovsienko else if (rt->rt6i_flags & RTF_ADDRCONF) { 2436f0396f60SDenis Ovsienko if (rt->rt6i_flags & (RTF_DEFAULT | RTF_ROUTEINFO)) 24371da177e4SLinus Torvalds rtm->rtm_protocol = RTPROT_RA; 2438f0396f60SDenis Ovsienko else 2439f0396f60SDenis Ovsienko rtm->rtm_protocol = RTPROT_KERNEL; 2440f0396f60SDenis Ovsienko } 24411da177e4SLinus Torvalds 24421da177e4SLinus Torvalds if (rt->rt6i_flags & RTF_CACHE) 24431da177e4SLinus Torvalds rtm->rtm_flags |= RTM_F_CLONED; 24441da177e4SLinus Torvalds 24451da177e4SLinus Torvalds if (dst) { 2446c78679e8SDavid S. Miller if (nla_put(skb, RTA_DST, 16, dst)) 2447c78679e8SDavid S. Miller goto nla_put_failure; 24481da177e4SLinus Torvalds rtm->rtm_dst_len = 128; 24491da177e4SLinus Torvalds } else if (rtm->rtm_dst_len) 2450c78679e8SDavid S. Miller if (nla_put(skb, RTA_DST, 16, &rt->rt6i_dst.addr)) 2451c78679e8SDavid S. Miller goto nla_put_failure; 24521da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES 24531da177e4SLinus Torvalds if (src) { 2454c78679e8SDavid S. Miller if (nla_put(skb, RTA_SRC, 16, src)) 2455c78679e8SDavid S. Miller goto nla_put_failure; 24561da177e4SLinus Torvalds rtm->rtm_src_len = 128; 2457c78679e8SDavid S. Miller } else if (rtm->rtm_src_len && 2458c78679e8SDavid S. Miller nla_put(skb, RTA_SRC, 16, &rt->rt6i_src.addr)) 2459c78679e8SDavid S. Miller goto nla_put_failure; 24601da177e4SLinus Torvalds #endif 24617bc570c8SYOSHIFUJI Hideaki if (iif) { 24627bc570c8SYOSHIFUJI Hideaki #ifdef CONFIG_IPV6_MROUTE 24637bc570c8SYOSHIFUJI Hideaki if (ipv6_addr_is_multicast(&rt->rt6i_dst.addr)) { 24648229efdaSBenjamin Thery int err = ip6mr_get_route(net, skb, rtm, nowait); 24657bc570c8SYOSHIFUJI Hideaki if (err <= 0) { 24667bc570c8SYOSHIFUJI Hideaki if (!nowait) { 24677bc570c8SYOSHIFUJI Hideaki if (err == 0) 24687bc570c8SYOSHIFUJI Hideaki return 0; 24697bc570c8SYOSHIFUJI Hideaki goto nla_put_failure; 24707bc570c8SYOSHIFUJI Hideaki } else { 24717bc570c8SYOSHIFUJI Hideaki if (err == -EMSGSIZE) 24727bc570c8SYOSHIFUJI Hideaki goto nla_put_failure; 24737bc570c8SYOSHIFUJI Hideaki } 24747bc570c8SYOSHIFUJI Hideaki } 24757bc570c8SYOSHIFUJI Hideaki } else 24767bc570c8SYOSHIFUJI Hideaki #endif 2477c78679e8SDavid S. Miller if (nla_put_u32(skb, RTA_IIF, iif)) 2478c78679e8SDavid S. Miller goto nla_put_failure; 24797bc570c8SYOSHIFUJI Hideaki } else if (dst) { 24801da177e4SLinus Torvalds struct in6_addr saddr_buf; 2481c78679e8SDavid S. Miller if (ip6_route_get_saddr(net, rt, dst, 0, &saddr_buf) == 0 && 2482c78679e8SDavid S. Miller nla_put(skb, RTA_PREFSRC, 16, &saddr_buf)) 2483c78679e8SDavid S. Miller goto nla_put_failure; 2484c3968a85SDaniel Walter } 2485c3968a85SDaniel Walter 2486c3968a85SDaniel Walter if (rt->rt6i_prefsrc.plen) { 2487c3968a85SDaniel Walter struct in6_addr saddr_buf; 24884e3fd7a0SAlexey Dobriyan saddr_buf = rt->rt6i_prefsrc.addr; 2489c78679e8SDavid S. Miller if (nla_put(skb, RTA_PREFSRC, 16, &saddr_buf)) 2490c78679e8SDavid S. Miller goto nla_put_failure; 24911da177e4SLinus Torvalds } 24922d7202bfSThomas Graf 2493defb3519SDavid S. Miller if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0) 24942d7202bfSThomas Graf goto nla_put_failure; 24952d7202bfSThomas Graf 249697cac082SDavid S. Miller n = rt->n; 249794f826b8SEric Dumazet if (n) { 2498fdd6681dSAmerigo Wang if (nla_put(skb, RTA_GATEWAY, 16, &n->primary_key) < 0) 249994f826b8SEric Dumazet goto nla_put_failure; 250094f826b8SEric Dumazet } 25012d7202bfSThomas Graf 2502c78679e8SDavid S. Miller if (rt->dst.dev && 2503c78679e8SDavid S. Miller nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex)) 2504c78679e8SDavid S. Miller goto nla_put_failure; 2505c78679e8SDavid S. Miller if (nla_put_u32(skb, RTA_PRIORITY, rt->rt6i_metric)) 2506c78679e8SDavid S. Miller goto nla_put_failure; 25078253947eSLi Wei 25088253947eSLi Wei expires = (rt->rt6i_flags & RTF_EXPIRES) ? rt->dst.expires - jiffies : 0; 250969cdf8f9SYOSHIFUJI Hideaki 251087a50699SDavid S. Miller if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires, rt->dst.error) < 0) 2511e3703b3dSThomas Graf goto nla_put_failure; 25121da177e4SLinus Torvalds 25132d7202bfSThomas Graf return nlmsg_end(skb, nlh); 25142d7202bfSThomas Graf 25152d7202bfSThomas Graf nla_put_failure: 251626932566SPatrick McHardy nlmsg_cancel(skb, nlh); 251726932566SPatrick McHardy return -EMSGSIZE; 25181da177e4SLinus Torvalds } 25191da177e4SLinus Torvalds 25201b43af54SPatrick McHardy int rt6_dump_route(struct rt6_info *rt, void *p_arg) 25211da177e4SLinus Torvalds { 25221da177e4SLinus Torvalds struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg; 25231da177e4SLinus Torvalds int prefix; 25241da177e4SLinus Torvalds 25252d7202bfSThomas Graf if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) { 25262d7202bfSThomas Graf struct rtmsg *rtm = nlmsg_data(arg->cb->nlh); 25271da177e4SLinus Torvalds prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0; 25281da177e4SLinus Torvalds } else 25291da177e4SLinus Torvalds prefix = 0; 25301da177e4SLinus Torvalds 2531191cd582SBrian Haley return rt6_fill_node(arg->net, 2532191cd582SBrian Haley arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE, 253315e47304SEric W. Biederman NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq, 25347bc570c8SYOSHIFUJI Hideaki prefix, 0, NLM_F_MULTI); 25351da177e4SLinus Torvalds } 25361da177e4SLinus Torvalds 2537c127ea2cSThomas Graf static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg) 25381da177e4SLinus Torvalds { 25393b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(in_skb->sk); 2540ab364a6fSThomas Graf struct nlattr *tb[RTA_MAX+1]; 25411da177e4SLinus Torvalds struct rt6_info *rt; 2542ab364a6fSThomas Graf struct sk_buff *skb; 2543ab364a6fSThomas Graf struct rtmsg *rtm; 25444c9483b2SDavid S. Miller struct flowi6 fl6; 254572331bc0SShmulik Ladkani int err, iif = 0, oif = 0; 2546ab364a6fSThomas Graf 2547ab364a6fSThomas Graf err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv6_policy); 2548ab364a6fSThomas Graf if (err < 0) 2549ab364a6fSThomas Graf goto errout; 2550ab364a6fSThomas Graf 2551ab364a6fSThomas Graf err = -EINVAL; 25524c9483b2SDavid S. Miller memset(&fl6, 0, sizeof(fl6)); 2553ab364a6fSThomas Graf 2554ab364a6fSThomas Graf if (tb[RTA_SRC]) { 2555ab364a6fSThomas Graf if (nla_len(tb[RTA_SRC]) < sizeof(struct in6_addr)) 2556ab364a6fSThomas Graf goto errout; 2557ab364a6fSThomas Graf 25584e3fd7a0SAlexey Dobriyan fl6.saddr = *(struct in6_addr *)nla_data(tb[RTA_SRC]); 2559ab364a6fSThomas Graf } 2560ab364a6fSThomas Graf 2561ab364a6fSThomas Graf if (tb[RTA_DST]) { 2562ab364a6fSThomas Graf if (nla_len(tb[RTA_DST]) < sizeof(struct in6_addr)) 2563ab364a6fSThomas Graf goto errout; 2564ab364a6fSThomas Graf 25654e3fd7a0SAlexey Dobriyan fl6.daddr = *(struct in6_addr *)nla_data(tb[RTA_DST]); 2566ab364a6fSThomas Graf } 2567ab364a6fSThomas Graf 2568ab364a6fSThomas Graf if (tb[RTA_IIF]) 2569ab364a6fSThomas Graf iif = nla_get_u32(tb[RTA_IIF]); 2570ab364a6fSThomas Graf 2571ab364a6fSThomas Graf if (tb[RTA_OIF]) 257272331bc0SShmulik Ladkani oif = nla_get_u32(tb[RTA_OIF]); 2573ab364a6fSThomas Graf 2574ab364a6fSThomas Graf if (iif) { 2575ab364a6fSThomas Graf struct net_device *dev; 257672331bc0SShmulik Ladkani int flags = 0; 257772331bc0SShmulik Ladkani 25785578689aSDaniel Lezcano dev = __dev_get_by_index(net, iif); 2579ab364a6fSThomas Graf if (!dev) { 2580ab364a6fSThomas Graf err = -ENODEV; 2581ab364a6fSThomas Graf goto errout; 2582ab364a6fSThomas Graf } 258372331bc0SShmulik Ladkani 258472331bc0SShmulik Ladkani fl6.flowi6_iif = iif; 258572331bc0SShmulik Ladkani 258672331bc0SShmulik Ladkani if (!ipv6_addr_any(&fl6.saddr)) 258772331bc0SShmulik Ladkani flags |= RT6_LOOKUP_F_HAS_SADDR; 258872331bc0SShmulik Ladkani 258972331bc0SShmulik Ladkani rt = (struct rt6_info *)ip6_route_input_lookup(net, dev, &fl6, 259072331bc0SShmulik Ladkani flags); 259172331bc0SShmulik Ladkani } else { 259272331bc0SShmulik Ladkani fl6.flowi6_oif = oif; 259372331bc0SShmulik Ladkani 259472331bc0SShmulik Ladkani rt = (struct rt6_info *)ip6_route_output(net, NULL, &fl6); 2595ab364a6fSThomas Graf } 25961da177e4SLinus Torvalds 25971da177e4SLinus Torvalds skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); 259838308473SDavid S. Miller if (!skb) { 25992173bff5SShmulik Ladkani dst_release(&rt->dst); 2600ab364a6fSThomas Graf err = -ENOBUFS; 2601ab364a6fSThomas Graf goto errout; 2602ab364a6fSThomas Graf } 26031da177e4SLinus Torvalds 26041da177e4SLinus Torvalds /* Reserve room for dummy headers, this skb can pass 26051da177e4SLinus Torvalds through good chunk of routing engine. 26061da177e4SLinus Torvalds */ 2607459a98edSArnaldo Carvalho de Melo skb_reset_mac_header(skb); 26081da177e4SLinus Torvalds skb_reserve(skb, MAX_HEADER + sizeof(struct ipv6hdr)); 26091da177e4SLinus Torvalds 2610d8d1f30bSChangli Gao skb_dst_set(skb, &rt->dst); 26111da177e4SLinus Torvalds 26124c9483b2SDavid S. Miller err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif, 261315e47304SEric W. Biederman RTM_NEWROUTE, NETLINK_CB(in_skb).portid, 26147bc570c8SYOSHIFUJI Hideaki nlh->nlmsg_seq, 0, 0, 0); 26151da177e4SLinus Torvalds if (err < 0) { 2616ab364a6fSThomas Graf kfree_skb(skb); 2617ab364a6fSThomas Graf goto errout; 26181da177e4SLinus Torvalds } 26191da177e4SLinus Torvalds 262015e47304SEric W. Biederman err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid); 2621ab364a6fSThomas Graf errout: 26221da177e4SLinus Torvalds return err; 26231da177e4SLinus Torvalds } 26241da177e4SLinus Torvalds 262586872cb5SThomas Graf void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info) 26261da177e4SLinus Torvalds { 26271da177e4SLinus Torvalds struct sk_buff *skb; 26285578689aSDaniel Lezcano struct net *net = info->nl_net; 2629528c4cebSDenis V. Lunev u32 seq; 2630528c4cebSDenis V. Lunev int err; 26310d51aa80SJamal Hadi Salim 2632528c4cebSDenis V. Lunev err = -ENOBUFS; 263338308473SDavid S. Miller seq = info->nlh ? info->nlh->nlmsg_seq : 0; 263486872cb5SThomas Graf 2635339bf98fSThomas Graf skb = nlmsg_new(rt6_nlmsg_size(), gfp_any()); 263638308473SDavid S. Miller if (!skb) 263721713ebcSThomas Graf goto errout; 26381da177e4SLinus Torvalds 2639191cd582SBrian Haley err = rt6_fill_node(net, skb, rt, NULL, NULL, 0, 264015e47304SEric W. Biederman event, info->portid, seq, 0, 0, 0); 264126932566SPatrick McHardy if (err < 0) { 264226932566SPatrick McHardy /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */ 264326932566SPatrick McHardy WARN_ON(err == -EMSGSIZE); 264426932566SPatrick McHardy kfree_skb(skb); 264526932566SPatrick McHardy goto errout; 264626932566SPatrick McHardy } 264715e47304SEric W. Biederman rtnl_notify(skb, net, info->portid, RTNLGRP_IPV6_ROUTE, 26485578689aSDaniel Lezcano info->nlh, gfp_any()); 26491ce85fe4SPablo Neira Ayuso return; 265021713ebcSThomas Graf errout: 265121713ebcSThomas Graf if (err < 0) 26525578689aSDaniel Lezcano rtnl_set_sk_err(net, RTNLGRP_IPV6_ROUTE, err); 26531da177e4SLinus Torvalds } 26541da177e4SLinus Torvalds 26558ed67789SDaniel Lezcano static int ip6_route_dev_notify(struct notifier_block *this, 26568ed67789SDaniel Lezcano unsigned long event, void *data) 26578ed67789SDaniel Lezcano { 26588ed67789SDaniel Lezcano struct net_device *dev = (struct net_device *)data; 2659c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(dev); 26608ed67789SDaniel Lezcano 26618ed67789SDaniel Lezcano if (event == NETDEV_REGISTER && (dev->flags & IFF_LOOPBACK)) { 2662d8d1f30bSChangli Gao net->ipv6.ip6_null_entry->dst.dev = dev; 26638ed67789SDaniel Lezcano net->ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(dev); 26648ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES 2665d8d1f30bSChangli Gao net->ipv6.ip6_prohibit_entry->dst.dev = dev; 26668ed67789SDaniel Lezcano net->ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(dev); 2667d8d1f30bSChangli Gao net->ipv6.ip6_blk_hole_entry->dst.dev = dev; 26688ed67789SDaniel Lezcano net->ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(dev); 26698ed67789SDaniel Lezcano #endif 26708ed67789SDaniel Lezcano } 26718ed67789SDaniel Lezcano 26728ed67789SDaniel Lezcano return NOTIFY_OK; 26738ed67789SDaniel Lezcano } 26748ed67789SDaniel Lezcano 26751da177e4SLinus Torvalds /* 26761da177e4SLinus Torvalds * /proc 26771da177e4SLinus Torvalds */ 26781da177e4SLinus Torvalds 26791da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS 26801da177e4SLinus Torvalds 26811da177e4SLinus Torvalds struct rt6_proc_arg 26821da177e4SLinus Torvalds { 26831da177e4SLinus Torvalds char *buffer; 26841da177e4SLinus Torvalds int offset; 26851da177e4SLinus Torvalds int length; 26861da177e4SLinus Torvalds int skip; 26871da177e4SLinus Torvalds int len; 26881da177e4SLinus Torvalds }; 26891da177e4SLinus Torvalds 26901da177e4SLinus Torvalds static int rt6_info_route(struct rt6_info *rt, void *p_arg) 26911da177e4SLinus Torvalds { 269233120b30SAlexey Dobriyan struct seq_file *m = p_arg; 269369cce1d1SDavid S. Miller struct neighbour *n; 26941da177e4SLinus Torvalds 26954b7a4274SHarvey Harrison seq_printf(m, "%pi6 %02x ", &rt->rt6i_dst.addr, rt->rt6i_dst.plen); 26961da177e4SLinus Torvalds 26971da177e4SLinus Torvalds #ifdef CONFIG_IPV6_SUBTREES 26984b7a4274SHarvey Harrison seq_printf(m, "%pi6 %02x ", &rt->rt6i_src.addr, rt->rt6i_src.plen); 26991da177e4SLinus Torvalds #else 270033120b30SAlexey Dobriyan seq_puts(m, "00000000000000000000000000000000 00 "); 27011da177e4SLinus Torvalds #endif 270297cac082SDavid S. Miller n = rt->n; 270369cce1d1SDavid S. Miller if (n) { 270469cce1d1SDavid S. Miller seq_printf(m, "%pi6", n->primary_key); 27051da177e4SLinus Torvalds } else { 270633120b30SAlexey Dobriyan seq_puts(m, "00000000000000000000000000000000"); 27071da177e4SLinus Torvalds } 270833120b30SAlexey Dobriyan seq_printf(m, " %08x %08x %08x %08x %8s\n", 2709d8d1f30bSChangli Gao rt->rt6i_metric, atomic_read(&rt->dst.__refcnt), 2710d8d1f30bSChangli Gao rt->dst.__use, rt->rt6i_flags, 2711d1918542SDavid S. Miller rt->dst.dev ? rt->dst.dev->name : ""); 27121da177e4SLinus Torvalds return 0; 27131da177e4SLinus Torvalds } 27141da177e4SLinus Torvalds 271533120b30SAlexey Dobriyan static int ipv6_route_show(struct seq_file *m, void *v) 27161da177e4SLinus Torvalds { 2717f3db4851SDaniel Lezcano struct net *net = (struct net *)m->private; 271832b293a5SJosh Hunt fib6_clean_all_ro(net, rt6_info_route, 0, m); 271933120b30SAlexey Dobriyan return 0; 27201da177e4SLinus Torvalds } 27211da177e4SLinus Torvalds 272233120b30SAlexey Dobriyan static int ipv6_route_open(struct inode *inode, struct file *file) 272333120b30SAlexey Dobriyan { 2724de05c557SPavel Emelyanov return single_open_net(inode, file, ipv6_route_show); 2725f3db4851SDaniel Lezcano } 2726f3db4851SDaniel Lezcano 272733120b30SAlexey Dobriyan static const struct file_operations ipv6_route_proc_fops = { 272833120b30SAlexey Dobriyan .owner = THIS_MODULE, 272933120b30SAlexey Dobriyan .open = ipv6_route_open, 273033120b30SAlexey Dobriyan .read = seq_read, 273133120b30SAlexey Dobriyan .llseek = seq_lseek, 2732b6fcbdb4SPavel Emelyanov .release = single_release_net, 273333120b30SAlexey Dobriyan }; 273433120b30SAlexey Dobriyan 27351da177e4SLinus Torvalds static int rt6_stats_seq_show(struct seq_file *seq, void *v) 27361da177e4SLinus Torvalds { 273769ddb805SDaniel Lezcano struct net *net = (struct net *)seq->private; 27381da177e4SLinus Torvalds seq_printf(seq, "%04x %04x %04x %04x %04x %04x %04x\n", 273969ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_nodes, 274069ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_route_nodes, 274169ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_rt_alloc, 274269ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_rt_entries, 274369ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_rt_cache, 2744fc66f95cSEric Dumazet dst_entries_get_slow(&net->ipv6.ip6_dst_ops), 274569ddb805SDaniel Lezcano net->ipv6.rt6_stats->fib_discarded_routes); 27461da177e4SLinus Torvalds 27471da177e4SLinus Torvalds return 0; 27481da177e4SLinus Torvalds } 27491da177e4SLinus Torvalds 27501da177e4SLinus Torvalds static int rt6_stats_seq_open(struct inode *inode, struct file *file) 27511da177e4SLinus Torvalds { 2752de05c557SPavel Emelyanov return single_open_net(inode, file, rt6_stats_seq_show); 275369ddb805SDaniel Lezcano } 275469ddb805SDaniel Lezcano 27559a32144eSArjan van de Ven static const struct file_operations rt6_stats_seq_fops = { 27561da177e4SLinus Torvalds .owner = THIS_MODULE, 27571da177e4SLinus Torvalds .open = rt6_stats_seq_open, 27581da177e4SLinus Torvalds .read = seq_read, 27591da177e4SLinus Torvalds .llseek = seq_lseek, 2760b6fcbdb4SPavel Emelyanov .release = single_release_net, 27611da177e4SLinus Torvalds }; 27621da177e4SLinus Torvalds #endif /* CONFIG_PROC_FS */ 27631da177e4SLinus Torvalds 27641da177e4SLinus Torvalds #ifdef CONFIG_SYSCTL 27651da177e4SLinus Torvalds 27661da177e4SLinus Torvalds static 27678d65af78SAlexey Dobriyan int ipv6_sysctl_rtcache_flush(ctl_table *ctl, int write, 27681da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 27691da177e4SLinus Torvalds { 2770c486da34SLucian Adrian Grijincu struct net *net; 2771c486da34SLucian Adrian Grijincu int delay; 2772c486da34SLucian Adrian Grijincu if (!write) 2773c486da34SLucian Adrian Grijincu return -EINVAL; 2774c486da34SLucian Adrian Grijincu 2775c486da34SLucian Adrian Grijincu net = (struct net *)ctl->extra1; 2776c486da34SLucian Adrian Grijincu delay = net->ipv6.sysctl.flush_delay; 27778d65af78SAlexey Dobriyan proc_dointvec(ctl, write, buffer, lenp, ppos); 27785b7c931dSDaniel Lezcano fib6_run_gc(delay <= 0 ? ~0UL : (unsigned long)delay, net); 27791da177e4SLinus Torvalds return 0; 27801da177e4SLinus Torvalds } 27811da177e4SLinus Torvalds 2782760f2d01SDaniel Lezcano ctl_table ipv6_route_table_template[] = { 27831da177e4SLinus Torvalds { 27841da177e4SLinus Torvalds .procname = "flush", 27854990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.flush_delay, 27861da177e4SLinus Torvalds .maxlen = sizeof(int), 278789c8b3a1SDave Jones .mode = 0200, 27886d9f239aSAlexey Dobriyan .proc_handler = ipv6_sysctl_rtcache_flush 27891da177e4SLinus Torvalds }, 27901da177e4SLinus Torvalds { 27911da177e4SLinus Torvalds .procname = "gc_thresh", 27929a7ec3a9SDaniel Lezcano .data = &ip6_dst_ops_template.gc_thresh, 27931da177e4SLinus Torvalds .maxlen = sizeof(int), 27941da177e4SLinus Torvalds .mode = 0644, 27956d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 27961da177e4SLinus Torvalds }, 27971da177e4SLinus Torvalds { 27981da177e4SLinus Torvalds .procname = "max_size", 27994990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_max_size, 28001da177e4SLinus Torvalds .maxlen = sizeof(int), 28011da177e4SLinus Torvalds .mode = 0644, 28026d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 28031da177e4SLinus Torvalds }, 28041da177e4SLinus Torvalds { 28051da177e4SLinus Torvalds .procname = "gc_min_interval", 28064990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval, 28071da177e4SLinus Torvalds .maxlen = sizeof(int), 28081da177e4SLinus Torvalds .mode = 0644, 28096d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 28101da177e4SLinus Torvalds }, 28111da177e4SLinus Torvalds { 28121da177e4SLinus Torvalds .procname = "gc_timeout", 28134990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_timeout, 28141da177e4SLinus Torvalds .maxlen = sizeof(int), 28151da177e4SLinus Torvalds .mode = 0644, 28166d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 28171da177e4SLinus Torvalds }, 28181da177e4SLinus Torvalds { 28191da177e4SLinus Torvalds .procname = "gc_interval", 28204990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_interval, 28211da177e4SLinus Torvalds .maxlen = sizeof(int), 28221da177e4SLinus Torvalds .mode = 0644, 28236d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 28241da177e4SLinus Torvalds }, 28251da177e4SLinus Torvalds { 28261da177e4SLinus Torvalds .procname = "gc_elasticity", 28274990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_elasticity, 28281da177e4SLinus Torvalds .maxlen = sizeof(int), 28291da177e4SLinus Torvalds .mode = 0644, 2830f3d3f616SMin Zhang .proc_handler = proc_dointvec, 28311da177e4SLinus Torvalds }, 28321da177e4SLinus Torvalds { 28331da177e4SLinus Torvalds .procname = "mtu_expires", 28344990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_mtu_expires, 28351da177e4SLinus Torvalds .maxlen = sizeof(int), 28361da177e4SLinus Torvalds .mode = 0644, 28376d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 28381da177e4SLinus Torvalds }, 28391da177e4SLinus Torvalds { 28401da177e4SLinus Torvalds .procname = "min_adv_mss", 28414990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_min_advmss, 28421da177e4SLinus Torvalds .maxlen = sizeof(int), 28431da177e4SLinus Torvalds .mode = 0644, 2844f3d3f616SMin Zhang .proc_handler = proc_dointvec, 28451da177e4SLinus Torvalds }, 28461da177e4SLinus Torvalds { 28471da177e4SLinus Torvalds .procname = "gc_min_interval_ms", 28484990509fSDaniel Lezcano .data = &init_net.ipv6.sysctl.ip6_rt_gc_min_interval, 28491da177e4SLinus Torvalds .maxlen = sizeof(int), 28501da177e4SLinus Torvalds .mode = 0644, 28516d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_ms_jiffies, 28521da177e4SLinus Torvalds }, 2853f8572d8fSEric W. Biederman { } 28541da177e4SLinus Torvalds }; 28551da177e4SLinus Torvalds 28562c8c1e72SAlexey Dobriyan struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net) 2857760f2d01SDaniel Lezcano { 2858760f2d01SDaniel Lezcano struct ctl_table *table; 2859760f2d01SDaniel Lezcano 2860760f2d01SDaniel Lezcano table = kmemdup(ipv6_route_table_template, 2861760f2d01SDaniel Lezcano sizeof(ipv6_route_table_template), 2862760f2d01SDaniel Lezcano GFP_KERNEL); 28635ee09105SYOSHIFUJI Hideaki 28645ee09105SYOSHIFUJI Hideaki if (table) { 28655ee09105SYOSHIFUJI Hideaki table[0].data = &net->ipv6.sysctl.flush_delay; 2866c486da34SLucian Adrian Grijincu table[0].extra1 = net; 286786393e52SAlexey Dobriyan table[1].data = &net->ipv6.ip6_dst_ops.gc_thresh; 28685ee09105SYOSHIFUJI Hideaki table[2].data = &net->ipv6.sysctl.ip6_rt_max_size; 28695ee09105SYOSHIFUJI Hideaki table[3].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval; 28705ee09105SYOSHIFUJI Hideaki table[4].data = &net->ipv6.sysctl.ip6_rt_gc_timeout; 28715ee09105SYOSHIFUJI Hideaki table[5].data = &net->ipv6.sysctl.ip6_rt_gc_interval; 28725ee09105SYOSHIFUJI Hideaki table[6].data = &net->ipv6.sysctl.ip6_rt_gc_elasticity; 28735ee09105SYOSHIFUJI Hideaki table[7].data = &net->ipv6.sysctl.ip6_rt_mtu_expires; 28745ee09105SYOSHIFUJI Hideaki table[8].data = &net->ipv6.sysctl.ip6_rt_min_advmss; 28759c69fabeSAlexey Dobriyan table[9].data = &net->ipv6.sysctl.ip6_rt_gc_min_interval; 28765ee09105SYOSHIFUJI Hideaki } 28775ee09105SYOSHIFUJI Hideaki 2878760f2d01SDaniel Lezcano return table; 2879760f2d01SDaniel Lezcano } 28801da177e4SLinus Torvalds #endif 28811da177e4SLinus Torvalds 28822c8c1e72SAlexey Dobriyan static int __net_init ip6_route_net_init(struct net *net) 2883cdb18761SDaniel Lezcano { 2884633d424bSPavel Emelyanov int ret = -ENOMEM; 28858ed67789SDaniel Lezcano 288686393e52SAlexey Dobriyan memcpy(&net->ipv6.ip6_dst_ops, &ip6_dst_ops_template, 288786393e52SAlexey Dobriyan sizeof(net->ipv6.ip6_dst_ops)); 2888f2fc6a54SBenjamin Thery 2889fc66f95cSEric Dumazet if (dst_entries_init(&net->ipv6.ip6_dst_ops) < 0) 2890fc66f95cSEric Dumazet goto out_ip6_dst_ops; 2891fc66f95cSEric Dumazet 28928ed67789SDaniel Lezcano net->ipv6.ip6_null_entry = kmemdup(&ip6_null_entry_template, 28938ed67789SDaniel Lezcano sizeof(*net->ipv6.ip6_null_entry), 28948ed67789SDaniel Lezcano GFP_KERNEL); 28958ed67789SDaniel Lezcano if (!net->ipv6.ip6_null_entry) 2896fc66f95cSEric Dumazet goto out_ip6_dst_entries; 2897d8d1f30bSChangli Gao net->ipv6.ip6_null_entry->dst.path = 28988ed67789SDaniel Lezcano (struct dst_entry *)net->ipv6.ip6_null_entry; 2899d8d1f30bSChangli Gao net->ipv6.ip6_null_entry->dst.ops = &net->ipv6.ip6_dst_ops; 290062fa8a84SDavid S. Miller dst_init_metrics(&net->ipv6.ip6_null_entry->dst, 290162fa8a84SDavid S. Miller ip6_template_metrics, true); 29028ed67789SDaniel Lezcano 29038ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES 29048ed67789SDaniel Lezcano net->ipv6.ip6_prohibit_entry = kmemdup(&ip6_prohibit_entry_template, 29058ed67789SDaniel Lezcano sizeof(*net->ipv6.ip6_prohibit_entry), 29068ed67789SDaniel Lezcano GFP_KERNEL); 290768fffc67SPeter Zijlstra if (!net->ipv6.ip6_prohibit_entry) 290868fffc67SPeter Zijlstra goto out_ip6_null_entry; 2909d8d1f30bSChangli Gao net->ipv6.ip6_prohibit_entry->dst.path = 29108ed67789SDaniel Lezcano (struct dst_entry *)net->ipv6.ip6_prohibit_entry; 2911d8d1f30bSChangli Gao net->ipv6.ip6_prohibit_entry->dst.ops = &net->ipv6.ip6_dst_ops; 291262fa8a84SDavid S. Miller dst_init_metrics(&net->ipv6.ip6_prohibit_entry->dst, 291362fa8a84SDavid S. Miller ip6_template_metrics, true); 29148ed67789SDaniel Lezcano 29158ed67789SDaniel Lezcano net->ipv6.ip6_blk_hole_entry = kmemdup(&ip6_blk_hole_entry_template, 29168ed67789SDaniel Lezcano sizeof(*net->ipv6.ip6_blk_hole_entry), 29178ed67789SDaniel Lezcano GFP_KERNEL); 291868fffc67SPeter Zijlstra if (!net->ipv6.ip6_blk_hole_entry) 291968fffc67SPeter Zijlstra goto out_ip6_prohibit_entry; 2920d8d1f30bSChangli Gao net->ipv6.ip6_blk_hole_entry->dst.path = 29218ed67789SDaniel Lezcano (struct dst_entry *)net->ipv6.ip6_blk_hole_entry; 2922d8d1f30bSChangli Gao net->ipv6.ip6_blk_hole_entry->dst.ops = &net->ipv6.ip6_dst_ops; 292362fa8a84SDavid S. Miller dst_init_metrics(&net->ipv6.ip6_blk_hole_entry->dst, 292462fa8a84SDavid S. Miller ip6_template_metrics, true); 29258ed67789SDaniel Lezcano #endif 29268ed67789SDaniel Lezcano 2927b339a47cSPeter Zijlstra net->ipv6.sysctl.flush_delay = 0; 2928b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_max_size = 4096; 2929b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2; 2930b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ; 2931b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ; 2932b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_gc_elasticity = 9; 2933b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ; 2934b339a47cSPeter Zijlstra net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40; 2935b339a47cSPeter Zijlstra 29366891a346SBenjamin Thery net->ipv6.ip6_rt_gc_expire = 30*HZ; 29376891a346SBenjamin Thery 29388ed67789SDaniel Lezcano ret = 0; 29398ed67789SDaniel Lezcano out: 29408ed67789SDaniel Lezcano return ret; 2941f2fc6a54SBenjamin Thery 294268fffc67SPeter Zijlstra #ifdef CONFIG_IPV6_MULTIPLE_TABLES 294368fffc67SPeter Zijlstra out_ip6_prohibit_entry: 294468fffc67SPeter Zijlstra kfree(net->ipv6.ip6_prohibit_entry); 294568fffc67SPeter Zijlstra out_ip6_null_entry: 294668fffc67SPeter Zijlstra kfree(net->ipv6.ip6_null_entry); 294768fffc67SPeter Zijlstra #endif 2948fc66f95cSEric Dumazet out_ip6_dst_entries: 2949fc66f95cSEric Dumazet dst_entries_destroy(&net->ipv6.ip6_dst_ops); 2950f2fc6a54SBenjamin Thery out_ip6_dst_ops: 2951f2fc6a54SBenjamin Thery goto out; 2952cdb18761SDaniel Lezcano } 2953cdb18761SDaniel Lezcano 29542c8c1e72SAlexey Dobriyan static void __net_exit ip6_route_net_exit(struct net *net) 2955cdb18761SDaniel Lezcano { 29568ed67789SDaniel Lezcano kfree(net->ipv6.ip6_null_entry); 29578ed67789SDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES 29588ed67789SDaniel Lezcano kfree(net->ipv6.ip6_prohibit_entry); 29598ed67789SDaniel Lezcano kfree(net->ipv6.ip6_blk_hole_entry); 29608ed67789SDaniel Lezcano #endif 296141bb78b4SXiaotian Feng dst_entries_destroy(&net->ipv6.ip6_dst_ops); 2962cdb18761SDaniel Lezcano } 2963cdb18761SDaniel Lezcano 2964d189634eSThomas Graf static int __net_init ip6_route_net_init_late(struct net *net) 2965d189634eSThomas Graf { 2966d189634eSThomas Graf #ifdef CONFIG_PROC_FS 2967d189634eSThomas Graf proc_net_fops_create(net, "ipv6_route", 0, &ipv6_route_proc_fops); 2968d189634eSThomas Graf proc_net_fops_create(net, "rt6_stats", S_IRUGO, &rt6_stats_seq_fops); 2969d189634eSThomas Graf #endif 2970d189634eSThomas Graf return 0; 2971d189634eSThomas Graf } 2972d189634eSThomas Graf 2973d189634eSThomas Graf static void __net_exit ip6_route_net_exit_late(struct net *net) 2974d189634eSThomas Graf { 2975d189634eSThomas Graf #ifdef CONFIG_PROC_FS 2976d189634eSThomas Graf proc_net_remove(net, "ipv6_route"); 2977d189634eSThomas Graf proc_net_remove(net, "rt6_stats"); 2978d189634eSThomas Graf #endif 2979d189634eSThomas Graf } 2980d189634eSThomas Graf 2981cdb18761SDaniel Lezcano static struct pernet_operations ip6_route_net_ops = { 2982cdb18761SDaniel Lezcano .init = ip6_route_net_init, 2983cdb18761SDaniel Lezcano .exit = ip6_route_net_exit, 2984cdb18761SDaniel Lezcano }; 2985cdb18761SDaniel Lezcano 2986c3426b47SDavid S. Miller static int __net_init ipv6_inetpeer_init(struct net *net) 2987c3426b47SDavid S. Miller { 2988c3426b47SDavid S. Miller struct inet_peer_base *bp = kmalloc(sizeof(*bp), GFP_KERNEL); 2989c3426b47SDavid S. Miller 2990c3426b47SDavid S. Miller if (!bp) 2991c3426b47SDavid S. Miller return -ENOMEM; 2992c3426b47SDavid S. Miller inet_peer_base_init(bp); 2993c3426b47SDavid S. Miller net->ipv6.peers = bp; 2994c3426b47SDavid S. Miller return 0; 2995c3426b47SDavid S. Miller } 2996c3426b47SDavid S. Miller 2997c3426b47SDavid S. Miller static void __net_exit ipv6_inetpeer_exit(struct net *net) 2998c3426b47SDavid S. Miller { 2999c3426b47SDavid S. Miller struct inet_peer_base *bp = net->ipv6.peers; 3000c3426b47SDavid S. Miller 3001c3426b47SDavid S. Miller net->ipv6.peers = NULL; 300256a6b248SDavid S. Miller inetpeer_invalidate_tree(bp); 3003c3426b47SDavid S. Miller kfree(bp); 3004c3426b47SDavid S. Miller } 3005c3426b47SDavid S. Miller 30062b823f72SDavid S. Miller static struct pernet_operations ipv6_inetpeer_ops = { 3007c3426b47SDavid S. Miller .init = ipv6_inetpeer_init, 3008c3426b47SDavid S. Miller .exit = ipv6_inetpeer_exit, 3009c3426b47SDavid S. Miller }; 3010c3426b47SDavid S. Miller 3011d189634eSThomas Graf static struct pernet_operations ip6_route_net_late_ops = { 3012d189634eSThomas Graf .init = ip6_route_net_init_late, 3013d189634eSThomas Graf .exit = ip6_route_net_exit_late, 3014d189634eSThomas Graf }; 3015d189634eSThomas Graf 30168ed67789SDaniel Lezcano static struct notifier_block ip6_route_dev_notifier = { 30178ed67789SDaniel Lezcano .notifier_call = ip6_route_dev_notify, 30188ed67789SDaniel Lezcano .priority = 0, 30198ed67789SDaniel Lezcano }; 30208ed67789SDaniel Lezcano 3021433d49c3SDaniel Lezcano int __init ip6_route_init(void) 30221da177e4SLinus Torvalds { 3023433d49c3SDaniel Lezcano int ret; 3024433d49c3SDaniel Lezcano 30259a7ec3a9SDaniel Lezcano ret = -ENOMEM; 30269a7ec3a9SDaniel Lezcano ip6_dst_ops_template.kmem_cachep = 30279a7ec3a9SDaniel Lezcano kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0, 30289a7ec3a9SDaniel Lezcano SLAB_HWCACHE_ALIGN, NULL); 30299a7ec3a9SDaniel Lezcano if (!ip6_dst_ops_template.kmem_cachep) 3030c19a28e1SFernando Carrijo goto out; 303114e50e57SDavid S. Miller 3032fc66f95cSEric Dumazet ret = dst_entries_init(&ip6_dst_blackhole_ops); 30338ed67789SDaniel Lezcano if (ret) 3034bdb3289fSDaniel Lezcano goto out_kmem_cache; 3035bdb3289fSDaniel Lezcano 3036c3426b47SDavid S. Miller ret = register_pernet_subsys(&ipv6_inetpeer_ops); 3037c3426b47SDavid S. Miller if (ret) 3038e8803b6cSDavid S. Miller goto out_dst_entries; 30392a0c451aSThomas Graf 30407e52b33bSDavid S. Miller ret = register_pernet_subsys(&ip6_route_net_ops); 30417e52b33bSDavid S. Miller if (ret) 30427e52b33bSDavid S. Miller goto out_register_inetpeer; 3043c3426b47SDavid S. Miller 30445dc121e9SArnaud Ebalard ip6_dst_blackhole_ops.kmem_cachep = ip6_dst_ops_template.kmem_cachep; 30455dc121e9SArnaud Ebalard 30468ed67789SDaniel Lezcano /* Registering of the loopback is done before this portion of code, 30478ed67789SDaniel Lezcano * the loopback reference in rt6_info will not be taken, do it 30488ed67789SDaniel Lezcano * manually for init_net */ 3049d8d1f30bSChangli Gao init_net.ipv6.ip6_null_entry->dst.dev = init_net.loopback_dev; 30508ed67789SDaniel Lezcano init_net.ipv6.ip6_null_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); 3051bdb3289fSDaniel Lezcano #ifdef CONFIG_IPV6_MULTIPLE_TABLES 3052d8d1f30bSChangli Gao init_net.ipv6.ip6_prohibit_entry->dst.dev = init_net.loopback_dev; 30538ed67789SDaniel Lezcano init_net.ipv6.ip6_prohibit_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); 3054d8d1f30bSChangli Gao init_net.ipv6.ip6_blk_hole_entry->dst.dev = init_net.loopback_dev; 30558ed67789SDaniel Lezcano init_net.ipv6.ip6_blk_hole_entry->rt6i_idev = in6_dev_get(init_net.loopback_dev); 3056bdb3289fSDaniel Lezcano #endif 3057e8803b6cSDavid S. Miller ret = fib6_init(); 3058433d49c3SDaniel Lezcano if (ret) 30598ed67789SDaniel Lezcano goto out_register_subsys; 3060433d49c3SDaniel Lezcano 3061433d49c3SDaniel Lezcano ret = xfrm6_init(); 3062433d49c3SDaniel Lezcano if (ret) 3063e8803b6cSDavid S. Miller goto out_fib6_init; 3064c35b7e72SDaniel Lezcano 3065433d49c3SDaniel Lezcano ret = fib6_rules_init(); 3066433d49c3SDaniel Lezcano if (ret) 3067433d49c3SDaniel Lezcano goto xfrm6_init; 30687e5449c2SDaniel Lezcano 3069d189634eSThomas Graf ret = register_pernet_subsys(&ip6_route_net_late_ops); 3070d189634eSThomas Graf if (ret) 3071d189634eSThomas Graf goto fib6_rules_init; 3072d189634eSThomas Graf 3073433d49c3SDaniel Lezcano ret = -ENOBUFS; 3074c7ac8679SGreg Rose if (__rtnl_register(PF_INET6, RTM_NEWROUTE, inet6_rtm_newroute, NULL, NULL) || 3075c7ac8679SGreg Rose __rtnl_register(PF_INET6, RTM_DELROUTE, inet6_rtm_delroute, NULL, NULL) || 3076c7ac8679SGreg Rose __rtnl_register(PF_INET6, RTM_GETROUTE, inet6_rtm_getroute, NULL, NULL)) 3077d189634eSThomas Graf goto out_register_late_subsys; 3078433d49c3SDaniel Lezcano 30798ed67789SDaniel Lezcano ret = register_netdevice_notifier(&ip6_route_dev_notifier); 3080cdb18761SDaniel Lezcano if (ret) 3081d189634eSThomas Graf goto out_register_late_subsys; 30828ed67789SDaniel Lezcano 3083433d49c3SDaniel Lezcano out: 3084433d49c3SDaniel Lezcano return ret; 3085433d49c3SDaniel Lezcano 3086d189634eSThomas Graf out_register_late_subsys: 3087d189634eSThomas Graf unregister_pernet_subsys(&ip6_route_net_late_ops); 3088433d49c3SDaniel Lezcano fib6_rules_init: 3089433d49c3SDaniel Lezcano fib6_rules_cleanup(); 3090433d49c3SDaniel Lezcano xfrm6_init: 3091433d49c3SDaniel Lezcano xfrm6_fini(); 30922a0c451aSThomas Graf out_fib6_init: 30932a0c451aSThomas Graf fib6_gc_cleanup(); 30948ed67789SDaniel Lezcano out_register_subsys: 30958ed67789SDaniel Lezcano unregister_pernet_subsys(&ip6_route_net_ops); 30967e52b33bSDavid S. Miller out_register_inetpeer: 30977e52b33bSDavid S. Miller unregister_pernet_subsys(&ipv6_inetpeer_ops); 3098fc66f95cSEric Dumazet out_dst_entries: 3099fc66f95cSEric Dumazet dst_entries_destroy(&ip6_dst_blackhole_ops); 3100433d49c3SDaniel Lezcano out_kmem_cache: 3101f2fc6a54SBenjamin Thery kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep); 3102433d49c3SDaniel Lezcano goto out; 31031da177e4SLinus Torvalds } 31041da177e4SLinus Torvalds 31051da177e4SLinus Torvalds void ip6_route_cleanup(void) 31061da177e4SLinus Torvalds { 31078ed67789SDaniel Lezcano unregister_netdevice_notifier(&ip6_route_dev_notifier); 3108d189634eSThomas Graf unregister_pernet_subsys(&ip6_route_net_late_ops); 3109101367c2SThomas Graf fib6_rules_cleanup(); 31101da177e4SLinus Torvalds xfrm6_fini(); 31111da177e4SLinus Torvalds fib6_gc_cleanup(); 3112c3426b47SDavid S. Miller unregister_pernet_subsys(&ipv6_inetpeer_ops); 31138ed67789SDaniel Lezcano unregister_pernet_subsys(&ip6_route_net_ops); 311441bb78b4SXiaotian Feng dst_entries_destroy(&ip6_dst_blackhole_ops); 3115f2fc6a54SBenjamin Thery kmem_cache_destroy(ip6_dst_ops_template.kmem_cachep); 31161da177e4SLinus Torvalds } 3117