]> git.karo-electronics.de Git - mv-sheeva.git/blob - include/net/ip6_route.h
23fed28db4bb2e02d52b563df2858653bf6f9206
[mv-sheeva.git] / include / net / ip6_route.h
1 #ifndef _NET_IP6_ROUTE_H
2 #define _NET_IP6_ROUTE_H
3
4 #define IP6_RT_PRIO_USER        1024
5 #define IP6_RT_PRIO_ADDRCONF    256
6 #define IP6_RT_PRIO_KERN        512
7
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
21         __be32                  lifetime;
22         __u8                    prefix[0];      /* 0,8 or 16 */
23 };
24
25 #ifdef __KERNEL__
26
27 #include <net/flow.h>
28 #include <net/ip6_fib.h>
29 #include <net/sock.h>
30 #include <linux/ip.h>
31 #include <linux/ipv6.h>
32
33 #define RT6_LOOKUP_F_IFACE              0x00000001
34 #define RT6_LOOKUP_F_REACHABLE          0x00000002
35 #define RT6_LOOKUP_F_HAS_SADDR          0x00000004
36 #define RT6_LOOKUP_F_SRCPREF_TMP        0x00000008
37 #define RT6_LOOKUP_F_SRCPREF_PUBLIC     0x00000010
38 #define RT6_LOOKUP_F_SRCPREF_COA        0x00000020
39
40 /*
41  * rt6_srcprefs2flags() and rt6_flags2srcprefs() translate
42  * between IPV6_ADDR_PREFERENCES socket option values
43  *      IPV6_PREFER_SRC_TMP    = 0x1
44  *      IPV6_PREFER_SRC_PUBLIC = 0x2
45  *      IPV6_PREFER_SRC_COA    = 0x4
46  * and above RT6_LOOKUP_F_SRCPREF_xxx flags.
47  */
48 static inline int rt6_srcprefs2flags(unsigned int srcprefs)
49 {
50         /* No need to bitmask because srcprefs have only 3 bits. */
51         return srcprefs << 3;
52 }
53
54 static inline unsigned int rt6_flags2srcprefs(int flags)
55 {
56         return (flags >> 3) & 7;
57 }
58
59 extern void                     rt6_bind_peer(struct rt6_info *rt,
60                                               int create);
61
62 extern void                     ip6_route_input(struct sk_buff *skb);
63
64 extern struct dst_entry *       ip6_route_output(struct net *net,
65                                                  struct sock *sk,
66                                                  struct flowi *fl);
67
68 extern int                      ip6_route_init(void);
69 extern void                     ip6_route_cleanup(void);
70
71 extern int                      ipv6_route_ioctl(struct net *net,
72                                                  unsigned int cmd,
73                                                  void __user *arg);
74
75 extern int                      ip6_route_add(struct fib6_config *cfg);
76 extern int                      ip6_ins_rt(struct rt6_info *);
77 extern int                      ip6_del_rt(struct rt6_info *);
78
79 extern struct rt6_info          *rt6_lookup(struct net *net,
80                                             const struct in6_addr *daddr,
81                                             const struct in6_addr *saddr,
82                                             int oif, int flags);
83
84 extern struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
85                                          struct neighbour *neigh,
86                                          const struct in6_addr *addr);
87 extern int icmp6_dst_gc(void);
88
89 extern void fib6_force_start_gc(struct net *net);
90
91 extern struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
92                                            const struct in6_addr *addr,
93                                            int anycast);
94
95 extern int                      ip6_dst_hoplimit(struct dst_entry *dst);
96
97 /*
98  *      support functions for ND
99  *
100  */
101 extern struct rt6_info *        rt6_get_dflt_router(struct in6_addr *addr,
102                                                     struct net_device *dev);
103 extern struct rt6_info *        rt6_add_dflt_router(struct in6_addr *gwaddr,
104                                                     struct net_device *dev,
105                                                     unsigned int pref);
106
107 extern void                     rt6_purge_dflt_routers(struct net *net);
108
109 extern int                      rt6_route_rcv(struct net_device *dev,
110                                               u8 *opt, int len,
111                                               struct in6_addr *gwaddr);
112
113 extern void                     rt6_redirect(struct in6_addr *dest,
114                                              struct in6_addr *src,
115                                              struct in6_addr *saddr,
116                                              struct neighbour *neigh,
117                                              u8 *lladdr,
118                                              int on_link);
119
120 extern void                     rt6_pmtu_discovery(struct in6_addr *daddr,
121                                                    struct in6_addr *saddr,
122                                                    struct net_device *dev,
123                                                    u32 pmtu);
124
125 struct netlink_callback;
126
127 struct rt6_rtnl_dump_arg {
128         struct sk_buff *skb;
129         struct netlink_callback *cb;
130         struct net *net;
131 };
132
133 extern int rt6_dump_route(struct rt6_info *rt, void *p_arg);
134 extern void rt6_ifdown(struct net *net, struct net_device *dev);
135 extern void rt6_mtu_change(struct net_device *dev, unsigned mtu);
136
137
138 /*
139  *      Store a destination cache entry in a socket
140  */
141 static inline void __ip6_dst_store(struct sock *sk, struct dst_entry *dst,
142                                    struct in6_addr *daddr, struct in6_addr *saddr)
143 {
144         struct ipv6_pinfo *np = inet6_sk(sk);
145         struct rt6_info *rt = (struct rt6_info *) dst;
146
147         sk_setup_caps(sk, dst);
148         np->daddr_cache = daddr;
149 #ifdef CONFIG_IPV6_SUBTREES
150         np->saddr_cache = saddr;
151 #endif
152         np->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
153 }
154
155 static inline void ip6_dst_store(struct sock *sk, struct dst_entry *dst,
156                                  struct in6_addr *daddr, struct in6_addr *saddr)
157 {
158         spin_lock(&sk->sk_dst_lock);
159         __ip6_dst_store(sk, dst, daddr, saddr);
160         spin_unlock(&sk->sk_dst_lock);
161 }
162
163 static inline int ipv6_unicast_destination(struct sk_buff *skb)
164 {
165         struct rt6_info *rt = (struct rt6_info *) skb_dst(skb);
166
167         return rt->rt6i_flags & RTF_LOCAL;
168 }
169
170 #endif
171 #endif