blob: 0e2895c8b27019775bc2cf76ce23a5749d54dd86 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _NET_IP6_ROUTE_H
2#define _NET_IP6_ROUTE_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#define IP6_RT_PRIO_USER 1024
5#define IP6_RT_PRIO_ADDRCONF 256
6#define IP6_RT_PRIO_KERN 512
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -08008struct 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 Viroe69a4adc2006-11-14 20:56:00 -080021 __be32 lifetime;
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -080022 __u8 prefix[0]; /* 0,8 or 16 */
23};
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#ifdef __KERNEL__
26
27#include <net/flow.h>
28#include <net/ip6_fib.h>
29#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/ip.h>
31#include <linux/ipv6.h>
32
YOSHIFUJI Hideaki77d16f42006-08-23 17:25:05 -070033#define RT6_LOOKUP_F_IFACE 0x1
34#define RT6_LOOKUP_F_REACHABLE 0x2
35#define RT6_LOOKUP_F_HAS_SADDR 0x4
36
Daniel Lezcanobdb32892008-03-04 13:48:10 -080037extern struct rt6_info *ip6_null_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Thomas Graf101367c2006-08-04 03:39:02 -070039#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Daniel Lezcanobdb32892008-03-04 13:48:10 -080040extern struct rt6_info *ip6_prohibit_entry;
41extern struct rt6_info *ip6_blk_hole_entry;
Thomas Graf101367c2006-08-04 03:39:02 -070042#endif
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044extern void ip6_route_input(struct sk_buff *skb);
45
Daniel Lezcano4591db42008-03-05 10:48:10 -080046extern struct dst_entry * ip6_route_output(struct net *net,
47 struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 struct flowi *fl);
49
Daniel Lezcano433d49c2007-12-07 00:43:48 -080050extern int ip6_route_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051extern void ip6_route_cleanup(void);
52
Daniel Lezcano55786892008-03-04 13:47:47 -080053extern int ipv6_route_ioctl(struct net *net,
54 unsigned int cmd,
55 void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Thomas Graf86872cb2006-08-22 00:01:08 -070057extern int ip6_route_add(struct fib6_config *cfg);
Thomas Graf40e22e82006-08-22 00:00:45 -070058extern int ip6_ins_rt(struct rt6_info *);
Thomas Grafe0a1ad732006-08-22 00:00:21 -070059extern int ip6_del_rt(struct rt6_info *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61extern int ip6_rt_addr_add(struct in6_addr *addr,
62 struct net_device *dev,
63 int anycast);
64
65extern int ip6_rt_addr_del(struct in6_addr *addr,
66 struct net_device *dev);
67
68extern void rt6_sndmsg(int type, struct in6_addr *dst,
69 struct in6_addr *src,
70 struct in6_addr *gw,
71 struct net_device *dev,
72 int dstlen, int srclen,
73 int metric, __u32 flags);
74
Daniel Lezcano606a2b42008-03-04 13:45:59 -080075extern struct rt6_info *rt6_lookup(struct net *net,
76 struct in6_addr *daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct in6_addr *saddr,
78 int oif, int flags);
79
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -080080extern struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 struct neighbour *neigh,
YOSHIFUJI Hideaki3b009442007-12-06 16:11:48 -080082 struct in6_addr *addr);
83extern int icmp6_dst_gc(int *more);
84
Daniel Lezcano63152fc2008-03-03 23:31:11 -080085extern void fib6_force_start_gc(struct net *net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87extern struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
88 const struct in6_addr *addr,
89 int anycast);
90
91/*
92 * support functions for ND
93 *
94 */
95extern struct rt6_info * rt6_get_dflt_router(struct in6_addr *addr,
96 struct net_device *dev);
97extern struct rt6_info * rt6_add_dflt_router(struct in6_addr *gwaddr,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -080098 struct net_device *dev,
99 unsigned int pref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800101extern void rt6_purge_dflt_routers(struct net *net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
YOSHIFUJI Hideaki70ceb4f2006-03-20 17:06:24 -0800103extern int rt6_route_rcv(struct net_device *dev,
104 u8 *opt, int len,
105 struct in6_addr *gwaddr);
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107extern void rt6_redirect(struct in6_addr *dest,
YOSHIFUJI Hideaki5e032e32006-08-23 17:12:24 -0700108 struct in6_addr *src,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 struct in6_addr *saddr,
110 struct neighbour *neigh,
111 u8 *lladdr,
112 int on_link);
113
114extern void rt6_pmtu_discovery(struct in6_addr *daddr,
115 struct in6_addr *saddr,
116 struct net_device *dev,
117 u32 pmtu);
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119struct netlink_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Patrick McHardy1b43af52006-08-10 23:11:17 -0700121struct rt6_rtnl_dump_arg
122{
123 struct sk_buff *skb;
124 struct netlink_callback *cb;
125};
126
127extern int rt6_dump_route(struct rt6_info *rt, void *p_arg);
Daniel Lezcanof3db4852008-03-03 23:27:06 -0800128extern void rt6_ifdown(struct net *net, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129extern void rt6_mtu_change(struct net_device *dev, unsigned mtu);
130
131extern rwlock_t rt6_lock;
132
133/*
134 * Store a destination cache entry in a socket
135 */
Herbert Xu497c6152006-07-30 20:19:33 -0700136static inline void __ip6_dst_store(struct sock *sk, struct dst_entry *dst,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700137 struct in6_addr *daddr, struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 struct ipv6_pinfo *np = inet6_sk(sk);
140 struct rt6_info *rt = (struct rt6_info *) dst;
141
Herbert Xuf83ef8c2006-06-30 13:37:03 -0700142 sk_setup_caps(sk, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 np->daddr_cache = daddr;
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700144#ifdef CONFIG_IPV6_SUBTREES
145 np->saddr_cache = saddr;
146#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 np->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
Herbert Xu497c6152006-07-30 20:19:33 -0700148}
149
150static inline void ip6_dst_store(struct sock *sk, struct dst_entry *dst,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700151 struct in6_addr *daddr, struct in6_addr *saddr)
Herbert Xu497c6152006-07-30 20:19:33 -0700152{
153 write_lock(&sk->sk_dst_lock);
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700154 __ip6_dst_store(sk, dst, daddr, saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 write_unlock(&sk->sk_dst_lock);
156}
157
158static inline int ipv6_unicast_destination(struct sk_buff *skb)
159{
160 struct rt6_info *rt = (struct rt6_info *) skb->dst;
161
162 return rt->rt6i_flags & RTF_LOCAL;
163}
164
165#endif
166#endif