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.
6 * Definitions for the Forwarding Information Base.
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.
20 #include <linux/seq_file.h>
21 #include <net/fib_rules.h>
38 struct rtnexthop *fc_mp;
43 struct nl_info fc_nlinfo;
49 struct net_device *nh_dev;
50 struct hlist_node nh_hash;
51 struct fib_info *nh_parent;
53 unsigned char nh_scope;
54 #ifdef CONFIG_IP_ROUTE_MULTIPATH
58 #ifdef CONFIG_IP_ROUTE_CLASSID
68 * This structure contains data shared by many of routes.
72 struct hlist_node fib_hash;
73 struct hlist_node fib_lhash;
78 unsigned char fib_dead;
79 unsigned char fib_protocol;
80 unsigned char fib_scope;
84 #define fib_mtu fib_metrics[RTAX_MTU-1]
85 #define fib_window fib_metrics[RTAX_WINDOW-1]
86 #define fib_rtt fib_metrics[RTAX_RTT-1]
87 #define fib_advmss fib_metrics[RTAX_ADVMSS-1]
89 #ifdef CONFIG_IP_ROUTE_MULTIPATH
93 struct fib_nh fib_nh[0];
94 #define fib_dev fib_nh[0].nh_dev
98 #ifdef CONFIG_IP_MULTIPLE_TABLES
104 unsigned char prefixlen;
105 unsigned char nh_sel;
109 struct fib_table *table;
110 struct list_head *fa_head;
111 #ifdef CONFIG_IP_MULTIPLE_TABLES
116 struct fib_result_nl {
117 __be32 fl_addr; /* To be looked up*/
119 unsigned char fl_tos;
120 unsigned char fl_scope;
121 unsigned char tb_id_in;
123 unsigned char tb_id; /* Results */
124 unsigned char prefixlen;
125 unsigned char nh_sel;
131 #ifdef CONFIG_IP_ROUTE_MULTIPATH
133 #define FIB_RES_NH(res) ((res).fi->fib_nh[(res).nh_sel])
135 #define FIB_TABLE_HASHSZ 2
137 #else /* CONFIG_IP_ROUTE_MULTIPATH */
139 #define FIB_RES_NH(res) ((res).fi->fib_nh[0])
141 #define FIB_TABLE_HASHSZ 256
143 #endif /* CONFIG_IP_ROUTE_MULTIPATH */
145 extern __be32 fib_info_update_nh_saddr(struct net *net, struct fib_nh *nh);
147 #define FIB_RES_SADDR(net, res) \
148 ((FIB_RES_NH(res).nh_saddr_genid == \
149 atomic_read(&(net)->ipv4.dev_addr_genid)) ? \
150 FIB_RES_NH(res).nh_saddr : \
151 fib_info_update_nh_saddr((net), &FIB_RES_NH(res)))
152 #define FIB_RES_GW(res) (FIB_RES_NH(res).nh_gw)
153 #define FIB_RES_DEV(res) (FIB_RES_NH(res).nh_dev)
154 #define FIB_RES_OIF(res) (FIB_RES_NH(res).nh_oif)
156 #define FIB_RES_PREFSRC(net, res) ((res).fi->fib_prefsrc ? : \
157 FIB_RES_SADDR(net, res))
160 struct hlist_node tb_hlist;
164 unsigned long tb_data[0];
167 extern int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp,
168 struct fib_result *res, int fib_flags);
169 extern int fib_table_insert(struct fib_table *, struct fib_config *);
170 extern int fib_table_delete(struct fib_table *, struct fib_config *);
171 extern int fib_table_dump(struct fib_table *table, struct sk_buff *skb,
172 struct netlink_callback *cb);
173 extern int fib_table_flush(struct fib_table *table);
174 extern void fib_free_table(struct fib_table *tb);
178 #ifndef CONFIG_IP_MULTIPLE_TABLES
180 #define TABLE_LOCAL_INDEX 0
181 #define TABLE_MAIN_INDEX 1
183 static inline struct fib_table *fib_get_table(struct net *net, u32 id)
185 struct hlist_head *ptr;
187 ptr = id == RT_TABLE_LOCAL ?
188 &net->ipv4.fib_table_hash[TABLE_LOCAL_INDEX] :
189 &net->ipv4.fib_table_hash[TABLE_MAIN_INDEX];
190 return hlist_entry(ptr->first, struct fib_table, tb_hlist);
193 static inline struct fib_table *fib_new_table(struct net *net, u32 id)
195 return fib_get_table(net, id);
198 static inline int fib_lookup(struct net *net, const struct flowi4 *flp,
199 struct fib_result *res)
201 struct fib_table *table;
203 table = fib_get_table(net, RT_TABLE_LOCAL);
204 if (!fib_table_lookup(table, flp, res, FIB_LOOKUP_NOREF))
207 table = fib_get_table(net, RT_TABLE_MAIN);
208 if (!fib_table_lookup(table, flp, res, FIB_LOOKUP_NOREF))
213 #else /* CONFIG_IP_MULTIPLE_TABLES */
214 extern int __net_init fib4_rules_init(struct net *net);
215 extern void __net_exit fib4_rules_exit(struct net *net);
217 #ifdef CONFIG_IP_ROUTE_CLASSID
218 extern u32 fib_rules_tclass(const struct fib_result *res);
221 extern int fib_lookup(struct net *n, struct flowi4 *flp, struct fib_result *res);
223 extern struct fib_table *fib_new_table(struct net *net, u32 id);
224 extern struct fib_table *fib_get_table(struct net *net, u32 id);
226 #endif /* CONFIG_IP_MULTIPLE_TABLES */
228 /* Exported by fib_frontend.c */
229 extern const struct nla_policy rtm_ipv4_policy[];
230 extern void ip_fib_init(void);
231 extern int fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
232 u8 tos, int oif, struct net_device *dev,
233 __be32 *spec_dst, u32 *itag);
234 extern void fib_select_default(struct fib_result *res);
236 /* Exported by fib_semantics.c */
237 extern int ip_fib_check_default(__be32 gw, struct net_device *dev);
238 extern int fib_sync_down_dev(struct net_device *dev, int force);
239 extern int fib_sync_down_addr(struct net *net, __be32 local);
240 extern void fib_update_nh_saddrs(struct net_device *dev);
241 extern int fib_sync_up(struct net_device *dev);
242 extern void fib_select_multipath(struct fib_result *res);
244 /* Exported by fib_trie.c */
245 extern void fib_trie_init(void);
246 extern struct fib_table *fib_trie_table(u32 id);
248 static inline void fib_combine_itag(u32 *itag, const struct fib_result *res)
250 #ifdef CONFIG_IP_ROUTE_CLASSID
251 #ifdef CONFIG_IP_MULTIPLE_TABLES
254 *itag = FIB_RES_NH(*res).nh_tclassid<<16;
255 #ifdef CONFIG_IP_MULTIPLE_TABLES
256 rtag = fib_rules_tclass(res);
264 extern void free_fib_info(struct fib_info *fi);
266 static inline void fib_info_put(struct fib_info *fi)
268 if (atomic_dec_and_test(&fi->fib_clntref))
272 #ifdef CONFIG_PROC_FS
273 extern int __net_init fib_proc_init(struct net *net);
274 extern void __net_exit fib_proc_exit(struct net *net);
276 static inline int fib_proc_init(struct net *net)
280 static inline void fib_proc_exit(struct net *net)
285 #endif /* _NET_FIB_H */