[IPV6] ROUTE: Unify RT6_F_xxx and RT6_SELECT_F_xxx flags
[safe/jmp/linux-2.6] / include / net / ip6_route.h
1 #ifndef _NET_IP6_ROUTE_H
2 #define _NET_IP6_ROUTE_H
3
4 #define IP6_RT_PRIO_FW          16
5 #define IP6_RT_PRIO_USER        1024
6 #define IP6_RT_PRIO_ADDRCONF    256
7 #define IP6_RT_PRIO_KERN        512
8 #define IP6_RT_FLOW_MASK        0x00ff
9
10 struct route_info {
11         __u8                    type;
12         __u8                    length;
13         __u8                    prefix_len;
14 #if defined(__BIG_ENDIAN_BITFIELD)
15         __u8                    reserved_h:3,
16                                 route_pref:2,
17                                 reserved_l:3;
18 #elif defined(__LITTLE_ENDIAN_BITFIELD)
19         __u8                    reserved_l:3,
20                                 route_pref:2,
21                                 reserved_h:3;
22 #endif
23         __u32                   lifetime;
24         __u8                    prefix[0];      /* 0,8 or 16 */
25 };
26
27 #ifdef __KERNEL__
28
29 #include <net/flow.h>
30 #include <net/ip6_fib.h>
31 #include <net/sock.h>
32 #include <linux/ip.h>
33 #include <linux/ipv6.h>
34
35 #define RT6_LOOKUP_F_IFACE      0x1
36 #define RT6_LOOKUP_F_REACHABLE  0x2
37 #define RT6_LOOKUP_F_HAS_SADDR  0x4
38
39 struct pol_chain {
40         int                     type;
41         int                     priority;
42         struct fib6_node        *rules;
43         struct pol_chain        *next;
44 };
45
46 extern struct rt6_info  ip6_null_entry;
47
48 #ifdef CONFIG_IPV6_MULTIPLE_TABLES
49 extern struct rt6_info  ip6_prohibit_entry;
50 extern struct rt6_info  ip6_blk_hole_entry;
51 #endif
52
53 extern int ip6_rt_gc_interval;
54
55 extern void                     ip6_route_input(struct sk_buff *skb);
56
57 extern struct dst_entry *       ip6_route_output(struct sock *sk,
58                                                  struct flowi *fl);
59
60 extern int                      ip6_route_me_harder(struct sk_buff *skb);
61
62 extern void                     ip6_route_init(void);
63 extern void                     ip6_route_cleanup(void);
64
65 extern int                      ipv6_route_ioctl(unsigned int cmd, void __user *arg);
66
67 extern int                      ip6_route_add(struct fib6_config *cfg);
68 extern int                      ip6_ins_rt(struct rt6_info *);
69 extern int                      ip6_del_rt(struct rt6_info *);
70
71 extern int                      ip6_rt_addr_add(struct in6_addr *addr,
72                                                 struct net_device *dev,
73                                                 int anycast);
74
75 extern int                      ip6_rt_addr_del(struct in6_addr *addr,
76                                                 struct net_device *dev);
77
78 extern void                     rt6_sndmsg(int type, struct in6_addr *dst,
79                                            struct in6_addr *src,
80                                            struct in6_addr *gw,
81                                            struct net_device *dev, 
82                                            int dstlen, int srclen,
83                                            int metric, __u32 flags);
84
85 extern struct rt6_info          *rt6_lookup(struct in6_addr *daddr,
86                                             struct in6_addr *saddr,
87                                             int oif, int flags);
88
89 extern struct dst_entry *ndisc_dst_alloc(struct net_device *dev,
90                                          struct neighbour *neigh,
91                                          struct in6_addr *addr,
92                                          int (*output)(struct sk_buff *));
93 extern int ndisc_dst_gc(int *more);
94 extern void fib6_force_start_gc(void);
95
96 extern struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
97                                            const struct in6_addr *addr,
98                                            int anycast);
99
100 /*
101  *      support functions for ND
102  *
103  */
104 extern struct rt6_info *        rt6_get_dflt_router(struct in6_addr *addr,
105                                                     struct net_device *dev);
106 extern struct rt6_info *        rt6_add_dflt_router(struct in6_addr *gwaddr,
107                                                     struct net_device *dev,
108                                                     unsigned int pref);
109
110 extern void                     rt6_purge_dflt_routers(void);
111
112 extern int                      rt6_route_rcv(struct net_device *dev,
113                                               u8 *opt, int len,
114                                               struct in6_addr *gwaddr);
115
116 extern void                     rt6_redirect(struct in6_addr *dest,
117                                              struct in6_addr *src,
118                                              struct in6_addr *saddr,
119                                              struct neighbour *neigh,
120                                              u8 *lladdr,
121                                              int on_link);
122
123 extern void                     rt6_pmtu_discovery(struct in6_addr *daddr,
124                                                    struct in6_addr *saddr,
125                                                    struct net_device *dev,
126                                                    u32 pmtu);
127
128 struct nlmsghdr;
129 struct netlink_callback;
130 extern int inet6_dump_fib(struct sk_buff *skb, struct netlink_callback *cb);
131 extern int inet6_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg);
132 extern int inet6_rtm_delroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg);
133 extern int inet6_rtm_getroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg);
134
135 struct rt6_rtnl_dump_arg
136 {
137         struct sk_buff *skb;
138         struct netlink_callback *cb;
139 };
140
141 extern int rt6_dump_route(struct rt6_info *rt, void *p_arg);
142 extern void rt6_ifdown(struct net_device *dev);
143 extern void rt6_mtu_change(struct net_device *dev, unsigned mtu);
144
145 extern rwlock_t rt6_lock;
146
147 /*
148  *      Store a destination cache entry in a socket
149  */
150 static inline void __ip6_dst_store(struct sock *sk, struct dst_entry *dst,
151                                    struct in6_addr *daddr, struct in6_addr *saddr)
152 {
153         struct ipv6_pinfo *np = inet6_sk(sk);
154         struct rt6_info *rt = (struct rt6_info *) dst;
155
156         sk_setup_caps(sk, dst);
157         np->daddr_cache = daddr;
158 #ifdef CONFIG_IPV6_SUBTREES
159         np->saddr_cache = saddr;
160 #endif
161         np->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
162 }
163
164 static inline void ip6_dst_store(struct sock *sk, struct dst_entry *dst,
165                                  struct in6_addr *daddr, struct in6_addr *saddr)
166 {
167         write_lock(&sk->sk_dst_lock);
168         __ip6_dst_store(sk, dst, daddr, saddr);
169         write_unlock(&sk->sk_dst_lock);
170 }
171
172 static inline int ipv6_unicast_destination(struct sk_buff *skb)
173 {
174         struct rt6_info *rt = (struct rt6_info *) skb->dst;
175
176         return rt->rt6i_flags & RTF_LOCAL;
177 }
178
179 #endif
180 #endif