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> |
Ido Schimmel | 16ab6d7 | 2017-08-03 13:28:16 +0200 | [diff] [blame] | 19 | #include <linux/notifier.h> |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 20 | #include <net/dst.h> |
| 21 | #include <net/flow.h> |
| 22 | #include <net/netlink.h> |
David S. Miller | b341936 | 2010-11-30 12:27:11 -0800 | [diff] [blame] | 23 | #include <net/inetpeer.h> |
Ido Schimmel | 16ab6d7 | 2017-08-03 13:28:16 +0200 | [diff] [blame] | 24 | #include <net/fib_notifier.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Neil Horman | a33bc5c | 2009-07-30 18:52:15 -0700 | [diff] [blame] | 26 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 27 | #define FIB6_TABLE_HASHSZ 256 |
| 28 | #else |
| 29 | #define FIB6_TABLE_HASHSZ 1 |
| 30 | #endif |
| 31 | |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 32 | #define RT6_DEBUG 2 |
| 33 | |
| 34 | #if RT6_DEBUG >= 3 |
| 35 | #define RT6_TRACE(x...) pr_debug(x) |
| 36 | #else |
| 37 | #define RT6_TRACE(x...) do { ; } while (0) |
| 38 | #endif |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | struct rt6_info; |
| 41 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 42 | struct fib6_config { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 43 | u32 fc_table; |
| 44 | u32 fc_metric; |
| 45 | int fc_dst_len; |
| 46 | int fc_src_len; |
| 47 | int fc_ifindex; |
| 48 | u32 fc_flags; |
| 49 | u32 fc_protocol; |
David Ahern | 0ae8133 | 2017-02-02 12:37:08 -0800 | [diff] [blame] | 50 | u16 fc_type; /* only 8 bits are used */ |
| 51 | u16 fc_delete_all_nh : 1, |
| 52 | __unused : 15; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 53 | |
| 54 | struct in6_addr fc_dst; |
| 55 | struct in6_addr fc_src; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 56 | struct in6_addr fc_prefsrc; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 57 | struct in6_addr fc_gateway; |
| 58 | |
| 59 | unsigned long fc_expires; |
| 60 | struct nlattr *fc_mx; |
| 61 | int fc_mx_len; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 62 | int fc_mp_len; |
| 63 | struct nlattr *fc_mp; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 64 | |
| 65 | struct nl_info fc_nlinfo; |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 66 | struct nlattr *fc_encap; |
| 67 | u16 fc_encap_type; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 68 | }; |
| 69 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 70 | struct fib6_node { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | struct fib6_node *parent; |
| 72 | struct fib6_node *left; |
| 73 | struct fib6_node *right; |
Kim Nordlund | 8bce65b | 2006-12-13 16:38:29 -0800 | [diff] [blame] | 74 | #ifdef CONFIG_IPV6_SUBTREES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | struct fib6_node *subtree; |
Kim Nordlund | 8bce65b | 2006-12-13 16:38:29 -0800 | [diff] [blame] | 76 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | struct rt6_info *leaf; |
| 78 | |
| 79 | __u16 fn_bit; /* bit key */ |
| 80 | __u16 fn_flags; |
Hannes Frederic Sowa | 42b1870 | 2014-10-06 19:58:35 +0200 | [diff] [blame] | 81 | int fn_sernum; |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 82 | struct rt6_info *rr_ptr; |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 83 | struct rcu_head rcu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | }; |
| 85 | |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 86 | struct fib6_gc_args { |
| 87 | int timeout; |
| 88 | int more; |
| 89 | }; |
| 90 | |
YOSHIFUJI Hideaki | 7fc3316 | 2006-08-23 17:22:24 -0700 | [diff] [blame] | 91 | #ifndef CONFIG_IPV6_SUBTREES |
| 92 | #define FIB6_SUBTREE(fn) NULL |
| 93 | #else |
| 94 | #define FIB6_SUBTREE(fn) ((fn)->subtree) |
| 95 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 97 | struct mx6_config { |
| 98 | const u32 *mx; |
| 99 | DECLARE_BITMAP(mx_valid, RTAX_MAX); |
| 100 | }; |
| 101 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | /* |
| 103 | * routing information |
| 104 | * |
| 105 | */ |
| 106 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 107 | struct rt6key { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | struct in6_addr addr; |
| 109 | int plen; |
| 110 | }; |
| 111 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 112 | struct fib6_table; |
| 113 | |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 114 | struct rt6_exception_bucket { |
| 115 | struct hlist_head chain; |
| 116 | int depth; |
| 117 | }; |
| 118 | |
| 119 | struct rt6_exception { |
| 120 | struct hlist_node hlist; |
| 121 | struct rt6_info *rt6i; |
| 122 | unsigned long stamp; |
| 123 | struct rcu_head rcu; |
| 124 | }; |
| 125 | |
| 126 | #define FIB6_EXCEPTION_BUCKET_SIZE_SHIFT 10 |
| 127 | #define FIB6_EXCEPTION_BUCKET_SIZE (1 << FIB6_EXCEPTION_BUCKET_SIZE_SHIFT) |
| 128 | #define FIB6_MAX_DEPTH 5 |
| 129 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 130 | struct rt6_info { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 131 | struct dst_entry dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 133 | /* |
| 134 | * Tail elements of dst_entry (__refcnt etc.) |
| 135 | * and these elements (rarely used in hot path) are in |
| 136 | * the same cache line. |
| 137 | */ |
| 138 | struct fib6_table *rt6i_table; |
Wei Wang | 4e587ea | 2017-08-25 15:03:10 -0700 | [diff] [blame] | 139 | struct fib6_node __rcu *rt6i_node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
| 141 | struct in6_addr rt6i_gateway; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 142 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 143 | /* Multipath routes: |
| 144 | * siblings is a list of rt6_info that have the the same metric/weight, |
| 145 | * destination, but not the same gateway. nsiblings is just a cache |
| 146 | * to speed up lookup. |
| 147 | */ |
| 148 | struct list_head rt6i_siblings; |
| 149 | unsigned int rt6i_nsiblings; |
| 150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | atomic_t rt6i_ref; |
Herbert Xu | b4ce927 | 2007-11-13 21:33:32 -0800 | [diff] [blame] | 152 | |
Ido Schimmel | fe40079 | 2017-08-15 09:09:49 +0200 | [diff] [blame] | 153 | unsigned int rt6i_nh_flags; |
| 154 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 155 | /* These are in a separate cache line. */ |
| 156 | struct rt6key rt6i_dst ____cacheline_aligned_in_smp; |
| 157 | u32 rt6i_flags; |
| 158 | struct rt6key rt6i_src; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 159 | struct rt6key rt6i_prefsrc; |
Herbert Xu | b4ce927 | 2007-11-13 21:33:32 -0800 | [diff] [blame] | 160 | |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 161 | struct list_head rt6i_uncached; |
| 162 | struct uncached_list *rt6i_uncached_list; |
| 163 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 164 | struct inet6_dev *rt6i_idev; |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 165 | struct rt6_info * __percpu *rt6i_pcpu; |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 166 | struct rt6_exception_bucket __rcu *rt6i_exception_bucket; |
Noriaki TAKAMIYA | a47ed4c | 2007-09-06 03:31:25 -0700 | [diff] [blame] | 167 | |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 168 | u32 rt6i_metric; |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 169 | u32 rt6i_pmtu; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 170 | /* more non-fragment space at head required */ |
| 171 | unsigned short rt6i_nfheader_len; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 172 | u8 rt6i_protocol; |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 173 | u8 exception_bucket_flushed:1, |
| 174 | unused:7; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | }; |
| 176 | |
YOSHIFUJI Hideaki | 7a3025b | 2006-10-13 16:17:25 +0900 | [diff] [blame] | 177 | static inline struct inet6_dev *ip6_dst_idev(struct dst_entry *dst) |
| 178 | { |
| 179 | return ((struct rt6_info *)dst)->rt6i_idev; |
| 180 | } |
| 181 | |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 182 | static inline void rt6_clean_expires(struct rt6_info *rt) |
| 183 | { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 184 | rt->rt6i_flags &= ~RTF_EXPIRES; |
Hannes Frederic Sowa | 01ba16d | 2013-10-24 10:14:27 +0200 | [diff] [blame] | 185 | rt->dst.expires = 0; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | static inline void rt6_set_expires(struct rt6_info *rt, unsigned long expires) |
| 189 | { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 190 | rt->dst.expires = expires; |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 191 | rt->rt6i_flags |= RTF_EXPIRES; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 192 | } |
| 193 | |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 194 | static inline void rt6_update_expires(struct rt6_info *rt0, int timeout) |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 195 | { |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 196 | struct rt6_info *rt; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 197 | |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 198 | for (rt = rt0; rt && !(rt->rt6i_flags & RTF_EXPIRES); |
| 199 | rt = (struct rt6_info *)rt->dst.from); |
| 200 | if (rt && rt != rt0) |
| 201 | rt0->dst.expires = rt->dst.expires; |
| 202 | |
| 203 | dst_set_expires(&rt0->dst, timeout); |
| 204 | rt0->rt6i_flags |= RTF_EXPIRES; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 205 | } |
| 206 | |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 207 | /* Function to safely get fn->sernum for passed in rt |
| 208 | * and store result in passed in cookie. |
| 209 | * Return true if we can get cookie safely |
| 210 | * Return false if not |
| 211 | */ |
| 212 | static inline bool rt6_get_cookie_safe(const struct rt6_info *rt, |
| 213 | u32 *cookie) |
| 214 | { |
| 215 | struct fib6_node *fn; |
| 216 | bool status = false; |
| 217 | |
| 218 | rcu_read_lock(); |
| 219 | fn = rcu_dereference(rt->rt6i_node); |
| 220 | |
| 221 | if (fn) { |
| 222 | *cookie = fn->fn_sernum; |
Wei Wang | bbd63f0 | 2017-10-06 12:06:07 -0700 | [diff] [blame^] | 223 | /* pairs with smp_wmb() in fib6_update_sernum_upto_root() */ |
| 224 | smp_rmb(); |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 225 | status = true; |
| 226 | } |
| 227 | |
| 228 | rcu_read_unlock(); |
| 229 | return status; |
| 230 | } |
| 231 | |
Martin KaFai Lau | b197df4 | 2015-05-22 20:56:01 -0700 | [diff] [blame] | 232 | static inline u32 rt6_get_cookie(const struct rt6_info *rt) |
| 233 | { |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 234 | u32 cookie = 0; |
| 235 | |
Martin KaFai Lau | 02bcf4e | 2015-11-11 11:51:08 -0800 | [diff] [blame] | 236 | if (rt->rt6i_flags & RTF_PCPU || |
Wei Wang | a4c2fd7 | 2017-06-17 10:42:42 -0700 | [diff] [blame] | 237 | (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->dst.from)) |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 238 | rt = (struct rt6_info *)(rt->dst.from); |
| 239 | |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 240 | rt6_get_cookie_safe(rt, &cookie); |
| 241 | |
| 242 | return cookie; |
Martin KaFai Lau | b197df4 | 2015-05-22 20:56:01 -0700 | [diff] [blame] | 243 | } |
| 244 | |
Amerigo Wang | 94e187c | 2012-10-29 00:13:19 +0000 | [diff] [blame] | 245 | static inline void ip6_rt_put(struct rt6_info *rt) |
| 246 | { |
| 247 | /* dst_release() accepts a NULL parameter. |
| 248 | * We rely on dst being first structure in struct rt6_info |
| 249 | */ |
| 250 | BUILD_BUG_ON(offsetof(struct rt6_info, dst) != 0); |
| 251 | dst_release(&rt->dst); |
| 252 | } |
| 253 | |
Ido Schimmel | a460aa8 | 2017-08-03 13:28:25 +0200 | [diff] [blame] | 254 | void rt6_free_pcpu(struct rt6_info *non_pcpu_rt); |
| 255 | |
| 256 | static inline void rt6_hold(struct rt6_info *rt) |
| 257 | { |
| 258 | atomic_inc(&rt->rt6i_ref); |
| 259 | } |
| 260 | |
| 261 | static inline void rt6_release(struct rt6_info *rt) |
| 262 | { |
| 263 | if (atomic_dec_and_test(&rt->rt6i_ref)) { |
| 264 | rt6_free_pcpu(rt); |
| 265 | dst_dev_put(&rt->dst); |
| 266 | dst_release(&rt->dst); |
| 267 | } |
| 268 | } |
| 269 | |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 270 | enum fib6_walk_state { |
| 271 | #ifdef CONFIG_IPV6_SUBTREES |
| 272 | FWS_S, |
| 273 | #endif |
| 274 | FWS_L, |
| 275 | FWS_R, |
| 276 | FWS_C, |
| 277 | FWS_U |
| 278 | }; |
| 279 | |
| 280 | struct fib6_walker { |
Alexey Dobriyan | bbef49d | 2010-02-18 08:13:30 +0000 | [diff] [blame] | 281 | struct list_head lh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | struct fib6_node *root, *node; |
| 283 | struct rt6_info *leaf; |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 284 | enum fib6_walk_state state; |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 285 | unsigned int skip; |
| 286 | unsigned int count; |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 287 | int (*func)(struct fib6_walker *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | void *args; |
| 289 | }; |
| 290 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | struct rt6_statistics { |
| 292 | __u32 fib_nodes; |
| 293 | __u32 fib_route_nodes; |
| 294 | __u32 fib_rt_alloc; /* permanent routes */ |
| 295 | __u32 fib_rt_entries; /* rt entries in table */ |
| 296 | __u32 fib_rt_cache; /* cache routes */ |
| 297 | __u32 fib_discarded_routes; |
| 298 | }; |
| 299 | |
| 300 | #define RTN_TL_ROOT 0x0001 |
| 301 | #define RTN_ROOT 0x0002 /* tree root node */ |
| 302 | #define RTN_RTINFO 0x0004 /* node with valid routing info */ |
| 303 | |
| 304 | /* |
| 305 | * priority levels (or metrics) |
| 306 | * |
| 307 | */ |
| 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 310 | struct fib6_table { |
| 311 | struct hlist_node tb6_hlist; |
| 312 | u32 tb6_id; |
| 313 | rwlock_t tb6_lock; |
| 314 | struct fib6_node tb6_root; |
David S. Miller | 8e77327 | 2012-06-11 00:01:52 -0700 | [diff] [blame] | 315 | struct inet_peer_base tb6_peers; |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 316 | unsigned int flags; |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 317 | unsigned int fib_seq; |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 318 | #define RT6_TABLE_HAS_DFLT_ROUTER BIT(0) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 319 | }; |
| 320 | |
| 321 | #define RT6_TABLE_UNSPEC RT_TABLE_UNSPEC |
| 322 | #define RT6_TABLE_MAIN RT_TABLE_MAIN |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 323 | #define RT6_TABLE_DFLT RT6_TABLE_MAIN |
| 324 | #define RT6_TABLE_INFO RT6_TABLE_MAIN |
| 325 | #define RT6_TABLE_PREFIX RT6_TABLE_MAIN |
| 326 | |
| 327 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 328 | #define FIB6_TABLE_MIN 1 |
| 329 | #define FIB6_TABLE_MAX RT_TABLE_MAX |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 330 | #define RT6_TABLE_LOCAL RT_TABLE_LOCAL |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 331 | #else |
| 332 | #define FIB6_TABLE_MIN RT_TABLE_MAIN |
| 333 | #define FIB6_TABLE_MAX FIB6_TABLE_MIN |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 334 | #define RT6_TABLE_LOCAL RT6_TABLE_MAIN |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 335 | #endif |
| 336 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 337 | typedef struct rt6_info *(*pol_lookup_t)(struct net *, |
| 338 | struct fib6_table *, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 339 | struct flowi6 *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | |
Ido Schimmel | df77fe4 | 2017-08-03 13:28:17 +0200 | [diff] [blame] | 341 | struct fib6_entry_notifier_info { |
| 342 | struct fib_notifier_info info; /* must be first */ |
| 343 | struct rt6_info *rt; |
| 344 | }; |
| 345 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | /* |
| 347 | * exported functions |
| 348 | */ |
| 349 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 350 | struct fib6_table *fib6_get_table(struct net *net, u32 id); |
| 351 | struct fib6_table *fib6_new_table(struct net *net, u32 id); |
| 352 | struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6, |
| 353 | int flags, pol_lookup_t lookup); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 354 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 355 | struct fib6_node *fib6_lookup(struct fib6_node *root, |
| 356 | const struct in6_addr *daddr, |
| 357 | const struct in6_addr *saddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 359 | struct fib6_node *fib6_locate(struct fib6_node *root, |
| 360 | const struct in6_addr *daddr, int dst_len, |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 361 | const struct in6_addr *saddr, int src_len, |
| 362 | bool exact_match); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 364 | 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] | 365 | void *arg); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 366 | |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 367 | int fib6_add(struct fib6_node *root, struct rt6_info *rt, |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 368 | struct nl_info *info, struct mx6_config *mxc, |
| 369 | struct netlink_ext_ack *extack); |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 370 | int fib6_del(struct rt6_info *rt, struct nl_info *info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | |
Roopa Prabhu | 37a1d36 | 2015-09-13 10:18:33 -0700 | [diff] [blame] | 372 | void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info, |
| 373 | unsigned int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 375 | void fib6_run_gc(unsigned long expires, struct net *net, bool force); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 377 | void fib6_gc_cleanup(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 379 | int fib6_init(void); |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 380 | |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 381 | int ipv6_route_open(struct inode *inode, struct file *file); |
| 382 | |
Ido Schimmel | 16ab6d7 | 2017-08-03 13:28:16 +0200 | [diff] [blame] | 383 | int call_fib6_notifier(struct notifier_block *nb, struct net *net, |
| 384 | enum fib_event_type event_type, |
| 385 | struct fib_notifier_info *info); |
| 386 | int call_fib6_notifiers(struct net *net, enum fib_event_type event_type, |
| 387 | struct fib_notifier_info *info); |
| 388 | |
| 389 | int __net_init fib6_notifier_init(struct net *net); |
| 390 | void __net_exit fib6_notifier_exit(struct net *net); |
| 391 | |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 392 | unsigned int fib6_tables_seq_read(struct net *net); |
| 393 | int fib6_tables_dump(struct net *net, struct notifier_block *nb); |
| 394 | |
Wei Wang | 180ca44 | 2017-10-06 12:05:56 -0700 | [diff] [blame] | 395 | void fib6_update_sernum(struct rt6_info *rt); |
| 396 | |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 397 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 398 | int fib6_rules_init(void); |
| 399 | void fib6_rules_cleanup(void); |
Ido Schimmel | e3ea973 | 2017-08-03 13:28:15 +0200 | [diff] [blame] | 400 | bool fib6_rule_default(const struct fib_rule *rule); |
Ido Schimmel | dcb18f7 | 2017-08-03 13:28:18 +0200 | [diff] [blame] | 401 | int fib6_rules_dump(struct net *net, struct notifier_block *nb); |
| 402 | unsigned int fib6_rules_seq_read(struct net *net); |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 403 | #else |
| 404 | static inline int fib6_rules_init(void) |
| 405 | { |
| 406 | return 0; |
| 407 | } |
| 408 | static inline void fib6_rules_cleanup(void) |
| 409 | { |
| 410 | return ; |
| 411 | } |
Ido Schimmel | e3ea973 | 2017-08-03 13:28:15 +0200 | [diff] [blame] | 412 | static inline bool fib6_rule_default(const struct fib_rule *rule) |
| 413 | { |
| 414 | return true; |
| 415 | } |
Ido Schimmel | dcb18f7 | 2017-08-03 13:28:18 +0200 | [diff] [blame] | 416 | static inline int fib6_rules_dump(struct net *net, struct notifier_block *nb) |
| 417 | { |
| 418 | return 0; |
| 419 | } |
| 420 | static inline unsigned int fib6_rules_seq_read(struct net *net) |
| 421 | { |
| 422 | return 0; |
| 423 | } |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 424 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | #endif |