Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2 | * Linux INET6 implementation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Forwarding Information Database |
| 4 | * |
| 5 | * Authors: |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 6 | * Pedro Roque <roque@di.fc.ul.pt> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * as published by the Free Software Foundation; either version |
| 11 | * 2 of the License, or (at your option) any later version. |
Wang Yufen | 8db46f1 | 2014-03-28 12:07:02 +0800 | [diff] [blame] | 12 | * |
| 13 | * Changes: |
| 14 | * Yuji SEKIYA @USAGI: Support default route on router node; |
| 15 | * remove ip6_null_entry from the top of |
| 16 | * routing table. |
| 17 | * Ville Nuorvala: Fixed routing subtrees. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | */ |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 19 | |
| 20 | #define pr_fmt(fmt) "IPv6: " fmt |
| 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/errno.h> |
| 23 | #include <linux/types.h> |
| 24 | #include <linux/net.h> |
| 25 | #include <linux/route.h> |
| 26 | #include <linux/netdevice.h> |
| 27 | #include <linux/in6.h> |
| 28 | #include <linux/init.h> |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 29 | #include <linux/list.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
David Ahern | cc5f0eb | 2018-10-04 20:07:52 -0700 | [diff] [blame] | 32 | #include <net/ip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <net/ipv6.h> |
| 34 | #include <net/ndisc.h> |
| 35 | #include <net/addrconf.h> |
Roopa Prabhu | 19e42e4 | 2015-07-21 10:43:48 +0200 | [diff] [blame] | 36 | #include <net/lwtunnel.h> |
Ido Schimmel | df77fe4 | 2017-08-03 13:28:17 +0200 | [diff] [blame] | 37 | #include <net/fib_notifier.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #include <net/ip6_fib.h> |
| 40 | #include <net/ip6_route.h> |
| 41 | |
Wang Yufen | 437de07 | 2014-03-28 12:07:04 +0800 | [diff] [blame] | 42 | static struct kmem_cache *fib6_node_kmem __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 44 | struct fib6_cleaner { |
| 45 | struct fib6_walker w; |
Benjamin Thery | ec7d43c | 2008-03-03 23:31:57 -0800 | [diff] [blame] | 46 | struct net *net; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 47 | int (*func)(struct fib6_info *, void *arg); |
Hannes Frederic Sowa | 327571c | 2014-10-06 19:58:38 +0200 | [diff] [blame] | 48 | int sernum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | void *arg; |
David Ahern | 7c6bb7d | 2018-10-11 20:17:21 -0700 | [diff] [blame] | 50 | bool skip_notify; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | }; |
| 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #ifdef CONFIG_IPV6_SUBTREES |
| 54 | #define FWS_INIT FWS_S |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #else |
| 56 | #define FWS_INIT FWS_L |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #endif |
| 58 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 59 | static struct fib6_info *fib6_find_prefix(struct net *net, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 60 | struct fib6_table *table, |
| 61 | struct fib6_node *fn); |
| 62 | static struct fib6_node *fib6_repair_tree(struct net *net, |
| 63 | struct fib6_table *table, |
| 64 | struct fib6_node *fn); |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 65 | static int fib6_walk(struct net *net, struct fib6_walker *w); |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 66 | static int fib6_walk_continue(struct fib6_walker *w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | /* |
| 69 | * A routing update causes an increase of the serial number on the |
| 70 | * affected subtree. This allows for cached routes to be asynchronously |
| 71 | * tested when modifications are made to the destination cache as a |
| 72 | * result of redirects, path MTU changes, etc. |
| 73 | */ |
| 74 | |
Kees Cook | 86cb30e | 2017-10-17 20:21:24 -0700 | [diff] [blame] | 75 | static void fib6_gc_timer_cb(struct timer_list *t); |
Daniel Lezcano | 5b7c931 | 2008-03-03 23:28:58 -0800 | [diff] [blame] | 76 | |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 77 | #define FOR_WALKERS(net, w) \ |
| 78 | list_for_each_entry(w, &(net)->ipv6.fib6_walkers, lh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 80 | static void fib6_walker_link(struct net *net, struct fib6_walker *w) |
Adrian Bunk | 90d4112 | 2006-08-14 23:49:16 -0700 | [diff] [blame] | 81 | { |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 82 | write_lock_bh(&net->ipv6.fib6_walker_lock); |
| 83 | list_add(&w->lh, &net->ipv6.fib6_walkers); |
| 84 | write_unlock_bh(&net->ipv6.fib6_walker_lock); |
Adrian Bunk | 90d4112 | 2006-08-14 23:49:16 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 87 | static void fib6_walker_unlink(struct net *net, struct fib6_walker *w) |
Adrian Bunk | 90d4112 | 2006-08-14 23:49:16 -0700 | [diff] [blame] | 88 | { |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 89 | write_lock_bh(&net->ipv6.fib6_walker_lock); |
Alexey Dobriyan | bbef49d | 2010-02-18 08:13:30 +0000 | [diff] [blame] | 90 | list_del(&w->lh); |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 91 | write_unlock_bh(&net->ipv6.fib6_walker_lock); |
Adrian Bunk | 90d4112 | 2006-08-14 23:49:16 -0700 | [diff] [blame] | 92 | } |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 93 | |
Hannes Frederic Sowa | 812918c | 2014-10-06 19:58:37 +0200 | [diff] [blame] | 94 | static int fib6_new_sernum(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { |
Hannes Frederic Sowa | 42b1870 | 2014-10-06 19:58:35 +0200 | [diff] [blame] | 96 | int new, old; |
| 97 | |
| 98 | do { |
Hannes Frederic Sowa | 812918c | 2014-10-06 19:58:37 +0200 | [diff] [blame] | 99 | old = atomic_read(&net->ipv6.fib6_sernum); |
Hannes Frederic Sowa | 42b1870 | 2014-10-06 19:58:35 +0200 | [diff] [blame] | 100 | new = old < INT_MAX ? old + 1 : 1; |
Hannes Frederic Sowa | 812918c | 2014-10-06 19:58:37 +0200 | [diff] [blame] | 101 | } while (atomic_cmpxchg(&net->ipv6.fib6_sernum, |
| 102 | old, new) != old); |
Hannes Frederic Sowa | 42b1870 | 2014-10-06 19:58:35 +0200 | [diff] [blame] | 103 | return new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Hannes Frederic Sowa | 327571c | 2014-10-06 19:58:38 +0200 | [diff] [blame] | 106 | enum { |
| 107 | FIB6_NO_SERNUM_CHANGE = 0, |
| 108 | }; |
| 109 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 110 | void fib6_update_sernum(struct net *net, struct fib6_info *f6i) |
Wei Wang | 180ca44 | 2017-10-06 12:05:56 -0700 | [diff] [blame] | 111 | { |
Wei Wang | 180ca44 | 2017-10-06 12:05:56 -0700 | [diff] [blame] | 112 | struct fib6_node *fn; |
| 113 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 114 | fn = rcu_dereference_protected(f6i->fib6_node, |
| 115 | lockdep_is_held(&f6i->fib6_table->tb6_lock)); |
Wei Wang | 180ca44 | 2017-10-06 12:05:56 -0700 | [diff] [blame] | 116 | if (fn) |
| 117 | fn->fn_sernum = fib6_new_sernum(net); |
Wei Wang | 180ca44 | 2017-10-06 12:05:56 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | /* |
| 121 | * Auxiliary address test functions for the radix tree. |
| 122 | * |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 123 | * These assume a 32bit processor (although it will work on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | * 64bit processors) |
| 125 | */ |
| 126 | |
| 127 | /* |
| 128 | * test bit |
| 129 | */ |
YOSHIFUJI Hideaki / 吉藤英明 | 02cdce5 | 2010-03-27 01:24:16 +0000 | [diff] [blame] | 130 | #if defined(__LITTLE_ENDIAN) |
| 131 | # define BITOP_BE32_SWIZZLE (0x1F & ~7) |
| 132 | #else |
| 133 | # define BITOP_BE32_SWIZZLE 0 |
| 134 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 136 | static __be32 addr_bit_set(const void *token, int fn_bit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | { |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 138 | const __be32 *addr = token; |
YOSHIFUJI Hideaki / 吉藤英明 | 02cdce5 | 2010-03-27 01:24:16 +0000 | [diff] [blame] | 139 | /* |
| 140 | * Here, |
Wang Yufen | 8db46f1 | 2014-03-28 12:07:02 +0800 | [diff] [blame] | 141 | * 1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f) |
YOSHIFUJI Hideaki / 吉藤英明 | 02cdce5 | 2010-03-27 01:24:16 +0000 | [diff] [blame] | 142 | * is optimized version of |
| 143 | * htonl(1 << ((~fn_bit)&0x1F)) |
| 144 | * See include/asm-generic/bitops/le.h. |
| 145 | */ |
Eric Dumazet | 0eae88f | 2010-04-20 19:06:52 -0700 | [diff] [blame] | 146 | return (__force __be32)(1 << ((~fn_bit ^ BITOP_BE32_SWIZZLE) & 0x1f)) & |
| 147 | addr[fn_bit >> 5]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | } |
| 149 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 150 | struct fib6_info *fib6_info_alloc(gfp_t gfp_flags) |
David Ahern | a64efe14 | 2018-04-17 17:33:24 -0700 | [diff] [blame] | 151 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 152 | struct fib6_info *f6i; |
David Ahern | a64efe14 | 2018-04-17 17:33:24 -0700 | [diff] [blame] | 153 | |
| 154 | f6i = kzalloc(sizeof(*f6i), gfp_flags); |
| 155 | if (!f6i) |
| 156 | return NULL; |
| 157 | |
| 158 | f6i->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, gfp_flags); |
| 159 | if (!f6i->rt6i_pcpu) { |
| 160 | kfree(f6i); |
| 161 | return NULL; |
| 162 | } |
| 163 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 164 | INIT_LIST_HEAD(&f6i->fib6_siblings); |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 165 | atomic_inc(&f6i->fib6_ref); |
David Ahern | a64efe14 | 2018-04-17 17:33:24 -0700 | [diff] [blame] | 166 | |
| 167 | return f6i; |
| 168 | } |
| 169 | |
Eric Dumazet | 9b0a8da | 2018-06-18 05:24:31 -0700 | [diff] [blame] | 170 | void fib6_info_destroy_rcu(struct rcu_head *head) |
David Ahern | a64efe14 | 2018-04-17 17:33:24 -0700 | [diff] [blame] | 171 | { |
Eric Dumazet | 9b0a8da | 2018-06-18 05:24:31 -0700 | [diff] [blame] | 172 | struct fib6_info *f6i = container_of(head, struct fib6_info, rcu); |
David Ahern | a64efe14 | 2018-04-17 17:33:24 -0700 | [diff] [blame] | 173 | struct rt6_exception_bucket *bucket; |
| 174 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 175 | WARN_ON(f6i->fib6_node); |
David Ahern | a64efe14 | 2018-04-17 17:33:24 -0700 | [diff] [blame] | 176 | |
| 177 | bucket = rcu_dereference_protected(f6i->rt6i_exception_bucket, 1); |
| 178 | if (bucket) { |
| 179 | f6i->rt6i_exception_bucket = NULL; |
| 180 | kfree(bucket); |
| 181 | } |
| 182 | |
| 183 | if (f6i->rt6i_pcpu) { |
| 184 | int cpu; |
| 185 | |
| 186 | for_each_possible_cpu(cpu) { |
| 187 | struct rt6_info **ppcpu_rt; |
| 188 | struct rt6_info *pcpu_rt; |
| 189 | |
| 190 | ppcpu_rt = per_cpu_ptr(f6i->rt6i_pcpu, cpu); |
| 191 | pcpu_rt = *ppcpu_rt; |
| 192 | if (pcpu_rt) { |
| 193 | dst_dev_put(&pcpu_rt->dst); |
| 194 | dst_release(&pcpu_rt->dst); |
| 195 | *ppcpu_rt = NULL; |
| 196 | } |
| 197 | } |
Mike Rapoport | 7abab7b | 2018-10-09 07:02:01 +0300 | [diff] [blame] | 198 | |
| 199 | free_percpu(f6i->rt6i_pcpu); |
David Ahern | a64efe14 | 2018-04-17 17:33:24 -0700 | [diff] [blame] | 200 | } |
| 201 | |
David Ahern | 80f1a0f | 2018-08-20 13:02:41 -0700 | [diff] [blame] | 202 | lwtstate_put(f6i->fib6_nh.nh_lwtstate); |
| 203 | |
David Ahern | a64efe14 | 2018-04-17 17:33:24 -0700 | [diff] [blame] | 204 | if (f6i->fib6_nh.nh_dev) |
| 205 | dev_put(f6i->fib6_nh.nh_dev); |
| 206 | |
David Ahern | cc5f0eb | 2018-10-04 20:07:52 -0700 | [diff] [blame] | 207 | ip_fib_metrics_put(f6i->fib6_metrics); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 208 | |
David Ahern | a64efe14 | 2018-04-17 17:33:24 -0700 | [diff] [blame] | 209 | kfree(f6i); |
| 210 | } |
Eric Dumazet | 9b0a8da | 2018-06-18 05:24:31 -0700 | [diff] [blame] | 211 | EXPORT_SYMBOL_GPL(fib6_info_destroy_rcu); |
David Ahern | a64efe14 | 2018-04-17 17:33:24 -0700 | [diff] [blame] | 212 | |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 213 | static struct fib6_node *node_alloc(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
| 215 | struct fib6_node *fn; |
| 216 | |
Robert P. J. Day | c376222 | 2007-02-10 01:45:03 -0800 | [diff] [blame] | 217 | fn = kmem_cache_zalloc(fib6_node_kmem, GFP_ATOMIC); |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 218 | if (fn) |
| 219 | net->ipv6.rt6_stats->fib_nodes++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
| 221 | return fn; |
| 222 | } |
| 223 | |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 224 | static void node_free_immediate(struct net *net, struct fib6_node *fn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | { |
| 226 | kmem_cache_free(fib6_node_kmem, fn); |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 227 | net->ipv6.rt6_stats->fib_nodes--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } |
| 229 | |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 230 | static void node_free_rcu(struct rcu_head *head) |
| 231 | { |
| 232 | struct fib6_node *fn = container_of(head, struct fib6_node, rcu); |
| 233 | |
| 234 | kmem_cache_free(fib6_node_kmem, fn); |
| 235 | } |
| 236 | |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 237 | static void node_free(struct net *net, struct fib6_node *fn) |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 238 | { |
| 239 | call_rcu(&fn->rcu, node_free_rcu); |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 240 | net->ipv6.rt6_stats->fib_nodes--; |
Wei Wang | c5cff85 | 2017-08-21 09:47:10 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Sabrina Dubroca | ba1cc08 | 2017-09-08 10:26:19 +0200 | [diff] [blame] | 243 | static void fib6_free_table(struct fib6_table *table) |
| 244 | { |
| 245 | inetpeer_invalidate_tree(&table->tb6_peers); |
| 246 | kfree(table); |
| 247 | } |
| 248 | |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 249 | static void fib6_link_table(struct net *net, struct fib6_table *tb) |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 250 | { |
| 251 | unsigned int h; |
| 252 | |
Thomas Graf | 375216a | 2006-10-21 20:20:54 -0700 | [diff] [blame] | 253 | /* |
| 254 | * Initialize table lock at a single place to give lockdep a key, |
| 255 | * tables aren't visible prior to being linked to the list. |
| 256 | */ |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 257 | spin_lock_init(&tb->tb6_lock); |
Neil Horman | a33bc5c | 2009-07-30 18:52:15 -0700 | [diff] [blame] | 258 | h = tb->tb6_id & (FIB6_TABLE_HASHSZ - 1); |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 259 | |
| 260 | /* |
| 261 | * No protection necessary, this is the only list mutatation |
| 262 | * operation, tables never disappear once they exist. |
| 263 | */ |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 264 | hlist_add_head_rcu(&tb->tb6_hlist, &net->ipv6.fib_table_hash[h]); |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
Daniel Lezcano | e0b85590 | 2008-03-03 23:24:31 -0800 | [diff] [blame] | 268 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 269 | static struct fib6_table *fib6_alloc_table(struct net *net, u32 id) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 270 | { |
| 271 | struct fib6_table *table; |
| 272 | |
| 273 | table = kzalloc(sizeof(*table), GFP_ATOMIC); |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 274 | if (table) { |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 275 | table->tb6_id = id; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 276 | rcu_assign_pointer(table->tb6_root.leaf, |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 277 | net->ipv6.fib6_null_entry); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 278 | table->tb6_root.fn_flags = RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO; |
David S. Miller | 8e77327 | 2012-06-11 00:01:52 -0700 | [diff] [blame] | 279 | inet_peer_base_init(&table->tb6_peers); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | return table; |
| 283 | } |
| 284 | |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 285 | struct fib6_table *fib6_new_table(struct net *net, u32 id) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 286 | { |
| 287 | struct fib6_table *tb; |
| 288 | |
| 289 | if (id == 0) |
| 290 | id = RT6_TABLE_MAIN; |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 291 | tb = fib6_get_table(net, id); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 292 | if (tb) |
| 293 | return tb; |
| 294 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 295 | tb = fib6_alloc_table(net, id); |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 296 | if (tb) |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 297 | fib6_link_table(net, tb); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 298 | |
| 299 | return tb; |
| 300 | } |
David Ahern | b3b4663 | 2016-05-04 21:46:12 -0700 | [diff] [blame] | 301 | EXPORT_SYMBOL_GPL(fib6_new_table); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 302 | |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 303 | struct fib6_table *fib6_get_table(struct net *net, u32 id) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 304 | { |
| 305 | struct fib6_table *tb; |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 306 | struct hlist_head *head; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 307 | unsigned int h; |
| 308 | |
| 309 | if (id == 0) |
| 310 | id = RT6_TABLE_MAIN; |
Neil Horman | a33bc5c | 2009-07-30 18:52:15 -0700 | [diff] [blame] | 311 | h = id & (FIB6_TABLE_HASHSZ - 1); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 312 | rcu_read_lock(); |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 313 | head = &net->ipv6.fib_table_hash[h]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 314 | hlist_for_each_entry_rcu(tb, head, tb6_hlist) { |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 315 | if (tb->tb6_id == id) { |
| 316 | rcu_read_unlock(); |
| 317 | return tb; |
| 318 | } |
| 319 | } |
| 320 | rcu_read_unlock(); |
| 321 | |
| 322 | return NULL; |
| 323 | } |
David Ahern | c485068 | 2015-10-12 11:47:08 -0700 | [diff] [blame] | 324 | EXPORT_SYMBOL_GPL(fib6_get_table); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 325 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 326 | static void __net_init fib6_tables_init(struct net *net) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 327 | { |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 328 | fib6_link_table(net, net->ipv6.fib6_main_tbl); |
| 329 | fib6_link_table(net, net->ipv6.fib6_local_tbl); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 330 | } |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 331 | #else |
| 332 | |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 333 | struct fib6_table *fib6_new_table(struct net *net, u32 id) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 334 | { |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 335 | return fib6_get_table(net, id); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 336 | } |
| 337 | |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 338 | struct fib6_table *fib6_get_table(struct net *net, u32 id) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 339 | { |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 340 | return net->ipv6.fib6_main_tbl; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 341 | } |
| 342 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 343 | struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6, |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 344 | const struct sk_buff *skb, |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 345 | int flags, pol_lookup_t lookup) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 346 | { |
lucien | ab997ad | 2015-10-23 15:36:53 +0800 | [diff] [blame] | 347 | struct rt6_info *rt; |
| 348 | |
David Ahern | b75cc8f | 2018-03-02 08:32:17 -0800 | [diff] [blame] | 349 | rt = lookup(net, net->ipv6.fib6_main_tbl, fl6, skb, flags); |
Serhey Popovych | 07f6155 | 2017-06-20 13:29:25 +0300 | [diff] [blame] | 350 | if (rt->dst.error == -EAGAIN) { |
lucien | ab997ad | 2015-10-23 15:36:53 +0800 | [diff] [blame] | 351 | ip6_rt_put(rt); |
| 352 | rt = net->ipv6.ip6_null_entry; |
| 353 | dst_hold(&rt->dst); |
| 354 | } |
| 355 | |
| 356 | return &rt->dst; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 357 | } |
| 358 | |
David Ahern | 138118e | 2018-05-09 20:34:23 -0700 | [diff] [blame] | 359 | /* called with rcu lock held; no reference taken on fib6_info */ |
| 360 | struct fib6_info *fib6_lookup(struct net *net, int oif, struct flowi6 *fl6, |
| 361 | int flags) |
| 362 | { |
| 363 | return fib6_table_lookup(net, net->ipv6.fib6_main_tbl, oif, fl6, flags); |
| 364 | } |
| 365 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 366 | static void __net_init fib6_tables_init(struct net *net) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 367 | { |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 368 | fib6_link_table(net, net->ipv6.fib6_main_tbl); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | #endif |
| 372 | |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 373 | unsigned int fib6_tables_seq_read(struct net *net) |
| 374 | { |
| 375 | unsigned int h, fib_seq = 0; |
| 376 | |
| 377 | rcu_read_lock(); |
| 378 | for (h = 0; h < FIB6_TABLE_HASHSZ; h++) { |
| 379 | struct hlist_head *head = &net->ipv6.fib_table_hash[h]; |
| 380 | struct fib6_table *tb; |
| 381 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 382 | hlist_for_each_entry_rcu(tb, head, tb6_hlist) |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 383 | fib_seq += tb->fib_seq; |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 384 | } |
| 385 | rcu_read_unlock(); |
| 386 | |
| 387 | return fib_seq; |
| 388 | } |
| 389 | |
| 390 | static int call_fib6_entry_notifier(struct notifier_block *nb, struct net *net, |
| 391 | enum fib_event_type event_type, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 392 | struct fib6_info *rt) |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 393 | { |
| 394 | struct fib6_entry_notifier_info info = { |
| 395 | .rt = rt, |
| 396 | }; |
| 397 | |
| 398 | return call_fib6_notifier(nb, net, event_type, &info.info); |
| 399 | } |
| 400 | |
Ido Schimmel | df77fe4 | 2017-08-03 13:28:17 +0200 | [diff] [blame] | 401 | static int call_fib6_entry_notifiers(struct net *net, |
| 402 | enum fib_event_type event_type, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 403 | struct fib6_info *rt, |
David Ahern | 6c31e5a | 2017-10-27 17:37:13 -0700 | [diff] [blame] | 404 | struct netlink_ext_ack *extack) |
Ido Schimmel | df77fe4 | 2017-08-03 13:28:17 +0200 | [diff] [blame] | 405 | { |
| 406 | struct fib6_entry_notifier_info info = { |
David Ahern | 6c31e5a | 2017-10-27 17:37:13 -0700 | [diff] [blame] | 407 | .info.extack = extack, |
Ido Schimmel | df77fe4 | 2017-08-03 13:28:17 +0200 | [diff] [blame] | 408 | .rt = rt, |
| 409 | }; |
| 410 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 411 | rt->fib6_table->fib_seq++; |
Ido Schimmel | df77fe4 | 2017-08-03 13:28:17 +0200 | [diff] [blame] | 412 | return call_fib6_notifiers(net, event_type, &info.info); |
| 413 | } |
| 414 | |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 415 | struct fib6_dump_arg { |
| 416 | struct net *net; |
| 417 | struct notifier_block *nb; |
| 418 | }; |
| 419 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 420 | static void fib6_rt_dump(struct fib6_info *rt, struct fib6_dump_arg *arg) |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 421 | { |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 422 | if (rt == arg->net->ipv6.fib6_null_entry) |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 423 | return; |
| 424 | call_fib6_entry_notifier(arg->nb, arg->net, FIB_EVENT_ENTRY_ADD, rt); |
| 425 | } |
| 426 | |
| 427 | static int fib6_node_dump(struct fib6_walker *w) |
| 428 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 429 | struct fib6_info *rt; |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 430 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 431 | for_each_fib6_walker_rt(w) |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 432 | fib6_rt_dump(rt, w->args); |
| 433 | w->leaf = NULL; |
| 434 | return 0; |
| 435 | } |
| 436 | |
| 437 | static void fib6_table_dump(struct net *net, struct fib6_table *tb, |
| 438 | struct fib6_walker *w) |
| 439 | { |
| 440 | w->root = &tb->tb6_root; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 441 | spin_lock_bh(&tb->tb6_lock); |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 442 | fib6_walk(net, w); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 443 | spin_unlock_bh(&tb->tb6_lock); |
Ido Schimmel | e1ee0a5 | 2017-08-03 13:28:19 +0200 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | /* Called with rcu_read_lock() */ |
| 447 | int fib6_tables_dump(struct net *net, struct notifier_block *nb) |
| 448 | { |
| 449 | struct fib6_dump_arg arg; |
| 450 | struct fib6_walker *w; |
| 451 | unsigned int h; |
| 452 | |
| 453 | w = kzalloc(sizeof(*w), GFP_ATOMIC); |
| 454 | if (!w) |
| 455 | return -ENOMEM; |
| 456 | |
| 457 | w->func = fib6_node_dump; |
| 458 | arg.net = net; |
| 459 | arg.nb = nb; |
| 460 | w->args = &arg; |
| 461 | |
| 462 | for (h = 0; h < FIB6_TABLE_HASHSZ; h++) { |
| 463 | struct hlist_head *head = &net->ipv6.fib_table_hash[h]; |
| 464 | struct fib6_table *tb; |
| 465 | |
| 466 | hlist_for_each_entry_rcu(tb, head, tb6_hlist) |
| 467 | fib6_table_dump(net, tb, w); |
| 468 | } |
| 469 | |
| 470 | kfree(w); |
| 471 | |
| 472 | return 0; |
| 473 | } |
| 474 | |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 475 | static int fib6_dump_node(struct fib6_walker *w) |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 476 | { |
| 477 | int res; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 478 | struct fib6_info *rt; |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 479 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 480 | for_each_fib6_walker_rt(w) { |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 481 | res = rt6_dump_route(rt, w->args); |
| 482 | if (res < 0) { |
| 483 | /* Frame is full, suspend walking */ |
| 484 | w->leaf = rt; |
| 485 | return 1; |
| 486 | } |
David Ahern | beb1afac5 | 2017-02-02 12:37:09 -0800 | [diff] [blame] | 487 | |
| 488 | /* Multipath routes are dumped in one route with the |
| 489 | * RTA_MULTIPATH attribute. Jump 'rt' to point to the |
| 490 | * last sibling of this route (no need to dump the |
| 491 | * sibling routes again) |
| 492 | */ |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 493 | if (rt->fib6_nsiblings) |
| 494 | rt = list_last_entry(&rt->fib6_siblings, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 495 | struct fib6_info, |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 496 | fib6_siblings); |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 497 | } |
| 498 | w->leaf = NULL; |
| 499 | return 0; |
| 500 | } |
| 501 | |
| 502 | static void fib6_dump_end(struct netlink_callback *cb) |
| 503 | { |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 504 | struct net *net = sock_net(cb->skb->sk); |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 505 | struct fib6_walker *w = (void *)cb->args[2]; |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 506 | |
| 507 | if (w) { |
Herbert Xu | 7891cc8 | 2009-01-13 22:17:51 -0800 | [diff] [blame] | 508 | if (cb->args[4]) { |
| 509 | cb->args[4] = 0; |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 510 | fib6_walker_unlink(net, w); |
Herbert Xu | 7891cc8 | 2009-01-13 22:17:51 -0800 | [diff] [blame] | 511 | } |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 512 | cb->args[2] = 0; |
| 513 | kfree(w); |
| 514 | } |
Wang Yufen | 437de07 | 2014-03-28 12:07:04 +0800 | [diff] [blame] | 515 | cb->done = (void *)cb->args[3]; |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 516 | cb->args[1] = 3; |
| 517 | } |
| 518 | |
| 519 | static int fib6_dump_done(struct netlink_callback *cb) |
| 520 | { |
| 521 | fib6_dump_end(cb); |
| 522 | return cb->done ? cb->done(cb) : 0; |
| 523 | } |
| 524 | |
| 525 | static int fib6_dump_table(struct fib6_table *table, struct sk_buff *skb, |
| 526 | struct netlink_callback *cb) |
| 527 | { |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 528 | struct net *net = sock_net(skb->sk); |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 529 | struct fib6_walker *w; |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 530 | int res; |
| 531 | |
| 532 | w = (void *)cb->args[2]; |
| 533 | w->root = &table->tb6_root; |
| 534 | |
| 535 | if (cb->args[4] == 0) { |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 536 | w->count = 0; |
| 537 | w->skip = 0; |
| 538 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 539 | spin_lock_bh(&table->tb6_lock); |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 540 | res = fib6_walk(net, w); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 541 | spin_unlock_bh(&table->tb6_lock); |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 542 | if (res > 0) { |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 543 | cb->args[4] = 1; |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 544 | cb->args[5] = w->root->fn_sernum; |
| 545 | } |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 546 | } else { |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 547 | if (cb->args[5] != w->root->fn_sernum) { |
| 548 | /* Begin at the root if the tree changed */ |
| 549 | cb->args[5] = w->root->fn_sernum; |
| 550 | w->state = FWS_INIT; |
| 551 | w->node = w->root; |
| 552 | w->skip = w->count; |
| 553 | } else |
| 554 | w->skip = 0; |
| 555 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 556 | spin_lock_bh(&table->tb6_lock); |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 557 | res = fib6_walk_continue(w); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 558 | spin_unlock_bh(&table->tb6_lock); |
Herbert Xu | 7891cc8 | 2009-01-13 22:17:51 -0800 | [diff] [blame] | 559 | if (res <= 0) { |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 560 | fib6_walker_unlink(net, w); |
Herbert Xu | 7891cc8 | 2009-01-13 22:17:51 -0800 | [diff] [blame] | 561 | cb->args[4] = 0; |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 562 | } |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 563 | } |
Herbert Xu | 7891cc8 | 2009-01-13 22:17:51 -0800 | [diff] [blame] | 564 | |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 565 | return res; |
| 566 | } |
| 567 | |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 568 | static int inet6_dump_fib(struct sk_buff *skb, struct netlink_callback *cb) |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 569 | { |
David Ahern | e8ba330 | 2018-10-07 20:16:35 -0700 | [diff] [blame] | 570 | const struct nlmsghdr *nlh = cb->nlh; |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 571 | struct net *net = sock_net(skb->sk); |
David Ahern | 4724676 | 2018-10-15 18:56:42 -0700 | [diff] [blame] | 572 | struct rt6_rtnl_dump_arg arg = {}; |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 573 | unsigned int h, s_h; |
| 574 | unsigned int e = 0, s_e; |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 575 | struct fib6_walker *w; |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 576 | struct fib6_table *tb; |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 577 | struct hlist_head *head; |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 578 | int res = 0; |
| 579 | |
David Ahern | e8ba330 | 2018-10-07 20:16:35 -0700 | [diff] [blame] | 580 | if (cb->strict_check) { |
David Ahern | 4724676 | 2018-10-15 18:56:42 -0700 | [diff] [blame] | 581 | int err; |
David Ahern | e8ba330 | 2018-10-07 20:16:35 -0700 | [diff] [blame] | 582 | |
David Ahern | effe679 | 2018-10-15 18:56:48 -0700 | [diff] [blame] | 583 | err = ip_valid_fib_dump_req(net, nlh, &arg.filter, cb); |
David Ahern | e8ba330 | 2018-10-07 20:16:35 -0700 | [diff] [blame] | 584 | if (err < 0) |
| 585 | return err; |
David Ahern | 13e3890 | 2018-10-15 18:56:44 -0700 | [diff] [blame] | 586 | } else if (nlmsg_len(nlh) >= sizeof(struct rtmsg)) { |
| 587 | struct rtmsg *rtm = nlmsg_data(nlh); |
David Ahern | e8ba330 | 2018-10-07 20:16:35 -0700 | [diff] [blame] | 588 | |
David Ahern | 08e814c | 2018-10-15 18:56:50 -0700 | [diff] [blame] | 589 | arg.filter.flags = rtm->rtm_flags & (RTM_F_PREFIX|RTM_F_CLONED); |
David Ahern | 13e3890 | 2018-10-15 18:56:44 -0700 | [diff] [blame] | 590 | } |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 591 | |
David Ahern | 08e814c | 2018-10-15 18:56:50 -0700 | [diff] [blame] | 592 | /* fib entries are never clones */ |
| 593 | if (arg.filter.flags & RTM_F_CLONED) |
Alexey Kodanev | e22d0bf | 2018-11-02 19:11:05 +0300 | [diff] [blame] | 594 | goto out; |
David Ahern | 08e814c | 2018-10-15 18:56:50 -0700 | [diff] [blame] | 595 | |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 596 | w = (void *)cb->args[2]; |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 597 | if (!w) { |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 598 | /* New dump: |
| 599 | * |
| 600 | * 1. hook callback destructor. |
| 601 | */ |
| 602 | cb->args[3] = (long)cb->done; |
| 603 | cb->done = fib6_dump_done; |
| 604 | |
| 605 | /* |
| 606 | * 2. allocate and initialize walker. |
| 607 | */ |
| 608 | w = kzalloc(sizeof(*w), GFP_ATOMIC); |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 609 | if (!w) |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 610 | return -ENOMEM; |
| 611 | w->func = fib6_dump_node; |
| 612 | cb->args[2] = (long)w; |
| 613 | } |
| 614 | |
| 615 | arg.skb = skb; |
| 616 | arg.cb = cb; |
Brian Haley | 191cd58 | 2008-08-14 15:33:21 -0700 | [diff] [blame] | 617 | arg.net = net; |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 618 | w->args = &arg; |
| 619 | |
David Ahern | 13e3890 | 2018-10-15 18:56:44 -0700 | [diff] [blame] | 620 | if (arg.filter.table_id) { |
| 621 | tb = fib6_get_table(net, arg.filter.table_id); |
| 622 | if (!tb) { |
David Ahern | ae677bb | 2018-10-24 12:59:01 -0700 | [diff] [blame] | 623 | if (arg.filter.dump_all_families) |
Alexey Kodanev | e22d0bf | 2018-11-02 19:11:05 +0300 | [diff] [blame] | 624 | goto out; |
David Ahern | ae677bb | 2018-10-24 12:59:01 -0700 | [diff] [blame] | 625 | |
David Ahern | 13e3890 | 2018-10-15 18:56:44 -0700 | [diff] [blame] | 626 | NL_SET_ERR_MSG_MOD(cb->extack, "FIB table does not exist"); |
| 627 | return -ENOENT; |
| 628 | } |
| 629 | |
David Ahern | 7315587 | 2019-01-02 18:26:13 -0800 | [diff] [blame^] | 630 | if (!cb->args[0]) { |
| 631 | res = fib6_dump_table(tb, skb, cb); |
| 632 | if (!res) |
| 633 | cb->args[0] = 1; |
| 634 | } |
David Ahern | 13e3890 | 2018-10-15 18:56:44 -0700 | [diff] [blame] | 635 | goto out; |
| 636 | } |
| 637 | |
| 638 | s_h = cb->args[0]; |
| 639 | s_e = cb->args[1]; |
| 640 | |
Eric Dumazet | e67f88d | 2011-04-27 22:56:07 +0000 | [diff] [blame] | 641 | rcu_read_lock(); |
Neil Horman | a33bc5c | 2009-07-30 18:52:15 -0700 | [diff] [blame] | 642 | for (h = s_h; h < FIB6_TABLE_HASHSZ; h++, s_e = 0) { |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 643 | e = 0; |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 644 | head = &net->ipv6.fib_table_hash[h]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 645 | hlist_for_each_entry_rcu(tb, head, tb6_hlist) { |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 646 | if (e < s_e) |
| 647 | goto next; |
| 648 | res = fib6_dump_table(tb, skb, cb); |
| 649 | if (res != 0) |
David Ahern | 13e3890 | 2018-10-15 18:56:44 -0700 | [diff] [blame] | 650 | goto out_unlock; |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 651 | next: |
| 652 | e++; |
| 653 | } |
| 654 | } |
David Ahern | 13e3890 | 2018-10-15 18:56:44 -0700 | [diff] [blame] | 655 | out_unlock: |
Eric Dumazet | e67f88d | 2011-04-27 22:56:07 +0000 | [diff] [blame] | 656 | rcu_read_unlock(); |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 657 | cb->args[1] = e; |
| 658 | cb->args[0] = h; |
David Ahern | 13e3890 | 2018-10-15 18:56:44 -0700 | [diff] [blame] | 659 | out: |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 660 | res = res < 0 ? res : skb->len; |
| 661 | if (res <= 0) |
| 662 | fib6_dump_end(cb); |
| 663 | return res; |
| 664 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 666 | void fib6_metric_set(struct fib6_info *f6i, int metric, u32 val) |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 667 | { |
| 668 | if (!f6i) |
| 669 | return; |
| 670 | |
| 671 | if (f6i->fib6_metrics == &dst_default_metrics) { |
| 672 | struct dst_metrics *p = kzalloc(sizeof(*p), GFP_ATOMIC); |
| 673 | |
| 674 | if (!p) |
| 675 | return; |
| 676 | |
| 677 | refcount_set(&p->refcnt, 1); |
| 678 | f6i->fib6_metrics = p; |
| 679 | } |
| 680 | |
| 681 | f6i->fib6_metrics->metrics[metric - 1] = val; |
| 682 | } |
| 683 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | /* |
| 685 | * Routing Table |
| 686 | * |
| 687 | * return the appropriate node for a routing tree "add" operation |
| 688 | * by either creating and inserting or by returning an existing |
| 689 | * node. |
| 690 | */ |
| 691 | |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 692 | static struct fib6_node *fib6_add_1(struct net *net, |
| 693 | struct fib6_table *table, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 694 | struct fib6_node *root, |
| 695 | struct in6_addr *addr, int plen, |
| 696 | int offset, int allow_create, |
| 697 | int replace_required, |
| 698 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | { |
| 700 | struct fib6_node *fn, *in, *ln; |
| 701 | struct fib6_node *pn = NULL; |
| 702 | struct rt6key *key; |
| 703 | int bit; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 704 | __be32 dir = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | |
| 706 | RT6_TRACE("fib6_add_1\n"); |
| 707 | |
| 708 | /* insert node in tree */ |
| 709 | |
| 710 | fn = root; |
| 711 | |
| 712 | do { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 713 | struct fib6_info *leaf = rcu_dereference_protected(fn->leaf, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 714 | lockdep_is_held(&table->tb6_lock)); |
| 715 | key = (struct rt6key *)((u8 *)leaf + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
| 717 | /* |
| 718 | * Prefix match |
| 719 | */ |
| 720 | if (plen < fn->fn_bit || |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 721 | !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit)) { |
Matti Vaittinen | 14df015 | 2011-11-16 21:18:02 +0000 | [diff] [blame] | 722 | if (!allow_create) { |
| 723 | if (replace_required) { |
David Ahern | d5d531c | 2017-05-21 10:12:05 -0600 | [diff] [blame] | 724 | NL_SET_ERR_MSG(extack, |
| 725 | "Can not replace route - no match found"); |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 726 | pr_warn("Can't replace route, no match found\n"); |
Matti Vaittinen | 14df015 | 2011-11-16 21:18:02 +0000 | [diff] [blame] | 727 | return ERR_PTR(-ENOENT); |
| 728 | } |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 729 | pr_warn("NLM_F_CREATE should be set when creating new route\n"); |
Matti Vaittinen | 14df015 | 2011-11-16 21:18:02 +0000 | [diff] [blame] | 730 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | goto insert_above; |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 732 | } |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | /* |
| 735 | * Exact match ? |
| 736 | */ |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 737 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | if (plen == fn->fn_bit) { |
| 739 | /* clean up an intermediate node */ |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 740 | if (!(fn->fn_flags & RTN_RTINFO)) { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 741 | RCU_INIT_POINTER(fn->leaf, NULL); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 742 | fib6_info_release(leaf); |
Wei Wang | 4512c43 | 2018-01-08 10:34:00 -0800 | [diff] [blame] | 743 | /* remove null_entry in the root node */ |
| 744 | } else if (fn->fn_flags & RTN_TL_ROOT && |
| 745 | rcu_access_pointer(fn->leaf) == |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 746 | net->ipv6.fib6_null_entry) { |
Wei Wang | 4512c43 | 2018-01-08 10:34:00 -0800 | [diff] [blame] | 747 | RCU_INIT_POINTER(fn->leaf, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | } |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 749 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | return fn; |
| 751 | } |
| 752 | |
| 753 | /* |
| 754 | * We have more bits to go |
| 755 | */ |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 756 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | /* Try to walk down on tree. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | dir = addr_bit_set(addr, fn->fn_bit); |
| 759 | pn = fn; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 760 | fn = dir ? |
| 761 | rcu_dereference_protected(fn->right, |
| 762 | lockdep_is_held(&table->tb6_lock)) : |
| 763 | rcu_dereference_protected(fn->left, |
| 764 | lockdep_is_held(&table->tb6_lock)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | } while (fn); |
| 766 | |
Matti Vaittinen | 14df015 | 2011-11-16 21:18:02 +0000 | [diff] [blame] | 767 | if (!allow_create) { |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 768 | /* We should not create new node because |
| 769 | * NLM_F_REPLACE was specified without NLM_F_CREATE |
| 770 | * I assume it is safe to require NLM_F_CREATE when |
| 771 | * REPLACE flag is used! Later we may want to remove the |
| 772 | * check for replace_required, because according |
| 773 | * to netlink specification, NLM_F_CREATE |
| 774 | * MUST be specified if new route is created. |
| 775 | * That would keep IPv6 consistent with IPv4 |
| 776 | */ |
Matti Vaittinen | 14df015 | 2011-11-16 21:18:02 +0000 | [diff] [blame] | 777 | if (replace_required) { |
David Ahern | d5d531c | 2017-05-21 10:12:05 -0600 | [diff] [blame] | 778 | NL_SET_ERR_MSG(extack, |
| 779 | "Can not replace route - no match found"); |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 780 | pr_warn("Can't replace route, no match found\n"); |
Matti Vaittinen | 14df015 | 2011-11-16 21:18:02 +0000 | [diff] [blame] | 781 | return ERR_PTR(-ENOENT); |
| 782 | } |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 783 | pr_warn("NLM_F_CREATE should be set when creating new route\n"); |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 784 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | /* |
| 786 | * We walked to the bottom of tree. |
| 787 | * Create new leaf node without children. |
| 788 | */ |
| 789 | |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 790 | ln = node_alloc(net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 792 | if (!ln) |
Lin Ming | 188c517 | 2012-09-25 15:17:07 +0000 | [diff] [blame] | 793 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | ln->fn_bit = plen; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 795 | RCU_INIT_POINTER(ln->parent, pn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | |
| 797 | if (dir) |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 798 | rcu_assign_pointer(pn->right, ln); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | else |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 800 | rcu_assign_pointer(pn->left, ln); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
| 802 | return ln; |
| 803 | |
| 804 | |
| 805 | insert_above: |
| 806 | /* |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 807 | * split since we don't have a common prefix anymore or |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | * we have a less significant route. |
| 809 | * we've to insert an intermediate node on the list |
| 810 | * this new node will point to the one we need to create |
| 811 | * and the current |
| 812 | */ |
| 813 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 814 | pn = rcu_dereference_protected(fn->parent, |
| 815 | lockdep_is_held(&table->tb6_lock)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | |
| 817 | /* find 1st bit in difference between the 2 addrs. |
| 818 | |
YOSHIFUJI Hideaki | 971f359 | 2005-11-08 09:37:56 -0800 | [diff] [blame] | 819 | See comment in __ipv6_addr_diff: bit may be an invalid value, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | but if it is >= plen, the value is ignored in any case. |
| 821 | */ |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 822 | |
fan.du | 9225b23 | 2013-07-22 14:21:09 +0800 | [diff] [blame] | 823 | bit = __ipv6_addr_diff(addr, &key->addr, sizeof(*addr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 825 | /* |
| 826 | * (intermediate)[in] |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | * / \ |
| 828 | * (new leaf node)[ln] (old node)[fn] |
| 829 | */ |
| 830 | if (plen > bit) { |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 831 | in = node_alloc(net); |
| 832 | ln = node_alloc(net); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 833 | |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 834 | if (!in || !ln) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | if (in) |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 836 | node_free_immediate(net, in); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | if (ln) |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 838 | node_free_immediate(net, ln); |
Lin Ming | 188c517 | 2012-09-25 15:17:07 +0000 | [diff] [blame] | 839 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | } |
| 841 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 842 | /* |
| 843 | * new intermediate node. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | * RTN_RTINFO will |
| 845 | * be off since that an address that chooses one of |
| 846 | * the branches would not match less specific routes |
| 847 | * in the other branch |
| 848 | */ |
| 849 | |
| 850 | in->fn_bit = bit; |
| 851 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 852 | RCU_INIT_POINTER(in->parent, pn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | in->leaf = fn->leaf; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 854 | atomic_inc(&rcu_dereference_protected(in->leaf, |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 855 | lockdep_is_held(&table->tb6_lock))->fib6_ref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | /* update parent pointer */ |
| 858 | if (dir) |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 859 | rcu_assign_pointer(pn->right, in); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | else |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 861 | rcu_assign_pointer(pn->left, in); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
| 863 | ln->fn_bit = plen; |
| 864 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 865 | RCU_INIT_POINTER(ln->parent, in); |
| 866 | rcu_assign_pointer(fn->parent, in); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | if (addr_bit_set(addr, bit)) { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 869 | rcu_assign_pointer(in->right, ln); |
| 870 | rcu_assign_pointer(in->left, fn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | } else { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 872 | rcu_assign_pointer(in->left, ln); |
| 873 | rcu_assign_pointer(in->right, fn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | } |
| 875 | } else { /* plen <= bit */ |
| 876 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 877 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | * (new leaf node)[ln] |
| 879 | * / \ |
| 880 | * (old node)[fn] NULL |
| 881 | */ |
| 882 | |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 883 | ln = node_alloc(net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 885 | if (!ln) |
Lin Ming | 188c517 | 2012-09-25 15:17:07 +0000 | [diff] [blame] | 886 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
| 888 | ln->fn_bit = plen; |
| 889 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 890 | RCU_INIT_POINTER(ln->parent, pn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | |
| 892 | if (addr_bit_set(&key->addr, plen)) |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 893 | RCU_INIT_POINTER(ln->right, fn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | else |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 895 | RCU_INIT_POINTER(ln->left, fn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 897 | rcu_assign_pointer(fn->parent, ln); |
| 898 | |
| 899 | if (dir) |
| 900 | rcu_assign_pointer(pn->right, ln); |
| 901 | else |
| 902 | rcu_assign_pointer(pn->left, ln); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | } |
| 904 | return ln; |
| 905 | } |
| 906 | |
David Ahern | 5bcaa41 | 2018-04-20 15:38:01 -0700 | [diff] [blame] | 907 | static void fib6_drop_pcpu_from(struct fib6_info *f6i, |
| 908 | const struct fib6_table *table) |
Michal Kubeček | e5fd387 | 2014-03-27 13:04:08 +0100 | [diff] [blame] | 909 | { |
David Ahern | 5bcaa41 | 2018-04-20 15:38:01 -0700 | [diff] [blame] | 910 | int cpu; |
Michal Kubeček | e5fd387 | 2014-03-27 13:04:08 +0100 | [diff] [blame] | 911 | |
David Ahern | 5bcaa41 | 2018-04-20 15:38:01 -0700 | [diff] [blame] | 912 | /* release the reference to this fib entry from |
| 913 | * all of its cached pcpu routes |
| 914 | */ |
| 915 | for_each_possible_cpu(cpu) { |
| 916 | struct rt6_info **ppcpu_rt; |
| 917 | struct rt6_info *pcpu_rt; |
| 918 | |
| 919 | ppcpu_rt = per_cpu_ptr(f6i->rt6i_pcpu, cpu); |
| 920 | pcpu_rt = *ppcpu_rt; |
| 921 | if (pcpu_rt) { |
David Ahern | a68886a | 2018-04-20 15:38:02 -0700 | [diff] [blame] | 922 | struct fib6_info *from; |
| 923 | |
| 924 | from = rcu_dereference_protected(pcpu_rt->from, |
| 925 | lockdep_is_held(&table->tb6_lock)); |
| 926 | rcu_assign_pointer(pcpu_rt->from, NULL); |
| 927 | fib6_info_release(from); |
David Ahern | 5bcaa41 | 2018-04-20 15:38:01 -0700 | [diff] [blame] | 928 | } |
Michal Kubeček | e5fd387 | 2014-03-27 13:04:08 +0100 | [diff] [blame] | 929 | } |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 930 | } |
| 931 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 932 | static void fib6_purge_rt(struct fib6_info *rt, struct fib6_node *fn, |
Hannes Frederic Sowa | 6e9e16e6 | 2015-01-26 15:11:17 +0100 | [diff] [blame] | 933 | struct net *net) |
| 934 | { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 935 | struct fib6_table *table = rt->fib6_table; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 936 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 937 | if (atomic_read(&rt->fib6_ref) != 1) { |
Hannes Frederic Sowa | 6e9e16e6 | 2015-01-26 15:11:17 +0100 | [diff] [blame] | 938 | /* This route is used as dummy address holder in some split |
| 939 | * nodes. It is not leaked, but it still holds other resources, |
| 940 | * which must be released in time. So, scan ascendant nodes |
| 941 | * and replace dummy references to this route with references |
| 942 | * to still alive ones. |
| 943 | */ |
| 944 | while (fn) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 945 | struct fib6_info *leaf = rcu_dereference_protected(fn->leaf, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 946 | lockdep_is_held(&table->tb6_lock)); |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 947 | struct fib6_info *new_leaf; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 948 | if (!(fn->fn_flags & RTN_RTINFO) && leaf == rt) { |
| 949 | new_leaf = fib6_find_prefix(net, table, fn); |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 950 | atomic_inc(&new_leaf->fib6_ref); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 951 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 952 | rcu_assign_pointer(fn->leaf, new_leaf); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 953 | fib6_info_release(rt); |
Hannes Frederic Sowa | 6e9e16e6 | 2015-01-26 15:11:17 +0100 | [diff] [blame] | 954 | } |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 955 | fn = rcu_dereference_protected(fn->parent, |
| 956 | lockdep_is_held(&table->tb6_lock)); |
Hannes Frederic Sowa | 6e9e16e6 | 2015-01-26 15:11:17 +0100 | [diff] [blame] | 957 | } |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 958 | |
David Ahern | 5bcaa41 | 2018-04-20 15:38:01 -0700 | [diff] [blame] | 959 | if (rt->rt6i_pcpu) |
| 960 | fib6_drop_pcpu_from(rt, table); |
Hannes Frederic Sowa | 6e9e16e6 | 2015-01-26 15:11:17 +0100 | [diff] [blame] | 961 | } |
| 962 | } |
| 963 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | /* |
| 965 | * Insert routing information in a node. |
| 966 | */ |
| 967 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 968 | static int fib6_add_rt2node(struct fib6_node *fn, struct fib6_info *rt, |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 969 | struct nl_info *info, |
David Ahern | 6c31e5a | 2017-10-27 17:37:13 -0700 | [diff] [blame] | 970 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 972 | struct fib6_info *leaf = rcu_dereference_protected(fn->leaf, |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 973 | lockdep_is_held(&rt->fib6_table->tb6_lock)); |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 974 | struct fib6_info *iter = NULL; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 975 | struct fib6_info __rcu **ins; |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 976 | struct fib6_info __rcu **fallback_ins = NULL; |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 977 | int replace = (info->nlh && |
| 978 | (info->nlh->nlmsg_flags & NLM_F_REPLACE)); |
| 979 | int add = (!info->nlh || |
| 980 | (info->nlh->nlmsg_flags & NLM_F_CREATE)); |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 981 | int found = 0; |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 982 | bool rt_can_ecmp = rt6_qualify_for_ecmp(rt); |
Guillaume Nault | 73483c1 | 2016-09-07 17:21:40 +0200 | [diff] [blame] | 983 | u16 nlflags = NLM_F_EXCL; |
Michal Kubeček | e5fd387 | 2014-03-27 13:04:08 +0100 | [diff] [blame] | 984 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 986 | if (info->nlh && (info->nlh->nlmsg_flags & NLM_F_APPEND)) |
David Ahern | 1f5e29c | 2017-01-31 16:51:37 -0800 | [diff] [blame] | 987 | nlflags |= NLM_F_APPEND; |
| 988 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | ins = &fn->leaf; |
| 990 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 991 | for (iter = leaf; iter; |
David Ahern | 8fb11a9 | 2018-05-04 13:54:24 -0700 | [diff] [blame] | 992 | iter = rcu_dereference_protected(iter->fib6_next, |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 993 | lockdep_is_held(&rt->fib6_table->tb6_lock))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | /* |
| 995 | * Search for duplicates |
| 996 | */ |
| 997 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 998 | if (iter->fib6_metric == rt->fib6_metric) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | /* |
| 1000 | * Same priority level |
| 1001 | */ |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1002 | if (info->nlh && |
| 1003 | (info->nlh->nlmsg_flags & NLM_F_EXCL)) |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1004 | return -EEXIST; |
Guillaume Nault | 73483c1 | 2016-09-07 17:21:40 +0200 | [diff] [blame] | 1005 | |
| 1006 | nlflags &= ~NLM_F_EXCL; |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1007 | if (replace) { |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1008 | if (rt_can_ecmp == rt6_qualify_for_ecmp(iter)) { |
| 1009 | found++; |
| 1010 | break; |
| 1011 | } |
| 1012 | if (rt_can_ecmp) |
| 1013 | fallback_ins = fallback_ins ?: ins; |
| 1014 | goto next_iter; |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1015 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | |
David Ahern | f06b754 | 2017-07-05 14:41:46 -0600 | [diff] [blame] | 1017 | if (rt6_duplicate_nexthop(iter, rt)) { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1018 | if (rt->fib6_nsiblings) |
| 1019 | rt->fib6_nsiblings = 0; |
| 1020 | if (!(iter->fib6_flags & RTF_EXPIRES)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | return -EEXIST; |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1022 | if (!(rt->fib6_flags & RTF_EXPIRES)) |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 1023 | fib6_clean_expires(iter); |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 1024 | else |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 1025 | fib6_set_expires(iter, rt->expires); |
David Ahern | 15a81b4 | 2018-08-30 14:15:43 -0700 | [diff] [blame] | 1026 | |
| 1027 | if (rt->fib6_pmtu) |
| 1028 | fib6_metric_set(iter, RTAX_MTU, |
| 1029 | rt->fib6_pmtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | return -EEXIST; |
| 1031 | } |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1032 | /* If we have the same destination and the same metric, |
| 1033 | * but not the same gateway, then the route we try to |
| 1034 | * add is sibling to this route, increment our counter |
| 1035 | * of siblings, and later we will add our route to the |
| 1036 | * list. |
| 1037 | * Only static routes (which don't have flag |
| 1038 | * RTF_EXPIRES) are used for ECMPv6. |
| 1039 | * |
| 1040 | * To avoid long list, we only had siblings if the |
| 1041 | * route have a gateway. |
| 1042 | */ |
| 1043 | if (rt_can_ecmp && |
| 1044 | rt6_qualify_for_ecmp(iter)) |
| 1045 | rt->fib6_nsiblings++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | } |
| 1047 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1048 | if (iter->fib6_metric > rt->fib6_metric) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | break; |
| 1050 | |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1051 | next_iter: |
David Ahern | 8fb11a9 | 2018-05-04 13:54:24 -0700 | [diff] [blame] | 1052 | ins = &iter->fib6_next; |
Michal Kubeček | 2759647 | 2015-05-18 20:54:00 +0200 | [diff] [blame] | 1053 | } |
| 1054 | |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1055 | if (fallback_ins && !found) { |
| 1056 | /* No ECMP-able route found, replace first non-ECMP one */ |
| 1057 | ins = fallback_ins; |
| 1058 | iter = rcu_dereference_protected(*ins, |
| 1059 | lockdep_is_held(&rt->fib6_table->tb6_lock)); |
| 1060 | found++; |
| 1061 | } |
| 1062 | |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 1063 | /* Reset round-robin state, if necessary */ |
| 1064 | if (ins == &fn->leaf) |
| 1065 | fn->rr_ptr = NULL; |
| 1066 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 1067 | /* Link this route to others same route. */ |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1068 | if (rt->fib6_nsiblings) { |
| 1069 | unsigned int fib6_nsiblings; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1070 | struct fib6_info *sibling, *temp_sibling; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 1071 | |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1072 | /* Find the first route that have the same metric */ |
| 1073 | sibling = leaf; |
| 1074 | while (sibling) { |
| 1075 | if (sibling->fib6_metric == rt->fib6_metric && |
| 1076 | rt6_qualify_for_ecmp(sibling)) { |
| 1077 | list_add_tail(&rt->fib6_siblings, |
| 1078 | &sibling->fib6_siblings); |
| 1079 | break; |
| 1080 | } |
| 1081 | sibling = rcu_dereference_protected(sibling->fib6_next, |
| 1082 | lockdep_is_held(&rt->fib6_table->tb6_lock)); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 1083 | } |
| 1084 | /* For each sibling in the list, increment the counter of |
| 1085 | * siblings. BUG() if counters does not match, list of siblings |
| 1086 | * is broken! |
| 1087 | */ |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1088 | fib6_nsiblings = 0; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 1089 | list_for_each_entry_safe(sibling, temp_sibling, |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1090 | &rt->fib6_siblings, fib6_siblings) { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1091 | sibling->fib6_nsiblings++; |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1092 | BUG_ON(sibling->fib6_nsiblings != rt->fib6_nsiblings); |
| 1093 | fib6_nsiblings++; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 1094 | } |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1095 | BUG_ON(fib6_nsiblings != rt->fib6_nsiblings); |
| 1096 | rt6_multipath_rebalance(temp_sibling); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 1097 | } |
| 1098 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | /* |
| 1100 | * insert node |
| 1101 | */ |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1102 | if (!replace) { |
| 1103 | if (!add) |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 1104 | pr_warn("NLM_F_CREATE should be set when creating new route\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1106 | add: |
Guillaume Nault | 73483c1 | 2016-09-07 17:21:40 +0200 | [diff] [blame] | 1107 | nlflags |= NLM_F_CREATE; |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 1108 | |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1109 | err = call_fib6_entry_notifiers(info->nl_net, |
| 1110 | FIB_EVENT_ENTRY_ADD, |
| 1111 | rt, extack); |
Michal Kubeček | e5fd387 | 2014-03-27 13:04:08 +0100 | [diff] [blame] | 1112 | if (err) |
| 1113 | return err; |
| 1114 | |
David Ahern | 8fb11a9 | 2018-05-04 13:54:24 -0700 | [diff] [blame] | 1115 | rcu_assign_pointer(rt->fib6_next, iter); |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1116 | atomic_inc(&rt->fib6_ref); |
| 1117 | rcu_assign_pointer(rt->fib6_node, fn); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1118 | rcu_assign_pointer(*ins, rt); |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 1119 | if (!info->skip_notify) |
| 1120 | inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags); |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1121 | info->nl_net->ipv6.rt6_stats->fib_rt_entries++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1123 | if (!(fn->fn_flags & RTN_RTINFO)) { |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1124 | info->nl_net->ipv6.rt6_stats->fib_route_nodes++; |
| 1125 | fn->fn_flags |= RTN_RTINFO; |
| 1126 | } |
| 1127 | |
| 1128 | } else { |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1129 | int nsiblings; |
Michal Kubeček | 2759647 | 2015-05-18 20:54:00 +0200 | [diff] [blame] | 1130 | |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1131 | if (!found) { |
| 1132 | if (add) |
| 1133 | goto add; |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 1134 | pr_warn("NLM_F_REPLACE set, but no existing node found!\n"); |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1135 | return -ENOENT; |
| 1136 | } |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 1137 | |
David Ahern | 2233000 | 2018-03-27 18:21:59 -0700 | [diff] [blame] | 1138 | err = call_fib6_entry_notifiers(info->nl_net, |
| 1139 | FIB_EVENT_ENTRY_REPLACE, |
| 1140 | rt, extack); |
| 1141 | if (err) |
| 1142 | return err; |
| 1143 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1144 | atomic_inc(&rt->fib6_ref); |
| 1145 | rcu_assign_pointer(rt->fib6_node, fn); |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1146 | rt->fib6_next = iter->fib6_next; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1147 | rcu_assign_pointer(*ins, rt); |
David Ahern | 3b1137f | 2017-02-02 12:37:10 -0800 | [diff] [blame] | 1148 | if (!info->skip_notify) |
| 1149 | inet6_rt_notify(RTM_NEWROUTE, rt, info, NLM_F_REPLACE); |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1150 | if (!(fn->fn_flags & RTN_RTINFO)) { |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1151 | info->nl_net->ipv6.rt6_stats->fib_route_nodes++; |
| 1152 | fn->fn_flags |= RTN_RTINFO; |
| 1153 | } |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1154 | nsiblings = iter->fib6_nsiblings; |
| 1155 | iter->fib6_node = NULL; |
| 1156 | fib6_purge_rt(iter, fn, info->nl_net); |
| 1157 | if (rcu_access_pointer(fn->rr_ptr) == iter) |
David Ahern | f34436a | 2018-05-21 10:26:53 -0700 | [diff] [blame] | 1158 | fn->rr_ptr = NULL; |
David Ahern | 33bd5ac | 2018-07-03 14:36:21 -0700 | [diff] [blame] | 1159 | fib6_info_release(iter); |
| 1160 | |
| 1161 | if (nsiblings) { |
| 1162 | /* Replacing an ECMP route, remove all siblings */ |
| 1163 | ins = &rt->fib6_next; |
| 1164 | iter = rcu_dereference_protected(*ins, |
| 1165 | lockdep_is_held(&rt->fib6_table->tb6_lock)); |
| 1166 | while (iter) { |
| 1167 | if (iter->fib6_metric > rt->fib6_metric) |
| 1168 | break; |
| 1169 | if (rt6_qualify_for_ecmp(iter)) { |
| 1170 | *ins = iter->fib6_next; |
| 1171 | iter->fib6_node = NULL; |
| 1172 | fib6_purge_rt(iter, fn, info->nl_net); |
| 1173 | if (rcu_access_pointer(fn->rr_ptr) == iter) |
| 1174 | fn->rr_ptr = NULL; |
| 1175 | fib6_info_release(iter); |
| 1176 | nsiblings--; |
| 1177 | info->nl_net->ipv6.rt6_stats->fib_rt_entries--; |
| 1178 | } else { |
| 1179 | ins = &iter->fib6_next; |
| 1180 | } |
| 1181 | iter = rcu_dereference_protected(*ins, |
| 1182 | lockdep_is_held(&rt->fib6_table->tb6_lock)); |
| 1183 | } |
| 1184 | WARN_ON(nsiblings != 0); |
| 1185 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | } |
| 1187 | |
| 1188 | return 0; |
| 1189 | } |
| 1190 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1191 | static void fib6_start_gc(struct net *net, struct fib6_info *rt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | { |
Stephen Hemminger | 417f28b | 2008-07-22 14:33:45 -0700 | [diff] [blame] | 1193 | if (!timer_pending(&net->ipv6.ip6_fib_timer) && |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1194 | (rt->fib6_flags & RTF_EXPIRES)) |
Stephen Hemminger | 417f28b | 2008-07-22 14:33:45 -0700 | [diff] [blame] | 1195 | mod_timer(&net->ipv6.ip6_fib_timer, |
Stephen Hemminger | 847499c | 2008-07-21 13:21:35 -0700 | [diff] [blame] | 1196 | jiffies + net->ipv6.sysctl.ip6_rt_gc_interval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | } |
| 1198 | |
Daniel Lezcano | 63152fc | 2008-03-03 23:31:11 -0800 | [diff] [blame] | 1199 | void fib6_force_start_gc(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | { |
Stephen Hemminger | 417f28b | 2008-07-22 14:33:45 -0700 | [diff] [blame] | 1201 | if (!timer_pending(&net->ipv6.ip6_fib_timer)) |
| 1202 | mod_timer(&net->ipv6.ip6_fib_timer, |
Stephen Hemminger | 847499c | 2008-07-21 13:21:35 -0700 | [diff] [blame] | 1203 | jiffies + net->ipv6.sysctl.ip6_rt_gc_interval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | } |
| 1205 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1206 | static void __fib6_update_sernum_upto_root(struct fib6_info *rt, |
Ido Schimmel | 4a8e56e | 2018-01-07 12:45:13 +0200 | [diff] [blame] | 1207 | int sernum) |
Wei Wang | bbd63f0 | 2017-10-06 12:06:07 -0700 | [diff] [blame] | 1208 | { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1209 | struct fib6_node *fn = rcu_dereference_protected(rt->fib6_node, |
| 1210 | lockdep_is_held(&rt->fib6_table->tb6_lock)); |
Wei Wang | bbd63f0 | 2017-10-06 12:06:07 -0700 | [diff] [blame] | 1211 | |
| 1212 | /* paired with smp_rmb() in rt6_get_cookie_safe() */ |
| 1213 | smp_wmb(); |
| 1214 | while (fn) { |
| 1215 | fn->fn_sernum = sernum; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1216 | fn = rcu_dereference_protected(fn->parent, |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1217 | lockdep_is_held(&rt->fib6_table->tb6_lock)); |
Wei Wang | bbd63f0 | 2017-10-06 12:06:07 -0700 | [diff] [blame] | 1218 | } |
| 1219 | } |
| 1220 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1221 | void fib6_update_sernum_upto_root(struct net *net, struct fib6_info *rt) |
Ido Schimmel | 4a8e56e | 2018-01-07 12:45:13 +0200 | [diff] [blame] | 1222 | { |
| 1223 | __fib6_update_sernum_upto_root(rt, fib6_new_sernum(net)); |
| 1224 | } |
| 1225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | /* |
| 1227 | * Add routing information to the routing tree. |
| 1228 | * <destination addr>/<source addr> |
| 1229 | * with source addr info in sub-trees |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1230 | * Need to own table->tb6_lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | */ |
| 1232 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1233 | int fib6_add(struct fib6_node *root, struct fib6_info *rt, |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1234 | struct nl_info *info, struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1236 | struct fib6_table *table = rt->fib6_table; |
YOSHIFUJI Hideaki | 66729e1 | 2006-08-23 17:20:34 -0700 | [diff] [blame] | 1237 | struct fib6_node *fn, *pn = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | int err = -ENOMEM; |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1239 | int allow_create = 1; |
| 1240 | int replace_required = 0; |
Hannes Frederic Sowa | 812918c | 2014-10-06 19:58:37 +0200 | [diff] [blame] | 1241 | int sernum = fib6_new_sernum(info->nl_net); |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1242 | |
| 1243 | if (info->nlh) { |
| 1244 | if (!(info->nlh->nlmsg_flags & NLM_F_CREATE)) |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1245 | allow_create = 0; |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1246 | if (info->nlh->nlmsg_flags & NLM_F_REPLACE) |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1247 | replace_required = 1; |
| 1248 | } |
| 1249 | if (!allow_create && !replace_required) |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 1250 | pr_warn("RTM_NEWROUTE with no NLM_F_CREATE or NLM_F_REPLACE\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 1252 | fn = fib6_add_1(info->nl_net, table, root, |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1253 | &rt->fib6_dst.addr, rt->fib6_dst.plen, |
| 1254 | offsetof(struct fib6_info, fib6_dst), allow_create, |
Wei Wang | bbd63f0 | 2017-10-06 12:06:07 -0700 | [diff] [blame] | 1255 | replace_required, extack); |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1256 | if (IS_ERR(fn)) { |
| 1257 | err = PTR_ERR(fn); |
Daniel Borkmann | ae7b4e1 | 2013-09-07 15:13:20 +0200 | [diff] [blame] | 1258 | fn = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | goto out; |
Lin Ming | 188c517 | 2012-09-25 15:17:07 +0000 | [diff] [blame] | 1260 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | |
YOSHIFUJI Hideaki | 66729e1 | 2006-08-23 17:20:34 -0700 | [diff] [blame] | 1262 | pn = fn; |
| 1263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | #ifdef CONFIG_IPV6_SUBTREES |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1265 | if (rt->fib6_src.plen) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | struct fib6_node *sn; |
| 1267 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1268 | if (!rcu_access_pointer(fn->subtree)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | struct fib6_node *sfn; |
| 1270 | |
| 1271 | /* |
| 1272 | * Create subtree. |
| 1273 | * |
| 1274 | * fn[main tree] |
| 1275 | * | |
| 1276 | * sfn[subtree root] |
| 1277 | * \ |
| 1278 | * sn[new leaf node] |
| 1279 | */ |
| 1280 | |
| 1281 | /* Create subtree root node */ |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 1282 | sfn = node_alloc(info->nl_net); |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1283 | if (!sfn) |
Wei Wang | 348a400 | 2017-08-18 17:14:49 -0700 | [diff] [blame] | 1284 | goto failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1286 | atomic_inc(&info->nl_net->ipv6.fib6_null_entry->fib6_ref); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1287 | rcu_assign_pointer(sfn->leaf, |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 1288 | info->nl_net->ipv6.fib6_null_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | sfn->fn_flags = RTN_ROOT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | |
| 1291 | /* Now add the first leaf node to new subtree */ |
| 1292 | |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 1293 | sn = fib6_add_1(info->nl_net, table, sfn, |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1294 | &rt->fib6_src.addr, rt->fib6_src.plen, |
| 1295 | offsetof(struct fib6_info, fib6_src), |
Wei Wang | bbd63f0 | 2017-10-06 12:06:07 -0700 | [diff] [blame] | 1296 | allow_create, replace_required, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | |
Wei Yongjun | f950c0e | 2012-09-20 18:29:56 +0000 | [diff] [blame] | 1298 | if (IS_ERR(sn)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | /* If it is failed, discard just allocated |
Wei Wang | 348a400 | 2017-08-18 17:14:49 -0700 | [diff] [blame] | 1300 | root, and then (in failure) stale node |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | in main tree. |
| 1302 | */ |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 1303 | node_free_immediate(info->nl_net, sfn); |
Lin Ming | 188c517 | 2012-09-25 15:17:07 +0000 | [diff] [blame] | 1304 | err = PTR_ERR(sn); |
Wei Wang | 348a400 | 2017-08-18 17:14:49 -0700 | [diff] [blame] | 1305 | goto failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | } |
| 1307 | |
| 1308 | /* Now link new subtree to main tree */ |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1309 | rcu_assign_pointer(sfn->parent, fn); |
| 1310 | rcu_assign_pointer(fn->subtree, sfn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | } else { |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 1312 | sn = fib6_add_1(info->nl_net, table, FIB6_SUBTREE(fn), |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1313 | &rt->fib6_src.addr, rt->fib6_src.plen, |
| 1314 | offsetof(struct fib6_info, fib6_src), |
Wei Wang | bbd63f0 | 2017-10-06 12:06:07 -0700 | [diff] [blame] | 1315 | allow_create, replace_required, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | |
Matti Vaittinen | 4a287eb | 2011-11-14 00:15:14 +0000 | [diff] [blame] | 1317 | if (IS_ERR(sn)) { |
| 1318 | err = PTR_ERR(sn); |
Wei Wang | 348a400 | 2017-08-18 17:14:49 -0700 | [diff] [blame] | 1319 | goto failure; |
Lin Ming | 188c517 | 2012-09-25 15:17:07 +0000 | [diff] [blame] | 1320 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | } |
| 1322 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1323 | if (!rcu_access_pointer(fn->leaf)) { |
Wei Wang | 591ff9e | 2018-01-18 10:40:03 -0800 | [diff] [blame] | 1324 | if (fn->fn_flags & RTN_TL_ROOT) { |
| 1325 | /* put back null_entry for root node */ |
| 1326 | rcu_assign_pointer(fn->leaf, |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 1327 | info->nl_net->ipv6.fib6_null_entry); |
Wei Wang | 591ff9e | 2018-01-18 10:40:03 -0800 | [diff] [blame] | 1328 | } else { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1329 | atomic_inc(&rt->fib6_ref); |
Wei Wang | 591ff9e | 2018-01-18 10:40:03 -0800 | [diff] [blame] | 1330 | rcu_assign_pointer(fn->leaf, rt); |
| 1331 | } |
YOSHIFUJI Hideaki | 66729e1 | 2006-08-23 17:20:34 -0700 | [diff] [blame] | 1332 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | fn = sn; |
| 1334 | } |
| 1335 | #endif |
| 1336 | |
David Ahern | d4ead6b | 2018-04-17 17:33:16 -0700 | [diff] [blame] | 1337 | err = fib6_add_rt2node(fn, rt, info, extack); |
Wei Wang | bbd63f0 | 2017-10-06 12:06:07 -0700 | [diff] [blame] | 1338 | if (!err) { |
Ido Schimmel | 4a8e56e | 2018-01-07 12:45:13 +0200 | [diff] [blame] | 1339 | __fib6_update_sernum_upto_root(rt, sernum); |
Daniel Lezcano | 63152fc | 2008-03-03 23:31:11 -0800 | [diff] [blame] | 1340 | fib6_start_gc(info->nl_net, rt); |
Wei Wang | bbd63f0 | 2017-10-06 12:06:07 -0700 | [diff] [blame] | 1341 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | |
| 1343 | out: |
YOSHIFUJI Hideaki | 66729e1 | 2006-08-23 17:20:34 -0700 | [diff] [blame] | 1344 | if (err) { |
| 1345 | #ifdef CONFIG_IPV6_SUBTREES |
| 1346 | /* |
| 1347 | * If fib6_add_1 has cleared the old leaf pointer in the |
| 1348 | * super-tree leaf node we have to find a new one for it. |
| 1349 | */ |
Wei Wang | 7bbfe00 | 2018-01-03 14:11:59 -0800 | [diff] [blame] | 1350 | if (pn != fn) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1351 | struct fib6_info *pn_leaf = |
Wei Wang | 7bbfe00 | 2018-01-03 14:11:59 -0800 | [diff] [blame] | 1352 | rcu_dereference_protected(pn->leaf, |
| 1353 | lockdep_is_held(&table->tb6_lock)); |
| 1354 | if (pn_leaf == rt) { |
| 1355 | pn_leaf = NULL; |
| 1356 | RCU_INIT_POINTER(pn->leaf, NULL); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1357 | fib6_info_release(rt); |
YOSHIFUJI Hideaki | 66729e1 | 2006-08-23 17:20:34 -0700 | [diff] [blame] | 1358 | } |
Wei Wang | 7bbfe00 | 2018-01-03 14:11:59 -0800 | [diff] [blame] | 1359 | if (!pn_leaf && !(pn->fn_flags & RTN_RTINFO)) { |
| 1360 | pn_leaf = fib6_find_prefix(info->nl_net, table, |
| 1361 | pn); |
| 1362 | #if RT6_DEBUG >= 2 |
| 1363 | if (!pn_leaf) { |
| 1364 | WARN_ON(!pn_leaf); |
| 1365 | pn_leaf = |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 1366 | info->nl_net->ipv6.fib6_null_entry; |
Wei Wang | 7bbfe00 | 2018-01-03 14:11:59 -0800 | [diff] [blame] | 1367 | } |
YOSHIFUJI Hideaki | 66729e1 | 2006-08-23 17:20:34 -0700 | [diff] [blame] | 1368 | #endif |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1369 | fib6_info_hold(pn_leaf); |
Wei Wang | 7bbfe00 | 2018-01-03 14:11:59 -0800 | [diff] [blame] | 1370 | rcu_assign_pointer(pn->leaf, pn_leaf); |
| 1371 | } |
YOSHIFUJI Hideaki | 66729e1 | 2006-08-23 17:20:34 -0700 | [diff] [blame] | 1372 | } |
| 1373 | #endif |
Wei Wang | 348a400 | 2017-08-18 17:14:49 -0700 | [diff] [blame] | 1374 | goto failure; |
YOSHIFUJI Hideaki | 66729e1 | 2006-08-23 17:20:34 -0700 | [diff] [blame] | 1375 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | return err; |
| 1377 | |
Wei Wang | 348a400 | 2017-08-18 17:14:49 -0700 | [diff] [blame] | 1378 | failure: |
Wei Wang | 4512c43 | 2018-01-08 10:34:00 -0800 | [diff] [blame] | 1379 | /* fn->leaf could be NULL and fib6_repair_tree() needs to be called if: |
| 1380 | * 1. fn is an intermediate node and we failed to add the new |
| 1381 | * route to it in both subtree creation failure and fib6_add_rt2node() |
| 1382 | * failure case. |
| 1383 | * 2. fn is the root node in the table and we fail to add the first |
| 1384 | * default route to it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | */ |
Wei Wang | 4512c43 | 2018-01-08 10:34:00 -0800 | [diff] [blame] | 1386 | if (fn && |
| 1387 | (!(fn->fn_flags & (RTN_RTINFO|RTN_ROOT)) || |
| 1388 | (fn->fn_flags & RTN_TL_ROOT && |
| 1389 | !rcu_access_pointer(fn->leaf)))) |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1390 | fib6_repair_tree(info->nl_net, table, fn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | } |
| 1393 | |
| 1394 | /* |
| 1395 | * Routing tree lookup |
| 1396 | * |
| 1397 | */ |
| 1398 | |
| 1399 | struct lookup_args { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1400 | int offset; /* key offset on fib6_info */ |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 1401 | const struct in6_addr *addr; /* search key */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | }; |
| 1403 | |
David Ahern | 6454743 | 2018-05-09 20:34:19 -0700 | [diff] [blame] | 1404 | static struct fib6_node *fib6_node_lookup_1(struct fib6_node *root, |
| 1405 | struct lookup_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | { |
| 1407 | struct fib6_node *fn; |
Al Viro | e69a4ad | 2006-11-14 20:56:00 -0800 | [diff] [blame] | 1408 | __be32 dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | |
YOSHIFUJI Hideaki | 825e288 | 2006-08-23 17:21:29 -0700 | [diff] [blame] | 1410 | if (unlikely(args->offset == 0)) |
| 1411 | return NULL; |
| 1412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | /* |
| 1414 | * Descend on a tree |
| 1415 | */ |
| 1416 | |
| 1417 | fn = root; |
| 1418 | |
| 1419 | for (;;) { |
| 1420 | struct fib6_node *next; |
| 1421 | |
| 1422 | dir = addr_bit_set(args->addr, fn->fn_bit); |
| 1423 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1424 | next = dir ? rcu_dereference(fn->right) : |
| 1425 | rcu_dereference(fn->left); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | |
| 1427 | if (next) { |
| 1428 | fn = next; |
| 1429 | continue; |
| 1430 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | break; |
| 1432 | } |
| 1433 | |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1434 | while (fn) { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1435 | struct fib6_node *subtree = FIB6_SUBTREE(fn); |
| 1436 | |
| 1437 | if (subtree || fn->fn_flags & RTN_RTINFO) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1438 | struct fib6_info *leaf = rcu_dereference(fn->leaf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | struct rt6key *key; |
| 1440 | |
Wei Wang | 8d1040e | 2017-10-06 12:06:08 -0700 | [diff] [blame] | 1441 | if (!leaf) |
| 1442 | goto backtrack; |
| 1443 | |
| 1444 | key = (struct rt6key *) ((u8 *)leaf + args->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | |
YOSHIFUJI Hideaki | 3fc5e04 | 2006-08-23 17:21:12 -0700 | [diff] [blame] | 1446 | if (ipv6_prefix_equal(&key->addr, args->addr, key->plen)) { |
| 1447 | #ifdef CONFIG_IPV6_SUBTREES |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1448 | if (subtree) { |
Hannes Frederic Sowa | 3e3be27 | 2013-08-07 02:34:31 +0200 | [diff] [blame] | 1449 | struct fib6_node *sfn; |
David Ahern | 6454743 | 2018-05-09 20:34:19 -0700 | [diff] [blame] | 1450 | sfn = fib6_node_lookup_1(subtree, |
| 1451 | args + 1); |
Hannes Frederic Sowa | 3e3be27 | 2013-08-07 02:34:31 +0200 | [diff] [blame] | 1452 | if (!sfn) |
| 1453 | goto backtrack; |
| 1454 | fn = sfn; |
| 1455 | } |
YOSHIFUJI Hideaki | 3fc5e04 | 2006-08-23 17:21:12 -0700 | [diff] [blame] | 1456 | #endif |
Hannes Frederic Sowa | 3e3be27 | 2013-08-07 02:34:31 +0200 | [diff] [blame] | 1457 | if (fn->fn_flags & RTN_RTINFO) |
YOSHIFUJI Hideaki | 3fc5e04 | 2006-08-23 17:21:12 -0700 | [diff] [blame] | 1458 | return fn; |
| 1459 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | } |
Hannes Frederic Sowa | 3e3be27 | 2013-08-07 02:34:31 +0200 | [diff] [blame] | 1461 | backtrack: |
YOSHIFUJI Hideaki | 3fc5e04 | 2006-08-23 17:21:12 -0700 | [diff] [blame] | 1462 | if (fn->fn_flags & RTN_ROOT) |
| 1463 | break; |
| 1464 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1465 | fn = rcu_dereference(fn->parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | return NULL; |
| 1469 | } |
| 1470 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1471 | /* called with rcu_read_lock() held |
| 1472 | */ |
David Ahern | 6454743 | 2018-05-09 20:34:19 -0700 | [diff] [blame] | 1473 | struct fib6_node *fib6_node_lookup(struct fib6_node *root, |
| 1474 | const struct in6_addr *daddr, |
| 1475 | const struct in6_addr *saddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | struct fib6_node *fn; |
YOSHIFUJI Hideaki | 825e288 | 2006-08-23 17:21:29 -0700 | [diff] [blame] | 1478 | struct lookup_args args[] = { |
| 1479 | { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1480 | .offset = offsetof(struct fib6_info, fib6_dst), |
YOSHIFUJI Hideaki | 825e288 | 2006-08-23 17:21:29 -0700 | [diff] [blame] | 1481 | .addr = daddr, |
| 1482 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | #ifdef CONFIG_IPV6_SUBTREES |
YOSHIFUJI Hideaki | 825e288 | 2006-08-23 17:21:29 -0700 | [diff] [blame] | 1484 | { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1485 | .offset = offsetof(struct fib6_info, fib6_src), |
YOSHIFUJI Hideaki | 825e288 | 2006-08-23 17:21:29 -0700 | [diff] [blame] | 1486 | .addr = saddr, |
| 1487 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | #endif |
YOSHIFUJI Hideaki | 825e288 | 2006-08-23 17:21:29 -0700 | [diff] [blame] | 1489 | { |
| 1490 | .offset = 0, /* sentinel */ |
| 1491 | } |
| 1492 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | |
David Ahern | 6454743 | 2018-05-09 20:34:19 -0700 | [diff] [blame] | 1494 | fn = fib6_node_lookup_1(root, daddr ? args : args + 1); |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1495 | if (!fn || fn->fn_flags & RTN_TL_ROOT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | fn = root; |
| 1497 | |
| 1498 | return fn; |
| 1499 | } |
| 1500 | |
| 1501 | /* |
| 1502 | * Get node with specified destination prefix (and source prefix, |
| 1503 | * if subtrees are used) |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 1504 | * exact_match == true means we try to find fn with exact match of |
| 1505 | * the passed in prefix addr |
| 1506 | * exact_match == false means we try to find fn with longest prefix |
| 1507 | * match of the passed in prefix addr. This is useful for finding fn |
| 1508 | * for cached route as it will be stored in the exception table under |
| 1509 | * the node with longest prefix length. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | */ |
| 1511 | |
| 1512 | |
Wang Yufen | 437de07 | 2014-03-28 12:07:04 +0800 | [diff] [blame] | 1513 | static struct fib6_node *fib6_locate_1(struct fib6_node *root, |
| 1514 | const struct in6_addr *addr, |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 1515 | int plen, int offset, |
| 1516 | bool exact_match) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | { |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 1518 | struct fib6_node *fn, *prev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | |
| 1520 | for (fn = root; fn ; ) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1521 | struct fib6_info *leaf = rcu_dereference(fn->leaf); |
Wei Wang | 8d1040e | 2017-10-06 12:06:08 -0700 | [diff] [blame] | 1522 | struct rt6key *key; |
| 1523 | |
| 1524 | /* This node is being deleted */ |
| 1525 | if (!leaf) { |
| 1526 | if (plen <= fn->fn_bit) |
| 1527 | goto out; |
| 1528 | else |
| 1529 | goto next; |
| 1530 | } |
| 1531 | |
| 1532 | key = (struct rt6key *)((u8 *)leaf + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | |
| 1534 | /* |
| 1535 | * Prefix match |
| 1536 | */ |
| 1537 | if (plen < fn->fn_bit || |
| 1538 | !ipv6_prefix_equal(&key->addr, addr, fn->fn_bit)) |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 1539 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | |
| 1541 | if (plen == fn->fn_bit) |
| 1542 | return fn; |
| 1543 | |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 1544 | prev = fn; |
| 1545 | |
Wei Wang | 8d1040e | 2017-10-06 12:06:08 -0700 | [diff] [blame] | 1546 | next: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | /* |
| 1548 | * We have more bits to go |
| 1549 | */ |
| 1550 | if (addr_bit_set(addr, fn->fn_bit)) |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1551 | fn = rcu_dereference(fn->right); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | else |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1553 | fn = rcu_dereference(fn->left); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | } |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 1555 | out: |
| 1556 | if (exact_match) |
| 1557 | return NULL; |
| 1558 | else |
| 1559 | return prev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | } |
| 1561 | |
Wang Yufen | 437de07 | 2014-03-28 12:07:04 +0800 | [diff] [blame] | 1562 | struct fib6_node *fib6_locate(struct fib6_node *root, |
| 1563 | const struct in6_addr *daddr, int dst_len, |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 1564 | const struct in6_addr *saddr, int src_len, |
| 1565 | bool exact_match) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | { |
| 1567 | struct fib6_node *fn; |
| 1568 | |
| 1569 | fn = fib6_locate_1(root, daddr, dst_len, |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1570 | offsetof(struct fib6_info, fib6_dst), |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 1571 | exact_match); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | |
| 1573 | #ifdef CONFIG_IPV6_SUBTREES |
| 1574 | if (src_len) { |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1575 | WARN_ON(saddr == NULL); |
Wei Wang | 0e80193 | 2017-10-13 15:01:08 -0700 | [diff] [blame] | 1576 | if (fn) { |
| 1577 | struct fib6_node *subtree = FIB6_SUBTREE(fn); |
| 1578 | |
| 1579 | if (subtree) { |
| 1580 | fn = fib6_locate_1(subtree, saddr, src_len, |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1581 | offsetof(struct fib6_info, fib6_src), |
Wei Wang | 38fbeee | 2017-10-06 12:06:02 -0700 | [diff] [blame] | 1582 | exact_match); |
Wei Wang | 0e80193 | 2017-10-13 15:01:08 -0700 | [diff] [blame] | 1583 | } |
| 1584 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | } |
| 1586 | #endif |
| 1587 | |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1588 | if (fn && fn->fn_flags & RTN_RTINFO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | return fn; |
| 1590 | |
| 1591 | return NULL; |
| 1592 | } |
| 1593 | |
| 1594 | |
| 1595 | /* |
| 1596 | * Deletion |
| 1597 | * |
| 1598 | */ |
| 1599 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1600 | static struct fib6_info *fib6_find_prefix(struct net *net, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1601 | struct fib6_table *table, |
| 1602 | struct fib6_node *fn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1604 | struct fib6_node *child_left, *child_right; |
| 1605 | |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1606 | if (fn->fn_flags & RTN_ROOT) |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 1607 | return net->ipv6.fib6_null_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1609 | while (fn) { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1610 | child_left = rcu_dereference_protected(fn->left, |
| 1611 | lockdep_is_held(&table->tb6_lock)); |
| 1612 | child_right = rcu_dereference_protected(fn->right, |
| 1613 | lockdep_is_held(&table->tb6_lock)); |
| 1614 | if (child_left) |
| 1615 | return rcu_dereference_protected(child_left->leaf, |
| 1616 | lockdep_is_held(&table->tb6_lock)); |
| 1617 | if (child_right) |
| 1618 | return rcu_dereference_protected(child_right->leaf, |
| 1619 | lockdep_is_held(&table->tb6_lock)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | |
YOSHIFUJI Hideaki | 7fc3316 | 2006-08-23 17:22:24 -0700 | [diff] [blame] | 1621 | fn = FIB6_SUBTREE(fn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | } |
| 1623 | return NULL; |
| 1624 | } |
| 1625 | |
| 1626 | /* |
| 1627 | * Called to trim the tree of intermediate nodes when possible. "fn" |
| 1628 | * is the node we want to try and remove. |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1629 | * Need to own table->tb6_lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | */ |
| 1631 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 1632 | static struct fib6_node *fib6_repair_tree(struct net *net, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1633 | struct fib6_table *table, |
| 1634 | struct fib6_node *fn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | { |
| 1636 | int children; |
| 1637 | int nstate; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1638 | struct fib6_node *child; |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 1639 | struct fib6_walker *w; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | int iter = 0; |
| 1641 | |
Wei Wang | 4512c43 | 2018-01-08 10:34:00 -0800 | [diff] [blame] | 1642 | /* Set fn->leaf to null_entry for root node. */ |
| 1643 | if (fn->fn_flags & RTN_TL_ROOT) { |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 1644 | rcu_assign_pointer(fn->leaf, net->ipv6.fib6_null_entry); |
Wei Wang | 4512c43 | 2018-01-08 10:34:00 -0800 | [diff] [blame] | 1645 | return fn; |
| 1646 | } |
| 1647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | for (;;) { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1649 | struct fib6_node *fn_r = rcu_dereference_protected(fn->right, |
| 1650 | lockdep_is_held(&table->tb6_lock)); |
| 1651 | struct fib6_node *fn_l = rcu_dereference_protected(fn->left, |
| 1652 | lockdep_is_held(&table->tb6_lock)); |
| 1653 | struct fib6_node *pn = rcu_dereference_protected(fn->parent, |
| 1654 | lockdep_is_held(&table->tb6_lock)); |
| 1655 | struct fib6_node *pn_r = rcu_dereference_protected(pn->right, |
| 1656 | lockdep_is_held(&table->tb6_lock)); |
| 1657 | struct fib6_node *pn_l = rcu_dereference_protected(pn->left, |
| 1658 | lockdep_is_held(&table->tb6_lock)); |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1659 | struct fib6_info *fn_leaf = rcu_dereference_protected(fn->leaf, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1660 | lockdep_is_held(&table->tb6_lock)); |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1661 | struct fib6_info *pn_leaf = rcu_dereference_protected(pn->leaf, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1662 | lockdep_is_held(&table->tb6_lock)); |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1663 | struct fib6_info *new_fn_leaf; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | RT6_TRACE("fixing tree: plen=%d iter=%d\n", fn->fn_bit, iter); |
| 1666 | iter++; |
| 1667 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1668 | WARN_ON(fn->fn_flags & RTN_RTINFO); |
| 1669 | WARN_ON(fn->fn_flags & RTN_TL_ROOT); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1670 | WARN_ON(fn_leaf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | |
| 1672 | children = 0; |
| 1673 | child = NULL; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1674 | if (fn_r) |
| 1675 | child = fn_r, children |= 1; |
| 1676 | if (fn_l) |
| 1677 | child = fn_l, children |= 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | |
YOSHIFUJI Hideaki | 7fc3316 | 2006-08-23 17:22:24 -0700 | [diff] [blame] | 1679 | if (children == 3 || FIB6_SUBTREE(fn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | #ifdef CONFIG_IPV6_SUBTREES |
| 1681 | /* Subtree root (i.e. fn) may have one child */ |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1682 | || (children && fn->fn_flags & RTN_ROOT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | #endif |
| 1684 | ) { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1685 | new_fn_leaf = fib6_find_prefix(net, table, fn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | #if RT6_DEBUG >= 2 |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1687 | if (!new_fn_leaf) { |
| 1688 | WARN_ON(!new_fn_leaf); |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 1689 | new_fn_leaf = net->ipv6.fib6_null_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | } |
| 1691 | #endif |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1692 | fib6_info_hold(new_fn_leaf); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1693 | rcu_assign_pointer(fn->leaf, new_fn_leaf); |
| 1694 | return pn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | } |
| 1696 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | #ifdef CONFIG_IPV6_SUBTREES |
YOSHIFUJI Hideaki | 7fc3316 | 2006-08-23 17:22:24 -0700 | [diff] [blame] | 1698 | if (FIB6_SUBTREE(pn) == fn) { |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1699 | WARN_ON(!(fn->fn_flags & RTN_ROOT)); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1700 | RCU_INIT_POINTER(pn->subtree, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | nstate = FWS_L; |
| 1702 | } else { |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1703 | WARN_ON(fn->fn_flags & RTN_ROOT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | #endif |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1705 | if (pn_r == fn) |
| 1706 | rcu_assign_pointer(pn->right, child); |
| 1707 | else if (pn_l == fn) |
| 1708 | rcu_assign_pointer(pn->left, child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | #if RT6_DEBUG >= 2 |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1710 | else |
| 1711 | WARN_ON(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | #endif |
| 1713 | if (child) |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1714 | rcu_assign_pointer(child->parent, pn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | nstate = FWS_R; |
| 1716 | #ifdef CONFIG_IPV6_SUBTREES |
| 1717 | } |
| 1718 | #endif |
| 1719 | |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 1720 | read_lock(&net->ipv6.fib6_walker_lock); |
| 1721 | FOR_WALKERS(net, w) { |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1722 | if (!child) { |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 1723 | if (w->node == fn) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | RT6_TRACE("W %p adjusted by delnode 1, s=%d/%d\n", w, w->state, nstate); |
| 1725 | w->node = pn; |
| 1726 | w->state = nstate; |
| 1727 | } |
| 1728 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | if (w->node == fn) { |
| 1730 | w->node = child; |
| 1731 | if (children&2) { |
| 1732 | RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state); |
Wang Yufen | 8db46f1 | 2014-03-28 12:07:02 +0800 | [diff] [blame] | 1733 | w->state = w->state >= FWS_R ? FWS_U : FWS_INIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | } else { |
| 1735 | RT6_TRACE("W %p adjusted by delnode 2, s=%d\n", w, w->state); |
Wang Yufen | 8db46f1 | 2014-03-28 12:07:02 +0800 | [diff] [blame] | 1736 | w->state = w->state >= FWS_C ? FWS_U : FWS_INIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | } |
| 1738 | } |
| 1739 | } |
| 1740 | } |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 1741 | read_unlock(&net->ipv6.fib6_walker_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | |
Wei Wang | 81eb844 | 2017-10-06 12:06:11 -0700 | [diff] [blame] | 1743 | node_free(net, fn); |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1744 | if (pn->fn_flags & RTN_RTINFO || FIB6_SUBTREE(pn)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | return pn; |
| 1746 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1747 | RCU_INIT_POINTER(pn->leaf, NULL); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1748 | fib6_info_release(pn_leaf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | fn = pn; |
| 1750 | } |
| 1751 | } |
| 1752 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1753 | static void fib6_del_route(struct fib6_table *table, struct fib6_node *fn, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1754 | struct fib6_info __rcu **rtp, struct nl_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | { |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 1756 | struct fib6_walker *w; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1757 | struct fib6_info *rt = rcu_dereference_protected(*rtp, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1758 | lockdep_is_held(&table->tb6_lock)); |
Benjamin Thery | c572872 | 2008-03-03 23:34:17 -0800 | [diff] [blame] | 1759 | struct net *net = info->nl_net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | |
| 1761 | RT6_TRACE("fib6_del_route\n"); |
| 1762 | |
| 1763 | /* Unlink it */ |
David Ahern | 8fb11a9 | 2018-05-04 13:54:24 -0700 | [diff] [blame] | 1764 | *rtp = rt->fib6_next; |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1765 | rt->fib6_node = NULL; |
Benjamin Thery | c572872 | 2008-03-03 23:34:17 -0800 | [diff] [blame] | 1766 | net->ipv6.rt6_stats->fib_rt_entries--; |
| 1767 | net->ipv6.rt6_stats->fib_discarded_routes++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 1769 | /* Flush all cached dst in exception table */ |
| 1770 | rt6_flush_exceptions(rt); |
| 1771 | |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 1772 | /* Reset round-robin state, if necessary */ |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1773 | if (rcu_access_pointer(fn->rr_ptr) == rt) |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 1774 | fn->rr_ptr = NULL; |
| 1775 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 1776 | /* Remove this entry from other siblings */ |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1777 | if (rt->fib6_nsiblings) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1778 | struct fib6_info *sibling, *next_sibling; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 1779 | |
| 1780 | list_for_each_entry_safe(sibling, next_sibling, |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1781 | &rt->fib6_siblings, fib6_siblings) |
| 1782 | sibling->fib6_nsiblings--; |
| 1783 | rt->fib6_nsiblings = 0; |
| 1784 | list_del_init(&rt->fib6_siblings); |
Ido Schimmel | d7dedee | 2018-01-09 16:40:25 +0200 | [diff] [blame] | 1785 | rt6_multipath_rebalance(next_sibling); |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 1786 | } |
| 1787 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | /* Adjust walkers */ |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 1789 | read_lock(&net->ipv6.fib6_walker_lock); |
| 1790 | FOR_WALKERS(net, w) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | if (w->state == FWS_C && w->leaf == rt) { |
| 1792 | RT6_TRACE("walker %p adjusted by delroute\n", w); |
David Ahern | 8fb11a9 | 2018-05-04 13:54:24 -0700 | [diff] [blame] | 1793 | w->leaf = rcu_dereference_protected(rt->fib6_next, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1794 | lockdep_is_held(&table->tb6_lock)); |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1795 | if (!w->leaf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1796 | w->state = FWS_U; |
| 1797 | } |
| 1798 | } |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 1799 | read_unlock(&net->ipv6.fib6_walker_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | |
Wei Wang | 4512c43 | 2018-01-08 10:34:00 -0800 | [diff] [blame] | 1801 | /* If it was last route, call fib6_repair_tree() to: |
| 1802 | * 1. For root node, put back null_entry as how the table was created. |
| 1803 | * 2. For other nodes, expunge its radix tree node. |
| 1804 | */ |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1805 | if (!rcu_access_pointer(fn->leaf)) { |
Wei Wang | 4512c43 | 2018-01-08 10:34:00 -0800 | [diff] [blame] | 1806 | if (!(fn->fn_flags & RTN_TL_ROOT)) { |
| 1807 | fn->fn_flags &= ~RTN_RTINFO; |
| 1808 | net->ipv6.rt6_stats->fib_route_nodes--; |
| 1809 | } |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1810 | fn = fib6_repair_tree(net, table, fn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | } |
| 1812 | |
Hannes Frederic Sowa | 6e9e16e6 | 2015-01-26 15:11:17 +0100 | [diff] [blame] | 1813 | fib6_purge_rt(rt, fn, net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | |
David Ahern | 6c31e5a | 2017-10-27 17:37:13 -0700 | [diff] [blame] | 1815 | call_fib6_entry_notifiers(net, FIB_EVENT_ENTRY_DEL, rt, NULL); |
David Ahern | 16a16cd | 2017-02-02 12:37:11 -0800 | [diff] [blame] | 1816 | if (!info->skip_notify) |
| 1817 | inet6_rt_notify(RTM_DELROUTE, rt, info, 0); |
David Ahern | 93531c6 | 2018-04-17 17:33:25 -0700 | [diff] [blame] | 1818 | fib6_info_release(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | } |
| 1820 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1821 | /* Need to own table->tb6_lock */ |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1822 | int fib6_del(struct fib6_info *rt, struct nl_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 1824 | struct fib6_node *fn = rcu_dereference_protected(rt->fib6_node, |
| 1825 | lockdep_is_held(&rt->fib6_table->tb6_lock)); |
| 1826 | struct fib6_table *table = rt->fib6_table; |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 1827 | struct net *net = info->nl_net; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1828 | struct fib6_info __rcu **rtp; |
| 1829 | struct fib6_info __rcu **rtp_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 1831 | if (!fn || rt == net->ipv6.fib6_null_entry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | return -ENOENT; |
| 1833 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1834 | WARN_ON(!(fn->fn_flags & RTN_RTINFO)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | /* |
| 1837 | * Walk the leaf entries looking for ourself |
| 1838 | */ |
| 1839 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1840 | for (rtp = &fn->leaf; *rtp; rtp = rtp_next) { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1841 | struct fib6_info *cur = rcu_dereference_protected(*rtp, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1842 | lockdep_is_held(&table->tb6_lock)); |
| 1843 | if (rt == cur) { |
| 1844 | fib6_del_route(table, fn, rtp, info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | return 0; |
| 1846 | } |
David Ahern | 8fb11a9 | 2018-05-04 13:54:24 -0700 | [diff] [blame] | 1847 | rtp_next = &cur->fib6_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | } |
| 1849 | return -ENOENT; |
| 1850 | } |
| 1851 | |
| 1852 | /* |
| 1853 | * Tree traversal function. |
| 1854 | * |
| 1855 | * Certainly, it is not interrupt safe. |
| 1856 | * However, it is internally reenterable wrt itself and fib6_add/fib6_del. |
| 1857 | * It means, that we can modify tree during walking |
| 1858 | * and use this function for garbage collection, clone pruning, |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1859 | * cleaning tree when a device goes down etc. etc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | * |
| 1861 | * It guarantees that every node will be traversed, |
| 1862 | * and that it will be traversed only once. |
| 1863 | * |
| 1864 | * Callback function w->func may return: |
| 1865 | * 0 -> continue walking. |
| 1866 | * positive value -> walking is suspended (used by tree dumps, |
| 1867 | * and probably by gc, if it will be split to several slices) |
| 1868 | * negative value -> terminate walking. |
| 1869 | * |
| 1870 | * The function itself returns: |
| 1871 | * 0 -> walk is complete. |
| 1872 | * >0 -> walk is incomplete (i.e. suspended) |
| 1873 | * <0 -> walk is terminated by an error. |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1874 | * |
| 1875 | * This function is called with tb6_lock held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | */ |
| 1877 | |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 1878 | static int fib6_walk_continue(struct fib6_walker *w) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1880 | struct fib6_node *fn, *pn, *left, *right; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | |
Wei Wang | 2b760fc | 2017-10-06 12:06:03 -0700 | [diff] [blame] | 1882 | /* w->root should always be table->tb6_root */ |
| 1883 | WARN_ON_ONCE(!(w->root->fn_flags & RTN_TL_ROOT)); |
| 1884 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | for (;;) { |
| 1886 | fn = w->node; |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1887 | if (!fn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | return 0; |
| 1889 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | switch (w->state) { |
| 1891 | #ifdef CONFIG_IPV6_SUBTREES |
| 1892 | case FWS_S: |
YOSHIFUJI Hideaki | 7fc3316 | 2006-08-23 17:22:24 -0700 | [diff] [blame] | 1893 | if (FIB6_SUBTREE(fn)) { |
| 1894 | w->node = FIB6_SUBTREE(fn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | continue; |
| 1896 | } |
| 1897 | w->state = FWS_L; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1898 | #endif |
Gustavo A. R. Silva | 275757e6 | 2017-10-16 16:36:52 -0500 | [diff] [blame] | 1899 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | case FWS_L: |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1901 | left = rcu_dereference_protected(fn->left, 1); |
| 1902 | if (left) { |
| 1903 | w->node = left; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | w->state = FWS_INIT; |
| 1905 | continue; |
| 1906 | } |
| 1907 | w->state = FWS_R; |
Gustavo A. R. Silva | 275757e6 | 2017-10-16 16:36:52 -0500 | [diff] [blame] | 1908 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | case FWS_R: |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1910 | right = rcu_dereference_protected(fn->right, 1); |
| 1911 | if (right) { |
| 1912 | w->node = right; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1913 | w->state = FWS_INIT; |
| 1914 | continue; |
| 1915 | } |
| 1916 | w->state = FWS_C; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1917 | w->leaf = rcu_dereference_protected(fn->leaf, 1); |
Gustavo A. R. Silva | 275757e6 | 2017-10-16 16:36:52 -0500 | [diff] [blame] | 1918 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | case FWS_C: |
David S. Miller | 507c9b1 | 2011-12-03 17:50:45 -0500 | [diff] [blame] | 1920 | if (w->leaf && fn->fn_flags & RTN_RTINFO) { |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 1921 | int err; |
| 1922 | |
Eric Dumazet | fa809e2 | 2012-06-25 15:37:19 -0700 | [diff] [blame] | 1923 | if (w->skip) { |
| 1924 | w->skip--; |
Kumar Sundararajan | 1c26585 | 2014-04-24 09:48:53 -0400 | [diff] [blame] | 1925 | goto skip; |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 1926 | } |
| 1927 | |
| 1928 | err = w->func(w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1929 | if (err) |
| 1930 | return err; |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 1931 | |
| 1932 | w->count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | continue; |
| 1934 | } |
Kumar Sundararajan | 1c26585 | 2014-04-24 09:48:53 -0400 | [diff] [blame] | 1935 | skip: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 | w->state = FWS_U; |
Gustavo A. R. Silva | 275757e6 | 2017-10-16 16:36:52 -0500 | [diff] [blame] | 1937 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1938 | case FWS_U: |
| 1939 | if (fn == w->root) |
| 1940 | return 0; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1941 | pn = rcu_dereference_protected(fn->parent, 1); |
| 1942 | left = rcu_dereference_protected(pn->left, 1); |
| 1943 | right = rcu_dereference_protected(pn->right, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | w->node = pn; |
| 1945 | #ifdef CONFIG_IPV6_SUBTREES |
YOSHIFUJI Hideaki | 7fc3316 | 2006-08-23 17:22:24 -0700 | [diff] [blame] | 1946 | if (FIB6_SUBTREE(pn) == fn) { |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1947 | WARN_ON(!(fn->fn_flags & RTN_ROOT)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | w->state = FWS_L; |
| 1949 | continue; |
| 1950 | } |
| 1951 | #endif |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1952 | if (left == fn) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | w->state = FWS_R; |
| 1954 | continue; |
| 1955 | } |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1956 | if (right == fn) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | w->state = FWS_C; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 1958 | w->leaf = rcu_dereference_protected(w->node->leaf, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | continue; |
| 1960 | } |
| 1961 | #if RT6_DEBUG >= 2 |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1962 | WARN_ON(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | #endif |
| 1964 | } |
| 1965 | } |
| 1966 | } |
| 1967 | |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 1968 | static int fib6_walk(struct net *net, struct fib6_walker *w) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1969 | { |
| 1970 | int res; |
| 1971 | |
| 1972 | w->state = FWS_INIT; |
| 1973 | w->node = w->root; |
| 1974 | |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 1975 | fib6_walker_link(net, w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | res = fib6_walk_continue(w); |
| 1977 | if (res <= 0) |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 1978 | fib6_walker_unlink(net, w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | return res; |
| 1980 | } |
| 1981 | |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 1982 | static int fib6_clean_node(struct fib6_walker *w) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | { |
| 1984 | int res; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 1985 | struct fib6_info *rt; |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 1986 | struct fib6_cleaner *c = container_of(w, struct fib6_cleaner, w); |
Benjamin Thery | ec7d43c | 2008-03-03 23:31:57 -0800 | [diff] [blame] | 1987 | struct nl_info info = { |
| 1988 | .nl_net = c->net, |
David Ahern | 7c6bb7d | 2018-10-11 20:17:21 -0700 | [diff] [blame] | 1989 | .skip_notify = c->skip_notify, |
Benjamin Thery | ec7d43c | 2008-03-03 23:31:57 -0800 | [diff] [blame] | 1990 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | |
Hannes Frederic Sowa | 327571c | 2014-10-06 19:58:38 +0200 | [diff] [blame] | 1992 | if (c->sernum != FIB6_NO_SERNUM_CHANGE && |
| 1993 | w->node->fn_sernum != c->sernum) |
| 1994 | w->node->fn_sernum = c->sernum; |
| 1995 | |
| 1996 | if (!c->func) { |
| 1997 | WARN_ON_ONCE(c->sernum == FIB6_NO_SERNUM_CHANGE); |
| 1998 | w->leaf = NULL; |
| 1999 | return 0; |
| 2000 | } |
| 2001 | |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2002 | for_each_fib6_walker_rt(w) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | res = c->func(rt, c->arg); |
Ido Schimmel | b5cb5a7 | 2018-01-07 12:45:12 +0200 | [diff] [blame] | 2004 | if (res == -1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | w->leaf = rt; |
Denis V. Lunev | 528c4ce | 2007-12-13 09:45:12 -0800 | [diff] [blame] | 2006 | res = fib6_del(rt, &info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | if (res) { |
| 2008 | #if RT6_DEBUG >= 2 |
Joe Perches | 91df42b | 2012-05-15 14:11:54 +0000 | [diff] [blame] | 2009 | pr_debug("%s: del failed: rt=%p@%p err=%d\n", |
Wei Wang | 4e587ea | 2017-08-25 15:03:10 -0700 | [diff] [blame] | 2010 | __func__, rt, |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2011 | rcu_access_pointer(rt->fib6_node), |
Wei Wang | 4e587ea | 2017-08-25 15:03:10 -0700 | [diff] [blame] | 2012 | res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | #endif |
| 2014 | continue; |
| 2015 | } |
| 2016 | return 0; |
Ido Schimmel | b5cb5a7 | 2018-01-07 12:45:12 +0200 | [diff] [blame] | 2017 | } else if (res == -2) { |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2018 | if (WARN_ON(!rt->fib6_nsiblings)) |
Ido Schimmel | b5cb5a7 | 2018-01-07 12:45:12 +0200 | [diff] [blame] | 2019 | continue; |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2020 | rt = list_last_entry(&rt->fib6_siblings, |
| 2021 | struct fib6_info, fib6_siblings); |
Ido Schimmel | b5cb5a7 | 2018-01-07 12:45:12 +0200 | [diff] [blame] | 2022 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2023 | } |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 2024 | WARN_ON(res != 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2025 | } |
| 2026 | w->leaf = rt; |
| 2027 | return 0; |
| 2028 | } |
| 2029 | |
| 2030 | /* |
| 2031 | * Convenient frontend to tree walker. |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 2032 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | * func is called on each route. |
Ido Schimmel | b5cb5a7 | 2018-01-07 12:45:12 +0200 | [diff] [blame] | 2034 | * It may return -2 -> skip multipath route. |
| 2035 | * -1 -> delete this route. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | * 0 -> continue walking |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | */ |
| 2038 | |
Benjamin Thery | ec7d43c | 2008-03-03 23:31:57 -0800 | [diff] [blame] | 2039 | static void fib6_clean_tree(struct net *net, struct fib6_node *root, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2040 | int (*func)(struct fib6_info *, void *arg), |
David Ahern | 7c6bb7d | 2018-10-11 20:17:21 -0700 | [diff] [blame] | 2041 | int sernum, void *arg, bool skip_notify) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2042 | { |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 2043 | struct fib6_cleaner c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | |
| 2045 | c.w.root = root; |
| 2046 | c.w.func = fib6_clean_node; |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 2047 | c.w.count = 0; |
| 2048 | c.w.skip = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | c.func = func; |
Hannes Frederic Sowa | 327571c | 2014-10-06 19:58:38 +0200 | [diff] [blame] | 2050 | c.sernum = sernum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | c.arg = arg; |
Benjamin Thery | ec7d43c | 2008-03-03 23:31:57 -0800 | [diff] [blame] | 2052 | c.net = net; |
David Ahern | 7c6bb7d | 2018-10-11 20:17:21 -0700 | [diff] [blame] | 2053 | c.skip_notify = skip_notify; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 2055 | fib6_walk(net, &c.w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | } |
| 2057 | |
Hannes Frederic Sowa | 327571c | 2014-10-06 19:58:38 +0200 | [diff] [blame] | 2058 | static void __fib6_clean_all(struct net *net, |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2059 | int (*func)(struct fib6_info *, void *), |
David Ahern | 7c6bb7d | 2018-10-11 20:17:21 -0700 | [diff] [blame] | 2060 | int sernum, void *arg, bool skip_notify) |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2061 | { |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2062 | struct fib6_table *table; |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2063 | struct hlist_head *head; |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 2064 | unsigned int h; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2065 | |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 2066 | rcu_read_lock(); |
Neil Horman | a33bc5c | 2009-07-30 18:52:15 -0700 | [diff] [blame] | 2067 | for (h = 0; h < FIB6_TABLE_HASHSZ; h++) { |
Daniel Lezcano | f3db485 | 2008-03-03 23:27:06 -0800 | [diff] [blame] | 2068 | head = &net->ipv6.fib_table_hash[h]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2069 | hlist_for_each_entry_rcu(table, head, tb6_hlist) { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2070 | spin_lock_bh(&table->tb6_lock); |
Benjamin Thery | ec7d43c | 2008-03-03 23:31:57 -0800 | [diff] [blame] | 2071 | fib6_clean_tree(net, &table->tb6_root, |
David Ahern | 7c6bb7d | 2018-10-11 20:17:21 -0700 | [diff] [blame] | 2072 | func, sernum, arg, skip_notify); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2073 | spin_unlock_bh(&table->tb6_lock); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2074 | } |
| 2075 | } |
Patrick McHardy | 1b43af5 | 2006-08-10 23:11:17 -0700 | [diff] [blame] | 2076 | rcu_read_unlock(); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 2077 | } |
| 2078 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2079 | void fib6_clean_all(struct net *net, int (*func)(struct fib6_info *, void *), |
Hannes Frederic Sowa | 327571c | 2014-10-06 19:58:38 +0200 | [diff] [blame] | 2080 | void *arg) |
| 2081 | { |
David Ahern | 7c6bb7d | 2018-10-11 20:17:21 -0700 | [diff] [blame] | 2082 | __fib6_clean_all(net, func, FIB6_NO_SERNUM_CHANGE, arg, false); |
| 2083 | } |
| 2084 | |
| 2085 | void fib6_clean_all_skip_notify(struct net *net, |
| 2086 | int (*func)(struct fib6_info *, void *), |
| 2087 | void *arg) |
| 2088 | { |
| 2089 | __fib6_clean_all(net, func, FIB6_NO_SERNUM_CHANGE, arg, true); |
Hannes Frederic Sowa | 327571c | 2014-10-06 19:58:38 +0200 | [diff] [blame] | 2090 | } |
| 2091 | |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 2092 | static void fib6_flush_trees(struct net *net) |
| 2093 | { |
Hannes Frederic Sowa | 812918c | 2014-10-06 19:58:37 +0200 | [diff] [blame] | 2094 | int new_sernum = fib6_new_sernum(net); |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 2095 | |
David Ahern | 7c6bb7d | 2018-10-11 20:17:21 -0700 | [diff] [blame] | 2096 | __fib6_clean_all(net, NULL, new_sernum, NULL, false); |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 2097 | } |
| 2098 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | /* |
| 2100 | * Garbage collection |
| 2101 | */ |
| 2102 | |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2103 | static int fib6_age(struct fib6_info *rt, void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2104 | { |
Michal Kubeček | 3570df9 | 2016-03-08 14:44:25 +0100 | [diff] [blame] | 2105 | struct fib6_gc_args *gc_args = arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | unsigned long now = jiffies; |
| 2107 | |
| 2108 | /* |
| 2109 | * check addrconf expiration here. |
| 2110 | * Routes are expired even if they are in use. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | */ |
| 2112 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2113 | if (rt->fib6_flags & RTF_EXPIRES && rt->expires) { |
David Ahern | 1489568 | 2018-04-17 17:33:17 -0700 | [diff] [blame] | 2114 | if (time_after(now, rt->expires)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | RT6_TRACE("expiring %p\n", rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | return -1; |
| 2117 | } |
Michal Kubeček | 3570df9 | 2016-03-08 14:44:25 +0100 | [diff] [blame] | 2118 | gc_args->more++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | } |
| 2120 | |
Wei Wang | c757faa | 2017-10-06 12:06:01 -0700 | [diff] [blame] | 2121 | /* Also age clones in the exception table. |
| 2122 | * Note, that clones are aged out |
| 2123 | * only if they are not in use now. |
| 2124 | */ |
| 2125 | rt6_age_exceptions(rt, gc_args, now); |
| 2126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | return 0; |
| 2128 | } |
| 2129 | |
Michal Kubeček | 2ac3ac8 | 2013-08-01 10:04:14 +0200 | [diff] [blame] | 2130 | void fib6_run_gc(unsigned long expires, struct net *net, bool force) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | { |
Michal Kubeček | 3570df9 | 2016-03-08 14:44:25 +0100 | [diff] [blame] | 2132 | struct fib6_gc_args gc_args; |
Michal Kubeček | 49a18d8 | 2013-08-01 10:04:24 +0200 | [diff] [blame] | 2133 | unsigned long now; |
| 2134 | |
Michal Kubeček | 2ac3ac8 | 2013-08-01 10:04:14 +0200 | [diff] [blame] | 2135 | if (force) { |
Michal Kubeček | 3dc94f9 | 2016-03-08 14:44:45 +0100 | [diff] [blame] | 2136 | spin_lock_bh(&net->ipv6.fib6_gc_lock); |
| 2137 | } else if (!spin_trylock_bh(&net->ipv6.fib6_gc_lock)) { |
Michal Kubeček | 2ac3ac8 | 2013-08-01 10:04:14 +0200 | [diff] [blame] | 2138 | mod_timer(&net->ipv6.ip6_fib_timer, jiffies + HZ); |
| 2139 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2140 | } |
Michal Kubeček | 2ac3ac8 | 2013-08-01 10:04:14 +0200 | [diff] [blame] | 2141 | gc_args.timeout = expires ? (int)expires : |
| 2142 | net->ipv6.sysctl.ip6_rt_gc_interval; |
Wei Wang | db91664 | 2017-06-17 10:42:37 -0700 | [diff] [blame] | 2143 | gc_args.more = 0; |
Daniel Lezcano | f3db485 | 2008-03-03 23:27:06 -0800 | [diff] [blame] | 2144 | |
Michal Kubeček | 3570df9 | 2016-03-08 14:44:25 +0100 | [diff] [blame] | 2145 | fib6_clean_all(net, fib6_age, &gc_args); |
Michal Kubeček | 49a18d8 | 2013-08-01 10:04:24 +0200 | [diff] [blame] | 2146 | now = jiffies; |
| 2147 | net->ipv6.ip6_rt_last_gc = now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | |
| 2149 | if (gc_args.more) |
Stephen Hemminger | c8a4522 | 2008-07-22 14:34:09 -0700 | [diff] [blame] | 2150 | mod_timer(&net->ipv6.ip6_fib_timer, |
Michal Kubeček | 49a18d8 | 2013-08-01 10:04:24 +0200 | [diff] [blame] | 2151 | round_jiffies(now |
Stephen Hemminger | c8a4522 | 2008-07-22 14:34:09 -0700 | [diff] [blame] | 2152 | + net->ipv6.sysctl.ip6_rt_gc_interval)); |
Stephen Hemminger | 417f28b | 2008-07-22 14:33:45 -0700 | [diff] [blame] | 2153 | else |
| 2154 | del_timer(&net->ipv6.ip6_fib_timer); |
Michal Kubeček | 3dc94f9 | 2016-03-08 14:44:45 +0100 | [diff] [blame] | 2155 | spin_unlock_bh(&net->ipv6.fib6_gc_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | } |
| 2157 | |
Kees Cook | 86cb30e | 2017-10-17 20:21:24 -0700 | [diff] [blame] | 2158 | static void fib6_gc_timer_cb(struct timer_list *t) |
Daniel Lezcano | 5b7c931 | 2008-03-03 23:28:58 -0800 | [diff] [blame] | 2159 | { |
Kees Cook | 86cb30e | 2017-10-17 20:21:24 -0700 | [diff] [blame] | 2160 | struct net *arg = from_timer(arg, t, ipv6.ip6_fib_timer); |
| 2161 | |
| 2162 | fib6_run_gc(0, arg, true); |
Daniel Lezcano | 5b7c931 | 2008-03-03 23:28:58 -0800 | [diff] [blame] | 2163 | } |
| 2164 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 2165 | static int __net_init fib6_net_init(struct net *net) |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2166 | { |
Eric Dumazet | 10da66f | 2010-10-13 08:22:03 +0000 | [diff] [blame] | 2167 | size_t size = sizeof(struct hlist_head) * FIB6_TABLE_HASHSZ; |
Ido Schimmel | 16ab6d7 | 2017-08-03 13:28:16 +0200 | [diff] [blame] | 2168 | int err; |
| 2169 | |
| 2170 | err = fib6_notifier_init(net); |
| 2171 | if (err) |
| 2172 | return err; |
Eric Dumazet | 10da66f | 2010-10-13 08:22:03 +0000 | [diff] [blame] | 2173 | |
Michal Kubeček | 3dc94f9 | 2016-03-08 14:44:45 +0100 | [diff] [blame] | 2174 | spin_lock_init(&net->ipv6.fib6_gc_lock); |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 2175 | rwlock_init(&net->ipv6.fib6_walker_lock); |
| 2176 | INIT_LIST_HEAD(&net->ipv6.fib6_walkers); |
Kees Cook | 86cb30e | 2017-10-17 20:21:24 -0700 | [diff] [blame] | 2177 | timer_setup(&net->ipv6.ip6_fib_timer, fib6_gc_timer_cb, 0); |
Daniel Lezcano | 63152fc | 2008-03-03 23:31:11 -0800 | [diff] [blame] | 2178 | |
Benjamin Thery | c572872 | 2008-03-03 23:34:17 -0800 | [diff] [blame] | 2179 | net->ipv6.rt6_stats = kzalloc(sizeof(*net->ipv6.rt6_stats), GFP_KERNEL); |
| 2180 | if (!net->ipv6.rt6_stats) |
| 2181 | goto out_timer; |
| 2182 | |
Eric Dumazet | 10da66f | 2010-10-13 08:22:03 +0000 | [diff] [blame] | 2183 | /* Avoid false sharing : Use at least a full cache line */ |
| 2184 | size = max_t(size_t, size, L1_CACHE_BYTES); |
| 2185 | |
| 2186 | net->ipv6.fib_table_hash = kzalloc(size, GFP_KERNEL); |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2187 | if (!net->ipv6.fib_table_hash) |
Benjamin Thery | c572872 | 2008-03-03 23:34:17 -0800 | [diff] [blame] | 2188 | goto out_rt6_stats; |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2189 | |
| 2190 | net->ipv6.fib6_main_tbl = kzalloc(sizeof(*net->ipv6.fib6_main_tbl), |
| 2191 | GFP_KERNEL); |
| 2192 | if (!net->ipv6.fib6_main_tbl) |
| 2193 | goto out_fib_table_hash; |
| 2194 | |
| 2195 | net->ipv6.fib6_main_tbl->tb6_id = RT6_TABLE_MAIN; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2196 | rcu_assign_pointer(net->ipv6.fib6_main_tbl->tb6_root.leaf, |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 2197 | net->ipv6.fib6_null_entry); |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2198 | net->ipv6.fib6_main_tbl->tb6_root.fn_flags = |
| 2199 | RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO; |
David S. Miller | 8e77327 | 2012-06-11 00:01:52 -0700 | [diff] [blame] | 2200 | inet_peer_base_init(&net->ipv6.fib6_main_tbl->tb6_peers); |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2201 | |
| 2202 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 2203 | net->ipv6.fib6_local_tbl = kzalloc(sizeof(*net->ipv6.fib6_local_tbl), |
| 2204 | GFP_KERNEL); |
| 2205 | if (!net->ipv6.fib6_local_tbl) |
| 2206 | goto out_fib6_main_tbl; |
| 2207 | net->ipv6.fib6_local_tbl->tb6_id = RT6_TABLE_LOCAL; |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2208 | rcu_assign_pointer(net->ipv6.fib6_local_tbl->tb6_root.leaf, |
David Ahern | 421842e | 2018-04-17 17:33:18 -0700 | [diff] [blame] | 2209 | net->ipv6.fib6_null_entry); |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2210 | net->ipv6.fib6_local_tbl->tb6_root.fn_flags = |
| 2211 | RTN_ROOT | RTN_TL_ROOT | RTN_RTINFO; |
David S. Miller | 8e77327 | 2012-06-11 00:01:52 -0700 | [diff] [blame] | 2212 | inet_peer_base_init(&net->ipv6.fib6_local_tbl->tb6_peers); |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2213 | #endif |
| 2214 | fib6_tables_init(net); |
| 2215 | |
Stephen Hemminger | 417f28b | 2008-07-22 14:33:45 -0700 | [diff] [blame] | 2216 | return 0; |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2217 | |
| 2218 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 2219 | out_fib6_main_tbl: |
| 2220 | kfree(net->ipv6.fib6_main_tbl); |
| 2221 | #endif |
| 2222 | out_fib_table_hash: |
| 2223 | kfree(net->ipv6.fib_table_hash); |
Benjamin Thery | c572872 | 2008-03-03 23:34:17 -0800 | [diff] [blame] | 2224 | out_rt6_stats: |
| 2225 | kfree(net->ipv6.rt6_stats); |
Daniel Lezcano | 63152fc | 2008-03-03 23:31:11 -0800 | [diff] [blame] | 2226 | out_timer: |
Ido Schimmel | 16ab6d7 | 2017-08-03 13:28:16 +0200 | [diff] [blame] | 2227 | fib6_notifier_exit(net); |
Stephen Hemminger | 417f28b | 2008-07-22 14:33:45 -0700 | [diff] [blame] | 2228 | return -ENOMEM; |
Wang Yufen | 8db46f1 | 2014-03-28 12:07:02 +0800 | [diff] [blame] | 2229 | } |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2230 | |
| 2231 | static void fib6_net_exit(struct net *net) |
| 2232 | { |
Sabrina Dubroca | ba1cc08 | 2017-09-08 10:26:19 +0200 | [diff] [blame] | 2233 | unsigned int i; |
| 2234 | |
Stephen Hemminger | 417f28b | 2008-07-22 14:33:45 -0700 | [diff] [blame] | 2235 | del_timer_sync(&net->ipv6.ip6_fib_timer); |
| 2236 | |
Eric Dumazet | 32a805b | 2017-09-08 15:48:47 -0700 | [diff] [blame] | 2237 | for (i = 0; i < FIB6_TABLE_HASHSZ; i++) { |
Sabrina Dubroca | ba1cc08 | 2017-09-08 10:26:19 +0200 | [diff] [blame] | 2238 | struct hlist_head *head = &net->ipv6.fib_table_hash[i]; |
| 2239 | struct hlist_node *tmp; |
| 2240 | struct fib6_table *tb; |
| 2241 | |
| 2242 | hlist_for_each_entry_safe(tb, tmp, head, tb6_hlist) { |
| 2243 | hlist_del(&tb->tb6_hlist); |
| 2244 | fib6_free_table(tb); |
| 2245 | } |
| 2246 | } |
| 2247 | |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2248 | kfree(net->ipv6.fib_table_hash); |
Benjamin Thery | c572872 | 2008-03-03 23:34:17 -0800 | [diff] [blame] | 2249 | kfree(net->ipv6.rt6_stats); |
Ido Schimmel | 16ab6d7 | 2017-08-03 13:28:16 +0200 | [diff] [blame] | 2250 | fib6_notifier_exit(net); |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2251 | } |
| 2252 | |
| 2253 | static struct pernet_operations fib6_net_ops = { |
| 2254 | .init = fib6_net_init, |
| 2255 | .exit = fib6_net_exit, |
| 2256 | }; |
| 2257 | |
Daniel Lezcano | d63bddb | 2007-12-07 00:40:34 -0800 | [diff] [blame] | 2258 | int __init fib6_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | { |
Daniel Lezcano | e0b85590 | 2008-03-03 23:24:31 -0800 | [diff] [blame] | 2260 | int ret = -ENOMEM; |
Daniel Lezcano | 63152fc | 2008-03-03 23:31:11 -0800 | [diff] [blame] | 2261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2262 | fib6_node_kmem = kmem_cache_create("fib6_nodes", |
| 2263 | sizeof(struct fib6_node), |
Daniel Lezcano | f845ab6 | 2007-12-07 00:45:16 -0800 | [diff] [blame] | 2264 | 0, SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2265 | NULL); |
Daniel Lezcano | f845ab6 | 2007-12-07 00:45:16 -0800 | [diff] [blame] | 2266 | if (!fib6_node_kmem) |
Daniel Lezcano | e0b85590 | 2008-03-03 23:24:31 -0800 | [diff] [blame] | 2267 | goto out; |
| 2268 | |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2269 | ret = register_pernet_subsys(&fib6_net_ops); |
| 2270 | if (ret) |
Benjamin Thery | c572872 | 2008-03-03 23:34:17 -0800 | [diff] [blame] | 2271 | goto out_kmem_cache_create; |
David S. Miller | e8803b6 | 2012-06-16 01:12:19 -0700 | [diff] [blame] | 2272 | |
Florian Westphal | 16feebc | 2017-12-02 21:44:08 +0100 | [diff] [blame] | 2273 | ret = rtnl_register_module(THIS_MODULE, PF_INET6, RTM_GETROUTE, NULL, |
| 2274 | inet6_dump_fib, 0); |
David S. Miller | e8803b6 | 2012-06-16 01:12:19 -0700 | [diff] [blame] | 2275 | if (ret) |
| 2276 | goto out_unregister_subsys; |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 2277 | |
| 2278 | __fib6_flush_trees = fib6_flush_trees; |
Daniel Lezcano | d63bddb | 2007-12-07 00:40:34 -0800 | [diff] [blame] | 2279 | out: |
| 2280 | return ret; |
| 2281 | |
David S. Miller | e8803b6 | 2012-06-16 01:12:19 -0700 | [diff] [blame] | 2282 | out_unregister_subsys: |
| 2283 | unregister_pernet_subsys(&fib6_net_ops); |
Daniel Lezcano | d63bddb | 2007-12-07 00:40:34 -0800 | [diff] [blame] | 2284 | out_kmem_cache_create: |
| 2285 | kmem_cache_destroy(fib6_node_kmem); |
| 2286 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | } |
| 2288 | |
| 2289 | void fib6_gc_cleanup(void) |
| 2290 | { |
Daniel Lezcano | 58f09b7 | 2008-03-03 23:25:27 -0800 | [diff] [blame] | 2291 | unregister_pernet_subsys(&fib6_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | kmem_cache_destroy(fib6_node_kmem); |
| 2293 | } |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2294 | |
| 2295 | #ifdef CONFIG_PROC_FS |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2296 | static int ipv6_route_seq_show(struct seq_file *seq, void *v) |
| 2297 | { |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2298 | struct fib6_info *rt = v; |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2299 | struct ipv6_route_iter *iter = seq->private; |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 2300 | const struct net_device *dev; |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2301 | |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2302 | seq_printf(seq, "%pi6 %02x ", &rt->fib6_dst.addr, rt->fib6_dst.plen); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2303 | |
| 2304 | #ifdef CONFIG_IPV6_SUBTREES |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2305 | seq_printf(seq, "%pi6 %02x ", &rt->fib6_src.addr, rt->fib6_src.plen); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2306 | #else |
| 2307 | seq_puts(seq, "00000000000000000000000000000000 00 "); |
| 2308 | #endif |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2309 | if (rt->fib6_flags & RTF_GATEWAY) |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 2310 | seq_printf(seq, "%pi6", &rt->fib6_nh.nh_gw); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2311 | else |
| 2312 | seq_puts(seq, "00000000000000000000000000000000"); |
| 2313 | |
David Ahern | 5e670d8 | 2018-04-17 17:33:14 -0700 | [diff] [blame] | 2314 | dev = rt->fib6_nh.nh_dev; |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2315 | seq_printf(seq, " %08x %08x %08x %08x %8s\n", |
David Ahern | 93c2fb2 | 2018-04-18 15:38:59 -0700 | [diff] [blame] | 2316 | rt->fib6_metric, atomic_read(&rt->fib6_ref), 0, |
| 2317 | rt->fib6_flags, dev ? dev->name : ""); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2318 | iter->w.leaf = NULL; |
| 2319 | return 0; |
| 2320 | } |
| 2321 | |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 2322 | static int ipv6_route_yield(struct fib6_walker *w) |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2323 | { |
| 2324 | struct ipv6_route_iter *iter = w->args; |
| 2325 | |
| 2326 | if (!iter->skip) |
| 2327 | return 1; |
| 2328 | |
| 2329 | do { |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2330 | iter->w.leaf = rcu_dereference_protected( |
David Ahern | 8fb11a9 | 2018-05-04 13:54:24 -0700 | [diff] [blame] | 2331 | iter->w.leaf->fib6_next, |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2332 | lockdep_is_held(&iter->tbl->tb6_lock)); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2333 | iter->skip--; |
| 2334 | if (!iter->skip && iter->w.leaf) |
| 2335 | return 1; |
| 2336 | } while (iter->w.leaf); |
| 2337 | |
| 2338 | return 0; |
| 2339 | } |
| 2340 | |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 2341 | static void ipv6_route_seq_setup_walk(struct ipv6_route_iter *iter, |
| 2342 | struct net *net) |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2343 | { |
| 2344 | memset(&iter->w, 0, sizeof(iter->w)); |
| 2345 | iter->w.func = ipv6_route_yield; |
| 2346 | iter->w.root = &iter->tbl->tb6_root; |
| 2347 | iter->w.state = FWS_INIT; |
| 2348 | iter->w.node = iter->w.root; |
| 2349 | iter->w.args = iter; |
Hannes Frederic Sowa | 0a67d3e | 2013-09-21 16:56:10 +0200 | [diff] [blame] | 2350 | iter->sernum = iter->w.root->fn_sernum; |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2351 | INIT_LIST_HEAD(&iter->w.lh); |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 2352 | fib6_walker_link(net, &iter->w); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2353 | } |
| 2354 | |
| 2355 | static struct fib6_table *ipv6_route_seq_next_table(struct fib6_table *tbl, |
| 2356 | struct net *net) |
| 2357 | { |
| 2358 | unsigned int h; |
| 2359 | struct hlist_node *node; |
| 2360 | |
| 2361 | if (tbl) { |
| 2362 | h = (tbl->tb6_id & (FIB6_TABLE_HASHSZ - 1)) + 1; |
| 2363 | node = rcu_dereference_bh(hlist_next_rcu(&tbl->tb6_hlist)); |
| 2364 | } else { |
| 2365 | h = 0; |
| 2366 | node = NULL; |
| 2367 | } |
| 2368 | |
| 2369 | while (!node && h < FIB6_TABLE_HASHSZ) { |
| 2370 | node = rcu_dereference_bh( |
| 2371 | hlist_first_rcu(&net->ipv6.fib_table_hash[h++])); |
| 2372 | } |
| 2373 | return hlist_entry_safe(node, struct fib6_table, tb6_hlist); |
| 2374 | } |
| 2375 | |
Hannes Frederic Sowa | 0a67d3e | 2013-09-21 16:56:10 +0200 | [diff] [blame] | 2376 | static void ipv6_route_check_sernum(struct ipv6_route_iter *iter) |
| 2377 | { |
| 2378 | if (iter->sernum != iter->w.root->fn_sernum) { |
| 2379 | iter->sernum = iter->w.root->fn_sernum; |
| 2380 | iter->w.state = FWS_INIT; |
| 2381 | iter->w.node = iter->w.root; |
| 2382 | WARN_ON(iter->w.skip); |
| 2383 | iter->w.skip = iter->w.count; |
| 2384 | } |
| 2385 | } |
| 2386 | |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2387 | static void *ipv6_route_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 2388 | { |
| 2389 | int r; |
David Ahern | 8d1c802 | 2018-04-17 17:33:26 -0700 | [diff] [blame] | 2390 | struct fib6_info *n; |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2391 | struct net *net = seq_file_net(seq); |
| 2392 | struct ipv6_route_iter *iter = seq->private; |
| 2393 | |
| 2394 | if (!v) |
| 2395 | goto iter_table; |
| 2396 | |
David Ahern | 8fb11a9 | 2018-05-04 13:54:24 -0700 | [diff] [blame] | 2397 | n = rcu_dereference_bh(((struct fib6_info *)v)->fib6_next); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2398 | if (n) { |
| 2399 | ++*pos; |
| 2400 | return n; |
| 2401 | } |
| 2402 | |
| 2403 | iter_table: |
Hannes Frederic Sowa | 0a67d3e | 2013-09-21 16:56:10 +0200 | [diff] [blame] | 2404 | ipv6_route_check_sernum(iter); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2405 | spin_lock_bh(&iter->tbl->tb6_lock); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2406 | r = fib6_walk_continue(&iter->w); |
Wei Wang | 66f5d6c | 2017-10-06 12:06:10 -0700 | [diff] [blame] | 2407 | spin_unlock_bh(&iter->tbl->tb6_lock); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2408 | if (r > 0) { |
| 2409 | if (v) |
| 2410 | ++*pos; |
| 2411 | return iter->w.leaf; |
| 2412 | } else if (r < 0) { |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 2413 | fib6_walker_unlink(net, &iter->w); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2414 | return NULL; |
| 2415 | } |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 2416 | fib6_walker_unlink(net, &iter->w); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2417 | |
| 2418 | iter->tbl = ipv6_route_seq_next_table(iter->tbl, net); |
| 2419 | if (!iter->tbl) |
| 2420 | return NULL; |
| 2421 | |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 2422 | ipv6_route_seq_setup_walk(iter, net); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2423 | goto iter_table; |
| 2424 | } |
| 2425 | |
| 2426 | static void *ipv6_route_seq_start(struct seq_file *seq, loff_t *pos) |
| 2427 | __acquires(RCU_BH) |
| 2428 | { |
| 2429 | struct net *net = seq_file_net(seq); |
| 2430 | struct ipv6_route_iter *iter = seq->private; |
| 2431 | |
| 2432 | rcu_read_lock_bh(); |
| 2433 | iter->tbl = ipv6_route_seq_next_table(NULL, net); |
| 2434 | iter->skip = *pos; |
| 2435 | |
| 2436 | if (iter->tbl) { |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 2437 | ipv6_route_seq_setup_walk(iter, net); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2438 | return ipv6_route_seq_next(seq, NULL, pos); |
| 2439 | } else { |
| 2440 | return NULL; |
| 2441 | } |
| 2442 | } |
| 2443 | |
| 2444 | static bool ipv6_route_iter_active(struct ipv6_route_iter *iter) |
| 2445 | { |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 2446 | struct fib6_walker *w = &iter->w; |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2447 | return w->node && !(w->state == FWS_U && w->node == w->root); |
| 2448 | } |
| 2449 | |
| 2450 | static void ipv6_route_seq_stop(struct seq_file *seq, void *v) |
| 2451 | __releases(RCU_BH) |
| 2452 | { |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 2453 | struct net *net = seq_file_net(seq); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2454 | struct ipv6_route_iter *iter = seq->private; |
| 2455 | |
| 2456 | if (ipv6_route_iter_active(iter)) |
Michal Kubeček | 9a03cd8 | 2016-03-08 14:44:35 +0100 | [diff] [blame] | 2457 | fib6_walker_unlink(net, &iter->w); |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2458 | |
| 2459 | rcu_read_unlock_bh(); |
| 2460 | } |
| 2461 | |
Christoph Hellwig | c350637 | 2018-04-10 19:42:55 +0200 | [diff] [blame] | 2462 | const struct seq_operations ipv6_route_seq_ops = { |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2463 | .start = ipv6_route_seq_start, |
| 2464 | .next = ipv6_route_seq_next, |
| 2465 | .stop = ipv6_route_seq_stop, |
| 2466 | .show = ipv6_route_seq_show |
| 2467 | }; |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 2468 | #endif /* CONFIG_PROC_FS */ |