Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/ipv6_route.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/rtnetlink.h> |
| 18 | #include <linux/spinlock.h> |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 19 | #include <net/dst.h> |
| 20 | #include <net/flow.h> |
| 21 | #include <net/netlink.h> |
David S. Miller | b341936 | 2010-11-30 12:27:11 -0800 | [diff] [blame] | 22 | #include <net/inetpeer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Neil Horman | a33bc5c | 2009-07-30 18:52:15 -0700 | [diff] [blame] | 24 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 25 | #define FIB6_TABLE_HASHSZ 256 |
| 26 | #else |
| 27 | #define FIB6_TABLE_HASHSZ 1 |
| 28 | #endif |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | struct rt6_info; |
| 31 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 32 | struct fib6_config { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 33 | 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; |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 40 | u32 fc_type; /* only 8 bits are used */ |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 41 | |
| 42 | struct in6_addr fc_dst; |
| 43 | struct in6_addr fc_src; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 44 | struct in6_addr fc_prefsrc; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 45 | struct in6_addr fc_gateway; |
| 46 | |
| 47 | unsigned long fc_expires; |
| 48 | struct nlattr *fc_mx; |
| 49 | int fc_mx_len; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 50 | int fc_mp_len; |
| 51 | struct nlattr *fc_mp; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 52 | |
| 53 | struct nl_info fc_nlinfo; |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 54 | struct nlattr *fc_encap; |
| 55 | u16 fc_encap_type; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 56 | }; |
| 57 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 58 | struct fib6_node { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | struct fib6_node *parent; |
| 60 | struct fib6_node *left; |
| 61 | struct fib6_node *right; |
Kim Nordlund | 8bce65b | 2006-12-13 16:38:29 -0800 | [diff] [blame] | 62 | #ifdef CONFIG_IPV6_SUBTREES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | struct fib6_node *subtree; |
Kim Nordlund | 8bce65b | 2006-12-13 16:38:29 -0800 | [diff] [blame] | 64 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | struct rt6_info *leaf; |
| 66 | |
| 67 | __u16 fn_bit; /* bit key */ |
| 68 | __u16 fn_flags; |
Hannes Frederic Sowa | 42b1870 | 2014-10-06 19:58:35 +0200 | [diff] [blame] | 69 | int fn_sernum; |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 70 | struct rt6_info *rr_ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | }; |
| 72 | |
YOSHIFUJI Hideaki | 7fc3316 | 2006-08-23 17:22:24 -0700 | [diff] [blame] | 73 | #ifndef CONFIG_IPV6_SUBTREES |
| 74 | #define FIB6_SUBTREE(fn) NULL |
| 75 | #else |
| 76 | #define FIB6_SUBTREE(fn) ((fn)->subtree) |
| 77 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 79 | struct mx6_config { |
| 80 | const u32 *mx; |
| 81 | DECLARE_BITMAP(mx_valid, RTAX_MAX); |
| 82 | }; |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | /* |
| 85 | * routing information |
| 86 | * |
| 87 | */ |
| 88 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 89 | struct rt6key { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | struct in6_addr addr; |
| 91 | int plen; |
| 92 | }; |
| 93 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 94 | struct fib6_table; |
| 95 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 96 | struct rt6_info { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 97 | struct dst_entry dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 99 | /* |
| 100 | * Tail elements of dst_entry (__refcnt etc.) |
| 101 | * and these elements (rarely used in hot path) are in |
| 102 | * the same cache line. |
| 103 | */ |
| 104 | struct fib6_table *rt6i_table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | struct fib6_node *rt6i_node; |
| 106 | |
| 107 | struct in6_addr rt6i_gateway; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 108 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 109 | /* Multipath routes: |
| 110 | * siblings is a list of rt6_info that have the the same metric/weight, |
| 111 | * destination, but not the same gateway. nsiblings is just a cache |
| 112 | * to speed up lookup. |
| 113 | */ |
| 114 | struct list_head rt6i_siblings; |
| 115 | unsigned int rt6i_nsiblings; |
| 116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | atomic_t rt6i_ref; |
Herbert Xu | b4ce927 | 2007-11-13 21:33:32 -0800 | [diff] [blame] | 118 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 119 | /* These are in a separate cache line. */ |
| 120 | struct rt6key rt6i_dst ____cacheline_aligned_in_smp; |
| 121 | u32 rt6i_flags; |
| 122 | struct rt6key rt6i_src; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 123 | struct rt6key rt6i_prefsrc; |
Herbert Xu | b4ce927 | 2007-11-13 21:33:32 -0800 | [diff] [blame] | 124 | |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 125 | struct list_head rt6i_uncached; |
| 126 | struct uncached_list *rt6i_uncached_list; |
| 127 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 128 | struct inet6_dev *rt6i_idev; |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 129 | struct rt6_info * __percpu *rt6i_pcpu; |
Noriaki TAKAMIYA | a47ed4c | 2007-09-06 03:31:25 -0700 | [diff] [blame] | 130 | |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 131 | u32 rt6i_metric; |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 132 | u32 rt6i_pmtu; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 133 | /* more non-fragment space at head required */ |
| 134 | unsigned short rt6i_nfheader_len; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 135 | u8 rt6i_protocol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | }; |
| 137 | |
YOSHIFUJI Hideaki | 7a3025b | 2006-10-13 16:17:25 +0900 | [diff] [blame] | 138 | static inline struct inet6_dev *ip6_dst_idev(struct dst_entry *dst) |
| 139 | { |
| 140 | return ((struct rt6_info *)dst)->rt6i_idev; |
| 141 | } |
| 142 | |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 143 | static inline void rt6_clean_expires(struct rt6_info *rt) |
| 144 | { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 145 | rt->rt6i_flags &= ~RTF_EXPIRES; |
Hannes Frederic Sowa | 01ba16d | 2013-10-24 10:14:27 +0200 | [diff] [blame] | 146 | rt->dst.expires = 0; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | static inline void rt6_set_expires(struct rt6_info *rt, unsigned long expires) |
| 150 | { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 151 | rt->dst.expires = expires; |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 152 | rt->rt6i_flags |= RTF_EXPIRES; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 153 | } |
| 154 | |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 155 | static inline void rt6_update_expires(struct rt6_info *rt0, int timeout) |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 156 | { |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 157 | struct rt6_info *rt; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 158 | |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 159 | for (rt = rt0; rt && !(rt->rt6i_flags & RTF_EXPIRES); |
| 160 | rt = (struct rt6_info *)rt->dst.from); |
| 161 | if (rt && rt != rt0) |
| 162 | rt0->dst.expires = rt->dst.expires; |
| 163 | |
| 164 | dst_set_expires(&rt0->dst, timeout); |
| 165 | rt0->rt6i_flags |= RTF_EXPIRES; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 166 | } |
| 167 | |
Martin KaFai Lau | b197df4 | 2015-05-22 20:56:01 -0700 | [diff] [blame] | 168 | static inline u32 rt6_get_cookie(const struct rt6_info *rt) |
| 169 | { |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 170 | if (rt->rt6i_flags & RTF_PCPU || unlikely(rt->dst.flags & DST_NOCACHE)) |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 171 | rt = (struct rt6_info *)(rt->dst.from); |
| 172 | |
Martin KaFai Lau | b197df4 | 2015-05-22 20:56:01 -0700 | [diff] [blame] | 173 | return rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0; |
| 174 | } |
| 175 | |
Amerigo Wang | 94e187c | 2012-10-29 00:13:19 +0000 | [diff] [blame] | 176 | static inline void ip6_rt_put(struct rt6_info *rt) |
| 177 | { |
| 178 | /* dst_release() accepts a NULL parameter. |
| 179 | * We rely on dst being first structure in struct rt6_info |
| 180 | */ |
| 181 | BUILD_BUG_ON(offsetof(struct rt6_info, dst) != 0); |
| 182 | dst_release(&rt->dst); |
| 183 | } |
| 184 | |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 185 | enum fib6_walk_state { |
| 186 | #ifdef CONFIG_IPV6_SUBTREES |
| 187 | FWS_S, |
| 188 | #endif |
| 189 | FWS_L, |
| 190 | FWS_R, |
| 191 | FWS_C, |
| 192 | FWS_U |
| 193 | }; |
| 194 | |
| 195 | struct fib6_walker { |
Alexey Dobriyan | bbef49d | 2010-02-18 08:13:30 +0000 | [diff] [blame] | 196 | struct list_head lh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | struct fib6_node *root, *node; |
| 198 | struct rt6_info *leaf; |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 199 | enum fib6_walk_state state; |
| 200 | bool prune; |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 201 | unsigned int skip; |
| 202 | unsigned int count; |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 203 | int (*func)(struct fib6_walker *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | void *args; |
| 205 | }; |
| 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | struct rt6_statistics { |
| 208 | __u32 fib_nodes; |
| 209 | __u32 fib_route_nodes; |
| 210 | __u32 fib_rt_alloc; /* permanent routes */ |
| 211 | __u32 fib_rt_entries; /* rt entries in table */ |
| 212 | __u32 fib_rt_cache; /* cache routes */ |
| 213 | __u32 fib_discarded_routes; |
| 214 | }; |
| 215 | |
| 216 | #define RTN_TL_ROOT 0x0001 |
| 217 | #define RTN_ROOT 0x0002 /* tree root node */ |
| 218 | #define RTN_RTINFO 0x0004 /* node with valid routing info */ |
| 219 | |
| 220 | /* |
| 221 | * priority levels (or metrics) |
| 222 | * |
| 223 | */ |
| 224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 226 | struct fib6_table { |
| 227 | struct hlist_node tb6_hlist; |
| 228 | u32 tb6_id; |
| 229 | rwlock_t tb6_lock; |
| 230 | struct fib6_node tb6_root; |
David S. Miller | 8e77327 | 2012-06-11 00:01:52 -0700 | [diff] [blame] | 231 | struct inet_peer_base tb6_peers; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 232 | }; |
| 233 | |
| 234 | #define RT6_TABLE_UNSPEC RT_TABLE_UNSPEC |
| 235 | #define RT6_TABLE_MAIN RT_TABLE_MAIN |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 236 | #define RT6_TABLE_DFLT RT6_TABLE_MAIN |
| 237 | #define RT6_TABLE_INFO RT6_TABLE_MAIN |
| 238 | #define RT6_TABLE_PREFIX RT6_TABLE_MAIN |
| 239 | |
| 240 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 241 | #define FIB6_TABLE_MIN 1 |
| 242 | #define FIB6_TABLE_MAX RT_TABLE_MAX |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 243 | #define RT6_TABLE_LOCAL RT_TABLE_LOCAL |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 244 | #else |
| 245 | #define FIB6_TABLE_MIN RT_TABLE_MAIN |
| 246 | #define FIB6_TABLE_MAX FIB6_TABLE_MIN |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 247 | #define RT6_TABLE_LOCAL RT6_TABLE_MAIN |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 248 | #endif |
| 249 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 250 | typedef struct rt6_info *(*pol_lookup_t)(struct net *, |
| 251 | struct fib6_table *, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 252 | struct flowi6 *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
| 254 | /* |
| 255 | * exported functions |
| 256 | */ |
| 257 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 258 | struct fib6_table *fib6_get_table(struct net *net, u32 id); |
| 259 | struct fib6_table *fib6_new_table(struct net *net, u32 id); |
| 260 | struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6, |
| 261 | int flags, pol_lookup_t lookup); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 262 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 263 | struct fib6_node *fib6_lookup(struct fib6_node *root, |
| 264 | const struct in6_addr *daddr, |
| 265 | const struct in6_addr *saddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 267 | struct fib6_node *fib6_locate(struct fib6_node *root, |
| 268 | const struct in6_addr *daddr, int dst_len, |
| 269 | const struct in6_addr *saddr, int src_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 271 | void fib6_clean_all(struct net *net, int (*func)(struct rt6_info *, void *arg), |
Li RongQing | 0c3584d | 2013-12-27 16:32:38 +0800 | [diff] [blame] | 272 | void *arg); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 273 | |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 274 | int fib6_add(struct fib6_node *root, struct rt6_info *rt, |
| 275 | struct nl_info *info, struct mx6_config *mxc); |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 276 | int fib6_del(struct rt6_info *rt, struct nl_info *info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
Roopa Prabhu | 37a1d36 | 2015-09-13 10:18:33 -0700 | [diff] [blame] | 278 | void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info, |
| 279 | unsigned int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 281 | void fib6_run_gc(unsigned long expires, struct net *net, bool force); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 283 | void fib6_gc_cleanup(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 285 | int fib6_init(void); |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 286 | |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 287 | int ipv6_route_open(struct inode *inode, struct file *file); |
| 288 | |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 289 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 290 | int fib6_rules_init(void); |
| 291 | void fib6_rules_cleanup(void); |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 292 | #else |
| 293 | static inline int fib6_rules_init(void) |
| 294 | { |
| 295 | return 0; |
| 296 | } |
| 297 | static inline void fib6_rules_cleanup(void) |
| 298 | { |
| 299 | return ; |
| 300 | } |
| 301 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | #endif |