blob: 9fc7114159e885031550abedebf67c74f08bde76 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/ipv6_route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/rtnetlink.h>
18#include <linux/spinlock.h>
Thomas Graf86872cb2006-08-22 00:01:08 -070019#include <net/dst.h>
20#include <net/flow.h>
21#include <net/netlink.h>
David S. Millerb3419362010-11-30 12:27:11 -080022#include <net/inetpeer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Neil Hormana33bc5c2009-07-30 18:52:15 -070024#ifdef CONFIG_IPV6_MULTIPLE_TABLES
25#define FIB6_TABLE_HASHSZ 256
26#else
27#define FIB6_TABLE_HASHSZ 1
28#endif
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030struct rt6_info;
31
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000032struct fib6_config {
Thomas Graf86872cb2006-08-22 00:01:08 -070033 u32 fc_table;
34 u32 fc_metric;
35 int fc_dst_len;
36 int fc_src_len;
37 int fc_ifindex;
38 u32 fc_flags;
39 u32 fc_protocol;
40
41 struct in6_addr fc_dst;
42 struct in6_addr fc_src;
Daniel Walterc3968a82011-04-13 21:10:57 +000043 struct in6_addr fc_prefsrc;
Thomas Graf86872cb2006-08-22 00:01:08 -070044 struct in6_addr fc_gateway;
45
46 unsigned long fc_expires;
47 struct nlattr *fc_mx;
48 int fc_mx_len;
49
50 struct nl_info fc_nlinfo;
51};
52
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000053struct fib6_node {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 struct fib6_node *parent;
55 struct fib6_node *left;
56 struct fib6_node *right;
Kim Nordlund8bce65b2006-12-13 16:38:29 -080057#ifdef CONFIG_IPV6_SUBTREES
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 struct fib6_node *subtree;
Kim Nordlund8bce65b2006-12-13 16:38:29 -080059#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 struct rt6_info *leaf;
61
62 __u16 fn_bit; /* bit key */
63 __u16 fn_flags;
64 __u32 fn_sernum;
David S. Millerf11e6652007-03-24 20:36:25 -070065 struct rt6_info *rr_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
YOSHIFUJI Hideaki7fc33162006-08-23 17:22:24 -070068#ifndef CONFIG_IPV6_SUBTREES
69#define FIB6_SUBTREE(fn) NULL
70#else
71#define FIB6_SUBTREE(fn) ((fn)->subtree)
72#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/*
75 * routing information
76 *
77 */
78
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000079struct rt6key {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 struct in6_addr addr;
81 int plen;
82};
83
Thomas Grafc71099a2006-08-04 23:20:06 -070084struct fib6_table;
85
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000086struct rt6_info {
Changli Gaod8d1f302010-06-10 23:31:35 -070087 struct dst_entry dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
David S. Miller97cac082012-07-02 22:43:47 -070089 struct neighbour *n;
90
YOSHIFUJI Hideaki / 吉藤英明bd2c77a2010-03-31 22:24:22 +000091 /*
92 * Tail elements of dst_entry (__refcnt etc.)
93 * and these elements (rarely used in hot path) are in
94 * the same cache line.
95 */
96 struct fib6_table *rt6i_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 struct fib6_node *rt6i_node;
98
99 struct in6_addr rt6i_gateway;
YOSHIFUJI Hideaki / 吉藤英明bd2c77a2010-03-31 22:24:22 +0000100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 atomic_t rt6i_ref;
Herbert Xub4ce9272007-11-13 21:33:32 -0800102
YOSHIFUJI Hideaki / 吉藤英明bd2c77a2010-03-31 22:24:22 +0000103 /* These are in a separate cache line. */
104 struct rt6key rt6i_dst ____cacheline_aligned_in_smp;
105 u32 rt6i_flags;
106 struct rt6key rt6i_src;
Daniel Walterc3968a82011-04-13 21:10:57 +0000107 struct rt6key rt6i_prefsrc;
YOSHIFUJI Hideaki / 吉藤英明bd2c77a2010-03-31 22:24:22 +0000108 u32 rt6i_metric;
David S. Miller6431cbc2011-02-07 20:38:06 -0800109 u32 rt6i_peer_genid;
Herbert Xub4ce9272007-11-13 21:33:32 -0800110
YOSHIFUJI Hideaki / 吉藤英明bd2c77a2010-03-31 22:24:22 +0000111 struct inet6_dev *rt6i_idev;
David S. Miller97bab732012-06-09 22:36:36 -0700112 unsigned long _rt6i_peer;
Noriaki TAKAMIYAa47ed4c2007-09-06 03:31:25 -0700113
Nicolas Dichtel6f3118b2012-09-10 22:09:46 +0000114 u32 rt6i_genid;
115
YOSHIFUJI Hideaki / 吉藤英明bd2c77a2010-03-31 22:24:22 +0000116 /* more non-fragment space at head required */
117 unsigned short rt6i_nfheader_len;
Herbert Xub4ce9272007-11-13 21:33:32 -0800118
YOSHIFUJI Hideaki / 吉藤英明bd2c77a2010-03-31 22:24:22 +0000119 u8 rt6i_protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
David S. Miller97bab732012-06-09 22:36:36 -0700122static inline struct inet_peer *rt6_peer_ptr(struct rt6_info *rt)
123{
124 return inetpeer_ptr(rt->_rt6i_peer);
125}
126
127static inline bool rt6_has_peer(struct rt6_info *rt)
128{
129 return inetpeer_ptr_is_peer(rt->_rt6i_peer);
130}
131
132static inline void __rt6_set_peer(struct rt6_info *rt, struct inet_peer *peer)
133{
134 __inetpeer_ptr_set_peer(&rt->_rt6i_peer, peer);
135}
136
137static inline bool rt6_set_peer(struct rt6_info *rt, struct inet_peer *peer)
138{
139 return inetpeer_ptr_set_peer(&rt->_rt6i_peer, peer);
140}
141
142static inline void rt6_init_peer(struct rt6_info *rt, struct inet_peer_base *base)
143{
144 inetpeer_init_ptr(&rt->_rt6i_peer, base);
145}
146
147static inline void rt6_transfer_peer(struct rt6_info *rt, struct rt6_info *ort)
148{
149 inetpeer_transfer_peer(&rt->_rt6i_peer, &ort->_rt6i_peer);
150}
151
YOSHIFUJI Hideaki7a3025b2006-10-13 16:17:25 +0900152static inline struct inet6_dev *ip6_dst_idev(struct dst_entry *dst)
153{
154 return ((struct rt6_info *)dst)->rt6i_idev;
155}
156
Gao feng1716a962012-04-06 00:13:10 +0000157static inline void rt6_clean_expires(struct rt6_info *rt)
158{
159 if (!(rt->rt6i_flags & RTF_EXPIRES) && rt->dst.from)
160 dst_release(rt->dst.from);
161
162 rt->rt6i_flags &= ~RTF_EXPIRES;
Jiri Bohaccda31e12012-04-16 03:35:41 +0000163 rt->dst.from = NULL;
Gao feng1716a962012-04-06 00:13:10 +0000164}
165
166static inline void rt6_set_expires(struct rt6_info *rt, unsigned long expires)
167{
168 if (!(rt->rt6i_flags & RTF_EXPIRES) && rt->dst.from)
169 dst_release(rt->dst.from);
170
171 rt->rt6i_flags |= RTF_EXPIRES;
172 rt->dst.expires = expires;
173}
174
175static inline void rt6_update_expires(struct rt6_info *rt, int timeout)
176{
Jiri Bohacedfb5d42012-04-16 03:34:39 +0000177 if (!(rt->rt6i_flags & RTF_EXPIRES)) {
178 if (rt->dst.from)
179 dst_release(rt->dst.from);
180 /* dst_set_expires relies on expires == 0
181 * if it has not been set previously.
182 */
183 rt->dst.expires = 0;
184 }
Gao feng1716a962012-04-06 00:13:10 +0000185
186 dst_set_expires(&rt->dst, timeout);
187 rt->rt6i_flags |= RTF_EXPIRES;
188}
189
190static inline void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
191{
192 struct dst_entry *new = (struct dst_entry *) from;
193
194 if (!(rt->rt6i_flags & RTF_EXPIRES) && rt->dst.from) {
195 if (new == rt->dst.from)
196 return;
197 dst_release(rt->dst.from);
198 }
199
200 rt->rt6i_flags &= ~RTF_EXPIRES;
201 rt->dst.from = new;
202 dst_hold(new);
203}
204
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000205struct fib6_walker_t {
Alexey Dobriyanbbef49d2010-02-18 08:13:30 +0000206 struct list_head lh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 struct fib6_node *root, *node;
208 struct rt6_info *leaf;
209 unsigned char state;
210 unsigned char prune;
Patrick McHardy2bec5a32010-02-08 05:19:03 +0000211 unsigned int skip;
212 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 int (*func)(struct fib6_walker_t *);
214 void *args;
215};
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217struct rt6_statistics {
218 __u32 fib_nodes;
219 __u32 fib_route_nodes;
220 __u32 fib_rt_alloc; /* permanent routes */
221 __u32 fib_rt_entries; /* rt entries in table */
222 __u32 fib_rt_cache; /* cache routes */
223 __u32 fib_discarded_routes;
224};
225
226#define RTN_TL_ROOT 0x0001
227#define RTN_ROOT 0x0002 /* tree root node */
228#define RTN_RTINFO 0x0004 /* node with valid routing info */
229
230/*
231 * priority levels (or metrics)
232 *
233 */
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Thomas Grafc71099a2006-08-04 23:20:06 -0700236struct fib6_table {
237 struct hlist_node tb6_hlist;
238 u32 tb6_id;
239 rwlock_t tb6_lock;
240 struct fib6_node tb6_root;
David S. Miller8e773272012-06-11 00:01:52 -0700241 struct inet_peer_base tb6_peers;
Thomas Grafc71099a2006-08-04 23:20:06 -0700242};
243
244#define RT6_TABLE_UNSPEC RT_TABLE_UNSPEC
245#define RT6_TABLE_MAIN RT_TABLE_MAIN
Thomas Grafc71099a2006-08-04 23:20:06 -0700246#define RT6_TABLE_DFLT RT6_TABLE_MAIN
247#define RT6_TABLE_INFO RT6_TABLE_MAIN
248#define RT6_TABLE_PREFIX RT6_TABLE_MAIN
249
250#ifdef CONFIG_IPV6_MULTIPLE_TABLES
251#define FIB6_TABLE_MIN 1
252#define FIB6_TABLE_MAX RT_TABLE_MAX
Thomas Graf101367c2006-08-04 03:39:02 -0700253#define RT6_TABLE_LOCAL RT_TABLE_LOCAL
Thomas Grafc71099a2006-08-04 23:20:06 -0700254#else
255#define FIB6_TABLE_MIN RT_TABLE_MAIN
256#define FIB6_TABLE_MAX FIB6_TABLE_MIN
Thomas Graf101367c2006-08-04 03:39:02 -0700257#define RT6_TABLE_LOCAL RT6_TABLE_MAIN
Thomas Grafc71099a2006-08-04 23:20:06 -0700258#endif
259
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800260typedef struct rt6_info *(*pol_lookup_t)(struct net *,
261 struct fib6_table *,
David S. Miller4c9483b2011-03-12 16:22:43 -0500262 struct flowi6 *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264/*
265 * exported functions
266 */
267
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800268extern struct fib6_table *fib6_get_table(struct net *net, u32 id);
269extern struct fib6_table *fib6_new_table(struct net *net, u32 id);
270extern struct dst_entry *fib6_rule_lookup(struct net *net,
David S. Miller4c9483b2011-03-12 16:22:43 -0500271 struct flowi6 *fl6, int flags,
Daniel Lezcano58f09b72008-03-03 23:25:27 -0800272 pol_lookup_t lookup);
Thomas Grafc71099a2006-08-04 23:20:06 -0700273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274extern struct fib6_node *fib6_lookup(struct fib6_node *root,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000275 const struct in6_addr *daddr,
276 const struct in6_addr *saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278struct fib6_node *fib6_locate(struct fib6_node *root,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000279 const struct in6_addr *daddr, int dst_len,
280 const struct in6_addr *saddr, int src_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Josh Hunt32b293a2011-12-28 13:23:07 +0000282extern void fib6_clean_all_ro(struct net *net,
283 int (*func)(struct rt6_info *, void *arg),
284 int prune, void *arg);
285
Daniel Lezcanof3db4852008-03-03 23:27:06 -0800286extern void fib6_clean_all(struct net *net,
287 int (*func)(struct rt6_info *, void *arg),
Thomas Grafc71099a2006-08-04 23:20:06 -0700288 int prune, void *arg);
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290extern int fib6_add(struct fib6_node *root,
291 struct rt6_info *rt,
Thomas Graf86872cb2006-08-22 00:01:08 -0700292 struct nl_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294extern int fib6_del(struct rt6_info *rt,
Thomas Graf86872cb2006-08-22 00:01:08 -0700295 struct nl_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297extern void inet6_rt_notify(int event, struct rt6_info *rt,
Thomas Graf86872cb2006-08-22 00:01:08 -0700298 struct nl_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Daniel Lezcano5b7c9312008-03-03 23:28:58 -0800300extern void fib6_run_gc(unsigned long expires,
301 struct net *net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303extern void fib6_gc_cleanup(void);
304
Daniel Lezcanod63bddb2007-12-07 00:40:34 -0800305extern int fib6_init(void);
Thomas Graf101367c2006-08-04 03:39:02 -0700306
Daniel Lezcano7e5449c2007-12-08 00:14:54 -0800307#ifdef CONFIG_IPV6_MULTIPLE_TABLES
Daniel Lezcano9eb87f32007-12-07 00:42:52 -0800308extern int fib6_rules_init(void);
Thomas Graf101367c2006-08-04 03:39:02 -0700309extern void fib6_rules_cleanup(void);
Daniel Lezcano7e5449c2007-12-08 00:14:54 -0800310#else
311static inline int fib6_rules_init(void)
312{
313 return 0;
314}
315static inline void fib6_rules_cleanup(void)
316{
317 return ;
318}
319#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320#endif