ipv4: support for fib route lwtunnel encap attributes
[deliverable/linux.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;
189 int tb_default;
190 int tb_num_default;
a7e53531 191 struct rcu_head rcu;
0ddcf43d
AD
192 unsigned long *tb_data;
193 unsigned long __data[0];
1da177e4
LT
194};
195
5c3a0fd7
JP
196int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp,
197 struct fib_result *res, int fib_flags);
198int fib_table_insert(struct fib_table *, struct fib_config *);
199int fib_table_delete(struct fib_table *, struct fib_config *);
200int fib_table_dump(struct fib_table *table, struct sk_buff *skb,
201 struct netlink_callback *cb);
202int fib_table_flush(struct fib_table *table);
0ddcf43d 203struct fib_table *fib_trie_unmerge(struct fib_table *main_tb);
104616e7 204void fib_table_flush_external(struct fib_table *table);
5c3a0fd7 205void fib_free_table(struct fib_table *tb);
4aa2c466 206
1da177e4
LT
207#ifndef CONFIG_IP_MULTIPLE_TABLES
208
a5a519b2
AD
209#define TABLE_LOCAL_INDEX (RT_TABLE_LOCAL & (FIB_TABLE_HASHSZ - 1))
210#define TABLE_MAIN_INDEX (RT_TABLE_MAIN & (FIB_TABLE_HASHSZ - 1))
1da177e4 211
8ad4942c 212static inline struct fib_table *fib_get_table(struct net *net, u32 id)
1da177e4 213{
a7e53531 214 struct hlist_node *tb_hlist;
93456b6d
DL
215 struct hlist_head *ptr;
216
217 ptr = id == RT_TABLE_LOCAL ?
e4aef8ae
DL
218 &net->ipv4.fib_table_hash[TABLE_LOCAL_INDEX] :
219 &net->ipv4.fib_table_hash[TABLE_MAIN_INDEX];
a7e53531
AD
220
221 tb_hlist = rcu_dereference_rtnl(hlist_first_rcu(ptr));
222
223 return hlist_entry(tb_hlist, struct fib_table, tb_hlist);
1da177e4
LT
224}
225
8ad4942c 226static inline struct fib_table *fib_new_table(struct net *net, u32 id)
1da177e4 227{
8ad4942c 228 return fib_get_table(net, id);
1da177e4
LT
229}
230
22bd5b9b 231static inline int fib_lookup(struct net *net, const struct flowi4 *flp,
0eeb075f 232 struct fib_result *res, unsigned int flags)
1da177e4 233{
a7e53531 234 struct fib_table *tb;
0ddcf43d 235 int err = -ENETUNREACH;
345e9b54
AD
236
237 rcu_read_lock();
238
0ddcf43d 239 tb = fib_get_table(net, RT_TABLE_MAIN);
0eeb075f 240 if (tb && !fib_table_lookup(tb, flp, res, flags | FIB_LOOKUP_NOREF))
0ddcf43d 241 err = 0;
93456b6d 242
345e9b54 243 rcu_read_unlock();
93456b6d 244
345e9b54 245 return err;
1da177e4
LT
246}
247
1da177e4 248#else /* CONFIG_IP_MULTIPLE_TABLES */
5c3a0fd7
JP
249int __net_init fib4_rules_init(struct net *net);
250void __net_exit fib4_rules_exit(struct net *net);
c3e9a353 251
5c3a0fd7
JP
252struct fib_table *fib_new_table(struct net *net, u32 id);
253struct fib_table *fib_get_table(struct net *net, u32 id);
1da177e4 254
0eeb075f
AG
255int __fib_lookup(struct net *net, struct flowi4 *flp,
256 struct fib_result *res, unsigned int flags);
f4530fa5
DM
257
258static inline int fib_lookup(struct net *net, struct flowi4 *flp,
0eeb075f 259 struct fib_result *res, unsigned int flags)
f4530fa5 260{
a7e53531
AD
261 struct fib_table *tb;
262 int err;
263
0eeb075f 264 flags |= FIB_LOOKUP_NOREF;
a7e53531 265 if (net->ipv4.fib_has_custom_rules)
0eeb075f 266 return __fib_lookup(net, flp, res, flags);
a7e53531
AD
267
268 rcu_read_lock();
269
270 res->tclassid = 0;
271
272 for (err = 0; !err; err = -ENETUNREACH) {
a7e53531 273 tb = rcu_dereference_rtnl(net->ipv4.fib_main);
0eeb075f 274 if (tb && !fib_table_lookup(tb, flp, res, flags))
a7e53531
AD
275 break;
276
277 tb = rcu_dereference_rtnl(net->ipv4.fib_default);
0eeb075f 278 if (tb && !fib_table_lookup(tb, flp, res, flags))
a7e53531 279 break;
f4530fa5 280 }
a7e53531
AD
281
282 rcu_read_unlock();
283
284 return err;
f4530fa5
DM
285}
286
1da177e4
LT
287#endif /* CONFIG_IP_MULTIPLE_TABLES */
288
289/* Exported by fib_frontend.c */
ef7c79ed 290extern const struct nla_policy rtm_ipv4_policy[];
5c3a0fd7
JP
291void ip_fib_init(void);
292__be32 fib_compute_spec_dst(struct sk_buff *skb);
293int fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
294 u8 tos, int oif, struct net_device *dev,
295 struct in_device *idev, u32 *itag);
296void fib_select_default(struct fib_result *res);
7a9bc9b8 297#ifdef CONFIG_IP_ROUTE_CLASSID
f4530fa5
DM
298static inline int fib_num_tclassid_users(struct net *net)
299{
300 return net->ipv4.fib_num_tclassid_users;
301}
7a9bc9b8 302#else
f4530fa5
DM
303static inline int fib_num_tclassid_users(struct net *net)
304{
305 return 0;
306}
7a9bc9b8 307#endif
0ddcf43d 308int fib_unmerge(struct net *net);
104616e7 309void fib_flush_external(struct net *net);
14c85021 310
1da177e4 311/* Exported by fib_semantics.c */
5c3a0fd7 312int ip_fib_check_default(__be32 gw, struct net_device *dev);
8a3d0316 313int fib_sync_down_dev(struct net_device *dev, unsigned long event);
5c3a0fd7 314int fib_sync_down_addr(struct net *net, __be32 local);
8a3d0316 315int fib_sync_up(struct net_device *dev, unsigned int nh_flags);
5c3a0fd7 316void fib_select_multipath(struct fib_result *res);
1da177e4 317
5348ba85 318/* Exported by fib_trie.c */
5c3a0fd7 319void fib_trie_init(void);
0ddcf43d 320struct fib_table *fib_trie_table(u32 id, struct fib_table *alias);
1da177e4 321
b6bf3ca0 322static inline void fib_combine_itag(u32 *itag, const struct fib_result *res)
1da177e4 323{
c7066f70 324#ifdef CONFIG_IP_ROUTE_CLASSID
1da177e4
LT
325#ifdef CONFIG_IP_MULTIPLE_TABLES
326 u32 rtag;
327#endif
328 *itag = FIB_RES_NH(*res).nh_tclassid<<16;
329#ifdef CONFIG_IP_MULTIPLE_TABLES
85b91b03 330 rtag = res->tclassid;
1da177e4
LT
331 if (*itag == 0)
332 *itag = (rtag<<16);
333 *itag |= (rtag>>16);
334#endif
335#endif
336}
337
5c3a0fd7 338void free_fib_info(struct fib_info *fi);
1da177e4
LT
339
340static inline void fib_info_put(struct fib_info *fi)
341{
342 if (atomic_dec_and_test(&fi->fib_clntref))
343 free_fib_info(fi);
344}
345
20380731 346#ifdef CONFIG_PROC_FS
5c3a0fd7
JP
347int __net_init fib_proc_init(struct net *net);
348void __net_exit fib_proc_exit(struct net *net);
cc8274f5
LZ
349#else
350static inline int fib_proc_init(struct net *net)
351{
352 return 0;
353}
354static inline void fib_proc_exit(struct net *net)
355{
356}
20380731
ACM
357#endif
358
1da177e4 359#endif /* _NET_FIB_H */
This page took 0.77932 seconds and 5 git commands to generate.