patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / include / net / route.h
1 /*
2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
3  *              operating system.  INET  is implemented using the  BSD Socket
4  *              interface as the means of communication with the user level.
5  *
6  *              Definitions for the IP router.
7  *
8  * Version:     @(#)route.h     1.0.4   05/27/93
9  *
10  * Authors:     Ross Biro, <bir7@leland.Stanford.Edu>
11  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12  * Fixes:
13  *              Alan Cox        :       Reformatted. Added ip_rt_local()
14  *              Alan Cox        :       Support for TCP parameters.
15  *              Alexey Kuznetsov:       Major changes for new routing code.
16  *              Mike McLagan    :       Routing by source
17  *              Robert Olsson   :       Added rt_cache statistics
18  *
19  *              This program is free software; you can redistribute it and/or
20  *              modify it under the terms of the GNU General Public License
21  *              as published by the Free Software Foundation; either version
22  *              2 of the License, or (at your option) any later version.
23  */
24 #ifndef _ROUTE_H
25 #define _ROUTE_H
26
27 #include <linux/config.h>
28 #include <net/dst.h>
29 #include <net/inetpeer.h>
30 #include <net/flow.h>
31 #include <linux/in_route.h>
32 #include <linux/rtnetlink.h>
33 #include <linux/route.h>
34 #include <linux/ip.h>
35 #include <linux/cache.h>
36 #include <linux/vs_base.h>
37 #include <linux/vs_context.h>
38 #include <linux/vs_network.h>
39
40 #ifndef __KERNEL__
41 #warning This file is not supposed to be used outside of kernel.
42 #endif
43
44 #define RTO_ONLINK      0x01
45
46 #define RTO_CONN        0
47 /* RTO_CONN is not used (being alias for 0), but preserved not to break
48  * some modules referring to it. */
49
50 #define RT_CONN_FLAGS(sk)   (RT_TOS(inet_sk(sk)->tos) | sk->sk_localroute)
51
52 struct inet_peer;
53 struct rtable
54 {
55         union
56         {
57                 struct dst_entry        dst;
58                 struct rtable           *rt_next;
59         } u;
60
61         struct in_device        *idev;
62         
63         unsigned                rt_flags;
64         unsigned                rt_type;
65
66         __u32                   rt_dst; /* Path destination     */
67         __u32                   rt_src; /* Path source          */
68         int                     rt_iif;
69
70         /* Info on neighbour */
71         __u32                   rt_gateway;
72
73         /* Cache lookup keys */
74         struct flowi            fl;
75
76         /* Miscellaneous cached information */
77         __u32                   rt_spec_dst; /* RFC1122 specific destination */
78         struct inet_peer        *peer; /* long-living peer info */
79
80 #ifdef CONFIG_IP_ROUTE_NAT
81         __u32                   rt_src_map;
82         __u32                   rt_dst_map;
83 #endif
84 };
85
86 struct ip_rt_acct
87 {
88         __u32   o_bytes;
89         __u32   o_packets;
90         __u32   i_bytes;
91         __u32   i_packets;
92 };
93
94 struct rt_cache_stat 
95 {
96         unsigned int in_hit;
97         unsigned int in_slow_tot;
98         unsigned int in_slow_mc;
99         unsigned int in_no_route;
100         unsigned int in_brd;
101         unsigned int in_martian_dst;
102         unsigned int in_martian_src;
103         unsigned int out_hit;
104         unsigned int out_slow_tot;
105         unsigned int out_slow_mc;
106         unsigned int gc_total;
107         unsigned int gc_ignored;
108         unsigned int gc_goal_miss;
109         unsigned int gc_dst_overflow;
110         unsigned int in_hlist_search;
111         unsigned int out_hlist_search;
112 };
113
114 extern struct rt_cache_stat *rt_cache_stat;
115 #define RT_CACHE_STAT_INC(field)                                          \
116                 (per_cpu_ptr(rt_cache_stat, smp_processor_id())->field++)
117
118 extern struct ip_rt_acct *ip_rt_acct;
119
120 struct in_device;
121 extern int              ip_rt_init(void);
122 extern void             ip_rt_redirect(u32 old_gw, u32 dst, u32 new_gw,
123                                        u32 src, u8 tos, struct net_device *dev);
124 extern void             ip_rt_advice(struct rtable **rp, int advice);
125 extern void             rt_cache_flush(int how);
126 extern int              __ip_route_output_key(struct rtable **, const struct flowi *flp);
127 extern int              ip_route_output_key(struct rtable **, struct flowi *flp);
128 extern int              ip_route_output_flow(struct rtable **rp, struct flowi *flp, struct sock *sk, int flags);
129 extern int              ip_route_input(struct sk_buff*, u32 dst, u32 src, u8 tos, struct net_device *devin);
130 extern unsigned short   ip_rt_frag_needed(struct iphdr *iph, unsigned short new_mtu);
131 extern void             ip_rt_send_redirect(struct sk_buff *skb);
132
133 extern unsigned         inet_addr_type(u32 addr);
134 extern void             ip_rt_multicast_event(struct in_device *);
135 extern int              ip_rt_ioctl(unsigned int cmd, void *arg);
136 extern void             ip_rt_get_source(u8 *src, struct rtable *rt);
137 extern int              ip_rt_dump(struct sk_buff *skb,  struct netlink_callback *cb);
138
139 static inline void ip_rt_put(struct rtable * rt)
140 {
141         if (rt)
142                 dst_release(&rt->u.dst);
143 }
144
145 #define IPTOS_RT_MASK   (IPTOS_TOS_MASK & ~3)
146
147 extern __u8 ip_tos2prio[16];
148
149 static inline char rt_tos2priority(u8 tos)
150 {
151         return ip_tos2prio[IPTOS_TOS(tos)>>1];
152 }
153
154 #define IPI_LOOPBACK    0x0100007f
155
156 static inline int ip_find_src(struct nx_info *nxi, struct rtable **rp, struct flowi *fl)
157 {
158         int err;
159         int i, n = nxi->nbipv4;
160         u32 ipv4root = nxi->ipv4[0];
161
162         if (ipv4root == 0)
163                 return 0;
164
165         if (fl->fl4_src == 0) {
166                 if (n > 1) {
167                         u32 foundsrc;
168
169                         err = __ip_route_output_key(rp, fl);
170                         if (err) {
171                                 fl->fl4_src = ipv4root;
172                                 err = __ip_route_output_key(rp, fl);
173                         }
174                         if (err)
175                                 return err;
176
177                         foundsrc = (*rp)->rt_src;
178                         ip_rt_put(*rp);
179
180                         for (i=0; i<n; i++){
181                                 u32 mask = nxi->mask[i];
182                                 u32 ipv4 = nxi->ipv4[i];
183                                 u32 net4 = ipv4 & mask;
184
185                                 if (foundsrc == ipv4) {
186                                         fl->fl4_src = ipv4;
187                                         break;
188                                 }
189                                 if (!fl->fl4_src && (foundsrc & mask) == net4)
190                                         fl->fl4_src = ipv4;
191                         }
192                 }
193                 if (fl->fl4_src == 0)
194                         fl->fl4_src = (fl->fl4_dst == IPI_LOOPBACK)
195                                 ? IPI_LOOPBACK : ipv4root;
196         } else {
197                 for (i=0; i<n; i++) {
198                         if (nxi->ipv4[i] == fl->fl4_src)
199                                 break;
200                 }
201                 if (i == n)
202                         return -EPERM;
203         }
204         return 0;
205 }
206
207 static inline int ip_route_connect(struct rtable **rp, u32 dst,
208                                    u32 src, u32 tos, int oif, u8 protocol,
209                                    u16 sport, u16 dport, struct sock *sk)
210 {
211         struct flowi fl = { .oif = oif,
212                             .nl_u = { .ip4_u = { .daddr = dst,
213                                                  .saddr = src,
214                                                  .tos   = tos } },
215                             .proto = protocol,
216                             .uli_u = { .ports =
217                                        { .sport = sport,
218                                          .dport = dport } } };
219
220         int err;
221         struct nx_info *nx_info = current->nx_info;
222
223         if (sk)
224                 nx_info = sk->sk_nx_info;
225         vxdprintk("ip_route_connect(%p) %p,%p;%lx\n",
226                 sk, nx_info, sk->sk_socket,
227                 (sk->sk_socket?sk->sk_socket->flags:0));
228
229         if (nx_info) {
230                 err = ip_find_src(nx_info, rp, &fl);
231                 if (err)
232                         return err;
233                 if (fl.fl4_dst == IPI_LOOPBACK && !vx_check(0, VX_ADMIN))
234                         fl.fl4_dst = nx_info->ipv4[0];
235         }       
236         if (!fl.fl4_dst || !fl.fl4_src) {
237                 err = __ip_route_output_key(rp, &fl);
238                 if (err)
239                         return err;
240                 fl.fl4_dst = (*rp)->rt_dst;
241                 fl.fl4_src = (*rp)->rt_src;
242                 ip_rt_put(*rp);
243                 *rp = NULL;
244         }
245         return ip_route_output_flow(rp, &fl, sk, 0);
246 }
247
248 static inline int ip_route_newports(struct rtable **rp, u16 sport, u16 dport,
249                                     struct sock *sk)
250 {
251         if (sport != (*rp)->fl.fl_ip_sport ||
252             dport != (*rp)->fl.fl_ip_dport) {
253                 struct flowi fl;
254
255                 memcpy(&fl, &(*rp)->fl, sizeof(fl));
256                 fl.fl_ip_sport = sport;
257                 fl.fl_ip_dport = dport;
258                 ip_rt_put(*rp);
259                 *rp = NULL;
260                 return ip_route_output_flow(rp, &fl, sk, 0);
261         }
262         return 0;
263 }
264
265 extern void rt_bind_peer(struct rtable *rt, int create);
266
267 static inline struct inet_peer *rt_get_peer(struct rtable *rt)
268 {
269         if (rt->peer)
270                 return rt->peer;
271
272         rt_bind_peer(rt, 0);
273         return rt->peer;
274 }
275
276 #endif  /* _ROUTE_H */