]> git.karo-electronics.de Git - mv-sheeva.git/blob - include/net/ip_fib.h
ipv4: Cache source address in nexthop entries.
[mv-sheeva.git] / include / net / ip_fib.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 Forwarding Information Base.
7  *
8  * Authors:     A.N.Kuznetsov, <kuznet@ms2.inr.ac.ru>
9  *
10  *              This program is free software; you can redistribute it and/or
11  *              modify it under the terms of the GNU General Public License
12  *              as published by the Free Software Foundation; either version
13  *              2 of the License, or (at your option) any later version.
14  */
15
16 #ifndef _NET_IP_FIB_H
17 #define _NET_IP_FIB_H
18
19 #include <net/flow.h>
20 #include <linux/seq_file.h>
21 #include <net/fib_rules.h>
22
23 struct fib_config {
24         u8                      fc_dst_len;
25         u8                      fc_tos;
26         u8                      fc_protocol;
27         u8                      fc_scope;
28         u8                      fc_type;
29         /* 3 bytes unused */
30         u32                     fc_table;
31         __be32                  fc_dst;
32         __be32                  fc_gw;
33         int                     fc_oif;
34         u32                     fc_flags;
35         u32                     fc_priority;
36         __be32                  fc_prefsrc;
37         struct nlattr           *fc_mx;
38         struct rtnexthop        *fc_mp;
39         int                     fc_mx_len;
40         int                     fc_mp_len;
41         u32                     fc_flow;
42         u32                     fc_nlflags;
43         struct nl_info          fc_nlinfo;
44  };
45
46 struct fib_info;
47
48 struct fib_nh {
49         struct net_device       *nh_dev;
50         struct hlist_node       nh_hash;
51         struct fib_info         *nh_parent;
52         unsigned                nh_flags;
53         unsigned char           nh_scope;
54 #ifdef CONFIG_IP_ROUTE_MULTIPATH
55         int                     nh_weight;
56         int                     nh_power;
57 #endif
58 #ifdef CONFIG_IP_ROUTE_CLASSID
59         __u32                   nh_tclassid;
60 #endif
61         int                     nh_oif;
62         __be32                  nh_gw;
63         __be32                  nh_saddr;
64 };
65
66 /*
67  * This structure contains data shared by many of routes.
68  */
69
70 struct fib_info {
71         struct hlist_node       fib_hash;
72         struct hlist_node       fib_lhash;
73         struct net              *fib_net;
74         int                     fib_treeref;
75         atomic_t                fib_clntref;
76         int                     fib_dead;
77         unsigned                fib_flags;
78         int                     fib_protocol;
79         __be32                  fib_prefsrc;
80         u32                     fib_priority;
81         u32                     *fib_metrics;
82 #define fib_mtu fib_metrics[RTAX_MTU-1]
83 #define fib_window fib_metrics[RTAX_WINDOW-1]
84 #define fib_rtt fib_metrics[RTAX_RTT-1]
85 #define fib_advmss fib_metrics[RTAX_ADVMSS-1]
86         int                     fib_nhs;
87 #ifdef CONFIG_IP_ROUTE_MULTIPATH
88         int                     fib_power;
89 #endif
90         struct rcu_head         rcu;
91         struct fib_nh           fib_nh[0];
92 #define fib_dev         fib_nh[0].nh_dev
93 };
94
95
96 #ifdef CONFIG_IP_MULTIPLE_TABLES
97 struct fib_rule;
98 #endif
99
100 struct fib_table;
101 struct fib_result {
102         unsigned char   prefixlen;
103         unsigned char   nh_sel;
104         unsigned char   type;
105         unsigned char   scope;
106         struct fib_info *fi;
107         struct fib_table *table;
108         struct list_head *fa_head;
109 #ifdef CONFIG_IP_MULTIPLE_TABLES
110         struct fib_rule *r;
111 #endif
112 };
113
114 struct fib_result_nl {
115         __be32          fl_addr;   /* To be looked up*/
116         u32             fl_mark;
117         unsigned char   fl_tos;
118         unsigned char   fl_scope;
119         unsigned char   tb_id_in;
120
121         unsigned char   tb_id;      /* Results */
122         unsigned char   prefixlen;
123         unsigned char   nh_sel;
124         unsigned char   type;
125         unsigned char   scope;
126         int             err;      
127 };
128
129 #ifdef CONFIG_IP_ROUTE_MULTIPATH
130
131 #define FIB_RES_NH(res)         ((res).fi->fib_nh[(res).nh_sel])
132
133 #define FIB_TABLE_HASHSZ 2
134
135 #else /* CONFIG_IP_ROUTE_MULTIPATH */
136
137 #define FIB_RES_NH(res)         ((res).fi->fib_nh[0])
138
139 #define FIB_TABLE_HASHSZ 256
140
141 #endif /* CONFIG_IP_ROUTE_MULTIPATH */
142
143 #define FIB_RES_SADDR(res)              (FIB_RES_NH(res).nh_saddr)
144 #define FIB_RES_GW(res)                 (FIB_RES_NH(res).nh_gw)
145 #define FIB_RES_DEV(res)                (FIB_RES_NH(res).nh_dev)
146 #define FIB_RES_OIF(res)                (FIB_RES_NH(res).nh_oif)
147
148 #define FIB_RES_PREFSRC(res)            ((res).fi->fib_prefsrc ? : FIB_RES_SADDR(res))
149
150 struct fib_table {
151         struct hlist_node tb_hlist;
152         u32             tb_id;
153         int             tb_default;
154         unsigned char   tb_data[0];
155 };
156
157 extern int fib_table_lookup(struct fib_table *tb, const struct flowi *flp,
158                             struct fib_result *res, int fib_flags);
159 extern int fib_table_insert(struct fib_table *, struct fib_config *);
160 extern int fib_table_delete(struct fib_table *, struct fib_config *);
161 extern int fib_table_dump(struct fib_table *table, struct sk_buff *skb,
162                           struct netlink_callback *cb);
163 extern int fib_table_flush(struct fib_table *table);
164 extern void fib_free_table(struct fib_table *tb);
165
166
167
168 #ifndef CONFIG_IP_MULTIPLE_TABLES
169
170 #define TABLE_LOCAL_INDEX       0
171 #define TABLE_MAIN_INDEX        1
172
173 static inline struct fib_table *fib_get_table(struct net *net, u32 id)
174 {
175         struct hlist_head *ptr;
176
177         ptr = id == RT_TABLE_LOCAL ?
178                 &net->ipv4.fib_table_hash[TABLE_LOCAL_INDEX] :
179                 &net->ipv4.fib_table_hash[TABLE_MAIN_INDEX];
180         return hlist_entry(ptr->first, struct fib_table, tb_hlist);
181 }
182
183 static inline struct fib_table *fib_new_table(struct net *net, u32 id)
184 {
185         return fib_get_table(net, id);
186 }
187
188 static inline int fib_lookup(struct net *net, const struct flowi *flp,
189                              struct fib_result *res)
190 {
191         struct fib_table *table;
192
193         table = fib_get_table(net, RT_TABLE_LOCAL);
194         if (!fib_table_lookup(table, flp, res, FIB_LOOKUP_NOREF))
195                 return 0;
196
197         table = fib_get_table(net, RT_TABLE_MAIN);
198         if (!fib_table_lookup(table, flp, res, FIB_LOOKUP_NOREF))
199                 return 0;
200         return -ENETUNREACH;
201 }
202
203 #else /* CONFIG_IP_MULTIPLE_TABLES */
204 extern int __net_init fib4_rules_init(struct net *net);
205 extern void __net_exit fib4_rules_exit(struct net *net);
206
207 #ifdef CONFIG_IP_ROUTE_CLASSID
208 extern u32 fib_rules_tclass(const struct fib_result *res);
209 #endif
210
211 extern int fib_lookup(struct net *n, struct flowi *flp, struct fib_result *res);
212
213 extern struct fib_table *fib_new_table(struct net *net, u32 id);
214 extern struct fib_table *fib_get_table(struct net *net, u32 id);
215
216 #endif /* CONFIG_IP_MULTIPLE_TABLES */
217
218 /* Exported by fib_frontend.c */
219 extern const struct nla_policy rtm_ipv4_policy[];
220 extern void             ip_fib_init(void);
221 extern int fib_validate_source(__be32 src, __be32 dst, u8 tos, int oif,
222                                struct net_device *dev, __be32 *spec_dst,
223                                u32 *itag, u32 mark);
224 extern void fib_select_default(struct fib_result *res);
225
226 /* Exported by fib_semantics.c */
227 extern int ip_fib_check_default(__be32 gw, struct net_device *dev);
228 extern int fib_sync_down_dev(struct net_device *dev, int force);
229 extern int fib_sync_down_addr(struct net *net, __be32 local);
230 extern void fib_update_nh_saddrs(struct net_device *dev);
231 extern int fib_sync_up(struct net_device *dev);
232 extern void fib_select_multipath(const struct flowi *flp, struct fib_result *res);
233
234 /* Exported by fib_trie.c */
235 extern void fib_trie_init(void);
236 extern struct fib_table *fib_trie_table(u32 id);
237
238 static inline void fib_combine_itag(u32 *itag, const struct fib_result *res)
239 {
240 #ifdef CONFIG_IP_ROUTE_CLASSID
241 #ifdef CONFIG_IP_MULTIPLE_TABLES
242         u32 rtag;
243 #endif
244         *itag = FIB_RES_NH(*res).nh_tclassid<<16;
245 #ifdef CONFIG_IP_MULTIPLE_TABLES
246         rtag = fib_rules_tclass(res);
247         if (*itag == 0)
248                 *itag = (rtag<<16);
249         *itag |= (rtag>>16);
250 #endif
251 #endif
252 }
253
254 extern void free_fib_info(struct fib_info *fi);
255
256 static inline void fib_info_put(struct fib_info *fi)
257 {
258         if (atomic_dec_and_test(&fi->fib_clntref))
259                 free_fib_info(fi);
260 }
261
262 #ifdef CONFIG_PROC_FS
263 extern int __net_init  fib_proc_init(struct net *net);
264 extern void __net_exit fib_proc_exit(struct net *net);
265 #else
266 static inline int fib_proc_init(struct net *net)
267 {
268         return 0;
269 }
270 static inline void fib_proc_exit(struct net *net)
271 {
272 }
273 #endif
274
275 #endif  /* _NET_FIB_H */