1 #ifndef _NET_IP6_ROUTE_H
2 #define _NET_IP6_ROUTE_H
4 #define IP6_RT_PRIO_USER 1024
5 #define IP6_RT_PRIO_ADDRCONF 256
11 #if defined(__BIG_ENDIAN_BITFIELD)
15 #elif defined(__LITTLE_ENDIAN_BITFIELD)
21 __u8 prefix
[0]; /* 0,8 or 16 */
27 #include <net/ip6_fib.h>
30 #include <linux/ipv6.h>
32 #define RT6_LOOKUP_F_IFACE 0x00000001
33 #define RT6_LOOKUP_F_REACHABLE 0x00000002
34 #define RT6_LOOKUP_F_HAS_SADDR 0x00000004
35 #define RT6_LOOKUP_F_SRCPREF_TMP 0x00000008
36 #define RT6_LOOKUP_F_SRCPREF_PUBLIC 0x00000010
37 #define RT6_LOOKUP_F_SRCPREF_COA 0x00000020
40 * rt6_srcprefs2flags() and rt6_flags2srcprefs() translate
41 * between IPV6_ADDR_PREFERENCES socket option values
42 * IPV6_PREFER_SRC_TMP = 0x1
43 * IPV6_PREFER_SRC_PUBLIC = 0x2
44 * IPV6_PREFER_SRC_COA = 0x4
45 * and above RT6_LOOKUP_F_SRCPREF_xxx flags.
47 static inline int rt6_srcprefs2flags(unsigned int srcprefs
)
49 /* No need to bitmask because srcprefs have only 3 bits. */
53 static inline unsigned int rt6_flags2srcprefs(int flags
)
55 return (flags
>> 3) & 7;
58 extern void rt6_bind_peer(struct rt6_info
*rt
,
61 static inline struct inet_peer
*rt6_get_peer(struct rt6_info
*rt
)
70 extern void ip6_route_input(struct sk_buff
*skb
);
72 extern struct dst_entry
* ip6_route_output(struct net
*net
,
73 const struct sock
*sk
,
76 extern int ip6_route_init(void);
77 extern void ip6_route_cleanup(void);
79 extern int ipv6_route_ioctl(struct net
*net
,
83 extern int ip6_route_add(struct fib6_config
*cfg
);
84 extern int ip6_ins_rt(struct rt6_info
*);
85 extern int ip6_del_rt(struct rt6_info
*);
87 extern struct rt6_info
*rt6_lookup(struct net
*net
,
88 const struct in6_addr
*daddr
,
89 const struct in6_addr
*saddr
,
92 extern struct dst_entry
*icmp6_dst_alloc(struct net_device
*dev
,
93 struct neighbour
*neigh
,
94 const struct in6_addr
*addr
);
95 extern int icmp6_dst_gc(void);
97 extern void fib6_force_start_gc(struct net
*net
);
99 extern struct rt6_info
*addrconf_dst_alloc(struct inet6_dev
*idev
,
100 const struct in6_addr
*addr
,
103 extern int ip6_dst_hoplimit(struct dst_entry
*dst
);
106 * support functions for ND
109 extern struct rt6_info
* rt6_get_dflt_router(struct in6_addr
*addr
,
110 struct net_device
*dev
);
111 extern struct rt6_info
* rt6_add_dflt_router(struct in6_addr
*gwaddr
,
112 struct net_device
*dev
,
115 extern void rt6_purge_dflt_routers(struct net
*net
);
117 extern int rt6_route_rcv(struct net_device
*dev
,
119 struct in6_addr
*gwaddr
);
121 extern void rt6_redirect(struct in6_addr
*dest
,
122 struct in6_addr
*src
,
123 struct in6_addr
*saddr
,
124 struct neighbour
*neigh
,
128 extern void rt6_pmtu_discovery(struct in6_addr
*daddr
,
129 struct in6_addr
*saddr
,
130 struct net_device
*dev
,
133 struct netlink_callback
;
135 struct rt6_rtnl_dump_arg
{
137 struct netlink_callback
*cb
;
141 extern int rt6_dump_route(struct rt6_info
*rt
, void *p_arg
);
142 extern void rt6_ifdown(struct net
*net
, struct net_device
*dev
);
143 extern void rt6_mtu_change(struct net_device
*dev
, unsigned mtu
);
147 * Store a destination cache entry in a socket
149 static inline void __ip6_dst_store(struct sock
*sk
, struct dst_entry
*dst
,
150 struct in6_addr
*daddr
, struct in6_addr
*saddr
)
152 struct ipv6_pinfo
*np
= inet6_sk(sk
);
153 struct rt6_info
*rt
= (struct rt6_info
*) dst
;
155 sk_setup_caps(sk
, dst
);
156 np
->daddr_cache
= daddr
;
157 #ifdef CONFIG_IPV6_SUBTREES
158 np
->saddr_cache
= saddr
;
160 np
->dst_cookie
= rt
->rt6i_node
? rt
->rt6i_node
->fn_sernum
: 0;
163 static inline void ip6_dst_store(struct sock
*sk
, struct dst_entry
*dst
,
164 struct in6_addr
*daddr
, struct in6_addr
*saddr
)
166 spin_lock(&sk
->sk_dst_lock
);
167 __ip6_dst_store(sk
, dst
, daddr
, saddr
);
168 spin_unlock(&sk
->sk_dst_lock
);
171 static inline int ipv6_unicast_destination(struct sk_buff
*skb
)
173 struct rt6_info
*rt
= (struct rt6_info
*) skb_dst(skb
);
175 return rt
->rt6i_flags
& RTF_LOCAL
;
178 int ip6_fragment(struct sk_buff
*skb
, int (*output
)(struct sk_buff
*));
180 static inline int ip6_skb_dst_mtu(struct sk_buff
*skb
)
182 struct ipv6_pinfo
*np
= skb
->sk
? inet6_sk(skb
->sk
) : NULL
;
184 return (np
&& np
->pmtudisc
== IPV6_PMTUDISC_PROBE
) ?
185 skb_dst(skb
)->dev
->mtu
: dst_mtu(skb_dst(skb
));