blob: 14130ab197c09f8ad7f5181ce09455df0b4a49e9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001 Momchil Velikov
3 * Portions Copyright (C) 2001 Christoph Hellwig
Christoph Lametercde53532008-07-04 09:59:22 -07004 * Copyright (C) 2005 SGI, Christoph Lameter
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08005 * Copyright (C) 2006 Nick Piggin
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07006 * Copyright (C) 2012 Konstantin Khlebnikov
Matthew Wilcox6b053b82016-05-20 17:02:58 -07007 * Copyright (C) 2016 Intel, Matthew Wilcox
8 * Copyright (C) 2016 Intel, Ross Zwisler
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
Matthew Wilcox0a835c42016-12-20 10:27:56 -050025#include <linux/bitmap.h>
26#include <linux/bitops.h>
Matthew Wilcoxe157b552016-12-14 15:09:01 -080027#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/errno.h>
Matthew Wilcox0a835c42016-12-20 10:27:56 -050029#include <linux/export.h>
30#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/init.h>
32#include <linux/kernel.h>
Catalin Marinasce80b062014-06-06 14:38:18 -070033#include <linux/kmemleak.h>
Matthew Wilcox0a835c42016-12-20 10:27:56 -050034#include <linux/percpu.h>
Frederic Weisbecker92cf2112015-05-12 16:41:46 +020035#include <linux/preempt.h> /* in_interrupt() */
Matthew Wilcox0a835c42016-12-20 10:27:56 -050036#include <linux/radix-tree.h>
37#include <linux/rcupdate.h>
38#include <linux/slab.h>
39#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -070042/* Number of nodes in fully populated tree of given height */
43static unsigned long height_to_maxnodes[RADIX_TREE_MAX_PATH + 1] __read_mostly;
44
Jeff Moyer26fb1582007-10-16 01:24:49 -070045/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * Radix tree node cache.
47 */
Christoph Lametere18b8902006-12-06 20:33:20 -080048static struct kmem_cache *radix_tree_node_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
Nick Piggin55368052012-05-29 15:07:34 -070051 * The radix tree is variable-height, so an insert operation not only has
52 * to build the branch to its corresponding item, it also has to build the
53 * branch to existing items if the size has to be increased (by
54 * radix_tree_extend).
55 *
56 * The worst case is a zero height tree with just a single item at index 0,
57 * and then inserting an item at index ULONG_MAX. This requires 2 new branches
58 * of RADIX_TREE_MAX_PATH size to be created, with only the root node shared.
59 * Hence:
60 */
61#define RADIX_TREE_PRELOAD_SIZE (RADIX_TREE_MAX_PATH * 2 - 1)
62
63/*
Matthew Wilcox0a835c42016-12-20 10:27:56 -050064 * The IDR does not have to be as high as the radix tree since it uses
65 * signed integers, not unsigned longs.
66 */
67#define IDR_INDEX_BITS (8 /* CHAR_BIT */ * sizeof(int) - 1)
68#define IDR_MAX_PATH (DIV_ROUND_UP(IDR_INDEX_BITS, \
69 RADIX_TREE_MAP_SHIFT))
70#define IDR_PRELOAD_SIZE (IDR_MAX_PATH * 2 - 1)
71
72/*
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -050073 * The IDA is even shorter since it uses a bitmap at the last level.
74 */
75#define IDA_INDEX_BITS (8 * sizeof(int) - 1 - ilog2(IDA_BITMAP_BITS))
76#define IDA_MAX_PATH (DIV_ROUND_UP(IDA_INDEX_BITS, \
77 RADIX_TREE_MAP_SHIFT))
78#define IDA_PRELOAD_SIZE (IDA_MAX_PATH * 2 - 1)
79
80/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 * Per-cpu pool of preloaded nodes
82 */
83struct radix_tree_preload {
Matthew Wilcox2fcd9002016-05-20 17:03:04 -070084 unsigned nr;
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -070085 /* nodes->private_data points to next preallocated node */
86 struct radix_tree_node *nodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
Harvey Harrison8cef7d52009-01-06 14:40:50 -080088static DEFINE_PER_CPU(struct radix_tree_preload, radix_tree_preloads) = { 0, };
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Matthew Wilcox148deab2016-12-14 15:08:49 -080090static inline struct radix_tree_node *entry_to_node(void *ptr)
91{
92 return (void *)((unsigned long)ptr & ~RADIX_TREE_INTERNAL_NODE);
93}
94
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -070095static inline void *node_to_entry(void *ptr)
Nick Piggin27d20fd2010-11-11 14:05:19 -080096{
Matthew Wilcox30ff46cc2016-05-20 17:03:22 -070097 return (void *)((unsigned long)ptr | RADIX_TREE_INTERNAL_NODE);
Nick Piggin27d20fd2010-11-11 14:05:19 -080098}
99
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -0700100#define RADIX_TREE_RETRY node_to_entry(NULL)
Matthew Wilcoxafe0e392016-05-20 17:02:17 -0700101
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700102#ifdef CONFIG_RADIX_TREE_MULTIORDER
103/* Sibling slots point directly to another slot in the same node */
Matthew Wilcox35534c82016-12-19 17:43:19 -0500104static inline
105bool is_sibling_entry(const struct radix_tree_node *parent, void *node)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700106{
107 void **ptr = node;
108 return (parent->slots <= ptr) &&
109 (ptr < parent->slots + RADIX_TREE_MAP_SIZE);
110}
111#else
Matthew Wilcox35534c82016-12-19 17:43:19 -0500112static inline
113bool is_sibling_entry(const struct radix_tree_node *parent, void *node)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700114{
115 return false;
116}
117#endif
118
Matthew Wilcox35534c82016-12-19 17:43:19 -0500119static inline
120unsigned long get_slot_offset(const struct radix_tree_node *parent, void **slot)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700121{
122 return slot - parent->slots;
123}
124
Matthew Wilcox35534c82016-12-19 17:43:19 -0500125static unsigned int radix_tree_descend(const struct radix_tree_node *parent,
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700126 struct radix_tree_node **nodep, unsigned long index)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700127{
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700128 unsigned int offset = (index >> parent->shift) & RADIX_TREE_MAP_MASK;
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700129 void **entry = rcu_dereference_raw(parent->slots[offset]);
130
131#ifdef CONFIG_RADIX_TREE_MULTIORDER
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700132 if (radix_tree_is_internal_node(entry)) {
Linus Torvalds8d2c0d32016-09-25 13:32:46 -0700133 if (is_sibling_entry(parent, entry)) {
134 void **sibentry = (void **) entry_to_node(entry);
135 offset = get_slot_offset(parent, sibentry);
136 entry = rcu_dereference_raw(*sibentry);
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700137 }
138 }
139#endif
140
141 *nodep = (void *)entry;
142 return offset;
143}
144
Matthew Wilcox35534c82016-12-19 17:43:19 -0500145static inline gfp_t root_gfp_mask(const struct radix_tree_root *root)
Nick Piggin612d6c12006-06-23 02:03:22 -0700146{
147 return root->gfp_mask & __GFP_BITS_MASK;
148}
149
Nick Piggin643b52b2008-06-12 15:21:52 -0700150static inline void tag_set(struct radix_tree_node *node, unsigned int tag,
151 int offset)
152{
153 __set_bit(offset, node->tags[tag]);
154}
155
156static inline void tag_clear(struct radix_tree_node *node, unsigned int tag,
157 int offset)
158{
159 __clear_bit(offset, node->tags[tag]);
160}
161
Matthew Wilcox35534c82016-12-19 17:43:19 -0500162static inline int tag_get(const struct radix_tree_node *node, unsigned int tag,
Nick Piggin643b52b2008-06-12 15:21:52 -0700163 int offset)
164{
165 return test_bit(offset, node->tags[tag]);
166}
167
Matthew Wilcox35534c82016-12-19 17:43:19 -0500168static inline void root_tag_set(struct radix_tree_root *root, unsigned tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700169{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500170 root->gfp_mask |= (__force gfp_t)(1 << (tag + ROOT_TAG_SHIFT));
Nick Piggin643b52b2008-06-12 15:21:52 -0700171}
172
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700173static inline void root_tag_clear(struct radix_tree_root *root, unsigned tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700174{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500175 root->gfp_mask &= (__force gfp_t)~(1 << (tag + ROOT_TAG_SHIFT));
Nick Piggin643b52b2008-06-12 15:21:52 -0700176}
177
178static inline void root_tag_clear_all(struct radix_tree_root *root)
179{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500180 root->gfp_mask &= (1 << ROOT_TAG_SHIFT) - 1;
Nick Piggin643b52b2008-06-12 15:21:52 -0700181}
182
Matthew Wilcox35534c82016-12-19 17:43:19 -0500183static inline int root_tag_get(const struct radix_tree_root *root, unsigned tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700184{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500185 return (__force int)root->gfp_mask & (1 << (tag + ROOT_TAG_SHIFT));
Nick Piggin643b52b2008-06-12 15:21:52 -0700186}
187
Matthew Wilcox35534c82016-12-19 17:43:19 -0500188static inline unsigned root_tags_get(const struct radix_tree_root *root)
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700189{
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500190 return (__force unsigned)root->gfp_mask >> ROOT_TAG_SHIFT;
191}
192
193static inline bool is_idr(const struct radix_tree_root *root)
194{
195 return !!(root->gfp_mask & ROOT_IS_IDR);
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700196}
197
Nick Piggin643b52b2008-06-12 15:21:52 -0700198/*
199 * Returns 1 if any slot in the node has this tag set.
200 * Otherwise returns 0.
201 */
Matthew Wilcox35534c82016-12-19 17:43:19 -0500202static inline int any_tag_set(const struct radix_tree_node *node,
203 unsigned int tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700204{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700205 unsigned idx;
Nick Piggin643b52b2008-06-12 15:21:52 -0700206 for (idx = 0; idx < RADIX_TREE_TAG_LONGS; idx++) {
207 if (node->tags[tag][idx])
208 return 1;
209 }
210 return 0;
211}
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700212
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500213static inline void all_tag_set(struct radix_tree_node *node, unsigned int tag)
214{
215 bitmap_fill(node->tags[tag], RADIX_TREE_MAP_SIZE);
216}
217
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700218/**
219 * radix_tree_find_next_bit - find the next set bit in a memory region
220 *
221 * @addr: The address to base the search on
222 * @size: The bitmap size in bits
223 * @offset: The bitnumber to start searching at
224 *
225 * Unrollable variant of find_next_bit() for constant size arrays.
226 * Tail bits starting from size to roundup(size, BITS_PER_LONG) must be zero.
227 * Returns next bit offset, or size if nothing found.
228 */
229static __always_inline unsigned long
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800230radix_tree_find_next_bit(struct radix_tree_node *node, unsigned int tag,
231 unsigned long offset)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700232{
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800233 const unsigned long *addr = node->tags[tag];
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700234
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800235 if (offset < RADIX_TREE_MAP_SIZE) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700236 unsigned long tmp;
237
238 addr += offset / BITS_PER_LONG;
239 tmp = *addr >> (offset % BITS_PER_LONG);
240 if (tmp)
241 return __ffs(tmp) + offset;
242 offset = (offset + BITS_PER_LONG) & ~(BITS_PER_LONG - 1);
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800243 while (offset < RADIX_TREE_MAP_SIZE) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700244 tmp = *++addr;
245 if (tmp)
246 return __ffs(tmp) + offset;
247 offset += BITS_PER_LONG;
248 }
249 }
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800250 return RADIX_TREE_MAP_SIZE;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700251}
252
Matthew Wilcox268f42d2016-12-14 15:08:55 -0800253static unsigned int iter_offset(const struct radix_tree_iter *iter)
254{
255 return (iter->index >> iter_shift(iter)) & RADIX_TREE_MAP_MASK;
256}
257
Matthew Wilcox218ed752016-12-14 15:08:43 -0800258/*
259 * The maximum index which can be stored in a radix tree
260 */
261static inline unsigned long shift_maxindex(unsigned int shift)
262{
263 return (RADIX_TREE_MAP_SIZE << shift) - 1;
264}
265
Matthew Wilcox35534c82016-12-19 17:43:19 -0500266static inline unsigned long node_maxindex(const struct radix_tree_node *node)
Matthew Wilcox218ed752016-12-14 15:08:43 -0800267{
268 return shift_maxindex(node->shift);
269}
270
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500271static unsigned long next_index(unsigned long index,
272 const struct radix_tree_node *node,
273 unsigned long offset)
274{
275 return (index & ~node_maxindex(node)) + (offset << node->shift);
276}
277
Ross Zwisler0796c582016-05-20 17:02:55 -0700278#ifndef __KERNEL__
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700279static void dump_node(struct radix_tree_node *node, unsigned long index)
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700280{
Ross Zwisler0796c582016-05-20 17:02:55 -0700281 unsigned long i;
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700282
Matthew Wilcox218ed752016-12-14 15:08:43 -0800283 pr_debug("radix node: %p offset %d indices %lu-%lu parent %p tags %lx %lx %lx shift %d count %d exceptional %d\n",
284 node, node->offset, index, index | node_maxindex(node),
285 node->parent,
Ross Zwisler0796c582016-05-20 17:02:55 -0700286 node->tags[0][0], node->tags[1][0], node->tags[2][0],
Matthew Wilcox218ed752016-12-14 15:08:43 -0800287 node->shift, node->count, node->exceptional);
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700288
Ross Zwisler0796c582016-05-20 17:02:55 -0700289 for (i = 0; i < RADIX_TREE_MAP_SIZE; i++) {
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700290 unsigned long first = index | (i << node->shift);
291 unsigned long last = first | ((1UL << node->shift) - 1);
Ross Zwisler0796c582016-05-20 17:02:55 -0700292 void *entry = node->slots[i];
293 if (!entry)
294 continue;
Matthew Wilcox218ed752016-12-14 15:08:43 -0800295 if (entry == RADIX_TREE_RETRY) {
296 pr_debug("radix retry offset %ld indices %lu-%lu parent %p\n",
297 i, first, last, node);
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700298 } else if (!radix_tree_is_internal_node(entry)) {
Matthew Wilcox218ed752016-12-14 15:08:43 -0800299 pr_debug("radix entry %p offset %ld indices %lu-%lu parent %p\n",
300 entry, i, first, last, node);
301 } else if (is_sibling_entry(node, entry)) {
302 pr_debug("radix sblng %p offset %ld indices %lu-%lu parent %p val %p\n",
303 entry, i, first, last, node,
304 *(void **)entry_to_node(entry));
Ross Zwisler0796c582016-05-20 17:02:55 -0700305 } else {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700306 dump_node(entry_to_node(entry), first);
Ross Zwisler0796c582016-05-20 17:02:55 -0700307 }
308 }
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700309}
310
311/* For debug */
312static void radix_tree_dump(struct radix_tree_root *root)
313{
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700314 pr_debug("radix root: %p rnode %p tags %x\n",
315 root, root->rnode,
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500316 root->gfp_mask >> ROOT_TAG_SHIFT);
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700317 if (!radix_tree_is_internal_node(root->rnode))
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700318 return;
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700319 dump_node(entry_to_node(root->rnode), 0);
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700320}
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500321
322static void dump_ida_node(void *entry, unsigned long index)
323{
324 unsigned long i;
325
326 if (!entry)
327 return;
328
329 if (radix_tree_is_internal_node(entry)) {
330 struct radix_tree_node *node = entry_to_node(entry);
331
332 pr_debug("ida node: %p offset %d indices %lu-%lu parent %p free %lx shift %d count %d\n",
333 node, node->offset, index * IDA_BITMAP_BITS,
334 ((index | node_maxindex(node)) + 1) *
335 IDA_BITMAP_BITS - 1,
336 node->parent, node->tags[0][0], node->shift,
337 node->count);
338 for (i = 0; i < RADIX_TREE_MAP_SIZE; i++)
339 dump_ida_node(node->slots[i],
340 index | (i << node->shift));
Matthew Wilcoxd37cacc2016-12-17 08:18:17 -0500341 } else if (radix_tree_exceptional_entry(entry)) {
342 pr_debug("ida excp: %p offset %d indices %lu-%lu data %lx\n",
343 entry, (int)(index & RADIX_TREE_MAP_MASK),
344 index * IDA_BITMAP_BITS,
345 index * IDA_BITMAP_BITS + BITS_PER_LONG -
346 RADIX_TREE_EXCEPTIONAL_SHIFT,
347 (unsigned long)entry >>
348 RADIX_TREE_EXCEPTIONAL_SHIFT);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500349 } else {
350 struct ida_bitmap *bitmap = entry;
351
352 pr_debug("ida btmp: %p offset %d indices %lu-%lu data", bitmap,
353 (int)(index & RADIX_TREE_MAP_MASK),
354 index * IDA_BITMAP_BITS,
355 (index + 1) * IDA_BITMAP_BITS - 1);
356 for (i = 0; i < IDA_BITMAP_LONGS; i++)
357 pr_cont(" %lx", bitmap->bitmap[i]);
358 pr_cont("\n");
359 }
360}
361
362static void ida_dump(struct ida *ida)
363{
364 struct radix_tree_root *root = &ida->ida_rt;
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -0500365 pr_debug("ida: %p node %p free %d\n", ida, root->rnode,
366 root->gfp_mask >> ROOT_TAG_SHIFT);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500367 dump_ida_node(root->rnode, 0);
368}
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700369#endif
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/*
372 * This assumes that the caller has performed appropriate preallocation, and
373 * that the caller has pinned this thread of control to the current CPU.
374 */
375static struct radix_tree_node *
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500376radix_tree_node_alloc(gfp_t gfp_mask, struct radix_tree_node *parent,
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800377 unsigned int shift, unsigned int offset,
378 unsigned int count, unsigned int exceptional)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Nick Piggine2848a02008-02-04 22:29:10 -0800380 struct radix_tree_node *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Jan Kara5e4c0d972013-09-11 14:26:05 -0700382 /*
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700383 * Preload code isn't irq safe and it doesn't make sense to use
384 * preloading during an interrupt anyway as all the allocations have
385 * to be atomic. So just do normal allocation when in interrupt.
Jan Kara5e4c0d972013-09-11 14:26:05 -0700386 */
Mel Gormand0164ad2015-11-06 16:28:21 -0800387 if (!gfpflags_allow_blocking(gfp_mask) && !in_interrupt()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 struct radix_tree_preload *rtp;
389
Nick Piggine2848a02008-02-04 22:29:10 -0800390 /*
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700391 * Even if the caller has preloaded, try to allocate from the
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700392 * cache first for the new node to get accounted to the memory
393 * cgroup.
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700394 */
395 ret = kmem_cache_alloc(radix_tree_node_cachep,
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700396 gfp_mask | __GFP_NOWARN);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700397 if (ret)
398 goto out;
399
400 /*
Nick Piggine2848a02008-02-04 22:29:10 -0800401 * Provided the caller has preloaded here, we will always
402 * succeed in getting a node here (and never reach
403 * kmem_cache_alloc)
404 */
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700405 rtp = this_cpu_ptr(&radix_tree_preloads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (rtp->nr) {
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700407 ret = rtp->nodes;
408 rtp->nodes = ret->private_data;
409 ret->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 rtp->nr--;
411 }
Catalin Marinasce80b062014-06-06 14:38:18 -0700412 /*
413 * Update the allocation stack trace as this is more useful
414 * for debugging.
415 */
416 kmemleak_update_trace(ret);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700417 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700419 ret = kmem_cache_alloc(radix_tree_node_cachep, gfp_mask);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700420out:
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700421 BUG_ON(radix_tree_is_internal_node(ret));
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800422 if (ret) {
423 ret->parent = parent;
424 ret->shift = shift;
425 ret->offset = offset;
426 ret->count = count;
427 ret->exceptional = exceptional;
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return ret;
430}
431
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800432static void radix_tree_node_rcu_free(struct rcu_head *head)
433{
434 struct radix_tree_node *node =
435 container_of(head, struct radix_tree_node, rcu_head);
Nick Piggin643b52b2008-06-12 15:21:52 -0700436
437 /*
Matthew Wilcox175542f2016-12-14 15:08:58 -0800438 * Must only free zeroed nodes into the slab. We can be left with
439 * non-NULL entries by radix_tree_free_nodes, so clear the entries
440 * and tags here.
Nick Piggin643b52b2008-06-12 15:21:52 -0700441 */
Matthew Wilcox175542f2016-12-14 15:08:58 -0800442 memset(node->slots, 0, sizeof(node->slots));
443 memset(node->tags, 0, sizeof(node->tags));
Matthew Wilcox91d9c052016-12-14 15:08:34 -0800444 INIT_LIST_HEAD(&node->private_list);
Nick Piggin643b52b2008-06-12 15:21:52 -0700445
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800446 kmem_cache_free(radix_tree_node_cachep, node);
447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449static inline void
450radix_tree_node_free(struct radix_tree_node *node)
451{
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800452 call_rcu(&node->rcu_head, radix_tree_node_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
455/*
456 * Load up this CPU's radix_tree_node buffer with sufficient objects to
457 * ensure that the addition of a single element in the tree cannot fail. On
458 * success, return zero, with preemption disabled. On error, return -ENOMEM
459 * with preemption not disabled.
David Howellsb34df792009-11-19 18:11:14 +0000460 *
461 * To make use of this facility, the radix tree must be initialised without
Mel Gormand0164ad2015-11-06 16:28:21 -0800462 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 */
Matthew Wilcox2791653a2016-12-14 15:09:04 -0800464static int __radix_tree_preload(gfp_t gfp_mask, unsigned nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 struct radix_tree_preload *rtp;
467 struct radix_tree_node *node;
468 int ret = -ENOMEM;
469
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700470 /*
471 * Nodes preloaded by one cgroup can be be used by another cgroup, so
472 * they should never be accounted to any particular memory cgroup.
473 */
474 gfp_mask &= ~__GFP_ACCOUNT;
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700477 rtp = this_cpu_ptr(&radix_tree_preloads);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700478 while (rtp->nr < nr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 preempt_enable();
Christoph Lameter488514d2008-04-28 02:12:05 -0700480 node = kmem_cache_alloc(radix_tree_node_cachep, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (node == NULL)
482 goto out;
483 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700484 rtp = this_cpu_ptr(&radix_tree_preloads);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700485 if (rtp->nr < nr) {
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700486 node->private_data = rtp->nodes;
487 rtp->nodes = node;
488 rtp->nr++;
489 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 kmem_cache_free(radix_tree_node_cachep, node);
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493 ret = 0;
494out:
495 return ret;
496}
Jan Kara5e4c0d972013-09-11 14:26:05 -0700497
498/*
499 * Load up this CPU's radix_tree_node buffer with sufficient objects to
500 * ensure that the addition of a single element in the tree cannot fail. On
501 * success, return zero, with preemption disabled. On error, return -ENOMEM
502 * with preemption not disabled.
503 *
504 * To make use of this facility, the radix tree must be initialised without
Mel Gormand0164ad2015-11-06 16:28:21 -0800505 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
Jan Kara5e4c0d972013-09-11 14:26:05 -0700506 */
507int radix_tree_preload(gfp_t gfp_mask)
508{
509 /* Warn on non-sensical use... */
Mel Gormand0164ad2015-11-06 16:28:21 -0800510 WARN_ON_ONCE(!gfpflags_allow_blocking(gfp_mask));
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700511 return __radix_tree_preload(gfp_mask, RADIX_TREE_PRELOAD_SIZE);
Jan Kara5e4c0d972013-09-11 14:26:05 -0700512}
David Chinnerd7f09232007-07-14 16:05:04 +1000513EXPORT_SYMBOL(radix_tree_preload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Nick Piggin6e954b92006-01-08 01:01:40 -0800515/*
Jan Kara5e4c0d972013-09-11 14:26:05 -0700516 * The same as above function, except we don't guarantee preloading happens.
517 * We do it, if we decide it helps. On success, return zero with preemption
518 * disabled. On error, return -ENOMEM with preemption not disabled.
519 */
520int radix_tree_maybe_preload(gfp_t gfp_mask)
521{
Mel Gormand0164ad2015-11-06 16:28:21 -0800522 if (gfpflags_allow_blocking(gfp_mask))
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700523 return __radix_tree_preload(gfp_mask, RADIX_TREE_PRELOAD_SIZE);
Jan Kara5e4c0d972013-09-11 14:26:05 -0700524 /* Preloading doesn't help anything with this gfp mask, skip it */
525 preempt_disable();
526 return 0;
527}
528EXPORT_SYMBOL(radix_tree_maybe_preload);
529
Matthew Wilcox2791653a2016-12-14 15:09:04 -0800530#ifdef CONFIG_RADIX_TREE_MULTIORDER
531/*
532 * Preload with enough objects to ensure that we can split a single entry
533 * of order @old_order into many entries of size @new_order
534 */
535int radix_tree_split_preload(unsigned int old_order, unsigned int new_order,
536 gfp_t gfp_mask)
537{
538 unsigned top = 1 << (old_order % RADIX_TREE_MAP_SHIFT);
539 unsigned layers = (old_order / RADIX_TREE_MAP_SHIFT) -
540 (new_order / RADIX_TREE_MAP_SHIFT);
541 unsigned nr = 0;
542
543 WARN_ON_ONCE(!gfpflags_allow_blocking(gfp_mask));
544 BUG_ON(new_order >= old_order);
545
546 while (layers--)
547 nr = nr * RADIX_TREE_MAP_SIZE + 1;
548 return __radix_tree_preload(gfp_mask, top * nr);
549}
550#endif
551
Jan Kara5e4c0d972013-09-11 14:26:05 -0700552/*
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700553 * The same as function above, but preload number of nodes required to insert
554 * (1 << order) continuous naturally-aligned elements.
555 */
556int radix_tree_maybe_preload_order(gfp_t gfp_mask, int order)
557{
558 unsigned long nr_subtrees;
559 int nr_nodes, subtree_height;
560
561 /* Preloading doesn't help anything with this gfp mask, skip it */
562 if (!gfpflags_allow_blocking(gfp_mask)) {
563 preempt_disable();
564 return 0;
565 }
566
567 /*
568 * Calculate number and height of fully populated subtrees it takes to
569 * store (1 << order) elements.
570 */
571 nr_subtrees = 1 << order;
572 for (subtree_height = 0; nr_subtrees > RADIX_TREE_MAP_SIZE;
573 subtree_height++)
574 nr_subtrees >>= RADIX_TREE_MAP_SHIFT;
575
576 /*
577 * The worst case is zero height tree with a single item at index 0 and
578 * then inserting items starting at ULONG_MAX - (1 << order).
579 *
580 * This requires RADIX_TREE_MAX_PATH nodes to build branch from root to
581 * 0-index item.
582 */
583 nr_nodes = RADIX_TREE_MAX_PATH;
584
585 /* Plus branch to fully populated subtrees. */
586 nr_nodes += RADIX_TREE_MAX_PATH - subtree_height;
587
588 /* Root node is shared. */
589 nr_nodes--;
590
591 /* Plus nodes required to build subtrees. */
592 nr_nodes += nr_subtrees * height_to_maxnodes[subtree_height];
593
594 return __radix_tree_preload(gfp_mask, nr_nodes);
595}
596
Matthew Wilcox35534c82016-12-19 17:43:19 -0500597static unsigned radix_tree_load_root(const struct radix_tree_root *root,
Matthew Wilcox1456a432016-05-20 17:02:08 -0700598 struct radix_tree_node **nodep, unsigned long *maxindex)
599{
600 struct radix_tree_node *node = rcu_dereference_raw(root->rnode);
601
602 *nodep = node;
603
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700604 if (likely(radix_tree_is_internal_node(node))) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700605 node = entry_to_node(node);
Matthew Wilcox1456a432016-05-20 17:02:08 -0700606 *maxindex = node_maxindex(node);
Matthew Wilcoxc12e51b2016-05-20 17:03:10 -0700607 return node->shift + RADIX_TREE_MAP_SHIFT;
Matthew Wilcox1456a432016-05-20 17:02:08 -0700608 }
609
610 *maxindex = 0;
611 return 0;
612}
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614/*
615 * Extend a radix tree so it can store key @index.
616 */
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500617static int radix_tree_extend(struct radix_tree_root *root, gfp_t gfp,
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700618 unsigned long index, unsigned int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Hugh Dickinse2bdb932012-01-12 17:20:41 -0800620 struct radix_tree_node *slot;
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700621 unsigned int maxshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 int tag;
623
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700624 /* Figure out what the shift should be. */
625 maxshift = shift;
626 while (index > shift_maxindex(maxshift))
627 maxshift += RADIX_TREE_MAP_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700629 slot = root->rnode;
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500630 if (!slot && (!is_idr(root) || root_tag_get(root, IDR_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 do {
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500634 struct radix_tree_node *node = radix_tree_node_alloc(gfp, NULL,
635 shift, 0, 1, 0);
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700636 if (!node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return -ENOMEM;
638
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500639 if (is_idr(root)) {
640 all_tag_set(node, IDR_FREE);
641 if (!root_tag_get(root, IDR_FREE)) {
642 tag_clear(node, IDR_FREE, 0);
643 root_tag_set(root, IDR_FREE);
644 }
645 } else {
646 /* Propagate the aggregated tag info to the new child */
647 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++) {
648 if (root_tag_get(root, tag))
649 tag_set(node, tag, 0);
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700653 BUG_ON(shift > BITS_PER_LONG);
Johannes Weinerf7942432016-12-12 16:43:41 -0800654 if (radix_tree_is_internal_node(slot)) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700655 entry_to_node(slot)->parent = node;
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800656 } else if (radix_tree_exceptional_entry(slot)) {
Johannes Weinerf7942432016-12-12 16:43:41 -0800657 /* Moving an exceptional root->rnode to a node */
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800658 node->exceptional = 1;
Johannes Weinerf7942432016-12-12 16:43:41 -0800659 }
Hugh Dickinse2bdb932012-01-12 17:20:41 -0800660 node->slots[0] = slot;
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -0700661 slot = node_to_entry(node);
662 rcu_assign_pointer(root->rnode, slot);
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700663 shift += RADIX_TREE_MAP_SHIFT;
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700664 } while (shift <= maxshift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665out:
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700666 return maxshift + RADIX_TREE_MAP_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669/**
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800670 * radix_tree_shrink - shrink radix tree to minimum height
671 * @root radix tree root
672 */
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500673static inline bool radix_tree_shrink(struct radix_tree_root *root,
Johannes Weiner4d693d02016-12-12 16:43:49 -0800674 radix_tree_update_node_t update_node,
675 void *private)
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800676{
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500677 bool shrunk = false;
678
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800679 for (;;) {
680 struct radix_tree_node *node = root->rnode;
681 struct radix_tree_node *child;
682
683 if (!radix_tree_is_internal_node(node))
684 break;
685 node = entry_to_node(node);
686
687 /*
688 * The candidate node has more than one child, or its child
689 * is not at the leftmost slot, or the child is a multiorder
690 * entry, we cannot shrink.
691 */
692 if (node->count != 1)
693 break;
694 child = node->slots[0];
695 if (!child)
696 break;
697 if (!radix_tree_is_internal_node(child) && node->shift)
698 break;
699
700 if (radix_tree_is_internal_node(child))
701 entry_to_node(child)->parent = NULL;
702
703 /*
704 * We don't need rcu_assign_pointer(), since we are simply
705 * moving the node from one part of the tree to another: if it
706 * was safe to dereference the old pointer to it
707 * (node->slots[0]), it will be safe to dereference the new
708 * one (root->rnode) as far as dependent read barriers go.
709 */
710 root->rnode = child;
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500711 if (is_idr(root) && !tag_get(node, IDR_FREE, 0))
712 root_tag_clear(root, IDR_FREE);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800713
714 /*
715 * We have a dilemma here. The node's slot[0] must not be
716 * NULLed in case there are concurrent lookups expecting to
717 * find the item. However if this was a bottom-level node,
718 * then it may be subject to the slot pointer being visible
719 * to callers dereferencing it. If item corresponding to
720 * slot[0] is subsequently deleted, these callers would expect
721 * their slot to become empty sooner or later.
722 *
723 * For example, lockless pagecache will look up a slot, deref
724 * the page pointer, and if the page has 0 refcount it means it
725 * was concurrently deleted from pagecache so try the deref
726 * again. Fortunately there is already a requirement for logic
727 * to retry the entire slot lookup -- the indirect pointer
728 * problem (replacing direct root node with an indirect pointer
729 * also results in a stale slot). So tag the slot as indirect
730 * to force callers to retry.
731 */
Johannes Weiner4d693d02016-12-12 16:43:49 -0800732 node->count = 0;
733 if (!radix_tree_is_internal_node(child)) {
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800734 node->slots[0] = RADIX_TREE_RETRY;
Johannes Weiner4d693d02016-12-12 16:43:49 -0800735 if (update_node)
736 update_node(node, private);
737 }
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800738
Johannes Weinerea07b862017-01-06 19:21:43 -0500739 WARN_ON_ONCE(!list_empty(&node->private_list));
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800740 radix_tree_node_free(node);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500741 shrunk = true;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800742 }
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500743
744 return shrunk;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800745}
746
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500747static bool delete_node(struct radix_tree_root *root,
Johannes Weiner4d693d02016-12-12 16:43:49 -0800748 struct radix_tree_node *node,
749 radix_tree_update_node_t update_node, void *private)
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800750{
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500751 bool deleted = false;
752
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800753 do {
754 struct radix_tree_node *parent;
755
756 if (node->count) {
757 if (node == entry_to_node(root->rnode))
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500758 deleted |= radix_tree_shrink(root, update_node,
759 private);
760 return deleted;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800761 }
762
763 parent = node->parent;
764 if (parent) {
765 parent->slots[node->offset] = NULL;
766 parent->count--;
767 } else {
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500768 /*
769 * Shouldn't the tags already have all been cleared
770 * by the caller?
771 */
772 if (!is_idr(root))
773 root_tag_clear_all(root);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800774 root->rnode = NULL;
775 }
776
Johannes Weinerea07b862017-01-06 19:21:43 -0500777 WARN_ON_ONCE(!list_empty(&node->private_list));
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800778 radix_tree_node_free(node);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500779 deleted = true;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800780
781 node = parent;
782 } while (node);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -0500783
784 return deleted;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800785}
786
787/**
Johannes Weiner139e5612014-04-03 14:47:54 -0700788 * __radix_tree_create - create a slot in a radix tree
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 * @root: radix tree root
790 * @index: index key
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700791 * @order: index occupies 2^order aligned slots
Johannes Weiner139e5612014-04-03 14:47:54 -0700792 * @nodep: returns node
793 * @slotp: returns slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 *
Johannes Weiner139e5612014-04-03 14:47:54 -0700795 * Create, if necessary, and return the node and slot for an item
796 * at position @index in the radix tree @root.
797 *
798 * Until there is more than one item in the tree, no nodes are
799 * allocated and @root->rnode is used as a direct slot instead of
800 * pointing to a node, in which case *@nodep will be NULL.
801 *
802 * Returns -ENOMEM, or 0 for success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 */
Johannes Weiner139e5612014-04-03 14:47:54 -0700804int __radix_tree_create(struct radix_tree_root *root, unsigned long index,
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700805 unsigned order, struct radix_tree_node **nodep,
806 void ***slotp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700808 struct radix_tree_node *node = NULL, *child;
809 void **slot = (void **)&root->rnode;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700810 unsigned long maxindex;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700811 unsigned int shift, offset = 0;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700812 unsigned long max = index | ((1UL << order) - 1);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500813 gfp_t gfp = root_gfp_mask(root);
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700814
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700815 shift = radix_tree_load_root(root, &child, &maxindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 /* Make sure the tree is high enough. */
Matthew Wilcox175542f2016-12-14 15:08:58 -0800818 if (order > 0 && max == ((1UL << order) - 1))
819 max++;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700820 if (max > maxindex) {
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500821 int error = radix_tree_extend(root, gfp, max, shift);
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700822 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return error;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700824 shift = error;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700825 child = root->rnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700828 while (shift > order) {
Matthew Wilcoxc12e51b2016-05-20 17:03:10 -0700829 shift -= RADIX_TREE_MAP_SHIFT;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700830 if (child == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 /* Have to add a child node. */
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500832 child = radix_tree_node_alloc(gfp, node, shift,
Matthew Wilcoxe8de4342016-12-14 15:09:31 -0800833 offset, 0, 0);
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700834 if (!child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return -ENOMEM;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700836 rcu_assign_pointer(*slot, node_to_entry(child));
837 if (node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 node->count++;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700839 } else if (!radix_tree_is_internal_node(child))
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700840 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 /* Go a level down */
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700843 node = entry_to_node(child);
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700844 offset = radix_tree_descend(node, &child, index);
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700845 slot = &node->slots[offset];
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700846 }
847
Johannes Weiner139e5612014-04-03 14:47:54 -0700848 if (nodep)
849 *nodep = node;
850 if (slotp)
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700851 *slotp = slot;
Johannes Weiner139e5612014-04-03 14:47:54 -0700852 return 0;
853}
854
Matthew Wilcox175542f2016-12-14 15:08:58 -0800855/*
856 * Free any nodes below this node. The tree is presumed to not need
857 * shrinking, and any user data in the tree is presumed to not need a
858 * destructor called on it. If we need to add a destructor, we can
859 * add that functionality later. Note that we may not clear tags or
860 * slots from the tree as an RCU walker may still have a pointer into
861 * this subtree. We could replace the entries with RADIX_TREE_RETRY,
862 * but we'll still have to clear those in rcu_free.
863 */
864static void radix_tree_free_nodes(struct radix_tree_node *node)
865{
866 unsigned offset = 0;
867 struct radix_tree_node *child = entry_to_node(node);
868
869 for (;;) {
870 void *entry = child->slots[offset];
871 if (radix_tree_is_internal_node(entry) &&
872 !is_sibling_entry(child, entry)) {
873 child = entry_to_node(entry);
874 offset = 0;
875 continue;
876 }
877 offset++;
878 while (offset == RADIX_TREE_MAP_SIZE) {
879 struct radix_tree_node *old = child;
880 offset = child->offset + 1;
881 child = child->parent;
Matthew Wilcoxdd040b62017-01-24 15:18:16 -0800882 WARN_ON_ONCE(!list_empty(&old->private_list));
Matthew Wilcox175542f2016-12-14 15:08:58 -0800883 radix_tree_node_free(old);
884 if (old == entry_to_node(node))
885 return;
886 }
887 }
888}
889
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500890#ifdef CONFIG_RADIX_TREE_MULTIORDER
Matthew Wilcox175542f2016-12-14 15:08:58 -0800891static inline int insert_entries(struct radix_tree_node *node, void **slot,
892 void *item, unsigned order, bool replace)
893{
894 struct radix_tree_node *child;
895 unsigned i, n, tag, offset, tags = 0;
896
897 if (node) {
Matthew Wilcoxe157b552016-12-14 15:09:01 -0800898 if (order > node->shift)
899 n = 1 << (order - node->shift);
900 else
901 n = 1;
Matthew Wilcox175542f2016-12-14 15:08:58 -0800902 offset = get_slot_offset(node, slot);
903 } else {
904 n = 1;
905 offset = 0;
906 }
907
908 if (n > 1) {
909 offset = offset & ~(n - 1);
910 slot = &node->slots[offset];
911 }
912 child = node_to_entry(slot);
913
914 for (i = 0; i < n; i++) {
915 if (slot[i]) {
916 if (replace) {
917 node->count--;
918 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
919 if (tag_get(node, tag, offset + i))
920 tags |= 1 << tag;
921 } else
922 return -EEXIST;
923 }
924 }
925
926 for (i = 0; i < n; i++) {
927 struct radix_tree_node *old = slot[i];
928 if (i) {
929 rcu_assign_pointer(slot[i], child);
930 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
931 if (tags & (1 << tag))
932 tag_clear(node, tag, offset + i);
933 } else {
934 rcu_assign_pointer(slot[i], item);
935 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
936 if (tags & (1 << tag))
937 tag_set(node, tag, offset);
938 }
939 if (radix_tree_is_internal_node(old) &&
Matthew Wilcoxe157b552016-12-14 15:09:01 -0800940 !is_sibling_entry(node, old) &&
941 (old != RADIX_TREE_RETRY))
Matthew Wilcox175542f2016-12-14 15:08:58 -0800942 radix_tree_free_nodes(old);
943 if (radix_tree_exceptional_entry(old))
944 node->exceptional--;
945 }
946 if (node) {
947 node->count += n;
948 if (radix_tree_exceptional_entry(item))
949 node->exceptional += n;
950 }
951 return n;
952}
953#else
954static inline int insert_entries(struct radix_tree_node *node, void **slot,
955 void *item, unsigned order, bool replace)
956{
957 if (*slot)
958 return -EEXIST;
959 rcu_assign_pointer(*slot, item);
960 if (node) {
961 node->count++;
962 if (radix_tree_exceptional_entry(item))
963 node->exceptional++;
964 }
965 return 1;
966}
967#endif
968
Johannes Weiner139e5612014-04-03 14:47:54 -0700969/**
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700970 * __radix_tree_insert - insert into a radix tree
Johannes Weiner139e5612014-04-03 14:47:54 -0700971 * @root: radix tree root
972 * @index: index key
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700973 * @order: key covers the 2^order indices around index
Johannes Weiner139e5612014-04-03 14:47:54 -0700974 * @item: item to insert
975 *
976 * Insert an item into the radix tree at position @index.
977 */
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700978int __radix_tree_insert(struct radix_tree_root *root, unsigned long index,
979 unsigned order, void *item)
Johannes Weiner139e5612014-04-03 14:47:54 -0700980{
981 struct radix_tree_node *node;
982 void **slot;
983 int error;
984
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700985 BUG_ON(radix_tree_is_internal_node(item));
Johannes Weiner139e5612014-04-03 14:47:54 -0700986
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700987 error = __radix_tree_create(root, index, order, &node, &slot);
Johannes Weiner139e5612014-04-03 14:47:54 -0700988 if (error)
989 return error;
Matthew Wilcox175542f2016-12-14 15:08:58 -0800990
991 error = insert_entries(node, slot, item, order, false);
992 if (error < 0)
993 return error;
Christoph Lameter201b6262005-09-06 15:16:46 -0700994
Nick Piggin612d6c12006-06-23 02:03:22 -0700995 if (node) {
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700996 unsigned offset = get_slot_offset(node, slot);
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700997 BUG_ON(tag_get(node, 0, offset));
998 BUG_ON(tag_get(node, 1, offset));
999 BUG_ON(tag_get(node, 2, offset));
Nick Piggin612d6c12006-06-23 02:03:22 -07001000 } else {
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -07001001 BUG_ON(root_tags_get(root));
Nick Piggin612d6c12006-06-23 02:03:22 -07001002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return 0;
1005}
Matthew Wilcoxe6145232016-03-17 14:21:54 -07001006EXPORT_SYMBOL(__radix_tree_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Johannes Weiner139e5612014-04-03 14:47:54 -07001008/**
1009 * __radix_tree_lookup - lookup an item in a radix tree
1010 * @root: radix tree root
1011 * @index: index key
1012 * @nodep: returns node
1013 * @slotp: returns slot
1014 *
1015 * Lookup and return the item at position @index in the radix
1016 * tree @root.
1017 *
1018 * Until there is more than one item in the tree, no nodes are
1019 * allocated and @root->rnode is used as a direct slot instead of
1020 * pointing to a node, in which case *@nodep will be NULL.
Hans Reisera4331362005-11-07 00:59:29 -08001021 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05001022void *__radix_tree_lookup(const struct radix_tree_root *root,
1023 unsigned long index, struct radix_tree_node **nodep,
1024 void ***slotp)
Hans Reisera4331362005-11-07 00:59:29 -08001025{
Johannes Weiner139e5612014-04-03 14:47:54 -07001026 struct radix_tree_node *node, *parent;
Matthew Wilcox85829952016-05-20 17:02:20 -07001027 unsigned long maxindex;
Johannes Weiner139e5612014-04-03 14:47:54 -07001028 void **slot;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001029
Matthew Wilcox85829952016-05-20 17:02:20 -07001030 restart:
1031 parent = NULL;
1032 slot = (void **)&root->rnode;
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001033 radix_tree_load_root(root, &node, &maxindex);
Matthew Wilcox85829952016-05-20 17:02:20 -07001034 if (index > maxindex)
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001035 return NULL;
1036
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001037 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox85829952016-05-20 17:02:20 -07001038 unsigned offset;
Johannes Weiner139e5612014-04-03 14:47:54 -07001039
Matthew Wilcox85829952016-05-20 17:02:20 -07001040 if (node == RADIX_TREE_RETRY)
1041 goto restart;
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001042 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001043 offset = radix_tree_descend(parent, &node, index);
Matthew Wilcox85829952016-05-20 17:02:20 -07001044 slot = parent->slots + offset;
1045 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001046
Johannes Weiner139e5612014-04-03 14:47:54 -07001047 if (nodep)
1048 *nodep = parent;
1049 if (slotp)
1050 *slotp = slot;
1051 return node;
Huang Shijieb72b71c2009-06-16 15:33:42 -07001052}
1053
1054/**
1055 * radix_tree_lookup_slot - lookup a slot in a radix tree
1056 * @root: radix tree root
1057 * @index: index key
1058 *
1059 * Returns: the slot corresponding to the position @index in the
1060 * radix tree @root. This is useful for update-if-exists operations.
1061 *
1062 * This function can be called under rcu_read_lock iff the slot is not
1063 * modified by radix_tree_replace_slot, otherwise it must be called
1064 * exclusive from other writers. Any dereference of the slot must be done
1065 * using radix_tree_deref_slot.
1066 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05001067void **radix_tree_lookup_slot(const struct radix_tree_root *root,
1068 unsigned long index)
Huang Shijieb72b71c2009-06-16 15:33:42 -07001069{
Johannes Weiner139e5612014-04-03 14:47:54 -07001070 void **slot;
1071
1072 if (!__radix_tree_lookup(root, index, NULL, &slot))
1073 return NULL;
1074 return slot;
Hans Reisera4331362005-11-07 00:59:29 -08001075}
1076EXPORT_SYMBOL(radix_tree_lookup_slot);
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078/**
1079 * radix_tree_lookup - perform lookup operation on a radix tree
1080 * @root: radix tree root
1081 * @index: index key
1082 *
1083 * Lookup the item at the position @index in the radix tree @root.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001084 *
1085 * This function can be called under rcu_read_lock, however the caller
1086 * must manage lifetimes of leaf nodes (eg. RCU may also be used to free
1087 * them safely). No RCU barriers are required to access or modify the
1088 * returned item, however.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05001090void *radix_tree_lookup(const struct radix_tree_root *root, unsigned long index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Johannes Weiner139e5612014-04-03 14:47:54 -07001092 return __radix_tree_lookup(root, index, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094EXPORT_SYMBOL(radix_tree_lookup);
1095
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001096static inline void replace_sibling_entries(struct radix_tree_node *node,
1097 void **slot, int count, int exceptional)
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001098{
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001099#ifdef CONFIG_RADIX_TREE_MULTIORDER
1100 void *ptr = node_to_entry(slot);
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001101 unsigned offset = get_slot_offset(node, slot) + 1;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001102
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001103 while (offset < RADIX_TREE_MAP_SIZE) {
1104 if (node->slots[offset] != ptr)
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001105 break;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001106 if (count < 0) {
1107 node->slots[offset] = NULL;
1108 node->count--;
1109 }
1110 node->exceptional += exceptional;
1111 offset++;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001112 }
1113#endif
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001114}
1115
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001116static void replace_slot(void **slot, void *item, struct radix_tree_node *node,
1117 int count, int exceptional)
Johannes Weiner6d75f362016-12-12 16:43:43 -08001118{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001119 if (WARN_ON_ONCE(radix_tree_is_internal_node(item)))
1120 return;
Johannes Weiner6d75f362016-12-12 16:43:43 -08001121
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001122 if (node && (count || exceptional)) {
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001123 node->count += count;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001124 node->exceptional += exceptional;
1125 replace_sibling_entries(node, slot, count, exceptional);
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001126 }
Johannes Weiner6d75f362016-12-12 16:43:43 -08001127
1128 rcu_assign_pointer(*slot, item);
1129}
1130
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001131static bool node_tag_get(const struct radix_tree_root *root,
1132 const struct radix_tree_node *node,
1133 unsigned int tag, unsigned int offset)
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001134{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001135 if (node)
1136 return tag_get(node, tag, offset);
1137 return root_tag_get(root, tag);
1138}
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001139
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001140/*
1141 * IDR users want to be able to store NULL in the tree, so if the slot isn't
1142 * free, don't adjust the count, even if it's transitioning between NULL and
1143 * non-NULL. For the IDA, we mark slots as being IDR_FREE while they still
1144 * have empty bits, but it only stores NULL in slots when they're being
1145 * deleted.
1146 */
1147static int calculate_count(struct radix_tree_root *root,
1148 struct radix_tree_node *node, void **slot,
1149 void *item, void *old)
1150{
1151 if (is_idr(root)) {
1152 unsigned offset = get_slot_offset(node, slot);
1153 bool free = node_tag_get(root, node, IDR_FREE, offset);
1154 if (!free)
1155 return 0;
1156 if (!old)
1157 return 1;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001158 }
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001159 return !!item - !!old;
Matthew Wilcoxa90eb3a2016-12-14 15:09:07 -08001160}
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162/**
Johannes Weinerf7942432016-12-12 16:43:41 -08001163 * __radix_tree_replace - replace item in a slot
Johannes Weiner4d693d02016-12-12 16:43:49 -08001164 * @root: radix tree root
1165 * @node: pointer to tree node
1166 * @slot: pointer to slot in @node
1167 * @item: new item to store in the slot.
1168 * @update_node: callback for changing leaf nodes
1169 * @private: private data to pass to @update_node
Johannes Weinerf7942432016-12-12 16:43:41 -08001170 *
1171 * For use with __radix_tree_lookup(). Caller must hold tree write locked
1172 * across slot lookup and replacement.
1173 */
1174void __radix_tree_replace(struct radix_tree_root *root,
1175 struct radix_tree_node *node,
Johannes Weiner4d693d02016-12-12 16:43:49 -08001176 void **slot, void *item,
1177 radix_tree_update_node_t update_node, void *private)
Johannes Weinerf7942432016-12-12 16:43:41 -08001178{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001179 void *old = rcu_dereference_raw(*slot);
1180 int exceptional = !!radix_tree_exceptional_entry(item) -
1181 !!radix_tree_exceptional_entry(old);
1182 int count = calculate_count(root, node, slot, item, old);
1183
Johannes Weiner6d75f362016-12-12 16:43:43 -08001184 /*
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001185 * This function supports replacing exceptional entries and
1186 * deleting entries, but that needs accounting against the
1187 * node unless the slot is root->rnode.
Johannes Weiner6d75f362016-12-12 16:43:43 -08001188 */
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001189 WARN_ON_ONCE(!node && (slot != (void **)&root->rnode) &&
1190 (count || exceptional));
1191 replace_slot(slot, item, node, count, exceptional);
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001192
Johannes Weiner4d693d02016-12-12 16:43:49 -08001193 if (!node)
1194 return;
1195
1196 if (update_node)
1197 update_node(node, private);
1198
1199 delete_node(root, node, update_node, private);
Johannes Weiner6d75f362016-12-12 16:43:43 -08001200}
Johannes Weinerf7942432016-12-12 16:43:41 -08001201
Johannes Weiner6d75f362016-12-12 16:43:43 -08001202/**
1203 * radix_tree_replace_slot - replace item in a slot
1204 * @root: radix tree root
1205 * @slot: pointer to slot
1206 * @item: new item to store in the slot.
1207 *
1208 * For use with radix_tree_lookup_slot(), radix_tree_gang_lookup_slot(),
1209 * radix_tree_gang_lookup_tag_slot(). Caller must hold tree write locked
1210 * across slot lookup and replacement.
1211 *
1212 * NOTE: This cannot be used to switch between non-entries (empty slots),
1213 * regular entries, and exceptional entries, as that requires accounting
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001214 * inside the radix tree node. When switching from one type of entry or
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001215 * deleting, use __radix_tree_lookup() and __radix_tree_replace() or
1216 * radix_tree_iter_replace().
Johannes Weiner6d75f362016-12-12 16:43:43 -08001217 */
1218void radix_tree_replace_slot(struct radix_tree_root *root,
1219 void **slot, void *item)
1220{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001221 __radix_tree_replace(root, NULL, slot, item, NULL, NULL);
Johannes Weinerf7942432016-12-12 16:43:41 -08001222}
1223
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001224/**
1225 * radix_tree_iter_replace - replace item in a slot
1226 * @root: radix tree root
1227 * @slot: pointer to slot
1228 * @item: new item to store in the slot.
1229 *
1230 * For use with radix_tree_split() and radix_tree_for_each_slot().
1231 * Caller must hold tree write locked across split and replacement.
1232 */
1233void radix_tree_iter_replace(struct radix_tree_root *root,
1234 const struct radix_tree_iter *iter, void **slot, void *item)
1235{
1236 __radix_tree_replace(root, iter->node, slot, item, NULL, NULL);
1237}
1238
Matthew Wilcox175542f2016-12-14 15:08:58 -08001239#ifdef CONFIG_RADIX_TREE_MULTIORDER
1240/**
1241 * radix_tree_join - replace multiple entries with one multiorder entry
1242 * @root: radix tree root
1243 * @index: an index inside the new entry
1244 * @order: order of the new entry
1245 * @item: new entry
1246 *
1247 * Call this function to replace several entries with one larger entry.
1248 * The existing entries are presumed to not need freeing as a result of
1249 * this call.
1250 *
1251 * The replacement entry will have all the tags set on it that were set
1252 * on any of the entries it is replacing.
1253 */
1254int radix_tree_join(struct radix_tree_root *root, unsigned long index,
1255 unsigned order, void *item)
1256{
1257 struct radix_tree_node *node;
1258 void **slot;
1259 int error;
1260
1261 BUG_ON(radix_tree_is_internal_node(item));
1262
1263 error = __radix_tree_create(root, index, order, &node, &slot);
1264 if (!error)
1265 error = insert_entries(node, slot, item, order, true);
1266 if (error > 0)
1267 error = 0;
1268
1269 return error;
1270}
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001271
1272/**
1273 * radix_tree_split - Split an entry into smaller entries
1274 * @root: radix tree root
1275 * @index: An index within the large entry
1276 * @order: Order of new entries
1277 *
1278 * Call this function as the first step in replacing a multiorder entry
1279 * with several entries of lower order. After this function returns,
1280 * loop over the relevant portion of the tree using radix_tree_for_each_slot()
1281 * and call radix_tree_iter_replace() to set up each new entry.
1282 *
1283 * The tags from this entry are replicated to all the new entries.
1284 *
1285 * The radix tree should be locked against modification during the entire
1286 * replacement operation. Lock-free lookups will see RADIX_TREE_RETRY which
1287 * should prompt RCU walkers to restart the lookup from the root.
1288 */
1289int radix_tree_split(struct radix_tree_root *root, unsigned long index,
1290 unsigned order)
1291{
1292 struct radix_tree_node *parent, *node, *child;
1293 void **slot;
1294 unsigned int offset, end;
1295 unsigned n, tag, tags = 0;
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001296 gfp_t gfp = root_gfp_mask(root);
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001297
1298 if (!__radix_tree_lookup(root, index, &parent, &slot))
1299 return -ENOENT;
1300 if (!parent)
1301 return -ENOENT;
1302
1303 offset = get_slot_offset(parent, slot);
1304
1305 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1306 if (tag_get(parent, tag, offset))
1307 tags |= 1 << tag;
1308
1309 for (end = offset + 1; end < RADIX_TREE_MAP_SIZE; end++) {
1310 if (!is_sibling_entry(parent, parent->slots[end]))
1311 break;
1312 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1313 if (tags & (1 << tag))
1314 tag_set(parent, tag, end);
1315 /* rcu_assign_pointer ensures tags are set before RETRY */
1316 rcu_assign_pointer(parent->slots[end], RADIX_TREE_RETRY);
1317 }
1318 rcu_assign_pointer(parent->slots[offset], RADIX_TREE_RETRY);
1319 parent->exceptional -= (end - offset);
1320
1321 if (order == parent->shift)
1322 return 0;
1323 if (order > parent->shift) {
1324 while (offset < end)
1325 offset += insert_entries(parent, &parent->slots[offset],
1326 RADIX_TREE_RETRY, order, true);
1327 return 0;
1328 }
1329
1330 node = parent;
1331
1332 for (;;) {
1333 if (node->shift > order) {
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001334 child = radix_tree_node_alloc(gfp, node,
Matthew Wilcoxe8de4342016-12-14 15:09:31 -08001335 node->shift - RADIX_TREE_MAP_SHIFT,
1336 offset, 0, 0);
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001337 if (!child)
1338 goto nomem;
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001339 if (node != parent) {
1340 node->count++;
1341 node->slots[offset] = node_to_entry(child);
1342 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1343 if (tags & (1 << tag))
1344 tag_set(node, tag, offset);
1345 }
1346
1347 node = child;
1348 offset = 0;
1349 continue;
1350 }
1351
1352 n = insert_entries(node, &node->slots[offset],
1353 RADIX_TREE_RETRY, order, false);
1354 BUG_ON(n > RADIX_TREE_MAP_SIZE);
1355
1356 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1357 if (tags & (1 << tag))
1358 tag_set(node, tag, offset);
1359 offset += n;
1360
1361 while (offset == RADIX_TREE_MAP_SIZE) {
1362 if (node == parent)
1363 break;
1364 offset = node->offset;
1365 child = node;
1366 node = node->parent;
1367 rcu_assign_pointer(node->slots[offset],
1368 node_to_entry(child));
1369 offset++;
1370 }
1371 if ((node == parent) && (offset == end))
1372 return 0;
1373 }
1374
1375 nomem:
1376 /* Shouldn't happen; did user forget to preload? */
1377 /* TODO: free all the allocated nodes */
1378 WARN_ON(1);
1379 return -ENOMEM;
1380}
Matthew Wilcox175542f2016-12-14 15:08:58 -08001381#endif
1382
Matthew Wilcox30b888b2017-01-28 09:55:20 -05001383static void node_tag_set(struct radix_tree_root *root,
1384 struct radix_tree_node *node,
1385 unsigned int tag, unsigned int offset)
1386{
1387 while (node) {
1388 if (tag_get(node, tag, offset))
1389 return;
1390 tag_set(node, tag, offset);
1391 offset = node->offset;
1392 node = node->parent;
1393 }
1394
1395 if (!root_tag_get(root, tag))
1396 root_tag_set(root, tag);
1397}
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399/**
1400 * radix_tree_tag_set - set a tag on a radix tree node
1401 * @root: radix tree root
1402 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001403 * @tag: tag index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 *
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001405 * Set the search tag (which must be < RADIX_TREE_MAX_TAGS)
1406 * corresponding to @index in the radix tree. From
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 * the root all the way down to the leaf node.
1408 *
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001409 * Returns the address of the tagged item. Setting a tag on a not-present
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 * item is a bug.
1411 */
1412void *radix_tree_tag_set(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001413 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
Ross Zwislerfb969902016-05-20 17:02:32 -07001415 struct radix_tree_node *node, *parent;
1416 unsigned long maxindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001418 radix_tree_load_root(root, &node, &maxindex);
Ross Zwislerfb969902016-05-20 17:02:32 -07001419 BUG_ON(index > maxindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001421 while (radix_tree_is_internal_node(node)) {
Ross Zwislerfb969902016-05-20 17:02:32 -07001422 unsigned offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001424 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001425 offset = radix_tree_descend(parent, &node, index);
Ross Zwislerfb969902016-05-20 17:02:32 -07001426 BUG_ON(!node);
1427
1428 if (!tag_get(parent, tag, offset))
1429 tag_set(parent, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431
Nick Piggin612d6c12006-06-23 02:03:22 -07001432 /* set the root's tag bit */
Ross Zwislerfb969902016-05-20 17:02:32 -07001433 if (!root_tag_get(root, tag))
Nick Piggin612d6c12006-06-23 02:03:22 -07001434 root_tag_set(root, tag);
1435
Ross Zwislerfb969902016-05-20 17:02:32 -07001436 return node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437}
1438EXPORT_SYMBOL(radix_tree_tag_set);
1439
Matthew Wilcox30b888b2017-01-28 09:55:20 -05001440/**
1441 * radix_tree_iter_tag_set - set a tag on the current iterator entry
1442 * @root: radix tree root
1443 * @iter: iterator state
1444 * @tag: tag to set
1445 */
1446void radix_tree_iter_tag_set(struct radix_tree_root *root,
1447 const struct radix_tree_iter *iter, unsigned int tag)
1448{
1449 node_tag_set(root, iter->node, tag, iter_offset(iter));
1450}
1451
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001452static void node_tag_clear(struct radix_tree_root *root,
1453 struct radix_tree_node *node,
1454 unsigned int tag, unsigned int offset)
1455{
1456 while (node) {
1457 if (!tag_get(node, tag, offset))
1458 return;
1459 tag_clear(node, tag, offset);
1460 if (any_tag_set(node, tag))
1461 return;
1462
1463 offset = node->offset;
1464 node = node->parent;
1465 }
1466
1467 /* clear the root's tag bit */
1468 if (root_tag_get(root, tag))
1469 root_tag_clear(root, tag);
1470}
1471
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001472/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 * radix_tree_tag_clear - clear a tag on a radix tree node
1474 * @root: radix tree root
1475 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001476 * @tag: tag index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 *
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001478 * Clear the search tag (which must be < RADIX_TREE_MAX_TAGS)
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001479 * corresponding to @index in the radix tree. If this causes
1480 * the leaf node to have no tags set then clear the tag in the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 * next-to-leaf node, etc.
1482 *
1483 * Returns the address of the tagged item on success, else NULL. ie:
1484 * has the same return value and semantics as radix_tree_lookup().
1485 */
1486void *radix_tree_tag_clear(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001487 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Ross Zwisler00f47b52016-05-20 17:02:35 -07001489 struct radix_tree_node *node, *parent;
1490 unsigned long maxindex;
Hugh Dickinse2bdb932012-01-12 17:20:41 -08001491 int uninitialized_var(offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001493 radix_tree_load_root(root, &node, &maxindex);
Ross Zwisler00f47b52016-05-20 17:02:35 -07001494 if (index > maxindex)
1495 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Ross Zwisler00f47b52016-05-20 17:02:35 -07001497 parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001499 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001500 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001501 offset = radix_tree_descend(parent, &node, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
1503
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001504 if (node)
1505 node_tag_clear(root, parent, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Ross Zwisler00f47b52016-05-20 17:02:35 -07001507 return node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509EXPORT_SYMBOL(radix_tree_tag_clear);
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511/**
Matthew Wilcox30b888b2017-01-28 09:55:20 -05001512 * radix_tree_iter_tag_clear - clear a tag on the current iterator entry
1513 * @root: radix tree root
1514 * @iter: iterator state
1515 * @tag: tag to clear
1516 */
1517void radix_tree_iter_tag_clear(struct radix_tree_root *root,
1518 const struct radix_tree_iter *iter, unsigned int tag)
1519{
1520 node_tag_clear(root, iter->node, tag, iter_offset(iter));
1521}
1522
1523/**
Marcelo Tosatti32605a12005-09-06 15:16:48 -07001524 * radix_tree_tag_get - get a tag on a radix tree node
1525 * @root: radix tree root
1526 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001527 * @tag: tag index (< RADIX_TREE_MAX_TAGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 *
Marcelo Tosatti32605a12005-09-06 15:16:48 -07001529 * Return values:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 *
Nick Piggin612d6c12006-06-23 02:03:22 -07001531 * 0: tag not present or not set
1532 * 1: tag set
David Howellsce826532010-04-06 22:36:20 +01001533 *
1534 * Note that the return value of this function may not be relied on, even if
1535 * the RCU lock is held, unless tag modification and node deletion are excluded
1536 * from concurrency.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05001538int radix_tree_tag_get(const struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001539 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
Ross Zwisler4589ba62016-05-20 17:02:38 -07001541 struct radix_tree_node *node, *parent;
1542 unsigned long maxindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Nick Piggin612d6c12006-06-23 02:03:22 -07001544 if (!root_tag_get(root, tag))
1545 return 0;
1546
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001547 radix_tree_load_root(root, &node, &maxindex);
Ross Zwisler4589ba62016-05-20 17:02:38 -07001548 if (index > maxindex)
1549 return 0;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001550
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001551 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001552 unsigned offset;
Ross Zwisler4589ba62016-05-20 17:02:38 -07001553
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001554 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001555 offset = radix_tree_descend(parent, &node, index);
Ross Zwisler4589ba62016-05-20 17:02:38 -07001556
Ross Zwisler4589ba62016-05-20 17:02:38 -07001557 if (!tag_get(parent, tag, offset))
1558 return 0;
1559 if (node == RADIX_TREE_RETRY)
1560 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
Ross Zwisler4589ba62016-05-20 17:02:38 -07001562
1563 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565EXPORT_SYMBOL(radix_tree_tag_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Ross Zwisler21ef5332016-05-20 17:02:26 -07001567static inline void __set_iter_shift(struct radix_tree_iter *iter,
1568 unsigned int shift)
1569{
1570#ifdef CONFIG_RADIX_TREE_MULTIORDER
1571 iter->shift = shift;
1572#endif
1573}
1574
Matthew Wilcox148deab2016-12-14 15:08:49 -08001575/* Construct iter->tags bit-mask from node->tags[tag] array */
1576static void set_iter_tags(struct radix_tree_iter *iter,
1577 struct radix_tree_node *node, unsigned offset,
1578 unsigned tag)
1579{
1580 unsigned tag_long = offset / BITS_PER_LONG;
1581 unsigned tag_bit = offset % BITS_PER_LONG;
1582
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001583 if (!node) {
1584 iter->tags = 1;
1585 return;
1586 }
1587
Matthew Wilcox148deab2016-12-14 15:08:49 -08001588 iter->tags = node->tags[tag][tag_long] >> tag_bit;
1589
1590 /* This never happens if RADIX_TREE_TAG_LONGS == 1 */
1591 if (tag_long < RADIX_TREE_TAG_LONGS - 1) {
1592 /* Pick tags from next element */
1593 if (tag_bit)
1594 iter->tags |= node->tags[tag][tag_long + 1] <<
1595 (BITS_PER_LONG - tag_bit);
1596 /* Clip chunk size, here only BITS_PER_LONG tags */
1597 iter->next_index = __radix_tree_iter_add(iter, BITS_PER_LONG);
1598 }
1599}
1600
1601#ifdef CONFIG_RADIX_TREE_MULTIORDER
1602static void **skip_siblings(struct radix_tree_node **nodep,
1603 void **slot, struct radix_tree_iter *iter)
1604{
1605 void *sib = node_to_entry(slot - 1);
1606
1607 while (iter->index < iter->next_index) {
1608 *nodep = rcu_dereference_raw(*slot);
1609 if (*nodep && *nodep != sib)
1610 return slot;
1611 slot++;
1612 iter->index = __radix_tree_iter_add(iter, 1);
1613 iter->tags >>= 1;
1614 }
1615
1616 *nodep = NULL;
1617 return NULL;
1618}
1619
1620void ** __radix_tree_next_slot(void **slot, struct radix_tree_iter *iter,
1621 unsigned flags)
1622{
1623 unsigned tag = flags & RADIX_TREE_ITER_TAG_MASK;
1624 struct radix_tree_node *node = rcu_dereference_raw(*slot);
1625
1626 slot = skip_siblings(&node, slot, iter);
1627
1628 while (radix_tree_is_internal_node(node)) {
1629 unsigned offset;
1630 unsigned long next_index;
1631
1632 if (node == RADIX_TREE_RETRY)
1633 return slot;
1634 node = entry_to_node(node);
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001635 iter->node = node;
Matthew Wilcox148deab2016-12-14 15:08:49 -08001636 iter->shift = node->shift;
1637
1638 if (flags & RADIX_TREE_ITER_TAGGED) {
1639 offset = radix_tree_find_next_bit(node, tag, 0);
1640 if (offset == RADIX_TREE_MAP_SIZE)
1641 return NULL;
1642 slot = &node->slots[offset];
1643 iter->index = __radix_tree_iter_add(iter, offset);
1644 set_iter_tags(iter, node, offset, tag);
1645 node = rcu_dereference_raw(*slot);
1646 } else {
1647 offset = 0;
1648 slot = &node->slots[0];
1649 for (;;) {
1650 node = rcu_dereference_raw(*slot);
1651 if (node)
1652 break;
1653 slot++;
1654 offset++;
1655 if (offset == RADIX_TREE_MAP_SIZE)
1656 return NULL;
1657 }
1658 iter->index = __radix_tree_iter_add(iter, offset);
1659 }
1660 if ((flags & RADIX_TREE_ITER_CONTIG) && (offset > 0))
1661 goto none;
1662 next_index = (iter->index | shift_maxindex(iter->shift)) + 1;
1663 if (next_index < iter->next_index)
1664 iter->next_index = next_index;
1665 }
1666
1667 return slot;
1668 none:
1669 iter->next_index = 0;
1670 return NULL;
1671}
1672EXPORT_SYMBOL(__radix_tree_next_slot);
1673#else
1674static void **skip_siblings(struct radix_tree_node **nodep,
1675 void **slot, struct radix_tree_iter *iter)
1676{
1677 return slot;
1678}
1679#endif
1680
1681void **radix_tree_iter_resume(void **slot, struct radix_tree_iter *iter)
1682{
1683 struct radix_tree_node *node;
1684
1685 slot++;
1686 iter->index = __radix_tree_iter_add(iter, 1);
1687 node = rcu_dereference_raw(*slot);
1688 skip_siblings(&node, slot, iter);
1689 iter->next_index = iter->index;
1690 iter->tags = 0;
1691 return NULL;
1692}
1693EXPORT_SYMBOL(radix_tree_iter_resume);
1694
Fengguang Wu6df8ba42007-10-16 01:24:33 -07001695/**
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001696 * radix_tree_next_chunk - find next chunk of slots for iteration
1697 *
1698 * @root: radix tree root
1699 * @iter: iterator state
1700 * @flags: RADIX_TREE_ITER_* flags and tag index
1701 * Returns: pointer to chunk first slot, or NULL if iteration is over
1702 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05001703void **radix_tree_next_chunk(const struct radix_tree_root *root,
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001704 struct radix_tree_iter *iter, unsigned flags)
1705{
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001706 unsigned tag = flags & RADIX_TREE_ITER_TAG_MASK;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001707 struct radix_tree_node *node, *child;
Ross Zwisler21ef5332016-05-20 17:02:26 -07001708 unsigned long index, offset, maxindex;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001709
1710 if ((flags & RADIX_TREE_ITER_TAGGED) && !root_tag_get(root, tag))
1711 return NULL;
1712
1713 /*
1714 * Catch next_index overflow after ~0UL. iter->index never overflows
1715 * during iterating; it can be zero only at the beginning.
1716 * And we cannot overflow iter->next_index in a single step,
1717 * because RADIX_TREE_MAP_SHIFT < BITS_PER_LONG.
Konstantin Khlebnikovfffaee32012-06-05 21:36:33 +04001718 *
1719 * This condition also used by radix_tree_next_slot() to stop
Matthew Wilcox91b9677c2016-12-14 15:08:31 -08001720 * contiguous iterating, and forbid switching to the next chunk.
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001721 */
1722 index = iter->next_index;
1723 if (!index && iter->index)
1724 return NULL;
1725
Ross Zwisler21ef5332016-05-20 17:02:26 -07001726 restart:
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001727 radix_tree_load_root(root, &child, &maxindex);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001728 if (index > maxindex)
1729 return NULL;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001730 if (!child)
1731 return NULL;
Ross Zwisler21ef5332016-05-20 17:02:26 -07001732
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001733 if (!radix_tree_is_internal_node(child)) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001734 /* Single-slot tree */
Ross Zwisler21ef5332016-05-20 17:02:26 -07001735 iter->index = index;
1736 iter->next_index = maxindex + 1;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001737 iter->tags = 1;
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001738 iter->node = NULL;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001739 __set_iter_shift(iter, 0);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001740 return (void **)&root->rnode;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001741 }
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001742
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001743 do {
1744 node = entry_to_node(child);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001745 offset = radix_tree_descend(node, &child, index);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001746
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001747 if ((flags & RADIX_TREE_ITER_TAGGED) ?
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001748 !tag_get(node, tag, offset) : !child) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001749 /* Hole detected */
1750 if (flags & RADIX_TREE_ITER_CONTIG)
1751 return NULL;
1752
1753 if (flags & RADIX_TREE_ITER_TAGGED)
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -08001754 offset = radix_tree_find_next_bit(node, tag,
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001755 offset + 1);
1756 else
1757 while (++offset < RADIX_TREE_MAP_SIZE) {
Ross Zwisler21ef5332016-05-20 17:02:26 -07001758 void *slot = node->slots[offset];
1759 if (is_sibling_entry(node, slot))
1760 continue;
1761 if (slot)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001762 break;
1763 }
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001764 index &= ~node_maxindex(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001765 index += offset << node->shift;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001766 /* Overflow after ~0UL */
1767 if (!index)
1768 return NULL;
1769 if (offset == RADIX_TREE_MAP_SIZE)
1770 goto restart;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001771 child = rcu_dereference_raw(node->slots[offset]);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001772 }
1773
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001774 if (!child)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001775 goto restart;
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001776 if (child == RADIX_TREE_RETRY)
1777 break;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001778 } while (radix_tree_is_internal_node(child));
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001779
1780 /* Update the iterator state */
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001781 iter->index = (index &~ node_maxindex(node)) | (offset << node->shift);
1782 iter->next_index = (index | node_maxindex(node)) + 1;
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001783 iter->node = node;
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001784 __set_iter_shift(iter, node->shift);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001785
Matthew Wilcox148deab2016-12-14 15:08:49 -08001786 if (flags & RADIX_TREE_ITER_TAGGED)
1787 set_iter_tags(iter, node, offset, tag);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001788
1789 return node->slots + offset;
1790}
1791EXPORT_SYMBOL(radix_tree_next_chunk);
1792
1793/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 * radix_tree_gang_lookup - perform multiple lookup on a radix tree
1795 * @root: radix tree root
1796 * @results: where the results of the lookup are placed
1797 * @first_index: start the lookup from this key
1798 * @max_items: place up to this many items at *results
1799 *
1800 * Performs an index-ascending scan of the tree for present items. Places
1801 * them at *@results and returns the number of items which were placed at
1802 * *@results.
1803 *
1804 * The implementation is naive.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001805 *
1806 * Like radix_tree_lookup, radix_tree_gang_lookup may be called under
1807 * rcu_read_lock. In this case, rather than the returned results being
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001808 * an atomic snapshot of the tree at a single point in time, the
1809 * semantics of an RCU protected gang lookup are as though multiple
1810 * radix_tree_lookups have been issued in individual locks, and results
1811 * stored in 'results'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 */
1813unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001814radix_tree_gang_lookup(const struct radix_tree_root *root, void **results,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 unsigned long first_index, unsigned int max_items)
1816{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001817 struct radix_tree_iter iter;
1818 void **slot;
1819 unsigned int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001821 if (unlikely(!max_items))
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001822 return 0;
1823
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001824 radix_tree_for_each_slot(slot, root, &iter, first_index) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001825 results[ret] = rcu_dereference_raw(*slot);
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001826 if (!results[ret])
1827 continue;
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001828 if (radix_tree_is_internal_node(results[ret])) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001829 slot = radix_tree_iter_retry(&iter);
1830 continue;
1831 }
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001832 if (++ret == max_items)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return ret;
1837}
1838EXPORT_SYMBOL(radix_tree_gang_lookup);
1839
Nick Piggin47feff22008-07-25 19:45:29 -07001840/**
1841 * radix_tree_gang_lookup_slot - perform multiple slot lookup on radix tree
1842 * @root: radix tree root
1843 * @results: where the results of the lookup are placed
Hugh Dickins63286502011-08-03 16:21:18 -07001844 * @indices: where their indices should be placed (but usually NULL)
Nick Piggin47feff22008-07-25 19:45:29 -07001845 * @first_index: start the lookup from this key
1846 * @max_items: place up to this many items at *results
1847 *
1848 * Performs an index-ascending scan of the tree for present items. Places
1849 * their slots at *@results and returns the number of items which were
1850 * placed at *@results.
1851 *
1852 * The implementation is naive.
1853 *
1854 * Like radix_tree_gang_lookup as far as RCU and locking goes. Slots must
1855 * be dereferenced with radix_tree_deref_slot, and if using only RCU
1856 * protection, radix_tree_deref_slot may fail requiring a retry.
1857 */
1858unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001859radix_tree_gang_lookup_slot(const struct radix_tree_root *root,
Hugh Dickins63286502011-08-03 16:21:18 -07001860 void ***results, unsigned long *indices,
Nick Piggin47feff22008-07-25 19:45:29 -07001861 unsigned long first_index, unsigned int max_items)
1862{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001863 struct radix_tree_iter iter;
1864 void **slot;
1865 unsigned int ret = 0;
Nick Piggin47feff22008-07-25 19:45:29 -07001866
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001867 if (unlikely(!max_items))
Nick Piggin47feff22008-07-25 19:45:29 -07001868 return 0;
1869
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001870 radix_tree_for_each_slot(slot, root, &iter, first_index) {
1871 results[ret] = slot;
Hugh Dickins63286502011-08-03 16:21:18 -07001872 if (indices)
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001873 indices[ret] = iter.index;
1874 if (++ret == max_items)
Nick Piggin47feff22008-07-25 19:45:29 -07001875 break;
Nick Piggin47feff22008-07-25 19:45:29 -07001876 }
1877
1878 return ret;
1879}
1880EXPORT_SYMBOL(radix_tree_gang_lookup_slot);
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882/**
1883 * radix_tree_gang_lookup_tag - perform multiple lookup on a radix tree
1884 * based on a tag
1885 * @root: radix tree root
1886 * @results: where the results of the lookup are placed
1887 * @first_index: start the lookup from this key
1888 * @max_items: place up to this many items at *results
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001889 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 *
1891 * Performs an index-ascending scan of the tree for present items which
1892 * have the tag indexed by @tag set. Places the items at *@results and
1893 * returns the number of items which were placed at *@results.
1894 */
1895unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001896radix_tree_gang_lookup_tag(const struct radix_tree_root *root, void **results,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001897 unsigned long first_index, unsigned int max_items,
1898 unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001900 struct radix_tree_iter iter;
1901 void **slot;
1902 unsigned int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001904 if (unlikely(!max_items))
Nick Piggin612d6c12006-06-23 02:03:22 -07001905 return 0;
1906
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001907 radix_tree_for_each_tagged(slot, root, &iter, first_index, tag) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001908 results[ret] = rcu_dereference_raw(*slot);
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001909 if (!results[ret])
1910 continue;
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001911 if (radix_tree_is_internal_node(results[ret])) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001912 slot = radix_tree_iter_retry(&iter);
1913 continue;
1914 }
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001915 if (++ret == max_items)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 return ret;
1920}
1921EXPORT_SYMBOL(radix_tree_gang_lookup_tag);
1922
1923/**
Nick Piggin47feff22008-07-25 19:45:29 -07001924 * radix_tree_gang_lookup_tag_slot - perform multiple slot lookup on a
1925 * radix tree based on a tag
1926 * @root: radix tree root
1927 * @results: where the results of the lookup are placed
1928 * @first_index: start the lookup from this key
1929 * @max_items: place up to this many items at *results
1930 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
1931 *
1932 * Performs an index-ascending scan of the tree for present items which
1933 * have the tag indexed by @tag set. Places the slots at *@results and
1934 * returns the number of slots which were placed at *@results.
1935 */
1936unsigned int
Matthew Wilcox35534c82016-12-19 17:43:19 -05001937radix_tree_gang_lookup_tag_slot(const struct radix_tree_root *root,
1938 void ***results, unsigned long first_index,
1939 unsigned int max_items, unsigned int tag)
Nick Piggin47feff22008-07-25 19:45:29 -07001940{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001941 struct radix_tree_iter iter;
1942 void **slot;
1943 unsigned int ret = 0;
Nick Piggin47feff22008-07-25 19:45:29 -07001944
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001945 if (unlikely(!max_items))
Nick Piggin47feff22008-07-25 19:45:29 -07001946 return 0;
1947
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001948 radix_tree_for_each_tagged(slot, root, &iter, first_index, tag) {
1949 results[ret] = slot;
1950 if (++ret == max_items)
Nick Piggin47feff22008-07-25 19:45:29 -07001951 break;
Nick Piggin47feff22008-07-25 19:45:29 -07001952 }
1953
1954 return ret;
1955}
1956EXPORT_SYMBOL(radix_tree_gang_lookup_tag_slot);
1957
Nick Piggin47feff22008-07-25 19:45:29 -07001958/**
Johannes Weiner139e5612014-04-03 14:47:54 -07001959 * __radix_tree_delete_node - try to free node after clearing a slot
1960 * @root: radix tree root
Johannes Weiner139e5612014-04-03 14:47:54 -07001961 * @node: node containing @index
Johannes Weinerea07b862017-01-06 19:21:43 -05001962 * @update_node: callback for changing leaf nodes
1963 * @private: private data to pass to @update_node
Johannes Weiner139e5612014-04-03 14:47:54 -07001964 *
1965 * After clearing the slot at @index in @node from radix tree
1966 * rooted at @root, call this function to attempt freeing the
1967 * node and shrinking the tree.
Johannes Weiner139e5612014-04-03 14:47:54 -07001968 */
Johannes Weiner14b46872016-12-12 16:43:52 -08001969void __radix_tree_delete_node(struct radix_tree_root *root,
Johannes Weinerea07b862017-01-06 19:21:43 -05001970 struct radix_tree_node *node,
1971 radix_tree_update_node_t update_node,
1972 void *private)
Johannes Weiner139e5612014-04-03 14:47:54 -07001973{
Johannes Weinerea07b862017-01-06 19:21:43 -05001974 delete_node(root, node, update_node, private);
Johannes Weiner139e5612014-04-03 14:47:54 -07001975}
1976
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001977static bool __radix_tree_delete(struct radix_tree_root *root,
1978 struct radix_tree_node *node, void **slot)
1979{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001980 void *old = rcu_dereference_raw(*slot);
1981 int exceptional = radix_tree_exceptional_entry(old) ? -1 : 0;
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001982 unsigned offset = get_slot_offset(node, slot);
1983 int tag;
1984
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001985 if (is_idr(root))
1986 node_tag_set(root, node, IDR_FREE, offset);
1987 else
1988 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1989 node_tag_clear(root, node, tag, offset);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001990
Matthew Wilcox0a835c42016-12-20 10:27:56 -05001991 replace_slot(slot, NULL, node, -1, exceptional);
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001992 return node && delete_node(root, node, NULL, NULL);
1993}
1994
Johannes Weiner139e5612014-04-03 14:47:54 -07001995/**
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05001996 * radix_tree_iter_delete - delete the entry at this iterator position
1997 * @root: radix tree root
1998 * @iter: iterator state
1999 * @slot: pointer to slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002001 * Delete the entry at the position currently pointed to by the iterator.
2002 * This may result in the current node being freed; if it is, the iterator
2003 * is advanced so that it will not reference the freed memory. This
2004 * function may be called without any locking if there are no other threads
2005 * which can access this tree.
2006 */
2007void radix_tree_iter_delete(struct radix_tree_root *root,
2008 struct radix_tree_iter *iter, void **slot)
2009{
2010 if (__radix_tree_delete(root, iter->node, slot))
2011 iter->index = iter->next_index;
2012}
2013
2014/**
2015 * radix_tree_delete_item - delete an item from a radix tree
2016 * @root: radix tree root
2017 * @index: index key
2018 * @item: expected item
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002020 * Remove @item at @index from the radix tree rooted at @root.
2021 *
2022 * Return: the deleted entry, or %NULL if it was not present
2023 * or the entry at the given @index was not @item.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 */
Johannes Weiner53c59f22014-04-03 14:47:39 -07002025void *radix_tree_delete_item(struct radix_tree_root *root,
2026 unsigned long index, void *item)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002028 struct radix_tree_node *node = NULL;
Johannes Weiner139e5612014-04-03 14:47:54 -07002029 void **slot;
2030 void *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Johannes Weiner139e5612014-04-03 14:47:54 -07002032 entry = __radix_tree_lookup(root, index, &node, &slot);
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002033 if (!entry && (!is_idr(root) || node_tag_get(root, node, IDR_FREE,
2034 get_slot_offset(node, slot))))
Johannes Weiner139e5612014-04-03 14:47:54 -07002035 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Johannes Weiner139e5612014-04-03 14:47:54 -07002037 if (item && entry != item)
2038 return NULL;
2039
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002040 __radix_tree_delete(root, node, slot);
Christoph Lameter201b6262005-09-06 15:16:46 -07002041
Johannes Weiner139e5612014-04-03 14:47:54 -07002042 return entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043}
Johannes Weiner53c59f22014-04-03 14:47:39 -07002044EXPORT_SYMBOL(radix_tree_delete_item);
2045
2046/**
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002047 * radix_tree_delete - delete an entry from a radix tree
2048 * @root: radix tree root
2049 * @index: index key
Johannes Weiner53c59f22014-04-03 14:47:39 -07002050 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002051 * Remove the entry at @index from the radix tree rooted at @root.
Johannes Weiner53c59f22014-04-03 14:47:39 -07002052 *
Matthew Wilcox0ac398e2017-01-28 09:56:22 -05002053 * Return: The deleted entry, or %NULL if it was not present.
Johannes Weiner53c59f22014-04-03 14:47:39 -07002054 */
2055void *radix_tree_delete(struct radix_tree_root *root, unsigned long index)
2056{
2057 return radix_tree_delete_item(root, index, NULL);
2058}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059EXPORT_SYMBOL(radix_tree_delete);
2060
Johannes Weinerd3798ae2016-10-04 22:02:08 +02002061void radix_tree_clear_tags(struct radix_tree_root *root,
2062 struct radix_tree_node *node,
2063 void **slot)
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002064{
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002065 if (node) {
2066 unsigned int tag, offset = get_slot_offset(node, slot);
2067 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
2068 node_tag_clear(root, node, tag, offset);
2069 } else {
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002070 root_tag_clear_all(root);
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002071 }
Matthew Wilcoxd604c322016-05-20 17:03:45 -07002072}
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074/**
2075 * radix_tree_tagged - test whether any items in the tree are tagged
2076 * @root: radix tree root
2077 * @tag: tag to test
2078 */
Matthew Wilcox35534c82016-12-19 17:43:19 -05002079int radix_tree_tagged(const struct radix_tree_root *root, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
Nick Piggin612d6c12006-06-23 02:03:22 -07002081 return root_tag_get(root, tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082}
2083EXPORT_SYMBOL(radix_tree_tagged);
2084
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002085/**
2086 * idr_preload - preload for idr_alloc()
2087 * @gfp_mask: allocation mask to use for preloading
2088 *
2089 * Preallocate memory to use for the next call to idr_alloc(). This function
2090 * returns with preemption disabled. It will be enabled by idr_preload_end().
2091 */
2092void idr_preload(gfp_t gfp_mask)
2093{
2094 __radix_tree_preload(gfp_mask, IDR_PRELOAD_SIZE);
2095}
2096EXPORT_SYMBOL(idr_preload);
2097
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -05002098/**
2099 * ida_pre_get - reserve resources for ida allocation
2100 * @ida: ida handle
2101 * @gfp: memory allocation flags
2102 *
2103 * This function should be called before calling ida_get_new_above(). If it
2104 * is unable to allocate memory, it will return %0. On success, it returns %1.
2105 */
2106int ida_pre_get(struct ida *ida, gfp_t gfp)
2107{
2108 __radix_tree_preload(gfp, IDA_PRELOAD_SIZE);
2109 /*
2110 * The IDA API has no preload_end() equivalent. Instead,
2111 * ida_get_new() can return -EAGAIN, prompting the caller
2112 * to return to the ida_pre_get() step.
2113 */
2114 preempt_enable();
2115
2116 if (!this_cpu_read(ida_bitmap)) {
2117 struct ida_bitmap *bitmap = kmalloc(sizeof(*bitmap), gfp);
2118 if (!bitmap)
2119 return 0;
2120 bitmap = this_cpu_cmpxchg(ida_bitmap, NULL, bitmap);
2121 kfree(bitmap);
2122 }
2123
2124 return 1;
2125}
2126EXPORT_SYMBOL(ida_pre_get);
2127
Matthew Wilcox0a835c42016-12-20 10:27:56 -05002128void **idr_get_free(struct radix_tree_root *root,
2129 struct radix_tree_iter *iter, gfp_t gfp, int end)
2130{
2131 struct radix_tree_node *node = NULL, *child;
2132 void **slot = (void **)&root->rnode;
2133 unsigned long maxindex, start = iter->next_index;
2134 unsigned long max = end > 0 ? end - 1 : INT_MAX;
2135 unsigned int shift, offset = 0;
2136
2137 grow:
2138 shift = radix_tree_load_root(root, &child, &maxindex);
2139 if (!radix_tree_tagged(root, IDR_FREE))
2140 start = max(start, maxindex + 1);
2141 if (start > max)
2142 return ERR_PTR(-ENOSPC);
2143
2144 if (start > maxindex) {
2145 int error = radix_tree_extend(root, gfp, start, shift);
2146 if (error < 0)
2147 return ERR_PTR(error);
2148 shift = error;
2149 child = rcu_dereference_raw(root->rnode);
2150 }
2151
2152 while (shift) {
2153 shift -= RADIX_TREE_MAP_SHIFT;
2154 if (child == NULL) {
2155 /* Have to add a child node. */
2156 child = radix_tree_node_alloc(gfp, node, shift, offset,
2157 0, 0);
2158 if (!child)
2159 return ERR_PTR(-ENOMEM);
2160 all_tag_set(child, IDR_FREE);
2161 rcu_assign_pointer(*slot, node_to_entry(child));
2162 if (node)
2163 node->count++;
2164 } else if (!radix_tree_is_internal_node(child))
2165 break;
2166
2167 node = entry_to_node(child);
2168 offset = radix_tree_descend(node, &child, start);
2169 if (!tag_get(node, IDR_FREE, offset)) {
2170 offset = radix_tree_find_next_bit(node, IDR_FREE,
2171 offset + 1);
2172 start = next_index(start, node, offset);
2173 if (start > max)
2174 return ERR_PTR(-ENOSPC);
2175 while (offset == RADIX_TREE_MAP_SIZE) {
2176 offset = node->offset + 1;
2177 node = node->parent;
2178 if (!node)
2179 goto grow;
2180 shift = node->shift;
2181 }
2182 child = rcu_dereference_raw(node->slots[offset]);
2183 }
2184 slot = &node->slots[offset];
2185 }
2186
2187 iter->index = start;
2188 if (node)
2189 iter->next_index = 1 + min(max, (start | node_maxindex(node)));
2190 else
2191 iter->next_index = 1;
2192 iter->node = node;
2193 __set_iter_shift(iter, shift);
2194 set_iter_tags(iter, node, offset, IDR_FREE);
2195
2196 return slot;
2197}
2198
2199/**
2200 * idr_destroy - release all internal memory from an IDR
2201 * @idr: idr handle
2202 *
2203 * After this function is called, the IDR is empty, and may be reused or
2204 * the data structure containing it may be freed.
2205 *
2206 * A typical clean-up sequence for objects stored in an idr tree will use
2207 * idr_for_each() to free all objects, if necessary, then idr_destroy() to
2208 * free the memory used to keep track of those objects.
2209 */
2210void idr_destroy(struct idr *idr)
2211{
2212 struct radix_tree_node *node = rcu_dereference_raw(idr->idr_rt.rnode);
2213 if (radix_tree_is_internal_node(node))
2214 radix_tree_free_nodes(node);
2215 idr->idr_rt.rnode = NULL;
2216 root_tag_set(&idr->idr_rt, IDR_FREE);
2217}
2218EXPORT_SYMBOL(idr_destroy);
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220static void
Johannes Weiner449dd692014-04-03 14:47:56 -07002221radix_tree_node_ctor(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222{
Johannes Weiner449dd692014-04-03 14:47:56 -07002223 struct radix_tree_node *node = arg;
2224
2225 memset(node, 0, sizeof(*node));
2226 INIT_LIST_HEAD(&node->private_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227}
2228
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -07002229static __init unsigned long __maxindex(unsigned int height)
2230{
2231 unsigned int width = height * RADIX_TREE_MAP_SHIFT;
2232 int shift = RADIX_TREE_INDEX_BITS - width;
2233
2234 if (shift < 0)
2235 return ~0UL;
2236 if (shift >= BITS_PER_LONG)
2237 return 0UL;
2238 return ~0UL >> shift;
2239}
2240
2241static __init void radix_tree_init_maxnodes(void)
2242{
2243 unsigned long height_to_maxindex[RADIX_TREE_MAX_PATH + 1];
2244 unsigned int i, j;
2245
2246 for (i = 0; i < ARRAY_SIZE(height_to_maxindex); i++)
2247 height_to_maxindex[i] = __maxindex(i);
2248 for (i = 0; i < ARRAY_SIZE(height_to_maxnodes); i++) {
2249 for (j = i; j > 0; j--)
2250 height_to_maxnodes[i] += height_to_maxindex[j - 1] + 1;
2251 }
2252}
2253
Sebastian Andrzej Siewiord544abd52016-11-03 15:50:01 +01002254static int radix_tree_cpu_dead(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07002256 struct radix_tree_preload *rtp;
2257 struct radix_tree_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07002259 /* Free per-cpu pool of preloaded nodes */
Sebastian Andrzej Siewiord544abd52016-11-03 15:50:01 +01002260 rtp = &per_cpu(radix_tree_preloads, cpu);
2261 while (rtp->nr) {
2262 node = rtp->nodes;
2263 rtp->nodes = node->private_data;
2264 kmem_cache_free(radix_tree_node_cachep, node);
2265 rtp->nr--;
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07002266 }
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -05002267 kfree(per_cpu(ida_bitmap, cpu));
2268 per_cpu(ida_bitmap, cpu) = NULL;
Sebastian Andrzej Siewiord544abd52016-11-03 15:50:01 +01002269 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
2272void __init radix_tree_init(void)
2273{
Sebastian Andrzej Siewiord544abd52016-11-03 15:50:01 +01002274 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 radix_tree_node_cachep = kmem_cache_create("radix_tree_node",
2276 sizeof(struct radix_tree_node), 0,
Christoph Lameter488514d2008-04-28 02:12:05 -07002277 SLAB_PANIC | SLAB_RECLAIM_ACCOUNT,
2278 radix_tree_node_ctor);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -07002279 radix_tree_init_maxnodes();
Sebastian Andrzej Siewiord544abd52016-11-03 15:50:01 +01002280 ret = cpuhp_setup_state_nocalls(CPUHP_RADIX_DEAD, "lib/radix:dead",
2281 NULL, radix_tree_cpu_dead);
2282 WARN_ON(ret < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283}