net: Pass optional SKB and SK arguments to dst_ops->{update_pmtu,redirect}()
[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>
e1ef4bf2 21#include <net/fib_rules.h>
8e773277 22#include <net/inetpeer.h>
1da177e4 23
4e902c57 24struct fib_config {
4e902c57 25 u8 fc_dst_len;
4e902c57
TG
26 u8 fc_tos;
27 u8 fc_protocol;
28 u8 fc_scope;
29 u8 fc_type;
b52f070c 30 /* 3 bytes unused */
4e902c57 31 u32 fc_table;
6d85c10a 32 __be32 fc_dst;
6d85c10a 33 __be32 fc_gw;
4e902c57
TG
34 int fc_oif;
35 u32 fc_flags;
36 u32 fc_priority;
6d85c10a 37 __be32 fc_prefsrc;
4e902c57
TG
38 struct nlattr *fc_mx;
39 struct rtnexthop *fc_mp;
40 int fc_mx_len;
41 int fc_mp_len;
42 u32 fc_flow;
4e902c57
TG
43 u32 fc_nlflags;
44 struct nl_info fc_nlinfo;
45 };
1da177e4
LT
46
47struct fib_info;
48
49struct fib_nh {
50 struct net_device *nh_dev;
51 struct hlist_node nh_hash;
52 struct fib_info *nh_parent;
95c96174 53 unsigned int nh_flags;
1da177e4
LT
54 unsigned char nh_scope;
55#ifdef CONFIG_IP_ROUTE_MULTIPATH
56 int nh_weight;
57 int nh_power;
58#endif
c7066f70 59#ifdef CONFIG_IP_ROUTE_CLASSID
1da177e4
LT
60 __u32 nh_tclassid;
61#endif
62 int nh_oif;
ed49e3ca 63 __be32 nh_gw;
1fc050a1 64 __be32 nh_saddr;
436c3b66 65 int nh_saddr_genid;
1da177e4
LT
66};
67
68/*
69 * This structure contains data shared by many of routes.
70 */
71
72struct fib_info {
73 struct hlist_node fib_hash;
74 struct hlist_node fib_lhash;
7462bd74 75 struct net *fib_net;
1da177e4
LT
76 int fib_treeref;
77 atomic_t fib_clntref;
95c96174 78 unsigned int fib_flags;
37e826c5
DM
79 unsigned char fib_dead;
80 unsigned char fib_protocol;
81 unsigned char fib_scope;
b83738ae 82 __be32 fib_prefsrc;
1da177e4 83 u32 fib_priority;
9c150e82 84 u32 *fib_metrics;
1da177e4
LT
85#define fib_mtu fib_metrics[RTAX_MTU-1]
86#define fib_window fib_metrics[RTAX_WINDOW-1]
87#define fib_rtt fib_metrics[RTAX_RTT-1]
88#define fib_advmss fib_metrics[RTAX_ADVMSS-1]
89 int fib_nhs;
90#ifdef CONFIG_IP_ROUTE_MULTIPATH
91 int fib_power;
1da177e4 92#endif
ebc0ffae 93 struct rcu_head rcu;
1da177e4
LT
94 struct fib_nh fib_nh[0];
95#define fib_dev fib_nh[0].nh_dev
96};
97
98
99#ifdef CONFIG_IP_MULTIPLE_TABLES
100struct fib_rule;
101#endif
102
5b470441 103struct fib_table;
1da177e4
LT
104struct fib_result {
105 unsigned char prefixlen;
106 unsigned char nh_sel;
107 unsigned char type;
108 unsigned char scope;
85b91b03 109 u32 tclassid;
1da177e4 110 struct fib_info *fi;
5b470441
DM
111 struct fib_table *table;
112 struct list_head *fa_head;
1da177e4
LT
113};
114
246955fe 115struct fib_result_nl {
80e856e1 116 __be32 fl_addr; /* To be looked up*/
5f300893 117 u32 fl_mark;
246955fe
RO
118 unsigned char fl_tos;
119 unsigned char fl_scope;
120 unsigned char tb_id_in;
121
122 unsigned char tb_id; /* Results */
123 unsigned char prefixlen;
124 unsigned char nh_sel;
125 unsigned char type;
126 unsigned char scope;
127 int err;
128};
1da177e4
LT
129
130#ifdef CONFIG_IP_ROUTE_MULTIPATH
131
132#define FIB_RES_NH(res) ((res).fi->fib_nh[(res).nh_sel])
1da177e4 133
93456b6d
DL
134#define FIB_TABLE_HASHSZ 2
135
1da177e4
LT
136#else /* CONFIG_IP_ROUTE_MULTIPATH */
137
138#define FIB_RES_NH(res) ((res).fi->fib_nh[0])
1da177e4 139
93456b6d
DL
140#define FIB_TABLE_HASHSZ 256
141
1da177e4
LT
142#endif /* CONFIG_IP_ROUTE_MULTIPATH */
143
436c3b66
DM
144extern __be32 fib_info_update_nh_saddr(struct net *net, struct fib_nh *nh);
145
146#define FIB_RES_SADDR(net, res) \
147 ((FIB_RES_NH(res).nh_saddr_genid == \
148 atomic_read(&(net)->ipv4.dev_addr_genid)) ? \
149 FIB_RES_NH(res).nh_saddr : \
150 fib_info_update_nh_saddr((net), &FIB_RES_NH(res)))
1da177e4
LT
151#define FIB_RES_GW(res) (FIB_RES_NH(res).nh_gw)
152#define FIB_RES_DEV(res) (FIB_RES_NH(res).nh_dev)
153#define FIB_RES_OIF(res) (FIB_RES_NH(res).nh_oif)
154
436c3b66
DM
155#define FIB_RES_PREFSRC(net, res) ((res).fi->fib_prefsrc ? : \
156 FIB_RES_SADDR(net, res))
1fc050a1 157
1da177e4 158struct fib_table {
8e773277
DM
159 struct hlist_node tb_hlist;
160 u32 tb_id;
161 int tb_default;
162 int tb_num_default;
8e773277 163 unsigned long tb_data[0];
1da177e4
LT
164};
165
22bd5b9b 166extern int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp,
ebc0ffae 167 struct fib_result *res, int fib_flags);
16c6cf8b
SH
168extern int fib_table_insert(struct fib_table *, struct fib_config *);
169extern int fib_table_delete(struct fib_table *, struct fib_config *);
170extern int fib_table_dump(struct fib_table *table, struct sk_buff *skb,
171 struct netlink_callback *cb);
172extern int fib_table_flush(struct fib_table *table);
4aa2c466
PE
173extern void fib_free_table(struct fib_table *tb);
174
16c6cf8b
SH
175
176
1da177e4
LT
177#ifndef CONFIG_IP_MULTIPLE_TABLES
178
93456b6d
DL
179#define TABLE_LOCAL_INDEX 0
180#define TABLE_MAIN_INDEX 1
1da177e4 181
8ad4942c 182static inline struct fib_table *fib_get_table(struct net *net, u32 id)
1da177e4 183{
93456b6d
DL
184 struct hlist_head *ptr;
185
186 ptr = id == RT_TABLE_LOCAL ?
e4aef8ae
DL
187 &net->ipv4.fib_table_hash[TABLE_LOCAL_INDEX] :
188 &net->ipv4.fib_table_hash[TABLE_MAIN_INDEX];
93456b6d 189 return hlist_entry(ptr->first, struct fib_table, tb_hlist);
1da177e4
LT
190}
191
8ad4942c 192static inline struct fib_table *fib_new_table(struct net *net, u32 id)
1da177e4 193{
8ad4942c 194 return fib_get_table(net, id);
1da177e4
LT
195}
196
22bd5b9b 197static inline int fib_lookup(struct net *net, const struct flowi4 *flp,
da0e28cb 198 struct fib_result *res)
1da177e4 199{
93456b6d
DL
200 struct fib_table *table;
201
da0e28cb 202 table = fib_get_table(net, RT_TABLE_LOCAL);
ebc0ffae 203 if (!fib_table_lookup(table, flp, res, FIB_LOOKUP_NOREF))
93456b6d
DL
204 return 0;
205
da0e28cb 206 table = fib_get_table(net, RT_TABLE_MAIN);
ebc0ffae 207 if (!fib_table_lookup(table, flp, res, FIB_LOOKUP_NOREF))
93456b6d
DL
208 return 0;
209 return -ENETUNREACH;
1da177e4
LT
210}
211
1da177e4 212#else /* CONFIG_IP_MULTIPLE_TABLES */
7b1a74fd
DL
213extern int __net_init fib4_rules_init(struct net *net);
214extern void __net_exit fib4_rules_exit(struct net *net);
c3e9a353 215
8ad4942c
DL
216extern struct fib_table *fib_new_table(struct net *net, u32 id);
217extern struct fib_table *fib_get_table(struct net *net, u32 id);
1da177e4 218
f4530fa5
DM
219extern int __fib_lookup(struct net *net, struct flowi4 *flp,
220 struct fib_result *res);
221
222static inline int fib_lookup(struct net *net, struct flowi4 *flp,
223 struct fib_result *res)
224{
225 if (!net->ipv4.fib_has_custom_rules) {
85b91b03 226 res->tclassid = 0;
f4530fa5
DM
227 if (net->ipv4.fib_local &&
228 !fib_table_lookup(net->ipv4.fib_local, flp, res,
229 FIB_LOOKUP_NOREF))
230 return 0;
231 if (net->ipv4.fib_main &&
232 !fib_table_lookup(net->ipv4.fib_main, flp, res,
233 FIB_LOOKUP_NOREF))
234 return 0;
235 if (net->ipv4.fib_default &&
236 !fib_table_lookup(net->ipv4.fib_default, flp, res,
237 FIB_LOOKUP_NOREF))
238 return 0;
239 return -ENETUNREACH;
240 }
241 return __fib_lookup(net, flp, res);
242}
243
1da177e4
LT
244#endif /* CONFIG_IP_MULTIPLE_TABLES */
245
246/* Exported by fib_frontend.c */
ef7c79ed 247extern const struct nla_policy rtm_ipv4_policy[];
1da177e4 248extern void ip_fib_init(void);
35ebf65e 249extern __be32 fib_compute_spec_dst(struct sk_buff *skb);
5c04c819
MS
250extern int fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
251 u8 tos, int oif, struct net_device *dev,
9e56e380 252 struct in_device *idev, u32 *itag);
0c838ff1 253extern void fib_select_default(struct fib_result *res);
7a9bc9b8 254#ifdef CONFIG_IP_ROUTE_CLASSID
f4530fa5
DM
255static inline int fib_num_tclassid_users(struct net *net)
256{
257 return net->ipv4.fib_num_tclassid_users;
258}
7a9bc9b8 259#else
f4530fa5
DM
260static inline int fib_num_tclassid_users(struct net *net)
261{
262 return 0;
263}
7a9bc9b8 264#endif
14c85021 265
1da177e4 266/* Exported by fib_semantics.c */
d878e72e 267extern int ip_fib_check_default(__be32 gw, struct net_device *dev);
85326fa5 268extern int fib_sync_down_dev(struct net_device *dev, int force);
4814bdbd 269extern int fib_sync_down_addr(struct net *net, __be32 local);
1fc050a1 270extern void fib_update_nh_saddrs(struct net_device *dev);
1da177e4 271extern int fib_sync_up(struct net_device *dev);
1b7fe593 272extern void fib_select_multipath(struct fib_result *res);
1da177e4 273
5348ba85
DM
274/* Exported by fib_trie.c */
275extern void fib_trie_init(void);
276extern struct fib_table *fib_trie_table(u32 id);
1da177e4 277
b6bf3ca0 278static inline void fib_combine_itag(u32 *itag, const struct fib_result *res)
1da177e4 279{
c7066f70 280#ifdef CONFIG_IP_ROUTE_CLASSID
1da177e4
LT
281#ifdef CONFIG_IP_MULTIPLE_TABLES
282 u32 rtag;
283#endif
284 *itag = FIB_RES_NH(*res).nh_tclassid<<16;
285#ifdef CONFIG_IP_MULTIPLE_TABLES
85b91b03 286 rtag = res->tclassid;
1da177e4
LT
287 if (*itag == 0)
288 *itag = (rtag<<16);
289 *itag |= (rtag>>16);
290#endif
291#endif
292}
293
294extern void free_fib_info(struct fib_info *fi);
295
296static inline void fib_info_put(struct fib_info *fi)
297{
298 if (atomic_dec_and_test(&fi->fib_clntref))
299 free_fib_info(fi);
300}
301
20380731 302#ifdef CONFIG_PROC_FS
61a02653
DL
303extern int __net_init fib_proc_init(struct net *net);
304extern void __net_exit fib_proc_exit(struct net *net);
cc8274f5
LZ
305#else
306static inline int fib_proc_init(struct net *net)
307{
308 return 0;
309}
310static inline void fib_proc_exit(struct net *net)
311{
312}
20380731
ACM
313#endif
314
1da177e4 315#endif /* _NET_FIB_H */
This page took 0.755172 seconds and 5 git commands to generate.