blob: 0019aca0f3283820736ecc4408ff93a9ed798b21 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001 Momchil Velikov
3 * Portions Copyright (C) 2001 Christoph Hellwig
Christoph Lametercde53532008-07-04 09:59:22 -07004 * Copyright (C) 2005 SGI, Christoph Lameter
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08005 * Copyright (C) 2006 Nick Piggin
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07006 * Copyright (C) 2012 Konstantin Khlebnikov
Matthew Wilcox6b053b82016-05-20 17:02:58 -07007 * Copyright (C) 2016 Intel, Matthew Wilcox
8 * Copyright (C) 2016 Intel, Ross Zwisler
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
Matthew Wilcoxe157b552016-12-14 15:09:01 -080025#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/errno.h>
27#include <linux/init.h>
28#include <linux/kernel.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050029#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/radix-tree.h>
31#include <linux/percpu.h>
32#include <linux/slab.h>
Catalin Marinasce80b062014-06-06 14:38:18 -070033#include <linux/kmemleak.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/notifier.h>
35#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/string.h>
37#include <linux/bitops.h>
Nick Piggin7cf9c2c2006-12-06 20:33:44 -080038#include <linux/rcupdate.h>
Frederic Weisbecker92cf2112015-05-12 16:41:46 +020039#include <linux/preempt.h> /* in_interrupt() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -070042/* Number of nodes in fully populated tree of given height */
43static unsigned long height_to_maxnodes[RADIX_TREE_MAX_PATH + 1] __read_mostly;
44
Jeff Moyer26fb1582007-10-16 01:24:49 -070045/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * Radix tree node cache.
47 */
Christoph Lametere18b8902006-12-06 20:33:20 -080048static struct kmem_cache *radix_tree_node_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
Nick Piggin55368052012-05-29 15:07:34 -070051 * The radix tree is variable-height, so an insert operation not only has
52 * to build the branch to its corresponding item, it also has to build the
53 * branch to existing items if the size has to be increased (by
54 * radix_tree_extend).
55 *
56 * The worst case is a zero height tree with just a single item at index 0,
57 * and then inserting an item at index ULONG_MAX. This requires 2 new branches
58 * of RADIX_TREE_MAX_PATH size to be created, with only the root node shared.
59 * Hence:
60 */
61#define RADIX_TREE_PRELOAD_SIZE (RADIX_TREE_MAX_PATH * 2 - 1)
62
63/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * Per-cpu pool of preloaded nodes
65 */
66struct radix_tree_preload {
Matthew Wilcox2fcd9002016-05-20 17:03:04 -070067 unsigned nr;
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -070068 /* nodes->private_data points to next preallocated node */
69 struct radix_tree_node *nodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
Harvey Harrison8cef7d52009-01-06 14:40:50 -080071static DEFINE_PER_CPU(struct radix_tree_preload, radix_tree_preloads) = { 0, };
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Matthew Wilcox148deab2016-12-14 15:08:49 -080073static inline struct radix_tree_node *entry_to_node(void *ptr)
74{
75 return (void *)((unsigned long)ptr & ~RADIX_TREE_INTERNAL_NODE);
76}
77
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -070078static inline void *node_to_entry(void *ptr)
Nick Piggin27d20fd2010-11-11 14:05:19 -080079{
Matthew Wilcox30ff46cc2016-05-20 17:03:22 -070080 return (void *)((unsigned long)ptr | RADIX_TREE_INTERNAL_NODE);
Nick Piggin27d20fd2010-11-11 14:05:19 -080081}
82
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -070083#define RADIX_TREE_RETRY node_to_entry(NULL)
Matthew Wilcoxafe0e392016-05-20 17:02:17 -070084
Matthew Wilcoxdb050f22016-05-20 17:01:57 -070085#ifdef CONFIG_RADIX_TREE_MULTIORDER
86/* Sibling slots point directly to another slot in the same node */
87static inline bool is_sibling_entry(struct radix_tree_node *parent, void *node)
88{
89 void **ptr = node;
90 return (parent->slots <= ptr) &&
91 (ptr < parent->slots + RADIX_TREE_MAP_SIZE);
92}
93#else
94static inline bool is_sibling_entry(struct radix_tree_node *parent, void *node)
95{
96 return false;
97}
98#endif
99
100static inline unsigned long get_slot_offset(struct radix_tree_node *parent,
101 void **slot)
102{
103 return slot - parent->slots;
104}
105
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700106static unsigned int radix_tree_descend(struct radix_tree_node *parent,
107 struct radix_tree_node **nodep, unsigned long index)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700108{
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700109 unsigned int offset = (index >> parent->shift) & RADIX_TREE_MAP_MASK;
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700110 void **entry = rcu_dereference_raw(parent->slots[offset]);
111
112#ifdef CONFIG_RADIX_TREE_MULTIORDER
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700113 if (radix_tree_is_internal_node(entry)) {
Linus Torvalds8d2c0d32016-09-25 13:32:46 -0700114 if (is_sibling_entry(parent, entry)) {
115 void **sibentry = (void **) entry_to_node(entry);
116 offset = get_slot_offset(parent, sibentry);
117 entry = rcu_dereference_raw(*sibentry);
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700118 }
119 }
120#endif
121
122 *nodep = (void *)entry;
123 return offset;
124}
125
Nick Piggin612d6c12006-06-23 02:03:22 -0700126static inline gfp_t root_gfp_mask(struct radix_tree_root *root)
127{
128 return root->gfp_mask & __GFP_BITS_MASK;
129}
130
Nick Piggin643b52b2008-06-12 15:21:52 -0700131static inline void tag_set(struct radix_tree_node *node, unsigned int tag,
132 int offset)
133{
134 __set_bit(offset, node->tags[tag]);
135}
136
137static inline void tag_clear(struct radix_tree_node *node, unsigned int tag,
138 int offset)
139{
140 __clear_bit(offset, node->tags[tag]);
141}
142
143static inline int tag_get(struct radix_tree_node *node, unsigned int tag,
144 int offset)
145{
146 return test_bit(offset, node->tags[tag]);
147}
148
149static inline void root_tag_set(struct radix_tree_root *root, unsigned int tag)
150{
151 root->gfp_mask |= (__force gfp_t)(1 << (tag + __GFP_BITS_SHIFT));
152}
153
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700154static inline void root_tag_clear(struct radix_tree_root *root, unsigned tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700155{
156 root->gfp_mask &= (__force gfp_t)~(1 << (tag + __GFP_BITS_SHIFT));
157}
158
159static inline void root_tag_clear_all(struct radix_tree_root *root)
160{
161 root->gfp_mask &= __GFP_BITS_MASK;
162}
163
164static inline int root_tag_get(struct radix_tree_root *root, unsigned int tag)
165{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700166 return (__force int)root->gfp_mask & (1 << (tag + __GFP_BITS_SHIFT));
Nick Piggin643b52b2008-06-12 15:21:52 -0700167}
168
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700169static inline unsigned root_tags_get(struct radix_tree_root *root)
170{
171 return (__force unsigned)root->gfp_mask >> __GFP_BITS_SHIFT;
172}
173
Nick Piggin643b52b2008-06-12 15:21:52 -0700174/*
175 * Returns 1 if any slot in the node has this tag set.
176 * Otherwise returns 0.
177 */
178static inline int any_tag_set(struct radix_tree_node *node, unsigned int tag)
179{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700180 unsigned idx;
Nick Piggin643b52b2008-06-12 15:21:52 -0700181 for (idx = 0; idx < RADIX_TREE_TAG_LONGS; idx++) {
182 if (node->tags[tag][idx])
183 return 1;
184 }
185 return 0;
186}
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700187
188/**
189 * radix_tree_find_next_bit - find the next set bit in a memory region
190 *
191 * @addr: The address to base the search on
192 * @size: The bitmap size in bits
193 * @offset: The bitnumber to start searching at
194 *
195 * Unrollable variant of find_next_bit() for constant size arrays.
196 * Tail bits starting from size to roundup(size, BITS_PER_LONG) must be zero.
197 * Returns next bit offset, or size if nothing found.
198 */
199static __always_inline unsigned long
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800200radix_tree_find_next_bit(struct radix_tree_node *node, unsigned int tag,
201 unsigned long offset)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700202{
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800203 const unsigned long *addr = node->tags[tag];
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700204
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800205 if (offset < RADIX_TREE_MAP_SIZE) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700206 unsigned long tmp;
207
208 addr += offset / BITS_PER_LONG;
209 tmp = *addr >> (offset % BITS_PER_LONG);
210 if (tmp)
211 return __ffs(tmp) + offset;
212 offset = (offset + BITS_PER_LONG) & ~(BITS_PER_LONG - 1);
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800213 while (offset < RADIX_TREE_MAP_SIZE) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700214 tmp = *++addr;
215 if (tmp)
216 return __ffs(tmp) + offset;
217 offset += BITS_PER_LONG;
218 }
219 }
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800220 return RADIX_TREE_MAP_SIZE;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700221}
222
Matthew Wilcox268f42d2016-12-14 15:08:55 -0800223static unsigned int iter_offset(const struct radix_tree_iter *iter)
224{
225 return (iter->index >> iter_shift(iter)) & RADIX_TREE_MAP_MASK;
226}
227
Matthew Wilcox218ed752016-12-14 15:08:43 -0800228/*
229 * The maximum index which can be stored in a radix tree
230 */
231static inline unsigned long shift_maxindex(unsigned int shift)
232{
233 return (RADIX_TREE_MAP_SIZE << shift) - 1;
234}
235
236static inline unsigned long node_maxindex(struct radix_tree_node *node)
237{
238 return shift_maxindex(node->shift);
239}
240
Ross Zwisler0796c582016-05-20 17:02:55 -0700241#ifndef __KERNEL__
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700242static void dump_node(struct radix_tree_node *node, unsigned long index)
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700243{
Ross Zwisler0796c582016-05-20 17:02:55 -0700244 unsigned long i;
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700245
Matthew Wilcox218ed752016-12-14 15:08:43 -0800246 pr_debug("radix node: %p offset %d indices %lu-%lu parent %p tags %lx %lx %lx shift %d count %d exceptional %d\n",
247 node, node->offset, index, index | node_maxindex(node),
248 node->parent,
Ross Zwisler0796c582016-05-20 17:02:55 -0700249 node->tags[0][0], node->tags[1][0], node->tags[2][0],
Matthew Wilcox218ed752016-12-14 15:08:43 -0800250 node->shift, node->count, node->exceptional);
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700251
Ross Zwisler0796c582016-05-20 17:02:55 -0700252 for (i = 0; i < RADIX_TREE_MAP_SIZE; i++) {
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700253 unsigned long first = index | (i << node->shift);
254 unsigned long last = first | ((1UL << node->shift) - 1);
Ross Zwisler0796c582016-05-20 17:02:55 -0700255 void *entry = node->slots[i];
256 if (!entry)
257 continue;
Matthew Wilcox218ed752016-12-14 15:08:43 -0800258 if (entry == RADIX_TREE_RETRY) {
259 pr_debug("radix retry offset %ld indices %lu-%lu parent %p\n",
260 i, first, last, node);
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700261 } else if (!radix_tree_is_internal_node(entry)) {
Matthew Wilcox218ed752016-12-14 15:08:43 -0800262 pr_debug("radix entry %p offset %ld indices %lu-%lu parent %p\n",
263 entry, i, first, last, node);
264 } else if (is_sibling_entry(node, entry)) {
265 pr_debug("radix sblng %p offset %ld indices %lu-%lu parent %p val %p\n",
266 entry, i, first, last, node,
267 *(void **)entry_to_node(entry));
Ross Zwisler0796c582016-05-20 17:02:55 -0700268 } else {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700269 dump_node(entry_to_node(entry), first);
Ross Zwisler0796c582016-05-20 17:02:55 -0700270 }
271 }
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700272}
273
274/* For debug */
275static void radix_tree_dump(struct radix_tree_root *root)
276{
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700277 pr_debug("radix root: %p rnode %p tags %x\n",
278 root, root->rnode,
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700279 root->gfp_mask >> __GFP_BITS_SHIFT);
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700280 if (!radix_tree_is_internal_node(root->rnode))
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700281 return;
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700282 dump_node(entry_to_node(root->rnode), 0);
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700283}
284#endif
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/*
287 * This assumes that the caller has performed appropriate preallocation, and
288 * that the caller has pinned this thread of control to the current CPU.
289 */
290static struct radix_tree_node *
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800291radix_tree_node_alloc(struct radix_tree_root *root,
292 struct radix_tree_node *parent,
293 unsigned int shift, unsigned int offset,
294 unsigned int count, unsigned int exceptional)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Nick Piggine2848a02008-02-04 22:29:10 -0800296 struct radix_tree_node *ret = NULL;
Nick Piggin612d6c12006-06-23 02:03:22 -0700297 gfp_t gfp_mask = root_gfp_mask(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Jan Kara5e4c0d972013-09-11 14:26:05 -0700299 /*
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700300 * Preload code isn't irq safe and it doesn't make sense to use
301 * preloading during an interrupt anyway as all the allocations have
302 * to be atomic. So just do normal allocation when in interrupt.
Jan Kara5e4c0d972013-09-11 14:26:05 -0700303 */
Mel Gormand0164ad2015-11-06 16:28:21 -0800304 if (!gfpflags_allow_blocking(gfp_mask) && !in_interrupt()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 struct radix_tree_preload *rtp;
306
Nick Piggine2848a02008-02-04 22:29:10 -0800307 /*
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700308 * Even if the caller has preloaded, try to allocate from the
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700309 * cache first for the new node to get accounted to the memory
310 * cgroup.
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700311 */
312 ret = kmem_cache_alloc(radix_tree_node_cachep,
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700313 gfp_mask | __GFP_NOWARN);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700314 if (ret)
315 goto out;
316
317 /*
Nick Piggine2848a02008-02-04 22:29:10 -0800318 * Provided the caller has preloaded here, we will always
319 * succeed in getting a node here (and never reach
320 * kmem_cache_alloc)
321 */
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700322 rtp = this_cpu_ptr(&radix_tree_preloads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (rtp->nr) {
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700324 ret = rtp->nodes;
325 rtp->nodes = ret->private_data;
326 ret->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 rtp->nr--;
328 }
Catalin Marinasce80b062014-06-06 14:38:18 -0700329 /*
330 * Update the allocation stack trace as this is more useful
331 * for debugging.
332 */
333 kmemleak_update_trace(ret);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700334 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700336 ret = kmem_cache_alloc(radix_tree_node_cachep, gfp_mask);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700337out:
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700338 BUG_ON(radix_tree_is_internal_node(ret));
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800339 if (ret) {
340 ret->parent = parent;
341 ret->shift = shift;
342 ret->offset = offset;
343 ret->count = count;
344 ret->exceptional = exceptional;
345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return ret;
347}
348
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800349static void radix_tree_node_rcu_free(struct rcu_head *head)
350{
351 struct radix_tree_node *node =
352 container_of(head, struct radix_tree_node, rcu_head);
Nick Piggin643b52b2008-06-12 15:21:52 -0700353
354 /*
Matthew Wilcox175542f2016-12-14 15:08:58 -0800355 * Must only free zeroed nodes into the slab. We can be left with
356 * non-NULL entries by radix_tree_free_nodes, so clear the entries
357 * and tags here.
Nick Piggin643b52b2008-06-12 15:21:52 -0700358 */
Matthew Wilcox175542f2016-12-14 15:08:58 -0800359 memset(node->slots, 0, sizeof(node->slots));
360 memset(node->tags, 0, sizeof(node->tags));
Matthew Wilcox91d9c052016-12-14 15:08:34 -0800361 INIT_LIST_HEAD(&node->private_list);
Nick Piggin643b52b2008-06-12 15:21:52 -0700362
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800363 kmem_cache_free(radix_tree_node_cachep, node);
364}
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366static inline void
367radix_tree_node_free(struct radix_tree_node *node)
368{
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800369 call_rcu(&node->rcu_head, radix_tree_node_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
372/*
373 * Load up this CPU's radix_tree_node buffer with sufficient objects to
374 * ensure that the addition of a single element in the tree cannot fail. On
375 * success, return zero, with preemption disabled. On error, return -ENOMEM
376 * with preemption not disabled.
David Howellsb34df792009-11-19 18:11:14 +0000377 *
378 * To make use of this facility, the radix tree must be initialised without
Mel Gormand0164ad2015-11-06 16:28:21 -0800379 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 */
Matthew Wilcox2791653a2016-12-14 15:09:04 -0800381static int __radix_tree_preload(gfp_t gfp_mask, unsigned nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 struct radix_tree_preload *rtp;
384 struct radix_tree_node *node;
385 int ret = -ENOMEM;
386
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700387 /*
388 * Nodes preloaded by one cgroup can be be used by another cgroup, so
389 * they should never be accounted to any particular memory cgroup.
390 */
391 gfp_mask &= ~__GFP_ACCOUNT;
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700394 rtp = this_cpu_ptr(&radix_tree_preloads);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700395 while (rtp->nr < nr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 preempt_enable();
Christoph Lameter488514d2008-04-28 02:12:05 -0700397 node = kmem_cache_alloc(radix_tree_node_cachep, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (node == NULL)
399 goto out;
400 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700401 rtp = this_cpu_ptr(&radix_tree_preloads);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700402 if (rtp->nr < nr) {
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700403 node->private_data = rtp->nodes;
404 rtp->nodes = node;
405 rtp->nr++;
406 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 kmem_cache_free(radix_tree_node_cachep, node);
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410 ret = 0;
411out:
412 return ret;
413}
Jan Kara5e4c0d972013-09-11 14:26:05 -0700414
415/*
416 * Load up this CPU's radix_tree_node buffer with sufficient objects to
417 * ensure that the addition of a single element in the tree cannot fail. On
418 * success, return zero, with preemption disabled. On error, return -ENOMEM
419 * with preemption not disabled.
420 *
421 * To make use of this facility, the radix tree must be initialised without
Mel Gormand0164ad2015-11-06 16:28:21 -0800422 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
Jan Kara5e4c0d972013-09-11 14:26:05 -0700423 */
424int radix_tree_preload(gfp_t gfp_mask)
425{
426 /* Warn on non-sensical use... */
Mel Gormand0164ad2015-11-06 16:28:21 -0800427 WARN_ON_ONCE(!gfpflags_allow_blocking(gfp_mask));
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700428 return __radix_tree_preload(gfp_mask, RADIX_TREE_PRELOAD_SIZE);
Jan Kara5e4c0d972013-09-11 14:26:05 -0700429}
David Chinnerd7f09232007-07-14 16:05:04 +1000430EXPORT_SYMBOL(radix_tree_preload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Nick Piggin6e954b92006-01-08 01:01:40 -0800432/*
Jan Kara5e4c0d972013-09-11 14:26:05 -0700433 * The same as above function, except we don't guarantee preloading happens.
434 * We do it, if we decide it helps. On success, return zero with preemption
435 * disabled. On error, return -ENOMEM with preemption not disabled.
436 */
437int radix_tree_maybe_preload(gfp_t gfp_mask)
438{
Mel Gormand0164ad2015-11-06 16:28:21 -0800439 if (gfpflags_allow_blocking(gfp_mask))
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700440 return __radix_tree_preload(gfp_mask, RADIX_TREE_PRELOAD_SIZE);
Jan Kara5e4c0d972013-09-11 14:26:05 -0700441 /* Preloading doesn't help anything with this gfp mask, skip it */
442 preempt_disable();
443 return 0;
444}
445EXPORT_SYMBOL(radix_tree_maybe_preload);
446
Matthew Wilcox2791653a2016-12-14 15:09:04 -0800447#ifdef CONFIG_RADIX_TREE_MULTIORDER
448/*
449 * Preload with enough objects to ensure that we can split a single entry
450 * of order @old_order into many entries of size @new_order
451 */
452int radix_tree_split_preload(unsigned int old_order, unsigned int new_order,
453 gfp_t gfp_mask)
454{
455 unsigned top = 1 << (old_order % RADIX_TREE_MAP_SHIFT);
456 unsigned layers = (old_order / RADIX_TREE_MAP_SHIFT) -
457 (new_order / RADIX_TREE_MAP_SHIFT);
458 unsigned nr = 0;
459
460 WARN_ON_ONCE(!gfpflags_allow_blocking(gfp_mask));
461 BUG_ON(new_order >= old_order);
462
463 while (layers--)
464 nr = nr * RADIX_TREE_MAP_SIZE + 1;
465 return __radix_tree_preload(gfp_mask, top * nr);
466}
467#endif
468
Jan Kara5e4c0d972013-09-11 14:26:05 -0700469/*
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700470 * The same as function above, but preload number of nodes required to insert
471 * (1 << order) continuous naturally-aligned elements.
472 */
473int radix_tree_maybe_preload_order(gfp_t gfp_mask, int order)
474{
475 unsigned long nr_subtrees;
476 int nr_nodes, subtree_height;
477
478 /* Preloading doesn't help anything with this gfp mask, skip it */
479 if (!gfpflags_allow_blocking(gfp_mask)) {
480 preempt_disable();
481 return 0;
482 }
483
484 /*
485 * Calculate number and height of fully populated subtrees it takes to
486 * store (1 << order) elements.
487 */
488 nr_subtrees = 1 << order;
489 for (subtree_height = 0; nr_subtrees > RADIX_TREE_MAP_SIZE;
490 subtree_height++)
491 nr_subtrees >>= RADIX_TREE_MAP_SHIFT;
492
493 /*
494 * The worst case is zero height tree with a single item at index 0 and
495 * then inserting items starting at ULONG_MAX - (1 << order).
496 *
497 * This requires RADIX_TREE_MAX_PATH nodes to build branch from root to
498 * 0-index item.
499 */
500 nr_nodes = RADIX_TREE_MAX_PATH;
501
502 /* Plus branch to fully populated subtrees. */
503 nr_nodes += RADIX_TREE_MAX_PATH - subtree_height;
504
505 /* Root node is shared. */
506 nr_nodes--;
507
508 /* Plus nodes required to build subtrees. */
509 nr_nodes += nr_subtrees * height_to_maxnodes[subtree_height];
510
511 return __radix_tree_preload(gfp_mask, nr_nodes);
512}
513
Matthew Wilcox1456a432016-05-20 17:02:08 -0700514static unsigned radix_tree_load_root(struct radix_tree_root *root,
515 struct radix_tree_node **nodep, unsigned long *maxindex)
516{
517 struct radix_tree_node *node = rcu_dereference_raw(root->rnode);
518
519 *nodep = node;
520
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700521 if (likely(radix_tree_is_internal_node(node))) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700522 node = entry_to_node(node);
Matthew Wilcox1456a432016-05-20 17:02:08 -0700523 *maxindex = node_maxindex(node);
Matthew Wilcoxc12e51b2016-05-20 17:03:10 -0700524 return node->shift + RADIX_TREE_MAP_SHIFT;
Matthew Wilcox1456a432016-05-20 17:02:08 -0700525 }
526
527 *maxindex = 0;
528 return 0;
529}
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531/*
532 * Extend a radix tree so it can store key @index.
533 */
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700534static int radix_tree_extend(struct radix_tree_root *root,
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700535 unsigned long index, unsigned int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Hugh Dickinse2bdb932012-01-12 17:20:41 -0800537 struct radix_tree_node *slot;
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700538 unsigned int maxshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 int tag;
540
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700541 /* Figure out what the shift should be. */
542 maxshift = shift;
543 while (index > shift_maxindex(maxshift))
544 maxshift += RADIX_TREE_MAP_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700546 slot = root->rnode;
547 if (!slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 do {
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800551 struct radix_tree_node *node = radix_tree_node_alloc(root,
552 NULL, shift, 0, 1, 0);
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700553 if (!node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return -ENOMEM;
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 /* Propagate the aggregated tag info into the new root */
Jonathan Corbetdaff89f2006-03-25 03:08:05 -0800557 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++) {
Nick Piggin612d6c12006-06-23 02:03:22 -0700558 if (root_tag_get(root, tag))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 tag_set(node, tag, 0);
560 }
561
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700562 BUG_ON(shift > BITS_PER_LONG);
Johannes Weinerf7942432016-12-12 16:43:41 -0800563 if (radix_tree_is_internal_node(slot)) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700564 entry_to_node(slot)->parent = node;
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800565 } else if (radix_tree_exceptional_entry(slot)) {
Johannes Weinerf7942432016-12-12 16:43:41 -0800566 /* Moving an exceptional root->rnode to a node */
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800567 node->exceptional = 1;
Johannes Weinerf7942432016-12-12 16:43:41 -0800568 }
Hugh Dickinse2bdb932012-01-12 17:20:41 -0800569 node->slots[0] = slot;
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -0700570 slot = node_to_entry(node);
571 rcu_assign_pointer(root->rnode, slot);
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700572 shift += RADIX_TREE_MAP_SHIFT;
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700573 } while (shift <= maxshift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574out:
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700575 return maxshift + RADIX_TREE_MAP_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
578/**
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800579 * radix_tree_shrink - shrink radix tree to minimum height
580 * @root radix tree root
581 */
Johannes Weiner14b46872016-12-12 16:43:52 -0800582static inline void radix_tree_shrink(struct radix_tree_root *root,
Johannes Weiner4d693d02016-12-12 16:43:49 -0800583 radix_tree_update_node_t update_node,
584 void *private)
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800585{
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800586 for (;;) {
587 struct radix_tree_node *node = root->rnode;
588 struct radix_tree_node *child;
589
590 if (!radix_tree_is_internal_node(node))
591 break;
592 node = entry_to_node(node);
593
594 /*
595 * The candidate node has more than one child, or its child
596 * is not at the leftmost slot, or the child is a multiorder
597 * entry, we cannot shrink.
598 */
599 if (node->count != 1)
600 break;
601 child = node->slots[0];
602 if (!child)
603 break;
604 if (!radix_tree_is_internal_node(child) && node->shift)
605 break;
606
607 if (radix_tree_is_internal_node(child))
608 entry_to_node(child)->parent = NULL;
609
610 /*
611 * We don't need rcu_assign_pointer(), since we are simply
612 * moving the node from one part of the tree to another: if it
613 * was safe to dereference the old pointer to it
614 * (node->slots[0]), it will be safe to dereference the new
615 * one (root->rnode) as far as dependent read barriers go.
616 */
617 root->rnode = child;
618
619 /*
620 * We have a dilemma here. The node's slot[0] must not be
621 * NULLed in case there are concurrent lookups expecting to
622 * find the item. However if this was a bottom-level node,
623 * then it may be subject to the slot pointer being visible
624 * to callers dereferencing it. If item corresponding to
625 * slot[0] is subsequently deleted, these callers would expect
626 * their slot to become empty sooner or later.
627 *
628 * For example, lockless pagecache will look up a slot, deref
629 * the page pointer, and if the page has 0 refcount it means it
630 * was concurrently deleted from pagecache so try the deref
631 * again. Fortunately there is already a requirement for logic
632 * to retry the entire slot lookup -- the indirect pointer
633 * problem (replacing direct root node with an indirect pointer
634 * also results in a stale slot). So tag the slot as indirect
635 * to force callers to retry.
636 */
Johannes Weiner4d693d02016-12-12 16:43:49 -0800637 node->count = 0;
638 if (!radix_tree_is_internal_node(child)) {
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800639 node->slots[0] = RADIX_TREE_RETRY;
Johannes Weiner4d693d02016-12-12 16:43:49 -0800640 if (update_node)
641 update_node(node, private);
642 }
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800643
644 radix_tree_node_free(node);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800645 }
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800646}
647
Johannes Weiner14b46872016-12-12 16:43:52 -0800648static void delete_node(struct radix_tree_root *root,
Johannes Weiner4d693d02016-12-12 16:43:49 -0800649 struct radix_tree_node *node,
650 radix_tree_update_node_t update_node, void *private)
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800651{
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800652 do {
653 struct radix_tree_node *parent;
654
655 if (node->count) {
656 if (node == entry_to_node(root->rnode))
Johannes Weiner14b46872016-12-12 16:43:52 -0800657 radix_tree_shrink(root, update_node, private);
658 return;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800659 }
660
661 parent = node->parent;
662 if (parent) {
663 parent->slots[node->offset] = NULL;
664 parent->count--;
665 } else {
666 root_tag_clear_all(root);
667 root->rnode = NULL;
668 }
669
670 radix_tree_node_free(node);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800671
672 node = parent;
673 } while (node);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800674}
675
676/**
Johannes Weiner139e5612014-04-03 14:47:54 -0700677 * __radix_tree_create - create a slot in a radix tree
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 * @root: radix tree root
679 * @index: index key
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700680 * @order: index occupies 2^order aligned slots
Johannes Weiner139e5612014-04-03 14:47:54 -0700681 * @nodep: returns node
682 * @slotp: returns slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 *
Johannes Weiner139e5612014-04-03 14:47:54 -0700684 * Create, if necessary, and return the node and slot for an item
685 * at position @index in the radix tree @root.
686 *
687 * Until there is more than one item in the tree, no nodes are
688 * allocated and @root->rnode is used as a direct slot instead of
689 * pointing to a node, in which case *@nodep will be NULL.
690 *
691 * Returns -ENOMEM, or 0 for success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 */
Johannes Weiner139e5612014-04-03 14:47:54 -0700693int __radix_tree_create(struct radix_tree_root *root, unsigned long index,
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700694 unsigned order, struct radix_tree_node **nodep,
695 void ***slotp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700697 struct radix_tree_node *node = NULL, *child;
698 void **slot = (void **)&root->rnode;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700699 unsigned long maxindex;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700700 unsigned int shift, offset = 0;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700701 unsigned long max = index | ((1UL << order) - 1);
702
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700703 shift = radix_tree_load_root(root, &child, &maxindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 /* Make sure the tree is high enough. */
Matthew Wilcox175542f2016-12-14 15:08:58 -0800706 if (order > 0 && max == ((1UL << order) - 1))
707 max++;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700708 if (max > maxindex) {
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700709 int error = radix_tree_extend(root, max, shift);
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700710 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return error;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700712 shift = error;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700713 child = root->rnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700716 while (shift > order) {
Matthew Wilcoxc12e51b2016-05-20 17:03:10 -0700717 shift -= RADIX_TREE_MAP_SHIFT;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700718 if (child == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /* Have to add a child node. */
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800720 child = radix_tree_node_alloc(root, node, shift,
721 offset, 0, 0);
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700722 if (!child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return -ENOMEM;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700724 rcu_assign_pointer(*slot, node_to_entry(child));
725 if (node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 node->count++;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700727 } else if (!radix_tree_is_internal_node(child))
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700728 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 /* Go a level down */
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700731 node = entry_to_node(child);
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700732 offset = radix_tree_descend(node, &child, index);
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700733 slot = &node->slots[offset];
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700734 }
735
Johannes Weiner139e5612014-04-03 14:47:54 -0700736 if (nodep)
737 *nodep = node;
738 if (slotp)
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700739 *slotp = slot;
Johannes Weiner139e5612014-04-03 14:47:54 -0700740 return 0;
741}
742
Matthew Wilcox175542f2016-12-14 15:08:58 -0800743#ifdef CONFIG_RADIX_TREE_MULTIORDER
744/*
745 * Free any nodes below this node. The tree is presumed to not need
746 * shrinking, and any user data in the tree is presumed to not need a
747 * destructor called on it. If we need to add a destructor, we can
748 * add that functionality later. Note that we may not clear tags or
749 * slots from the tree as an RCU walker may still have a pointer into
750 * this subtree. We could replace the entries with RADIX_TREE_RETRY,
751 * but we'll still have to clear those in rcu_free.
752 */
753static void radix_tree_free_nodes(struct radix_tree_node *node)
754{
755 unsigned offset = 0;
756 struct radix_tree_node *child = entry_to_node(node);
757
758 for (;;) {
759 void *entry = child->slots[offset];
760 if (radix_tree_is_internal_node(entry) &&
761 !is_sibling_entry(child, entry)) {
762 child = entry_to_node(entry);
763 offset = 0;
764 continue;
765 }
766 offset++;
767 while (offset == RADIX_TREE_MAP_SIZE) {
768 struct radix_tree_node *old = child;
769 offset = child->offset + 1;
770 child = child->parent;
771 radix_tree_node_free(old);
772 if (old == entry_to_node(node))
773 return;
774 }
775 }
776}
777
778static inline int insert_entries(struct radix_tree_node *node, void **slot,
779 void *item, unsigned order, bool replace)
780{
781 struct radix_tree_node *child;
782 unsigned i, n, tag, offset, tags = 0;
783
784 if (node) {
Matthew Wilcoxe157b552016-12-14 15:09:01 -0800785 if (order > node->shift)
786 n = 1 << (order - node->shift);
787 else
788 n = 1;
Matthew Wilcox175542f2016-12-14 15:08:58 -0800789 offset = get_slot_offset(node, slot);
790 } else {
791 n = 1;
792 offset = 0;
793 }
794
795 if (n > 1) {
796 offset = offset & ~(n - 1);
797 slot = &node->slots[offset];
798 }
799 child = node_to_entry(slot);
800
801 for (i = 0; i < n; i++) {
802 if (slot[i]) {
803 if (replace) {
804 node->count--;
805 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
806 if (tag_get(node, tag, offset + i))
807 tags |= 1 << tag;
808 } else
809 return -EEXIST;
810 }
811 }
812
813 for (i = 0; i < n; i++) {
814 struct radix_tree_node *old = slot[i];
815 if (i) {
816 rcu_assign_pointer(slot[i], child);
817 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
818 if (tags & (1 << tag))
819 tag_clear(node, tag, offset + i);
820 } else {
821 rcu_assign_pointer(slot[i], item);
822 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
823 if (tags & (1 << tag))
824 tag_set(node, tag, offset);
825 }
826 if (radix_tree_is_internal_node(old) &&
Matthew Wilcoxe157b552016-12-14 15:09:01 -0800827 !is_sibling_entry(node, old) &&
828 (old != RADIX_TREE_RETRY))
Matthew Wilcox175542f2016-12-14 15:08:58 -0800829 radix_tree_free_nodes(old);
830 if (radix_tree_exceptional_entry(old))
831 node->exceptional--;
832 }
833 if (node) {
834 node->count += n;
835 if (radix_tree_exceptional_entry(item))
836 node->exceptional += n;
837 }
838 return n;
839}
840#else
841static inline int insert_entries(struct radix_tree_node *node, void **slot,
842 void *item, unsigned order, bool replace)
843{
844 if (*slot)
845 return -EEXIST;
846 rcu_assign_pointer(*slot, item);
847 if (node) {
848 node->count++;
849 if (radix_tree_exceptional_entry(item))
850 node->exceptional++;
851 }
852 return 1;
853}
854#endif
855
Johannes Weiner139e5612014-04-03 14:47:54 -0700856/**
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700857 * __radix_tree_insert - insert into a radix tree
Johannes Weiner139e5612014-04-03 14:47:54 -0700858 * @root: radix tree root
859 * @index: index key
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700860 * @order: key covers the 2^order indices around index
Johannes Weiner139e5612014-04-03 14:47:54 -0700861 * @item: item to insert
862 *
863 * Insert an item into the radix tree at position @index.
864 */
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700865int __radix_tree_insert(struct radix_tree_root *root, unsigned long index,
866 unsigned order, void *item)
Johannes Weiner139e5612014-04-03 14:47:54 -0700867{
868 struct radix_tree_node *node;
869 void **slot;
870 int error;
871
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700872 BUG_ON(radix_tree_is_internal_node(item));
Johannes Weiner139e5612014-04-03 14:47:54 -0700873
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700874 error = __radix_tree_create(root, index, order, &node, &slot);
Johannes Weiner139e5612014-04-03 14:47:54 -0700875 if (error)
876 return error;
Matthew Wilcox175542f2016-12-14 15:08:58 -0800877
878 error = insert_entries(node, slot, item, order, false);
879 if (error < 0)
880 return error;
Christoph Lameter201b6262005-09-06 15:16:46 -0700881
Nick Piggin612d6c12006-06-23 02:03:22 -0700882 if (node) {
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700883 unsigned offset = get_slot_offset(node, slot);
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700884 BUG_ON(tag_get(node, 0, offset));
885 BUG_ON(tag_get(node, 1, offset));
886 BUG_ON(tag_get(node, 2, offset));
Nick Piggin612d6c12006-06-23 02:03:22 -0700887 } else {
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700888 BUG_ON(root_tags_get(root));
Nick Piggin612d6c12006-06-23 02:03:22 -0700889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return 0;
892}
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700893EXPORT_SYMBOL(__radix_tree_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Johannes Weiner139e5612014-04-03 14:47:54 -0700895/**
896 * __radix_tree_lookup - lookup an item in a radix tree
897 * @root: radix tree root
898 * @index: index key
899 * @nodep: returns node
900 * @slotp: returns slot
901 *
902 * Lookup and return the item at position @index in the radix
903 * tree @root.
904 *
905 * Until there is more than one item in the tree, no nodes are
906 * allocated and @root->rnode is used as a direct slot instead of
907 * pointing to a node, in which case *@nodep will be NULL.
Hans Reisera4331362005-11-07 00:59:29 -0800908 */
Johannes Weiner139e5612014-04-03 14:47:54 -0700909void *__radix_tree_lookup(struct radix_tree_root *root, unsigned long index,
910 struct radix_tree_node **nodep, void ***slotp)
Hans Reisera4331362005-11-07 00:59:29 -0800911{
Johannes Weiner139e5612014-04-03 14:47:54 -0700912 struct radix_tree_node *node, *parent;
Matthew Wilcox85829952016-05-20 17:02:20 -0700913 unsigned long maxindex;
Johannes Weiner139e5612014-04-03 14:47:54 -0700914 void **slot;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800915
Matthew Wilcox85829952016-05-20 17:02:20 -0700916 restart:
917 parent = NULL;
918 slot = (void **)&root->rnode;
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700919 radix_tree_load_root(root, &node, &maxindex);
Matthew Wilcox85829952016-05-20 17:02:20 -0700920 if (index > maxindex)
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800921 return NULL;
922
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700923 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox85829952016-05-20 17:02:20 -0700924 unsigned offset;
Johannes Weiner139e5612014-04-03 14:47:54 -0700925
Matthew Wilcox85829952016-05-20 17:02:20 -0700926 if (node == RADIX_TREE_RETRY)
927 goto restart;
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700928 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700929 offset = radix_tree_descend(parent, &node, index);
Matthew Wilcox85829952016-05-20 17:02:20 -0700930 slot = parent->slots + offset;
931 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800932
Johannes Weiner139e5612014-04-03 14:47:54 -0700933 if (nodep)
934 *nodep = parent;
935 if (slotp)
936 *slotp = slot;
937 return node;
Huang Shijieb72b71c2009-06-16 15:33:42 -0700938}
939
940/**
941 * radix_tree_lookup_slot - lookup a slot in a radix tree
942 * @root: radix tree root
943 * @index: index key
944 *
945 * Returns: the slot corresponding to the position @index in the
946 * radix tree @root. This is useful for update-if-exists operations.
947 *
948 * This function can be called under rcu_read_lock iff the slot is not
949 * modified by radix_tree_replace_slot, otherwise it must be called
950 * exclusive from other writers. Any dereference of the slot must be done
951 * using radix_tree_deref_slot.
952 */
953void **radix_tree_lookup_slot(struct radix_tree_root *root, unsigned long index)
954{
Johannes Weiner139e5612014-04-03 14:47:54 -0700955 void **slot;
956
957 if (!__radix_tree_lookup(root, index, NULL, &slot))
958 return NULL;
959 return slot;
Hans Reisera4331362005-11-07 00:59:29 -0800960}
961EXPORT_SYMBOL(radix_tree_lookup_slot);
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963/**
964 * radix_tree_lookup - perform lookup operation on a radix tree
965 * @root: radix tree root
966 * @index: index key
967 *
968 * Lookup the item at the position @index in the radix tree @root.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800969 *
970 * This function can be called under rcu_read_lock, however the caller
971 * must manage lifetimes of leaf nodes (eg. RCU may also be used to free
972 * them safely). No RCU barriers are required to access or modify the
973 * returned item, however.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 */
975void *radix_tree_lookup(struct radix_tree_root *root, unsigned long index)
976{
Johannes Weiner139e5612014-04-03 14:47:54 -0700977 return __radix_tree_lookup(root, index, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979EXPORT_SYMBOL(radix_tree_lookup);
980
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -0800981static inline int slot_count(struct radix_tree_node *node,
982 void **slot)
983{
984 int n = 1;
985#ifdef CONFIG_RADIX_TREE_MULTIORDER
986 void *ptr = node_to_entry(slot);
987 unsigned offset = get_slot_offset(node, slot);
988 int i;
989
990 for (i = 1; offset + i < RADIX_TREE_MAP_SIZE; i++) {
991 if (node->slots[offset + i] != ptr)
992 break;
993 n++;
994 }
995#endif
996 return n;
997}
998
Johannes Weiner6d75f362016-12-12 16:43:43 -0800999static void replace_slot(struct radix_tree_root *root,
1000 struct radix_tree_node *node,
1001 void **slot, void *item,
1002 bool warn_typeswitch)
1003{
1004 void *old = rcu_dereference_raw(*slot);
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001005 int count, exceptional;
Johannes Weiner6d75f362016-12-12 16:43:43 -08001006
1007 WARN_ON_ONCE(radix_tree_is_internal_node(item));
Johannes Weiner6d75f362016-12-12 16:43:43 -08001008
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001009 count = !!item - !!old;
Johannes Weiner6d75f362016-12-12 16:43:43 -08001010 exceptional = !!radix_tree_exceptional_entry(item) -
1011 !!radix_tree_exceptional_entry(old);
1012
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001013 WARN_ON_ONCE(warn_typeswitch && (count || exceptional));
Johannes Weiner6d75f362016-12-12 16:43:43 -08001014
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001015 if (node) {
1016 node->count += count;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001017 if (exceptional) {
1018 exceptional *= slot_count(node, slot);
1019 node->exceptional += exceptional;
1020 }
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001021 }
Johannes Weiner6d75f362016-12-12 16:43:43 -08001022
1023 rcu_assign_pointer(*slot, item);
1024}
1025
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001026static inline void delete_sibling_entries(struct radix_tree_node *node,
1027 void **slot)
1028{
1029#ifdef CONFIG_RADIX_TREE_MULTIORDER
1030 bool exceptional = radix_tree_exceptional_entry(*slot);
1031 void *ptr = node_to_entry(slot);
1032 unsigned offset = get_slot_offset(node, slot);
1033 int i;
1034
1035 for (i = 1; offset + i < RADIX_TREE_MAP_SIZE; i++) {
1036 if (node->slots[offset + i] != ptr)
1037 break;
1038 node->slots[offset + i] = NULL;
1039 node->count--;
1040 if (exceptional)
1041 node->exceptional--;
1042 }
1043#endif
1044}
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046/**
Johannes Weinerf7942432016-12-12 16:43:41 -08001047 * __radix_tree_replace - replace item in a slot
Johannes Weiner4d693d02016-12-12 16:43:49 -08001048 * @root: radix tree root
1049 * @node: pointer to tree node
1050 * @slot: pointer to slot in @node
1051 * @item: new item to store in the slot.
1052 * @update_node: callback for changing leaf nodes
1053 * @private: private data to pass to @update_node
Johannes Weinerf7942432016-12-12 16:43:41 -08001054 *
1055 * For use with __radix_tree_lookup(). Caller must hold tree write locked
1056 * across slot lookup and replacement.
1057 */
1058void __radix_tree_replace(struct radix_tree_root *root,
1059 struct radix_tree_node *node,
Johannes Weiner4d693d02016-12-12 16:43:49 -08001060 void **slot, void *item,
1061 radix_tree_update_node_t update_node, void *private)
Johannes Weinerf7942432016-12-12 16:43:41 -08001062{
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001063 if (!item)
1064 delete_sibling_entries(node, slot);
Johannes Weiner6d75f362016-12-12 16:43:43 -08001065 /*
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001066 * This function supports replacing exceptional entries and
1067 * deleting entries, but that needs accounting against the
1068 * node unless the slot is root->rnode.
Johannes Weiner6d75f362016-12-12 16:43:43 -08001069 */
1070 replace_slot(root, node, slot, item,
1071 !node && slot != (void **)&root->rnode);
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001072
Johannes Weiner4d693d02016-12-12 16:43:49 -08001073 if (!node)
1074 return;
1075
1076 if (update_node)
1077 update_node(node, private);
1078
1079 delete_node(root, node, update_node, private);
Johannes Weiner6d75f362016-12-12 16:43:43 -08001080}
Johannes Weinerf7942432016-12-12 16:43:41 -08001081
Johannes Weiner6d75f362016-12-12 16:43:43 -08001082/**
1083 * radix_tree_replace_slot - replace item in a slot
1084 * @root: radix tree root
1085 * @slot: pointer to slot
1086 * @item: new item to store in the slot.
1087 *
1088 * For use with radix_tree_lookup_slot(), radix_tree_gang_lookup_slot(),
1089 * radix_tree_gang_lookup_tag_slot(). Caller must hold tree write locked
1090 * across slot lookup and replacement.
1091 *
1092 * NOTE: This cannot be used to switch between non-entries (empty slots),
1093 * regular entries, and exceptional entries, as that requires accounting
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001094 * inside the radix tree node. When switching from one type of entry or
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001095 * deleting, use __radix_tree_lookup() and __radix_tree_replace() or
1096 * radix_tree_iter_replace().
Johannes Weiner6d75f362016-12-12 16:43:43 -08001097 */
1098void radix_tree_replace_slot(struct radix_tree_root *root,
1099 void **slot, void *item)
1100{
1101 replace_slot(root, NULL, slot, item, true);
Johannes Weinerf7942432016-12-12 16:43:41 -08001102}
1103
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001104/**
1105 * radix_tree_iter_replace - replace item in a slot
1106 * @root: radix tree root
1107 * @slot: pointer to slot
1108 * @item: new item to store in the slot.
1109 *
1110 * For use with radix_tree_split() and radix_tree_for_each_slot().
1111 * Caller must hold tree write locked across split and replacement.
1112 */
1113void radix_tree_iter_replace(struct radix_tree_root *root,
1114 const struct radix_tree_iter *iter, void **slot, void *item)
1115{
1116 __radix_tree_replace(root, iter->node, slot, item, NULL, NULL);
1117}
1118
Matthew Wilcox175542f2016-12-14 15:08:58 -08001119#ifdef CONFIG_RADIX_TREE_MULTIORDER
1120/**
1121 * radix_tree_join - replace multiple entries with one multiorder entry
1122 * @root: radix tree root
1123 * @index: an index inside the new entry
1124 * @order: order of the new entry
1125 * @item: new entry
1126 *
1127 * Call this function to replace several entries with one larger entry.
1128 * The existing entries are presumed to not need freeing as a result of
1129 * this call.
1130 *
1131 * The replacement entry will have all the tags set on it that were set
1132 * on any of the entries it is replacing.
1133 */
1134int radix_tree_join(struct radix_tree_root *root, unsigned long index,
1135 unsigned order, void *item)
1136{
1137 struct radix_tree_node *node;
1138 void **slot;
1139 int error;
1140
1141 BUG_ON(radix_tree_is_internal_node(item));
1142
1143 error = __radix_tree_create(root, index, order, &node, &slot);
1144 if (!error)
1145 error = insert_entries(node, slot, item, order, true);
1146 if (error > 0)
1147 error = 0;
1148
1149 return error;
1150}
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001151
1152/**
1153 * radix_tree_split - Split an entry into smaller entries
1154 * @root: radix tree root
1155 * @index: An index within the large entry
1156 * @order: Order of new entries
1157 *
1158 * Call this function as the first step in replacing a multiorder entry
1159 * with several entries of lower order. After this function returns,
1160 * loop over the relevant portion of the tree using radix_tree_for_each_slot()
1161 * and call radix_tree_iter_replace() to set up each new entry.
1162 *
1163 * The tags from this entry are replicated to all the new entries.
1164 *
1165 * The radix tree should be locked against modification during the entire
1166 * replacement operation. Lock-free lookups will see RADIX_TREE_RETRY which
1167 * should prompt RCU walkers to restart the lookup from the root.
1168 */
1169int radix_tree_split(struct radix_tree_root *root, unsigned long index,
1170 unsigned order)
1171{
1172 struct radix_tree_node *parent, *node, *child;
1173 void **slot;
1174 unsigned int offset, end;
1175 unsigned n, tag, tags = 0;
1176
1177 if (!__radix_tree_lookup(root, index, &parent, &slot))
1178 return -ENOENT;
1179 if (!parent)
1180 return -ENOENT;
1181
1182 offset = get_slot_offset(parent, slot);
1183
1184 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1185 if (tag_get(parent, tag, offset))
1186 tags |= 1 << tag;
1187
1188 for (end = offset + 1; end < RADIX_TREE_MAP_SIZE; end++) {
1189 if (!is_sibling_entry(parent, parent->slots[end]))
1190 break;
1191 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1192 if (tags & (1 << tag))
1193 tag_set(parent, tag, end);
1194 /* rcu_assign_pointer ensures tags are set before RETRY */
1195 rcu_assign_pointer(parent->slots[end], RADIX_TREE_RETRY);
1196 }
1197 rcu_assign_pointer(parent->slots[offset], RADIX_TREE_RETRY);
1198 parent->exceptional -= (end - offset);
1199
1200 if (order == parent->shift)
1201 return 0;
1202 if (order > parent->shift) {
1203 while (offset < end)
1204 offset += insert_entries(parent, &parent->slots[offset],
1205 RADIX_TREE_RETRY, order, true);
1206 return 0;
1207 }
1208
1209 node = parent;
1210
1211 for (;;) {
1212 if (node->shift > order) {
Matthew Wilcoxe8de4342016-12-14 15:09:31 -08001213 child = radix_tree_node_alloc(root, node,
1214 node->shift - RADIX_TREE_MAP_SHIFT,
1215 offset, 0, 0);
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001216 if (!child)
1217 goto nomem;
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001218 if (node != parent) {
1219 node->count++;
1220 node->slots[offset] = node_to_entry(child);
1221 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1222 if (tags & (1 << tag))
1223 tag_set(node, tag, offset);
1224 }
1225
1226 node = child;
1227 offset = 0;
1228 continue;
1229 }
1230
1231 n = insert_entries(node, &node->slots[offset],
1232 RADIX_TREE_RETRY, order, false);
1233 BUG_ON(n > RADIX_TREE_MAP_SIZE);
1234
1235 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1236 if (tags & (1 << tag))
1237 tag_set(node, tag, offset);
1238 offset += n;
1239
1240 while (offset == RADIX_TREE_MAP_SIZE) {
1241 if (node == parent)
1242 break;
1243 offset = node->offset;
1244 child = node;
1245 node = node->parent;
1246 rcu_assign_pointer(node->slots[offset],
1247 node_to_entry(child));
1248 offset++;
1249 }
1250 if ((node == parent) && (offset == end))
1251 return 0;
1252 }
1253
1254 nomem:
1255 /* Shouldn't happen; did user forget to preload? */
1256 /* TODO: free all the allocated nodes */
1257 WARN_ON(1);
1258 return -ENOMEM;
1259}
Matthew Wilcox175542f2016-12-14 15:08:58 -08001260#endif
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262/**
1263 * radix_tree_tag_set - set a tag on a radix tree node
1264 * @root: radix tree root
1265 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001266 * @tag: tag index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 *
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001268 * Set the search tag (which must be < RADIX_TREE_MAX_TAGS)
1269 * corresponding to @index in the radix tree. From
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 * the root all the way down to the leaf node.
1271 *
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001272 * Returns the address of the tagged item. Setting a tag on a not-present
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 * item is a bug.
1274 */
1275void *radix_tree_tag_set(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001276 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
Ross Zwislerfb969902016-05-20 17:02:32 -07001278 struct radix_tree_node *node, *parent;
1279 unsigned long maxindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001281 radix_tree_load_root(root, &node, &maxindex);
Ross Zwislerfb969902016-05-20 17:02:32 -07001282 BUG_ON(index > maxindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001284 while (radix_tree_is_internal_node(node)) {
Ross Zwislerfb969902016-05-20 17:02:32 -07001285 unsigned offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001287 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001288 offset = radix_tree_descend(parent, &node, index);
Ross Zwislerfb969902016-05-20 17:02:32 -07001289 BUG_ON(!node);
1290
1291 if (!tag_get(parent, tag, offset))
1292 tag_set(parent, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
1294
Nick Piggin612d6c12006-06-23 02:03:22 -07001295 /* set the root's tag bit */
Ross Zwislerfb969902016-05-20 17:02:32 -07001296 if (!root_tag_get(root, tag))
Nick Piggin612d6c12006-06-23 02:03:22 -07001297 root_tag_set(root, tag);
1298
Ross Zwislerfb969902016-05-20 17:02:32 -07001299 return node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301EXPORT_SYMBOL(radix_tree_tag_set);
1302
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001303static void node_tag_clear(struct radix_tree_root *root,
1304 struct radix_tree_node *node,
1305 unsigned int tag, unsigned int offset)
1306{
1307 while (node) {
1308 if (!tag_get(node, tag, offset))
1309 return;
1310 tag_clear(node, tag, offset);
1311 if (any_tag_set(node, tag))
1312 return;
1313
1314 offset = node->offset;
1315 node = node->parent;
1316 }
1317
1318 /* clear the root's tag bit */
1319 if (root_tag_get(root, tag))
1320 root_tag_clear(root, tag);
1321}
1322
Matthew Wilcox9498d2b2016-12-14 15:08:37 -08001323static void node_tag_set(struct radix_tree_root *root,
1324 struct radix_tree_node *node,
1325 unsigned int tag, unsigned int offset)
1326{
1327 while (node) {
1328 if (tag_get(node, tag, offset))
1329 return;
1330 tag_set(node, tag, offset);
1331 offset = node->offset;
1332 node = node->parent;
1333 }
1334
1335 if (!root_tag_get(root, tag))
1336 root_tag_set(root, tag);
1337}
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339/**
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001340 * radix_tree_iter_tag_set - set a tag on the current iterator entry
1341 * @root: radix tree root
1342 * @iter: iterator state
1343 * @tag: tag to set
1344 */
1345void radix_tree_iter_tag_set(struct radix_tree_root *root,
1346 const struct radix_tree_iter *iter, unsigned int tag)
1347{
1348 node_tag_set(root, iter->node, tag, iter_offset(iter));
1349}
1350
1351/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 * radix_tree_tag_clear - clear a tag on a radix tree node
1353 * @root: radix tree root
1354 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001355 * @tag: tag index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 *
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001357 * Clear the search tag (which must be < RADIX_TREE_MAX_TAGS)
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001358 * corresponding to @index in the radix tree. If this causes
1359 * the leaf node to have no tags set then clear the tag in the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 * next-to-leaf node, etc.
1361 *
1362 * Returns the address of the tagged item on success, else NULL. ie:
1363 * has the same return value and semantics as radix_tree_lookup().
1364 */
1365void *radix_tree_tag_clear(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001366 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Ross Zwisler00f47b52016-05-20 17:02:35 -07001368 struct radix_tree_node *node, *parent;
1369 unsigned long maxindex;
Hugh Dickinse2bdb932012-01-12 17:20:41 -08001370 int uninitialized_var(offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001372 radix_tree_load_root(root, &node, &maxindex);
Ross Zwisler00f47b52016-05-20 17:02:35 -07001373 if (index > maxindex)
1374 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Ross Zwisler00f47b52016-05-20 17:02:35 -07001376 parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001378 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001379 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001380 offset = radix_tree_descend(parent, &node, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
1382
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001383 if (node)
1384 node_tag_clear(root, parent, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Ross Zwisler00f47b52016-05-20 17:02:35 -07001386 return node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388EXPORT_SYMBOL(radix_tree_tag_clear);
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390/**
Marcelo Tosatti32605a12005-09-06 15:16:48 -07001391 * radix_tree_tag_get - get a tag on a radix tree node
1392 * @root: radix tree root
1393 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001394 * @tag: tag index (< RADIX_TREE_MAX_TAGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 *
Marcelo Tosatti32605a12005-09-06 15:16:48 -07001396 * Return values:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 *
Nick Piggin612d6c12006-06-23 02:03:22 -07001398 * 0: tag not present or not set
1399 * 1: tag set
David Howellsce826532010-04-06 22:36:20 +01001400 *
1401 * Note that the return value of this function may not be relied on, even if
1402 * the RCU lock is held, unless tag modification and node deletion are excluded
1403 * from concurrency.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 */
1405int radix_tree_tag_get(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001406 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
Ross Zwisler4589ba62016-05-20 17:02:38 -07001408 struct radix_tree_node *node, *parent;
1409 unsigned long maxindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Nick Piggin612d6c12006-06-23 02:03:22 -07001411 if (!root_tag_get(root, tag))
1412 return 0;
1413
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001414 radix_tree_load_root(root, &node, &maxindex);
Ross Zwisler4589ba62016-05-20 17:02:38 -07001415 if (index > maxindex)
1416 return 0;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001417 if (node == NULL)
1418 return 0;
1419
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001420 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001421 unsigned offset;
Ross Zwisler4589ba62016-05-20 17:02:38 -07001422
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001423 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001424 offset = radix_tree_descend(parent, &node, index);
Ross Zwisler4589ba62016-05-20 17:02:38 -07001425
1426 if (!node)
1427 return 0;
1428 if (!tag_get(parent, tag, offset))
1429 return 0;
1430 if (node == RADIX_TREE_RETRY)
1431 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
Ross Zwisler4589ba62016-05-20 17:02:38 -07001433
1434 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435}
1436EXPORT_SYMBOL(radix_tree_tag_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Ross Zwisler21ef5332016-05-20 17:02:26 -07001438static inline void __set_iter_shift(struct radix_tree_iter *iter,
1439 unsigned int shift)
1440{
1441#ifdef CONFIG_RADIX_TREE_MULTIORDER
1442 iter->shift = shift;
1443#endif
1444}
1445
Matthew Wilcox148deab2016-12-14 15:08:49 -08001446/* Construct iter->tags bit-mask from node->tags[tag] array */
1447static void set_iter_tags(struct radix_tree_iter *iter,
1448 struct radix_tree_node *node, unsigned offset,
1449 unsigned tag)
1450{
1451 unsigned tag_long = offset / BITS_PER_LONG;
1452 unsigned tag_bit = offset % BITS_PER_LONG;
1453
1454 iter->tags = node->tags[tag][tag_long] >> tag_bit;
1455
1456 /* This never happens if RADIX_TREE_TAG_LONGS == 1 */
1457 if (tag_long < RADIX_TREE_TAG_LONGS - 1) {
1458 /* Pick tags from next element */
1459 if (tag_bit)
1460 iter->tags |= node->tags[tag][tag_long + 1] <<
1461 (BITS_PER_LONG - tag_bit);
1462 /* Clip chunk size, here only BITS_PER_LONG tags */
1463 iter->next_index = __radix_tree_iter_add(iter, BITS_PER_LONG);
1464 }
1465}
1466
1467#ifdef CONFIG_RADIX_TREE_MULTIORDER
1468static void **skip_siblings(struct radix_tree_node **nodep,
1469 void **slot, struct radix_tree_iter *iter)
1470{
1471 void *sib = node_to_entry(slot - 1);
1472
1473 while (iter->index < iter->next_index) {
1474 *nodep = rcu_dereference_raw(*slot);
1475 if (*nodep && *nodep != sib)
1476 return slot;
1477 slot++;
1478 iter->index = __radix_tree_iter_add(iter, 1);
1479 iter->tags >>= 1;
1480 }
1481
1482 *nodep = NULL;
1483 return NULL;
1484}
1485
1486void ** __radix_tree_next_slot(void **slot, struct radix_tree_iter *iter,
1487 unsigned flags)
1488{
1489 unsigned tag = flags & RADIX_TREE_ITER_TAG_MASK;
1490 struct radix_tree_node *node = rcu_dereference_raw(*slot);
1491
1492 slot = skip_siblings(&node, slot, iter);
1493
1494 while (radix_tree_is_internal_node(node)) {
1495 unsigned offset;
1496 unsigned long next_index;
1497
1498 if (node == RADIX_TREE_RETRY)
1499 return slot;
1500 node = entry_to_node(node);
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001501 iter->node = node;
Matthew Wilcox148deab2016-12-14 15:08:49 -08001502 iter->shift = node->shift;
1503
1504 if (flags & RADIX_TREE_ITER_TAGGED) {
1505 offset = radix_tree_find_next_bit(node, tag, 0);
1506 if (offset == RADIX_TREE_MAP_SIZE)
1507 return NULL;
1508 slot = &node->slots[offset];
1509 iter->index = __radix_tree_iter_add(iter, offset);
1510 set_iter_tags(iter, node, offset, tag);
1511 node = rcu_dereference_raw(*slot);
1512 } else {
1513 offset = 0;
1514 slot = &node->slots[0];
1515 for (;;) {
1516 node = rcu_dereference_raw(*slot);
1517 if (node)
1518 break;
1519 slot++;
1520 offset++;
1521 if (offset == RADIX_TREE_MAP_SIZE)
1522 return NULL;
1523 }
1524 iter->index = __radix_tree_iter_add(iter, offset);
1525 }
1526 if ((flags & RADIX_TREE_ITER_CONTIG) && (offset > 0))
1527 goto none;
1528 next_index = (iter->index | shift_maxindex(iter->shift)) + 1;
1529 if (next_index < iter->next_index)
1530 iter->next_index = next_index;
1531 }
1532
1533 return slot;
1534 none:
1535 iter->next_index = 0;
1536 return NULL;
1537}
1538EXPORT_SYMBOL(__radix_tree_next_slot);
1539#else
1540static void **skip_siblings(struct radix_tree_node **nodep,
1541 void **slot, struct radix_tree_iter *iter)
1542{
1543 return slot;
1544}
1545#endif
1546
1547void **radix_tree_iter_resume(void **slot, struct radix_tree_iter *iter)
1548{
1549 struct radix_tree_node *node;
1550
1551 slot++;
1552 iter->index = __radix_tree_iter_add(iter, 1);
1553 node = rcu_dereference_raw(*slot);
1554 skip_siblings(&node, slot, iter);
1555 iter->next_index = iter->index;
1556 iter->tags = 0;
1557 return NULL;
1558}
1559EXPORT_SYMBOL(radix_tree_iter_resume);
1560
Fengguang Wu6df8ba42007-10-16 01:24:33 -07001561/**
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001562 * radix_tree_next_chunk - find next chunk of slots for iteration
1563 *
1564 * @root: radix tree root
1565 * @iter: iterator state
1566 * @flags: RADIX_TREE_ITER_* flags and tag index
1567 * Returns: pointer to chunk first slot, or NULL if iteration is over
1568 */
1569void **radix_tree_next_chunk(struct radix_tree_root *root,
1570 struct radix_tree_iter *iter, unsigned flags)
1571{
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001572 unsigned tag = flags & RADIX_TREE_ITER_TAG_MASK;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001573 struct radix_tree_node *node, *child;
Ross Zwisler21ef5332016-05-20 17:02:26 -07001574 unsigned long index, offset, maxindex;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001575
1576 if ((flags & RADIX_TREE_ITER_TAGGED) && !root_tag_get(root, tag))
1577 return NULL;
1578
1579 /*
1580 * Catch next_index overflow after ~0UL. iter->index never overflows
1581 * during iterating; it can be zero only at the beginning.
1582 * And we cannot overflow iter->next_index in a single step,
1583 * because RADIX_TREE_MAP_SHIFT < BITS_PER_LONG.
Konstantin Khlebnikovfffaee32012-06-05 21:36:33 +04001584 *
1585 * This condition also used by radix_tree_next_slot() to stop
Matthew Wilcox91b9677c2016-12-14 15:08:31 -08001586 * contiguous iterating, and forbid switching to the next chunk.
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001587 */
1588 index = iter->next_index;
1589 if (!index && iter->index)
1590 return NULL;
1591
Ross Zwisler21ef5332016-05-20 17:02:26 -07001592 restart:
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001593 radix_tree_load_root(root, &child, &maxindex);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001594 if (index > maxindex)
1595 return NULL;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001596 if (!child)
1597 return NULL;
Ross Zwisler21ef5332016-05-20 17:02:26 -07001598
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001599 if (!radix_tree_is_internal_node(child)) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001600 /* Single-slot tree */
Ross Zwisler21ef5332016-05-20 17:02:26 -07001601 iter->index = index;
1602 iter->next_index = maxindex + 1;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001603 iter->tags = 1;
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001604 iter->node = NULL;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001605 __set_iter_shift(iter, 0);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001606 return (void **)&root->rnode;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001607 }
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001608
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001609 do {
1610 node = entry_to_node(child);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001611 offset = radix_tree_descend(node, &child, index);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001612
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001613 if ((flags & RADIX_TREE_ITER_TAGGED) ?
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001614 !tag_get(node, tag, offset) : !child) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001615 /* Hole detected */
1616 if (flags & RADIX_TREE_ITER_CONTIG)
1617 return NULL;
1618
1619 if (flags & RADIX_TREE_ITER_TAGGED)
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -08001620 offset = radix_tree_find_next_bit(node, tag,
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001621 offset + 1);
1622 else
1623 while (++offset < RADIX_TREE_MAP_SIZE) {
Ross Zwisler21ef5332016-05-20 17:02:26 -07001624 void *slot = node->slots[offset];
1625 if (is_sibling_entry(node, slot))
1626 continue;
1627 if (slot)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001628 break;
1629 }
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001630 index &= ~node_maxindex(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001631 index += offset << node->shift;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001632 /* Overflow after ~0UL */
1633 if (!index)
1634 return NULL;
1635 if (offset == RADIX_TREE_MAP_SIZE)
1636 goto restart;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001637 child = rcu_dereference_raw(node->slots[offset]);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001638 }
1639
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001640 if (!child)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001641 goto restart;
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001642 if (child == RADIX_TREE_RETRY)
1643 break;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001644 } while (radix_tree_is_internal_node(child));
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001645
1646 /* Update the iterator state */
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001647 iter->index = (index &~ node_maxindex(node)) | (offset << node->shift);
1648 iter->next_index = (index | node_maxindex(node)) + 1;
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001649 iter->node = node;
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001650 __set_iter_shift(iter, node->shift);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001651
Matthew Wilcox148deab2016-12-14 15:08:49 -08001652 if (flags & RADIX_TREE_ITER_TAGGED)
1653 set_iter_tags(iter, node, offset, tag);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001654
1655 return node->slots + offset;
1656}
1657EXPORT_SYMBOL(radix_tree_next_chunk);
1658
1659/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 * radix_tree_gang_lookup - perform multiple lookup on a radix tree
1661 * @root: radix tree root
1662 * @results: where the results of the lookup are placed
1663 * @first_index: start the lookup from this key
1664 * @max_items: place up to this many items at *results
1665 *
1666 * Performs an index-ascending scan of the tree for present items. Places
1667 * them at *@results and returns the number of items which were placed at
1668 * *@results.
1669 *
1670 * The implementation is naive.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001671 *
1672 * Like radix_tree_lookup, radix_tree_gang_lookup may be called under
1673 * rcu_read_lock. In this case, rather than the returned results being
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001674 * an atomic snapshot of the tree at a single point in time, the
1675 * semantics of an RCU protected gang lookup are as though multiple
1676 * radix_tree_lookups have been issued in individual locks, and results
1677 * stored in 'results'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 */
1679unsigned int
1680radix_tree_gang_lookup(struct radix_tree_root *root, void **results,
1681 unsigned long first_index, unsigned int max_items)
1682{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001683 struct radix_tree_iter iter;
1684 void **slot;
1685 unsigned int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001687 if (unlikely(!max_items))
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001688 return 0;
1689
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001690 radix_tree_for_each_slot(slot, root, &iter, first_index) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001691 results[ret] = rcu_dereference_raw(*slot);
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001692 if (!results[ret])
1693 continue;
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001694 if (radix_tree_is_internal_node(results[ret])) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001695 slot = radix_tree_iter_retry(&iter);
1696 continue;
1697 }
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001698 if (++ret == max_items)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 return ret;
1703}
1704EXPORT_SYMBOL(radix_tree_gang_lookup);
1705
Nick Piggin47feff22008-07-25 19:45:29 -07001706/**
1707 * radix_tree_gang_lookup_slot - perform multiple slot lookup on radix tree
1708 * @root: radix tree root
1709 * @results: where the results of the lookup are placed
Hugh Dickins63286502011-08-03 16:21:18 -07001710 * @indices: where their indices should be placed (but usually NULL)
Nick Piggin47feff22008-07-25 19:45:29 -07001711 * @first_index: start the lookup from this key
1712 * @max_items: place up to this many items at *results
1713 *
1714 * Performs an index-ascending scan of the tree for present items. Places
1715 * their slots at *@results and returns the number of items which were
1716 * placed at *@results.
1717 *
1718 * The implementation is naive.
1719 *
1720 * Like radix_tree_gang_lookup as far as RCU and locking goes. Slots must
1721 * be dereferenced with radix_tree_deref_slot, and if using only RCU
1722 * protection, radix_tree_deref_slot may fail requiring a retry.
1723 */
1724unsigned int
Hugh Dickins63286502011-08-03 16:21:18 -07001725radix_tree_gang_lookup_slot(struct radix_tree_root *root,
1726 void ***results, unsigned long *indices,
Nick Piggin47feff22008-07-25 19:45:29 -07001727 unsigned long first_index, unsigned int max_items)
1728{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001729 struct radix_tree_iter iter;
1730 void **slot;
1731 unsigned int ret = 0;
Nick Piggin47feff22008-07-25 19:45:29 -07001732
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001733 if (unlikely(!max_items))
Nick Piggin47feff22008-07-25 19:45:29 -07001734 return 0;
1735
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001736 radix_tree_for_each_slot(slot, root, &iter, first_index) {
1737 results[ret] = slot;
Hugh Dickins63286502011-08-03 16:21:18 -07001738 if (indices)
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001739 indices[ret] = iter.index;
1740 if (++ret == max_items)
Nick Piggin47feff22008-07-25 19:45:29 -07001741 break;
Nick Piggin47feff22008-07-25 19:45:29 -07001742 }
1743
1744 return ret;
1745}
1746EXPORT_SYMBOL(radix_tree_gang_lookup_slot);
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748/**
1749 * radix_tree_gang_lookup_tag - perform multiple lookup on a radix tree
1750 * based on a tag
1751 * @root: radix tree root
1752 * @results: where the results of the lookup are placed
1753 * @first_index: start the lookup from this key
1754 * @max_items: place up to this many items at *results
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001755 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 *
1757 * Performs an index-ascending scan of the tree for present items which
1758 * have the tag indexed by @tag set. Places the items at *@results and
1759 * returns the number of items which were placed at *@results.
1760 */
1761unsigned int
1762radix_tree_gang_lookup_tag(struct radix_tree_root *root, void **results,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001763 unsigned long first_index, unsigned int max_items,
1764 unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001766 struct radix_tree_iter iter;
1767 void **slot;
1768 unsigned int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001770 if (unlikely(!max_items))
Nick Piggin612d6c12006-06-23 02:03:22 -07001771 return 0;
1772
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001773 radix_tree_for_each_tagged(slot, root, &iter, first_index, tag) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001774 results[ret] = rcu_dereference_raw(*slot);
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001775 if (!results[ret])
1776 continue;
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001777 if (radix_tree_is_internal_node(results[ret])) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001778 slot = radix_tree_iter_retry(&iter);
1779 continue;
1780 }
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001781 if (++ret == max_items)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 return ret;
1786}
1787EXPORT_SYMBOL(radix_tree_gang_lookup_tag);
1788
1789/**
Nick Piggin47feff22008-07-25 19:45:29 -07001790 * radix_tree_gang_lookup_tag_slot - perform multiple slot lookup on a
1791 * radix tree based on a tag
1792 * @root: radix tree root
1793 * @results: where the results of the lookup are placed
1794 * @first_index: start the lookup from this key
1795 * @max_items: place up to this many items at *results
1796 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
1797 *
1798 * Performs an index-ascending scan of the tree for present items which
1799 * have the tag indexed by @tag set. Places the slots at *@results and
1800 * returns the number of slots which were placed at *@results.
1801 */
1802unsigned int
1803radix_tree_gang_lookup_tag_slot(struct radix_tree_root *root, void ***results,
1804 unsigned long first_index, unsigned int max_items,
1805 unsigned int tag)
1806{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001807 struct radix_tree_iter iter;
1808 void **slot;
1809 unsigned int ret = 0;
Nick Piggin47feff22008-07-25 19:45:29 -07001810
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001811 if (unlikely(!max_items))
Nick Piggin47feff22008-07-25 19:45:29 -07001812 return 0;
1813
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001814 radix_tree_for_each_tagged(slot, root, &iter, first_index, tag) {
1815 results[ret] = slot;
1816 if (++ret == max_items)
Nick Piggin47feff22008-07-25 19:45:29 -07001817 break;
Nick Piggin47feff22008-07-25 19:45:29 -07001818 }
1819
1820 return ret;
1821}
1822EXPORT_SYMBOL(radix_tree_gang_lookup_tag_slot);
1823
Nick Piggin47feff22008-07-25 19:45:29 -07001824/**
Johannes Weiner139e5612014-04-03 14:47:54 -07001825 * __radix_tree_delete_node - try to free node after clearing a slot
1826 * @root: radix tree root
Johannes Weiner139e5612014-04-03 14:47:54 -07001827 * @node: node containing @index
1828 *
1829 * After clearing the slot at @index in @node from radix tree
1830 * rooted at @root, call this function to attempt freeing the
1831 * node and shrinking the tree.
Johannes Weiner139e5612014-04-03 14:47:54 -07001832 */
Johannes Weiner14b46872016-12-12 16:43:52 -08001833void __radix_tree_delete_node(struct radix_tree_root *root,
Johannes Weiner139e5612014-04-03 14:47:54 -07001834 struct radix_tree_node *node)
1835{
Johannes Weiner14b46872016-12-12 16:43:52 -08001836 delete_node(root, node, NULL, NULL);
Johannes Weiner139e5612014-04-03 14:47:54 -07001837}
1838
1839/**
Johannes Weiner53c59f22014-04-03 14:47:39 -07001840 * radix_tree_delete_item - delete an item from a radix tree
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 * @root: radix tree root
1842 * @index: index key
Johannes Weiner53c59f22014-04-03 14:47:39 -07001843 * @item: expected item
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 *
Johannes Weiner53c59f22014-04-03 14:47:39 -07001845 * Remove @item at @index from the radix tree rooted at @root.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 *
Johannes Weiner53c59f22014-04-03 14:47:39 -07001847 * Returns the address of the deleted item, or NULL if it was not present
1848 * or the entry at the given @index was not @item.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 */
Johannes Weiner53c59f22014-04-03 14:47:39 -07001850void *radix_tree_delete_item(struct radix_tree_root *root,
1851 unsigned long index, void *item)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852{
Johannes Weiner139e5612014-04-03 14:47:54 -07001853 struct radix_tree_node *node;
Matthew Wilcox57578c22016-05-20 17:01:54 -07001854 unsigned int offset;
Johannes Weiner139e5612014-04-03 14:47:54 -07001855 void **slot;
1856 void *entry;
Nick Piggind5274262006-01-08 01:01:41 -08001857 int tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Johannes Weiner139e5612014-04-03 14:47:54 -07001859 entry = __radix_tree_lookup(root, index, &node, &slot);
1860 if (!entry)
1861 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Johannes Weiner139e5612014-04-03 14:47:54 -07001863 if (item && entry != item)
1864 return NULL;
1865
1866 if (!node) {
Nick Piggin612d6c12006-06-23 02:03:22 -07001867 root_tag_clear_all(root);
1868 root->rnode = NULL;
Johannes Weiner139e5612014-04-03 14:47:54 -07001869 return entry;
Nick Piggin612d6c12006-06-23 02:03:22 -07001870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Matthew Wilcox29e09672016-05-20 17:02:02 -07001872 offset = get_slot_offset(node, slot);
Johannes Weiner53c59f22014-04-03 14:47:39 -07001873
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001874 /* Clear all tags associated with the item to be deleted. */
1875 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1876 node_tag_clear(root, node, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Johannes Weiner4d693d02016-12-12 16:43:49 -08001878 __radix_tree_replace(root, node, slot, NULL, NULL, NULL);
Christoph Lameter201b6262005-09-06 15:16:46 -07001879
Johannes Weiner139e5612014-04-03 14:47:54 -07001880 return entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
Johannes Weiner53c59f22014-04-03 14:47:39 -07001882EXPORT_SYMBOL(radix_tree_delete_item);
1883
1884/**
1885 * radix_tree_delete - delete an item from a radix tree
1886 * @root: radix tree root
1887 * @index: index key
1888 *
1889 * Remove the item at @index from the radix tree rooted at @root.
1890 *
1891 * Returns the address of the deleted item, or NULL if it was not present.
1892 */
1893void *radix_tree_delete(struct radix_tree_root *root, unsigned long index)
1894{
1895 return radix_tree_delete_item(root, index, NULL);
1896}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897EXPORT_SYMBOL(radix_tree_delete);
1898
Johannes Weinerd3798ae2016-10-04 22:02:08 +02001899void radix_tree_clear_tags(struct radix_tree_root *root,
1900 struct radix_tree_node *node,
1901 void **slot)
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001902{
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001903 if (node) {
1904 unsigned int tag, offset = get_slot_offset(node, slot);
1905 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1906 node_tag_clear(root, node, tag, offset);
1907 } else {
1908 /* Clear root node tags */
1909 root->gfp_mask &= __GFP_BITS_MASK;
1910 }
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001911}
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913/**
1914 * radix_tree_tagged - test whether any items in the tree are tagged
1915 * @root: radix tree root
1916 * @tag: tag to test
1917 */
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001918int radix_tree_tagged(struct radix_tree_root *root, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
Nick Piggin612d6c12006-06-23 02:03:22 -07001920 return root_tag_get(root, tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
1922EXPORT_SYMBOL(radix_tree_tagged);
1923
1924static void
Johannes Weiner449dd692014-04-03 14:47:56 -07001925radix_tree_node_ctor(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Johannes Weiner449dd692014-04-03 14:47:56 -07001927 struct radix_tree_node *node = arg;
1928
1929 memset(node, 0, sizeof(*node));
1930 INIT_LIST_HEAD(&node->private_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -07001933static __init unsigned long __maxindex(unsigned int height)
1934{
1935 unsigned int width = height * RADIX_TREE_MAP_SHIFT;
1936 int shift = RADIX_TREE_INDEX_BITS - width;
1937
1938 if (shift < 0)
1939 return ~0UL;
1940 if (shift >= BITS_PER_LONG)
1941 return 0UL;
1942 return ~0UL >> shift;
1943}
1944
1945static __init void radix_tree_init_maxnodes(void)
1946{
1947 unsigned long height_to_maxindex[RADIX_TREE_MAX_PATH + 1];
1948 unsigned int i, j;
1949
1950 for (i = 0; i < ARRAY_SIZE(height_to_maxindex); i++)
1951 height_to_maxindex[i] = __maxindex(i);
1952 for (i = 0; i < ARRAY_SIZE(height_to_maxnodes); i++) {
1953 for (j = i; j > 0; j--)
1954 height_to_maxnodes[i] += height_to_maxindex[j - 1] + 1;
1955 }
1956}
1957
Sebastian Andrzej Siewiord544abd52016-11-03 15:50:01 +01001958static int radix_tree_cpu_dead(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001960 struct radix_tree_preload *rtp;
1961 struct radix_tree_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001963 /* Free per-cpu pool of preloaded nodes */
Sebastian Andrzej Siewiord544abd52016-11-03 15:50:01 +01001964 rtp = &per_cpu(radix_tree_preloads, cpu);
1965 while (rtp->nr) {
1966 node = rtp->nodes;
1967 rtp->nodes = node->private_data;
1968 kmem_cache_free(radix_tree_node_cachep, node);
1969 rtp->nr--;
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001970 }
Sebastian Andrzej Siewiord544abd52016-11-03 15:50:01 +01001971 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974void __init radix_tree_init(void)
1975{
Sebastian Andrzej Siewiord544abd52016-11-03 15:50:01 +01001976 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 radix_tree_node_cachep = kmem_cache_create("radix_tree_node",
1978 sizeof(struct radix_tree_node), 0,
Christoph Lameter488514d2008-04-28 02:12:05 -07001979 SLAB_PANIC | SLAB_RECLAIM_ACCOUNT,
1980 radix_tree_node_ctor);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -07001981 radix_tree_init_maxnodes();
Sebastian Andrzej Siewiord544abd52016-11-03 15:50:01 +01001982 ret = cpuhp_setup_state_nocalls(CPUHP_RADIX_DEAD, "lib/radix:dead",
1983 NULL, radix_tree_cpu_dead);
1984 WARN_ON(ret < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985}