Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _NET_IP6_ROUTE_H |
| 2 | #define _NET_IP6_ROUTE_H |
| 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | #define IP6_RT_PRIO_USER 1024 |
| 5 | #define IP6_RT_PRIO_ADDRCONF 256 |
| 6 | #define IP6_RT_PRIO_KERN 512 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 8 | struct route_info { |
| 9 | __u8 type; |
| 10 | __u8 length; |
| 11 | __u8 prefix_len; |
| 12 | #if defined(__BIG_ENDIAN_BITFIELD) |
| 13 | __u8 reserved_h:3, |
| 14 | route_pref:2, |
| 15 | reserved_l:3; |
| 16 | #elif defined(__LITTLE_ENDIAN_BITFIELD) |
| 17 | __u8 reserved_l:3, |
| 18 | route_pref:2, |
| 19 | reserved_h:3; |
| 20 | #endif |
Al Viro | e69a4ad | 2006-11-14 20:56:00 -0800 | [diff] [blame] | 21 | __be32 lifetime; |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 22 | __u8 prefix[0]; /* 0,8 or 16 */ |
| 23 | }; |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #ifdef __KERNEL__ |
| 26 | |
| 27 | #include <net/flow.h> |
| 28 | #include <net/ip6_fib.h> |
| 29 | #include <net/sock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/ip.h> |
| 31 | #include <linux/ipv6.h> |
| 32 | |
YOSHIFUJI Hideaki | 77d16f4 | 2006-08-23 17:25:05 -0700 | [diff] [blame] | 33 | #define RT6_LOOKUP_F_IFACE 0x1 |
| 34 | #define RT6_LOOKUP_F_REACHABLE 0x2 |
| 35 | #define RT6_LOOKUP_F_HAS_SADDR 0x4 |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | extern struct rt6_info ip6_null_entry; |
| 38 | |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 39 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 40 | extern struct rt6_info ip6_prohibit_entry; |
| 41 | extern struct rt6_info ip6_blk_hole_entry; |
| 42 | #endif |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | extern void ip6_route_input(struct sk_buff *skb); |
| 45 | |
| 46 | extern struct dst_entry * ip6_route_output(struct sock *sk, |
| 47 | struct flowi *fl); |
| 48 | |
Daniel Lezcano | 433d49c | 2007-12-07 00:43:48 -0800 | [diff] [blame] | 49 | extern int ip6_route_init(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | extern void ip6_route_cleanup(void); |
| 51 | |
| 52 | extern int ipv6_route_ioctl(unsigned int cmd, void __user *arg); |
| 53 | |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 54 | extern int ip6_route_add(struct fib6_config *cfg); |
Thomas Graf | 40e22e8 | 2006-08-22 00:00:45 -0700 | [diff] [blame] | 55 | extern int ip6_ins_rt(struct rt6_info *); |
Thomas Graf | e0a1ad73 | 2006-08-22 00:00:21 -0700 | [diff] [blame] | 56 | extern int ip6_del_rt(struct rt6_info *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | extern int ip6_rt_addr_add(struct in6_addr *addr, |
| 59 | struct net_device *dev, |
| 60 | int anycast); |
| 61 | |
| 62 | extern int ip6_rt_addr_del(struct in6_addr *addr, |
| 63 | struct net_device *dev); |
| 64 | |
| 65 | extern void rt6_sndmsg(int type, struct in6_addr *dst, |
| 66 | struct in6_addr *src, |
| 67 | struct in6_addr *gw, |
| 68 | struct net_device *dev, |
| 69 | int dstlen, int srclen, |
| 70 | int metric, __u32 flags); |
| 71 | |
Daniel Lezcano | 606a2b4 | 2008-03-04 13:45:59 -0800 | [diff] [blame] | 72 | extern struct rt6_info *rt6_lookup(struct net *net, |
| 73 | struct in6_addr *daddr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | struct in6_addr *saddr, |
| 75 | int oif, int flags); |
| 76 | |
YOSHIFUJI Hideaki | 3b00944 | 2007-12-06 16:11:48 -0800 | [diff] [blame] | 77 | extern struct dst_entry *icmp6_dst_alloc(struct net_device *dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | struct neighbour *neigh, |
YOSHIFUJI Hideaki | 3b00944 | 2007-12-06 16:11:48 -0800 | [diff] [blame] | 79 | struct in6_addr *addr); |
| 80 | extern int icmp6_dst_gc(int *more); |
| 81 | |
Daniel Lezcano | 63152fc | 2008-03-03 23:31:11 -0800 | [diff] [blame] | 82 | extern void fib6_force_start_gc(struct net *net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
| 84 | extern struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev, |
| 85 | const struct in6_addr *addr, |
| 86 | int anycast); |
| 87 | |
| 88 | /* |
| 89 | * support functions for ND |
| 90 | * |
| 91 | */ |
| 92 | extern struct rt6_info * rt6_get_dflt_router(struct in6_addr *addr, |
| 93 | struct net_device *dev); |
| 94 | extern struct rt6_info * rt6_add_dflt_router(struct in6_addr *gwaddr, |
YOSHIFUJI Hideaki | ebacaaa | 2006-03-20 17:04:53 -0800 | [diff] [blame] | 95 | struct net_device *dev, |
| 96 | unsigned int pref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Daniel Lezcano | 7b4da53 | 2008-03-04 13:47:14 -0800 | [diff] [blame^] | 98 | extern void rt6_purge_dflt_routers(struct net *net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
YOSHIFUJI Hideaki | 70ceb4f | 2006-03-20 17:06:24 -0800 | [diff] [blame] | 100 | extern int rt6_route_rcv(struct net_device *dev, |
| 101 | u8 *opt, int len, |
| 102 | struct in6_addr *gwaddr); |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | extern void rt6_redirect(struct in6_addr *dest, |
YOSHIFUJI Hideaki | 5e032e3 | 2006-08-23 17:12:24 -0700 | [diff] [blame] | 105 | struct in6_addr *src, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | struct in6_addr *saddr, |
| 107 | struct neighbour *neigh, |
| 108 | u8 *lladdr, |
| 109 | int on_link); |
| 110 | |
| 111 | extern void rt6_pmtu_discovery(struct in6_addr *daddr, |
| 112 | struct in6_addr *saddr, |
| 113 | struct net_device *dev, |
| 114 | u32 pmtu); |
| 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | struct netlink_callback; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 118 | struct rt6_rtnl_dump_arg |
| 119 | { |
| 120 | struct sk_buff *skb; |
| 121 | struct netlink_callback *cb; |
| 122 | }; |
| 123 | |
| 124 | extern int rt6_dump_route(struct rt6_info *rt, void *p_arg); |
Daniel Lezcano | f3db485 | 2008-03-03 23:27:06 -0800 | [diff] [blame] | 125 | extern void rt6_ifdown(struct net *net, struct net_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | extern void rt6_mtu_change(struct net_device *dev, unsigned mtu); |
| 127 | |
| 128 | extern rwlock_t rt6_lock; |
| 129 | |
| 130 | /* |
| 131 | * Store a destination cache entry in a socket |
| 132 | */ |
Herbert Xu | 497c615 | 2006-07-30 20:19:33 -0700 | [diff] [blame] | 133 | static inline void __ip6_dst_store(struct sock *sk, struct dst_entry *dst, |
YOSHIFUJI Hideaki | 8e1ef0a | 2006-08-29 17:15:09 -0700 | [diff] [blame] | 134 | struct in6_addr *daddr, struct in6_addr *saddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | { |
| 136 | struct ipv6_pinfo *np = inet6_sk(sk); |
| 137 | struct rt6_info *rt = (struct rt6_info *) dst; |
| 138 | |
Herbert Xu | f83ef8c | 2006-06-30 13:37:03 -0700 | [diff] [blame] | 139 | sk_setup_caps(sk, dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | np->daddr_cache = daddr; |
YOSHIFUJI Hideaki | 8e1ef0a | 2006-08-29 17:15:09 -0700 | [diff] [blame] | 141 | #ifdef CONFIG_IPV6_SUBTREES |
| 142 | np->saddr_cache = saddr; |
| 143 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | np->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0; |
Herbert Xu | 497c615 | 2006-07-30 20:19:33 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | static inline void ip6_dst_store(struct sock *sk, struct dst_entry *dst, |
YOSHIFUJI Hideaki | 8e1ef0a | 2006-08-29 17:15:09 -0700 | [diff] [blame] | 148 | struct in6_addr *daddr, struct in6_addr *saddr) |
Herbert Xu | 497c615 | 2006-07-30 20:19:33 -0700 | [diff] [blame] | 149 | { |
| 150 | write_lock(&sk->sk_dst_lock); |
YOSHIFUJI Hideaki | 8e1ef0a | 2006-08-29 17:15:09 -0700 | [diff] [blame] | 151 | __ip6_dst_store(sk, dst, daddr, saddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | write_unlock(&sk->sk_dst_lock); |
| 153 | } |
| 154 | |
| 155 | static inline int ipv6_unicast_destination(struct sk_buff *skb) |
| 156 | { |
| 157 | struct rt6_info *rt = (struct rt6_info *) skb->dst; |
| 158 | |
| 159 | return rt->rt6i_flags & RTF_LOCAL; |
| 160 | } |
| 161 | |
| 162 | #endif |
| 163 | #endif |