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 { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 71 | struct fib6_node __rcu *parent; |
| 72 | struct fib6_node __rcu *left; |
| 73 | struct fib6_node __rcu *right; |
Kim Nordlund | 8bce65b | 2006-12-13 16:38:29 -0800 | [diff] [blame] | 74 | #ifdef CONFIG_IPV6_SUBTREES |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 75 | struct fib6_node __rcu *subtree; |
Kim Nordlund | 8bce65b | 2006-12-13 16:38:29 -0800 | [diff] [blame] | 76 | #endif |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 77 | struct rt6_info __rcu *leaf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 82 | struct rt6_info __rcu *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 |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 94 | #define FIB6_SUBTREE(fn) (rcu_dereference_protected((fn)->subtree, 1)) |
YOSHIFUJI Hideaki | 7fc3316 | 2006-08-23 17:22:24 -0700 | [diff] [blame] | 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; |
David Miller | 071fb37 | 2017-11-28 15:40:15 -0500 | [diff] [blame] | 132 | struct rt6_info __rcu *rt6_next; |
David Miller | 3a2232e | 2017-11-28 15:40:40 -0500 | [diff] [blame] | 133 | struct rt6_info *from; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 135 | /* |
| 136 | * Tail elements of dst_entry (__refcnt etc.) |
| 137 | * and these elements (rarely used in hot path) are in |
| 138 | * the same cache line. |
| 139 | */ |
| 140 | struct fib6_table *rt6i_table; |
Wei Wang | 4e587ea | 2017-08-25 15:03:10 -0700 | [diff] [blame] | 141 | struct fib6_node __rcu *rt6i_node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | struct in6_addr rt6i_gateway; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 144 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 145 | /* Multipath routes: |
| 146 | * siblings is a list of rt6_info that have the the same metric/weight, |
| 147 | * destination, but not the same gateway. nsiblings is just a cache |
| 148 | * to speed up lookup. |
| 149 | */ |
| 150 | struct list_head rt6i_siblings; |
| 151 | unsigned int rt6i_nsiblings; |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 152 | atomic_t rt6i_nh_upper_bound; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | atomic_t rt6i_ref; |
Herbert Xu | b4ce927 | 2007-11-13 21:33:32 -0800 | [diff] [blame] | 155 | |
Ido Schimmel | fe40079 | 2017-08-15 09:09:49 +0200 | [diff] [blame] | 156 | unsigned int rt6i_nh_flags; |
| 157 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 158 | /* These are in a separate cache line. */ |
| 159 | struct rt6key rt6i_dst ____cacheline_aligned_in_smp; |
| 160 | u32 rt6i_flags; |
| 161 | struct rt6key rt6i_src; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 162 | struct rt6key rt6i_prefsrc; |
Herbert Xu | b4ce927 | 2007-11-13 21:33:32 -0800 | [diff] [blame] | 163 | |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 164 | struct list_head rt6i_uncached; |
| 165 | struct uncached_list *rt6i_uncached_list; |
| 166 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 167 | struct inet6_dev *rt6i_idev; |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame] | 168 | struct rt6_info * __percpu *rt6i_pcpu; |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 169 | struct rt6_exception_bucket __rcu *rt6i_exception_bucket; |
Noriaki TAKAMIYA | a47ed4c | 2007-09-06 03:31:25 -0700 | [diff] [blame] | 170 | |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 171 | u32 rt6i_metric; |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 172 | u32 rt6i_pmtu; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 173 | /* more non-fragment space at head required */ |
Ido Schimmel | 398958a | 2018-01-09 16:40:28 +0200 | [diff] [blame] | 174 | int rt6i_nh_weight; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 175 | unsigned short rt6i_nfheader_len; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 176 | u8 rt6i_protocol; |
Wei Wang | 35732d0 | 2017-10-06 12:05:57 -0700 | [diff] [blame] | 177 | u8 exception_bucket_flushed:1, |
Ido Schimmel | a2c554d | 2018-01-07 12:45:11 +0200 | [diff] [blame] | 178 | should_flush:1, |
| 179 | unused:6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | }; |
| 181 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 182 | #define for_each_fib6_node_rt_rcu(fn) \ |
| 183 | for (rt = rcu_dereference((fn)->leaf); rt; \ |
David Miller | 071fb37 | 2017-11-28 15:40:15 -0500 | [diff] [blame] | 184 | rt = rcu_dereference(rt->rt6_next)) |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 185 | |
| 186 | #define for_each_fib6_walker_rt(w) \ |
| 187 | for (rt = (w)->leaf; rt; \ |
David Miller | 071fb37 | 2017-11-28 15:40:15 -0500 | [diff] [blame] | 188 | rt = rcu_dereference_protected(rt->rt6_next, 1)) |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 189 | |
YOSHIFUJI Hideaki | 7a3025b | 2006-10-13 16:17:25 +0900 | [diff] [blame] | 190 | static inline struct inet6_dev *ip6_dst_idev(struct dst_entry *dst) |
| 191 | { |
| 192 | return ((struct rt6_info *)dst)->rt6i_idev; |
| 193 | } |
| 194 | |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 195 | static inline void rt6_clean_expires(struct rt6_info *rt) |
| 196 | { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 197 | rt->rt6i_flags &= ~RTF_EXPIRES; |
Hannes Frederic Sowa | 01ba16d | 2013-10-24 10:14:27 +0200 | [diff] [blame] | 198 | rt->dst.expires = 0; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | static inline void rt6_set_expires(struct rt6_info *rt, unsigned long expires) |
| 202 | { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 203 | rt->dst.expires = expires; |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 204 | rt->rt6i_flags |= RTF_EXPIRES; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 205 | } |
| 206 | |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 207 | static inline void rt6_update_expires(struct rt6_info *rt0, int timeout) |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 208 | { |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 209 | struct rt6_info *rt; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 210 | |
David Miller | 3a2232e | 2017-11-28 15:40:40 -0500 | [diff] [blame] | 211 | for (rt = rt0; rt && !(rt->rt6i_flags & RTF_EXPIRES); rt = rt->from); |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 212 | if (rt && rt != rt0) |
| 213 | rt0->dst.expires = rt->dst.expires; |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 214 | dst_set_expires(&rt0->dst, timeout); |
| 215 | rt0->rt6i_flags |= RTF_EXPIRES; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 216 | } |
| 217 | |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 218 | /* Function to safely get fn->sernum for passed in rt |
| 219 | * and store result in passed in cookie. |
| 220 | * Return true if we can get cookie safely |
| 221 | * Return false if not |
| 222 | */ |
| 223 | static inline bool rt6_get_cookie_safe(const struct rt6_info *rt, |
| 224 | u32 *cookie) |
| 225 | { |
| 226 | struct fib6_node *fn; |
| 227 | bool status = false; |
| 228 | |
| 229 | rcu_read_lock(); |
| 230 | fn = rcu_dereference(rt->rt6i_node); |
| 231 | |
| 232 | if (fn) { |
| 233 | *cookie = fn->fn_sernum; |
Wei Wang | bbd63f0 | 2017-10-06 12:06:07 -0700 | [diff] [blame] | 234 | /* pairs with smp_wmb() in fib6_update_sernum_upto_root() */ |
| 235 | smp_rmb(); |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 236 | status = true; |
| 237 | } |
| 238 | |
| 239 | rcu_read_unlock(); |
| 240 | return status; |
| 241 | } |
| 242 | |
Martin KaFai Lau | b197df4 | 2015-05-22 20:56:01 -0700 | [diff] [blame] | 243 | static inline u32 rt6_get_cookie(const struct rt6_info *rt) |
| 244 | { |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 245 | u32 cookie = 0; |
| 246 | |
Martin KaFai Lau | 02bcf4e | 2015-11-11 11:51:08 -0800 | [diff] [blame] | 247 | if (rt->rt6i_flags & RTF_PCPU || |
David Miller | 3a2232e | 2017-11-28 15:40:40 -0500 | [diff] [blame] | 248 | (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->from)) |
| 249 | rt = rt->from; |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 250 | |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 251 | rt6_get_cookie_safe(rt, &cookie); |
| 252 | |
| 253 | return cookie; |
Martin KaFai Lau | b197df4 | 2015-05-22 20:56:01 -0700 | [diff] [blame] | 254 | } |
| 255 | |
Amerigo Wang | 94e187c | 2012-10-29 00:13:19 +0000 | [diff] [blame] | 256 | static inline void ip6_rt_put(struct rt6_info *rt) |
| 257 | { |
| 258 | /* dst_release() accepts a NULL parameter. |
| 259 | * We rely on dst being first structure in struct rt6_info |
| 260 | */ |
| 261 | BUILD_BUG_ON(offsetof(struct rt6_info, dst) != 0); |
| 262 | dst_release(&rt->dst); |
| 263 | } |
| 264 | |
Ido Schimmel | a460aa8 | 2017-08-03 13:28:25 +0200 | [diff] [blame] | 265 | void rt6_free_pcpu(struct rt6_info *non_pcpu_rt); |
| 266 | |
| 267 | static inline void rt6_hold(struct rt6_info *rt) |
| 268 | { |
| 269 | atomic_inc(&rt->rt6i_ref); |
| 270 | } |
| 271 | |
| 272 | static inline void rt6_release(struct rt6_info *rt) |
| 273 | { |
| 274 | if (atomic_dec_and_test(&rt->rt6i_ref)) { |
| 275 | rt6_free_pcpu(rt); |
| 276 | dst_dev_put(&rt->dst); |
| 277 | dst_release(&rt->dst); |
| 278 | } |
| 279 | } |
| 280 | |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 281 | enum fib6_walk_state { |
| 282 | #ifdef CONFIG_IPV6_SUBTREES |
| 283 | FWS_S, |
| 284 | #endif |
| 285 | FWS_L, |
| 286 | FWS_R, |
| 287 | FWS_C, |
| 288 | FWS_U |
| 289 | }; |
| 290 | |
| 291 | struct fib6_walker { |
Alexey Dobriyan | bbef49d | 2010-02-18 08:13:30 +0000 | [diff] [blame] | 292 | struct list_head lh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | struct fib6_node *root, *node; |
| 294 | struct rt6_info *leaf; |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 295 | enum fib6_walk_state state; |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 296 | unsigned int skip; |
| 297 | unsigned int count; |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 298 | int (*func)(struct fib6_walker *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | void *args; |
| 300 | }; |
| 301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | struct rt6_statistics { |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 303 | __u32 fib_nodes; /* all fib6 nodes */ |
| 304 | __u32 fib_route_nodes; /* intermediate nodes */ |
| 305 | __u32 fib_rt_entries; /* rt entries in fib table */ |
| 306 | __u32 fib_rt_cache; /* cached rt entries in exception table */ |
| 307 | __u32 fib_discarded_routes; /* total number of routes delete */ |
| 308 | |
| 309 | /* The following stats are not protected by any lock */ |
| 310 | atomic_t fib_rt_alloc; /* total number of routes alloced */ |
| 311 | atomic_t fib_rt_uncache; /* rt entries in uncached list */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | }; |
| 313 | |
| 314 | #define RTN_TL_ROOT 0x0001 |
| 315 | #define RTN_ROOT 0x0002 /* tree root node */ |
| 316 | #define RTN_RTINFO 0x0004 /* node with valid routing info */ |
| 317 | |
| 318 | /* |
| 319 | * priority levels (or metrics) |
| 320 | * |
| 321 | */ |
| 322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 324 | struct fib6_table { |
| 325 | struct hlist_node tb6_hlist; |
| 326 | u32 tb6_id; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 327 | spinlock_t tb6_lock; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 328 | struct fib6_node tb6_root; |
David S. Miller | 8e77327 | 2012-06-11 00:01:52 -0700 | [diff] [blame] | 329 | struct inet_peer_base tb6_peers; |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 330 | unsigned int flags; |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 331 | unsigned int fib_seq; |
David Ahern | 830218c | 2016-10-24 10:52:35 -0700 | [diff] [blame] | 332 | #define RT6_TABLE_HAS_DFLT_ROUTER BIT(0) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 333 | }; |
| 334 | |
| 335 | #define RT6_TABLE_UNSPEC RT_TABLE_UNSPEC |
| 336 | #define RT6_TABLE_MAIN RT_TABLE_MAIN |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 337 | #define RT6_TABLE_DFLT RT6_TABLE_MAIN |
| 338 | #define RT6_TABLE_INFO RT6_TABLE_MAIN |
| 339 | #define RT6_TABLE_PREFIX RT6_TABLE_MAIN |
| 340 | |
| 341 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 342 | #define FIB6_TABLE_MIN 1 |
| 343 | #define FIB6_TABLE_MAX RT_TABLE_MAX |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 344 | #define RT6_TABLE_LOCAL RT_TABLE_LOCAL |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 345 | #else |
| 346 | #define FIB6_TABLE_MIN RT_TABLE_MAIN |
| 347 | #define FIB6_TABLE_MAX FIB6_TABLE_MIN |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 348 | #define RT6_TABLE_LOCAL RT6_TABLE_MAIN |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 349 | #endif |
| 350 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 351 | typedef struct rt6_info *(*pol_lookup_t)(struct net *, |
| 352 | struct fib6_table *, |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 353 | struct flowi6 *, |
| 354 | const struct sk_buff *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Ido Schimmel | df77fe4 | 2017-08-03 13:28:17 +0200 | [diff] [blame] | 356 | struct fib6_entry_notifier_info { |
| 357 | struct fib_notifier_info info; /* must be first */ |
| 358 | struct rt6_info *rt; |
| 359 | }; |
| 360 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | /* |
| 362 | * exported functions |
| 363 | */ |
| 364 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 365 | struct fib6_table *fib6_get_table(struct net *net, u32 id); |
| 366 | struct fib6_table *fib6_new_table(struct net *net, u32 id); |
| 367 | struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6, |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 368 | const struct sk_buff *skb, |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 369 | int flags, pol_lookup_t lookup); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 370 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 371 | struct fib6_node *fib6_lookup(struct fib6_node *root, |
| 372 | const struct in6_addr *daddr, |
| 373 | const struct in6_addr *saddr); |
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 | struct fib6_node *fib6_locate(struct fib6_node *root, |
| 376 | const struct in6_addr *daddr, int dst_len, |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 377 | const struct in6_addr *saddr, int src_len, |
| 378 | bool exact_match); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 380 | 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] | 381 | void *arg); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 382 | |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 383 | int fib6_add(struct fib6_node *root, struct rt6_info *rt, |
David Ahern | 333c430 | 2017-05-21 10:12:04 -0600 | [diff] [blame] | 384 | struct nl_info *info, struct mx6_config *mxc, |
| 385 | struct netlink_ext_ack *extack); |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 386 | int fib6_del(struct rt6_info *rt, struct nl_info *info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Roopa Prabhu | 37a1d36 | 2015-09-13 10:18:33 -0700 | [diff] [blame] | 388 | void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info, |
| 389 | unsigned int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 391 | void fib6_run_gc(unsigned long expires, struct net *net, bool force); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 393 | void fib6_gc_cleanup(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 395 | int fib6_init(void); |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 396 | |
Christoph Hellwig | c350637 | 2018-04-10 19:42:55 +0200 | [diff] [blame^] | 397 | struct ipv6_route_iter { |
| 398 | struct seq_net_private p; |
| 399 | struct fib6_walker w; |
| 400 | loff_t skip; |
| 401 | struct fib6_table *tbl; |
| 402 | int sernum; |
| 403 | }; |
| 404 | |
| 405 | extern const struct seq_operations ipv6_route_seq_ops; |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 406 | |
Ido Schimmel | 16ab6d7 | 2017-08-03 13:28:16 +0200 | [diff] [blame] | 407 | int call_fib6_notifier(struct notifier_block *nb, struct net *net, |
| 408 | enum fib_event_type event_type, |
| 409 | struct fib_notifier_info *info); |
| 410 | int call_fib6_notifiers(struct net *net, enum fib_event_type event_type, |
| 411 | struct fib_notifier_info *info); |
| 412 | |
| 413 | int __net_init fib6_notifier_init(struct net *net); |
| 414 | void __net_exit fib6_notifier_exit(struct net *net); |
| 415 | |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 416 | unsigned int fib6_tables_seq_read(struct net *net); |
| 417 | int fib6_tables_dump(struct net *net, struct notifier_block *nb); |
| 418 | |
Wei Wang | 180ca44 | 2017-10-06 12:05:56 -0700 | [diff] [blame] | 419 | void fib6_update_sernum(struct rt6_info *rt); |
Ido Schimmel | 4a8e56e | 2018-01-07 12:45:13 +0200 | [diff] [blame] | 420 | void fib6_update_sernum_upto_root(struct net *net, struct rt6_info *rt); |
Wei Wang | 180ca44 | 2017-10-06 12:05:56 -0700 | [diff] [blame] | 421 | |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 422 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 423 | int fib6_rules_init(void); |
| 424 | void fib6_rules_cleanup(void); |
Ido Schimmel | e3ea973 | 2017-08-03 13:28:15 +0200 | [diff] [blame] | 425 | bool fib6_rule_default(const struct fib_rule *rule); |
Ido Schimmel | dcb18f7 | 2017-08-03 13:28:18 +0200 | [diff] [blame] | 426 | int fib6_rules_dump(struct net *net, struct notifier_block *nb); |
| 427 | unsigned int fib6_rules_seq_read(struct net *net); |
Roopa Prabhu | 5e5d6fe | 2018-02-28 22:43:22 -0500 | [diff] [blame] | 428 | |
| 429 | static inline bool fib6_rules_early_flow_dissect(struct net *net, |
| 430 | struct sk_buff *skb, |
| 431 | struct flowi6 *fl6, |
| 432 | struct flow_keys *flkeys) |
| 433 | { |
| 434 | unsigned int flag = FLOW_DISSECTOR_F_STOP_AT_ENCAP; |
| 435 | |
| 436 | if (!net->ipv6.fib6_rules_require_fldissect) |
| 437 | return false; |
| 438 | |
| 439 | skb_flow_dissect_flow_keys(skb, flkeys, flag); |
| 440 | fl6->fl6_sport = flkeys->ports.src; |
| 441 | fl6->fl6_dport = flkeys->ports.dst; |
| 442 | fl6->flowi6_proto = flkeys->basic.ip_proto; |
| 443 | |
| 444 | return true; |
| 445 | } |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 446 | #else |
| 447 | static inline int fib6_rules_init(void) |
| 448 | { |
| 449 | return 0; |
| 450 | } |
| 451 | static inline void fib6_rules_cleanup(void) |
| 452 | { |
| 453 | return ; |
| 454 | } |
Ido Schimmel | e3ea973 | 2017-08-03 13:28:15 +0200 | [diff] [blame] | 455 | static inline bool fib6_rule_default(const struct fib_rule *rule) |
| 456 | { |
| 457 | return true; |
| 458 | } |
Ido Schimmel | dcb18f7 | 2017-08-03 13:28:18 +0200 | [diff] [blame] | 459 | static inline int fib6_rules_dump(struct net *net, struct notifier_block *nb) |
| 460 | { |
| 461 | return 0; |
| 462 | } |
| 463 | static inline unsigned int fib6_rules_seq_read(struct net *net) |
| 464 | { |
| 465 | return 0; |
| 466 | } |
Roopa Prabhu | 5e5d6fe | 2018-02-28 22:43:22 -0500 | [diff] [blame] | 467 | static inline bool fib6_rules_early_flow_dissect(struct net *net, |
| 468 | struct sk_buff *skb, |
| 469 | struct flowi6 *fl6, |
| 470 | struct flow_keys *flkeys) |
| 471 | { |
| 472 | return false; |
| 473 | } |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 474 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | #endif |