]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - include/net/ip6_fib.h
ipv6: fib: Add FIB notifiers callbacks
[mirror_ubuntu-eoan-kernel.git] / include / net / ip6_fib.h
CommitLineData
1da177e4
LT
1/*
2 * Linux INET6 implementation
3 *
4 * Authors:
5 * Pedro Roque <roque@di.fc.ul.pt>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
13#ifndef _IP6_FIB_H
14#define _IP6_FIB_H
15
1da177e4 16#include <linux/ipv6_route.h>
1da177e4
LT
17#include <linux/rtnetlink.h>
18#include <linux/spinlock.h>
16ab6d7d 19#include <linux/notifier.h>
86872cb5
TG
20#include <net/dst.h>
21#include <net/flow.h>
22#include <net/netlink.h>
b3419363 23#include <net/inetpeer.h>
16ab6d7d 24#include <net/fib_notifier.h>
1da177e4 25
a33bc5c1
NH
26#ifdef CONFIG_IPV6_MULTIPLE_TABLES
27#define FIB6_TABLE_HASHSZ 256
28#else
29#define FIB6_TABLE_HASHSZ 1
30#endif
31
1da177e4
LT
32struct rt6_info;
33
fd2c3ef7 34struct fib6_config {
86872cb5
TG
35 u32 fc_table;
36 u32 fc_metric;
37 int fc_dst_len;
38 int fc_src_len;
39 int fc_ifindex;
40 u32 fc_flags;
41 u32 fc_protocol;
0ae81335
DA
42 u16 fc_type; /* only 8 bits are used */
43 u16 fc_delete_all_nh : 1,
44 __unused : 15;
86872cb5
TG
45
46 struct in6_addr fc_dst;
47 struct in6_addr fc_src;
c3968a85 48 struct in6_addr fc_prefsrc;
86872cb5
TG
49 struct in6_addr fc_gateway;
50
51 unsigned long fc_expires;
52 struct nlattr *fc_mx;
53 int fc_mx_len;
51ebd318
ND
54 int fc_mp_len;
55 struct nlattr *fc_mp;
86872cb5
TG
56
57 struct nl_info fc_nlinfo;
19e42e45
RP
58 struct nlattr *fc_encap;
59 u16 fc_encap_type;
86872cb5
TG
60};
61
fd2c3ef7 62struct fib6_node {
1da177e4
LT
63 struct fib6_node *parent;
64 struct fib6_node *left;
65 struct fib6_node *right;
8bce65b9 66#ifdef CONFIG_IPV6_SUBTREES
1da177e4 67 struct fib6_node *subtree;
8bce65b9 68#endif
1da177e4
LT
69 struct rt6_info *leaf;
70
71 __u16 fn_bit; /* bit key */
72 __u16 fn_flags;
42b18706 73 int fn_sernum;
f11e6659 74 struct rt6_info *rr_ptr;
1da177e4
LT
75};
76
7fc33165
YH
77#ifndef CONFIG_IPV6_SUBTREES
78#define FIB6_SUBTREE(fn) NULL
79#else
80#define FIB6_SUBTREE(fn) ((fn)->subtree)
81#endif
1da177e4 82
e715b6d3
FW
83struct mx6_config {
84 const u32 *mx;
85 DECLARE_BITMAP(mx_valid, RTAX_MAX);
86};
87
1da177e4
LT
88/*
89 * routing information
90 *
91 */
92
fd2c3ef7 93struct rt6key {
1da177e4
LT
94 struct in6_addr addr;
95 int plen;
96};
97
c71099ac
TG
98struct fib6_table;
99
fd2c3ef7 100struct rt6_info {
d8d1f30b 101 struct dst_entry dst;
1da177e4 102
bd2c77a0
YH
103 /*
104 * Tail elements of dst_entry (__refcnt etc.)
105 * and these elements (rarely used in hot path) are in
106 * the same cache line.
107 */
108 struct fib6_table *rt6i_table;
1da177e4
LT
109 struct fib6_node *rt6i_node;
110
111 struct in6_addr rt6i_gateway;
1da177e4 112
51ebd318
ND
113 /* Multipath routes:
114 * siblings is a list of rt6_info that have the the same metric/weight,
115 * destination, but not the same gateway. nsiblings is just a cache
116 * to speed up lookup.
117 */
118 struct list_head rt6i_siblings;
119 unsigned int rt6i_nsiblings;
120
bd2c77a0 121 atomic_t rt6i_ref;
a47ed4cd 122
bd2c77a0
YH
123 /* These are in a separate cache line. */
124 struct rt6key rt6i_dst ____cacheline_aligned_in_smp;
125 u32 rt6i_flags;
126 struct rt6key rt6i_src;
c3968a85 127 struct rt6key rt6i_prefsrc;
b4ce9277 128
8d0b94af
MKL
129 struct list_head rt6i_uncached;
130 struct uncached_list *rt6i_uncached_list;
131
bd2c77a0 132 struct inet6_dev *rt6i_idev;
d52d3997 133 struct rt6_info * __percpu *rt6i_pcpu;
b4ce9277 134
705f1c86 135 u32 rt6i_metric;
4b32b5ad 136 u32 rt6i_pmtu;
bd2c77a0
YH
137 /* more non-fragment space at head required */
138 unsigned short rt6i_nfheader_len;
bd2c77a0 139 u8 rt6i_protocol;
1da177e4
LT
140};
141
7a3025b1
YH
142static inline struct inet6_dev *ip6_dst_idev(struct dst_entry *dst)
143{
144 return ((struct rt6_info *)dst)->rt6i_idev;
145}
146
1716a961
G
147static inline void rt6_clean_expires(struct rt6_info *rt)
148{
1716a961 149 rt->rt6i_flags &= ~RTF_EXPIRES;
01ba16d6 150 rt->dst.expires = 0;
1716a961
G
151}
152
153static inline void rt6_set_expires(struct rt6_info *rt, unsigned long expires)
154{
1716a961 155 rt->dst.expires = expires;
ecd98837 156 rt->rt6i_flags |= RTF_EXPIRES;
1716a961
G
157}
158
ecd98837 159static inline void rt6_update_expires(struct rt6_info *rt0, int timeout)
1716a961 160{
ecd98837
YH
161 struct rt6_info *rt;
162
163 for (rt = rt0; rt && !(rt->rt6i_flags & RTF_EXPIRES);
164 rt = (struct rt6_info *)rt->dst.from);
165 if (rt && rt != rt0)
166 rt0->dst.expires = rt->dst.expires;
167
168 dst_set_expires(&rt0->dst, timeout);
169 rt0->rt6i_flags |= RTF_EXPIRES;
1716a961 170}
b197df4f
MKL
171
172static inline u32 rt6_get_cookie(const struct rt6_info *rt)
173{
02bcf4e0 174 if (rt->rt6i_flags & RTF_PCPU ||
a4c2fd7f 175 (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->dst.from))
3da59bd9
MKL
176 rt = (struct rt6_info *)(rt->dst.from);
177
b197df4f
MKL
178 return rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
179}
1716a961 180
94e187c0
AW
181static inline void ip6_rt_put(struct rt6_info *rt)
182{
183 /* dst_release() accepts a NULL parameter.
184 * We rely on dst being first structure in struct rt6_info
185 */
186 BUILD_BUG_ON(offsetof(struct rt6_info, dst) != 0);
187 dst_release(&rt->dst);
188}
189
94b2cfe0
HFS
190enum fib6_walk_state {
191#ifdef CONFIG_IPV6_SUBTREES
192 FWS_S,
193#endif
194 FWS_L,
195 FWS_R,
196 FWS_C,
197 FWS_U
198};
199
200struct fib6_walker {
bbef49da 201 struct list_head lh;
1da177e4
LT
202 struct fib6_node *root, *node;
203 struct rt6_info *leaf;
94b2cfe0
HFS
204 enum fib6_walk_state state;
205 bool prune;
2bec5a36
PM
206 unsigned int skip;
207 unsigned int count;
94b2cfe0 208 int (*func)(struct fib6_walker *);
1da177e4
LT
209 void *args;
210};
211
1da177e4
LT
212struct rt6_statistics {
213 __u32 fib_nodes;
214 __u32 fib_route_nodes;
215 __u32 fib_rt_alloc; /* permanent routes */
216 __u32 fib_rt_entries; /* rt entries in table */
217 __u32 fib_rt_cache; /* cache routes */
218 __u32 fib_discarded_routes;
219};
220
221#define RTN_TL_ROOT 0x0001
222#define RTN_ROOT 0x0002 /* tree root node */
223#define RTN_RTINFO 0x0004 /* node with valid routing info */
224
225/*
226 * priority levels (or metrics)
227 *
228 */
229
1da177e4 230
c71099ac
TG
231struct fib6_table {
232 struct hlist_node tb6_hlist;
233 u32 tb6_id;
234 rwlock_t tb6_lock;
235 struct fib6_node tb6_root;
8e773277 236 struct inet_peer_base tb6_peers;
830218c1
DA
237 unsigned int flags;
238#define RT6_TABLE_HAS_DFLT_ROUTER BIT(0)
c71099ac
TG
239};
240
241#define RT6_TABLE_UNSPEC RT_TABLE_UNSPEC
242#define RT6_TABLE_MAIN RT_TABLE_MAIN
c71099ac
TG
243#define RT6_TABLE_DFLT RT6_TABLE_MAIN
244#define RT6_TABLE_INFO RT6_TABLE_MAIN
245#define RT6_TABLE_PREFIX RT6_TABLE_MAIN
246
247#ifdef CONFIG_IPV6_MULTIPLE_TABLES
248#define FIB6_TABLE_MIN 1
249#define FIB6_TABLE_MAX RT_TABLE_MAX
101367c2 250#define RT6_TABLE_LOCAL RT_TABLE_LOCAL
c71099ac
TG
251#else
252#define FIB6_TABLE_MIN RT_TABLE_MAIN
253#define FIB6_TABLE_MAX FIB6_TABLE_MIN
101367c2 254#define RT6_TABLE_LOCAL RT6_TABLE_MAIN
c71099ac
TG
255#endif
256
8ed67789
DL
257typedef struct rt6_info *(*pol_lookup_t)(struct net *,
258 struct fib6_table *,
4c9483b2 259 struct flowi6 *, int);
1da177e4
LT
260
261/*
262 * exported functions
263 */
264
5c3a0fd7
JP
265struct fib6_table *fib6_get_table(struct net *net, u32 id);
266struct fib6_table *fib6_new_table(struct net *net, u32 id);
267struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
268 int flags, pol_lookup_t lookup);
c71099ac 269
5c3a0fd7
JP
270struct fib6_node *fib6_lookup(struct fib6_node *root,
271 const struct in6_addr *daddr,
272 const struct in6_addr *saddr);
1da177e4 273
5c3a0fd7
JP
274struct fib6_node *fib6_locate(struct fib6_node *root,
275 const struct in6_addr *daddr, int dst_len,
276 const struct in6_addr *saddr, int src_len);
1da177e4 277
5c3a0fd7 278void fib6_clean_all(struct net *net, int (*func)(struct rt6_info *, void *arg),
0c3584d5 279 void *arg);
c71099ac 280
e715b6d3 281int fib6_add(struct fib6_node *root, struct rt6_info *rt,
333c4301
DA
282 struct nl_info *info, struct mx6_config *mxc,
283 struct netlink_ext_ack *extack);
5c3a0fd7 284int fib6_del(struct rt6_info *rt, struct nl_info *info);
1da177e4 285
37a1d361
RP
286void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info,
287 unsigned int flags);
1da177e4 288
5c3a0fd7 289void fib6_run_gc(unsigned long expires, struct net *net, bool force);
1da177e4 290
5c3a0fd7 291void fib6_gc_cleanup(void);
1da177e4 292
5c3a0fd7 293int fib6_init(void);
101367c2 294
8d2ca1d7
HFS
295int ipv6_route_open(struct inode *inode, struct file *file);
296
16ab6d7d
IS
297int call_fib6_notifier(struct notifier_block *nb, struct net *net,
298 enum fib_event_type event_type,
299 struct fib_notifier_info *info);
300int call_fib6_notifiers(struct net *net, enum fib_event_type event_type,
301 struct fib_notifier_info *info);
302
303int __net_init fib6_notifier_init(struct net *net);
304void __net_exit fib6_notifier_exit(struct net *net);
305
7e5449c2 306#ifdef CONFIG_IPV6_MULTIPLE_TABLES
5c3a0fd7
JP
307int fib6_rules_init(void);
308void fib6_rules_cleanup(void);
e3ea9731 309bool fib6_rule_default(const struct fib_rule *rule);
7e5449c2
DL
310#else
311static inline int fib6_rules_init(void)
312{
313 return 0;
314}
315static inline void fib6_rules_cleanup(void)
316{
317 return ;
318}
e3ea9731
IS
319static inline bool fib6_rule_default(const struct fib_rule *rule)
320{
321 return true;
322}
7e5449c2 323#endif
1da177e4 324#endif