blob: c8d55565fafa6b80d597e69c2a6bd096d0857e3b [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 Wilcox0a835c42016-12-20 10:27:56 -050025#include <linux/bitmap.h>
26#include <linux/bitops.h>
Matthew Wilcoxe157b552016-12-14 15:09:01 -080027#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/errno.h>
Matthew Wilcox0a835c42016-12-20 10:27:56 -050029#include <linux/export.h>
30#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/init.h>
32#include <linux/kernel.h>
Catalin Marinasce80b062014-06-06 14:38:18 -070033#include <linux/kmemleak.h>
Matthew Wilcox0a835c42016-12-20 10:27:56 -050034#include <linux/percpu.h>
Frederic Weisbecker92cf2112015-05-12 16:41:46 +020035#include <linux/preempt.h> /* in_interrupt() */
Matthew Wilcox0a835c42016-12-20 10:27:56 -050036#include <linux/radix-tree.h>
37#include <linux/rcupdate.h>
38#include <linux/slab.h>
39#include <linux/string.h>
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/*
Matthew Wilcox0a835c42016-12-20 10:27:56 -050064 * The IDR does not have to be as high as the radix tree since it uses
65 * signed integers, not unsigned longs.
66 */
67#define IDR_INDEX_BITS (8 /* CHAR_BIT */ * sizeof(int) - 1)
68#define IDR_MAX_PATH (DIV_ROUND_UP(IDR_INDEX_BITS, \
69 RADIX_TREE_MAP_SHIFT))
70#define IDR_PRELOAD_SIZE (IDR_MAX_PATH * 2 - 1)
71
72/*
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -050073 * The IDA is even shorter since it uses a bitmap at the last level.
74 */
75#define IDA_INDEX_BITS (8 * sizeof(int) - 1 - ilog2(IDA_BITMAP_BITS))
76#define IDA_MAX_PATH (DIV_ROUND_UP(IDA_INDEX_BITS, \
77 RADIX_TREE_MAP_SHIFT))
78#define IDA_PRELOAD_SIZE (IDA_MAX_PATH * 2 - 1)
79
80/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 * Per-cpu pool of preloaded nodes
82 */
83struct radix_tree_preload {
Matthew Wilcox2fcd9002016-05-20 17:03:04 -070084 unsigned nr;
Matthew Wilcox1293d5c2017-01-16 16:41:29 -050085 /* nodes->parent points to next preallocated node */
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -070086 struct radix_tree_node *nodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
Harvey Harrison8cef7d52009-01-06 14:40:50 -080088static DEFINE_PER_CPU(struct radix_tree_preload, radix_tree_preloads) = { 0, };
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Matthew Wilcox148deab2016-12-14 15:08:49 -080090static inline struct radix_tree_node *entry_to_node(void *ptr)
91{
92 return (void *)((unsigned long)ptr & ~RADIX_TREE_INTERNAL_NODE);
93}
94
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -070095static inline void *node_to_entry(void *ptr)
Nick Piggin27d20fd2010-11-11 14:05:19 -080096{
Matthew Wilcox30ff46cc2016-05-20 17:03:22 -070097 return (void *)((unsigned long)ptr | RADIX_TREE_INTERNAL_NODE);
Nick Piggin27d20fd2010-11-11 14:05:19 -080098}
99
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -0700100#define RADIX_TREE_RETRY node_to_entry(NULL)
Matthew Wilcoxafe0e392016-05-20 17:02:17 -0700101
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700102#ifdef CONFIG_RADIX_TREE_MULTIORDER
103/* Sibling slots point directly to another slot in the same node */
Matthew Wilcox35534c82016-12-19 17:43:19 -0500104static inline
105bool is_sibling_entry(const struct radix_tree_node *parent, void *node)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700106{
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500107 void __rcu **ptr = node;
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700108 return (parent->slots <= ptr) &&
109 (ptr < parent->slots + RADIX_TREE_MAP_SIZE);
110}
111#else
Matthew Wilcox35534c82016-12-19 17:43:19 -0500112static inline
113bool is_sibling_entry(const struct radix_tree_node *parent, void *node)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700114{
115 return false;
116}
117#endif
118
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500119static inline unsigned long
120get_slot_offset(const struct radix_tree_node *parent, void __rcu **slot)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700121{
122 return slot - parent->slots;
123}
124
Matthew Wilcox35534c82016-12-19 17:43:19 -0500125static unsigned int radix_tree_descend(const struct radix_tree_node *parent,
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700126 struct radix_tree_node **nodep, unsigned long index)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700127{
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700128 unsigned int offset = (index >> parent->shift) & RADIX_TREE_MAP_MASK;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500129 void __rcu **entry = rcu_dereference_raw(parent->slots[offset]);
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700130
131#ifdef CONFIG_RADIX_TREE_MULTIORDER
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700132 if (radix_tree_is_internal_node(entry)) {
Linus Torvalds8d2c0d32016-09-25 13:32:46 -0700133 if (is_sibling_entry(parent, entry)) {
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500134 void __rcu **sibentry;
135 sibentry = (void __rcu **) entry_to_node(entry);
Linus Torvalds8d2c0d32016-09-25 13:32:46 -0700136 offset = get_slot_offset(parent, sibentry);
137 entry = rcu_dereference_raw(*sibentry);
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700138 }
139 }
140#endif
141
142 *nodep = (void *)entry;
143 return offset;
144}
145
Matthew Wilcox35534c82016-12-19 17:43:19 -0500146static inline gfp_t root_gfp_mask(const struct radix_tree_root *root)
Nick Piggin612d6c12006-06-23 02:03:22 -0700147{
148 return root->gfp_mask & __GFP_BITS_MASK;
149}
150
Nick Piggin643b52b2008-06-12 15:21:52 -0700151static inline void tag_set(struct radix_tree_node *node, unsigned int tag,
152 int offset)
153{
154 __set_bit(offset, node->tags[tag]);
155}
156
157static inline void tag_clear(struct radix_tree_node *node, unsigned int tag,
158 int offset)
159{
160 __clear_bit(offset, node->tags[tag]);
161}
162
Matthew Wilcox35534c82016-12-19 17:43:19 -0500163static inline int tag_get(const struct radix_tree_node *node, unsigned int tag,
Nick Piggin643b52b2008-06-12 15:21:52 -0700164 int offset)
165{
166 return test_bit(offset, node->tags[tag]);
167}
168
Matthew Wilcox35534c82016-12-19 17:43:19 -0500169static inline void root_tag_set(struct radix_tree_root *root, unsigned tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700170{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500171 root->gfp_mask |= (__force gfp_t)(1 << (tag + ROOT_TAG_SHIFT));
Nick Piggin643b52b2008-06-12 15:21:52 -0700172}
173
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700174static inline void root_tag_clear(struct radix_tree_root *root, unsigned tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700175{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500176 root->gfp_mask &= (__force gfp_t)~(1 << (tag + ROOT_TAG_SHIFT));
Nick Piggin643b52b2008-06-12 15:21:52 -0700177}
178
179static inline void root_tag_clear_all(struct radix_tree_root *root)
180{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500181 root->gfp_mask &= (1 << ROOT_TAG_SHIFT) - 1;
Nick Piggin643b52b2008-06-12 15:21:52 -0700182}
183
Matthew Wilcox35534c82016-12-19 17:43:19 -0500184static inline int root_tag_get(const struct radix_tree_root *root, unsigned tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700185{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500186 return (__force int)root->gfp_mask & (1 << (tag + ROOT_TAG_SHIFT));
Nick Piggin643b52b2008-06-12 15:21:52 -0700187}
188
Matthew Wilcox35534c82016-12-19 17:43:19 -0500189static inline unsigned root_tags_get(const struct radix_tree_root *root)
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700190{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500191 return (__force unsigned)root->gfp_mask >> ROOT_TAG_SHIFT;
192}
193
194static inline bool is_idr(const struct radix_tree_root *root)
195{
196 return !!(root->gfp_mask & ROOT_IS_IDR);
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700197}
198
Nick Piggin643b52b2008-06-12 15:21:52 -0700199/*
200 * Returns 1 if any slot in the node has this tag set.
201 * Otherwise returns 0.
202 */
Matthew Wilcox35534c82016-12-19 17:43:19 -0500203static inline int any_tag_set(const struct radix_tree_node *node,
204 unsigned int tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700205{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700206 unsigned idx;
Nick Piggin643b52b2008-06-12 15:21:52 -0700207 for (idx = 0; idx < RADIX_TREE_TAG_LONGS; idx++) {
208 if (node->tags[tag][idx])
209 return 1;
210 }
211 return 0;
212}
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700213
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500214static inline void all_tag_set(struct radix_tree_node *node, unsigned int tag)
215{
216 bitmap_fill(node->tags[tag], RADIX_TREE_MAP_SIZE);
217}
218
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700219/**
220 * radix_tree_find_next_bit - find the next set bit in a memory region
221 *
222 * @addr: The address to base the search on
223 * @size: The bitmap size in bits
224 * @offset: The bitnumber to start searching at
225 *
226 * Unrollable variant of find_next_bit() for constant size arrays.
227 * Tail bits starting from size to roundup(size, BITS_PER_LONG) must be zero.
228 * Returns next bit offset, or size if nothing found.
229 */
230static __always_inline unsigned long
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800231radix_tree_find_next_bit(struct radix_tree_node *node, unsigned int tag,
232 unsigned long offset)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700233{
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800234 const unsigned long *addr = node->tags[tag];
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700235
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800236 if (offset < RADIX_TREE_MAP_SIZE) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700237 unsigned long tmp;
238
239 addr += offset / BITS_PER_LONG;
240 tmp = *addr >> (offset % BITS_PER_LONG);
241 if (tmp)
242 return __ffs(tmp) + offset;
243 offset = (offset + BITS_PER_LONG) & ~(BITS_PER_LONG - 1);
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800244 while (offset < RADIX_TREE_MAP_SIZE) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700245 tmp = *++addr;
246 if (tmp)
247 return __ffs(tmp) + offset;
248 offset += BITS_PER_LONG;
249 }
250 }
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800251 return RADIX_TREE_MAP_SIZE;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700252}
253
Matthew Wilcox268f42d2016-12-14 15:08:55 -0800254static unsigned int iter_offset(const struct radix_tree_iter *iter)
255{
256 return (iter->index >> iter_shift(iter)) & RADIX_TREE_MAP_MASK;
257}
258
Matthew Wilcox218ed752016-12-14 15:08:43 -0800259/*
260 * The maximum index which can be stored in a radix tree
261 */
262static inline unsigned long shift_maxindex(unsigned int shift)
263{
264 return (RADIX_TREE_MAP_SIZE << shift) - 1;
265}
266
Matthew Wilcox35534c82016-12-19 17:43:19 -0500267static inline unsigned long node_maxindex(const struct radix_tree_node *node)
Matthew Wilcox218ed752016-12-14 15:08:43 -0800268{
269 return shift_maxindex(node->shift);
270}
271
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500272static unsigned long next_index(unsigned long index,
273 const struct radix_tree_node *node,
274 unsigned long offset)
275{
276 return (index & ~node_maxindex(node)) + (offset << node->shift);
277}
278
Ross Zwisler0796c582016-05-20 17:02:55 -0700279#ifndef __KERNEL__
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700280static void dump_node(struct radix_tree_node *node, unsigned long index)
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700281{
Ross Zwisler0796c582016-05-20 17:02:55 -0700282 unsigned long i;
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700283
Matthew Wilcox218ed752016-12-14 15:08:43 -0800284 pr_debug("radix node: %p offset %d indices %lu-%lu parent %p tags %lx %lx %lx shift %d count %d exceptional %d\n",
285 node, node->offset, index, index | node_maxindex(node),
286 node->parent,
Ross Zwisler0796c582016-05-20 17:02:55 -0700287 node->tags[0][0], node->tags[1][0], node->tags[2][0],
Matthew Wilcox218ed752016-12-14 15:08:43 -0800288 node->shift, node->count, node->exceptional);
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700289
Ross Zwisler0796c582016-05-20 17:02:55 -0700290 for (i = 0; i < RADIX_TREE_MAP_SIZE; i++) {
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700291 unsigned long first = index | (i << node->shift);
292 unsigned long last = first | ((1UL << node->shift) - 1);
Ross Zwisler0796c582016-05-20 17:02:55 -0700293 void *entry = node->slots[i];
294 if (!entry)
295 continue;
Matthew Wilcox218ed752016-12-14 15:08:43 -0800296 if (entry == RADIX_TREE_RETRY) {
297 pr_debug("radix retry offset %ld indices %lu-%lu parent %p\n",
298 i, first, last, node);
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700299 } else if (!radix_tree_is_internal_node(entry)) {
Matthew Wilcox218ed752016-12-14 15:08:43 -0800300 pr_debug("radix entry %p offset %ld indices %lu-%lu parent %p\n",
301 entry, i, first, last, node);
302 } else if (is_sibling_entry(node, entry)) {
303 pr_debug("radix sblng %p offset %ld indices %lu-%lu parent %p val %p\n",
304 entry, i, first, last, node,
305 *(void **)entry_to_node(entry));
Ross Zwisler0796c582016-05-20 17:02:55 -0700306 } else {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700307 dump_node(entry_to_node(entry), first);
Ross Zwisler0796c582016-05-20 17:02:55 -0700308 }
309 }
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700310}
311
312/* For debug */
313static void radix_tree_dump(struct radix_tree_root *root)
314{
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700315 pr_debug("radix root: %p rnode %p tags %x\n",
316 root, root->rnode,
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500317 root->gfp_mask >> ROOT_TAG_SHIFT);
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700318 if (!radix_tree_is_internal_node(root->rnode))
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700319 return;
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700320 dump_node(entry_to_node(root->rnode), 0);
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700321}
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500322
323static void dump_ida_node(void *entry, unsigned long index)
324{
325 unsigned long i;
326
327 if (!entry)
328 return;
329
330 if (radix_tree_is_internal_node(entry)) {
331 struct radix_tree_node *node = entry_to_node(entry);
332
333 pr_debug("ida node: %p offset %d indices %lu-%lu parent %p free %lx shift %d count %d\n",
334 node, node->offset, index * IDA_BITMAP_BITS,
335 ((index | node_maxindex(node)) + 1) *
336 IDA_BITMAP_BITS - 1,
337 node->parent, node->tags[0][0], node->shift,
338 node->count);
339 for (i = 0; i < RADIX_TREE_MAP_SIZE; i++)
340 dump_ida_node(node->slots[i],
341 index | (i << node->shift));
Matthew Wilcoxd37cacc2016-12-17 08:18:17 -0500342 } else if (radix_tree_exceptional_entry(entry)) {
343 pr_debug("ida excp: %p offset %d indices %lu-%lu data %lx\n",
344 entry, (int)(index & RADIX_TREE_MAP_MASK),
345 index * IDA_BITMAP_BITS,
346 index * IDA_BITMAP_BITS + BITS_PER_LONG -
347 RADIX_TREE_EXCEPTIONAL_SHIFT,
348 (unsigned long)entry >>
349 RADIX_TREE_EXCEPTIONAL_SHIFT);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500350 } else {
351 struct ida_bitmap *bitmap = entry;
352
353 pr_debug("ida btmp: %p offset %d indices %lu-%lu data", bitmap,
354 (int)(index & RADIX_TREE_MAP_MASK),
355 index * IDA_BITMAP_BITS,
356 (index + 1) * IDA_BITMAP_BITS - 1);
357 for (i = 0; i < IDA_BITMAP_LONGS; i++)
358 pr_cont(" %lx", bitmap->bitmap[i]);
359 pr_cont("\n");
360 }
361}
362
363static void ida_dump(struct ida *ida)
364{
365 struct radix_tree_root *root = &ida->ida_rt;
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -0500366 pr_debug("ida: %p node %p free %d\n", ida, root->rnode,
367 root->gfp_mask >> ROOT_TAG_SHIFT);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500368 dump_ida_node(root->rnode, 0);
369}
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700370#endif
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372/*
373 * This assumes that the caller has performed appropriate preallocation, and
374 * that the caller has pinned this thread of control to the current CPU.
375 */
376static struct radix_tree_node *
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500377radix_tree_node_alloc(gfp_t gfp_mask, struct radix_tree_node *parent,
Matthew Wilcoxd58275b2017-01-16 17:10:21 -0500378 struct radix_tree_root *root,
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800379 unsigned int shift, unsigned int offset,
380 unsigned int count, unsigned int exceptional)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Nick Piggine2848a02008-02-04 22:29:10 -0800382 struct radix_tree_node *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jan Kara5e4c0d972013-09-11 14:26:05 -0700384 /*
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700385 * Preload code isn't irq safe and it doesn't make sense to use
386 * preloading during an interrupt anyway as all the allocations have
387 * to be atomic. So just do normal allocation when in interrupt.
Jan Kara5e4c0d972013-09-11 14:26:05 -0700388 */
Mel Gormand0164ad2015-11-06 16:28:21 -0800389 if (!gfpflags_allow_blocking(gfp_mask) && !in_interrupt()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 struct radix_tree_preload *rtp;
391
Nick Piggine2848a02008-02-04 22:29:10 -0800392 /*
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700393 * Even if the caller has preloaded, try to allocate from the
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700394 * cache first for the new node to get accounted to the memory
395 * cgroup.
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700396 */
397 ret = kmem_cache_alloc(radix_tree_node_cachep,
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700398 gfp_mask | __GFP_NOWARN);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700399 if (ret)
400 goto out;
401
402 /*
Nick Piggine2848a02008-02-04 22:29:10 -0800403 * Provided the caller has preloaded here, we will always
404 * succeed in getting a node here (and never reach
405 * kmem_cache_alloc)
406 */
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700407 rtp = this_cpu_ptr(&radix_tree_preloads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (rtp->nr) {
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700409 ret = rtp->nodes;
Matthew Wilcox1293d5c2017-01-16 16:41:29 -0500410 rtp->nodes = ret->parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 rtp->nr--;
412 }
Catalin Marinasce80b062014-06-06 14:38:18 -0700413 /*
414 * Update the allocation stack trace as this is more useful
415 * for debugging.
416 */
417 kmemleak_update_trace(ret);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700418 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700420 ret = kmem_cache_alloc(radix_tree_node_cachep, gfp_mask);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700421out:
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700422 BUG_ON(radix_tree_is_internal_node(ret));
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800423 if (ret) {
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800424 ret->shift = shift;
425 ret->offset = offset;
426 ret->count = count;
427 ret->exceptional = exceptional;
Matthew Wilcoxd58275b2017-01-16 17:10:21 -0500428 ret->parent = parent;
429 ret->root = root;
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return ret;
432}
433
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800434static void radix_tree_node_rcu_free(struct rcu_head *head)
435{
436 struct radix_tree_node *node =
437 container_of(head, struct radix_tree_node, rcu_head);
Nick Piggin643b52b2008-06-12 15:21:52 -0700438
439 /*
Matthew Wilcox175542f2016-12-14 15:08:58 -0800440 * Must only free zeroed nodes into the slab. We can be left with
441 * non-NULL entries by radix_tree_free_nodes, so clear the entries
442 * and tags here.
Nick Piggin643b52b2008-06-12 15:21:52 -0700443 */
Matthew Wilcox175542f2016-12-14 15:08:58 -0800444 memset(node->slots, 0, sizeof(node->slots));
445 memset(node->tags, 0, sizeof(node->tags));
Matthew Wilcox91d9c052016-12-14 15:08:34 -0800446 INIT_LIST_HEAD(&node->private_list);
Nick Piggin643b52b2008-06-12 15:21:52 -0700447
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800448 kmem_cache_free(radix_tree_node_cachep, node);
449}
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451static inline void
452radix_tree_node_free(struct radix_tree_node *node)
453{
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800454 call_rcu(&node->rcu_head, radix_tree_node_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
457/*
458 * Load up this CPU's radix_tree_node buffer with sufficient objects to
459 * ensure that the addition of a single element in the tree cannot fail. On
460 * success, return zero, with preemption disabled. On error, return -ENOMEM
461 * with preemption not disabled.
David Howellsb34df792009-11-19 18:11:14 +0000462 *
463 * To make use of this facility, the radix tree must be initialised without
Mel Gormand0164ad2015-11-06 16:28:21 -0800464 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 */
Eric Dumazetbc9ae222017-09-08 16:15:54 -0700466static __must_check int __radix_tree_preload(gfp_t gfp_mask, unsigned nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct radix_tree_preload *rtp;
469 struct radix_tree_node *node;
470 int ret = -ENOMEM;
471
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700472 /*
473 * Nodes preloaded by one cgroup can be be used by another cgroup, so
474 * they should never be accounted to any particular memory cgroup.
475 */
476 gfp_mask &= ~__GFP_ACCOUNT;
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700479 rtp = this_cpu_ptr(&radix_tree_preloads);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700480 while (rtp->nr < nr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 preempt_enable();
Christoph Lameter488514d2008-04-28 02:12:05 -0700482 node = kmem_cache_alloc(radix_tree_node_cachep, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (node == NULL)
484 goto out;
485 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700486 rtp = this_cpu_ptr(&radix_tree_preloads);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700487 if (rtp->nr < nr) {
Matthew Wilcox1293d5c2017-01-16 16:41:29 -0500488 node->parent = rtp->nodes;
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700489 rtp->nodes = node;
490 rtp->nr++;
491 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 kmem_cache_free(radix_tree_node_cachep, node);
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495 ret = 0;
496out:
497 return ret;
498}
Jan Kara5e4c0d972013-09-11 14:26:05 -0700499
500/*
501 * Load up this CPU's radix_tree_node buffer with sufficient objects to
502 * ensure that the addition of a single element in the tree cannot fail. On
503 * success, return zero, with preemption disabled. On error, return -ENOMEM
504 * with preemption not disabled.
505 *
506 * To make use of this facility, the radix tree must be initialised without
Mel Gormand0164ad2015-11-06 16:28:21 -0800507 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
Jan Kara5e4c0d972013-09-11 14:26:05 -0700508 */
509int radix_tree_preload(gfp_t gfp_mask)
510{
511 /* Warn on non-sensical use... */
Mel Gormand0164ad2015-11-06 16:28:21 -0800512 WARN_ON_ONCE(!gfpflags_allow_blocking(gfp_mask));
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700513 return __radix_tree_preload(gfp_mask, RADIX_TREE_PRELOAD_SIZE);
Jan Kara5e4c0d972013-09-11 14:26:05 -0700514}
David Chinnerd7f09232007-07-14 16:05:04 +1000515EXPORT_SYMBOL(radix_tree_preload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Nick Piggin6e954b92006-01-08 01:01:40 -0800517/*
Jan Kara5e4c0d972013-09-11 14:26:05 -0700518 * The same as above function, except we don't guarantee preloading happens.
519 * We do it, if we decide it helps. On success, return zero with preemption
520 * disabled. On error, return -ENOMEM with preemption not disabled.
521 */
522int radix_tree_maybe_preload(gfp_t gfp_mask)
523{
Mel Gormand0164ad2015-11-06 16:28:21 -0800524 if (gfpflags_allow_blocking(gfp_mask))
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700525 return __radix_tree_preload(gfp_mask, RADIX_TREE_PRELOAD_SIZE);
Jan Kara5e4c0d972013-09-11 14:26:05 -0700526 /* Preloading doesn't help anything with this gfp mask, skip it */
527 preempt_disable();
528 return 0;
529}
530EXPORT_SYMBOL(radix_tree_maybe_preload);
531
Matthew Wilcox27916532016-12-14 15:09:04 -0800532#ifdef CONFIG_RADIX_TREE_MULTIORDER
533/*
534 * Preload with enough objects to ensure that we can split a single entry
535 * of order @old_order into many entries of size @new_order
536 */
537int radix_tree_split_preload(unsigned int old_order, unsigned int new_order,
538 gfp_t gfp_mask)
539{
540 unsigned top = 1 << (old_order % RADIX_TREE_MAP_SHIFT);
541 unsigned layers = (old_order / RADIX_TREE_MAP_SHIFT) -
542 (new_order / RADIX_TREE_MAP_SHIFT);
543 unsigned nr = 0;
544
545 WARN_ON_ONCE(!gfpflags_allow_blocking(gfp_mask));
546 BUG_ON(new_order >= old_order);
547
548 while (layers--)
549 nr = nr * RADIX_TREE_MAP_SIZE + 1;
550 return __radix_tree_preload(gfp_mask, top * nr);
551}
552#endif
553
Jan Kara5e4c0d972013-09-11 14:26:05 -0700554/*
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700555 * The same as function above, but preload number of nodes required to insert
556 * (1 << order) continuous naturally-aligned elements.
557 */
558int radix_tree_maybe_preload_order(gfp_t gfp_mask, int order)
559{
560 unsigned long nr_subtrees;
561 int nr_nodes, subtree_height;
562
563 /* Preloading doesn't help anything with this gfp mask, skip it */
564 if (!gfpflags_allow_blocking(gfp_mask)) {
565 preempt_disable();
566 return 0;
567 }
568
569 /*
570 * Calculate number and height of fully populated subtrees it takes to
571 * store (1 << order) elements.
572 */
573 nr_subtrees = 1 << order;
574 for (subtree_height = 0; nr_subtrees > RADIX_TREE_MAP_SIZE;
575 subtree_height++)
576 nr_subtrees >>= RADIX_TREE_MAP_SHIFT;
577
578 /*
579 * The worst case is zero height tree with a single item at index 0 and
580 * then inserting items starting at ULONG_MAX - (1 << order).
581 *
582 * This requires RADIX_TREE_MAX_PATH nodes to build branch from root to
583 * 0-index item.
584 */
585 nr_nodes = RADIX_TREE_MAX_PATH;
586
587 /* Plus branch to fully populated subtrees. */
588 nr_nodes += RADIX_TREE_MAX_PATH - subtree_height;
589
590 /* Root node is shared. */
591 nr_nodes--;
592
593 /* Plus nodes required to build subtrees. */
594 nr_nodes += nr_subtrees * height_to_maxnodes[subtree_height];
595
596 return __radix_tree_preload(gfp_mask, nr_nodes);
597}
598
Matthew Wilcox35534c82016-12-19 17:43:19 -0500599static unsigned radix_tree_load_root(const struct radix_tree_root *root,
Matthew Wilcox1456a432016-05-20 17:02:08 -0700600 struct radix_tree_node **nodep, unsigned long *maxindex)
601{
602 struct radix_tree_node *node = rcu_dereference_raw(root->rnode);
603
604 *nodep = node;
605
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700606 if (likely(radix_tree_is_internal_node(node))) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700607 node = entry_to_node(node);
Matthew Wilcox1456a432016-05-20 17:02:08 -0700608 *maxindex = node_maxindex(node);
Matthew Wilcoxc12e51b2016-05-20 17:03:10 -0700609 return node->shift + RADIX_TREE_MAP_SHIFT;
Matthew Wilcox1456a432016-05-20 17:02:08 -0700610 }
611
612 *maxindex = 0;
613 return 0;
614}
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616/*
617 * Extend a radix tree so it can store key @index.
618 */
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500619static int radix_tree_extend(struct radix_tree_root *root, gfp_t gfp,
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700620 unsigned long index, unsigned int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500622 void *entry;
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700623 unsigned int maxshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 int tag;
625
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700626 /* Figure out what the shift should be. */
627 maxshift = shift;
628 while (index > shift_maxindex(maxshift))
629 maxshift += RADIX_TREE_MAP_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500631 entry = rcu_dereference_raw(root->rnode);
632 if (!entry && (!is_idr(root) || root_tag_get(root, IDR_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 do {
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500636 struct radix_tree_node *node = radix_tree_node_alloc(gfp, NULL,
Matthew Wilcoxd58275b2017-01-16 17:10:21 -0500637 root, shift, 0, 1, 0);
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700638 if (!node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return -ENOMEM;
640
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500641 if (is_idr(root)) {
642 all_tag_set(node, IDR_FREE);
643 if (!root_tag_get(root, IDR_FREE)) {
644 tag_clear(node, IDR_FREE, 0);
645 root_tag_set(root, IDR_FREE);
646 }
647 } else {
648 /* Propagate the aggregated tag info to the new child */
649 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++) {
650 if (root_tag_get(root, tag))
651 tag_set(node, tag, 0);
652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700655 BUG_ON(shift > BITS_PER_LONG);
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500656 if (radix_tree_is_internal_node(entry)) {
657 entry_to_node(entry)->parent = node;
658 } else if (radix_tree_exceptional_entry(entry)) {
Johannes Weinerf7942432016-12-12 16:43:41 -0800659 /* Moving an exceptional root->rnode to a node */
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800660 node->exceptional = 1;
Johannes Weinerf7942432016-12-12 16:43:41 -0800661 }
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500662 /*
663 * entry was already in the radix tree, so we do not need
664 * rcu_assign_pointer here
665 */
666 node->slots[0] = (void __rcu *)entry;
667 entry = node_to_entry(node);
668 rcu_assign_pointer(root->rnode, entry);
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700669 shift += RADIX_TREE_MAP_SHIFT;
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700670 } while (shift <= maxshift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671out:
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700672 return maxshift + RADIX_TREE_MAP_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
675/**
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800676 * radix_tree_shrink - shrink radix tree to minimum height
677 * @root radix tree root
678 */
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500679static inline bool radix_tree_shrink(struct radix_tree_root *root,
Mel Gormanc7df8ad2017-11-15 17:37:41 -0800680 radix_tree_update_node_t update_node)
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800681{
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500682 bool shrunk = false;
683
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800684 for (;;) {
Matthew Wilcox12320d02017-02-13 15:22:48 -0500685 struct radix_tree_node *node = rcu_dereference_raw(root->rnode);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800686 struct radix_tree_node *child;
687
688 if (!radix_tree_is_internal_node(node))
689 break;
690 node = entry_to_node(node);
691
692 /*
693 * The candidate node has more than one child, or its child
694 * is not at the leftmost slot, or the child is a multiorder
695 * entry, we cannot shrink.
696 */
697 if (node->count != 1)
698 break;
Matthew Wilcox12320d02017-02-13 15:22:48 -0500699 child = rcu_dereference_raw(node->slots[0]);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800700 if (!child)
701 break;
702 if (!radix_tree_is_internal_node(child) && node->shift)
703 break;
704
705 if (radix_tree_is_internal_node(child))
706 entry_to_node(child)->parent = NULL;
707
708 /*
709 * We don't need rcu_assign_pointer(), since we are simply
710 * moving the node from one part of the tree to another: if it
711 * was safe to dereference the old pointer to it
712 * (node->slots[0]), it will be safe to dereference the new
713 * one (root->rnode) as far as dependent read barriers go.
714 */
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500715 root->rnode = (void __rcu *)child;
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500716 if (is_idr(root) && !tag_get(node, IDR_FREE, 0))
717 root_tag_clear(root, IDR_FREE);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800718
719 /*
720 * We have a dilemma here. The node's slot[0] must not be
721 * NULLed in case there are concurrent lookups expecting to
722 * find the item. However if this was a bottom-level node,
723 * then it may be subject to the slot pointer being visible
724 * to callers dereferencing it. If item corresponding to
725 * slot[0] is subsequently deleted, these callers would expect
726 * their slot to become empty sooner or later.
727 *
728 * For example, lockless pagecache will look up a slot, deref
729 * the page pointer, and if the page has 0 refcount it means it
730 * was concurrently deleted from pagecache so try the deref
731 * again. Fortunately there is already a requirement for logic
732 * to retry the entire slot lookup -- the indirect pointer
733 * problem (replacing direct root node with an indirect pointer
734 * also results in a stale slot). So tag the slot as indirect
735 * to force callers to retry.
736 */
Johannes Weiner4d693d02016-12-12 16:43:49 -0800737 node->count = 0;
738 if (!radix_tree_is_internal_node(child)) {
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500739 node->slots[0] = (void __rcu *)RADIX_TREE_RETRY;
Johannes Weiner4d693d02016-12-12 16:43:49 -0800740 if (update_node)
Mel Gormanc7df8ad2017-11-15 17:37:41 -0800741 update_node(node);
Johannes Weiner4d693d02016-12-12 16:43:49 -0800742 }
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800743
Johannes Weinerea07b862017-01-06 19:21:43 -0500744 WARN_ON_ONCE(!list_empty(&node->private_list));
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800745 radix_tree_node_free(node);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500746 shrunk = true;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800747 }
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500748
749 return shrunk;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800750}
751
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500752static bool delete_node(struct radix_tree_root *root,
Johannes Weiner4d693d02016-12-12 16:43:49 -0800753 struct radix_tree_node *node,
Mel Gormanc7df8ad2017-11-15 17:37:41 -0800754 radix_tree_update_node_t update_node)
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800755{
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500756 bool deleted = false;
757
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800758 do {
759 struct radix_tree_node *parent;
760
761 if (node->count) {
Matthew Wilcox12320d02017-02-13 15:22:48 -0500762 if (node_to_entry(node) ==
763 rcu_dereference_raw(root->rnode))
Mel Gormanc7df8ad2017-11-15 17:37:41 -0800764 deleted |= radix_tree_shrink(root,
765 update_node);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500766 return deleted;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800767 }
768
769 parent = node->parent;
770 if (parent) {
771 parent->slots[node->offset] = NULL;
772 parent->count--;
773 } else {
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500774 /*
775 * Shouldn't the tags already have all been cleared
776 * by the caller?
777 */
778 if (!is_idr(root))
779 root_tag_clear_all(root);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800780 root->rnode = NULL;
781 }
782
Johannes Weinerea07b862017-01-06 19:21:43 -0500783 WARN_ON_ONCE(!list_empty(&node->private_list));
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800784 radix_tree_node_free(node);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500785 deleted = true;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800786
787 node = parent;
788 } while (node);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500789
790 return deleted;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800791}
792
793/**
Johannes Weiner139e5612014-04-03 14:47:54 -0700794 * __radix_tree_create - create a slot in a radix tree
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 * @root: radix tree root
796 * @index: index key
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700797 * @order: index occupies 2^order aligned slots
Johannes Weiner139e5612014-04-03 14:47:54 -0700798 * @nodep: returns node
799 * @slotp: returns slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 *
Johannes Weiner139e5612014-04-03 14:47:54 -0700801 * Create, if necessary, and return the node and slot for an item
802 * at position @index in the radix tree @root.
803 *
804 * Until there is more than one item in the tree, no nodes are
805 * allocated and @root->rnode is used as a direct slot instead of
806 * pointing to a node, in which case *@nodep will be NULL.
807 *
808 * Returns -ENOMEM, or 0 for success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 */
Johannes Weiner139e5612014-04-03 14:47:54 -0700810int __radix_tree_create(struct radix_tree_root *root, unsigned long index,
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700811 unsigned order, struct radix_tree_node **nodep,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500812 void __rcu ***slotp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700814 struct radix_tree_node *node = NULL, *child;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500815 void __rcu **slot = (void __rcu **)&root->rnode;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700816 unsigned long maxindex;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700817 unsigned int shift, offset = 0;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700818 unsigned long max = index | ((1UL << order) - 1);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500819 gfp_t gfp = root_gfp_mask(root);
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700820
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700821 shift = radix_tree_load_root(root, &child, &maxindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /* Make sure the tree is high enough. */
Matthew Wilcox175542f2016-12-14 15:08:58 -0800824 if (order > 0 && max == ((1UL << order) - 1))
825 max++;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700826 if (max > maxindex) {
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500827 int error = radix_tree_extend(root, gfp, max, shift);
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700828 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return error;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700830 shift = error;
Matthew Wilcox12320d02017-02-13 15:22:48 -0500831 child = rcu_dereference_raw(root->rnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700834 while (shift > order) {
Matthew Wilcoxc12e51b2016-05-20 17:03:10 -0700835 shift -= RADIX_TREE_MAP_SHIFT;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700836 if (child == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 /* Have to add a child node. */
Matthew Wilcoxd58275b2017-01-16 17:10:21 -0500838 child = radix_tree_node_alloc(gfp, node, root, shift,
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800839 offset, 0, 0);
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700840 if (!child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return -ENOMEM;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700842 rcu_assign_pointer(*slot, node_to_entry(child));
843 if (node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 node->count++;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700845 } else if (!radix_tree_is_internal_node(child))
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700846 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* Go a level down */
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700849 node = entry_to_node(child);
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700850 offset = radix_tree_descend(node, &child, index);
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700851 slot = &node->slots[offset];
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700852 }
853
Johannes Weiner139e5612014-04-03 14:47:54 -0700854 if (nodep)
855 *nodep = node;
856 if (slotp)
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700857 *slotp = slot;
Johannes Weiner139e5612014-04-03 14:47:54 -0700858 return 0;
859}
860
Matthew Wilcox175542f2016-12-14 15:08:58 -0800861/*
862 * Free any nodes below this node. The tree is presumed to not need
863 * shrinking, and any user data in the tree is presumed to not need a
864 * destructor called on it. If we need to add a destructor, we can
865 * add that functionality later. Note that we may not clear tags or
866 * slots from the tree as an RCU walker may still have a pointer into
867 * this subtree. We could replace the entries with RADIX_TREE_RETRY,
868 * but we'll still have to clear those in rcu_free.
869 */
870static void radix_tree_free_nodes(struct radix_tree_node *node)
871{
872 unsigned offset = 0;
873 struct radix_tree_node *child = entry_to_node(node);
874
875 for (;;) {
Matthew Wilcox12320d02017-02-13 15:22:48 -0500876 void *entry = rcu_dereference_raw(child->slots[offset]);
Matthew Wilcox175542f2016-12-14 15:08:58 -0800877 if (radix_tree_is_internal_node(entry) &&
878 !is_sibling_entry(child, entry)) {
879 child = entry_to_node(entry);
880 offset = 0;
881 continue;
882 }
883 offset++;
884 while (offset == RADIX_TREE_MAP_SIZE) {
885 struct radix_tree_node *old = child;
886 offset = child->offset + 1;
887 child = child->parent;
Matthew Wilcoxdd040b62017-01-24 15:18:16 -0800888 WARN_ON_ONCE(!list_empty(&old->private_list));
Matthew Wilcox175542f2016-12-14 15:08:58 -0800889 radix_tree_node_free(old);
890 if (old == entry_to_node(node))
891 return;
892 }
893 }
894}
895
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500896#ifdef CONFIG_RADIX_TREE_MULTIORDER
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500897static inline int insert_entries(struct radix_tree_node *node,
898 void __rcu **slot, void *item, unsigned order, bool replace)
Matthew Wilcox175542f2016-12-14 15:08:58 -0800899{
900 struct radix_tree_node *child;
901 unsigned i, n, tag, offset, tags = 0;
902
903 if (node) {
Matthew Wilcoxe157b552016-12-14 15:09:01 -0800904 if (order > node->shift)
905 n = 1 << (order - node->shift);
906 else
907 n = 1;
Matthew Wilcox175542f2016-12-14 15:08:58 -0800908 offset = get_slot_offset(node, slot);
909 } else {
910 n = 1;
911 offset = 0;
912 }
913
914 if (n > 1) {
915 offset = offset & ~(n - 1);
916 slot = &node->slots[offset];
917 }
918 child = node_to_entry(slot);
919
920 for (i = 0; i < n; i++) {
921 if (slot[i]) {
922 if (replace) {
923 node->count--;
924 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
925 if (tag_get(node, tag, offset + i))
926 tags |= 1 << tag;
927 } else
928 return -EEXIST;
929 }
930 }
931
932 for (i = 0; i < n; i++) {
Matthew Wilcox12320d02017-02-13 15:22:48 -0500933 struct radix_tree_node *old = rcu_dereference_raw(slot[i]);
Matthew Wilcox175542f2016-12-14 15:08:58 -0800934 if (i) {
935 rcu_assign_pointer(slot[i], child);
936 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
937 if (tags & (1 << tag))
938 tag_clear(node, tag, offset + i);
939 } else {
940 rcu_assign_pointer(slot[i], item);
941 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
942 if (tags & (1 << tag))
943 tag_set(node, tag, offset);
944 }
945 if (radix_tree_is_internal_node(old) &&
Matthew Wilcoxe157b552016-12-14 15:09:01 -0800946 !is_sibling_entry(node, old) &&
947 (old != RADIX_TREE_RETRY))
Matthew Wilcox175542f2016-12-14 15:08:58 -0800948 radix_tree_free_nodes(old);
949 if (radix_tree_exceptional_entry(old))
950 node->exceptional--;
951 }
952 if (node) {
953 node->count += n;
954 if (radix_tree_exceptional_entry(item))
955 node->exceptional += n;
956 }
957 return n;
958}
959#else
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500960static inline int insert_entries(struct radix_tree_node *node,
961 void __rcu **slot, void *item, unsigned order, bool replace)
Matthew Wilcox175542f2016-12-14 15:08:58 -0800962{
963 if (*slot)
964 return -EEXIST;
965 rcu_assign_pointer(*slot, item);
966 if (node) {
967 node->count++;
968 if (radix_tree_exceptional_entry(item))
969 node->exceptional++;
970 }
971 return 1;
972}
973#endif
974
Johannes Weiner139e5612014-04-03 14:47:54 -0700975/**
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700976 * __radix_tree_insert - insert into a radix tree
Johannes Weiner139e5612014-04-03 14:47:54 -0700977 * @root: radix tree root
978 * @index: index key
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700979 * @order: key covers the 2^order indices around index
Johannes Weiner139e5612014-04-03 14:47:54 -0700980 * @item: item to insert
981 *
982 * Insert an item into the radix tree at position @index.
983 */
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700984int __radix_tree_insert(struct radix_tree_root *root, unsigned long index,
985 unsigned order, void *item)
Johannes Weiner139e5612014-04-03 14:47:54 -0700986{
987 struct radix_tree_node *node;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500988 void __rcu **slot;
Johannes Weiner139e5612014-04-03 14:47:54 -0700989 int error;
990
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700991 BUG_ON(radix_tree_is_internal_node(item));
Johannes Weiner139e5612014-04-03 14:47:54 -0700992
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700993 error = __radix_tree_create(root, index, order, &node, &slot);
Johannes Weiner139e5612014-04-03 14:47:54 -0700994 if (error)
995 return error;
Matthew Wilcox175542f2016-12-14 15:08:58 -0800996
997 error = insert_entries(node, slot, item, order, false);
998 if (error < 0)
999 return error;
Christoph Lameter201b6262005-09-06 15:16:46 -07001000
Nick Piggin612d6c12006-06-23 02:03:22 -07001001 if (node) {
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -07001002 unsigned offset = get_slot_offset(node, slot);
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -07001003 BUG_ON(tag_get(node, 0, offset));
1004 BUG_ON(tag_get(node, 1, offset));
1005 BUG_ON(tag_get(node, 2, offset));
Nick Piggin612d6c12006-06-23 02:03:22 -07001006 } else {
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -07001007 BUG_ON(root_tags_get(root));
Nick Piggin612d6c12006-06-23 02:03:22 -07001008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 return 0;
1011}
Matthew Wilcoxe6145232016-03-17 14:21:54 -07001012EXPORT_SYMBOL(__radix_tree_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Johannes Weiner139e5612014-04-03 14:47:54 -07001014/**
1015 * __radix_tree_lookup - lookup an item in a radix tree
1016 * @root: radix tree root
1017 * @index: index key
1018 * @nodep: returns node
1019 * @slotp: returns slot
1020 *
1021 * Lookup and return the item at position @index in the radix
1022 * tree @root.
1023 *
1024 * Until there is more than one item in the tree, no nodes are
1025 * allocated and @root->rnode is used as a direct slot instead of
1026 * pointing to a node, in which case *@nodep will be NULL.
Hans Reisera4331362005-11-07 00:59:29 -08001027 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05001028void *__radix_tree_lookup(const struct radix_tree_root *root,
1029 unsigned long index, struct radix_tree_node **nodep,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001030 void __rcu ***slotp)
Hans Reisera4331362005-11-07 00:59:29 -08001031{
Johannes Weiner139e5612014-04-03 14:47:54 -07001032 struct radix_tree_node *node, *parent;
Matthew Wilcox85829952016-05-20 17:02:20 -07001033 unsigned long maxindex;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001034 void __rcu **slot;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001035
Matthew Wilcox85829952016-05-20 17:02:20 -07001036 restart:
1037 parent = NULL;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001038 slot = (void __rcu **)&root->rnode;
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001039 radix_tree_load_root(root, &node, &maxindex);
Matthew Wilcox85829952016-05-20 17:02:20 -07001040 if (index > maxindex)
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001041 return NULL;
1042
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001043 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox85829952016-05-20 17:02:20 -07001044 unsigned offset;
Johannes Weiner139e5612014-04-03 14:47:54 -07001045
Matthew Wilcox85829952016-05-20 17:02:20 -07001046 if (node == RADIX_TREE_RETRY)
1047 goto restart;
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001048 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001049 offset = radix_tree_descend(parent, &node, index);
Matthew Wilcox85829952016-05-20 17:02:20 -07001050 slot = parent->slots + offset;
1051 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001052
Johannes Weiner139e5612014-04-03 14:47:54 -07001053 if (nodep)
1054 *nodep = parent;
1055 if (slotp)
1056 *slotp = slot;
1057 return node;
Huang Shijieb72b71c2009-06-16 15:33:42 -07001058}
1059
1060/**
1061 * radix_tree_lookup_slot - lookup a slot in a radix tree
1062 * @root: radix tree root
1063 * @index: index key
1064 *
1065 * Returns: the slot corresponding to the position @index in the
1066 * radix tree @root. This is useful for update-if-exists operations.
1067 *
1068 * This function can be called under rcu_read_lock iff the slot is not
1069 * modified by radix_tree_replace_slot, otherwise it must be called
1070 * exclusive from other writers. Any dereference of the slot must be done
1071 * using radix_tree_deref_slot.
1072 */
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001073void __rcu **radix_tree_lookup_slot(const struct radix_tree_root *root,
Matthew Wilcox35534c82016-12-19 17:43:19 -05001074 unsigned long index)
Huang Shijieb72b71c2009-06-16 15:33:42 -07001075{
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001076 void __rcu **slot;
Johannes Weiner139e5612014-04-03 14:47:54 -07001077
1078 if (!__radix_tree_lookup(root, index, NULL, &slot))
1079 return NULL;
1080 return slot;
Hans Reisera4331362005-11-07 00:59:29 -08001081}
1082EXPORT_SYMBOL(radix_tree_lookup_slot);
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084/**
1085 * radix_tree_lookup - perform lookup operation on a radix tree
1086 * @root: radix tree root
1087 * @index: index key
1088 *
1089 * Lookup the item at the position @index in the radix tree @root.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001090 *
1091 * This function can be called under rcu_read_lock, however the caller
1092 * must manage lifetimes of leaf nodes (eg. RCU may also be used to free
1093 * them safely). No RCU barriers are required to access or modify the
1094 * returned item, however.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05001096void *radix_tree_lookup(const struct radix_tree_root *root, unsigned long index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Johannes Weiner139e5612014-04-03 14:47:54 -07001098 return __radix_tree_lookup(root, index, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100EXPORT_SYMBOL(radix_tree_lookup);
1101
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001102static inline void replace_sibling_entries(struct radix_tree_node *node,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001103 void __rcu **slot, int count, int exceptional)
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001104{
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001105#ifdef CONFIG_RADIX_TREE_MULTIORDER
1106 void *ptr = node_to_entry(slot);
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001107 unsigned offset = get_slot_offset(node, slot) + 1;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001108
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001109 while (offset < RADIX_TREE_MAP_SIZE) {
Matthew Wilcox12320d02017-02-13 15:22:48 -05001110 if (rcu_dereference_raw(node->slots[offset]) != ptr)
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001111 break;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001112 if (count < 0) {
1113 node->slots[offset] = NULL;
1114 node->count--;
1115 }
1116 node->exceptional += exceptional;
1117 offset++;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001118 }
1119#endif
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001120}
1121
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001122static void replace_slot(void __rcu **slot, void *item,
1123 struct radix_tree_node *node, int count, int exceptional)
Johannes Weiner6d75f362016-12-12 16:43:43 -08001124{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001125 if (WARN_ON_ONCE(radix_tree_is_internal_node(item)))
1126 return;
Johannes Weiner6d75f362016-12-12 16:43:43 -08001127
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001128 if (node && (count || exceptional)) {
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001129 node->count += count;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001130 node->exceptional += exceptional;
1131 replace_sibling_entries(node, slot, count, exceptional);
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001132 }
Johannes Weiner6d75f362016-12-12 16:43:43 -08001133
1134 rcu_assign_pointer(*slot, item);
1135}
1136
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001137static bool node_tag_get(const struct radix_tree_root *root,
1138 const struct radix_tree_node *node,
1139 unsigned int tag, unsigned int offset)
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001140{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001141 if (node)
1142 return tag_get(node, tag, offset);
1143 return root_tag_get(root, tag);
1144}
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001145
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001146/*
1147 * IDR users want to be able to store NULL in the tree, so if the slot isn't
1148 * free, don't adjust the count, even if it's transitioning between NULL and
1149 * non-NULL. For the IDA, we mark slots as being IDR_FREE while they still
1150 * have empty bits, but it only stores NULL in slots when they're being
1151 * deleted.
1152 */
1153static int calculate_count(struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001154 struct radix_tree_node *node, void __rcu **slot,
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001155 void *item, void *old)
1156{
1157 if (is_idr(root)) {
1158 unsigned offset = get_slot_offset(node, slot);
1159 bool free = node_tag_get(root, node, IDR_FREE, offset);
1160 if (!free)
1161 return 0;
1162 if (!old)
1163 return 1;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001164 }
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001165 return !!item - !!old;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001166}
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168/**
Johannes Weinerf7942432016-12-12 16:43:41 -08001169 * __radix_tree_replace - replace item in a slot
Johannes Weiner4d693d02016-12-12 16:43:49 -08001170 * @root: radix tree root
1171 * @node: pointer to tree node
1172 * @slot: pointer to slot in @node
1173 * @item: new item to store in the slot.
1174 * @update_node: callback for changing leaf nodes
Johannes Weinerf7942432016-12-12 16:43:41 -08001175 *
1176 * For use with __radix_tree_lookup(). Caller must hold tree write locked
1177 * across slot lookup and replacement.
1178 */
1179void __radix_tree_replace(struct radix_tree_root *root,
1180 struct radix_tree_node *node,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001181 void __rcu **slot, void *item,
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001182 radix_tree_update_node_t update_node)
Johannes Weinerf7942432016-12-12 16:43:41 -08001183{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001184 void *old = rcu_dereference_raw(*slot);
1185 int exceptional = !!radix_tree_exceptional_entry(item) -
1186 !!radix_tree_exceptional_entry(old);
1187 int count = calculate_count(root, node, slot, item, old);
1188
Johannes Weiner6d75f362016-12-12 16:43:43 -08001189 /*
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001190 * This function supports replacing exceptional entries and
1191 * deleting entries, but that needs accounting against the
1192 * node unless the slot is root->rnode.
Johannes Weiner6d75f362016-12-12 16:43:43 -08001193 */
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001194 WARN_ON_ONCE(!node && (slot != (void __rcu **)&root->rnode) &&
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001195 (count || exceptional));
1196 replace_slot(slot, item, node, count, exceptional);
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001197
Johannes Weiner4d693d02016-12-12 16:43:49 -08001198 if (!node)
1199 return;
1200
1201 if (update_node)
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001202 update_node(node);
Johannes Weiner4d693d02016-12-12 16:43:49 -08001203
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001204 delete_node(root, node, update_node);
Johannes Weiner6d75f362016-12-12 16:43:43 -08001205}
Johannes Weinerf7942432016-12-12 16:43:41 -08001206
Johannes Weiner6d75f362016-12-12 16:43:43 -08001207/**
1208 * radix_tree_replace_slot - replace item in a slot
1209 * @root: radix tree root
1210 * @slot: pointer to slot
1211 * @item: new item to store in the slot.
1212 *
1213 * For use with radix_tree_lookup_slot(), radix_tree_gang_lookup_slot(),
1214 * radix_tree_gang_lookup_tag_slot(). Caller must hold tree write locked
1215 * across slot lookup and replacement.
1216 *
1217 * NOTE: This cannot be used to switch between non-entries (empty slots),
1218 * regular entries, and exceptional entries, as that requires accounting
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001219 * inside the radix tree node. When switching from one type of entry or
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001220 * deleting, use __radix_tree_lookup() and __radix_tree_replace() or
1221 * radix_tree_iter_replace().
Johannes Weiner6d75f362016-12-12 16:43:43 -08001222 */
1223void radix_tree_replace_slot(struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001224 void __rcu **slot, void *item)
Johannes Weiner6d75f362016-12-12 16:43:43 -08001225{
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001226 __radix_tree_replace(root, NULL, slot, item, NULL);
Johannes Weinerf7942432016-12-12 16:43:41 -08001227}
Song Liu10257d72017-01-11 10:00:51 -08001228EXPORT_SYMBOL(radix_tree_replace_slot);
Johannes Weinerf7942432016-12-12 16:43:41 -08001229
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001230/**
1231 * radix_tree_iter_replace - replace item in a slot
1232 * @root: radix tree root
1233 * @slot: pointer to slot
1234 * @item: new item to store in the slot.
1235 *
1236 * For use with radix_tree_split() and radix_tree_for_each_slot().
1237 * Caller must hold tree write locked across split and replacement.
1238 */
1239void radix_tree_iter_replace(struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001240 const struct radix_tree_iter *iter,
1241 void __rcu **slot, void *item)
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001242{
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001243 __radix_tree_replace(root, iter->node, slot, item, NULL);
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001244}
1245
Matthew Wilcox175542f2016-12-14 15:08:58 -08001246#ifdef CONFIG_RADIX_TREE_MULTIORDER
1247/**
1248 * radix_tree_join - replace multiple entries with one multiorder entry
1249 * @root: radix tree root
1250 * @index: an index inside the new entry
1251 * @order: order of the new entry
1252 * @item: new entry
1253 *
1254 * Call this function to replace several entries with one larger entry.
1255 * The existing entries are presumed to not need freeing as a result of
1256 * this call.
1257 *
1258 * The replacement entry will have all the tags set on it that were set
1259 * on any of the entries it is replacing.
1260 */
1261int radix_tree_join(struct radix_tree_root *root, unsigned long index,
1262 unsigned order, void *item)
1263{
1264 struct radix_tree_node *node;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001265 void __rcu **slot;
Matthew Wilcox175542f2016-12-14 15:08:58 -08001266 int error;
1267
1268 BUG_ON(radix_tree_is_internal_node(item));
1269
1270 error = __radix_tree_create(root, index, order, &node, &slot);
1271 if (!error)
1272 error = insert_entries(node, slot, item, order, true);
1273 if (error > 0)
1274 error = 0;
1275
1276 return error;
1277}
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001278
1279/**
1280 * radix_tree_split - Split an entry into smaller entries
1281 * @root: radix tree root
1282 * @index: An index within the large entry
1283 * @order: Order of new entries
1284 *
1285 * Call this function as the first step in replacing a multiorder entry
1286 * with several entries of lower order. After this function returns,
1287 * loop over the relevant portion of the tree using radix_tree_for_each_slot()
1288 * and call radix_tree_iter_replace() to set up each new entry.
1289 *
1290 * The tags from this entry are replicated to all the new entries.
1291 *
1292 * The radix tree should be locked against modification during the entire
1293 * replacement operation. Lock-free lookups will see RADIX_TREE_RETRY which
1294 * should prompt RCU walkers to restart the lookup from the root.
1295 */
1296int radix_tree_split(struct radix_tree_root *root, unsigned long index,
1297 unsigned order)
1298{
1299 struct radix_tree_node *parent, *node, *child;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001300 void __rcu **slot;
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001301 unsigned int offset, end;
1302 unsigned n, tag, tags = 0;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001303 gfp_t gfp = root_gfp_mask(root);
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001304
1305 if (!__radix_tree_lookup(root, index, &parent, &slot))
1306 return -ENOENT;
1307 if (!parent)
1308 return -ENOENT;
1309
1310 offset = get_slot_offset(parent, slot);
1311
1312 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1313 if (tag_get(parent, tag, offset))
1314 tags |= 1 << tag;
1315
1316 for (end = offset + 1; end < RADIX_TREE_MAP_SIZE; end++) {
Matthew Wilcox12320d02017-02-13 15:22:48 -05001317 if (!is_sibling_entry(parent,
1318 rcu_dereference_raw(parent->slots[end])))
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001319 break;
1320 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1321 if (tags & (1 << tag))
1322 tag_set(parent, tag, end);
1323 /* rcu_assign_pointer ensures tags are set before RETRY */
1324 rcu_assign_pointer(parent->slots[end], RADIX_TREE_RETRY);
1325 }
1326 rcu_assign_pointer(parent->slots[offset], RADIX_TREE_RETRY);
1327 parent->exceptional -= (end - offset);
1328
1329 if (order == parent->shift)
1330 return 0;
1331 if (order > parent->shift) {
1332 while (offset < end)
1333 offset += insert_entries(parent, &parent->slots[offset],
1334 RADIX_TREE_RETRY, order, true);
1335 return 0;
1336 }
1337
1338 node = parent;
1339
1340 for (;;) {
1341 if (node->shift > order) {
Matthew Wilcoxd58275b2017-01-16 17:10:21 -05001342 child = radix_tree_node_alloc(gfp, node, root,
Matthew Wilcoxe8de4342016-12-14 15:09:31 -08001343 node->shift - RADIX_TREE_MAP_SHIFT,
1344 offset, 0, 0);
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001345 if (!child)
1346 goto nomem;
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001347 if (node != parent) {
1348 node->count++;
Matthew Wilcox12320d02017-02-13 15:22:48 -05001349 rcu_assign_pointer(node->slots[offset],
1350 node_to_entry(child));
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001351 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1352 if (tags & (1 << tag))
1353 tag_set(node, tag, offset);
1354 }
1355
1356 node = child;
1357 offset = 0;
1358 continue;
1359 }
1360
1361 n = insert_entries(node, &node->slots[offset],
1362 RADIX_TREE_RETRY, order, false);
1363 BUG_ON(n > RADIX_TREE_MAP_SIZE);
1364
1365 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1366 if (tags & (1 << tag))
1367 tag_set(node, tag, offset);
1368 offset += n;
1369
1370 while (offset == RADIX_TREE_MAP_SIZE) {
1371 if (node == parent)
1372 break;
1373 offset = node->offset;
1374 child = node;
1375 node = node->parent;
1376 rcu_assign_pointer(node->slots[offset],
1377 node_to_entry(child));
1378 offset++;
1379 }
1380 if ((node == parent) && (offset == end))
1381 return 0;
1382 }
1383
1384 nomem:
1385 /* Shouldn't happen; did user forget to preload? */
1386 /* TODO: free all the allocated nodes */
1387 WARN_ON(1);
1388 return -ENOMEM;
1389}
Matthew Wilcox175542f2016-12-14 15:08:58 -08001390#endif
1391
Matthew Wilcox30b888b2017-01-28 09:55:20 -05001392static void node_tag_set(struct radix_tree_root *root,
1393 struct radix_tree_node *node,
1394 unsigned int tag, unsigned int offset)
1395{
1396 while (node) {
1397 if (tag_get(node, tag, offset))
1398 return;
1399 tag_set(node, tag, offset);
1400 offset = node->offset;
1401 node = node->parent;
1402 }
1403
1404 if (!root_tag_get(root, tag))
1405 root_tag_set(root, tag);
1406}
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408/**
1409 * radix_tree_tag_set - set a tag on a radix tree node
1410 * @root: radix tree root
1411 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001412 * @tag: tag index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 *
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001414 * Set the search tag (which must be < RADIX_TREE_MAX_TAGS)
1415 * corresponding to @index in the radix tree. From
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * the root all the way down to the leaf node.
1417 *
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001418 * Returns the address of the tagged item. Setting a tag on a not-present
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 * item is a bug.
1420 */
1421void *radix_tree_tag_set(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001422 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
Ross Zwislerfb969902016-05-20 17:02:32 -07001424 struct radix_tree_node *node, *parent;
1425 unsigned long maxindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001427 radix_tree_load_root(root, &node, &maxindex);
Ross Zwislerfb969902016-05-20 17:02:32 -07001428 BUG_ON(index > maxindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001430 while (radix_tree_is_internal_node(node)) {
Ross Zwislerfb969902016-05-20 17:02:32 -07001431 unsigned offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001433 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001434 offset = radix_tree_descend(parent, &node, index);
Ross Zwislerfb969902016-05-20 17:02:32 -07001435 BUG_ON(!node);
1436
1437 if (!tag_get(parent, tag, offset))
1438 tag_set(parent, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
1440
Nick Piggin612d6c12006-06-23 02:03:22 -07001441 /* set the root's tag bit */
Ross Zwislerfb969902016-05-20 17:02:32 -07001442 if (!root_tag_get(root, tag))
Nick Piggin612d6c12006-06-23 02:03:22 -07001443 root_tag_set(root, tag);
1444
Ross Zwislerfb969902016-05-20 17:02:32 -07001445 return node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447EXPORT_SYMBOL(radix_tree_tag_set);
1448
Matthew Wilcox30b888b2017-01-28 09:55:20 -05001449/**
1450 * radix_tree_iter_tag_set - set a tag on the current iterator entry
1451 * @root: radix tree root
1452 * @iter: iterator state
1453 * @tag: tag to set
1454 */
1455void radix_tree_iter_tag_set(struct radix_tree_root *root,
1456 const struct radix_tree_iter *iter, unsigned int tag)
1457{
1458 node_tag_set(root, iter->node, tag, iter_offset(iter));
1459}
1460
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001461static void node_tag_clear(struct radix_tree_root *root,
1462 struct radix_tree_node *node,
1463 unsigned int tag, unsigned int offset)
1464{
1465 while (node) {
1466 if (!tag_get(node, tag, offset))
1467 return;
1468 tag_clear(node, tag, offset);
1469 if (any_tag_set(node, tag))
1470 return;
1471
1472 offset = node->offset;
1473 node = node->parent;
1474 }
1475
1476 /* clear the root's tag bit */
1477 if (root_tag_get(root, tag))
1478 root_tag_clear(root, tag);
1479}
1480
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001481/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 * radix_tree_tag_clear - clear a tag on a radix tree node
1483 * @root: radix tree root
1484 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001485 * @tag: tag index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 *
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001487 * Clear the search tag (which must be < RADIX_TREE_MAX_TAGS)
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001488 * corresponding to @index in the radix tree. If this causes
1489 * the leaf node to have no tags set then clear the tag in the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 * next-to-leaf node, etc.
1491 *
1492 * Returns the address of the tagged item on success, else NULL. ie:
1493 * has the same return value and semantics as radix_tree_lookup().
1494 */
1495void *radix_tree_tag_clear(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001496 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Ross Zwisler00f47b52016-05-20 17:02:35 -07001498 struct radix_tree_node *node, *parent;
1499 unsigned long maxindex;
Hugh Dickinse2bdb932012-01-12 17:20:41 -08001500 int uninitialized_var(offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001502 radix_tree_load_root(root, &node, &maxindex);
Ross Zwisler00f47b52016-05-20 17:02:35 -07001503 if (index > maxindex)
1504 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Ross Zwisler00f47b52016-05-20 17:02:35 -07001506 parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001508 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001509 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001510 offset = radix_tree_descend(parent, &node, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
1512
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001513 if (node)
1514 node_tag_clear(root, parent, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Ross Zwisler00f47b52016-05-20 17:02:35 -07001516 return node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518EXPORT_SYMBOL(radix_tree_tag_clear);
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520/**
Matthew Wilcox30b888b2017-01-28 09:55:20 -05001521 * radix_tree_iter_tag_clear - clear a tag on the current iterator entry
1522 * @root: radix tree root
1523 * @iter: iterator state
1524 * @tag: tag to clear
1525 */
1526void radix_tree_iter_tag_clear(struct radix_tree_root *root,
1527 const struct radix_tree_iter *iter, unsigned int tag)
1528{
1529 node_tag_clear(root, iter->node, tag, iter_offset(iter));
1530}
1531
1532/**
Marcelo Tosatti32605a12005-09-06 15:16:48 -07001533 * radix_tree_tag_get - get a tag on a radix tree node
1534 * @root: radix tree root
1535 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001536 * @tag: tag index (< RADIX_TREE_MAX_TAGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 *
Marcelo Tosatti32605a12005-09-06 15:16:48 -07001538 * Return values:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 *
Nick Piggin612d6c12006-06-23 02:03:22 -07001540 * 0: tag not present or not set
1541 * 1: tag set
David Howellsce826532010-04-06 22:36:20 +01001542 *
1543 * Note that the return value of this function may not be relied on, even if
1544 * the RCU lock is held, unless tag modification and node deletion are excluded
1545 * from concurrency.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05001547int radix_tree_tag_get(const struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001548 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
Ross Zwisler4589ba62016-05-20 17:02:38 -07001550 struct radix_tree_node *node, *parent;
1551 unsigned long maxindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Nick Piggin612d6c12006-06-23 02:03:22 -07001553 if (!root_tag_get(root, tag))
1554 return 0;
1555
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001556 radix_tree_load_root(root, &node, &maxindex);
Ross Zwisler4589ba62016-05-20 17:02:38 -07001557 if (index > maxindex)
1558 return 0;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001559
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001560 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001561 unsigned offset;
Ross Zwisler4589ba62016-05-20 17:02:38 -07001562
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001563 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001564 offset = radix_tree_descend(parent, &node, index);
Ross Zwisler4589ba62016-05-20 17:02:38 -07001565
Ross Zwisler4589ba62016-05-20 17:02:38 -07001566 if (!tag_get(parent, tag, offset))
1567 return 0;
1568 if (node == RADIX_TREE_RETRY)
1569 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
Ross Zwisler4589ba62016-05-20 17:02:38 -07001571
1572 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574EXPORT_SYMBOL(radix_tree_tag_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Ross Zwisler21ef5332016-05-20 17:02:26 -07001576static inline void __set_iter_shift(struct radix_tree_iter *iter,
1577 unsigned int shift)
1578{
1579#ifdef CONFIG_RADIX_TREE_MULTIORDER
1580 iter->shift = shift;
1581#endif
1582}
1583
Matthew Wilcox148deab2016-12-14 15:08:49 -08001584/* Construct iter->tags bit-mask from node->tags[tag] array */
1585static void set_iter_tags(struct radix_tree_iter *iter,
1586 struct radix_tree_node *node, unsigned offset,
1587 unsigned tag)
1588{
1589 unsigned tag_long = offset / BITS_PER_LONG;
1590 unsigned tag_bit = offset % BITS_PER_LONG;
1591
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001592 if (!node) {
1593 iter->tags = 1;
1594 return;
1595 }
1596
Matthew Wilcox148deab2016-12-14 15:08:49 -08001597 iter->tags = node->tags[tag][tag_long] >> tag_bit;
1598
1599 /* This never happens if RADIX_TREE_TAG_LONGS == 1 */
1600 if (tag_long < RADIX_TREE_TAG_LONGS - 1) {
1601 /* Pick tags from next element */
1602 if (tag_bit)
1603 iter->tags |= node->tags[tag][tag_long + 1] <<
1604 (BITS_PER_LONG - tag_bit);
1605 /* Clip chunk size, here only BITS_PER_LONG tags */
1606 iter->next_index = __radix_tree_iter_add(iter, BITS_PER_LONG);
1607 }
1608}
1609
1610#ifdef CONFIG_RADIX_TREE_MULTIORDER
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001611static void __rcu **skip_siblings(struct radix_tree_node **nodep,
1612 void __rcu **slot, struct radix_tree_iter *iter)
Matthew Wilcox148deab2016-12-14 15:08:49 -08001613{
1614 void *sib = node_to_entry(slot - 1);
1615
1616 while (iter->index < iter->next_index) {
1617 *nodep = rcu_dereference_raw(*slot);
1618 if (*nodep && *nodep != sib)
1619 return slot;
1620 slot++;
1621 iter->index = __radix_tree_iter_add(iter, 1);
1622 iter->tags >>= 1;
1623 }
1624
1625 *nodep = NULL;
1626 return NULL;
1627}
1628
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001629void __rcu **__radix_tree_next_slot(void __rcu **slot,
1630 struct radix_tree_iter *iter, unsigned flags)
Matthew Wilcox148deab2016-12-14 15:08:49 -08001631{
1632 unsigned tag = flags & RADIX_TREE_ITER_TAG_MASK;
1633 struct radix_tree_node *node = rcu_dereference_raw(*slot);
1634
1635 slot = skip_siblings(&node, slot, iter);
1636
1637 while (radix_tree_is_internal_node(node)) {
1638 unsigned offset;
1639 unsigned long next_index;
1640
1641 if (node == RADIX_TREE_RETRY)
1642 return slot;
1643 node = entry_to_node(node);
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001644 iter->node = node;
Matthew Wilcox148deab2016-12-14 15:08:49 -08001645 iter->shift = node->shift;
1646
1647 if (flags & RADIX_TREE_ITER_TAGGED) {
1648 offset = radix_tree_find_next_bit(node, tag, 0);
1649 if (offset == RADIX_TREE_MAP_SIZE)
1650 return NULL;
1651 slot = &node->slots[offset];
1652 iter->index = __radix_tree_iter_add(iter, offset);
1653 set_iter_tags(iter, node, offset, tag);
1654 node = rcu_dereference_raw(*slot);
1655 } else {
1656 offset = 0;
1657 slot = &node->slots[0];
1658 for (;;) {
1659 node = rcu_dereference_raw(*slot);
1660 if (node)
1661 break;
1662 slot++;
1663 offset++;
1664 if (offset == RADIX_TREE_MAP_SIZE)
1665 return NULL;
1666 }
1667 iter->index = __radix_tree_iter_add(iter, offset);
1668 }
1669 if ((flags & RADIX_TREE_ITER_CONTIG) && (offset > 0))
1670 goto none;
1671 next_index = (iter->index | shift_maxindex(iter->shift)) + 1;
1672 if (next_index < iter->next_index)
1673 iter->next_index = next_index;
1674 }
1675
1676 return slot;
1677 none:
1678 iter->next_index = 0;
1679 return NULL;
1680}
1681EXPORT_SYMBOL(__radix_tree_next_slot);
1682#else
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001683static void __rcu **skip_siblings(struct radix_tree_node **nodep,
1684 void __rcu **slot, struct radix_tree_iter *iter)
Matthew Wilcox148deab2016-12-14 15:08:49 -08001685{
1686 return slot;
1687}
1688#endif
1689
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001690void __rcu **radix_tree_iter_resume(void __rcu **slot,
1691 struct radix_tree_iter *iter)
Matthew Wilcox148deab2016-12-14 15:08:49 -08001692{
1693 struct radix_tree_node *node;
1694
1695 slot++;
1696 iter->index = __radix_tree_iter_add(iter, 1);
Matthew Wilcox148deab2016-12-14 15:08:49 -08001697 skip_siblings(&node, slot, iter);
1698 iter->next_index = iter->index;
1699 iter->tags = 0;
1700 return NULL;
1701}
1702EXPORT_SYMBOL(radix_tree_iter_resume);
1703
Fengguang Wu6df8ba42007-10-16 01:24:33 -07001704/**
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001705 * radix_tree_next_chunk - find next chunk of slots for iteration
1706 *
1707 * @root: radix tree root
1708 * @iter: iterator state
1709 * @flags: RADIX_TREE_ITER_* flags and tag index
1710 * Returns: pointer to chunk first slot, or NULL if iteration is over
1711 */
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001712void __rcu **radix_tree_next_chunk(const struct radix_tree_root *root,
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001713 struct radix_tree_iter *iter, unsigned flags)
1714{
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001715 unsigned tag = flags & RADIX_TREE_ITER_TAG_MASK;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001716 struct radix_tree_node *node, *child;
Ross Zwisler21ef5332016-05-20 17:02:26 -07001717 unsigned long index, offset, maxindex;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001718
1719 if ((flags & RADIX_TREE_ITER_TAGGED) && !root_tag_get(root, tag))
1720 return NULL;
1721
1722 /*
1723 * Catch next_index overflow after ~0UL. iter->index never overflows
1724 * during iterating; it can be zero only at the beginning.
1725 * And we cannot overflow iter->next_index in a single step,
1726 * because RADIX_TREE_MAP_SHIFT < BITS_PER_LONG.
Konstantin Khlebnikovfffaee32012-06-05 21:36:33 +04001727 *
1728 * This condition also used by radix_tree_next_slot() to stop
Matthew Wilcox91b9677c2016-12-14 15:08:31 -08001729 * contiguous iterating, and forbid switching to the next chunk.
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001730 */
1731 index = iter->next_index;
1732 if (!index && iter->index)
1733 return NULL;
1734
Ross Zwisler21ef5332016-05-20 17:02:26 -07001735 restart:
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001736 radix_tree_load_root(root, &child, &maxindex);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001737 if (index > maxindex)
1738 return NULL;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001739 if (!child)
1740 return NULL;
Ross Zwisler21ef5332016-05-20 17:02:26 -07001741
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001742 if (!radix_tree_is_internal_node(child)) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001743 /* Single-slot tree */
Ross Zwisler21ef5332016-05-20 17:02:26 -07001744 iter->index = index;
1745 iter->next_index = maxindex + 1;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001746 iter->tags = 1;
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001747 iter->node = NULL;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001748 __set_iter_shift(iter, 0);
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001749 return (void __rcu **)&root->rnode;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001750 }
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001751
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001752 do {
1753 node = entry_to_node(child);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001754 offset = radix_tree_descend(node, &child, index);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001755
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001756 if ((flags & RADIX_TREE_ITER_TAGGED) ?
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001757 !tag_get(node, tag, offset) : !child) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001758 /* Hole detected */
1759 if (flags & RADIX_TREE_ITER_CONTIG)
1760 return NULL;
1761
1762 if (flags & RADIX_TREE_ITER_TAGGED)
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -08001763 offset = radix_tree_find_next_bit(node, tag,
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001764 offset + 1);
1765 else
1766 while (++offset < RADIX_TREE_MAP_SIZE) {
Matthew Wilcox12320d02017-02-13 15:22:48 -05001767 void *slot = rcu_dereference_raw(
1768 node->slots[offset]);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001769 if (is_sibling_entry(node, slot))
1770 continue;
1771 if (slot)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001772 break;
1773 }
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001774 index &= ~node_maxindex(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001775 index += offset << node->shift;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001776 /* Overflow after ~0UL */
1777 if (!index)
1778 return NULL;
1779 if (offset == RADIX_TREE_MAP_SIZE)
1780 goto restart;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001781 child = rcu_dereference_raw(node->slots[offset]);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001782 }
1783
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001784 if (!child)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001785 goto restart;
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001786 if (child == RADIX_TREE_RETRY)
1787 break;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001788 } while (radix_tree_is_internal_node(child));
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001789
1790 /* Update the iterator state */
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001791 iter->index = (index &~ node_maxindex(node)) | (offset << node->shift);
1792 iter->next_index = (index | node_maxindex(node)) + 1;
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001793 iter->node = node;
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001794 __set_iter_shift(iter, node->shift);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001795
Matthew Wilcox148deab2016-12-14 15:08:49 -08001796 if (flags & RADIX_TREE_ITER_TAGGED)
1797 set_iter_tags(iter, node, offset, tag);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001798
1799 return node->slots + offset;
1800}
1801EXPORT_SYMBOL(radix_tree_next_chunk);
1802
1803/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 * radix_tree_gang_lookup - perform multiple lookup on a radix tree
1805 * @root: radix tree root
1806 * @results: where the results of the lookup are placed
1807 * @first_index: start the lookup from this key
1808 * @max_items: place up to this many items at *results
1809 *
1810 * Performs an index-ascending scan of the tree for present items. Places
1811 * them at *@results and returns the number of items which were placed at
1812 * *@results.
1813 *
1814 * The implementation is naive.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001815 *
1816 * Like radix_tree_lookup, radix_tree_gang_lookup may be called under
1817 * rcu_read_lock. In this case, rather than the returned results being
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001818 * an atomic snapshot of the tree at a single point in time, the
1819 * semantics of an RCU protected gang lookup are as though multiple
1820 * radix_tree_lookups have been issued in individual locks, and results
1821 * stored in 'results'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 */
1823unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001824radix_tree_gang_lookup(const struct radix_tree_root *root, void **results,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 unsigned long first_index, unsigned int max_items)
1826{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001827 struct radix_tree_iter iter;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001828 void __rcu **slot;
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001829 unsigned int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001831 if (unlikely(!max_items))
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001832 return 0;
1833
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001834 radix_tree_for_each_slot(slot, root, &iter, first_index) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001835 results[ret] = rcu_dereference_raw(*slot);
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001836 if (!results[ret])
1837 continue;
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001838 if (radix_tree_is_internal_node(results[ret])) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001839 slot = radix_tree_iter_retry(&iter);
1840 continue;
1841 }
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001842 if (++ret == max_items)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 return ret;
1847}
1848EXPORT_SYMBOL(radix_tree_gang_lookup);
1849
Nick Piggin47feff22008-07-25 19:45:29 -07001850/**
1851 * radix_tree_gang_lookup_slot - perform multiple slot lookup on radix tree
1852 * @root: radix tree root
1853 * @results: where the results of the lookup are placed
Hugh Dickins63286502011-08-03 16:21:18 -07001854 * @indices: where their indices should be placed (but usually NULL)
Nick Piggin47feff22008-07-25 19:45:29 -07001855 * @first_index: start the lookup from this key
1856 * @max_items: place up to this many items at *results
1857 *
1858 * Performs an index-ascending scan of the tree for present items. Places
1859 * their slots at *@results and returns the number of items which were
1860 * placed at *@results.
1861 *
1862 * The implementation is naive.
1863 *
1864 * Like radix_tree_gang_lookup as far as RCU and locking goes. Slots must
1865 * be dereferenced with radix_tree_deref_slot, and if using only RCU
1866 * protection, radix_tree_deref_slot may fail requiring a retry.
1867 */
1868unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001869radix_tree_gang_lookup_slot(const struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001870 void __rcu ***results, unsigned long *indices,
Nick Piggin47feff22008-07-25 19:45:29 -07001871 unsigned long first_index, unsigned int max_items)
1872{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001873 struct radix_tree_iter iter;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001874 void __rcu **slot;
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001875 unsigned int ret = 0;
Nick Piggin47feff22008-07-25 19:45:29 -07001876
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001877 if (unlikely(!max_items))
Nick Piggin47feff22008-07-25 19:45:29 -07001878 return 0;
1879
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001880 radix_tree_for_each_slot(slot, root, &iter, first_index) {
1881 results[ret] = slot;
Hugh Dickins63286502011-08-03 16:21:18 -07001882 if (indices)
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001883 indices[ret] = iter.index;
1884 if (++ret == max_items)
Nick Piggin47feff22008-07-25 19:45:29 -07001885 break;
Nick Piggin47feff22008-07-25 19:45:29 -07001886 }
1887
1888 return ret;
1889}
1890EXPORT_SYMBOL(radix_tree_gang_lookup_slot);
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892/**
1893 * radix_tree_gang_lookup_tag - perform multiple lookup on a radix tree
1894 * based on a tag
1895 * @root: radix tree root
1896 * @results: where the results of the lookup are placed
1897 * @first_index: start the lookup from this key
1898 * @max_items: place up to this many items at *results
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001899 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 *
1901 * Performs an index-ascending scan of the tree for present items which
1902 * have the tag indexed by @tag set. Places the items at *@results and
1903 * returns the number of items which were placed at *@results.
1904 */
1905unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001906radix_tree_gang_lookup_tag(const struct radix_tree_root *root, void **results,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001907 unsigned long first_index, unsigned int max_items,
1908 unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001910 struct radix_tree_iter iter;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001911 void __rcu **slot;
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001912 unsigned int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001914 if (unlikely(!max_items))
Nick Piggin612d6c12006-06-23 02:03:22 -07001915 return 0;
1916
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001917 radix_tree_for_each_tagged(slot, root, &iter, first_index, tag) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001918 results[ret] = rcu_dereference_raw(*slot);
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001919 if (!results[ret])
1920 continue;
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001921 if (radix_tree_is_internal_node(results[ret])) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001922 slot = radix_tree_iter_retry(&iter);
1923 continue;
1924 }
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001925 if (++ret == max_items)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 return ret;
1930}
1931EXPORT_SYMBOL(radix_tree_gang_lookup_tag);
1932
1933/**
Nick Piggin47feff22008-07-25 19:45:29 -07001934 * radix_tree_gang_lookup_tag_slot - perform multiple slot lookup on a
1935 * radix tree based on a tag
1936 * @root: radix tree root
1937 * @results: where the results of the lookup are placed
1938 * @first_index: start the lookup from this key
1939 * @max_items: place up to this many items at *results
1940 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
1941 *
1942 * Performs an index-ascending scan of the tree for present items which
1943 * have the tag indexed by @tag set. Places the slots at *@results and
1944 * returns the number of slots which were placed at *@results.
1945 */
1946unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001947radix_tree_gang_lookup_tag_slot(const struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001948 void __rcu ***results, unsigned long first_index,
Matthew Wilcox35534c82016-12-19 17:43:19 -05001949 unsigned int max_items, unsigned int tag)
Nick Piggin47feff22008-07-25 19:45:29 -07001950{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001951 struct radix_tree_iter iter;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001952 void __rcu **slot;
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001953 unsigned int ret = 0;
Nick Piggin47feff22008-07-25 19:45:29 -07001954
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001955 if (unlikely(!max_items))
Nick Piggin47feff22008-07-25 19:45:29 -07001956 return 0;
1957
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001958 radix_tree_for_each_tagged(slot, root, &iter, first_index, tag) {
1959 results[ret] = slot;
1960 if (++ret == max_items)
Nick Piggin47feff22008-07-25 19:45:29 -07001961 break;
Nick Piggin47feff22008-07-25 19:45:29 -07001962 }
1963
1964 return ret;
1965}
1966EXPORT_SYMBOL(radix_tree_gang_lookup_tag_slot);
1967
Nick Piggin47feff22008-07-25 19:45:29 -07001968/**
Johannes Weiner139e5612014-04-03 14:47:54 -07001969 * __radix_tree_delete_node - try to free node after clearing a slot
1970 * @root: radix tree root
Johannes Weiner139e5612014-04-03 14:47:54 -07001971 * @node: node containing @index
Johannes Weinerea07b862017-01-06 19:21:43 -05001972 * @update_node: callback for changing leaf nodes
Johannes Weiner139e5612014-04-03 14:47:54 -07001973 *
1974 * After clearing the slot at @index in @node from radix tree
1975 * rooted at @root, call this function to attempt freeing the
1976 * node and shrinking the tree.
Johannes Weiner139e5612014-04-03 14:47:54 -07001977 */
Johannes Weiner14b46872016-12-12 16:43:52 -08001978void __radix_tree_delete_node(struct radix_tree_root *root,
Johannes Weinerea07b862017-01-06 19:21:43 -05001979 struct radix_tree_node *node,
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001980 radix_tree_update_node_t update_node)
Johannes Weiner139e5612014-04-03 14:47:54 -07001981{
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001982 delete_node(root, node, update_node);
Johannes Weiner139e5612014-04-03 14:47:54 -07001983}
1984
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001985static bool __radix_tree_delete(struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001986 struct radix_tree_node *node, void __rcu **slot)
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001987{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001988 void *old = rcu_dereference_raw(*slot);
1989 int exceptional = radix_tree_exceptional_entry(old) ? -1 : 0;
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001990 unsigned offset = get_slot_offset(node, slot);
1991 int tag;
1992
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001993 if (is_idr(root))
1994 node_tag_set(root, node, IDR_FREE, offset);
1995 else
1996 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1997 node_tag_clear(root, node, tag, offset);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001998
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001999 replace_slot(slot, NULL, node, -1, exceptional);
Mel Gormanc7df8ad2017-11-15 17:37:41 -08002000 return node && delete_node(root, node, NULL);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002001}
2002
Johannes Weiner139e5612014-04-03 14:47:54 -07002003/**
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002004 * radix_tree_iter_delete - delete the entry at this iterator position
2005 * @root: radix tree root
2006 * @iter: iterator state
2007 * @slot: pointer to slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002009 * Delete the entry at the position currently pointed to by the iterator.
2010 * This may result in the current node being freed; if it is, the iterator
2011 * is advanced so that it will not reference the freed memory. This
2012 * function may be called without any locking if there are no other threads
2013 * which can access this tree.
2014 */
2015void radix_tree_iter_delete(struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05002016 struct radix_tree_iter *iter, void __rcu **slot)
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002017{
2018 if (__radix_tree_delete(root, iter->node, slot))
2019 iter->index = iter->next_index;
2020}
Chris Wilsond1b48c12017-08-16 09:52:08 +01002021EXPORT_SYMBOL(radix_tree_iter_delete);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002022
2023/**
2024 * radix_tree_delete_item - delete an item from a radix tree
2025 * @root: radix tree root
2026 * @index: index key
2027 * @item: expected item
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002029 * Remove @item at @index from the radix tree rooted at @root.
2030 *
2031 * Return: the deleted entry, or %NULL if it was not present
2032 * or the entry at the given @index was not @item.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 */
Johannes Weiner53c59f22014-04-03 14:47:39 -07002034void *radix_tree_delete_item(struct radix_tree_root *root,
2035 unsigned long index, void *item)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002037 struct radix_tree_node *node = NULL;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05002038 void __rcu **slot;
Johannes Weiner139e5612014-04-03 14:47:54 -07002039 void *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Johannes Weiner139e5612014-04-03 14:47:54 -07002041 entry = __radix_tree_lookup(root, index, &node, &slot);
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002042 if (!entry && (!is_idr(root) || node_tag_get(root, node, IDR_FREE,
2043 get_slot_offset(node, slot))))
Johannes Weiner139e5612014-04-03 14:47:54 -07002044 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Johannes Weiner139e5612014-04-03 14:47:54 -07002046 if (item && entry != item)
2047 return NULL;
2048
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002049 __radix_tree_delete(root, node, slot);
Christoph Lameter201b6262005-09-06 15:16:46 -07002050
Johannes Weiner139e5612014-04-03 14:47:54 -07002051 return entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052}
Johannes Weiner53c59f22014-04-03 14:47:39 -07002053EXPORT_SYMBOL(radix_tree_delete_item);
2054
2055/**
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002056 * radix_tree_delete - delete an entry from a radix tree
2057 * @root: radix tree root
2058 * @index: index key
Johannes Weiner53c59f22014-04-03 14:47:39 -07002059 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002060 * Remove the entry at @index from the radix tree rooted at @root.
Johannes Weiner53c59f22014-04-03 14:47:39 -07002061 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002062 * Return: The deleted entry, or %NULL if it was not present.
Johannes Weiner53c59f22014-04-03 14:47:39 -07002063 */
2064void *radix_tree_delete(struct radix_tree_root *root, unsigned long index)
2065{
2066 return radix_tree_delete_item(root, index, NULL);
2067}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068EXPORT_SYMBOL(radix_tree_delete);
2069
Johannes Weinerd3798ae2016-10-04 22:02:08 +02002070void radix_tree_clear_tags(struct radix_tree_root *root,
2071 struct radix_tree_node *node,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05002072 void __rcu **slot)
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002073{
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002074 if (node) {
2075 unsigned int tag, offset = get_slot_offset(node, slot);
2076 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
2077 node_tag_clear(root, node, tag, offset);
2078 } else {
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002079 root_tag_clear_all(root);
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002080 }
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002081}
2082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083/**
2084 * radix_tree_tagged - test whether any items in the tree are tagged
2085 * @root: radix tree root
2086 * @tag: tag to test
2087 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05002088int radix_tree_tagged(const struct radix_tree_root *root, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
Nick Piggin612d6c12006-06-23 02:03:22 -07002090 return root_tag_get(root, tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092EXPORT_SYMBOL(radix_tree_tagged);
2093
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002094/**
2095 * idr_preload - preload for idr_alloc()
2096 * @gfp_mask: allocation mask to use for preloading
2097 *
2098 * Preallocate memory to use for the next call to idr_alloc(). This function
2099 * returns with preemption disabled. It will be enabled by idr_preload_end().
2100 */
2101void idr_preload(gfp_t gfp_mask)
2102{
Eric Dumazetbc9ae222017-09-08 16:15:54 -07002103 if (__radix_tree_preload(gfp_mask, IDR_PRELOAD_SIZE))
2104 preempt_disable();
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002105}
2106EXPORT_SYMBOL(idr_preload);
2107
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -05002108/**
2109 * ida_pre_get - reserve resources for ida allocation
2110 * @ida: ida handle
2111 * @gfp: memory allocation flags
2112 *
2113 * This function should be called before calling ida_get_new_above(). If it
2114 * is unable to allocate memory, it will return %0. On success, it returns %1.
2115 */
2116int ida_pre_get(struct ida *ida, gfp_t gfp)
2117{
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -05002118 /*
2119 * The IDA API has no preload_end() equivalent. Instead,
2120 * ida_get_new() can return -EAGAIN, prompting the caller
2121 * to return to the ida_pre_get() step.
2122 */
Eric Dumazetbc9ae222017-09-08 16:15:54 -07002123 if (!__radix_tree_preload(gfp, IDA_PRELOAD_SIZE))
2124 preempt_enable();
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -05002125
2126 if (!this_cpu_read(ida_bitmap)) {
2127 struct ida_bitmap *bitmap = kmalloc(sizeof(*bitmap), gfp);
2128 if (!bitmap)
2129 return 0;
Matthew Wilcox4ecd9542017-03-03 12:16:10 -05002130 if (this_cpu_cmpxchg(ida_bitmap, NULL, bitmap))
2131 kfree(bitmap);
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -05002132 }
2133
2134 return 1;
2135}
2136EXPORT_SYMBOL(ida_pre_get);
2137
Chris Mi388f79f2017-08-30 02:31:57 -04002138void __rcu **idr_get_free_cmn(struct radix_tree_root *root,
2139 struct radix_tree_iter *iter, gfp_t gfp,
2140 unsigned long max)
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002141{
2142 struct radix_tree_node *node = NULL, *child;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05002143 void __rcu **slot = (void __rcu **)&root->rnode;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002144 unsigned long maxindex, start = iter->next_index;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002145 unsigned int shift, offset = 0;
2146
2147 grow:
2148 shift = radix_tree_load_root(root, &child, &maxindex);
2149 if (!radix_tree_tagged(root, IDR_FREE))
2150 start = max(start, maxindex + 1);
2151 if (start > max)
2152 return ERR_PTR(-ENOSPC);
2153
2154 if (start > maxindex) {
2155 int error = radix_tree_extend(root, gfp, start, shift);
2156 if (error < 0)
2157 return ERR_PTR(error);
2158 shift = error;
2159 child = rcu_dereference_raw(root->rnode);
2160 }
2161
2162 while (shift) {
2163 shift -= RADIX_TREE_MAP_SHIFT;
2164 if (child == NULL) {
2165 /* Have to add a child node. */
Matthew Wilcoxd58275b2017-01-16 17:10:21 -05002166 child = radix_tree_node_alloc(gfp, node, root, shift,
2167 offset, 0, 0);
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002168 if (!child)
2169 return ERR_PTR(-ENOMEM);
2170 all_tag_set(child, IDR_FREE);
2171 rcu_assign_pointer(*slot, node_to_entry(child));
2172 if (node)
2173 node->count++;
2174 } else if (!radix_tree_is_internal_node(child))
2175 break;
2176
2177 node = entry_to_node(child);
2178 offset = radix_tree_descend(node, &child, start);
2179 if (!tag_get(node, IDR_FREE, offset)) {
2180 offset = radix_tree_find_next_bit(node, IDR_FREE,
2181 offset + 1);
2182 start = next_index(start, node, offset);
2183 if (start > max)
2184 return ERR_PTR(-ENOSPC);
2185 while (offset == RADIX_TREE_MAP_SIZE) {
2186 offset = node->offset + 1;
2187 node = node->parent;
2188 if (!node)
2189 goto grow;
2190 shift = node->shift;
2191 }
2192 child = rcu_dereference_raw(node->slots[offset]);
2193 }
2194 slot = &node->slots[offset];
2195 }
2196
2197 iter->index = start;
2198 if (node)
2199 iter->next_index = 1 + min(max, (start | node_maxindex(node)));
2200 else
2201 iter->next_index = 1;
2202 iter->node = node;
2203 __set_iter_shift(iter, shift);
2204 set_iter_tags(iter, node, offset, IDR_FREE);
2205
2206 return slot;
2207}
2208
2209/**
2210 * idr_destroy - release all internal memory from an IDR
2211 * @idr: idr handle
2212 *
2213 * After this function is called, the IDR is empty, and may be reused or
2214 * the data structure containing it may be freed.
2215 *
2216 * A typical clean-up sequence for objects stored in an idr tree will use
2217 * idr_for_each() to free all objects, if necessary, then idr_destroy() to
2218 * free the memory used to keep track of those objects.
2219 */
2220void idr_destroy(struct idr *idr)
2221{
2222 struct radix_tree_node *node = rcu_dereference_raw(idr->idr_rt.rnode);
2223 if (radix_tree_is_internal_node(node))
2224 radix_tree_free_nodes(node);
2225 idr->idr_rt.rnode = NULL;
2226 root_tag_set(&idr->idr_rt, IDR_FREE);
2227}
2228EXPORT_SYMBOL(idr_destroy);
2229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230static void
Johannes Weiner449dd692014-04-03 14:47:56 -07002231radix_tree_node_ctor(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
Johannes Weiner449dd692014-04-03 14:47:56 -07002233 struct radix_tree_node *node = arg;
2234
2235 memset(node, 0, sizeof(*node));
2236 INIT_LIST_HEAD(&node->private_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237}
2238
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -07002239static __init unsigned long __maxindex(unsigned int height)
2240{
2241 unsigned int width = height * RADIX_TREE_MAP_SHIFT;
2242 int shift = RADIX_TREE_INDEX_BITS - width;
2243
2244 if (shift < 0)
2245 return ~0UL;
2246 if (shift >= BITS_PER_LONG)
2247 return 0UL;
2248 return ~0UL >> shift;
2249}
2250
2251static __init void radix_tree_init_maxnodes(void)
2252{
2253 unsigned long height_to_maxindex[RADIX_TREE_MAX_PATH + 1];
2254 unsigned int i, j;
2255
2256 for (i = 0; i < ARRAY_SIZE(height_to_maxindex); i++)
2257 height_to_maxindex[i] = __maxindex(i);
2258 for (i = 0; i < ARRAY_SIZE(height_to_maxnodes); i++) {
2259 for (j = i; j > 0; j--)
2260 height_to_maxnodes[i] += height_to_maxindex[j - 1] + 1;
2261 }
2262}
2263
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002264static int radix_tree_cpu_dead(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07002266 struct radix_tree_preload *rtp;
2267 struct radix_tree_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07002269 /* Free per-cpu pool of preloaded nodes */
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002270 rtp = &per_cpu(radix_tree_preloads, cpu);
2271 while (rtp->nr) {
2272 node = rtp->nodes;
Matthew Wilcox1293d5c2017-01-16 16:41:29 -05002273 rtp->nodes = node->parent;
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002274 kmem_cache_free(radix_tree_node_cachep, node);
2275 rtp->nr--;
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07002276 }
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -05002277 kfree(per_cpu(ida_bitmap, cpu));
2278 per_cpu(ida_bitmap, cpu) = NULL;
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002279 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282void __init radix_tree_init(void)
2283{
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002284 int ret;
Michal Hocko7e784422017-05-03 14:53:09 -07002285
2286 BUILD_BUG_ON(RADIX_TREE_MAX_TAGS + __GFP_BITS_SHIFT > 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 radix_tree_node_cachep = kmem_cache_create("radix_tree_node",
2288 sizeof(struct radix_tree_node), 0,
Christoph Lameter488514d2008-04-28 02:12:05 -07002289 SLAB_PANIC | SLAB_RECLAIM_ACCOUNT,
2290 radix_tree_node_ctor);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -07002291 radix_tree_init_maxnodes();
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002292 ret = cpuhp_setup_state_nocalls(CPUHP_RADIX_DEAD, "lib/radix:dead",
2293 NULL, radix_tree_cpu_dead);
2294 WARN_ON(ret < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295}