]> bbs.cooldavid.org Git - net-next-2.6.git/blob - include/net/route.h
net: get rid of rtable->idev
[net-next-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
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 <net/dst.h>
28 #include <net/inetpeer.h>
29 #include <net/flow.h>
30 #include <net/inet_sock.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/security.h>
37
38 #ifndef __KERNEL__
39 #warning This file is not supposed to be used outside of kernel.
40 #endif
41
42 #define RTO_ONLINK      0x01
43
44 #define RTO_CONN        0
45 /* RTO_CONN is not used (being alias for 0), but preserved not to break
46  * some modules referring to it. */
47
48 #define RT_CONN_FLAGS(sk)   (RT_TOS(inet_sk(sk)->tos) | sock_flag(sk, SOCK_LOCALROUTE))
49
50 struct fib_nh;
51 struct inet_peer;
52 struct rtable {
53         struct dst_entry        dst;
54
55         /* Cache lookup keys */
56         struct flowi            fl;
57
58         int                     rt_genid;
59         unsigned                rt_flags;
60         __u16                   rt_type;
61
62         __be32                  rt_dst; /* Path destination     */
63         __be32                  rt_src; /* Path source          */
64         int                     rt_iif;
65
66         /* Info on neighbour */
67         __be32                  rt_gateway;
68
69         /* Miscellaneous cached information */
70         __be32                  rt_spec_dst; /* RFC1122 specific destination */
71         struct inet_peer        *peer; /* long-living peer info */
72 };
73
74 struct ip_rt_acct {
75         __u32   o_bytes;
76         __u32   o_packets;
77         __u32   i_bytes;
78         __u32   i_packets;
79 };
80
81 struct rt_cache_stat {
82         unsigned int in_hit;
83         unsigned int in_slow_tot;
84         unsigned int in_slow_mc;
85         unsigned int in_no_route;
86         unsigned int in_brd;
87         unsigned int in_martian_dst;
88         unsigned int in_martian_src;
89         unsigned int out_hit;
90         unsigned int out_slow_tot;
91         unsigned int out_slow_mc;
92         unsigned int gc_total;
93         unsigned int gc_ignored;
94         unsigned int gc_goal_miss;
95         unsigned int gc_dst_overflow;
96         unsigned int in_hlist_search;
97         unsigned int out_hlist_search;
98 };
99
100 extern struct ip_rt_acct __percpu *ip_rt_acct;
101
102 struct in_device;
103 extern int              ip_rt_init(void);
104 extern void             ip_rt_redirect(__be32 old_gw, __be32 dst, __be32 new_gw,
105                                        __be32 src, struct net_device *dev);
106 extern void             rt_cache_flush(struct net *net, int how);
107 extern void             rt_cache_flush_batch(void);
108 extern int              __ip_route_output_key(struct net *, struct rtable **, const struct flowi *flp);
109 extern int              ip_route_output_key(struct net *, struct rtable **, struct flowi *flp);
110 extern int              ip_route_output_flow(struct net *, struct rtable **rp, struct flowi *flp, struct sock *sk, int flags);
111
112 extern int ip_route_input_common(struct sk_buff *skb, __be32 dst, __be32 src,
113                                  u8 tos, struct net_device *devin, bool noref);
114
115 static inline int ip_route_input(struct sk_buff *skb, __be32 dst, __be32 src,
116                                  u8 tos, struct net_device *devin)
117 {
118         return ip_route_input_common(skb, dst, src, tos, devin, false);
119 }
120
121 static inline int ip_route_input_noref(struct sk_buff *skb, __be32 dst, __be32 src,
122                                        u8 tos, struct net_device *devin)
123 {
124         return ip_route_input_common(skb, dst, src, tos, devin, true);
125 }
126
127 extern unsigned short   ip_rt_frag_needed(struct net *net, struct iphdr *iph, unsigned short new_mtu, struct net_device *dev);
128 extern void             ip_rt_send_redirect(struct sk_buff *skb);
129
130 extern unsigned         inet_addr_type(struct net *net, __be32 addr);
131 extern unsigned         inet_dev_addr_type(struct net *net, const struct net_device *dev, __be32 addr);
132 extern void             ip_rt_multicast_event(struct in_device *);
133 extern int              ip_rt_ioctl(struct net *, unsigned int cmd, void __user *arg);
134 extern void             ip_rt_get_source(u8 *src, struct rtable *rt);
135 extern int              ip_rt_dump(struct sk_buff *skb,  struct netlink_callback *cb);
136
137 struct in_ifaddr;
138 extern void fib_add_ifaddr(struct in_ifaddr *);
139
140 static inline void ip_rt_put(struct rtable * rt)
141 {
142         if (rt)
143                 dst_release(&rt->dst);
144 }
145
146 #define IPTOS_RT_MASK   (IPTOS_TOS_MASK & ~3)
147
148 extern const __u8 ip_tos2prio[16];
149
150 static inline char rt_tos2priority(u8 tos)
151 {
152         return ip_tos2prio[IPTOS_TOS(tos)>>1];
153 }
154
155 static inline int ip_route_connect(struct rtable **rp, __be32 dst,
156                                    __be32 src, u32 tos, int oif, u8 protocol,
157                                    __be16 sport, __be16 dport, struct sock *sk,
158                                    int flags)
159 {
160         struct flowi fl = { .oif = oif,
161                             .mark = sk->sk_mark,
162                             .nl_u = { .ip4_u = { .daddr = dst,
163                                                  .saddr = src,
164                                                  .tos   = tos } },
165                             .proto = protocol,
166                             .uli_u = { .ports =
167                                        { .sport = sport,
168                                          .dport = dport } } };
169
170         int err;
171         struct net *net = sock_net(sk);
172
173         if (inet_sk(sk)->transparent)
174                 fl.flags |= FLOWI_FLAG_ANYSRC;
175
176         if (!dst || !src) {
177                 err = __ip_route_output_key(net, rp, &fl);
178                 if (err)
179                         return err;
180                 fl.fl4_dst = (*rp)->rt_dst;
181                 fl.fl4_src = (*rp)->rt_src;
182                 ip_rt_put(*rp);
183                 *rp = NULL;
184         }
185         security_sk_classify_flow(sk, &fl);
186         return ip_route_output_flow(net, rp, &fl, sk, flags);
187 }
188
189 static inline int ip_route_newports(struct rtable **rp, u8 protocol,
190                                     __be16 sport, __be16 dport, struct sock *sk)
191 {
192         if (sport != (*rp)->fl.fl_ip_sport ||
193             dport != (*rp)->fl.fl_ip_dport) {
194                 struct flowi fl;
195
196                 memcpy(&fl, &(*rp)->fl, sizeof(fl));
197                 fl.fl_ip_sport = sport;
198                 fl.fl_ip_dport = dport;
199                 fl.proto = protocol;
200                 if (inet_sk(sk)->transparent)
201                         fl.flags |= FLOWI_FLAG_ANYSRC;
202                 ip_rt_put(*rp);
203                 *rp = NULL;
204                 security_sk_classify_flow(sk, &fl);
205                 return ip_route_output_flow(sock_net(sk), rp, &fl, sk, 0);
206         }
207         return 0;
208 }
209
210 extern void rt_bind_peer(struct rtable *rt, int create);
211
212 static inline struct inet_peer *rt_get_peer(struct rtable *rt)
213 {
214         if (rt->peer)
215                 return rt->peer;
216
217         rt_bind_peer(rt, 0);
218         return rt->peer;
219 }
220
221 static inline int inet_iif(const struct sk_buff *skb)
222 {
223         return skb_rtable(skb)->rt_iif;
224 }
225
226 #endif  /* _ROUTE_H */