2 * Linux INET6 implementation
6 * Pedro Roque <roque@di.fc.ul.pt>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
16 * YOSHIFUJI Hideaki @USAGI
17 * reworked default router selection.
18 * - respect outgoing interface
19 * - select from (probably) reachable routers (i.e.
20 * routers in REACHABLE, STALE, DELAY or PROBE states).
21 * - always select the same router if it is (probably)
22 * reachable. otherwise, round-robin the list.
24 * Fixed routing subtrees.
27 #include <linux/capability.h>
28 #include <linux/errno.h>
29 #include <linux/types.h>
30 #include <linux/times.h>
31 #include <linux/socket.h>
32 #include <linux/sockios.h>
33 #include <linux/net.h>
34 #include <linux/route.h>
35 #include <linux/netdevice.h>
36 #include <linux/in6.h>
37 #include <linux/mroute6.h>
38 #include <linux/init.h>
39 #include <linux/if_arp.h>
40 #include <linux/proc_fs.h>
41 #include <linux/seq_file.h>
42 #include <linux/nsproxy.h>
43 #include <linux/slab.h>
44 #include <net/net_namespace.h>
47 #include <net/ip6_fib.h>
48 #include <net/ip6_route.h>
49 #include <net/ndisc.h>
50 #include <net/addrconf.h>
52 #include <linux/rtnetlink.h>
55 #include <net/netevent.h>
56 #include <net/netlink.h>
58 #include <asm/uaccess.h>
61 #include <linux/sysctl.h>
64 /* Set to 3 to get tracing. */
68 #define RDBG(x) printk x
69 #define RT6_TRACE(x...) printk(KERN_DEBUG x)
72 #define RT6_TRACE(x...) do { ; } while (0)
75 #define CLONE_OFFLINK_ROUTE 0
77 static struct rt6_info
* ip6_rt_copy(struct rt6_info
*ort
);
78 static struct dst_entry
*ip6_dst_check(struct dst_entry
*dst
, u32 cookie
);
79 static unsigned int ip6_default_advmss(const struct dst_entry
*dst
);
80 static unsigned int ip6_default_mtu(const struct dst_entry
*dst
);
81 static struct dst_entry
*ip6_negative_advice(struct dst_entry
*);
82 static void ip6_dst_destroy(struct dst_entry
*);
83 static void ip6_dst_ifdown(struct dst_entry
*,
84 struct net_device
*dev
, int how
);
85 static int ip6_dst_gc(struct dst_ops
*ops
);
87 static int ip6_pkt_discard(struct sk_buff
*skb
);
88 static int ip6_pkt_discard_out(struct sk_buff
*skb
);
89 static void ip6_link_failure(struct sk_buff
*skb
);
90 static void ip6_rt_update_pmtu(struct dst_entry
*dst
, u32 mtu
);
92 #ifdef CONFIG_IPV6_ROUTE_INFO
93 static struct rt6_info
*rt6_add_route_info(struct net
*net
,
94 struct in6_addr
*prefix
, int prefixlen
,
95 struct in6_addr
*gwaddr
, int ifindex
,
97 static struct rt6_info
*rt6_get_route_info(struct net
*net
,
98 struct in6_addr
*prefix
, int prefixlen
,
99 struct in6_addr
*gwaddr
, int ifindex
);
102 static struct dst_ops ip6_dst_ops_template
= {
104 .protocol
= cpu_to_be16(ETH_P_IPV6
),
107 .check
= ip6_dst_check
,
108 .default_advmss
= ip6_default_advmss
,
109 .default_mtu
= ip6_default_mtu
,
110 .destroy
= ip6_dst_destroy
,
111 .ifdown
= ip6_dst_ifdown
,
112 .negative_advice
= ip6_negative_advice
,
113 .link_failure
= ip6_link_failure
,
114 .update_pmtu
= ip6_rt_update_pmtu
,
115 .local_out
= __ip6_local_out
,
118 static void ip6_rt_blackhole_update_pmtu(struct dst_entry
*dst
, u32 mtu
)
122 static struct dst_ops ip6_dst_blackhole_ops
= {
124 .protocol
= cpu_to_be16(ETH_P_IPV6
),
125 .destroy
= ip6_dst_destroy
,
126 .check
= ip6_dst_check
,
127 .update_pmtu
= ip6_rt_blackhole_update_pmtu
,
130 static struct rt6_info ip6_null_entry_template
= {
132 .__refcnt
= ATOMIC_INIT(1),
135 .error
= -ENETUNREACH
,
136 .input
= ip6_pkt_discard
,
137 .output
= ip6_pkt_discard_out
,
139 .rt6i_flags
= (RTF_REJECT
| RTF_NONEXTHOP
),
140 .rt6i_protocol
= RTPROT_KERNEL
,
141 .rt6i_metric
= ~(u32
) 0,
142 .rt6i_ref
= ATOMIC_INIT(1),
145 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
147 static int ip6_pkt_prohibit(struct sk_buff
*skb
);
148 static int ip6_pkt_prohibit_out(struct sk_buff
*skb
);
150 static struct rt6_info ip6_prohibit_entry_template
= {
152 .__refcnt
= ATOMIC_INIT(1),
156 .input
= ip6_pkt_prohibit
,
157 .output
= ip6_pkt_prohibit_out
,
159 .rt6i_flags
= (RTF_REJECT
| RTF_NONEXTHOP
),
160 .rt6i_protocol
= RTPROT_KERNEL
,
161 .rt6i_metric
= ~(u32
) 0,
162 .rt6i_ref
= ATOMIC_INIT(1),
165 static struct rt6_info ip6_blk_hole_entry_template
= {
167 .__refcnt
= ATOMIC_INIT(1),
171 .input
= dst_discard
,
172 .output
= dst_discard
,
174 .rt6i_flags
= (RTF_REJECT
| RTF_NONEXTHOP
),
175 .rt6i_protocol
= RTPROT_KERNEL
,
176 .rt6i_metric
= ~(u32
) 0,
177 .rt6i_ref
= ATOMIC_INIT(1),
182 /* allocate dst with ip6_dst_ops */
183 static inline struct rt6_info
*ip6_dst_alloc(struct dst_ops
*ops
)
185 return (struct rt6_info
*)dst_alloc(ops
);
188 static void ip6_dst_destroy(struct dst_entry
*dst
)
190 struct rt6_info
*rt
= (struct rt6_info
*)dst
;
191 struct inet6_dev
*idev
= rt
->rt6i_idev
;
192 struct inet_peer
*peer
= rt
->rt6i_peer
;
195 rt
->rt6i_idev
= NULL
;
199 BUG_ON(!(rt
->rt6i_flags
& RTF_CACHE
));
200 rt
->rt6i_peer
= NULL
;
205 void rt6_bind_peer(struct rt6_info
*rt
, int create
)
207 struct inet_peer
*peer
;
209 if (WARN_ON(!(rt
->rt6i_flags
& RTF_CACHE
)))
212 peer
= inet_getpeer_v6(&rt
->rt6i_dst
.addr
, create
);
213 if (peer
&& cmpxchg(&rt
->rt6i_peer
, NULL
, peer
) != NULL
)
217 static void ip6_dst_ifdown(struct dst_entry
*dst
, struct net_device
*dev
,
220 struct rt6_info
*rt
= (struct rt6_info
*)dst
;
221 struct inet6_dev
*idev
= rt
->rt6i_idev
;
222 struct net_device
*loopback_dev
=
223 dev_net(dev
)->loopback_dev
;
225 if (dev
!= loopback_dev
&& idev
!= NULL
&& idev
->dev
== dev
) {
226 struct inet6_dev
*loopback_idev
=
227 in6_dev_get(loopback_dev
);
228 if (loopback_idev
!= NULL
) {
229 rt
->rt6i_idev
= loopback_idev
;
235 static __inline__
int rt6_check_expired(const struct rt6_info
*rt
)
237 return (rt
->rt6i_flags
& RTF_EXPIRES
) &&
238 time_after(jiffies
, rt
->rt6i_expires
);
241 static inline int rt6_need_strict(struct in6_addr
*daddr
)
243 return ipv6_addr_type(daddr
) &
244 (IPV6_ADDR_MULTICAST
| IPV6_ADDR_LINKLOCAL
| IPV6_ADDR_LOOPBACK
);
248 * Route lookup. Any table->tb6_lock is implied.
251 static inline struct rt6_info
*rt6_device_match(struct net
*net
,
253 struct in6_addr
*saddr
,
257 struct rt6_info
*local
= NULL
;
258 struct rt6_info
*sprt
;
260 if (!oif
&& ipv6_addr_any(saddr
))
263 for (sprt
= rt
; sprt
; sprt
= sprt
->dst
.rt6_next
) {
264 struct net_device
*dev
= sprt
->rt6i_dev
;
267 if (dev
->ifindex
== oif
)
269 if (dev
->flags
& IFF_LOOPBACK
) {
270 if (sprt
->rt6i_idev
== NULL
||
271 sprt
->rt6i_idev
->dev
->ifindex
!= oif
) {
272 if (flags
& RT6_LOOKUP_F_IFACE
&& oif
)
274 if (local
&& (!oif
||
275 local
->rt6i_idev
->dev
->ifindex
== oif
))
281 if (ipv6_chk_addr(net
, saddr
, dev
,
282 flags
& RT6_LOOKUP_F_IFACE
))
291 if (flags
& RT6_LOOKUP_F_IFACE
)
292 return net
->ipv6
.ip6_null_entry
;
298 #ifdef CONFIG_IPV6_ROUTER_PREF
299 static void rt6_probe(struct rt6_info
*rt
)
301 struct neighbour
*neigh
= rt
? rt
->rt6i_nexthop
: NULL
;
303 * Okay, this does not seem to be appropriate
304 * for now, however, we need to check if it
305 * is really so; aka Router Reachability Probing.
307 * Router Reachability Probe MUST be rate-limited
308 * to no more than one per minute.
310 if (!neigh
|| (neigh
->nud_state
& NUD_VALID
))
312 read_lock_bh(&neigh
->lock
);
313 if (!(neigh
->nud_state
& NUD_VALID
) &&
314 time_after(jiffies
, neigh
->updated
+ rt
->rt6i_idev
->cnf
.rtr_probe_interval
)) {
315 struct in6_addr mcaddr
;
316 struct in6_addr
*target
;
318 neigh
->updated
= jiffies
;
319 read_unlock_bh(&neigh
->lock
);
321 target
= (struct in6_addr
*)&neigh
->primary_key
;
322 addrconf_addr_solict_mult(target
, &mcaddr
);
323 ndisc_send_ns(rt
->rt6i_dev
, NULL
, target
, &mcaddr
, NULL
);
325 read_unlock_bh(&neigh
->lock
);
328 static inline void rt6_probe(struct rt6_info
*rt
)
334 * Default Router Selection (RFC 2461 6.3.6)
336 static inline int rt6_check_dev(struct rt6_info
*rt
, int oif
)
338 struct net_device
*dev
= rt
->rt6i_dev
;
339 if (!oif
|| dev
->ifindex
== oif
)
341 if ((dev
->flags
& IFF_LOOPBACK
) &&
342 rt
->rt6i_idev
&& rt
->rt6i_idev
->dev
->ifindex
== oif
)
347 static inline int rt6_check_neigh(struct rt6_info
*rt
)
349 struct neighbour
*neigh
= rt
->rt6i_nexthop
;
351 if (rt
->rt6i_flags
& RTF_NONEXTHOP
||
352 !(rt
->rt6i_flags
& RTF_GATEWAY
))
355 read_lock_bh(&neigh
->lock
);
356 if (neigh
->nud_state
& NUD_VALID
)
358 #ifdef CONFIG_IPV6_ROUTER_PREF
359 else if (neigh
->nud_state
& NUD_FAILED
)
364 read_unlock_bh(&neigh
->lock
);
370 static int rt6_score_route(struct rt6_info
*rt
, int oif
,
375 m
= rt6_check_dev(rt
, oif
);
376 if (!m
&& (strict
& RT6_LOOKUP_F_IFACE
))
378 #ifdef CONFIG_IPV6_ROUTER_PREF
379 m
|= IPV6_DECODE_PREF(IPV6_EXTRACT_PREF(rt
->rt6i_flags
)) << 2;
381 n
= rt6_check_neigh(rt
);
382 if (!n
&& (strict
& RT6_LOOKUP_F_REACHABLE
))
387 static struct rt6_info
*find_match(struct rt6_info
*rt
, int oif
, int strict
,
388 int *mpri
, struct rt6_info
*match
)
392 if (rt6_check_expired(rt
))
395 m
= rt6_score_route(rt
, oif
, strict
);
400 if (strict
& RT6_LOOKUP_F_REACHABLE
)
404 } else if (strict
& RT6_LOOKUP_F_REACHABLE
) {
412 static struct rt6_info
*find_rr_leaf(struct fib6_node
*fn
,
413 struct rt6_info
*rr_head
,
414 u32 metric
, int oif
, int strict
)
416 struct rt6_info
*rt
, *match
;
420 for (rt
= rr_head
; rt
&& rt
->rt6i_metric
== metric
;
421 rt
= rt
->dst
.rt6_next
)
422 match
= find_match(rt
, oif
, strict
, &mpri
, match
);
423 for (rt
= fn
->leaf
; rt
&& rt
!= rr_head
&& rt
->rt6i_metric
== metric
;
424 rt
= rt
->dst
.rt6_next
)
425 match
= find_match(rt
, oif
, strict
, &mpri
, match
);
430 static struct rt6_info
*rt6_select(struct fib6_node
*fn
, int oif
, int strict
)
432 struct rt6_info
*match
, *rt0
;
435 RT6_TRACE("%s(fn->leaf=%p, oif=%d)\n",
436 __func__
, fn
->leaf
, oif
);
440 fn
->rr_ptr
= rt0
= fn
->leaf
;
442 match
= find_rr_leaf(fn
, rt0
, rt0
->rt6i_metric
, oif
, strict
);
445 (strict
& RT6_LOOKUP_F_REACHABLE
)) {
446 struct rt6_info
*next
= rt0
->dst
.rt6_next
;
448 /* no entries matched; do round-robin */
449 if (!next
|| next
->rt6i_metric
!= rt0
->rt6i_metric
)
456 RT6_TRACE("%s() => %p\n",
459 net
= dev_net(rt0
->rt6i_dev
);
460 return match
? match
: net
->ipv6
.ip6_null_entry
;
463 #ifdef CONFIG_IPV6_ROUTE_INFO
464 int rt6_route_rcv(struct net_device
*dev
, u8
*opt
, int len
,
465 struct in6_addr
*gwaddr
)
467 struct net
*net
= dev_net(dev
);
468 struct route_info
*rinfo
= (struct route_info
*) opt
;
469 struct in6_addr prefix_buf
, *prefix
;
471 unsigned long lifetime
;
474 if (len
< sizeof(struct route_info
)) {
478 /* Sanity check for prefix_len and length */
479 if (rinfo
->length
> 3) {
481 } else if (rinfo
->prefix_len
> 128) {
483 } else if (rinfo
->prefix_len
> 64) {
484 if (rinfo
->length
< 2) {
487 } else if (rinfo
->prefix_len
> 0) {
488 if (rinfo
->length
< 1) {
493 pref
= rinfo
->route_pref
;
494 if (pref
== ICMPV6_ROUTER_PREF_INVALID
)
497 lifetime
= addrconf_timeout_fixup(ntohl(rinfo
->lifetime
), HZ
);
499 if (rinfo
->length
== 3)
500 prefix
= (struct in6_addr
*)rinfo
->prefix
;
502 /* this function is safe */
503 ipv6_addr_prefix(&prefix_buf
,
504 (struct in6_addr
*)rinfo
->prefix
,
506 prefix
= &prefix_buf
;
509 rt
= rt6_get_route_info(net
, prefix
, rinfo
->prefix_len
, gwaddr
,
512 if (rt
&& !lifetime
) {
518 rt
= rt6_add_route_info(net
, prefix
, rinfo
->prefix_len
, gwaddr
, dev
->ifindex
,
521 rt
->rt6i_flags
= RTF_ROUTEINFO
|
522 (rt
->rt6i_flags
& ~RTF_PREF_MASK
) | RTF_PREF(pref
);
525 if (!addrconf_finite_timeout(lifetime
)) {
526 rt
->rt6i_flags
&= ~RTF_EXPIRES
;
528 rt
->rt6i_expires
= jiffies
+ HZ
* lifetime
;
529 rt
->rt6i_flags
|= RTF_EXPIRES
;
531 dst_release(&rt
->dst
);
537 #define BACKTRACK(__net, saddr) \
539 if (rt == __net->ipv6.ip6_null_entry) { \
540 struct fib6_node *pn; \
542 if (fn->fn_flags & RTN_TL_ROOT) \
545 if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) \
546 fn = fib6_lookup(FIB6_SUBTREE(pn), NULL, saddr); \
549 if (fn->fn_flags & RTN_RTINFO) \
555 static struct rt6_info
*ip6_pol_route_lookup(struct net
*net
,
556 struct fib6_table
*table
,
557 struct flowi
*fl
, int flags
)
559 struct fib6_node
*fn
;
562 read_lock_bh(&table
->tb6_lock
);
563 fn
= fib6_lookup(&table
->tb6_root
, &fl
->fl6_dst
, &fl
->fl6_src
);
566 rt
= rt6_device_match(net
, rt
, &fl
->fl6_src
, fl
->oif
, flags
);
567 BACKTRACK(net
, &fl
->fl6_src
);
569 dst_use(&rt
->dst
, jiffies
);
570 read_unlock_bh(&table
->tb6_lock
);
575 struct rt6_info
*rt6_lookup(struct net
*net
, const struct in6_addr
*daddr
,
576 const struct in6_addr
*saddr
, int oif
, int strict
)
582 struct dst_entry
*dst
;
583 int flags
= strict
? RT6_LOOKUP_F_IFACE
: 0;
586 memcpy(&fl
.fl6_src
, saddr
, sizeof(*saddr
));
587 flags
|= RT6_LOOKUP_F_HAS_SADDR
;
590 dst
= fib6_rule_lookup(net
, &fl
, flags
, ip6_pol_route_lookup
);
592 return (struct rt6_info
*) dst
;
599 EXPORT_SYMBOL(rt6_lookup
);
601 /* ip6_ins_rt is called with FREE table->tb6_lock.
602 It takes new route entry, the addition fails by any reason the
603 route is freed. In any case, if caller does not hold it, it may
607 static int __ip6_ins_rt(struct rt6_info
*rt
, struct nl_info
*info
)
610 struct fib6_table
*table
;
612 table
= rt
->rt6i_table
;
613 write_lock_bh(&table
->tb6_lock
);
614 err
= fib6_add(&table
->tb6_root
, rt
, info
);
615 write_unlock_bh(&table
->tb6_lock
);
620 int ip6_ins_rt(struct rt6_info
*rt
)
622 struct nl_info info
= {
623 .nl_net
= dev_net(rt
->rt6i_dev
),
625 return __ip6_ins_rt(rt
, &info
);
628 static struct rt6_info
*rt6_alloc_cow(struct rt6_info
*ort
, struct in6_addr
*daddr
,
629 struct in6_addr
*saddr
)
637 rt
= ip6_rt_copy(ort
);
640 struct neighbour
*neigh
;
641 int attempts
= !in_softirq();
643 if (!(rt
->rt6i_flags
&RTF_GATEWAY
)) {
644 if (rt
->rt6i_dst
.plen
!= 128 &&
645 ipv6_addr_equal(&rt
->rt6i_dst
.addr
, daddr
))
646 rt
->rt6i_flags
|= RTF_ANYCAST
;
647 ipv6_addr_copy(&rt
->rt6i_gateway
, daddr
);
650 ipv6_addr_copy(&rt
->rt6i_dst
.addr
, daddr
);
651 rt
->rt6i_dst
.plen
= 128;
652 rt
->rt6i_flags
|= RTF_CACHE
;
653 rt
->dst
.flags
|= DST_HOST
;
655 #ifdef CONFIG_IPV6_SUBTREES
656 if (rt
->rt6i_src
.plen
&& saddr
) {
657 ipv6_addr_copy(&rt
->rt6i_src
.addr
, saddr
);
658 rt
->rt6i_src
.plen
= 128;
663 neigh
= ndisc_get_neigh(rt
->rt6i_dev
, &rt
->rt6i_gateway
);
665 struct net
*net
= dev_net(rt
->rt6i_dev
);
666 int saved_rt_min_interval
=
667 net
->ipv6
.sysctl
.ip6_rt_gc_min_interval
;
668 int saved_rt_elasticity
=
669 net
->ipv6
.sysctl
.ip6_rt_gc_elasticity
;
671 if (attempts
-- > 0) {
672 net
->ipv6
.sysctl
.ip6_rt_gc_elasticity
= 1;
673 net
->ipv6
.sysctl
.ip6_rt_gc_min_interval
= 0;
675 ip6_dst_gc(&net
->ipv6
.ip6_dst_ops
);
677 net
->ipv6
.sysctl
.ip6_rt_gc_elasticity
=
679 net
->ipv6
.sysctl
.ip6_rt_gc_min_interval
=
680 saved_rt_min_interval
;
686 "ipv6: Neighbour table overflow.\n");
690 rt
->rt6i_nexthop
= neigh
;
697 static struct rt6_info
*rt6_alloc_clone(struct rt6_info
*ort
, struct in6_addr
*daddr
)
699 struct rt6_info
*rt
= ip6_rt_copy(ort
);
701 ipv6_addr_copy(&rt
->rt6i_dst
.addr
, daddr
);
702 rt
->rt6i_dst
.plen
= 128;
703 rt
->rt6i_flags
|= RTF_CACHE
;
704 rt
->dst
.flags
|= DST_HOST
;
705 rt
->rt6i_nexthop
= neigh_clone(ort
->rt6i_nexthop
);
710 static struct rt6_info
*ip6_pol_route(struct net
*net
, struct fib6_table
*table
, int oif
,
711 struct flowi
*fl
, int flags
)
713 struct fib6_node
*fn
;
714 struct rt6_info
*rt
, *nrt
;
718 int reachable
= net
->ipv6
.devconf_all
->forwarding
? 0 : RT6_LOOKUP_F_REACHABLE
;
720 strict
|= flags
& RT6_LOOKUP_F_IFACE
;
723 read_lock_bh(&table
->tb6_lock
);
726 fn
= fib6_lookup(&table
->tb6_root
, &fl
->fl6_dst
, &fl
->fl6_src
);
729 rt
= rt6_select(fn
, oif
, strict
| reachable
);
731 BACKTRACK(net
, &fl
->fl6_src
);
732 if (rt
== net
->ipv6
.ip6_null_entry
||
733 rt
->rt6i_flags
& RTF_CACHE
)
737 read_unlock_bh(&table
->tb6_lock
);
739 if (!rt
->rt6i_nexthop
&& !(rt
->rt6i_flags
& RTF_NONEXTHOP
))
740 nrt
= rt6_alloc_cow(rt
, &fl
->fl6_dst
, &fl
->fl6_src
);
742 #if CLONE_OFFLINK_ROUTE
743 nrt
= rt6_alloc_clone(rt
, &fl
->fl6_dst
);
749 dst_release(&rt
->dst
);
750 rt
= nrt
? : net
->ipv6
.ip6_null_entry
;
754 err
= ip6_ins_rt(nrt
);
763 * Race condition! In the gap, when table->tb6_lock was
764 * released someone could insert this route. Relookup.
766 dst_release(&rt
->dst
);
775 read_unlock_bh(&table
->tb6_lock
);
777 rt
->dst
.lastuse
= jiffies
;
783 static struct rt6_info
*ip6_pol_route_input(struct net
*net
, struct fib6_table
*table
,
784 struct flowi
*fl
, int flags
)
786 return ip6_pol_route(net
, table
, fl
->iif
, fl
, flags
);
789 void ip6_route_input(struct sk_buff
*skb
)
791 struct ipv6hdr
*iph
= ipv6_hdr(skb
);
792 struct net
*net
= dev_net(skb
->dev
);
793 int flags
= RT6_LOOKUP_F_HAS_SADDR
;
795 .iif
= skb
->dev
->ifindex
,
796 .fl6_dst
= iph
->daddr
,
797 .fl6_src
= iph
->saddr
,
798 .fl6_flowlabel
= (* (__be32
*) iph
)&IPV6_FLOWINFO_MASK
,
800 .proto
= iph
->nexthdr
,
803 if (rt6_need_strict(&iph
->daddr
) && skb
->dev
->type
!= ARPHRD_PIMREG
)
804 flags
|= RT6_LOOKUP_F_IFACE
;
806 skb_dst_set(skb
, fib6_rule_lookup(net
, &fl
, flags
, ip6_pol_route_input
));
809 static struct rt6_info
*ip6_pol_route_output(struct net
*net
, struct fib6_table
*table
,
810 struct flowi
*fl
, int flags
)
812 return ip6_pol_route(net
, table
, fl
->oif
, fl
, flags
);
815 struct dst_entry
* ip6_route_output(struct net
*net
, struct sock
*sk
,
820 if ((sk
&& sk
->sk_bound_dev_if
) || rt6_need_strict(&fl
->fl6_dst
))
821 flags
|= RT6_LOOKUP_F_IFACE
;
823 if (!ipv6_addr_any(&fl
->fl6_src
))
824 flags
|= RT6_LOOKUP_F_HAS_SADDR
;
826 flags
|= rt6_srcprefs2flags(inet6_sk(sk
)->srcprefs
);
828 return fib6_rule_lookup(net
, fl
, flags
, ip6_pol_route_output
);
831 EXPORT_SYMBOL(ip6_route_output
);
833 int ip6_dst_blackhole(struct sock
*sk
, struct dst_entry
**dstp
, struct flowi
*fl
)
835 struct rt6_info
*ort
= (struct rt6_info
*) *dstp
;
836 struct rt6_info
*rt
= (struct rt6_info
*)
837 dst_alloc(&ip6_dst_blackhole_ops
);
838 struct dst_entry
*new = NULL
;
843 atomic_set(&new->__refcnt
, 1);
845 new->input
= dst_discard
;
846 new->output
= dst_discard
;
848 dst_copy_metrics(new, &ort
->dst
);
849 new->dev
= ort
->dst
.dev
;
852 rt
->rt6i_idev
= ort
->rt6i_idev
;
854 in6_dev_hold(rt
->rt6i_idev
);
855 rt
->rt6i_expires
= 0;
857 ipv6_addr_copy(&rt
->rt6i_gateway
, &ort
->rt6i_gateway
);
858 rt
->rt6i_flags
= ort
->rt6i_flags
& ~RTF_EXPIRES
;
861 memcpy(&rt
->rt6i_dst
, &ort
->rt6i_dst
, sizeof(struct rt6key
));
862 #ifdef CONFIG_IPV6_SUBTREES
863 memcpy(&rt
->rt6i_src
, &ort
->rt6i_src
, sizeof(struct rt6key
));
871 return new ? 0 : -ENOMEM
;
873 EXPORT_SYMBOL_GPL(ip6_dst_blackhole
);
876 * Destination cache support functions
879 static struct dst_entry
*ip6_dst_check(struct dst_entry
*dst
, u32 cookie
)
883 rt
= (struct rt6_info
*) dst
;
885 if (rt
->rt6i_node
&& (rt
->rt6i_node
->fn_sernum
== cookie
))
891 static struct dst_entry
*ip6_negative_advice(struct dst_entry
*dst
)
893 struct rt6_info
*rt
= (struct rt6_info
*) dst
;
896 if (rt
->rt6i_flags
& RTF_CACHE
) {
897 if (rt6_check_expired(rt
)) {
909 static void ip6_link_failure(struct sk_buff
*skb
)
913 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_ADDR_UNREACH
, 0);
915 rt
= (struct rt6_info
*) skb_dst(skb
);
917 if (rt
->rt6i_flags
&RTF_CACHE
) {
918 dst_set_expires(&rt
->dst
, 0);
919 rt
->rt6i_flags
|= RTF_EXPIRES
;
920 } else if (rt
->rt6i_node
&& (rt
->rt6i_flags
& RTF_DEFAULT
))
921 rt
->rt6i_node
->fn_sernum
= -1;
925 static void ip6_rt_update_pmtu(struct dst_entry
*dst
, u32 mtu
)
927 struct rt6_info
*rt6
= (struct rt6_info
*)dst
;
929 if (mtu
< dst_mtu(dst
) && rt6
->rt6i_dst
.plen
== 128) {
930 rt6
->rt6i_flags
|= RTF_MODIFIED
;
931 if (mtu
< IPV6_MIN_MTU
) {
932 u32 features
= dst_metric(dst
, RTAX_FEATURES
);
934 features
|= RTAX_FEATURE_ALLFRAG
;
935 dst_metric_set(dst
, RTAX_FEATURES
, features
);
937 dst_metric_set(dst
, RTAX_MTU
, mtu
);
938 call_netevent_notifiers(NETEVENT_PMTU_UPDATE
, dst
);
942 static unsigned int ip6_default_advmss(const struct dst_entry
*dst
)
944 struct net_device
*dev
= dst
->dev
;
945 unsigned int mtu
= dst_mtu(dst
);
946 struct net
*net
= dev_net(dev
);
948 mtu
-= sizeof(struct ipv6hdr
) + sizeof(struct tcphdr
);
950 if (mtu
< net
->ipv6
.sysctl
.ip6_rt_min_advmss
)
951 mtu
= net
->ipv6
.sysctl
.ip6_rt_min_advmss
;
954 * Maximal non-jumbo IPv6 payload is IPV6_MAXPLEN and
955 * corresponding MSS is IPV6_MAXPLEN - tcp_header_size.
956 * IPV6_MAXPLEN is also valid and means: "any MSS,
957 * rely only on pmtu discovery"
959 if (mtu
> IPV6_MAXPLEN
- sizeof(struct tcphdr
))
964 static unsigned int ip6_default_mtu(const struct dst_entry
*dst
)
966 unsigned int mtu
= IPV6_MIN_MTU
;
967 struct inet6_dev
*idev
;
970 idev
= __in6_dev_get(dst
->dev
);
972 mtu
= idev
->cnf
.mtu6
;
978 static struct dst_entry
*icmp6_dst_gc_list
;
979 static DEFINE_SPINLOCK(icmp6_dst_lock
);
981 struct dst_entry
*icmp6_dst_alloc(struct net_device
*dev
,
982 struct neighbour
*neigh
,
983 const struct in6_addr
*addr
)
986 struct inet6_dev
*idev
= in6_dev_get(dev
);
987 struct net
*net
= dev_net(dev
);
989 if (unlikely(idev
== NULL
))
992 rt
= ip6_dst_alloc(&net
->ipv6
.ip6_dst_ops
);
993 if (unlikely(rt
== NULL
)) {
1002 neigh
= ndisc_get_neigh(dev
, addr
);
1008 rt
->rt6i_idev
= idev
;
1009 rt
->rt6i_nexthop
= neigh
;
1010 atomic_set(&rt
->dst
.__refcnt
, 1);
1011 dst_metric_set(&rt
->dst
, RTAX_HOPLIMIT
, 255);
1012 rt
->dst
.output
= ip6_output
;
1014 #if 0 /* there's no chance to use these for ndisc */
1015 rt
->dst
.flags
= ipv6_addr_type(addr
) & IPV6_ADDR_UNICAST
1018 ipv6_addr_copy(&rt
->rt6i_dst
.addr
, addr
);
1019 rt
->rt6i_dst
.plen
= 128;
1022 spin_lock_bh(&icmp6_dst_lock
);
1023 rt
->dst
.next
= icmp6_dst_gc_list
;
1024 icmp6_dst_gc_list
= &rt
->dst
;
1025 spin_unlock_bh(&icmp6_dst_lock
);
1027 fib6_force_start_gc(net
);
1033 int icmp6_dst_gc(void)
1035 struct dst_entry
*dst
, *next
, **pprev
;
1040 spin_lock_bh(&icmp6_dst_lock
);
1041 pprev
= &icmp6_dst_gc_list
;
1043 while ((dst
= *pprev
) != NULL
) {
1044 if (!atomic_read(&dst
->__refcnt
)) {
1053 spin_unlock_bh(&icmp6_dst_lock
);
1058 static void icmp6_clean_all(int (*func
)(struct rt6_info
*rt
, void *arg
),
1061 struct dst_entry
*dst
, **pprev
;
1063 spin_lock_bh(&icmp6_dst_lock
);
1064 pprev
= &icmp6_dst_gc_list
;
1065 while ((dst
= *pprev
) != NULL
) {
1066 struct rt6_info
*rt
= (struct rt6_info
*) dst
;
1067 if (func(rt
, arg
)) {
1074 spin_unlock_bh(&icmp6_dst_lock
);
1077 static int ip6_dst_gc(struct dst_ops
*ops
)
1079 unsigned long now
= jiffies
;
1080 struct net
*net
= container_of(ops
, struct net
, ipv6
.ip6_dst_ops
);
1081 int rt_min_interval
= net
->ipv6
.sysctl
.ip6_rt_gc_min_interval
;
1082 int rt_max_size
= net
->ipv6
.sysctl
.ip6_rt_max_size
;
1083 int rt_elasticity
= net
->ipv6
.sysctl
.ip6_rt_gc_elasticity
;
1084 int rt_gc_timeout
= net
->ipv6
.sysctl
.ip6_rt_gc_timeout
;
1085 unsigned long rt_last_gc
= net
->ipv6
.ip6_rt_last_gc
;
1088 entries
= dst_entries_get_fast(ops
);
1089 if (time_after(rt_last_gc
+ rt_min_interval
, now
) &&
1090 entries
<= rt_max_size
)
1093 net
->ipv6
.ip6_rt_gc_expire
++;
1094 fib6_run_gc(net
->ipv6
.ip6_rt_gc_expire
, net
);
1095 net
->ipv6
.ip6_rt_last_gc
= now
;
1096 entries
= dst_entries_get_slow(ops
);
1097 if (entries
< ops
->gc_thresh
)
1098 net
->ipv6
.ip6_rt_gc_expire
= rt_gc_timeout
>>1;
1100 net
->ipv6
.ip6_rt_gc_expire
-= net
->ipv6
.ip6_rt_gc_expire
>>rt_elasticity
;
1101 return entries
> rt_max_size
;
1104 /* Clean host part of a prefix. Not necessary in radix tree,
1105 but results in cleaner routing tables.
1107 Remove it only when all the things will work!
1110 int ip6_dst_hoplimit(struct dst_entry
*dst
)
1112 int hoplimit
= dst_metric_raw(dst
, RTAX_HOPLIMIT
);
1113 if (hoplimit
== 0) {
1114 struct net_device
*dev
= dst
->dev
;
1115 struct inet6_dev
*idev
;
1118 idev
= __in6_dev_get(dev
);
1120 hoplimit
= idev
->cnf
.hop_limit
;
1122 hoplimit
= dev_net(dev
)->ipv6
.devconf_all
->hop_limit
;
1127 EXPORT_SYMBOL(ip6_dst_hoplimit
);
1133 int ip6_route_add(struct fib6_config
*cfg
)
1136 struct net
*net
= cfg
->fc_nlinfo
.nl_net
;
1137 struct rt6_info
*rt
= NULL
;
1138 struct net_device
*dev
= NULL
;
1139 struct inet6_dev
*idev
= NULL
;
1140 struct fib6_table
*table
;
1143 if (cfg
->fc_dst_len
> 128 || cfg
->fc_src_len
> 128)
1145 #ifndef CONFIG_IPV6_SUBTREES
1146 if (cfg
->fc_src_len
)
1149 if (cfg
->fc_ifindex
) {
1151 dev
= dev_get_by_index(net
, cfg
->fc_ifindex
);
1154 idev
= in6_dev_get(dev
);
1159 if (cfg
->fc_metric
== 0)
1160 cfg
->fc_metric
= IP6_RT_PRIO_USER
;
1162 table
= fib6_new_table(net
, cfg
->fc_table
);
1163 if (table
== NULL
) {
1168 rt
= ip6_dst_alloc(&net
->ipv6
.ip6_dst_ops
);
1175 rt
->dst
.obsolete
= -1;
1176 rt
->rt6i_expires
= (cfg
->fc_flags
& RTF_EXPIRES
) ?
1177 jiffies
+ clock_t_to_jiffies(cfg
->fc_expires
) :
1180 if (cfg
->fc_protocol
== RTPROT_UNSPEC
)
1181 cfg
->fc_protocol
= RTPROT_BOOT
;
1182 rt
->rt6i_protocol
= cfg
->fc_protocol
;
1184 addr_type
= ipv6_addr_type(&cfg
->fc_dst
);
1186 if (addr_type
& IPV6_ADDR_MULTICAST
)
1187 rt
->dst
.input
= ip6_mc_input
;
1188 else if (cfg
->fc_flags
& RTF_LOCAL
)
1189 rt
->dst
.input
= ip6_input
;
1191 rt
->dst
.input
= ip6_forward
;
1193 rt
->dst
.output
= ip6_output
;
1195 ipv6_addr_prefix(&rt
->rt6i_dst
.addr
, &cfg
->fc_dst
, cfg
->fc_dst_len
);
1196 rt
->rt6i_dst
.plen
= cfg
->fc_dst_len
;
1197 if (rt
->rt6i_dst
.plen
== 128)
1198 rt
->dst
.flags
= DST_HOST
;
1200 #ifdef CONFIG_IPV6_SUBTREES
1201 ipv6_addr_prefix(&rt
->rt6i_src
.addr
, &cfg
->fc_src
, cfg
->fc_src_len
);
1202 rt
->rt6i_src
.plen
= cfg
->fc_src_len
;
1205 rt
->rt6i_metric
= cfg
->fc_metric
;
1207 /* We cannot add true routes via loopback here,
1208 they would result in kernel looping; promote them to reject routes
1210 if ((cfg
->fc_flags
& RTF_REJECT
) ||
1211 (dev
&& (dev
->flags
&IFF_LOOPBACK
) && !(addr_type
&IPV6_ADDR_LOOPBACK
)
1212 && !(cfg
->fc_flags
&RTF_LOCAL
))) {
1213 /* hold loopback dev/idev if we haven't done so. */
1214 if (dev
!= net
->loopback_dev
) {
1219 dev
= net
->loopback_dev
;
1221 idev
= in6_dev_get(dev
);
1227 rt
->dst
.output
= ip6_pkt_discard_out
;
1228 rt
->dst
.input
= ip6_pkt_discard
;
1229 rt
->dst
.error
= -ENETUNREACH
;
1230 rt
->rt6i_flags
= RTF_REJECT
|RTF_NONEXTHOP
;
1234 if (cfg
->fc_flags
& RTF_GATEWAY
) {
1235 struct in6_addr
*gw_addr
;
1238 gw_addr
= &cfg
->fc_gateway
;
1239 ipv6_addr_copy(&rt
->rt6i_gateway
, gw_addr
);
1240 gwa_type
= ipv6_addr_type(gw_addr
);
1242 if (gwa_type
!= (IPV6_ADDR_LINKLOCAL
|IPV6_ADDR_UNICAST
)) {
1243 struct rt6_info
*grt
;
1245 /* IPv6 strictly inhibits using not link-local
1246 addresses as nexthop address.
1247 Otherwise, router will not able to send redirects.
1248 It is very good, but in some (rare!) circumstances
1249 (SIT, PtP, NBMA NOARP links) it is handy to allow
1250 some exceptions. --ANK
1253 if (!(gwa_type
&IPV6_ADDR_UNICAST
))
1256 grt
= rt6_lookup(net
, gw_addr
, NULL
, cfg
->fc_ifindex
, 1);
1258 err
= -EHOSTUNREACH
;
1262 if (dev
!= grt
->rt6i_dev
) {
1263 dst_release(&grt
->dst
);
1267 dev
= grt
->rt6i_dev
;
1268 idev
= grt
->rt6i_idev
;
1270 in6_dev_hold(grt
->rt6i_idev
);
1272 if (!(grt
->rt6i_flags
&RTF_GATEWAY
))
1274 dst_release(&grt
->dst
);
1280 if (dev
== NULL
|| (dev
->flags
&IFF_LOOPBACK
))
1288 if (cfg
->fc_flags
& (RTF_GATEWAY
| RTF_NONEXTHOP
)) {
1289 rt
->rt6i_nexthop
= __neigh_lookup_errno(&nd_tbl
, &rt
->rt6i_gateway
, dev
);
1290 if (IS_ERR(rt
->rt6i_nexthop
)) {
1291 err
= PTR_ERR(rt
->rt6i_nexthop
);
1292 rt
->rt6i_nexthop
= NULL
;
1297 rt
->rt6i_flags
= cfg
->fc_flags
;
1304 nla_for_each_attr(nla
, cfg
->fc_mx
, cfg
->fc_mx_len
, remaining
) {
1305 int type
= nla_type(nla
);
1308 if (type
> RTAX_MAX
) {
1313 dst_metric_set(&rt
->dst
, type
, nla_get_u32(nla
));
1319 rt
->rt6i_idev
= idev
;
1320 rt
->rt6i_table
= table
;
1322 cfg
->fc_nlinfo
.nl_net
= dev_net(dev
);
1324 return __ip6_ins_rt(rt
, &cfg
->fc_nlinfo
);
1336 static int __ip6_del_rt(struct rt6_info
*rt
, struct nl_info
*info
)
1339 struct fib6_table
*table
;
1340 struct net
*net
= dev_net(rt
->rt6i_dev
);
1342 if (rt
== net
->ipv6
.ip6_null_entry
)
1345 table
= rt
->rt6i_table
;
1346 write_lock_bh(&table
->tb6_lock
);
1348 err
= fib6_del(rt
, info
);
1349 dst_release(&rt
->dst
);
1351 write_unlock_bh(&table
->tb6_lock
);
1356 int ip6_del_rt(struct rt6_info
*rt
)
1358 struct nl_info info
= {
1359 .nl_net
= dev_net(rt
->rt6i_dev
),
1361 return __ip6_del_rt(rt
, &info
);
1364 static int ip6_route_del(struct fib6_config
*cfg
)
1366 struct fib6_table
*table
;
1367 struct fib6_node
*fn
;
1368 struct rt6_info
*rt
;
1371 table
= fib6_get_table(cfg
->fc_nlinfo
.nl_net
, cfg
->fc_table
);
1375 read_lock_bh(&table
->tb6_lock
);
1377 fn
= fib6_locate(&table
->tb6_root
,
1378 &cfg
->fc_dst
, cfg
->fc_dst_len
,
1379 &cfg
->fc_src
, cfg
->fc_src_len
);
1382 for (rt
= fn
->leaf
; rt
; rt
= rt
->dst
.rt6_next
) {
1383 if (cfg
->fc_ifindex
&&
1384 (rt
->rt6i_dev
== NULL
||
1385 rt
->rt6i_dev
->ifindex
!= cfg
->fc_ifindex
))
1387 if (cfg
->fc_flags
& RTF_GATEWAY
&&
1388 !ipv6_addr_equal(&cfg
->fc_gateway
, &rt
->rt6i_gateway
))
1390 if (cfg
->fc_metric
&& cfg
->fc_metric
!= rt
->rt6i_metric
)
1393 read_unlock_bh(&table
->tb6_lock
);
1395 return __ip6_del_rt(rt
, &cfg
->fc_nlinfo
);
1398 read_unlock_bh(&table
->tb6_lock
);
1406 struct ip6rd_flowi
{
1408 struct in6_addr gateway
;
1411 static struct rt6_info
*__ip6_route_redirect(struct net
*net
,
1412 struct fib6_table
*table
,
1416 struct ip6rd_flowi
*rdfl
= (struct ip6rd_flowi
*)fl
;
1417 struct rt6_info
*rt
;
1418 struct fib6_node
*fn
;
1421 * Get the "current" route for this destination and
1422 * check if the redirect has come from approriate router.
1424 * RFC 2461 specifies that redirects should only be
1425 * accepted if they come from the nexthop to the target.
1426 * Due to the way the routes are chosen, this notion
1427 * is a bit fuzzy and one might need to check all possible
1431 read_lock_bh(&table
->tb6_lock
);
1432 fn
= fib6_lookup(&table
->tb6_root
, &fl
->fl6_dst
, &fl
->fl6_src
);
1434 for (rt
= fn
->leaf
; rt
; rt
= rt
->dst
.rt6_next
) {
1436 * Current route is on-link; redirect is always invalid.
1438 * Seems, previous statement is not true. It could
1439 * be node, which looks for us as on-link (f.e. proxy ndisc)
1440 * But then router serving it might decide, that we should
1441 * know truth 8)8) --ANK (980726).
1443 if (rt6_check_expired(rt
))
1445 if (!(rt
->rt6i_flags
& RTF_GATEWAY
))
1447 if (fl
->oif
!= rt
->rt6i_dev
->ifindex
)
1449 if (!ipv6_addr_equal(&rdfl
->gateway
, &rt
->rt6i_gateway
))
1455 rt
= net
->ipv6
.ip6_null_entry
;
1456 BACKTRACK(net
, &fl
->fl6_src
);
1460 read_unlock_bh(&table
->tb6_lock
);
1465 static struct rt6_info
*ip6_route_redirect(struct in6_addr
*dest
,
1466 struct in6_addr
*src
,
1467 struct in6_addr
*gateway
,
1468 struct net_device
*dev
)
1470 int flags
= RT6_LOOKUP_F_HAS_SADDR
;
1471 struct net
*net
= dev_net(dev
);
1472 struct ip6rd_flowi rdfl
= {
1474 .oif
= dev
->ifindex
,
1480 ipv6_addr_copy(&rdfl
.gateway
, gateway
);
1482 if (rt6_need_strict(dest
))
1483 flags
|= RT6_LOOKUP_F_IFACE
;
1485 return (struct rt6_info
*)fib6_rule_lookup(net
, (struct flowi
*)&rdfl
,
1486 flags
, __ip6_route_redirect
);
1489 void rt6_redirect(struct in6_addr
*dest
, struct in6_addr
*src
,
1490 struct in6_addr
*saddr
,
1491 struct neighbour
*neigh
, u8
*lladdr
, int on_link
)
1493 struct rt6_info
*rt
, *nrt
= NULL
;
1494 struct netevent_redirect netevent
;
1495 struct net
*net
= dev_net(neigh
->dev
);
1497 rt
= ip6_route_redirect(dest
, src
, saddr
, neigh
->dev
);
1499 if (rt
== net
->ipv6
.ip6_null_entry
) {
1500 if (net_ratelimit())
1501 printk(KERN_DEBUG
"rt6_redirect: source isn't a valid nexthop "
1502 "for redirect target\n");
1507 * We have finally decided to accept it.
1510 neigh_update(neigh
, lladdr
, NUD_STALE
,
1511 NEIGH_UPDATE_F_WEAK_OVERRIDE
|
1512 NEIGH_UPDATE_F_OVERRIDE
|
1513 (on_link
? 0 : (NEIGH_UPDATE_F_OVERRIDE_ISROUTER
|
1514 NEIGH_UPDATE_F_ISROUTER
))
1518 * Redirect received -> path was valid.
1519 * Look, redirects are sent only in response to data packets,
1520 * so that this nexthop apparently is reachable. --ANK
1522 dst_confirm(&rt
->dst
);
1524 /* Duplicate redirect: silently ignore. */
1525 if (neigh
== rt
->dst
.neighbour
)
1528 nrt
= ip6_rt_copy(rt
);
1532 nrt
->rt6i_flags
= RTF_GATEWAY
|RTF_UP
|RTF_DYNAMIC
|RTF_CACHE
;
1534 nrt
->rt6i_flags
&= ~RTF_GATEWAY
;
1536 ipv6_addr_copy(&nrt
->rt6i_dst
.addr
, dest
);
1537 nrt
->rt6i_dst
.plen
= 128;
1538 nrt
->dst
.flags
|= DST_HOST
;
1540 ipv6_addr_copy(&nrt
->rt6i_gateway
, (struct in6_addr
*)neigh
->primary_key
);
1541 nrt
->rt6i_nexthop
= neigh_clone(neigh
);
1543 if (ip6_ins_rt(nrt
))
1546 netevent
.old
= &rt
->dst
;
1547 netevent
.new = &nrt
->dst
;
1548 call_netevent_notifiers(NETEVENT_REDIRECT
, &netevent
);
1550 if (rt
->rt6i_flags
&RTF_CACHE
) {
1556 dst_release(&rt
->dst
);
1560 * Handle ICMP "packet too big" messages
1561 * i.e. Path MTU discovery
1564 static void rt6_do_pmtu_disc(struct in6_addr
*daddr
, struct in6_addr
*saddr
,
1565 struct net
*net
, u32 pmtu
, int ifindex
)
1567 struct rt6_info
*rt
, *nrt
;
1570 rt
= rt6_lookup(net
, daddr
, saddr
, ifindex
, 0);
1574 if (rt6_check_expired(rt
)) {
1579 if (pmtu
>= dst_mtu(&rt
->dst
))
1582 if (pmtu
< IPV6_MIN_MTU
) {
1584 * According to RFC2460, PMTU is set to the IPv6 Minimum Link
1585 * MTU (1280) and a fragment header should always be included
1586 * after a node receiving Too Big message reporting PMTU is
1587 * less than the IPv6 Minimum Link MTU.
1589 pmtu
= IPV6_MIN_MTU
;
1593 /* New mtu received -> path was valid.
1594 They are sent only in response to data packets,
1595 so that this nexthop apparently is reachable. --ANK
1597 dst_confirm(&rt
->dst
);
1599 /* Host route. If it is static, it would be better
1600 not to override it, but add new one, so that
1601 when cache entry will expire old pmtu
1602 would return automatically.
1604 if (rt
->rt6i_flags
& RTF_CACHE
) {
1605 dst_metric_set(&rt
->dst
, RTAX_MTU
, pmtu
);
1607 u32 features
= dst_metric(&rt
->dst
, RTAX_FEATURES
);
1608 features
|= RTAX_FEATURE_ALLFRAG
;
1609 dst_metric_set(&rt
->dst
, RTAX_FEATURES
, features
);
1611 dst_set_expires(&rt
->dst
, net
->ipv6
.sysctl
.ip6_rt_mtu_expires
);
1612 rt
->rt6i_flags
|= RTF_MODIFIED
|RTF_EXPIRES
;
1617 Two cases are possible:
1618 1. It is connected route. Action: COW
1619 2. It is gatewayed route or NONEXTHOP route. Action: clone it.
1621 if (!rt
->rt6i_nexthop
&& !(rt
->rt6i_flags
& RTF_NONEXTHOP
))
1622 nrt
= rt6_alloc_cow(rt
, daddr
, saddr
);
1624 nrt
= rt6_alloc_clone(rt
, daddr
);
1627 dst_metric_set(&nrt
->dst
, RTAX_MTU
, pmtu
);
1629 u32 features
= dst_metric(&nrt
->dst
, RTAX_FEATURES
);
1630 features
|= RTAX_FEATURE_ALLFRAG
;
1631 dst_metric_set(&nrt
->dst
, RTAX_FEATURES
, features
);
1634 /* According to RFC 1981, detecting PMTU increase shouldn't be
1635 * happened within 5 mins, the recommended timer is 10 mins.
1636 * Here this route expiration time is set to ip6_rt_mtu_expires
1637 * which is 10 mins. After 10 mins the decreased pmtu is expired
1638 * and detecting PMTU increase will be automatically happened.
1640 dst_set_expires(&nrt
->dst
, net
->ipv6
.sysctl
.ip6_rt_mtu_expires
);
1641 nrt
->rt6i_flags
|= RTF_DYNAMIC
|RTF_EXPIRES
;
1646 dst_release(&rt
->dst
);
1649 void rt6_pmtu_discovery(struct in6_addr
*daddr
, struct in6_addr
*saddr
,
1650 struct net_device
*dev
, u32 pmtu
)
1652 struct net
*net
= dev_net(dev
);
1655 * RFC 1981 states that a node "MUST reduce the size of the packets it
1656 * is sending along the path" that caused the Packet Too Big message.
1657 * Since it's not possible in the general case to determine which
1658 * interface was used to send the original packet, we update the MTU
1659 * on the interface that will be used to send future packets. We also
1660 * update the MTU on the interface that received the Packet Too Big in
1661 * case the original packet was forced out that interface with
1662 * SO_BINDTODEVICE or similar. This is the next best thing to the
1663 * correct behaviour, which would be to update the MTU on all
1666 rt6_do_pmtu_disc(daddr
, saddr
, net
, pmtu
, 0);
1667 rt6_do_pmtu_disc(daddr
, saddr
, net
, pmtu
, dev
->ifindex
);
1671 * Misc support functions
1674 static struct rt6_info
* ip6_rt_copy(struct rt6_info
*ort
)
1676 struct net
*net
= dev_net(ort
->rt6i_dev
);
1677 struct rt6_info
*rt
= ip6_dst_alloc(&net
->ipv6
.ip6_dst_ops
);
1680 rt
->dst
.input
= ort
->dst
.input
;
1681 rt
->dst
.output
= ort
->dst
.output
;
1683 dst_copy_metrics(&rt
->dst
, &ort
->dst
);
1684 rt
->dst
.error
= ort
->dst
.error
;
1685 rt
->dst
.dev
= ort
->dst
.dev
;
1687 dev_hold(rt
->dst
.dev
);
1688 rt
->rt6i_idev
= ort
->rt6i_idev
;
1690 in6_dev_hold(rt
->rt6i_idev
);
1691 rt
->dst
.lastuse
= jiffies
;
1692 rt
->rt6i_expires
= 0;
1694 ipv6_addr_copy(&rt
->rt6i_gateway
, &ort
->rt6i_gateway
);
1695 rt
->rt6i_flags
= ort
->rt6i_flags
& ~RTF_EXPIRES
;
1696 rt
->rt6i_metric
= 0;
1698 memcpy(&rt
->rt6i_dst
, &ort
->rt6i_dst
, sizeof(struct rt6key
));
1699 #ifdef CONFIG_IPV6_SUBTREES
1700 memcpy(&rt
->rt6i_src
, &ort
->rt6i_src
, sizeof(struct rt6key
));
1702 rt
->rt6i_table
= ort
->rt6i_table
;
1707 #ifdef CONFIG_IPV6_ROUTE_INFO
1708 static struct rt6_info
*rt6_get_route_info(struct net
*net
,
1709 struct in6_addr
*prefix
, int prefixlen
,
1710 struct in6_addr
*gwaddr
, int ifindex
)
1712 struct fib6_node
*fn
;
1713 struct rt6_info
*rt
= NULL
;
1714 struct fib6_table
*table
;
1716 table
= fib6_get_table(net
, RT6_TABLE_INFO
);
1720 write_lock_bh(&table
->tb6_lock
);
1721 fn
= fib6_locate(&table
->tb6_root
, prefix
,prefixlen
, NULL
, 0);
1725 for (rt
= fn
->leaf
; rt
; rt
= rt
->dst
.rt6_next
) {
1726 if (rt
->rt6i_dev
->ifindex
!= ifindex
)
1728 if ((rt
->rt6i_flags
& (RTF_ROUTEINFO
|RTF_GATEWAY
)) != (RTF_ROUTEINFO
|RTF_GATEWAY
))
1730 if (!ipv6_addr_equal(&rt
->rt6i_gateway
, gwaddr
))
1736 write_unlock_bh(&table
->tb6_lock
);
1740 static struct rt6_info
*rt6_add_route_info(struct net
*net
,
1741 struct in6_addr
*prefix
, int prefixlen
,
1742 struct in6_addr
*gwaddr
, int ifindex
,
1745 struct fib6_config cfg
= {
1746 .fc_table
= RT6_TABLE_INFO
,
1747 .fc_metric
= IP6_RT_PRIO_USER
,
1748 .fc_ifindex
= ifindex
,
1749 .fc_dst_len
= prefixlen
,
1750 .fc_flags
= RTF_GATEWAY
| RTF_ADDRCONF
| RTF_ROUTEINFO
|
1751 RTF_UP
| RTF_PREF(pref
),
1753 .fc_nlinfo
.nlh
= NULL
,
1754 .fc_nlinfo
.nl_net
= net
,
1757 ipv6_addr_copy(&cfg
.fc_dst
, prefix
);
1758 ipv6_addr_copy(&cfg
.fc_gateway
, gwaddr
);
1760 /* We should treat it as a default route if prefix length is 0. */
1762 cfg
.fc_flags
|= RTF_DEFAULT
;
1764 ip6_route_add(&cfg
);
1766 return rt6_get_route_info(net
, prefix
, prefixlen
, gwaddr
, ifindex
);
1770 struct rt6_info
*rt6_get_dflt_router(struct in6_addr
*addr
, struct net_device
*dev
)
1772 struct rt6_info
*rt
;
1773 struct fib6_table
*table
;
1775 table
= fib6_get_table(dev_net(dev
), RT6_TABLE_DFLT
);
1779 write_lock_bh(&table
->tb6_lock
);
1780 for (rt
= table
->tb6_root
.leaf
; rt
; rt
=rt
->dst
.rt6_next
) {
1781 if (dev
== rt
->rt6i_dev
&&
1782 ((rt
->rt6i_flags
& (RTF_ADDRCONF
| RTF_DEFAULT
)) == (RTF_ADDRCONF
| RTF_DEFAULT
)) &&
1783 ipv6_addr_equal(&rt
->rt6i_gateway
, addr
))
1788 write_unlock_bh(&table
->tb6_lock
);
1792 struct rt6_info
*rt6_add_dflt_router(struct in6_addr
*gwaddr
,
1793 struct net_device
*dev
,
1796 struct fib6_config cfg
= {
1797 .fc_table
= RT6_TABLE_DFLT
,
1798 .fc_metric
= IP6_RT_PRIO_USER
,
1799 .fc_ifindex
= dev
->ifindex
,
1800 .fc_flags
= RTF_GATEWAY
| RTF_ADDRCONF
| RTF_DEFAULT
|
1801 RTF_UP
| RTF_EXPIRES
| RTF_PREF(pref
),
1803 .fc_nlinfo
.nlh
= NULL
,
1804 .fc_nlinfo
.nl_net
= dev_net(dev
),
1807 ipv6_addr_copy(&cfg
.fc_gateway
, gwaddr
);
1809 ip6_route_add(&cfg
);
1811 return rt6_get_dflt_router(gwaddr
, dev
);
1814 void rt6_purge_dflt_routers(struct net
*net
)
1816 struct rt6_info
*rt
;
1817 struct fib6_table
*table
;
1819 /* NOTE: Keep consistent with rt6_get_dflt_router */
1820 table
= fib6_get_table(net
, RT6_TABLE_DFLT
);
1825 read_lock_bh(&table
->tb6_lock
);
1826 for (rt
= table
->tb6_root
.leaf
; rt
; rt
= rt
->dst
.rt6_next
) {
1827 if (rt
->rt6i_flags
& (RTF_DEFAULT
| RTF_ADDRCONF
)) {
1829 read_unlock_bh(&table
->tb6_lock
);
1834 read_unlock_bh(&table
->tb6_lock
);
1837 static void rtmsg_to_fib6_config(struct net
*net
,
1838 struct in6_rtmsg
*rtmsg
,
1839 struct fib6_config
*cfg
)
1841 memset(cfg
, 0, sizeof(*cfg
));
1843 cfg
->fc_table
= RT6_TABLE_MAIN
;
1844 cfg
->fc_ifindex
= rtmsg
->rtmsg_ifindex
;
1845 cfg
->fc_metric
= rtmsg
->rtmsg_metric
;
1846 cfg
->fc_expires
= rtmsg
->rtmsg_info
;
1847 cfg
->fc_dst_len
= rtmsg
->rtmsg_dst_len
;
1848 cfg
->fc_src_len
= rtmsg
->rtmsg_src_len
;
1849 cfg
->fc_flags
= rtmsg
->rtmsg_flags
;
1851 cfg
->fc_nlinfo
.nl_net
= net
;
1853 ipv6_addr_copy(&cfg
->fc_dst
, &rtmsg
->rtmsg_dst
);
1854 ipv6_addr_copy(&cfg
->fc_src
, &rtmsg
->rtmsg_src
);
1855 ipv6_addr_copy(&cfg
->fc_gateway
, &rtmsg
->rtmsg_gateway
);
1858 int ipv6_route_ioctl(struct net
*net
, unsigned int cmd
, void __user
*arg
)
1860 struct fib6_config cfg
;
1861 struct in6_rtmsg rtmsg
;
1865 case SIOCADDRT
: /* Add a route */
1866 case SIOCDELRT
: /* Delete a route */
1867 if (!capable(CAP_NET_ADMIN
))
1869 err
= copy_from_user(&rtmsg
, arg
,
1870 sizeof(struct in6_rtmsg
));
1874 rtmsg_to_fib6_config(net
, &rtmsg
, &cfg
);
1879 err
= ip6_route_add(&cfg
);
1882 err
= ip6_route_del(&cfg
);
1896 * Drop the packet on the floor
1899 static int ip6_pkt_drop(struct sk_buff
*skb
, u8 code
, int ipstats_mib_noroutes
)
1902 struct dst_entry
*dst
= skb_dst(skb
);
1903 switch (ipstats_mib_noroutes
) {
1904 case IPSTATS_MIB_INNOROUTES
:
1905 type
= ipv6_addr_type(&ipv6_hdr(skb
)->daddr
);
1906 if (type
== IPV6_ADDR_ANY
) {
1907 IP6_INC_STATS(dev_net(dst
->dev
), ip6_dst_idev(dst
),
1908 IPSTATS_MIB_INADDRERRORS
);
1912 case IPSTATS_MIB_OUTNOROUTES
:
1913 IP6_INC_STATS(dev_net(dst
->dev
), ip6_dst_idev(dst
),
1914 ipstats_mib_noroutes
);
1917 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, code
, 0);
1922 static int ip6_pkt_discard(struct sk_buff
*skb
)
1924 return ip6_pkt_drop(skb
, ICMPV6_NOROUTE
, IPSTATS_MIB_INNOROUTES
);
1927 static int ip6_pkt_discard_out(struct sk_buff
*skb
)
1929 skb
->dev
= skb_dst(skb
)->dev
;
1930 return ip6_pkt_drop(skb
, ICMPV6_NOROUTE
, IPSTATS_MIB_OUTNOROUTES
);
1933 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
1935 static int ip6_pkt_prohibit(struct sk_buff
*skb
)
1937 return ip6_pkt_drop(skb
, ICMPV6_ADM_PROHIBITED
, IPSTATS_MIB_INNOROUTES
);
1940 static int ip6_pkt_prohibit_out(struct sk_buff
*skb
)
1942 skb
->dev
= skb_dst(skb
)->dev
;
1943 return ip6_pkt_drop(skb
, ICMPV6_ADM_PROHIBITED
, IPSTATS_MIB_OUTNOROUTES
);
1949 * Allocate a dst for local (unicast / anycast) address.
1952 struct rt6_info
*addrconf_dst_alloc(struct inet6_dev
*idev
,
1953 const struct in6_addr
*addr
,
1956 struct net
*net
= dev_net(idev
->dev
);
1957 struct rt6_info
*rt
= ip6_dst_alloc(&net
->ipv6
.ip6_dst_ops
);
1958 struct neighbour
*neigh
;
1961 if (net_ratelimit())
1962 pr_warning("IPv6: Maximum number of routes reached,"
1963 " consider increasing route/max_size.\n");
1964 return ERR_PTR(-ENOMEM
);
1967 dev_hold(net
->loopback_dev
);
1970 rt
->dst
.flags
= DST_HOST
;
1971 rt
->dst
.input
= ip6_input
;
1972 rt
->dst
.output
= ip6_output
;
1973 rt
->rt6i_dev
= net
->loopback_dev
;
1974 rt
->rt6i_idev
= idev
;
1975 dst_metric_set(&rt
->dst
, RTAX_HOPLIMIT
, -1);
1976 rt
->dst
.obsolete
= -1;
1978 rt
->rt6i_flags
= RTF_UP
| RTF_NONEXTHOP
;
1980 rt
->rt6i_flags
|= RTF_ANYCAST
;
1982 rt
->rt6i_flags
|= RTF_LOCAL
;
1983 neigh
= ndisc_get_neigh(rt
->rt6i_dev
, &rt
->rt6i_gateway
);
1984 if (IS_ERR(neigh
)) {
1987 /* We are casting this because that is the return
1988 * value type. But an errno encoded pointer is the
1989 * same regardless of the underlying pointer type,
1990 * and that's what we are returning. So this is OK.
1992 return (struct rt6_info
*) neigh
;
1994 rt
->rt6i_nexthop
= neigh
;
1996 ipv6_addr_copy(&rt
->rt6i_dst
.addr
, addr
);
1997 rt
->rt6i_dst
.plen
= 128;
1998 rt
->rt6i_table
= fib6_get_table(net
, RT6_TABLE_LOCAL
);
2000 atomic_set(&rt
->dst
.__refcnt
, 1);
2005 struct arg_dev_net
{
2006 struct net_device
*dev
;
2010 static int fib6_ifdown(struct rt6_info
*rt
, void *arg
)
2012 const struct arg_dev_net
*adn
= arg
;
2013 const struct net_device
*dev
= adn
->dev
;
2015 if ((rt
->rt6i_dev
== dev
|| dev
== NULL
) &&
2016 rt
!= adn
->net
->ipv6
.ip6_null_entry
) {
2017 RT6_TRACE("deleted by ifdown %p\n", rt
);
2023 void rt6_ifdown(struct net
*net
, struct net_device
*dev
)
2025 struct arg_dev_net adn
= {
2030 fib6_clean_all(net
, fib6_ifdown
, 0, &adn
);
2031 icmp6_clean_all(fib6_ifdown
, &adn
);
2034 struct rt6_mtu_change_arg
2036 struct net_device
*dev
;
2040 static int rt6_mtu_change_route(struct rt6_info
*rt
, void *p_arg
)
2042 struct rt6_mtu_change_arg
*arg
= (struct rt6_mtu_change_arg
*) p_arg
;
2043 struct inet6_dev
*idev
;
2045 /* In IPv6 pmtu discovery is not optional,
2046 so that RTAX_MTU lock cannot disable it.
2047 We still use this lock to block changes
2048 caused by addrconf/ndisc.
2051 idev
= __in6_dev_get(arg
->dev
);
2055 /* For administrative MTU increase, there is no way to discover
2056 IPv6 PMTU increase, so PMTU increase should be updated here.
2057 Since RFC 1981 doesn't include administrative MTU increase
2058 update PMTU increase is a MUST. (i.e. jumbo frame)
2061 If new MTU is less than route PMTU, this new MTU will be the
2062 lowest MTU in the path, update the route PMTU to reflect PMTU
2063 decreases; if new MTU is greater than route PMTU, and the
2064 old MTU is the lowest MTU in the path, update the route PMTU
2065 to reflect the increase. In this case if the other nodes' MTU
2066 also have the lowest MTU, TOO BIG MESSAGE will be lead to
2069 if (rt
->rt6i_dev
== arg
->dev
&&
2070 !dst_metric_locked(&rt
->dst
, RTAX_MTU
) &&
2071 (dst_mtu(&rt
->dst
) >= arg
->mtu
||
2072 (dst_mtu(&rt
->dst
) < arg
->mtu
&&
2073 dst_mtu(&rt
->dst
) == idev
->cnf
.mtu6
))) {
2074 dst_metric_set(&rt
->dst
, RTAX_MTU
, arg
->mtu
);
2079 void rt6_mtu_change(struct net_device
*dev
, unsigned mtu
)
2081 struct rt6_mtu_change_arg arg
= {
2086 fib6_clean_all(dev_net(dev
), rt6_mtu_change_route
, 0, &arg
);
2089 static const struct nla_policy rtm_ipv6_policy
[RTA_MAX
+1] = {
2090 [RTA_GATEWAY
] = { .len
= sizeof(struct in6_addr
) },
2091 [RTA_OIF
] = { .type
= NLA_U32
},
2092 [RTA_IIF
] = { .type
= NLA_U32
},
2093 [RTA_PRIORITY
] = { .type
= NLA_U32
},
2094 [RTA_METRICS
] = { .type
= NLA_NESTED
},
2097 static int rtm_to_fib6_config(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
2098 struct fib6_config
*cfg
)
2101 struct nlattr
*tb
[RTA_MAX
+1];
2104 err
= nlmsg_parse(nlh
, sizeof(*rtm
), tb
, RTA_MAX
, rtm_ipv6_policy
);
2109 rtm
= nlmsg_data(nlh
);
2110 memset(cfg
, 0, sizeof(*cfg
));
2112 cfg
->fc_table
= rtm
->rtm_table
;
2113 cfg
->fc_dst_len
= rtm
->rtm_dst_len
;
2114 cfg
->fc_src_len
= rtm
->rtm_src_len
;
2115 cfg
->fc_flags
= RTF_UP
;
2116 cfg
->fc_protocol
= rtm
->rtm_protocol
;
2118 if (rtm
->rtm_type
== RTN_UNREACHABLE
)
2119 cfg
->fc_flags
|= RTF_REJECT
;
2121 if (rtm
->rtm_type
== RTN_LOCAL
)
2122 cfg
->fc_flags
|= RTF_LOCAL
;
2124 cfg
->fc_nlinfo
.pid
= NETLINK_CB(skb
).pid
;
2125 cfg
->fc_nlinfo
.nlh
= nlh
;
2126 cfg
->fc_nlinfo
.nl_net
= sock_net(skb
->sk
);
2128 if (tb
[RTA_GATEWAY
]) {
2129 nla_memcpy(&cfg
->fc_gateway
, tb
[RTA_GATEWAY
], 16);
2130 cfg
->fc_flags
|= RTF_GATEWAY
;
2134 int plen
= (rtm
->rtm_dst_len
+ 7) >> 3;
2136 if (nla_len(tb
[RTA_DST
]) < plen
)
2139 nla_memcpy(&cfg
->fc_dst
, tb
[RTA_DST
], plen
);
2143 int plen
= (rtm
->rtm_src_len
+ 7) >> 3;
2145 if (nla_len(tb
[RTA_SRC
]) < plen
)
2148 nla_memcpy(&cfg
->fc_src
, tb
[RTA_SRC
], plen
);
2152 cfg
->fc_ifindex
= nla_get_u32(tb
[RTA_OIF
]);
2154 if (tb
[RTA_PRIORITY
])
2155 cfg
->fc_metric
= nla_get_u32(tb
[RTA_PRIORITY
]);
2157 if (tb
[RTA_METRICS
]) {
2158 cfg
->fc_mx
= nla_data(tb
[RTA_METRICS
]);
2159 cfg
->fc_mx_len
= nla_len(tb
[RTA_METRICS
]);
2163 cfg
->fc_table
= nla_get_u32(tb
[RTA_TABLE
]);
2170 static int inet6_rtm_delroute(struct sk_buff
*skb
, struct nlmsghdr
* nlh
, void *arg
)
2172 struct fib6_config cfg
;
2175 err
= rtm_to_fib6_config(skb
, nlh
, &cfg
);
2179 return ip6_route_del(&cfg
);
2182 static int inet6_rtm_newroute(struct sk_buff
*skb
, struct nlmsghdr
* nlh
, void *arg
)
2184 struct fib6_config cfg
;
2187 err
= rtm_to_fib6_config(skb
, nlh
, &cfg
);
2191 return ip6_route_add(&cfg
);
2194 static inline size_t rt6_nlmsg_size(void)
2196 return NLMSG_ALIGN(sizeof(struct rtmsg
))
2197 + nla_total_size(16) /* RTA_SRC */
2198 + nla_total_size(16) /* RTA_DST */
2199 + nla_total_size(16) /* RTA_GATEWAY */
2200 + nla_total_size(16) /* RTA_PREFSRC */
2201 + nla_total_size(4) /* RTA_TABLE */
2202 + nla_total_size(4) /* RTA_IIF */
2203 + nla_total_size(4) /* RTA_OIF */
2204 + nla_total_size(4) /* RTA_PRIORITY */
2205 + RTAX_MAX
* nla_total_size(4) /* RTA_METRICS */
2206 + nla_total_size(sizeof(struct rta_cacheinfo
));
2209 static int rt6_fill_node(struct net
*net
,
2210 struct sk_buff
*skb
, struct rt6_info
*rt
,
2211 struct in6_addr
*dst
, struct in6_addr
*src
,
2212 int iif
, int type
, u32 pid
, u32 seq
,
2213 int prefix
, int nowait
, unsigned int flags
)
2216 struct nlmsghdr
*nlh
;
2220 if (prefix
) { /* user wants prefix routes only */
2221 if (!(rt
->rt6i_flags
& RTF_PREFIX_RT
)) {
2222 /* success since this is not a prefix route */
2227 nlh
= nlmsg_put(skb
, pid
, seq
, type
, sizeof(*rtm
), flags
);
2231 rtm
= nlmsg_data(nlh
);
2232 rtm
->rtm_family
= AF_INET6
;
2233 rtm
->rtm_dst_len
= rt
->rt6i_dst
.plen
;
2234 rtm
->rtm_src_len
= rt
->rt6i_src
.plen
;
2237 table
= rt
->rt6i_table
->tb6_id
;
2239 table
= RT6_TABLE_UNSPEC
;
2240 rtm
->rtm_table
= table
;
2241 NLA_PUT_U32(skb
, RTA_TABLE
, table
);
2242 if (rt
->rt6i_flags
&RTF_REJECT
)
2243 rtm
->rtm_type
= RTN_UNREACHABLE
;
2244 else if (rt
->rt6i_flags
&RTF_LOCAL
)
2245 rtm
->rtm_type
= RTN_LOCAL
;
2246 else if (rt
->rt6i_dev
&& (rt
->rt6i_dev
->flags
&IFF_LOOPBACK
))
2247 rtm
->rtm_type
= RTN_LOCAL
;
2249 rtm
->rtm_type
= RTN_UNICAST
;
2251 rtm
->rtm_scope
= RT_SCOPE_UNIVERSE
;
2252 rtm
->rtm_protocol
= rt
->rt6i_protocol
;
2253 if (rt
->rt6i_flags
&RTF_DYNAMIC
)
2254 rtm
->rtm_protocol
= RTPROT_REDIRECT
;
2255 else if (rt
->rt6i_flags
& RTF_ADDRCONF
)
2256 rtm
->rtm_protocol
= RTPROT_KERNEL
;
2257 else if (rt
->rt6i_flags
&RTF_DEFAULT
)
2258 rtm
->rtm_protocol
= RTPROT_RA
;
2260 if (rt
->rt6i_flags
&RTF_CACHE
)
2261 rtm
->rtm_flags
|= RTM_F_CLONED
;
2264 NLA_PUT(skb
, RTA_DST
, 16, dst
);
2265 rtm
->rtm_dst_len
= 128;
2266 } else if (rtm
->rtm_dst_len
)
2267 NLA_PUT(skb
, RTA_DST
, 16, &rt
->rt6i_dst
.addr
);
2268 #ifdef CONFIG_IPV6_SUBTREES
2270 NLA_PUT(skb
, RTA_SRC
, 16, src
);
2271 rtm
->rtm_src_len
= 128;
2272 } else if (rtm
->rtm_src_len
)
2273 NLA_PUT(skb
, RTA_SRC
, 16, &rt
->rt6i_src
.addr
);
2276 #ifdef CONFIG_IPV6_MROUTE
2277 if (ipv6_addr_is_multicast(&rt
->rt6i_dst
.addr
)) {
2278 int err
= ip6mr_get_route(net
, skb
, rtm
, nowait
);
2283 goto nla_put_failure
;
2285 if (err
== -EMSGSIZE
)
2286 goto nla_put_failure
;
2291 NLA_PUT_U32(skb
, RTA_IIF
, iif
);
2293 struct inet6_dev
*idev
= ip6_dst_idev(&rt
->dst
);
2294 struct in6_addr saddr_buf
;
2295 if (ipv6_dev_get_saddr(net
, idev
? idev
->dev
: NULL
,
2296 dst
, 0, &saddr_buf
) == 0)
2297 NLA_PUT(skb
, RTA_PREFSRC
, 16, &saddr_buf
);
2300 if (rtnetlink_put_metrics(skb
, dst_metrics_ptr(&rt
->dst
)) < 0)
2301 goto nla_put_failure
;
2303 if (rt
->dst
.neighbour
)
2304 NLA_PUT(skb
, RTA_GATEWAY
, 16, &rt
->dst
.neighbour
->primary_key
);
2307 NLA_PUT_U32(skb
, RTA_OIF
, rt
->rt6i_dev
->ifindex
);
2309 NLA_PUT_U32(skb
, RTA_PRIORITY
, rt
->rt6i_metric
);
2311 if (!(rt
->rt6i_flags
& RTF_EXPIRES
))
2313 else if (rt
->rt6i_expires
- jiffies
< INT_MAX
)
2314 expires
= rt
->rt6i_expires
- jiffies
;
2318 if (rtnl_put_cacheinfo(skb
, &rt
->dst
, 0, 0, 0,
2319 expires
, rt
->dst
.error
) < 0)
2320 goto nla_put_failure
;
2322 return nlmsg_end(skb
, nlh
);
2325 nlmsg_cancel(skb
, nlh
);
2329 int rt6_dump_route(struct rt6_info
*rt
, void *p_arg
)
2331 struct rt6_rtnl_dump_arg
*arg
= (struct rt6_rtnl_dump_arg
*) p_arg
;
2334 if (nlmsg_len(arg
->cb
->nlh
) >= sizeof(struct rtmsg
)) {
2335 struct rtmsg
*rtm
= nlmsg_data(arg
->cb
->nlh
);
2336 prefix
= (rtm
->rtm_flags
& RTM_F_PREFIX
) != 0;
2340 return rt6_fill_node(arg
->net
,
2341 arg
->skb
, rt
, NULL
, NULL
, 0, RTM_NEWROUTE
,
2342 NETLINK_CB(arg
->cb
->skb
).pid
, arg
->cb
->nlh
->nlmsg_seq
,
2343 prefix
, 0, NLM_F_MULTI
);
2346 static int inet6_rtm_getroute(struct sk_buff
*in_skb
, struct nlmsghdr
* nlh
, void *arg
)
2348 struct net
*net
= sock_net(in_skb
->sk
);
2349 struct nlattr
*tb
[RTA_MAX
+1];
2350 struct rt6_info
*rt
;
2351 struct sk_buff
*skb
;
2356 err
= nlmsg_parse(nlh
, sizeof(*rtm
), tb
, RTA_MAX
, rtm_ipv6_policy
);
2361 memset(&fl
, 0, sizeof(fl
));
2364 if (nla_len(tb
[RTA_SRC
]) < sizeof(struct in6_addr
))
2367 ipv6_addr_copy(&fl
.fl6_src
, nla_data(tb
[RTA_SRC
]));
2371 if (nla_len(tb
[RTA_DST
]) < sizeof(struct in6_addr
))
2374 ipv6_addr_copy(&fl
.fl6_dst
, nla_data(tb
[RTA_DST
]));
2378 iif
= nla_get_u32(tb
[RTA_IIF
]);
2381 fl
.oif
= nla_get_u32(tb
[RTA_OIF
]);
2384 struct net_device
*dev
;
2385 dev
= __dev_get_by_index(net
, iif
);
2392 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
2398 /* Reserve room for dummy headers, this skb can pass
2399 through good chunk of routing engine.
2401 skb_reset_mac_header(skb
);
2402 skb_reserve(skb
, MAX_HEADER
+ sizeof(struct ipv6hdr
));
2404 rt
= (struct rt6_info
*) ip6_route_output(net
, NULL
, &fl
);
2405 skb_dst_set(skb
, &rt
->dst
);
2407 err
= rt6_fill_node(net
, skb
, rt
, &fl
.fl6_dst
, &fl
.fl6_src
, iif
,
2408 RTM_NEWROUTE
, NETLINK_CB(in_skb
).pid
,
2409 nlh
->nlmsg_seq
, 0, 0, 0);
2415 err
= rtnl_unicast(skb
, net
, NETLINK_CB(in_skb
).pid
);
2420 void inet6_rt_notify(int event
, struct rt6_info
*rt
, struct nl_info
*info
)
2422 struct sk_buff
*skb
;
2423 struct net
*net
= info
->nl_net
;
2428 seq
= info
->nlh
!= NULL
? info
->nlh
->nlmsg_seq
: 0;
2430 skb
= nlmsg_new(rt6_nlmsg_size(), gfp_any());
2434 err
= rt6_fill_node(net
, skb
, rt
, NULL
, NULL
, 0,
2435 event
, info
->pid
, seq
, 0, 0, 0);
2437 /* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
2438 WARN_ON(err
== -EMSGSIZE
);
2442 rtnl_notify(skb
, net
, info
->pid
, RTNLGRP_IPV6_ROUTE
,
2443 info
->nlh
, gfp_any());
2447 rtnl_set_sk_err(net
, RTNLGRP_IPV6_ROUTE
, err
);
2450 static int ip6_route_dev_notify(struct notifier_block
*this,
2451 unsigned long event
, void *data
)
2453 struct net_device
*dev
= (struct net_device
*)data
;
2454 struct net
*net
= dev_net(dev
);
2456 if (event
== NETDEV_REGISTER
&& (dev
->flags
& IFF_LOOPBACK
)) {
2457 net
->ipv6
.ip6_null_entry
->dst
.dev
= dev
;
2458 net
->ipv6
.ip6_null_entry
->rt6i_idev
= in6_dev_get(dev
);
2459 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
2460 net
->ipv6
.ip6_prohibit_entry
->dst
.dev
= dev
;
2461 net
->ipv6
.ip6_prohibit_entry
->rt6i_idev
= in6_dev_get(dev
);
2462 net
->ipv6
.ip6_blk_hole_entry
->dst
.dev
= dev
;
2463 net
->ipv6
.ip6_blk_hole_entry
->rt6i_idev
= in6_dev_get(dev
);
2474 #ifdef CONFIG_PROC_FS
2485 static int rt6_info_route(struct rt6_info
*rt
, void *p_arg
)
2487 struct seq_file
*m
= p_arg
;
2489 seq_printf(m
, "%pi6 %02x ", &rt
->rt6i_dst
.addr
, rt
->rt6i_dst
.plen
);
2491 #ifdef CONFIG_IPV6_SUBTREES
2492 seq_printf(m
, "%pi6 %02x ", &rt
->rt6i_src
.addr
, rt
->rt6i_src
.plen
);
2494 seq_puts(m
, "00000000000000000000000000000000 00 ");
2497 if (rt
->rt6i_nexthop
) {
2498 seq_printf(m
, "%pi6", rt
->rt6i_nexthop
->primary_key
);
2500 seq_puts(m
, "00000000000000000000000000000000");
2502 seq_printf(m
, " %08x %08x %08x %08x %8s\n",
2503 rt
->rt6i_metric
, atomic_read(&rt
->dst
.__refcnt
),
2504 rt
->dst
.__use
, rt
->rt6i_flags
,
2505 rt
->rt6i_dev
? rt
->rt6i_dev
->name
: "");
2509 static int ipv6_route_show(struct seq_file
*m
, void *v
)
2511 struct net
*net
= (struct net
*)m
->private;
2512 fib6_clean_all(net
, rt6_info_route
, 0, m
);
2516 static int ipv6_route_open(struct inode
*inode
, struct file
*file
)
2518 return single_open_net(inode
, file
, ipv6_route_show
);
2521 static const struct file_operations ipv6_route_proc_fops
= {
2522 .owner
= THIS_MODULE
,
2523 .open
= ipv6_route_open
,
2525 .llseek
= seq_lseek
,
2526 .release
= single_release_net
,
2529 static int rt6_stats_seq_show(struct seq_file
*seq
, void *v
)
2531 struct net
*net
= (struct net
*)seq
->private;
2532 seq_printf(seq
, "%04x %04x %04x %04x %04x %04x %04x\n",
2533 net
->ipv6
.rt6_stats
->fib_nodes
,
2534 net
->ipv6
.rt6_stats
->fib_route_nodes
,
2535 net
->ipv6
.rt6_stats
->fib_rt_alloc
,
2536 net
->ipv6
.rt6_stats
->fib_rt_entries
,
2537 net
->ipv6
.rt6_stats
->fib_rt_cache
,
2538 dst_entries_get_slow(&net
->ipv6
.ip6_dst_ops
),
2539 net
->ipv6
.rt6_stats
->fib_discarded_routes
);
2544 static int rt6_stats_seq_open(struct inode
*inode
, struct file
*file
)
2546 return single_open_net(inode
, file
, rt6_stats_seq_show
);
2549 static const struct file_operations rt6_stats_seq_fops
= {
2550 .owner
= THIS_MODULE
,
2551 .open
= rt6_stats_seq_open
,
2553 .llseek
= seq_lseek
,
2554 .release
= single_release_net
,
2556 #endif /* CONFIG_PROC_FS */
2558 #ifdef CONFIG_SYSCTL
2561 int ipv6_sysctl_rtcache_flush(ctl_table
*ctl
, int write
,
2562 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2564 struct net
*net
= current
->nsproxy
->net_ns
;
2565 int delay
= net
->ipv6
.sysctl
.flush_delay
;
2567 proc_dointvec(ctl
, write
, buffer
, lenp
, ppos
);
2568 fib6_run_gc(delay
<= 0 ? ~0UL : (unsigned long)delay
, net
);
2574 ctl_table ipv6_route_table_template
[] = {
2576 .procname
= "flush",
2577 .data
= &init_net
.ipv6
.sysctl
.flush_delay
,
2578 .maxlen
= sizeof(int),
2580 .proc_handler
= ipv6_sysctl_rtcache_flush
2583 .procname
= "gc_thresh",
2584 .data
= &ip6_dst_ops_template
.gc_thresh
,
2585 .maxlen
= sizeof(int),
2587 .proc_handler
= proc_dointvec
,
2590 .procname
= "max_size",
2591 .data
= &init_net
.ipv6
.sysctl
.ip6_rt_max_size
,
2592 .maxlen
= sizeof(int),
2594 .proc_handler
= proc_dointvec
,
2597 .procname
= "gc_min_interval",
2598 .data
= &init_net
.ipv6
.sysctl
.ip6_rt_gc_min_interval
,
2599 .maxlen
= sizeof(int),
2601 .proc_handler
= proc_dointvec_jiffies
,
2604 .procname
= "gc_timeout",
2605 .data
= &init_net
.ipv6
.sysctl
.ip6_rt_gc_timeout
,
2606 .maxlen
= sizeof(int),
2608 .proc_handler
= proc_dointvec_jiffies
,
2611 .procname
= "gc_interval",
2612 .data
= &init_net
.ipv6
.sysctl
.ip6_rt_gc_interval
,
2613 .maxlen
= sizeof(int),
2615 .proc_handler
= proc_dointvec_jiffies
,
2618 .procname
= "gc_elasticity",
2619 .data
= &init_net
.ipv6
.sysctl
.ip6_rt_gc_elasticity
,
2620 .maxlen
= sizeof(int),
2622 .proc_handler
= proc_dointvec
,
2625 .procname
= "mtu_expires",
2626 .data
= &init_net
.ipv6
.sysctl
.ip6_rt_mtu_expires
,
2627 .maxlen
= sizeof(int),
2629 .proc_handler
= proc_dointvec_jiffies
,
2632 .procname
= "min_adv_mss",
2633 .data
= &init_net
.ipv6
.sysctl
.ip6_rt_min_advmss
,
2634 .maxlen
= sizeof(int),
2636 .proc_handler
= proc_dointvec
,
2639 .procname
= "gc_min_interval_ms",
2640 .data
= &init_net
.ipv6
.sysctl
.ip6_rt_gc_min_interval
,
2641 .maxlen
= sizeof(int),
2643 .proc_handler
= proc_dointvec_ms_jiffies
,
2648 struct ctl_table
* __net_init
ipv6_route_sysctl_init(struct net
*net
)
2650 struct ctl_table
*table
;
2652 table
= kmemdup(ipv6_route_table_template
,
2653 sizeof(ipv6_route_table_template
),
2657 table
[0].data
= &net
->ipv6
.sysctl
.flush_delay
;
2658 table
[1].data
= &net
->ipv6
.ip6_dst_ops
.gc_thresh
;
2659 table
[2].data
= &net
->ipv6
.sysctl
.ip6_rt_max_size
;
2660 table
[3].data
= &net
->ipv6
.sysctl
.ip6_rt_gc_min_interval
;
2661 table
[4].data
= &net
->ipv6
.sysctl
.ip6_rt_gc_timeout
;
2662 table
[5].data
= &net
->ipv6
.sysctl
.ip6_rt_gc_interval
;
2663 table
[6].data
= &net
->ipv6
.sysctl
.ip6_rt_gc_elasticity
;
2664 table
[7].data
= &net
->ipv6
.sysctl
.ip6_rt_mtu_expires
;
2665 table
[8].data
= &net
->ipv6
.sysctl
.ip6_rt_min_advmss
;
2666 table
[9].data
= &net
->ipv6
.sysctl
.ip6_rt_gc_min_interval
;
2673 static int __net_init
ip6_route_net_init(struct net
*net
)
2677 memcpy(&net
->ipv6
.ip6_dst_ops
, &ip6_dst_ops_template
,
2678 sizeof(net
->ipv6
.ip6_dst_ops
));
2680 if (dst_entries_init(&net
->ipv6
.ip6_dst_ops
) < 0)
2681 goto out_ip6_dst_ops
;
2683 net
->ipv6
.ip6_null_entry
= kmemdup(&ip6_null_entry_template
,
2684 sizeof(*net
->ipv6
.ip6_null_entry
),
2686 if (!net
->ipv6
.ip6_null_entry
)
2687 goto out_ip6_dst_entries
;
2688 net
->ipv6
.ip6_null_entry
->dst
.path
=
2689 (struct dst_entry
*)net
->ipv6
.ip6_null_entry
;
2690 net
->ipv6
.ip6_null_entry
->dst
.ops
= &net
->ipv6
.ip6_dst_ops
;
2691 dst_metric_set(&net
->ipv6
.ip6_null_entry
->dst
, RTAX_HOPLIMIT
, 255);
2693 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
2694 net
->ipv6
.ip6_prohibit_entry
= kmemdup(&ip6_prohibit_entry_template
,
2695 sizeof(*net
->ipv6
.ip6_prohibit_entry
),
2697 if (!net
->ipv6
.ip6_prohibit_entry
)
2698 goto out_ip6_null_entry
;
2699 net
->ipv6
.ip6_prohibit_entry
->dst
.path
=
2700 (struct dst_entry
*)net
->ipv6
.ip6_prohibit_entry
;
2701 net
->ipv6
.ip6_prohibit_entry
->dst
.ops
= &net
->ipv6
.ip6_dst_ops
;
2702 dst_metric_set(&net
->ipv6
.ip6_prohibit_entry
->dst
, RTAX_HOPLIMIT
, 255);
2704 net
->ipv6
.ip6_blk_hole_entry
= kmemdup(&ip6_blk_hole_entry_template
,
2705 sizeof(*net
->ipv6
.ip6_blk_hole_entry
),
2707 if (!net
->ipv6
.ip6_blk_hole_entry
)
2708 goto out_ip6_prohibit_entry
;
2709 net
->ipv6
.ip6_blk_hole_entry
->dst
.path
=
2710 (struct dst_entry
*)net
->ipv6
.ip6_blk_hole_entry
;
2711 net
->ipv6
.ip6_blk_hole_entry
->dst
.ops
= &net
->ipv6
.ip6_dst_ops
;
2712 dst_metric_set(&net
->ipv6
.ip6_blk_hole_entry
->dst
, RTAX_HOPLIMIT
, 255);
2715 net
->ipv6
.sysctl
.flush_delay
= 0;
2716 net
->ipv6
.sysctl
.ip6_rt_max_size
= 4096;
2717 net
->ipv6
.sysctl
.ip6_rt_gc_min_interval
= HZ
/ 2;
2718 net
->ipv6
.sysctl
.ip6_rt_gc_timeout
= 60*HZ
;
2719 net
->ipv6
.sysctl
.ip6_rt_gc_interval
= 30*HZ
;
2720 net
->ipv6
.sysctl
.ip6_rt_gc_elasticity
= 9;
2721 net
->ipv6
.sysctl
.ip6_rt_mtu_expires
= 10*60*HZ
;
2722 net
->ipv6
.sysctl
.ip6_rt_min_advmss
= IPV6_MIN_MTU
- 20 - 40;
2724 #ifdef CONFIG_PROC_FS
2725 proc_net_fops_create(net
, "ipv6_route", 0, &ipv6_route_proc_fops
);
2726 proc_net_fops_create(net
, "rt6_stats", S_IRUGO
, &rt6_stats_seq_fops
);
2728 net
->ipv6
.ip6_rt_gc_expire
= 30*HZ
;
2734 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
2735 out_ip6_prohibit_entry
:
2736 kfree(net
->ipv6
.ip6_prohibit_entry
);
2738 kfree(net
->ipv6
.ip6_null_entry
);
2740 out_ip6_dst_entries
:
2741 dst_entries_destroy(&net
->ipv6
.ip6_dst_ops
);
2746 static void __net_exit
ip6_route_net_exit(struct net
*net
)
2748 #ifdef CONFIG_PROC_FS
2749 proc_net_remove(net
, "ipv6_route");
2750 proc_net_remove(net
, "rt6_stats");
2752 kfree(net
->ipv6
.ip6_null_entry
);
2753 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
2754 kfree(net
->ipv6
.ip6_prohibit_entry
);
2755 kfree(net
->ipv6
.ip6_blk_hole_entry
);
2757 dst_entries_destroy(&net
->ipv6
.ip6_dst_ops
);
2760 static struct pernet_operations ip6_route_net_ops
= {
2761 .init
= ip6_route_net_init
,
2762 .exit
= ip6_route_net_exit
,
2765 static struct notifier_block ip6_route_dev_notifier
= {
2766 .notifier_call
= ip6_route_dev_notify
,
2770 int __init
ip6_route_init(void)
2775 ip6_dst_ops_template
.kmem_cachep
=
2776 kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info
), 0,
2777 SLAB_HWCACHE_ALIGN
, NULL
);
2778 if (!ip6_dst_ops_template
.kmem_cachep
)
2781 ret
= dst_entries_init(&ip6_dst_blackhole_ops
);
2783 goto out_kmem_cache
;
2785 ret
= register_pernet_subsys(&ip6_route_net_ops
);
2787 goto out_dst_entries
;
2789 ip6_dst_blackhole_ops
.kmem_cachep
= ip6_dst_ops_template
.kmem_cachep
;
2791 /* Registering of the loopback is done before this portion of code,
2792 * the loopback reference in rt6_info will not be taken, do it
2793 * manually for init_net */
2794 init_net
.ipv6
.ip6_null_entry
->dst
.dev
= init_net
.loopback_dev
;
2795 init_net
.ipv6
.ip6_null_entry
->rt6i_idev
= in6_dev_get(init_net
.loopback_dev
);
2796 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
2797 init_net
.ipv6
.ip6_prohibit_entry
->dst
.dev
= init_net
.loopback_dev
;
2798 init_net
.ipv6
.ip6_prohibit_entry
->rt6i_idev
= in6_dev_get(init_net
.loopback_dev
);
2799 init_net
.ipv6
.ip6_blk_hole_entry
->dst
.dev
= init_net
.loopback_dev
;
2800 init_net
.ipv6
.ip6_blk_hole_entry
->rt6i_idev
= in6_dev_get(init_net
.loopback_dev
);
2804 goto out_register_subsys
;
2810 ret
= fib6_rules_init();
2815 if (__rtnl_register(PF_INET6
, RTM_NEWROUTE
, inet6_rtm_newroute
, NULL
) ||
2816 __rtnl_register(PF_INET6
, RTM_DELROUTE
, inet6_rtm_delroute
, NULL
) ||
2817 __rtnl_register(PF_INET6
, RTM_GETROUTE
, inet6_rtm_getroute
, NULL
))
2818 goto fib6_rules_init
;
2820 ret
= register_netdevice_notifier(&ip6_route_dev_notifier
);
2822 goto fib6_rules_init
;
2828 fib6_rules_cleanup();
2833 out_register_subsys
:
2834 unregister_pernet_subsys(&ip6_route_net_ops
);
2836 dst_entries_destroy(&ip6_dst_blackhole_ops
);
2838 kmem_cache_destroy(ip6_dst_ops_template
.kmem_cachep
);
2842 void ip6_route_cleanup(void)
2844 unregister_netdevice_notifier(&ip6_route_dev_notifier
);
2845 fib6_rules_cleanup();
2848 unregister_pernet_subsys(&ip6_route_net_ops
);
2849 dst_entries_destroy(&ip6_dst_blackhole_ops
);
2850 kmem_cache_destroy(ip6_dst_ops_template
.kmem_cachep
);