blob: a904a8ddd174372170f94507d556899448730d51 [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 Wilcox460488c2017-11-28 15:16:24 -050027#include <linux/bug.h>
Matthew Wilcoxe157b552016-12-14 15:09:01 -080028#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/errno.h>
Matthew Wilcox0a835c42016-12-20 10:27:56 -050030#include <linux/export.h>
31#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/init.h>
33#include <linux/kernel.h>
Catalin Marinasce80b062014-06-06 14:38:18 -070034#include <linux/kmemleak.h>
Matthew Wilcox0a835c42016-12-20 10:27:56 -050035#include <linux/percpu.h>
Frederic Weisbecker92cf2112015-05-12 16:41:46 +020036#include <linux/preempt.h> /* in_interrupt() */
Matthew Wilcox0a835c42016-12-20 10:27:56 -050037#include <linux/radix-tree.h>
38#include <linux/rcupdate.h>
39#include <linux/slab.h>
40#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -070043/* Number of nodes in fully populated tree of given height */
44static unsigned long height_to_maxnodes[RADIX_TREE_MAX_PATH + 1] __read_mostly;
45
Jeff Moyer26fb1582007-10-16 01:24:49 -070046/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * Radix tree node cache.
48 */
Christoph Lametere18b8902006-12-06 20:33:20 -080049static struct kmem_cache *radix_tree_node_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/*
Nick Piggin55368052012-05-29 15:07:34 -070052 * The radix tree is variable-height, so an insert operation not only has
53 * to build the branch to its corresponding item, it also has to build the
54 * branch to existing items if the size has to be increased (by
55 * radix_tree_extend).
56 *
57 * The worst case is a zero height tree with just a single item at index 0,
58 * and then inserting an item at index ULONG_MAX. This requires 2 new branches
59 * of RADIX_TREE_MAX_PATH size to be created, with only the root node shared.
60 * Hence:
61 */
62#define RADIX_TREE_PRELOAD_SIZE (RADIX_TREE_MAX_PATH * 2 - 1)
63
64/*
Matthew Wilcox0a835c42016-12-20 10:27:56 -050065 * The IDR does not have to be as high as the radix tree since it uses
66 * signed integers, not unsigned longs.
67 */
68#define IDR_INDEX_BITS (8 /* CHAR_BIT */ * sizeof(int) - 1)
69#define IDR_MAX_PATH (DIV_ROUND_UP(IDR_INDEX_BITS, \
70 RADIX_TREE_MAP_SHIFT))
71#define IDR_PRELOAD_SIZE (IDR_MAX_PATH * 2 - 1)
72
73/*
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -050074 * The IDA is even shorter since it uses a bitmap at the last level.
75 */
76#define IDA_INDEX_BITS (8 * sizeof(int) - 1 - ilog2(IDA_BITMAP_BITS))
77#define IDA_MAX_PATH (DIV_ROUND_UP(IDA_INDEX_BITS, \
78 RADIX_TREE_MAP_SHIFT))
79#define IDA_PRELOAD_SIZE (IDA_MAX_PATH * 2 - 1)
80
81/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * Per-cpu pool of preloaded nodes
83 */
84struct radix_tree_preload {
Matthew Wilcox2fcd9002016-05-20 17:03:04 -070085 unsigned nr;
Matthew Wilcox1293d5c2017-01-16 16:41:29 -050086 /* nodes->parent points to next preallocated node */
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -070087 struct radix_tree_node *nodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
Harvey Harrison8cef7d52009-01-06 14:40:50 -080089static DEFINE_PER_CPU(struct radix_tree_preload, radix_tree_preloads) = { 0, };
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Matthew Wilcox148deab2016-12-14 15:08:49 -080091static inline struct radix_tree_node *entry_to_node(void *ptr)
92{
93 return (void *)((unsigned long)ptr & ~RADIX_TREE_INTERNAL_NODE);
94}
95
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -070096static inline void *node_to_entry(void *ptr)
Nick Piggin27d20fd2010-11-11 14:05:19 -080097{
Matthew Wilcox30ff46cc2016-05-20 17:03:22 -070098 return (void *)((unsigned long)ptr | RADIX_TREE_INTERNAL_NODE);
Nick Piggin27d20fd2010-11-11 14:05:19 -080099}
100
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -0700101#define RADIX_TREE_RETRY node_to_entry(NULL)
Matthew Wilcoxafe0e392016-05-20 17:02:17 -0700102
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700103#ifdef CONFIG_RADIX_TREE_MULTIORDER
104/* Sibling slots point directly to another slot in the same node */
Matthew Wilcox35534c82016-12-19 17:43:19 -0500105static inline
106bool is_sibling_entry(const struct radix_tree_node *parent, void *node)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700107{
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500108 void __rcu **ptr = node;
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700109 return (parent->slots <= ptr) &&
110 (ptr < parent->slots + RADIX_TREE_MAP_SIZE);
111}
112#else
Matthew Wilcox35534c82016-12-19 17:43:19 -0500113static inline
114bool is_sibling_entry(const struct radix_tree_node *parent, void *node)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700115{
116 return false;
117}
118#endif
119
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500120static inline unsigned long
121get_slot_offset(const struct radix_tree_node *parent, void __rcu **slot)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700122{
Matthew Wilcox76f070b2018-08-18 07:05:50 -0400123 return parent ? slot - parent->slots : 0;
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700124}
125
Matthew Wilcox35534c82016-12-19 17:43:19 -0500126static unsigned int radix_tree_descend(const struct radix_tree_node *parent,
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700127 struct radix_tree_node **nodep, unsigned long index)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700128{
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700129 unsigned int offset = (index >> parent->shift) & RADIX_TREE_MAP_MASK;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500130 void __rcu **entry = rcu_dereference_raw(parent->slots[offset]);
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700131
132#ifdef CONFIG_RADIX_TREE_MULTIORDER
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700133 if (radix_tree_is_internal_node(entry)) {
Linus Torvalds8d2c0d32016-09-25 13:32:46 -0700134 if (is_sibling_entry(parent, entry)) {
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500135 void __rcu **sibentry;
136 sibentry = (void __rcu **) entry_to_node(entry);
Linus Torvalds8d2c0d32016-09-25 13:32:46 -0700137 offset = get_slot_offset(parent, sibentry);
138 entry = rcu_dereference_raw(*sibentry);
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700139 }
140 }
141#endif
142
143 *nodep = (void *)entry;
144 return offset;
145}
146
Matthew Wilcox35534c82016-12-19 17:43:19 -0500147static inline gfp_t root_gfp_mask(const struct radix_tree_root *root)
Nick Piggin612d6c12006-06-23 02:03:22 -0700148{
Matthew Wilcoxfa290cd2018-04-10 16:36:28 -0700149 return root->gfp_mask & (__GFP_BITS_MASK & ~GFP_ZONEMASK);
Nick Piggin612d6c12006-06-23 02:03:22 -0700150}
151
Nick Piggin643b52b2008-06-12 15:21:52 -0700152static inline void tag_set(struct radix_tree_node *node, unsigned int tag,
153 int offset)
154{
155 __set_bit(offset, node->tags[tag]);
156}
157
158static inline void tag_clear(struct radix_tree_node *node, unsigned int tag,
159 int offset)
160{
161 __clear_bit(offset, node->tags[tag]);
162}
163
Matthew Wilcox35534c82016-12-19 17:43:19 -0500164static inline int tag_get(const struct radix_tree_node *node, unsigned int tag,
Nick Piggin643b52b2008-06-12 15:21:52 -0700165 int offset)
166{
167 return test_bit(offset, node->tags[tag]);
168}
169
Matthew Wilcox35534c82016-12-19 17:43:19 -0500170static inline void root_tag_set(struct radix_tree_root *root, unsigned tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700171{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500172 root->gfp_mask |= (__force gfp_t)(1 << (tag + ROOT_TAG_SHIFT));
Nick Piggin643b52b2008-06-12 15:21:52 -0700173}
174
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700175static inline void root_tag_clear(struct radix_tree_root *root, unsigned tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700176{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500177 root->gfp_mask &= (__force gfp_t)~(1 << (tag + ROOT_TAG_SHIFT));
Nick Piggin643b52b2008-06-12 15:21:52 -0700178}
179
180static inline void root_tag_clear_all(struct radix_tree_root *root)
181{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500182 root->gfp_mask &= (1 << ROOT_TAG_SHIFT) - 1;
Nick Piggin643b52b2008-06-12 15:21:52 -0700183}
184
Matthew Wilcox35534c82016-12-19 17:43:19 -0500185static inline int root_tag_get(const struct radix_tree_root *root, unsigned tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700186{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500187 return (__force int)root->gfp_mask & (1 << (tag + ROOT_TAG_SHIFT));
Nick Piggin643b52b2008-06-12 15:21:52 -0700188}
189
Matthew Wilcox35534c82016-12-19 17:43:19 -0500190static inline unsigned root_tags_get(const struct radix_tree_root *root)
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700191{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500192 return (__force unsigned)root->gfp_mask >> ROOT_TAG_SHIFT;
193}
194
195static inline bool is_idr(const struct radix_tree_root *root)
196{
197 return !!(root->gfp_mask & ROOT_IS_IDR);
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700198}
199
Nick Piggin643b52b2008-06-12 15:21:52 -0700200/*
201 * Returns 1 if any slot in the node has this tag set.
202 * Otherwise returns 0.
203 */
Matthew Wilcox35534c82016-12-19 17:43:19 -0500204static inline int any_tag_set(const struct radix_tree_node *node,
205 unsigned int tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700206{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700207 unsigned idx;
Nick Piggin643b52b2008-06-12 15:21:52 -0700208 for (idx = 0; idx < RADIX_TREE_TAG_LONGS; idx++) {
209 if (node->tags[tag][idx])
210 return 1;
211 }
212 return 0;
213}
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700214
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500215static inline void all_tag_set(struct radix_tree_node *node, unsigned int tag)
216{
217 bitmap_fill(node->tags[tag], RADIX_TREE_MAP_SIZE);
218}
219
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700220/**
221 * radix_tree_find_next_bit - find the next set bit in a memory region
222 *
223 * @addr: The address to base the search on
224 * @size: The bitmap size in bits
225 * @offset: The bitnumber to start searching at
226 *
227 * Unrollable variant of find_next_bit() for constant size arrays.
228 * Tail bits starting from size to roundup(size, BITS_PER_LONG) must be zero.
229 * Returns next bit offset, or size if nothing found.
230 */
231static __always_inline unsigned long
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800232radix_tree_find_next_bit(struct radix_tree_node *node, unsigned int tag,
233 unsigned long offset)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700234{
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800235 const unsigned long *addr = node->tags[tag];
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700236
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800237 if (offset < RADIX_TREE_MAP_SIZE) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700238 unsigned long tmp;
239
240 addr += offset / BITS_PER_LONG;
241 tmp = *addr >> (offset % BITS_PER_LONG);
242 if (tmp)
243 return __ffs(tmp) + offset;
244 offset = (offset + BITS_PER_LONG) & ~(BITS_PER_LONG - 1);
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800245 while (offset < RADIX_TREE_MAP_SIZE) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700246 tmp = *++addr;
247 if (tmp)
248 return __ffs(tmp) + offset;
249 offset += BITS_PER_LONG;
250 }
251 }
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800252 return RADIX_TREE_MAP_SIZE;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700253}
254
Matthew Wilcox268f42d2016-12-14 15:08:55 -0800255static unsigned int iter_offset(const struct radix_tree_iter *iter)
256{
257 return (iter->index >> iter_shift(iter)) & RADIX_TREE_MAP_MASK;
258}
259
Matthew Wilcox218ed752016-12-14 15:08:43 -0800260/*
261 * The maximum index which can be stored in a radix tree
262 */
263static inline unsigned long shift_maxindex(unsigned int shift)
264{
265 return (RADIX_TREE_MAP_SIZE << shift) - 1;
266}
267
Matthew Wilcox35534c82016-12-19 17:43:19 -0500268static inline unsigned long node_maxindex(const struct radix_tree_node *node)
Matthew Wilcox218ed752016-12-14 15:08:43 -0800269{
270 return shift_maxindex(node->shift);
271}
272
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500273static unsigned long next_index(unsigned long index,
274 const struct radix_tree_node *node,
275 unsigned long offset)
276{
277 return (index & ~node_maxindex(node)) + (offset << node->shift);
278}
279
Ross Zwisler0796c582016-05-20 17:02:55 -0700280#ifndef __KERNEL__
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700281static void dump_node(struct radix_tree_node *node, unsigned long index)
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700282{
Ross Zwisler0796c582016-05-20 17:02:55 -0700283 unsigned long i;
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700284
Matthew Wilcox218ed752016-12-14 15:08:43 -0800285 pr_debug("radix node: %p offset %d indices %lu-%lu parent %p tags %lx %lx %lx shift %d count %d exceptional %d\n",
286 node, node->offset, index, index | node_maxindex(node),
287 node->parent,
Ross Zwisler0796c582016-05-20 17:02:55 -0700288 node->tags[0][0], node->tags[1][0], node->tags[2][0],
Matthew Wilcox218ed752016-12-14 15:08:43 -0800289 node->shift, node->count, node->exceptional);
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700290
Ross Zwisler0796c582016-05-20 17:02:55 -0700291 for (i = 0; i < RADIX_TREE_MAP_SIZE; i++) {
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700292 unsigned long first = index | (i << node->shift);
293 unsigned long last = first | ((1UL << node->shift) - 1);
Ross Zwisler0796c582016-05-20 17:02:55 -0700294 void *entry = node->slots[i];
295 if (!entry)
296 continue;
Matthew Wilcox218ed752016-12-14 15:08:43 -0800297 if (entry == RADIX_TREE_RETRY) {
298 pr_debug("radix retry offset %ld indices %lu-%lu parent %p\n",
299 i, first, last, node);
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700300 } else if (!radix_tree_is_internal_node(entry)) {
Matthew Wilcox218ed752016-12-14 15:08:43 -0800301 pr_debug("radix entry %p offset %ld indices %lu-%lu parent %p\n",
302 entry, i, first, last, node);
303 } else if (is_sibling_entry(node, entry)) {
304 pr_debug("radix sblng %p offset %ld indices %lu-%lu parent %p val %p\n",
305 entry, i, first, last, node,
306 *(void **)entry_to_node(entry));
Ross Zwisler0796c582016-05-20 17:02:55 -0700307 } else {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700308 dump_node(entry_to_node(entry), first);
Ross Zwisler0796c582016-05-20 17:02:55 -0700309 }
310 }
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700311}
312
313/* For debug */
314static void radix_tree_dump(struct radix_tree_root *root)
315{
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700316 pr_debug("radix root: %p rnode %p tags %x\n",
317 root, root->rnode,
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500318 root->gfp_mask >> ROOT_TAG_SHIFT);
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700319 if (!radix_tree_is_internal_node(root->rnode))
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700320 return;
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700321 dump_node(entry_to_node(root->rnode), 0);
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700322}
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500323
324static void dump_ida_node(void *entry, unsigned long index)
325{
326 unsigned long i;
327
328 if (!entry)
329 return;
330
331 if (radix_tree_is_internal_node(entry)) {
332 struct radix_tree_node *node = entry_to_node(entry);
333
334 pr_debug("ida node: %p offset %d indices %lu-%lu parent %p free %lx shift %d count %d\n",
335 node, node->offset, index * IDA_BITMAP_BITS,
336 ((index | node_maxindex(node)) + 1) *
337 IDA_BITMAP_BITS - 1,
338 node->parent, node->tags[0][0], node->shift,
339 node->count);
340 for (i = 0; i < RADIX_TREE_MAP_SIZE; i++)
341 dump_ida_node(node->slots[i],
342 index | (i << node->shift));
Matthew Wilcoxd37cacc2016-12-17 08:18:17 -0500343 } else if (radix_tree_exceptional_entry(entry)) {
344 pr_debug("ida excp: %p offset %d indices %lu-%lu data %lx\n",
345 entry, (int)(index & RADIX_TREE_MAP_MASK),
346 index * IDA_BITMAP_BITS,
347 index * IDA_BITMAP_BITS + BITS_PER_LONG -
348 RADIX_TREE_EXCEPTIONAL_SHIFT,
349 (unsigned long)entry >>
350 RADIX_TREE_EXCEPTIONAL_SHIFT);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500351 } else {
352 struct ida_bitmap *bitmap = entry;
353
354 pr_debug("ida btmp: %p offset %d indices %lu-%lu data", bitmap,
355 (int)(index & RADIX_TREE_MAP_MASK),
356 index * IDA_BITMAP_BITS,
357 (index + 1) * IDA_BITMAP_BITS - 1);
358 for (i = 0; i < IDA_BITMAP_LONGS; i++)
359 pr_cont(" %lx", bitmap->bitmap[i]);
360 pr_cont("\n");
361 }
362}
363
364static void ida_dump(struct ida *ida)
365{
366 struct radix_tree_root *root = &ida->ida_rt;
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -0500367 pr_debug("ida: %p node %p free %d\n", ida, root->rnode,
368 root->gfp_mask >> ROOT_TAG_SHIFT);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500369 dump_ida_node(root->rnode, 0);
370}
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700371#endif
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373/*
374 * This assumes that the caller has performed appropriate preallocation, and
375 * that the caller has pinned this thread of control to the current CPU.
376 */
377static struct radix_tree_node *
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500378radix_tree_node_alloc(gfp_t gfp_mask, struct radix_tree_node *parent,
Matthew Wilcoxd58275b2017-01-16 17:10:21 -0500379 struct radix_tree_root *root,
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800380 unsigned int shift, unsigned int offset,
381 unsigned int count, unsigned int exceptional)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Nick Piggine2848a02008-02-04 22:29:10 -0800383 struct radix_tree_node *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Jan Kara5e4c0d972013-09-11 14:26:05 -0700385 /*
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700386 * Preload code isn't irq safe and it doesn't make sense to use
387 * preloading during an interrupt anyway as all the allocations have
388 * to be atomic. So just do normal allocation when in interrupt.
Jan Kara5e4c0d972013-09-11 14:26:05 -0700389 */
Mel Gormand0164ad2015-11-06 16:28:21 -0800390 if (!gfpflags_allow_blocking(gfp_mask) && !in_interrupt()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 struct radix_tree_preload *rtp;
392
Nick Piggine2848a02008-02-04 22:29:10 -0800393 /*
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700394 * Even if the caller has preloaded, try to allocate from the
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700395 * cache first for the new node to get accounted to the memory
396 * cgroup.
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700397 */
398 ret = kmem_cache_alloc(radix_tree_node_cachep,
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700399 gfp_mask | __GFP_NOWARN);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700400 if (ret)
401 goto out;
402
403 /*
Nick Piggine2848a02008-02-04 22:29:10 -0800404 * Provided the caller has preloaded here, we will always
405 * succeed in getting a node here (and never reach
406 * kmem_cache_alloc)
407 */
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700408 rtp = this_cpu_ptr(&radix_tree_preloads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (rtp->nr) {
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700410 ret = rtp->nodes;
Matthew Wilcox1293d5c2017-01-16 16:41:29 -0500411 rtp->nodes = ret->parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 rtp->nr--;
413 }
Catalin Marinasce80b062014-06-06 14:38:18 -0700414 /*
415 * Update the allocation stack trace as this is more useful
416 * for debugging.
417 */
418 kmemleak_update_trace(ret);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700419 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700421 ret = kmem_cache_alloc(radix_tree_node_cachep, gfp_mask);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700422out:
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700423 BUG_ON(radix_tree_is_internal_node(ret));
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800424 if (ret) {
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800425 ret->shift = shift;
426 ret->offset = offset;
427 ret->count = count;
428 ret->exceptional = exceptional;
Matthew Wilcoxd58275b2017-01-16 17:10:21 -0500429 ret->parent = parent;
430 ret->root = root;
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return ret;
433}
434
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800435static void radix_tree_node_rcu_free(struct rcu_head *head)
436{
437 struct radix_tree_node *node =
438 container_of(head, struct radix_tree_node, rcu_head);
Nick Piggin643b52b2008-06-12 15:21:52 -0700439
440 /*
Matthew Wilcox175542f2016-12-14 15:08:58 -0800441 * Must only free zeroed nodes into the slab. We can be left with
442 * non-NULL entries by radix_tree_free_nodes, so clear the entries
443 * and tags here.
Nick Piggin643b52b2008-06-12 15:21:52 -0700444 */
Matthew Wilcox175542f2016-12-14 15:08:58 -0800445 memset(node->slots, 0, sizeof(node->slots));
446 memset(node->tags, 0, sizeof(node->tags));
Matthew Wilcox91d9c052016-12-14 15:08:34 -0800447 INIT_LIST_HEAD(&node->private_list);
Nick Piggin643b52b2008-06-12 15:21:52 -0700448
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800449 kmem_cache_free(radix_tree_node_cachep, node);
450}
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452static inline void
453radix_tree_node_free(struct radix_tree_node *node)
454{
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800455 call_rcu(&node->rcu_head, radix_tree_node_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
458/*
459 * Load up this CPU's radix_tree_node buffer with sufficient objects to
460 * ensure that the addition of a single element in the tree cannot fail. On
461 * success, return zero, with preemption disabled. On error, return -ENOMEM
462 * with preemption not disabled.
David Howellsb34df792009-11-19 18:11:14 +0000463 *
464 * To make use of this facility, the radix tree must be initialised without
Mel Gormand0164ad2015-11-06 16:28:21 -0800465 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 */
Eric Dumazetbc9ae222017-09-08 16:15:54 -0700467static __must_check int __radix_tree_preload(gfp_t gfp_mask, unsigned nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 struct radix_tree_preload *rtp;
470 struct radix_tree_node *node;
471 int ret = -ENOMEM;
472
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700473 /*
474 * Nodes preloaded by one cgroup can be be used by another cgroup, so
475 * they should never be accounted to any particular memory cgroup.
476 */
477 gfp_mask &= ~__GFP_ACCOUNT;
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700480 rtp = this_cpu_ptr(&radix_tree_preloads);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700481 while (rtp->nr < nr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 preempt_enable();
Christoph Lameter488514d2008-04-28 02:12:05 -0700483 node = kmem_cache_alloc(radix_tree_node_cachep, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (node == NULL)
485 goto out;
486 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700487 rtp = this_cpu_ptr(&radix_tree_preloads);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700488 if (rtp->nr < nr) {
Matthew Wilcox1293d5c2017-01-16 16:41:29 -0500489 node->parent = rtp->nodes;
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700490 rtp->nodes = node;
491 rtp->nr++;
492 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 kmem_cache_free(radix_tree_node_cachep, node);
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496 ret = 0;
497out:
498 return ret;
499}
Jan Kara5e4c0d972013-09-11 14:26:05 -0700500
501/*
502 * Load up this CPU's radix_tree_node buffer with sufficient objects to
503 * ensure that the addition of a single element in the tree cannot fail. On
504 * success, return zero, with preemption disabled. On error, return -ENOMEM
505 * with preemption not disabled.
506 *
507 * To make use of this facility, the radix tree must be initialised without
Mel Gormand0164ad2015-11-06 16:28:21 -0800508 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
Jan Kara5e4c0d972013-09-11 14:26:05 -0700509 */
510int radix_tree_preload(gfp_t gfp_mask)
511{
512 /* Warn on non-sensical use... */
Mel Gormand0164ad2015-11-06 16:28:21 -0800513 WARN_ON_ONCE(!gfpflags_allow_blocking(gfp_mask));
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700514 return __radix_tree_preload(gfp_mask, RADIX_TREE_PRELOAD_SIZE);
Jan Kara5e4c0d972013-09-11 14:26:05 -0700515}
David Chinnerd7f09232007-07-14 16:05:04 +1000516EXPORT_SYMBOL(radix_tree_preload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Nick Piggin6e954b92006-01-08 01:01:40 -0800518/*
Jan Kara5e4c0d972013-09-11 14:26:05 -0700519 * The same as above function, except we don't guarantee preloading happens.
520 * We do it, if we decide it helps. On success, return zero with preemption
521 * disabled. On error, return -ENOMEM with preemption not disabled.
522 */
523int radix_tree_maybe_preload(gfp_t gfp_mask)
524{
Mel Gormand0164ad2015-11-06 16:28:21 -0800525 if (gfpflags_allow_blocking(gfp_mask))
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700526 return __radix_tree_preload(gfp_mask, RADIX_TREE_PRELOAD_SIZE);
Jan Kara5e4c0d972013-09-11 14:26:05 -0700527 /* Preloading doesn't help anything with this gfp mask, skip it */
528 preempt_disable();
529 return 0;
530}
531EXPORT_SYMBOL(radix_tree_maybe_preload);
532
Matthew Wilcox27916532016-12-14 15:09:04 -0800533#ifdef CONFIG_RADIX_TREE_MULTIORDER
534/*
535 * Preload with enough objects to ensure that we can split a single entry
536 * of order @old_order into many entries of size @new_order
537 */
538int radix_tree_split_preload(unsigned int old_order, unsigned int new_order,
539 gfp_t gfp_mask)
540{
541 unsigned top = 1 << (old_order % RADIX_TREE_MAP_SHIFT);
542 unsigned layers = (old_order / RADIX_TREE_MAP_SHIFT) -
543 (new_order / RADIX_TREE_MAP_SHIFT);
544 unsigned nr = 0;
545
546 WARN_ON_ONCE(!gfpflags_allow_blocking(gfp_mask));
547 BUG_ON(new_order >= old_order);
548
549 while (layers--)
550 nr = nr * RADIX_TREE_MAP_SIZE + 1;
551 return __radix_tree_preload(gfp_mask, top * nr);
552}
553#endif
554
Jan Kara5e4c0d972013-09-11 14:26:05 -0700555/*
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700556 * The same as function above, but preload number of nodes required to insert
557 * (1 << order) continuous naturally-aligned elements.
558 */
559int radix_tree_maybe_preload_order(gfp_t gfp_mask, int order)
560{
561 unsigned long nr_subtrees;
562 int nr_nodes, subtree_height;
563
564 /* Preloading doesn't help anything with this gfp mask, skip it */
565 if (!gfpflags_allow_blocking(gfp_mask)) {
566 preempt_disable();
567 return 0;
568 }
569
570 /*
571 * Calculate number and height of fully populated subtrees it takes to
572 * store (1 << order) elements.
573 */
574 nr_subtrees = 1 << order;
575 for (subtree_height = 0; nr_subtrees > RADIX_TREE_MAP_SIZE;
576 subtree_height++)
577 nr_subtrees >>= RADIX_TREE_MAP_SHIFT;
578
579 /*
580 * The worst case is zero height tree with a single item at index 0 and
581 * then inserting items starting at ULONG_MAX - (1 << order).
582 *
583 * This requires RADIX_TREE_MAX_PATH nodes to build branch from root to
584 * 0-index item.
585 */
586 nr_nodes = RADIX_TREE_MAX_PATH;
587
588 /* Plus branch to fully populated subtrees. */
589 nr_nodes += RADIX_TREE_MAX_PATH - subtree_height;
590
591 /* Root node is shared. */
592 nr_nodes--;
593
594 /* Plus nodes required to build subtrees. */
595 nr_nodes += nr_subtrees * height_to_maxnodes[subtree_height];
596
597 return __radix_tree_preload(gfp_mask, nr_nodes);
598}
599
Matthew Wilcox35534c82016-12-19 17:43:19 -0500600static unsigned radix_tree_load_root(const struct radix_tree_root *root,
Matthew Wilcox1456a432016-05-20 17:02:08 -0700601 struct radix_tree_node **nodep, unsigned long *maxindex)
602{
603 struct radix_tree_node *node = rcu_dereference_raw(root->rnode);
604
605 *nodep = node;
606
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700607 if (likely(radix_tree_is_internal_node(node))) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700608 node = entry_to_node(node);
Matthew Wilcox1456a432016-05-20 17:02:08 -0700609 *maxindex = node_maxindex(node);
Matthew Wilcoxc12e51b2016-05-20 17:03:10 -0700610 return node->shift + RADIX_TREE_MAP_SHIFT;
Matthew Wilcox1456a432016-05-20 17:02:08 -0700611 }
612
613 *maxindex = 0;
614 return 0;
615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/*
618 * Extend a radix tree so it can store key @index.
619 */
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500620static int radix_tree_extend(struct radix_tree_root *root, gfp_t gfp,
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700621 unsigned long index, unsigned int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500623 void *entry;
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700624 unsigned int maxshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 int tag;
626
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700627 /* Figure out what the shift should be. */
628 maxshift = shift;
629 while (index > shift_maxindex(maxshift))
630 maxshift += RADIX_TREE_MAP_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500632 entry = rcu_dereference_raw(root->rnode);
633 if (!entry && (!is_idr(root) || root_tag_get(root, IDR_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 do {
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500637 struct radix_tree_node *node = radix_tree_node_alloc(gfp, NULL,
Matthew Wilcoxd58275b2017-01-16 17:10:21 -0500638 root, shift, 0, 1, 0);
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700639 if (!node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return -ENOMEM;
641
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500642 if (is_idr(root)) {
643 all_tag_set(node, IDR_FREE);
644 if (!root_tag_get(root, IDR_FREE)) {
645 tag_clear(node, IDR_FREE, 0);
646 root_tag_set(root, IDR_FREE);
647 }
648 } else {
649 /* Propagate the aggregated tag info to the new child */
650 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++) {
651 if (root_tag_get(root, tag))
652 tag_set(node, tag, 0);
653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700656 BUG_ON(shift > BITS_PER_LONG);
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500657 if (radix_tree_is_internal_node(entry)) {
658 entry_to_node(entry)->parent = node;
659 } else if (radix_tree_exceptional_entry(entry)) {
Johannes Weinerf7942432016-12-12 16:43:41 -0800660 /* Moving an exceptional root->rnode to a node */
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800661 node->exceptional = 1;
Johannes Weinerf7942432016-12-12 16:43:41 -0800662 }
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500663 /*
664 * entry was already in the radix tree, so we do not need
665 * rcu_assign_pointer here
666 */
667 node->slots[0] = (void __rcu *)entry;
668 entry = node_to_entry(node);
669 rcu_assign_pointer(root->rnode, entry);
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700670 shift += RADIX_TREE_MAP_SHIFT;
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700671 } while (shift <= maxshift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672out:
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700673 return maxshift + RADIX_TREE_MAP_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
676/**
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800677 * radix_tree_shrink - shrink radix tree to minimum height
678 * @root radix tree root
679 */
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500680static inline bool radix_tree_shrink(struct radix_tree_root *root,
Mel Gormanc7df8ad2017-11-15 17:37:41 -0800681 radix_tree_update_node_t update_node)
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800682{
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500683 bool shrunk = false;
684
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800685 for (;;) {
Matthew Wilcox12320d02017-02-13 15:22:48 -0500686 struct radix_tree_node *node = rcu_dereference_raw(root->rnode);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800687 struct radix_tree_node *child;
688
689 if (!radix_tree_is_internal_node(node))
690 break;
691 node = entry_to_node(node);
692
693 /*
694 * The candidate node has more than one child, or its child
695 * is not at the leftmost slot, or the child is a multiorder
696 * entry, we cannot shrink.
697 */
698 if (node->count != 1)
699 break;
Matthew Wilcox12320d02017-02-13 15:22:48 -0500700 child = rcu_dereference_raw(node->slots[0]);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800701 if (!child)
702 break;
703 if (!radix_tree_is_internal_node(child) && node->shift)
704 break;
705
Matthew Wilcox66ee6202018-06-25 06:56:50 -0400706 /*
707 * For an IDR, we must not shrink entry 0 into the root in
708 * case somebody calls idr_replace() with a pointer that
709 * appears to be an internal entry
710 */
711 if (!node->shift && is_idr(root))
712 break;
713
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800714 if (radix_tree_is_internal_node(child))
715 entry_to_node(child)->parent = NULL;
716
717 /*
718 * We don't need rcu_assign_pointer(), since we are simply
719 * moving the node from one part of the tree to another: if it
720 * was safe to dereference the old pointer to it
721 * (node->slots[0]), it will be safe to dereference the new
722 * one (root->rnode) as far as dependent read barriers go.
723 */
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500724 root->rnode = (void __rcu *)child;
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500725 if (is_idr(root) && !tag_get(node, IDR_FREE, 0))
726 root_tag_clear(root, IDR_FREE);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800727
728 /*
729 * We have a dilemma here. The node's slot[0] must not be
730 * NULLed in case there are concurrent lookups expecting to
731 * find the item. However if this was a bottom-level node,
732 * then it may be subject to the slot pointer being visible
733 * to callers dereferencing it. If item corresponding to
734 * slot[0] is subsequently deleted, these callers would expect
735 * their slot to become empty sooner or later.
736 *
737 * For example, lockless pagecache will look up a slot, deref
738 * the page pointer, and if the page has 0 refcount it means it
739 * was concurrently deleted from pagecache so try the deref
740 * again. Fortunately there is already a requirement for logic
741 * to retry the entire slot lookup -- the indirect pointer
742 * problem (replacing direct root node with an indirect pointer
743 * also results in a stale slot). So tag the slot as indirect
744 * to force callers to retry.
745 */
Johannes Weiner4d693d02016-12-12 16:43:49 -0800746 node->count = 0;
747 if (!radix_tree_is_internal_node(child)) {
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500748 node->slots[0] = (void __rcu *)RADIX_TREE_RETRY;
Johannes Weiner4d693d02016-12-12 16:43:49 -0800749 if (update_node)
Mel Gormanc7df8ad2017-11-15 17:37:41 -0800750 update_node(node);
Johannes Weiner4d693d02016-12-12 16:43:49 -0800751 }
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800752
Johannes Weinerea07b862017-01-06 19:21:43 -0500753 WARN_ON_ONCE(!list_empty(&node->private_list));
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800754 radix_tree_node_free(node);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500755 shrunk = true;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800756 }
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500757
758 return shrunk;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800759}
760
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500761static bool delete_node(struct radix_tree_root *root,
Johannes Weiner4d693d02016-12-12 16:43:49 -0800762 struct radix_tree_node *node,
Mel Gormanc7df8ad2017-11-15 17:37:41 -0800763 radix_tree_update_node_t update_node)
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800764{
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500765 bool deleted = false;
766
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800767 do {
768 struct radix_tree_node *parent;
769
770 if (node->count) {
Matthew Wilcox12320d02017-02-13 15:22:48 -0500771 if (node_to_entry(node) ==
772 rcu_dereference_raw(root->rnode))
Mel Gormanc7df8ad2017-11-15 17:37:41 -0800773 deleted |= radix_tree_shrink(root,
774 update_node);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500775 return deleted;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800776 }
777
778 parent = node->parent;
779 if (parent) {
780 parent->slots[node->offset] = NULL;
781 parent->count--;
782 } else {
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500783 /*
784 * Shouldn't the tags already have all been cleared
785 * by the caller?
786 */
787 if (!is_idr(root))
788 root_tag_clear_all(root);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800789 root->rnode = NULL;
790 }
791
Johannes Weinerea07b862017-01-06 19:21:43 -0500792 WARN_ON_ONCE(!list_empty(&node->private_list));
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800793 radix_tree_node_free(node);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500794 deleted = true;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800795
796 node = parent;
797 } while (node);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500798
799 return deleted;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800800}
801
802/**
Johannes Weiner139e5612014-04-03 14:47:54 -0700803 * __radix_tree_create - create a slot in a radix tree
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * @root: radix tree root
805 * @index: index key
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700806 * @order: index occupies 2^order aligned slots
Johannes Weiner139e5612014-04-03 14:47:54 -0700807 * @nodep: returns node
808 * @slotp: returns slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 *
Johannes Weiner139e5612014-04-03 14:47:54 -0700810 * Create, if necessary, and return the node and slot for an item
811 * at position @index in the radix tree @root.
812 *
813 * Until there is more than one item in the tree, no nodes are
814 * allocated and @root->rnode is used as a direct slot instead of
815 * pointing to a node, in which case *@nodep will be NULL.
816 *
817 * Returns -ENOMEM, or 0 for success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 */
Johannes Weiner139e5612014-04-03 14:47:54 -0700819int __radix_tree_create(struct radix_tree_root *root, unsigned long index,
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700820 unsigned order, struct radix_tree_node **nodep,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500821 void __rcu ***slotp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700823 struct radix_tree_node *node = NULL, *child;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500824 void __rcu **slot = (void __rcu **)&root->rnode;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700825 unsigned long maxindex;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700826 unsigned int shift, offset = 0;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700827 unsigned long max = index | ((1UL << order) - 1);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500828 gfp_t gfp = root_gfp_mask(root);
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700829
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700830 shift = radix_tree_load_root(root, &child, &maxindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 /* Make sure the tree is high enough. */
Matthew Wilcox175542f2016-12-14 15:08:58 -0800833 if (order > 0 && max == ((1UL << order) - 1))
834 max++;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700835 if (max > maxindex) {
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500836 int error = radix_tree_extend(root, gfp, max, shift);
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700837 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return error;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700839 shift = error;
Matthew Wilcox12320d02017-02-13 15:22:48 -0500840 child = rcu_dereference_raw(root->rnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700843 while (shift > order) {
Matthew Wilcoxc12e51b2016-05-20 17:03:10 -0700844 shift -= RADIX_TREE_MAP_SHIFT;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700845 if (child == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 /* Have to add a child node. */
Matthew Wilcoxd58275b2017-01-16 17:10:21 -0500847 child = radix_tree_node_alloc(gfp, node, root, shift,
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800848 offset, 0, 0);
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700849 if (!child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return -ENOMEM;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700851 rcu_assign_pointer(*slot, node_to_entry(child));
852 if (node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 node->count++;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700854 } else if (!radix_tree_is_internal_node(child))
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700855 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 /* Go a level down */
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700858 node = entry_to_node(child);
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700859 offset = radix_tree_descend(node, &child, index);
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700860 slot = &node->slots[offset];
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700861 }
862
Johannes Weiner139e5612014-04-03 14:47:54 -0700863 if (nodep)
864 *nodep = node;
865 if (slotp)
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700866 *slotp = slot;
Johannes Weiner139e5612014-04-03 14:47:54 -0700867 return 0;
868}
869
Matthew Wilcox175542f2016-12-14 15:08:58 -0800870/*
871 * Free any nodes below this node. The tree is presumed to not need
872 * shrinking, and any user data in the tree is presumed to not need a
873 * destructor called on it. If we need to add a destructor, we can
874 * add that functionality later. Note that we may not clear tags or
875 * slots from the tree as an RCU walker may still have a pointer into
876 * this subtree. We could replace the entries with RADIX_TREE_RETRY,
877 * but we'll still have to clear those in rcu_free.
878 */
879static void radix_tree_free_nodes(struct radix_tree_node *node)
880{
881 unsigned offset = 0;
882 struct radix_tree_node *child = entry_to_node(node);
883
884 for (;;) {
Matthew Wilcox12320d02017-02-13 15:22:48 -0500885 void *entry = rcu_dereference_raw(child->slots[offset]);
Matthew Wilcox66ee6202018-06-25 06:56:50 -0400886 if (radix_tree_is_internal_node(entry) && child->shift &&
887 !is_sibling_entry(child, entry)) {
Matthew Wilcox175542f2016-12-14 15:08:58 -0800888 child = entry_to_node(entry);
889 offset = 0;
890 continue;
891 }
892 offset++;
893 while (offset == RADIX_TREE_MAP_SIZE) {
894 struct radix_tree_node *old = child;
895 offset = child->offset + 1;
896 child = child->parent;
Matthew Wilcoxdd040b62017-01-24 15:18:16 -0800897 WARN_ON_ONCE(!list_empty(&old->private_list));
Matthew Wilcox175542f2016-12-14 15:08:58 -0800898 radix_tree_node_free(old);
899 if (old == entry_to_node(node))
900 return;
901 }
902 }
903}
904
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500905#ifdef CONFIG_RADIX_TREE_MULTIORDER
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500906static inline int insert_entries(struct radix_tree_node *node,
907 void __rcu **slot, void *item, unsigned order, bool replace)
Matthew Wilcox175542f2016-12-14 15:08:58 -0800908{
909 struct radix_tree_node *child;
910 unsigned i, n, tag, offset, tags = 0;
911
912 if (node) {
Matthew Wilcoxe157b552016-12-14 15:09:01 -0800913 if (order > node->shift)
914 n = 1 << (order - node->shift);
915 else
916 n = 1;
Matthew Wilcox175542f2016-12-14 15:08:58 -0800917 offset = get_slot_offset(node, slot);
918 } else {
919 n = 1;
920 offset = 0;
921 }
922
923 if (n > 1) {
924 offset = offset & ~(n - 1);
925 slot = &node->slots[offset];
926 }
927 child = node_to_entry(slot);
928
929 for (i = 0; i < n; i++) {
930 if (slot[i]) {
931 if (replace) {
932 node->count--;
933 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
934 if (tag_get(node, tag, offset + i))
935 tags |= 1 << tag;
936 } else
937 return -EEXIST;
938 }
939 }
940
941 for (i = 0; i < n; i++) {
Matthew Wilcox12320d02017-02-13 15:22:48 -0500942 struct radix_tree_node *old = rcu_dereference_raw(slot[i]);
Matthew Wilcox175542f2016-12-14 15:08:58 -0800943 if (i) {
944 rcu_assign_pointer(slot[i], child);
945 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
946 if (tags & (1 << tag))
947 tag_clear(node, tag, offset + i);
948 } else {
949 rcu_assign_pointer(slot[i], item);
950 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
951 if (tags & (1 << tag))
952 tag_set(node, tag, offset);
953 }
954 if (radix_tree_is_internal_node(old) &&
Matthew Wilcoxe157b552016-12-14 15:09:01 -0800955 !is_sibling_entry(node, old) &&
956 (old != RADIX_TREE_RETRY))
Matthew Wilcox175542f2016-12-14 15:08:58 -0800957 radix_tree_free_nodes(old);
958 if (radix_tree_exceptional_entry(old))
959 node->exceptional--;
960 }
961 if (node) {
962 node->count += n;
963 if (radix_tree_exceptional_entry(item))
964 node->exceptional += n;
965 }
966 return n;
967}
968#else
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500969static inline int insert_entries(struct radix_tree_node *node,
970 void __rcu **slot, void *item, unsigned order, bool replace)
Matthew Wilcox175542f2016-12-14 15:08:58 -0800971{
972 if (*slot)
973 return -EEXIST;
974 rcu_assign_pointer(*slot, item);
975 if (node) {
976 node->count++;
977 if (radix_tree_exceptional_entry(item))
978 node->exceptional++;
979 }
980 return 1;
981}
982#endif
983
Johannes Weiner139e5612014-04-03 14:47:54 -0700984/**
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700985 * __radix_tree_insert - insert into a radix tree
Johannes Weiner139e5612014-04-03 14:47:54 -0700986 * @root: radix tree root
987 * @index: index key
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700988 * @order: key covers the 2^order indices around index
Johannes Weiner139e5612014-04-03 14:47:54 -0700989 * @item: item to insert
990 *
991 * Insert an item into the radix tree at position @index.
992 */
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700993int __radix_tree_insert(struct radix_tree_root *root, unsigned long index,
994 unsigned order, void *item)
Johannes Weiner139e5612014-04-03 14:47:54 -0700995{
996 struct radix_tree_node *node;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -0500997 void __rcu **slot;
Johannes Weiner139e5612014-04-03 14:47:54 -0700998 int error;
999
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001000 BUG_ON(radix_tree_is_internal_node(item));
Johannes Weiner139e5612014-04-03 14:47:54 -07001001
Matthew Wilcoxe6145232016-03-17 14:21:54 -07001002 error = __radix_tree_create(root, index, order, &node, &slot);
Johannes Weiner139e5612014-04-03 14:47:54 -07001003 if (error)
1004 return error;
Matthew Wilcox175542f2016-12-14 15:08:58 -08001005
1006 error = insert_entries(node, slot, item, order, false);
1007 if (error < 0)
1008 return error;
Christoph Lameter201b6262005-09-06 15:16:46 -07001009
Nick Piggin612d6c12006-06-23 02:03:22 -07001010 if (node) {
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -07001011 unsigned offset = get_slot_offset(node, slot);
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -07001012 BUG_ON(tag_get(node, 0, offset));
1013 BUG_ON(tag_get(node, 1, offset));
1014 BUG_ON(tag_get(node, 2, offset));
Nick Piggin612d6c12006-06-23 02:03:22 -07001015 } else {
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -07001016 BUG_ON(root_tags_get(root));
Nick Piggin612d6c12006-06-23 02:03:22 -07001017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return 0;
1020}
Matthew Wilcoxe6145232016-03-17 14:21:54 -07001021EXPORT_SYMBOL(__radix_tree_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Johannes Weiner139e5612014-04-03 14:47:54 -07001023/**
1024 * __radix_tree_lookup - lookup an item in a radix tree
1025 * @root: radix tree root
1026 * @index: index key
1027 * @nodep: returns node
1028 * @slotp: returns slot
1029 *
1030 * Lookup and return the item at position @index in the radix
1031 * tree @root.
1032 *
1033 * Until there is more than one item in the tree, no nodes are
1034 * allocated and @root->rnode is used as a direct slot instead of
1035 * pointing to a node, in which case *@nodep will be NULL.
Hans Reisera4331362005-11-07 00:59:29 -08001036 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05001037void *__radix_tree_lookup(const struct radix_tree_root *root,
1038 unsigned long index, struct radix_tree_node **nodep,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001039 void __rcu ***slotp)
Hans Reisera4331362005-11-07 00:59:29 -08001040{
Johannes Weiner139e5612014-04-03 14:47:54 -07001041 struct radix_tree_node *node, *parent;
Matthew Wilcox85829952016-05-20 17:02:20 -07001042 unsigned long maxindex;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001043 void __rcu **slot;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001044
Matthew Wilcox85829952016-05-20 17:02:20 -07001045 restart:
1046 parent = NULL;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001047 slot = (void __rcu **)&root->rnode;
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001048 radix_tree_load_root(root, &node, &maxindex);
Matthew Wilcox85829952016-05-20 17:02:20 -07001049 if (index > maxindex)
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001050 return NULL;
1051
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001052 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox85829952016-05-20 17:02:20 -07001053 unsigned offset;
Johannes Weiner139e5612014-04-03 14:47:54 -07001054
Matthew Wilcox85829952016-05-20 17:02:20 -07001055 if (node == RADIX_TREE_RETRY)
1056 goto restart;
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001057 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001058 offset = radix_tree_descend(parent, &node, index);
Matthew Wilcox85829952016-05-20 17:02:20 -07001059 slot = parent->slots + offset;
Matthew Wilcox66ee6202018-06-25 06:56:50 -04001060 if (parent->shift == 0)
1061 break;
Matthew Wilcox85829952016-05-20 17:02:20 -07001062 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001063
Johannes Weiner139e5612014-04-03 14:47:54 -07001064 if (nodep)
1065 *nodep = parent;
1066 if (slotp)
1067 *slotp = slot;
1068 return node;
Huang Shijieb72b71c2009-06-16 15:33:42 -07001069}
1070
1071/**
1072 * radix_tree_lookup_slot - lookup a slot in a radix tree
1073 * @root: radix tree root
1074 * @index: index key
1075 *
1076 * Returns: the slot corresponding to the position @index in the
1077 * radix tree @root. This is useful for update-if-exists operations.
1078 *
1079 * This function can be called under rcu_read_lock iff the slot is not
1080 * modified by radix_tree_replace_slot, otherwise it must be called
1081 * exclusive from other writers. Any dereference of the slot must be done
1082 * using radix_tree_deref_slot.
1083 */
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001084void __rcu **radix_tree_lookup_slot(const struct radix_tree_root *root,
Matthew Wilcox35534c82016-12-19 17:43:19 -05001085 unsigned long index)
Huang Shijieb72b71c2009-06-16 15:33:42 -07001086{
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001087 void __rcu **slot;
Johannes Weiner139e5612014-04-03 14:47:54 -07001088
1089 if (!__radix_tree_lookup(root, index, NULL, &slot))
1090 return NULL;
1091 return slot;
Hans Reisera4331362005-11-07 00:59:29 -08001092}
1093EXPORT_SYMBOL(radix_tree_lookup_slot);
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095/**
1096 * radix_tree_lookup - perform lookup operation on a radix tree
1097 * @root: radix tree root
1098 * @index: index key
1099 *
1100 * Lookup the item at the position @index in the radix tree @root.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001101 *
1102 * This function can be called under rcu_read_lock, however the caller
1103 * must manage lifetimes of leaf nodes (eg. RCU may also be used to free
1104 * them safely). No RCU barriers are required to access or modify the
1105 * returned item, however.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05001107void *radix_tree_lookup(const struct radix_tree_root *root, unsigned long index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Johannes Weiner139e5612014-04-03 14:47:54 -07001109 return __radix_tree_lookup(root, index, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111EXPORT_SYMBOL(radix_tree_lookup);
1112
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001113static inline void replace_sibling_entries(struct radix_tree_node *node,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001114 void __rcu **slot, int count, int exceptional)
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001115{
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001116#ifdef CONFIG_RADIX_TREE_MULTIORDER
1117 void *ptr = node_to_entry(slot);
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001118 unsigned offset = get_slot_offset(node, slot) + 1;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001119
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001120 while (offset < RADIX_TREE_MAP_SIZE) {
Matthew Wilcox12320d02017-02-13 15:22:48 -05001121 if (rcu_dereference_raw(node->slots[offset]) != ptr)
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001122 break;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001123 if (count < 0) {
1124 node->slots[offset] = NULL;
1125 node->count--;
1126 }
1127 node->exceptional += exceptional;
1128 offset++;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001129 }
1130#endif
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001131}
1132
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001133static void replace_slot(void __rcu **slot, void *item,
1134 struct radix_tree_node *node, int count, int exceptional)
Johannes Weiner6d75f362016-12-12 16:43:43 -08001135{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001136 if (node && (count || exceptional)) {
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001137 node->count += count;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001138 node->exceptional += exceptional;
1139 replace_sibling_entries(node, slot, count, exceptional);
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001140 }
Johannes Weiner6d75f362016-12-12 16:43:43 -08001141
1142 rcu_assign_pointer(*slot, item);
1143}
1144
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001145static bool node_tag_get(const struct radix_tree_root *root,
1146 const struct radix_tree_node *node,
1147 unsigned int tag, unsigned int offset)
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001148{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001149 if (node)
1150 return tag_get(node, tag, offset);
1151 return root_tag_get(root, tag);
1152}
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001153
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001154/*
1155 * IDR users want to be able to store NULL in the tree, so if the slot isn't
1156 * free, don't adjust the count, even if it's transitioning between NULL and
1157 * non-NULL. For the IDA, we mark slots as being IDR_FREE while they still
1158 * have empty bits, but it only stores NULL in slots when they're being
1159 * deleted.
1160 */
1161static int calculate_count(struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001162 struct radix_tree_node *node, void __rcu **slot,
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001163 void *item, void *old)
1164{
1165 if (is_idr(root)) {
1166 unsigned offset = get_slot_offset(node, slot);
1167 bool free = node_tag_get(root, node, IDR_FREE, offset);
1168 if (!free)
1169 return 0;
1170 if (!old)
1171 return 1;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001172 }
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001173 return !!item - !!old;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001174}
1175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176/**
Johannes Weinerf7942432016-12-12 16:43:41 -08001177 * __radix_tree_replace - replace item in a slot
Johannes Weiner4d693d02016-12-12 16:43:49 -08001178 * @root: radix tree root
1179 * @node: pointer to tree node
1180 * @slot: pointer to slot in @node
1181 * @item: new item to store in the slot.
1182 * @update_node: callback for changing leaf nodes
Johannes Weinerf7942432016-12-12 16:43:41 -08001183 *
1184 * For use with __radix_tree_lookup(). Caller must hold tree write locked
1185 * across slot lookup and replacement.
1186 */
1187void __radix_tree_replace(struct radix_tree_root *root,
1188 struct radix_tree_node *node,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001189 void __rcu **slot, void *item,
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001190 radix_tree_update_node_t update_node)
Johannes Weinerf7942432016-12-12 16:43:41 -08001191{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001192 void *old = rcu_dereference_raw(*slot);
1193 int exceptional = !!radix_tree_exceptional_entry(item) -
1194 !!radix_tree_exceptional_entry(old);
1195 int count = calculate_count(root, node, slot, item, old);
1196
Johannes Weiner6d75f362016-12-12 16:43:43 -08001197 /*
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001198 * This function supports replacing exceptional entries and
1199 * deleting entries, but that needs accounting against the
1200 * node unless the slot is root->rnode.
Johannes Weiner6d75f362016-12-12 16:43:43 -08001201 */
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001202 WARN_ON_ONCE(!node && (slot != (void __rcu **)&root->rnode) &&
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001203 (count || exceptional));
1204 replace_slot(slot, item, node, count, exceptional);
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001205
Johannes Weiner4d693d02016-12-12 16:43:49 -08001206 if (!node)
1207 return;
1208
1209 if (update_node)
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001210 update_node(node);
Johannes Weiner4d693d02016-12-12 16:43:49 -08001211
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001212 delete_node(root, node, update_node);
Johannes Weiner6d75f362016-12-12 16:43:43 -08001213}
Johannes Weinerf7942432016-12-12 16:43:41 -08001214
Johannes Weiner6d75f362016-12-12 16:43:43 -08001215/**
1216 * radix_tree_replace_slot - replace item in a slot
1217 * @root: radix tree root
1218 * @slot: pointer to slot
1219 * @item: new item to store in the slot.
1220 *
1221 * For use with radix_tree_lookup_slot(), radix_tree_gang_lookup_slot(),
1222 * radix_tree_gang_lookup_tag_slot(). Caller must hold tree write locked
1223 * across slot lookup and replacement.
1224 *
1225 * NOTE: This cannot be used to switch between non-entries (empty slots),
1226 * regular entries, and exceptional entries, as that requires accounting
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001227 * inside the radix tree node. When switching from one type of entry or
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001228 * deleting, use __radix_tree_lookup() and __radix_tree_replace() or
1229 * radix_tree_iter_replace().
Johannes Weiner6d75f362016-12-12 16:43:43 -08001230 */
1231void radix_tree_replace_slot(struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001232 void __rcu **slot, void *item)
Johannes Weiner6d75f362016-12-12 16:43:43 -08001233{
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001234 __radix_tree_replace(root, NULL, slot, item, NULL);
Johannes Weinerf7942432016-12-12 16:43:41 -08001235}
Song Liu10257d72017-01-11 10:00:51 -08001236EXPORT_SYMBOL(radix_tree_replace_slot);
Johannes Weinerf7942432016-12-12 16:43:41 -08001237
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001238/**
1239 * radix_tree_iter_replace - replace item in a slot
1240 * @root: radix tree root
1241 * @slot: pointer to slot
1242 * @item: new item to store in the slot.
1243 *
1244 * For use with radix_tree_split() and radix_tree_for_each_slot().
1245 * Caller must hold tree write locked across split and replacement.
1246 */
1247void radix_tree_iter_replace(struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001248 const struct radix_tree_iter *iter,
1249 void __rcu **slot, void *item)
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001250{
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001251 __radix_tree_replace(root, iter->node, slot, item, NULL);
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001252}
1253
Matthew Wilcox175542f2016-12-14 15:08:58 -08001254#ifdef CONFIG_RADIX_TREE_MULTIORDER
1255/**
1256 * radix_tree_join - replace multiple entries with one multiorder entry
1257 * @root: radix tree root
1258 * @index: an index inside the new entry
1259 * @order: order of the new entry
1260 * @item: new entry
1261 *
1262 * Call this function to replace several entries with one larger entry.
1263 * The existing entries are presumed to not need freeing as a result of
1264 * this call.
1265 *
1266 * The replacement entry will have all the tags set on it that were set
1267 * on any of the entries it is replacing.
1268 */
1269int radix_tree_join(struct radix_tree_root *root, unsigned long index,
1270 unsigned order, void *item)
1271{
1272 struct radix_tree_node *node;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001273 void __rcu **slot;
Matthew Wilcox175542f2016-12-14 15:08:58 -08001274 int error;
1275
1276 BUG_ON(radix_tree_is_internal_node(item));
1277
1278 error = __radix_tree_create(root, index, order, &node, &slot);
1279 if (!error)
1280 error = insert_entries(node, slot, item, order, true);
1281 if (error > 0)
1282 error = 0;
1283
1284 return error;
1285}
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001286
1287/**
1288 * radix_tree_split - Split an entry into smaller entries
1289 * @root: radix tree root
1290 * @index: An index within the large entry
1291 * @order: Order of new entries
1292 *
1293 * Call this function as the first step in replacing a multiorder entry
1294 * with several entries of lower order. After this function returns,
1295 * loop over the relevant portion of the tree using radix_tree_for_each_slot()
1296 * and call radix_tree_iter_replace() to set up each new entry.
1297 *
1298 * The tags from this entry are replicated to all the new entries.
1299 *
1300 * The radix tree should be locked against modification during the entire
1301 * replacement operation. Lock-free lookups will see RADIX_TREE_RETRY which
1302 * should prompt RCU walkers to restart the lookup from the root.
1303 */
1304int radix_tree_split(struct radix_tree_root *root, unsigned long index,
1305 unsigned order)
1306{
1307 struct radix_tree_node *parent, *node, *child;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001308 void __rcu **slot;
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001309 unsigned int offset, end;
1310 unsigned n, tag, tags = 0;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001311 gfp_t gfp = root_gfp_mask(root);
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001312
1313 if (!__radix_tree_lookup(root, index, &parent, &slot))
1314 return -ENOENT;
1315 if (!parent)
1316 return -ENOENT;
1317
1318 offset = get_slot_offset(parent, slot);
1319
1320 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1321 if (tag_get(parent, tag, offset))
1322 tags |= 1 << tag;
1323
1324 for (end = offset + 1; end < RADIX_TREE_MAP_SIZE; end++) {
Matthew Wilcox12320d02017-02-13 15:22:48 -05001325 if (!is_sibling_entry(parent,
1326 rcu_dereference_raw(parent->slots[end])))
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001327 break;
1328 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1329 if (tags & (1 << tag))
1330 tag_set(parent, tag, end);
1331 /* rcu_assign_pointer ensures tags are set before RETRY */
1332 rcu_assign_pointer(parent->slots[end], RADIX_TREE_RETRY);
1333 }
1334 rcu_assign_pointer(parent->slots[offset], RADIX_TREE_RETRY);
1335 parent->exceptional -= (end - offset);
1336
1337 if (order == parent->shift)
1338 return 0;
1339 if (order > parent->shift) {
1340 while (offset < end)
1341 offset += insert_entries(parent, &parent->slots[offset],
1342 RADIX_TREE_RETRY, order, true);
1343 return 0;
1344 }
1345
1346 node = parent;
1347
1348 for (;;) {
1349 if (node->shift > order) {
Matthew Wilcoxd58275b2017-01-16 17:10:21 -05001350 child = radix_tree_node_alloc(gfp, node, root,
Matthew Wilcoxe8de4342016-12-14 15:09:31 -08001351 node->shift - RADIX_TREE_MAP_SHIFT,
1352 offset, 0, 0);
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001353 if (!child)
1354 goto nomem;
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001355 if (node != parent) {
1356 node->count++;
Matthew Wilcox12320d02017-02-13 15:22:48 -05001357 rcu_assign_pointer(node->slots[offset],
1358 node_to_entry(child));
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001359 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1360 if (tags & (1 << tag))
1361 tag_set(node, tag, offset);
1362 }
1363
1364 node = child;
1365 offset = 0;
1366 continue;
1367 }
1368
1369 n = insert_entries(node, &node->slots[offset],
1370 RADIX_TREE_RETRY, order, false);
1371 BUG_ON(n > RADIX_TREE_MAP_SIZE);
1372
1373 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1374 if (tags & (1 << tag))
1375 tag_set(node, tag, offset);
1376 offset += n;
1377
1378 while (offset == RADIX_TREE_MAP_SIZE) {
1379 if (node == parent)
1380 break;
1381 offset = node->offset;
1382 child = node;
1383 node = node->parent;
1384 rcu_assign_pointer(node->slots[offset],
1385 node_to_entry(child));
1386 offset++;
1387 }
1388 if ((node == parent) && (offset == end))
1389 return 0;
1390 }
1391
1392 nomem:
1393 /* Shouldn't happen; did user forget to preload? */
1394 /* TODO: free all the allocated nodes */
1395 WARN_ON(1);
1396 return -ENOMEM;
1397}
Matthew Wilcox175542f2016-12-14 15:08:58 -08001398#endif
1399
Matthew Wilcox30b888b2017-01-28 09:55:20 -05001400static void node_tag_set(struct radix_tree_root *root,
1401 struct radix_tree_node *node,
1402 unsigned int tag, unsigned int offset)
1403{
1404 while (node) {
1405 if (tag_get(node, tag, offset))
1406 return;
1407 tag_set(node, tag, offset);
1408 offset = node->offset;
1409 node = node->parent;
1410 }
1411
1412 if (!root_tag_get(root, tag))
1413 root_tag_set(root, tag);
1414}
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416/**
1417 * radix_tree_tag_set - set a tag on a radix tree node
1418 * @root: radix tree root
1419 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001420 * @tag: tag index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 *
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001422 * Set the search tag (which must be < RADIX_TREE_MAX_TAGS)
1423 * corresponding to @index in the radix tree. From
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 * the root all the way down to the leaf node.
1425 *
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001426 * Returns the address of the tagged item. Setting a tag on a not-present
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 * item is a bug.
1428 */
1429void *radix_tree_tag_set(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001430 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Ross Zwislerfb969902016-05-20 17:02:32 -07001432 struct radix_tree_node *node, *parent;
1433 unsigned long maxindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001435 radix_tree_load_root(root, &node, &maxindex);
Ross Zwislerfb969902016-05-20 17:02:32 -07001436 BUG_ON(index > maxindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001438 while (radix_tree_is_internal_node(node)) {
Ross Zwislerfb969902016-05-20 17:02:32 -07001439 unsigned offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001441 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001442 offset = radix_tree_descend(parent, &node, index);
Ross Zwislerfb969902016-05-20 17:02:32 -07001443 BUG_ON(!node);
1444
1445 if (!tag_get(parent, tag, offset))
1446 tag_set(parent, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 }
1448
Nick Piggin612d6c12006-06-23 02:03:22 -07001449 /* set the root's tag bit */
Ross Zwislerfb969902016-05-20 17:02:32 -07001450 if (!root_tag_get(root, tag))
Nick Piggin612d6c12006-06-23 02:03:22 -07001451 root_tag_set(root, tag);
1452
Ross Zwislerfb969902016-05-20 17:02:32 -07001453 return node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454}
1455EXPORT_SYMBOL(radix_tree_tag_set);
1456
Matthew Wilcox30b888b2017-01-28 09:55:20 -05001457/**
1458 * radix_tree_iter_tag_set - set a tag on the current iterator entry
1459 * @root: radix tree root
1460 * @iter: iterator state
1461 * @tag: tag to set
1462 */
1463void radix_tree_iter_tag_set(struct radix_tree_root *root,
1464 const struct radix_tree_iter *iter, unsigned int tag)
1465{
1466 node_tag_set(root, iter->node, tag, iter_offset(iter));
1467}
1468
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001469static void node_tag_clear(struct radix_tree_root *root,
1470 struct radix_tree_node *node,
1471 unsigned int tag, unsigned int offset)
1472{
1473 while (node) {
1474 if (!tag_get(node, tag, offset))
1475 return;
1476 tag_clear(node, tag, offset);
1477 if (any_tag_set(node, tag))
1478 return;
1479
1480 offset = node->offset;
1481 node = node->parent;
1482 }
1483
1484 /* clear the root's tag bit */
1485 if (root_tag_get(root, tag))
1486 root_tag_clear(root, tag);
1487}
1488
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001489/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 * radix_tree_tag_clear - clear a tag on a radix tree node
1491 * @root: radix tree root
1492 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001493 * @tag: tag index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 *
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001495 * Clear the search tag (which must be < RADIX_TREE_MAX_TAGS)
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001496 * corresponding to @index in the radix tree. If this causes
1497 * the leaf node to have no tags set then clear the tag in the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 * next-to-leaf node, etc.
1499 *
1500 * Returns the address of the tagged item on success, else NULL. ie:
1501 * has the same return value and semantics as radix_tree_lookup().
1502 */
1503void *radix_tree_tag_clear(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001504 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Ross Zwisler00f47b52016-05-20 17:02:35 -07001506 struct radix_tree_node *node, *parent;
1507 unsigned long maxindex;
Hugh Dickinse2bdb932012-01-12 17:20:41 -08001508 int uninitialized_var(offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001510 radix_tree_load_root(root, &node, &maxindex);
Ross Zwisler00f47b52016-05-20 17:02:35 -07001511 if (index > maxindex)
1512 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Ross Zwisler00f47b52016-05-20 17:02:35 -07001514 parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001516 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001517 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001518 offset = radix_tree_descend(parent, &node, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
1520
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001521 if (node)
1522 node_tag_clear(root, parent, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Ross Zwisler00f47b52016-05-20 17:02:35 -07001524 return node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526EXPORT_SYMBOL(radix_tree_tag_clear);
1527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528/**
Matthew Wilcox30b888b2017-01-28 09:55:20 -05001529 * radix_tree_iter_tag_clear - clear a tag on the current iterator entry
1530 * @root: radix tree root
1531 * @iter: iterator state
1532 * @tag: tag to clear
1533 */
1534void radix_tree_iter_tag_clear(struct radix_tree_root *root,
1535 const struct radix_tree_iter *iter, unsigned int tag)
1536{
1537 node_tag_clear(root, iter->node, tag, iter_offset(iter));
1538}
1539
1540/**
Marcelo Tosatti32605a12005-09-06 15:16:48 -07001541 * radix_tree_tag_get - get a tag on a radix tree node
1542 * @root: radix tree root
1543 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001544 * @tag: tag index (< RADIX_TREE_MAX_TAGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 *
Marcelo Tosatti32605a12005-09-06 15:16:48 -07001546 * Return values:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 *
Nick Piggin612d6c12006-06-23 02:03:22 -07001548 * 0: tag not present or not set
1549 * 1: tag set
David Howellsce826532010-04-06 22:36:20 +01001550 *
1551 * Note that the return value of this function may not be relied on, even if
1552 * the RCU lock is held, unless tag modification and node deletion are excluded
1553 * from concurrency.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05001555int radix_tree_tag_get(const struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001556 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
Ross Zwisler4589ba62016-05-20 17:02:38 -07001558 struct radix_tree_node *node, *parent;
1559 unsigned long maxindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Nick Piggin612d6c12006-06-23 02:03:22 -07001561 if (!root_tag_get(root, tag))
1562 return 0;
1563
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001564 radix_tree_load_root(root, &node, &maxindex);
Ross Zwisler4589ba62016-05-20 17:02:38 -07001565 if (index > maxindex)
1566 return 0;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001567
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001568 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001569 unsigned offset;
Ross Zwisler4589ba62016-05-20 17:02:38 -07001570
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001571 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001572 offset = radix_tree_descend(parent, &node, index);
Ross Zwisler4589ba62016-05-20 17:02:38 -07001573
Ross Zwisler4589ba62016-05-20 17:02:38 -07001574 if (!tag_get(parent, tag, offset))
1575 return 0;
1576 if (node == RADIX_TREE_RETRY)
1577 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
Ross Zwisler4589ba62016-05-20 17:02:38 -07001579
1580 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582EXPORT_SYMBOL(radix_tree_tag_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Ross Zwisler21ef5332016-05-20 17:02:26 -07001584static inline void __set_iter_shift(struct radix_tree_iter *iter,
1585 unsigned int shift)
1586{
1587#ifdef CONFIG_RADIX_TREE_MULTIORDER
1588 iter->shift = shift;
1589#endif
1590}
1591
Matthew Wilcox148deab2016-12-14 15:08:49 -08001592/* Construct iter->tags bit-mask from node->tags[tag] array */
1593static void set_iter_tags(struct radix_tree_iter *iter,
1594 struct radix_tree_node *node, unsigned offset,
1595 unsigned tag)
1596{
1597 unsigned tag_long = offset / BITS_PER_LONG;
1598 unsigned tag_bit = offset % BITS_PER_LONG;
1599
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001600 if (!node) {
1601 iter->tags = 1;
1602 return;
1603 }
1604
Matthew Wilcox148deab2016-12-14 15:08:49 -08001605 iter->tags = node->tags[tag][tag_long] >> tag_bit;
1606
1607 /* This never happens if RADIX_TREE_TAG_LONGS == 1 */
1608 if (tag_long < RADIX_TREE_TAG_LONGS - 1) {
1609 /* Pick tags from next element */
1610 if (tag_bit)
1611 iter->tags |= node->tags[tag][tag_long + 1] <<
1612 (BITS_PER_LONG - tag_bit);
1613 /* Clip chunk size, here only BITS_PER_LONG tags */
1614 iter->next_index = __radix_tree_iter_add(iter, BITS_PER_LONG);
1615 }
1616}
1617
1618#ifdef CONFIG_RADIX_TREE_MULTIORDER
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001619static void __rcu **skip_siblings(struct radix_tree_node **nodep,
1620 void __rcu **slot, struct radix_tree_iter *iter)
Matthew Wilcox148deab2016-12-14 15:08:49 -08001621{
Matthew Wilcox148deab2016-12-14 15:08:49 -08001622 while (iter->index < iter->next_index) {
1623 *nodep = rcu_dereference_raw(*slot);
Ross Zwisler9f418222018-05-18 16:09:06 -07001624 if (*nodep && !is_sibling_entry(iter->node, *nodep))
Matthew Wilcox148deab2016-12-14 15:08:49 -08001625 return slot;
1626 slot++;
1627 iter->index = __radix_tree_iter_add(iter, 1);
1628 iter->tags >>= 1;
1629 }
1630
1631 *nodep = NULL;
1632 return NULL;
1633}
1634
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001635void __rcu **__radix_tree_next_slot(void __rcu **slot,
1636 struct radix_tree_iter *iter, unsigned flags)
Matthew Wilcox148deab2016-12-14 15:08:49 -08001637{
1638 unsigned tag = flags & RADIX_TREE_ITER_TAG_MASK;
Ross Zwisler9f418222018-05-18 16:09:06 -07001639 struct radix_tree_node *node;
Matthew Wilcox148deab2016-12-14 15:08:49 -08001640
1641 slot = skip_siblings(&node, slot, iter);
1642
1643 while (radix_tree_is_internal_node(node)) {
1644 unsigned offset;
1645 unsigned long next_index;
1646
1647 if (node == RADIX_TREE_RETRY)
1648 return slot;
1649 node = entry_to_node(node);
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001650 iter->node = node;
Matthew Wilcox148deab2016-12-14 15:08:49 -08001651 iter->shift = node->shift;
1652
1653 if (flags & RADIX_TREE_ITER_TAGGED) {
1654 offset = radix_tree_find_next_bit(node, tag, 0);
1655 if (offset == RADIX_TREE_MAP_SIZE)
1656 return NULL;
1657 slot = &node->slots[offset];
1658 iter->index = __radix_tree_iter_add(iter, offset);
1659 set_iter_tags(iter, node, offset, tag);
1660 node = rcu_dereference_raw(*slot);
1661 } else {
1662 offset = 0;
1663 slot = &node->slots[0];
1664 for (;;) {
1665 node = rcu_dereference_raw(*slot);
1666 if (node)
1667 break;
1668 slot++;
1669 offset++;
1670 if (offset == RADIX_TREE_MAP_SIZE)
1671 return NULL;
1672 }
1673 iter->index = __radix_tree_iter_add(iter, offset);
1674 }
1675 if ((flags & RADIX_TREE_ITER_CONTIG) && (offset > 0))
1676 goto none;
1677 next_index = (iter->index | shift_maxindex(iter->shift)) + 1;
1678 if (next_index < iter->next_index)
1679 iter->next_index = next_index;
1680 }
1681
1682 return slot;
1683 none:
1684 iter->next_index = 0;
1685 return NULL;
1686}
1687EXPORT_SYMBOL(__radix_tree_next_slot);
1688#else
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001689static void __rcu **skip_siblings(struct radix_tree_node **nodep,
1690 void __rcu **slot, struct radix_tree_iter *iter)
Matthew Wilcox148deab2016-12-14 15:08:49 -08001691{
1692 return slot;
1693}
1694#endif
1695
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001696void __rcu **radix_tree_iter_resume(void __rcu **slot,
1697 struct radix_tree_iter *iter)
Matthew Wilcox148deab2016-12-14 15:08:49 -08001698{
1699 struct radix_tree_node *node;
1700
1701 slot++;
1702 iter->index = __radix_tree_iter_add(iter, 1);
Matthew Wilcox148deab2016-12-14 15:08:49 -08001703 skip_siblings(&node, slot, iter);
1704 iter->next_index = iter->index;
1705 iter->tags = 0;
1706 return NULL;
1707}
1708EXPORT_SYMBOL(radix_tree_iter_resume);
1709
Fengguang Wu6df8ba42007-10-16 01:24:33 -07001710/**
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001711 * radix_tree_next_chunk - find next chunk of slots for iteration
1712 *
1713 * @root: radix tree root
1714 * @iter: iterator state
1715 * @flags: RADIX_TREE_ITER_* flags and tag index
1716 * Returns: pointer to chunk first slot, or NULL if iteration is over
1717 */
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001718void __rcu **radix_tree_next_chunk(const struct radix_tree_root *root,
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001719 struct radix_tree_iter *iter, unsigned flags)
1720{
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001721 unsigned tag = flags & RADIX_TREE_ITER_TAG_MASK;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001722 struct radix_tree_node *node, *child;
Ross Zwisler21ef5332016-05-20 17:02:26 -07001723 unsigned long index, offset, maxindex;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001724
1725 if ((flags & RADIX_TREE_ITER_TAGGED) && !root_tag_get(root, tag))
1726 return NULL;
1727
1728 /*
1729 * Catch next_index overflow after ~0UL. iter->index never overflows
1730 * during iterating; it can be zero only at the beginning.
1731 * And we cannot overflow iter->next_index in a single step,
1732 * because RADIX_TREE_MAP_SHIFT < BITS_PER_LONG.
Konstantin Khlebnikovfffaee32012-06-05 21:36:33 +04001733 *
1734 * This condition also used by radix_tree_next_slot() to stop
Matthew Wilcox91b9677c2016-12-14 15:08:31 -08001735 * contiguous iterating, and forbid switching to the next chunk.
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001736 */
1737 index = iter->next_index;
1738 if (!index && iter->index)
1739 return NULL;
1740
Ross Zwisler21ef5332016-05-20 17:02:26 -07001741 restart:
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001742 radix_tree_load_root(root, &child, &maxindex);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001743 if (index > maxindex)
1744 return NULL;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001745 if (!child)
1746 return NULL;
Ross Zwisler21ef5332016-05-20 17:02:26 -07001747
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001748 if (!radix_tree_is_internal_node(child)) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001749 /* Single-slot tree */
Ross Zwisler21ef5332016-05-20 17:02:26 -07001750 iter->index = index;
1751 iter->next_index = maxindex + 1;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001752 iter->tags = 1;
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001753 iter->node = NULL;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001754 __set_iter_shift(iter, 0);
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001755 return (void __rcu **)&root->rnode;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001756 }
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001757
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001758 do {
1759 node = entry_to_node(child);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001760 offset = radix_tree_descend(node, &child, index);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001761
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001762 if ((flags & RADIX_TREE_ITER_TAGGED) ?
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001763 !tag_get(node, tag, offset) : !child) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001764 /* Hole detected */
1765 if (flags & RADIX_TREE_ITER_CONTIG)
1766 return NULL;
1767
1768 if (flags & RADIX_TREE_ITER_TAGGED)
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -08001769 offset = radix_tree_find_next_bit(node, tag,
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001770 offset + 1);
1771 else
1772 while (++offset < RADIX_TREE_MAP_SIZE) {
Matthew Wilcox12320d02017-02-13 15:22:48 -05001773 void *slot = rcu_dereference_raw(
1774 node->slots[offset]);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001775 if (is_sibling_entry(node, slot))
1776 continue;
1777 if (slot)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001778 break;
1779 }
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001780 index &= ~node_maxindex(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001781 index += offset << node->shift;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001782 /* Overflow after ~0UL */
1783 if (!index)
1784 return NULL;
1785 if (offset == RADIX_TREE_MAP_SIZE)
1786 goto restart;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001787 child = rcu_dereference_raw(node->slots[offset]);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001788 }
1789
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001790 if (!child)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001791 goto restart;
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001792 if (child == RADIX_TREE_RETRY)
1793 break;
Matthew Wilcox66ee6202018-06-25 06:56:50 -04001794 } while (node->shift && radix_tree_is_internal_node(child));
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001795
1796 /* Update the iterator state */
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001797 iter->index = (index &~ node_maxindex(node)) | (offset << node->shift);
1798 iter->next_index = (index | node_maxindex(node)) + 1;
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001799 iter->node = node;
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001800 __set_iter_shift(iter, node->shift);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001801
Matthew Wilcox148deab2016-12-14 15:08:49 -08001802 if (flags & RADIX_TREE_ITER_TAGGED)
1803 set_iter_tags(iter, node, offset, tag);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001804
1805 return node->slots + offset;
1806}
1807EXPORT_SYMBOL(radix_tree_next_chunk);
1808
1809/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 * radix_tree_gang_lookup - perform multiple lookup on a radix tree
1811 * @root: radix tree root
1812 * @results: where the results of the lookup are placed
1813 * @first_index: start the lookup from this key
1814 * @max_items: place up to this many items at *results
1815 *
1816 * Performs an index-ascending scan of the tree for present items. Places
1817 * them at *@results and returns the number of items which were placed at
1818 * *@results.
1819 *
1820 * The implementation is naive.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001821 *
1822 * Like radix_tree_lookup, radix_tree_gang_lookup may be called under
1823 * rcu_read_lock. In this case, rather than the returned results being
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001824 * an atomic snapshot of the tree at a single point in time, the
1825 * semantics of an RCU protected gang lookup are as though multiple
1826 * radix_tree_lookups have been issued in individual locks, and results
1827 * stored in 'results'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 */
1829unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001830radix_tree_gang_lookup(const struct radix_tree_root *root, void **results,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 unsigned long first_index, unsigned int max_items)
1832{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001833 struct radix_tree_iter iter;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001834 void __rcu **slot;
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001835 unsigned int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001837 if (unlikely(!max_items))
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001838 return 0;
1839
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001840 radix_tree_for_each_slot(slot, root, &iter, first_index) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001841 results[ret] = rcu_dereference_raw(*slot);
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001842 if (!results[ret])
1843 continue;
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001844 if (radix_tree_is_internal_node(results[ret])) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001845 slot = radix_tree_iter_retry(&iter);
1846 continue;
1847 }
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001848 if (++ret == max_items)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 return ret;
1853}
1854EXPORT_SYMBOL(radix_tree_gang_lookup);
1855
Nick Piggin47feff22008-07-25 19:45:29 -07001856/**
1857 * radix_tree_gang_lookup_slot - perform multiple slot lookup on radix tree
1858 * @root: radix tree root
1859 * @results: where the results of the lookup are placed
Hugh Dickins63286502011-08-03 16:21:18 -07001860 * @indices: where their indices should be placed (but usually NULL)
Nick Piggin47feff22008-07-25 19:45:29 -07001861 * @first_index: start the lookup from this key
1862 * @max_items: place up to this many items at *results
1863 *
1864 * Performs an index-ascending scan of the tree for present items. Places
1865 * their slots at *@results and returns the number of items which were
1866 * placed at *@results.
1867 *
1868 * The implementation is naive.
1869 *
1870 * Like radix_tree_gang_lookup as far as RCU and locking goes. Slots must
1871 * be dereferenced with radix_tree_deref_slot, and if using only RCU
1872 * protection, radix_tree_deref_slot may fail requiring a retry.
1873 */
1874unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001875radix_tree_gang_lookup_slot(const struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001876 void __rcu ***results, unsigned long *indices,
Nick Piggin47feff22008-07-25 19:45:29 -07001877 unsigned long first_index, unsigned int max_items)
1878{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001879 struct radix_tree_iter iter;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001880 void __rcu **slot;
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001881 unsigned int ret = 0;
Nick Piggin47feff22008-07-25 19:45:29 -07001882
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001883 if (unlikely(!max_items))
Nick Piggin47feff22008-07-25 19:45:29 -07001884 return 0;
1885
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001886 radix_tree_for_each_slot(slot, root, &iter, first_index) {
1887 results[ret] = slot;
Hugh Dickins63286502011-08-03 16:21:18 -07001888 if (indices)
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001889 indices[ret] = iter.index;
1890 if (++ret == max_items)
Nick Piggin47feff22008-07-25 19:45:29 -07001891 break;
Nick Piggin47feff22008-07-25 19:45:29 -07001892 }
1893
1894 return ret;
1895}
1896EXPORT_SYMBOL(radix_tree_gang_lookup_slot);
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898/**
1899 * radix_tree_gang_lookup_tag - perform multiple lookup on a radix tree
1900 * based on a tag
1901 * @root: radix tree root
1902 * @results: where the results of the lookup are placed
1903 * @first_index: start the lookup from this key
1904 * @max_items: place up to this many items at *results
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001905 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 *
1907 * Performs an index-ascending scan of the tree for present items which
1908 * have the tag indexed by @tag set. Places the items at *@results and
1909 * returns the number of items which were placed at *@results.
1910 */
1911unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001912radix_tree_gang_lookup_tag(const struct radix_tree_root *root, void **results,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001913 unsigned long first_index, unsigned int max_items,
1914 unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001916 struct radix_tree_iter iter;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001917 void __rcu **slot;
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001918 unsigned int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001920 if (unlikely(!max_items))
Nick Piggin612d6c12006-06-23 02:03:22 -07001921 return 0;
1922
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001923 radix_tree_for_each_tagged(slot, root, &iter, first_index, tag) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001924 results[ret] = rcu_dereference_raw(*slot);
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001925 if (!results[ret])
1926 continue;
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001927 if (radix_tree_is_internal_node(results[ret])) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001928 slot = radix_tree_iter_retry(&iter);
1929 continue;
1930 }
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001931 if (++ret == max_items)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 return ret;
1936}
1937EXPORT_SYMBOL(radix_tree_gang_lookup_tag);
1938
1939/**
Nick Piggin47feff22008-07-25 19:45:29 -07001940 * radix_tree_gang_lookup_tag_slot - perform multiple slot lookup on a
1941 * radix tree based on a tag
1942 * @root: radix tree root
1943 * @results: where the results of the lookup are placed
1944 * @first_index: start the lookup from this key
1945 * @max_items: place up to this many items at *results
1946 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
1947 *
1948 * Performs an index-ascending scan of the tree for present items which
1949 * have the tag indexed by @tag set. Places the slots at *@results and
1950 * returns the number of slots which were placed at *@results.
1951 */
1952unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001953radix_tree_gang_lookup_tag_slot(const struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001954 void __rcu ***results, unsigned long first_index,
Matthew Wilcox35534c82016-12-19 17:43:19 -05001955 unsigned int max_items, unsigned int tag)
Nick Piggin47feff22008-07-25 19:45:29 -07001956{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001957 struct radix_tree_iter iter;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001958 void __rcu **slot;
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001959 unsigned int ret = 0;
Nick Piggin47feff22008-07-25 19:45:29 -07001960
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001961 if (unlikely(!max_items))
Nick Piggin47feff22008-07-25 19:45:29 -07001962 return 0;
1963
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001964 radix_tree_for_each_tagged(slot, root, &iter, first_index, tag) {
1965 results[ret] = slot;
1966 if (++ret == max_items)
Nick Piggin47feff22008-07-25 19:45:29 -07001967 break;
Nick Piggin47feff22008-07-25 19:45:29 -07001968 }
1969
1970 return ret;
1971}
1972EXPORT_SYMBOL(radix_tree_gang_lookup_tag_slot);
1973
Nick Piggin47feff22008-07-25 19:45:29 -07001974/**
Johannes Weiner139e5612014-04-03 14:47:54 -07001975 * __radix_tree_delete_node - try to free node after clearing a slot
1976 * @root: radix tree root
Johannes Weiner139e5612014-04-03 14:47:54 -07001977 * @node: node containing @index
Johannes Weinerea07b862017-01-06 19:21:43 -05001978 * @update_node: callback for changing leaf nodes
Johannes Weiner139e5612014-04-03 14:47:54 -07001979 *
1980 * After clearing the slot at @index in @node from radix tree
1981 * rooted at @root, call this function to attempt freeing the
1982 * node and shrinking the tree.
Johannes Weiner139e5612014-04-03 14:47:54 -07001983 */
Johannes Weiner14b46872016-12-12 16:43:52 -08001984void __radix_tree_delete_node(struct radix_tree_root *root,
Johannes Weinerea07b862017-01-06 19:21:43 -05001985 struct radix_tree_node *node,
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001986 radix_tree_update_node_t update_node)
Johannes Weiner139e5612014-04-03 14:47:54 -07001987{
Mel Gormanc7df8ad2017-11-15 17:37:41 -08001988 delete_node(root, node, update_node);
Johannes Weiner139e5612014-04-03 14:47:54 -07001989}
1990
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001991static bool __radix_tree_delete(struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05001992 struct radix_tree_node *node, void __rcu **slot)
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001993{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001994 void *old = rcu_dereference_raw(*slot);
1995 int exceptional = radix_tree_exceptional_entry(old) ? -1 : 0;
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001996 unsigned offset = get_slot_offset(node, slot);
1997 int tag;
1998
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001999 if (is_idr(root))
2000 node_tag_set(root, node, IDR_FREE, offset);
2001 else
2002 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
2003 node_tag_clear(root, node, tag, offset);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002004
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002005 replace_slot(slot, NULL, node, -1, exceptional);
Mel Gormanc7df8ad2017-11-15 17:37:41 -08002006 return node && delete_node(root, node, NULL);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002007}
2008
Johannes Weiner139e5612014-04-03 14:47:54 -07002009/**
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002010 * radix_tree_iter_delete - delete the entry at this iterator position
2011 * @root: radix tree root
2012 * @iter: iterator state
2013 * @slot: pointer to slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002015 * Delete the entry at the position currently pointed to by the iterator.
2016 * This may result in the current node being freed; if it is, the iterator
2017 * is advanced so that it will not reference the freed memory. This
2018 * function may be called without any locking if there are no other threads
2019 * which can access this tree.
2020 */
2021void radix_tree_iter_delete(struct radix_tree_root *root,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05002022 struct radix_tree_iter *iter, void __rcu **slot)
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002023{
2024 if (__radix_tree_delete(root, iter->node, slot))
2025 iter->index = iter->next_index;
2026}
Chris Wilsond1b48c12017-08-16 09:52:08 +01002027EXPORT_SYMBOL(radix_tree_iter_delete);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002028
2029/**
2030 * radix_tree_delete_item - delete an item from a radix tree
2031 * @root: radix tree root
2032 * @index: index key
2033 * @item: expected item
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002035 * Remove @item at @index from the radix tree rooted at @root.
2036 *
2037 * Return: the deleted entry, or %NULL if it was not present
2038 * or the entry at the given @index was not @item.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 */
Johannes Weiner53c59f22014-04-03 14:47:39 -07002040void *radix_tree_delete_item(struct radix_tree_root *root,
2041 unsigned long index, void *item)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002043 struct radix_tree_node *node = NULL;
Matthew Wilcox7a4deea2018-05-25 14:47:24 -07002044 void __rcu **slot = NULL;
Johannes Weiner139e5612014-04-03 14:47:54 -07002045 void *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Johannes Weiner139e5612014-04-03 14:47:54 -07002047 entry = __radix_tree_lookup(root, index, &node, &slot);
Matthew Wilcox7a4deea2018-05-25 14:47:24 -07002048 if (!slot)
2049 return NULL;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002050 if (!entry && (!is_idr(root) || node_tag_get(root, node, IDR_FREE,
2051 get_slot_offset(node, slot))))
Johannes Weiner139e5612014-04-03 14:47:54 -07002052 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Johannes Weiner139e5612014-04-03 14:47:54 -07002054 if (item && entry != item)
2055 return NULL;
2056
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002057 __radix_tree_delete(root, node, slot);
Christoph Lameter201b6262005-09-06 15:16:46 -07002058
Johannes Weiner139e5612014-04-03 14:47:54 -07002059 return entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060}
Johannes Weiner53c59f22014-04-03 14:47:39 -07002061EXPORT_SYMBOL(radix_tree_delete_item);
2062
2063/**
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002064 * radix_tree_delete - delete an entry from a radix tree
2065 * @root: radix tree root
2066 * @index: index key
Johannes Weiner53c59f22014-04-03 14:47:39 -07002067 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002068 * Remove the entry at @index from the radix tree rooted at @root.
Johannes Weiner53c59f22014-04-03 14:47:39 -07002069 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002070 * Return: The deleted entry, or %NULL if it was not present.
Johannes Weiner53c59f22014-04-03 14:47:39 -07002071 */
2072void *radix_tree_delete(struct radix_tree_root *root, unsigned long index)
2073{
2074 return radix_tree_delete_item(root, index, NULL);
2075}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076EXPORT_SYMBOL(radix_tree_delete);
2077
Johannes Weinerd3798ae2016-10-04 22:02:08 +02002078void radix_tree_clear_tags(struct radix_tree_root *root,
2079 struct radix_tree_node *node,
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05002080 void __rcu **slot)
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002081{
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002082 if (node) {
2083 unsigned int tag, offset = get_slot_offset(node, slot);
2084 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
2085 node_tag_clear(root, node, tag, offset);
2086 } else {
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002087 root_tag_clear_all(root);
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002088 }
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002089}
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091/**
2092 * radix_tree_tagged - test whether any items in the tree are tagged
2093 * @root: radix tree root
2094 * @tag: tag to test
2095 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05002096int radix_tree_tagged(const struct radix_tree_root *root, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Nick Piggin612d6c12006-06-23 02:03:22 -07002098 return root_tag_get(root, tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100EXPORT_SYMBOL(radix_tree_tagged);
2101
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002102/**
2103 * idr_preload - preload for idr_alloc()
2104 * @gfp_mask: allocation mask to use for preloading
2105 *
2106 * Preallocate memory to use for the next call to idr_alloc(). This function
2107 * returns with preemption disabled. It will be enabled by idr_preload_end().
2108 */
2109void idr_preload(gfp_t gfp_mask)
2110{
Eric Dumazetbc9ae222017-09-08 16:15:54 -07002111 if (__radix_tree_preload(gfp_mask, IDR_PRELOAD_SIZE))
2112 preempt_disable();
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002113}
2114EXPORT_SYMBOL(idr_preload);
2115
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -05002116int 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)) {
Rasmus Villemoesb1a8a7a2018-02-21 14:45:43 -08002127 struct ida_bitmap *bitmap = kzalloc(sizeof(*bitmap), gfp);
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -05002128 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}
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -05002136
Matthew Wilcox460488c2017-11-28 15:16:24 -05002137void __rcu **idr_get_free(struct radix_tree_root *root,
Chris Mi388f79f2017-08-30 02:31:57 -04002138 struct radix_tree_iter *iter, gfp_t gfp,
2139 unsigned long max)
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002140{
2141 struct radix_tree_node *node = NULL, *child;
Matthew Wilcoxd7b62722017-02-13 15:58:24 -05002142 void __rcu **slot = (void __rcu **)&root->rnode;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002143 unsigned long maxindex, start = iter->next_index;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002144 unsigned int shift, offset = 0;
2145
2146 grow:
2147 shift = radix_tree_load_root(root, &child, &maxindex);
2148 if (!radix_tree_tagged(root, IDR_FREE))
2149 start = max(start, maxindex + 1);
2150 if (start > max)
2151 return ERR_PTR(-ENOSPC);
2152
2153 if (start > maxindex) {
2154 int error = radix_tree_extend(root, gfp, start, shift);
2155 if (error < 0)
2156 return ERR_PTR(error);
2157 shift = error;
2158 child = rcu_dereference_raw(root->rnode);
2159 }
Matthew Wilcox66ee6202018-06-25 06:56:50 -04002160 if (start == 0 && shift == 0)
2161 shift = RADIX_TREE_MAP_SHIFT;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002162
2163 while (shift) {
2164 shift -= RADIX_TREE_MAP_SHIFT;
2165 if (child == NULL) {
2166 /* Have to add a child node. */
Matthew Wilcoxd58275b2017-01-16 17:10:21 -05002167 child = radix_tree_node_alloc(gfp, node, root, shift,
2168 offset, 0, 0);
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002169 if (!child)
2170 return ERR_PTR(-ENOMEM);
2171 all_tag_set(child, IDR_FREE);
2172 rcu_assign_pointer(*slot, node_to_entry(child));
2173 if (node)
2174 node->count++;
2175 } else if (!radix_tree_is_internal_node(child))
2176 break;
2177
2178 node = entry_to_node(child);
2179 offset = radix_tree_descend(node, &child, start);
2180 if (!tag_get(node, IDR_FREE, offset)) {
2181 offset = radix_tree_find_next_bit(node, IDR_FREE,
2182 offset + 1);
2183 start = next_index(start, node, offset);
2184 if (start > max)
2185 return ERR_PTR(-ENOSPC);
2186 while (offset == RADIX_TREE_MAP_SIZE) {
2187 offset = node->offset + 1;
2188 node = node->parent;
2189 if (!node)
2190 goto grow;
2191 shift = node->shift;
2192 }
2193 child = rcu_dereference_raw(node->slots[offset]);
2194 }
2195 slot = &node->slots[offset];
2196 }
2197
2198 iter->index = start;
2199 if (node)
2200 iter->next_index = 1 + min(max, (start | node_maxindex(node)));
2201 else
2202 iter->next_index = 1;
2203 iter->node = node;
2204 __set_iter_shift(iter, shift);
2205 set_iter_tags(iter, node, offset, IDR_FREE);
2206
2207 return slot;
2208}
2209
2210/**
2211 * idr_destroy - release all internal memory from an IDR
2212 * @idr: idr handle
2213 *
2214 * After this function is called, the IDR is empty, and may be reused or
2215 * the data structure containing it may be freed.
2216 *
2217 * A typical clean-up sequence for objects stored in an idr tree will use
2218 * idr_for_each() to free all objects, if necessary, then idr_destroy() to
2219 * free the memory used to keep track of those objects.
2220 */
2221void idr_destroy(struct idr *idr)
2222{
2223 struct radix_tree_node *node = rcu_dereference_raw(idr->idr_rt.rnode);
2224 if (radix_tree_is_internal_node(node))
2225 radix_tree_free_nodes(node);
2226 idr->idr_rt.rnode = NULL;
2227 root_tag_set(&idr->idr_rt, IDR_FREE);
2228}
2229EXPORT_SYMBOL(idr_destroy);
2230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231static void
Johannes Weiner449dd692014-04-03 14:47:56 -07002232radix_tree_node_ctor(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233{
Johannes Weiner449dd692014-04-03 14:47:56 -07002234 struct radix_tree_node *node = arg;
2235
2236 memset(node, 0, sizeof(*node));
2237 INIT_LIST_HEAD(&node->private_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
2239
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -07002240static __init unsigned long __maxindex(unsigned int height)
2241{
2242 unsigned int width = height * RADIX_TREE_MAP_SHIFT;
2243 int shift = RADIX_TREE_INDEX_BITS - width;
2244
2245 if (shift < 0)
2246 return ~0UL;
2247 if (shift >= BITS_PER_LONG)
2248 return 0UL;
2249 return ~0UL >> shift;
2250}
2251
2252static __init void radix_tree_init_maxnodes(void)
2253{
2254 unsigned long height_to_maxindex[RADIX_TREE_MAX_PATH + 1];
2255 unsigned int i, j;
2256
2257 for (i = 0; i < ARRAY_SIZE(height_to_maxindex); i++)
2258 height_to_maxindex[i] = __maxindex(i);
2259 for (i = 0; i < ARRAY_SIZE(height_to_maxnodes); i++) {
2260 for (j = i; j > 0; j--)
2261 height_to_maxnodes[i] += height_to_maxindex[j - 1] + 1;
2262 }
2263}
2264
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002265static int radix_tree_cpu_dead(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07002267 struct radix_tree_preload *rtp;
2268 struct radix_tree_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07002270 /* Free per-cpu pool of preloaded nodes */
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002271 rtp = &per_cpu(radix_tree_preloads, cpu);
2272 while (rtp->nr) {
2273 node = rtp->nodes;
Matthew Wilcox1293d5c2017-01-16 16:41:29 -05002274 rtp->nodes = node->parent;
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002275 kmem_cache_free(radix_tree_node_cachep, node);
2276 rtp->nr--;
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07002277 }
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -05002278 kfree(per_cpu(ida_bitmap, cpu));
2279 per_cpu(ida_bitmap, cpu) = NULL;
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002280 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283void __init radix_tree_init(void)
2284{
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002285 int ret;
Michal Hocko7e784422017-05-03 14:53:09 -07002286
2287 BUILD_BUG_ON(RADIX_TREE_MAX_TAGS + __GFP_BITS_SHIFT > 32);
Matthew Wilcoxfa290cd2018-04-10 16:36:28 -07002288 BUILD_BUG_ON(ROOT_IS_IDR & ~GFP_ZONEMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 radix_tree_node_cachep = kmem_cache_create("radix_tree_node",
2290 sizeof(struct radix_tree_node), 0,
Christoph Lameter488514d2008-04-28 02:12:05 -07002291 SLAB_PANIC | SLAB_RECLAIM_ACCOUNT,
2292 radix_tree_node_ctor);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -07002293 radix_tree_init_maxnodes();
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01002294 ret = cpuhp_setup_state_nocalls(CPUHP_RADIX_DEAD, "lib/radix:dead",
2295 NULL, radix_tree_cpu_dead);
2296 WARN_ON(ret < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297}