parisc: Use long branch to do_syscall_trace_exit
[linux-2.6-block.git] / include / net / ip_fib.h
CommitLineData
1da177e4
LT
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
1da177e4
LT
19#include <net/flow.h>
20#include <linux/seq_file.h>
4895c771 21#include <linux/rcupdate.h>
e1ef4bf2 22#include <net/fib_rules.h>
8e773277 23#include <net/inetpeer.h>
d26b3a7c 24#include <linux/percpu.h>
1da177e4 25
4e902c57 26struct fib_config {
4e902c57 27 u8 fc_dst_len;
4e902c57
TG
28 u8 fc_tos;
29 u8 fc_protocol;
30 u8 fc_scope;
31 u8 fc_type;
b52f070c 32 /* 3 bytes unused */
4e902c57 33 u32 fc_table;
6d85c10a 34 __be32 fc_dst;
6d85c10a 35 __be32 fc_gw;
4e902c57
TG
36 int fc_oif;
37 u32 fc_flags;
38 u32 fc_priority;
6d85c10a 39 __be32 fc_prefsrc;
4e902c57
TG
40 struct nlattr *fc_mx;
41 struct rtnexthop *fc_mp;
42 int fc_mx_len;
43 int fc_mp_len;
44 u32 fc_flow;
4e902c57
TG
45 u32 fc_nlflags;
46 struct nl_info fc_nlinfo;
571e7226
RP
47 struct nlattr *fc_encap;
48 u16 fc_encap_type;
49};
1da177e4
LT
50
51struct fib_info;
f2bb4bed 52struct rtable;
1da177e4 53
4895c771
DM
54struct fib_nh_exception {
55 struct fib_nh_exception __rcu *fnhe_next;
5aad1de5 56 int fnhe_genid;
4895c771
DM
57 __be32 fnhe_daddr;
58 u32 fnhe_pmtu;
aee06da6 59 __be32 fnhe_gw;
4895c771 60 unsigned long fnhe_expires;
2ffae99d
TT
61 struct rtable __rcu *fnhe_rth_input;
62 struct rtable __rcu *fnhe_rth_output;
4895c771
DM
63 unsigned long fnhe_stamp;
64};
65
66struct fnhe_hash_bucket {
67 struct fib_nh_exception __rcu *chain;
68};
69
d546c621
ED
70#define FNHE_HASH_SHIFT 11
71#define FNHE_HASH_SIZE (1 << FNHE_HASH_SHIFT)
4895c771
DM
72#define FNHE_RECLAIM_DEPTH 5
73
1da177e4
LT
74struct fib_nh {
75 struct net_device *nh_dev;
76 struct hlist_node nh_hash;
77 struct fib_info *nh_parent;
95c96174 78 unsigned int nh_flags;
1da177e4
LT
79 unsigned char nh_scope;
80#ifdef CONFIG_IP_ROUTE_MULTIPATH
81 int nh_weight;
82 int nh_power;
83#endif
c7066f70 84#ifdef CONFIG_IP_ROUTE_CLASSID
1da177e4
LT
85 __u32 nh_tclassid;
86#endif
87 int nh_oif;
ed49e3ca 88 __be32 nh_gw;
1fc050a1 89 __be32 nh_saddr;
436c3b66 90 int nh_saddr_genid;
d26b3a7c 91 struct rtable __rcu * __percpu *nh_pcpu_rth_output;
54764bb6 92 struct rtable __rcu *nh_rth_input;
caa41527 93 struct fnhe_hash_bucket __rcu *nh_exceptions;
571e7226 94 struct lwtunnel_state *nh_lwtstate;
1da177e4
LT
95};
96
97/*
98 * This structure contains data shared by many of routes.
99 */
100
101struct fib_info {
102 struct hlist_node fib_hash;
103 struct hlist_node fib_lhash;
7462bd74 104 struct net *fib_net;
1da177e4
LT
105 int fib_treeref;
106 atomic_t fib_clntref;
95c96174 107 unsigned int fib_flags;
37e826c5
DM
108 unsigned char fib_dead;
109 unsigned char fib_protocol;
110 unsigned char fib_scope;
f4ef85bb 111 unsigned char fib_type;
b83738ae 112 __be32 fib_prefsrc;
1da177e4 113 u32 fib_priority;
9c150e82 114 u32 *fib_metrics;
1da177e4
LT
115#define fib_mtu fib_metrics[RTAX_MTU-1]
116#define fib_window fib_metrics[RTAX_WINDOW-1]
117#define fib_rtt fib_metrics[RTAX_RTT-1]
118#define fib_advmss fib_metrics[RTAX_ADVMSS-1]
119 int fib_nhs;
120#ifdef CONFIG_IP_ROUTE_MULTIPATH
121 int fib_power;
1da177e4 122#endif
ebc0ffae 123 struct rcu_head rcu;
1da177e4
LT
124 struct fib_nh fib_nh[0];
125#define fib_dev fib_nh[0].nh_dev
126};
127
128
129#ifdef CONFIG_IP_MULTIPLE_TABLES
130struct fib_rule;
131#endif
132
5b470441 133struct fib_table;
1da177e4
LT
134struct fib_result {
135 unsigned char prefixlen;
136 unsigned char nh_sel;
137 unsigned char type;
138 unsigned char scope;
85b91b03 139 u32 tclassid;
1da177e4 140 struct fib_info *fi;
5b470441 141 struct fib_table *table;
56315f9e 142 struct hlist_head *fa_head;
1da177e4
LT
143};
144
246955fe 145struct fib_result_nl {
80e856e1 146 __be32 fl_addr; /* To be looked up*/
5f300893 147 u32 fl_mark;
246955fe
RO
148 unsigned char fl_tos;
149 unsigned char fl_scope;
150 unsigned char tb_id_in;
151
152 unsigned char tb_id; /* Results */
153 unsigned char prefixlen;
154 unsigned char nh_sel;
155 unsigned char type;
156 unsigned char scope;
157 int err;
158};
1da177e4
LT
159
160#ifdef CONFIG_IP_ROUTE_MULTIPATH
1da177e4 161#define FIB_RES_NH(res) ((res).fi->fib_nh[(res).nh_sel])
1da177e4 162#else /* CONFIG_IP_ROUTE_MULTIPATH */
1da177e4 163#define FIB_RES_NH(res) ((res).fi->fib_nh[0])
5b9e12db 164#endif /* CONFIG_IP_ROUTE_MULTIPATH */
1da177e4 165
5b9e12db 166#ifdef CONFIG_IP_MULTIPLE_TABLES
93456b6d 167#define FIB_TABLE_HASHSZ 256
5b9e12db
DL
168#else
169#define FIB_TABLE_HASHSZ 2
170#endif
1da177e4 171
5c3a0fd7 172__be32 fib_info_update_nh_saddr(struct net *net, struct fib_nh *nh);
436c3b66
DM
173
174#define FIB_RES_SADDR(net, res) \
175 ((FIB_RES_NH(res).nh_saddr_genid == \
176 atomic_read(&(net)->ipv4.dev_addr_genid)) ? \
177 FIB_RES_NH(res).nh_saddr : \
178 fib_info_update_nh_saddr((net), &FIB_RES_NH(res)))
1da177e4
LT
179#define FIB_RES_GW(res) (FIB_RES_NH(res).nh_gw)
180#define FIB_RES_DEV(res) (FIB_RES_NH(res).nh_dev)
181#define FIB_RES_OIF(res) (FIB_RES_NH(res).nh_oif)
182
436c3b66
DM
183#define FIB_RES_PREFSRC(net, res) ((res).fi->fib_prefsrc ? : \
184 FIB_RES_SADDR(net, res))
1fc050a1 185
1da177e4 186struct fib_table {
8e773277
DM
187 struct hlist_node tb_hlist;
188 u32 tb_id;
8e773277 189 int tb_num_default;
a7e53531 190 struct rcu_head rcu;
0ddcf43d
AD
191 unsigned long *tb_data;
192 unsigned long __data[0];
1da177e4
LT
193};
194
5c3a0fd7
JP
195int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp,
196 struct fib_result *res, int fib_flags);
197int fib_table_insert(struct fib_table *, struct fib_config *);
198int fib_table_delete(struct fib_table *, struct fib_config *);
199int fib_table_dump(struct fib_table *table, struct sk_buff *skb,
200 struct netlink_callback *cb);
201int fib_table_flush(struct fib_table *table);
0ddcf43d 202struct fib_table *fib_trie_unmerge(struct fib_table *main_tb);
104616e7 203void fib_table_flush_external(struct fib_table *table);
5c3a0fd7 204void fib_free_table(struct fib_table *tb);
4aa2c466 205
1da177e4
LT
206#ifndef CONFIG_IP_MULTIPLE_TABLES
207
a5a519b2
AD
208#define TABLE_LOCAL_INDEX (RT_TABLE_LOCAL & (FIB_TABLE_HASHSZ - 1))
209#define TABLE_MAIN_INDEX (RT_TABLE_MAIN & (FIB_TABLE_HASHSZ - 1))
1da177e4 210
8ad4942c 211static inline struct fib_table *fib_get_table(struct net *net, u32 id)
1da177e4 212{
a7e53531 213 struct hlist_node *tb_hlist;
93456b6d
DL
214 struct hlist_head *ptr;
215
216 ptr = id == RT_TABLE_LOCAL ?
e4aef8ae
DL
217 &net->ipv4.fib_table_hash[TABLE_LOCAL_INDEX] :
218 &net->ipv4.fib_table_hash[TABLE_MAIN_INDEX];
a7e53531
AD
219
220 tb_hlist = rcu_dereference_rtnl(hlist_first_rcu(ptr));
221
222 return hlist_entry(tb_hlist, struct fib_table, tb_hlist);
1da177e4
LT
223}
224
8ad4942c 225static inline struct fib_table *fib_new_table(struct net *net, u32 id)
1da177e4 226{
8ad4942c 227 return fib_get_table(net, id);
1da177e4
LT
228}
229
22bd5b9b 230static inline int fib_lookup(struct net *net, const struct flowi4 *flp,
0eeb075f 231 struct fib_result *res, unsigned int flags)
1da177e4 232{
a7e53531 233 struct fib_table *tb;
0ddcf43d 234 int err = -ENETUNREACH;
345e9b54
AD
235
236 rcu_read_lock();
237
0ddcf43d 238 tb = fib_get_table(net, RT_TABLE_MAIN);
0315e382
NF
239 if (tb)
240 err = fib_table_lookup(tb, flp, res, flags | FIB_LOOKUP_NOREF);
241
242 if (err == -EAGAIN)
243 err = -ENETUNREACH;
93456b6d 244
345e9b54 245 rcu_read_unlock();
93456b6d 246
345e9b54 247 return err;
1da177e4
LT
248}
249
1da177e4 250#else /* CONFIG_IP_MULTIPLE_TABLES */
5c3a0fd7
JP
251int __net_init fib4_rules_init(struct net *net);
252void __net_exit fib4_rules_exit(struct net *net);
c3e9a353 253
5c3a0fd7
JP
254struct fib_table *fib_new_table(struct net *net, u32 id);
255struct fib_table *fib_get_table(struct net *net, u32 id);
1da177e4 256
0eeb075f
AG
257int __fib_lookup(struct net *net, struct flowi4 *flp,
258 struct fib_result *res, unsigned int flags);
f4530fa5
DM
259
260static inline int fib_lookup(struct net *net, struct flowi4 *flp,
0eeb075f 261 struct fib_result *res, unsigned int flags)
f4530fa5 262{
a7e53531 263 struct fib_table *tb;
0315e382 264 int err = -ENETUNREACH;
a7e53531 265
0eeb075f 266 flags |= FIB_LOOKUP_NOREF;
a7e53531 267 if (net->ipv4.fib_has_custom_rules)
0eeb075f 268 return __fib_lookup(net, flp, res, flags);
a7e53531
AD
269
270 rcu_read_lock();
271
272 res->tclassid = 0;
273
0315e382
NF
274 tb = rcu_dereference_rtnl(net->ipv4.fib_main);
275 if (tb)
276 err = fib_table_lookup(tb, flp, res, flags);
277
278 if (!err)
279 goto out;
280
281 tb = rcu_dereference_rtnl(net->ipv4.fib_default);
282 if (tb)
283 err = fib_table_lookup(tb, flp, res, flags);
a7e53531 284
0315e382
NF
285out:
286 if (err == -EAGAIN)
287 err = -ENETUNREACH;
a7e53531
AD
288
289 rcu_read_unlock();
290
291 return err;
f4530fa5
DM
292}
293
1da177e4
LT
294#endif /* CONFIG_IP_MULTIPLE_TABLES */
295
296/* Exported by fib_frontend.c */
ef7c79ed 297extern const struct nla_policy rtm_ipv4_policy[];
5c3a0fd7
JP
298void ip_fib_init(void);
299__be32 fib_compute_spec_dst(struct sk_buff *skb);
300int fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
301 u8 tos, int oif, struct net_device *dev,
302 struct in_device *idev, u32 *itag);
2392debc 303void fib_select_default(const struct flowi4 *flp, struct fib_result *res);
7a9bc9b8 304#ifdef CONFIG_IP_ROUTE_CLASSID
f4530fa5
DM
305static inline int fib_num_tclassid_users(struct net *net)
306{
307 return net->ipv4.fib_num_tclassid_users;
308}
7a9bc9b8 309#else
f4530fa5
DM
310static inline int fib_num_tclassid_users(struct net *net)
311{
312 return 0;
313}
7a9bc9b8 314#endif
0ddcf43d 315int fib_unmerge(struct net *net);
104616e7 316void fib_flush_external(struct net *net);
14c85021 317
1da177e4 318/* Exported by fib_semantics.c */
5c3a0fd7 319int ip_fib_check_default(__be32 gw, struct net_device *dev);
8a3d0316 320int fib_sync_down_dev(struct net_device *dev, unsigned long event);
5c3a0fd7 321int fib_sync_down_addr(struct net *net, __be32 local);
8a3d0316 322int fib_sync_up(struct net_device *dev, unsigned int nh_flags);
5c3a0fd7 323void fib_select_multipath(struct fib_result *res);
1da177e4 324
5348ba85 325/* Exported by fib_trie.c */
5c3a0fd7 326void fib_trie_init(void);
0ddcf43d 327struct fib_table *fib_trie_table(u32 id, struct fib_table *alias);
1da177e4 328
b6bf3ca0 329static inline void fib_combine_itag(u32 *itag, const struct fib_result *res)
1da177e4 330{
c7066f70 331#ifdef CONFIG_IP_ROUTE_CLASSID
1da177e4
LT
332#ifdef CONFIG_IP_MULTIPLE_TABLES
333 u32 rtag;
334#endif
335 *itag = FIB_RES_NH(*res).nh_tclassid<<16;
336#ifdef CONFIG_IP_MULTIPLE_TABLES
85b91b03 337 rtag = res->tclassid;
1da177e4
LT
338 if (*itag == 0)
339 *itag = (rtag<<16);
340 *itag |= (rtag>>16);
341#endif
342#endif
343}
344
5c3a0fd7 345void free_fib_info(struct fib_info *fi);
1da177e4
LT
346
347static inline void fib_info_put(struct fib_info *fi)
348{
349 if (atomic_dec_and_test(&fi->fib_clntref))
350 free_fib_info(fi);
351}
352
20380731 353#ifdef CONFIG_PROC_FS
5c3a0fd7
JP
354int __net_init fib_proc_init(struct net *net);
355void __net_exit fib_proc_exit(struct net *net);
cc8274f5
LZ
356#else
357static inline int fib_proc_init(struct net *net)
358{
359 return 0;
360}
361static inline void fib_proc_exit(struct net *net)
362{
363}
20380731
ACM
364#endif
365
1da177e4 366#endif /* _NET_FIB_H */