2 * Copyright (C) 2001 Momchil Velikov
3 * Portions Copyright (C) 2001 Christoph Hellwig
4 * Copyright (C) 2005 SGI, Christoph Lameter
5 * Copyright (C) 2006 Nick Piggin
6 * Copyright (C) 2012 Konstantin Khlebnikov
7 * Copyright (C) 2016 Intel, Matthew Wilcox
8 * Copyright (C) 2016 Intel, Ross Zwisler
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.
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.
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.
25 #include <linux/bitmap.h>
26 #include <linux/bitops.h>
27 #include <linux/bug.h>
28 #include <linux/cpu.h>
29 #include <linux/errno.h>
30 #include <linux/export.h>
31 #include <linux/idr.h>
32 #include <linux/init.h>
33 #include <linux/kernel.h>
34 #include <linux/kmemleak.h>
35 #include <linux/percpu.h>
36 #include <linux/preempt.h> /* in_interrupt() */
37 #include <linux/radix-tree.h>
38 #include <linux/rcupdate.h>
39 #include <linux/slab.h>
40 #include <linux/string.h>
41 #include <linux/xarray.h>
45 * Radix tree node cache.
47 struct kmem_cache
*radix_tree_node_cachep
;
50 * The radix tree is variable-height, so an insert operation not only has
51 * to build the branch to its corresponding item, it also has to build the
52 * branch to existing items if the size has to be increased (by
55 * The worst case is a zero height tree with just a single item at index 0,
56 * and then inserting an item at index ULONG_MAX. This requires 2 new branches
57 * of RADIX_TREE_MAX_PATH size to be created, with only the root node shared.
60 #define RADIX_TREE_PRELOAD_SIZE (RADIX_TREE_MAX_PATH * 2 - 1)
63 * The IDR does not have to be as high as the radix tree since it uses
64 * signed integers, not unsigned longs.
66 #define IDR_INDEX_BITS (8 /* CHAR_BIT */ * sizeof(int) - 1)
67 #define IDR_MAX_PATH (DIV_ROUND_UP(IDR_INDEX_BITS, \
68 RADIX_TREE_MAP_SHIFT))
69 #define IDR_PRELOAD_SIZE (IDR_MAX_PATH * 2 - 1)
72 * The IDA is even shorter since it uses a bitmap at the last level.
74 #define IDA_INDEX_BITS (8 * sizeof(int) - 1 - ilog2(IDA_BITMAP_BITS))
75 #define IDA_MAX_PATH (DIV_ROUND_UP(IDA_INDEX_BITS, \
76 RADIX_TREE_MAP_SHIFT))
77 #define IDA_PRELOAD_SIZE (IDA_MAX_PATH * 2 - 1)
80 * Per-cpu pool of preloaded nodes
82 struct radix_tree_preload
{
84 /* nodes->parent points to next preallocated node */
85 struct radix_tree_node
*nodes
;
87 static DEFINE_PER_CPU(struct radix_tree_preload
, radix_tree_preloads
) = { 0, };
89 static inline struct radix_tree_node
*entry_to_node(void *ptr
)
91 return (void *)((unsigned long)ptr
& ~RADIX_TREE_INTERNAL_NODE
);
94 static inline void *node_to_entry(void *ptr
)
96 return (void *)((unsigned long)ptr
| RADIX_TREE_INTERNAL_NODE
);
99 #define RADIX_TREE_RETRY XA_RETRY_ENTRY
101 static inline unsigned long
102 get_slot_offset(const struct radix_tree_node
*parent
, void __rcu
**slot
)
104 return parent
? slot
- parent
->slots
: 0;
107 static unsigned int radix_tree_descend(const struct radix_tree_node
*parent
,
108 struct radix_tree_node
**nodep
, unsigned long index
)
110 unsigned int offset
= (index
>> parent
->shift
) & RADIX_TREE_MAP_MASK
;
111 void __rcu
**entry
= rcu_dereference_raw(parent
->slots
[offset
]);
113 *nodep
= (void *)entry
;
117 static inline gfp_t
root_gfp_mask(const struct radix_tree_root
*root
)
119 return root
->xa_flags
& (__GFP_BITS_MASK
& ~GFP_ZONEMASK
);
122 static inline void tag_set(struct radix_tree_node
*node
, unsigned int tag
,
125 __set_bit(offset
, node
->tags
[tag
]);
128 static inline void tag_clear(struct radix_tree_node
*node
, unsigned int tag
,
131 __clear_bit(offset
, node
->tags
[tag
]);
134 static inline int tag_get(const struct radix_tree_node
*node
, unsigned int tag
,
137 return test_bit(offset
, node
->tags
[tag
]);
140 static inline void root_tag_set(struct radix_tree_root
*root
, unsigned tag
)
142 root
->xa_flags
|= (__force gfp_t
)(1 << (tag
+ ROOT_TAG_SHIFT
));
145 static inline void root_tag_clear(struct radix_tree_root
*root
, unsigned tag
)
147 root
->xa_flags
&= (__force gfp_t
)~(1 << (tag
+ ROOT_TAG_SHIFT
));
150 static inline void root_tag_clear_all(struct radix_tree_root
*root
)
152 root
->xa_flags
&= (__force gfp_t
)((1 << ROOT_TAG_SHIFT
) - 1);
155 static inline int root_tag_get(const struct radix_tree_root
*root
, unsigned tag
)
157 return (__force
int)root
->xa_flags
& (1 << (tag
+ ROOT_TAG_SHIFT
));
160 static inline unsigned root_tags_get(const struct radix_tree_root
*root
)
162 return (__force
unsigned)root
->xa_flags
>> ROOT_TAG_SHIFT
;
165 static inline bool is_idr(const struct radix_tree_root
*root
)
167 return !!(root
->xa_flags
& ROOT_IS_IDR
);
171 * Returns 1 if any slot in the node has this tag set.
172 * Otherwise returns 0.
174 static inline int any_tag_set(const struct radix_tree_node
*node
,
178 for (idx
= 0; idx
< RADIX_TREE_TAG_LONGS
; idx
++) {
179 if (node
->tags
[tag
][idx
])
185 static inline void all_tag_set(struct radix_tree_node
*node
, unsigned int tag
)
187 bitmap_fill(node
->tags
[tag
], RADIX_TREE_MAP_SIZE
);
191 * radix_tree_find_next_bit - find the next set bit in a memory region
193 * @addr: The address to base the search on
194 * @size: The bitmap size in bits
195 * @offset: The bitnumber to start searching at
197 * Unrollable variant of find_next_bit() for constant size arrays.
198 * Tail bits starting from size to roundup(size, BITS_PER_LONG) must be zero.
199 * Returns next bit offset, or size if nothing found.
201 static __always_inline
unsigned long
202 radix_tree_find_next_bit(struct radix_tree_node
*node
, unsigned int tag
,
203 unsigned long offset
)
205 const unsigned long *addr
= node
->tags
[tag
];
207 if (offset
< RADIX_TREE_MAP_SIZE
) {
210 addr
+= offset
/ BITS_PER_LONG
;
211 tmp
= *addr
>> (offset
% BITS_PER_LONG
);
213 return __ffs(tmp
) + offset
;
214 offset
= (offset
+ BITS_PER_LONG
) & ~(BITS_PER_LONG
- 1);
215 while (offset
< RADIX_TREE_MAP_SIZE
) {
218 return __ffs(tmp
) + offset
;
219 offset
+= BITS_PER_LONG
;
222 return RADIX_TREE_MAP_SIZE
;
225 static unsigned int iter_offset(const struct radix_tree_iter
*iter
)
227 return iter
->index
& RADIX_TREE_MAP_MASK
;
231 * The maximum index which can be stored in a radix tree
233 static inline unsigned long shift_maxindex(unsigned int shift
)
235 return (RADIX_TREE_MAP_SIZE
<< shift
) - 1;
238 static inline unsigned long node_maxindex(const struct radix_tree_node
*node
)
240 return shift_maxindex(node
->shift
);
243 static unsigned long next_index(unsigned long index
,
244 const struct radix_tree_node
*node
,
245 unsigned long offset
)
247 return (index
& ~node_maxindex(node
)) + (offset
<< node
->shift
);
251 * This assumes that the caller has performed appropriate preallocation, and
252 * that the caller has pinned this thread of control to the current CPU.
254 static struct radix_tree_node
*
255 radix_tree_node_alloc(gfp_t gfp_mask
, struct radix_tree_node
*parent
,
256 struct radix_tree_root
*root
,
257 unsigned int shift
, unsigned int offset
,
258 unsigned int count
, unsigned int nr_values
)
260 struct radix_tree_node
*ret
= NULL
;
263 * Preload code isn't irq safe and it doesn't make sense to use
264 * preloading during an interrupt anyway as all the allocations have
265 * to be atomic. So just do normal allocation when in interrupt.
267 if (!gfpflags_allow_blocking(gfp_mask
) && !in_interrupt()) {
268 struct radix_tree_preload
*rtp
;
271 * Even if the caller has preloaded, try to allocate from the
272 * cache first for the new node to get accounted to the memory
275 ret
= kmem_cache_alloc(radix_tree_node_cachep
,
276 gfp_mask
| __GFP_NOWARN
);
281 * Provided the caller has preloaded here, we will always
282 * succeed in getting a node here (and never reach
285 rtp
= this_cpu_ptr(&radix_tree_preloads
);
288 rtp
->nodes
= ret
->parent
;
292 * Update the allocation stack trace as this is more useful
295 kmemleak_update_trace(ret
);
298 ret
= kmem_cache_alloc(radix_tree_node_cachep
, gfp_mask
);
300 BUG_ON(radix_tree_is_internal_node(ret
));
303 ret
->offset
= offset
;
305 ret
->nr_values
= nr_values
;
306 ret
->parent
= parent
;
312 void radix_tree_node_rcu_free(struct rcu_head
*head
)
314 struct radix_tree_node
*node
=
315 container_of(head
, struct radix_tree_node
, rcu_head
);
318 * Must only free zeroed nodes into the slab. We can be left with
319 * non-NULL entries by radix_tree_free_nodes, so clear the entries
322 memset(node
->slots
, 0, sizeof(node
->slots
));
323 memset(node
->tags
, 0, sizeof(node
->tags
));
324 INIT_LIST_HEAD(&node
->private_list
);
326 kmem_cache_free(radix_tree_node_cachep
, node
);
330 radix_tree_node_free(struct radix_tree_node
*node
)
332 call_rcu(&node
->rcu_head
, radix_tree_node_rcu_free
);
336 * Load up this CPU's radix_tree_node buffer with sufficient objects to
337 * ensure that the addition of a single element in the tree cannot fail. On
338 * success, return zero, with preemption disabled. On error, return -ENOMEM
339 * with preemption not disabled.
341 * To make use of this facility, the radix tree must be initialised without
342 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
344 static __must_check
int __radix_tree_preload(gfp_t gfp_mask
, unsigned nr
)
346 struct radix_tree_preload
*rtp
;
347 struct radix_tree_node
*node
;
351 * Nodes preloaded by one cgroup can be be used by another cgroup, so
352 * they should never be accounted to any particular memory cgroup.
354 gfp_mask
&= ~__GFP_ACCOUNT
;
357 rtp
= this_cpu_ptr(&radix_tree_preloads
);
358 while (rtp
->nr
< nr
) {
360 node
= kmem_cache_alloc(radix_tree_node_cachep
, gfp_mask
);
364 rtp
= this_cpu_ptr(&radix_tree_preloads
);
366 node
->parent
= rtp
->nodes
;
370 kmem_cache_free(radix_tree_node_cachep
, node
);
379 * Load up this CPU's radix_tree_node buffer with sufficient objects to
380 * ensure that the addition of a single element in the tree cannot fail. On
381 * success, return zero, with preemption disabled. On error, return -ENOMEM
382 * with preemption not disabled.
384 * To make use of this facility, the radix tree must be initialised without
385 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
387 int radix_tree_preload(gfp_t gfp_mask
)
389 /* Warn on non-sensical use... */
390 WARN_ON_ONCE(!gfpflags_allow_blocking(gfp_mask
));
391 return __radix_tree_preload(gfp_mask
, RADIX_TREE_PRELOAD_SIZE
);
393 EXPORT_SYMBOL(radix_tree_preload
);
396 * The same as above function, except we don't guarantee preloading happens.
397 * We do it, if we decide it helps. On success, return zero with preemption
398 * disabled. On error, return -ENOMEM with preemption not disabled.
400 int radix_tree_maybe_preload(gfp_t gfp_mask
)
402 if (gfpflags_allow_blocking(gfp_mask
))
403 return __radix_tree_preload(gfp_mask
, RADIX_TREE_PRELOAD_SIZE
);
404 /* Preloading doesn't help anything with this gfp mask, skip it */
408 EXPORT_SYMBOL(radix_tree_maybe_preload
);
410 static unsigned radix_tree_load_root(const struct radix_tree_root
*root
,
411 struct radix_tree_node
**nodep
, unsigned long *maxindex
)
413 struct radix_tree_node
*node
= rcu_dereference_raw(root
->xa_head
);
417 if (likely(radix_tree_is_internal_node(node
))) {
418 node
= entry_to_node(node
);
419 *maxindex
= node_maxindex(node
);
420 return node
->shift
+ RADIX_TREE_MAP_SHIFT
;
428 * Extend a radix tree so it can store key @index.
430 static int radix_tree_extend(struct radix_tree_root
*root
, gfp_t gfp
,
431 unsigned long index
, unsigned int shift
)
434 unsigned int maxshift
;
437 /* Figure out what the shift should be. */
439 while (index
> shift_maxindex(maxshift
))
440 maxshift
+= RADIX_TREE_MAP_SHIFT
;
442 entry
= rcu_dereference_raw(root
->xa_head
);
443 if (!entry
&& (!is_idr(root
) || root_tag_get(root
, IDR_FREE
)))
447 struct radix_tree_node
*node
= radix_tree_node_alloc(gfp
, NULL
,
448 root
, shift
, 0, 1, 0);
453 all_tag_set(node
, IDR_FREE
);
454 if (!root_tag_get(root
, IDR_FREE
)) {
455 tag_clear(node
, IDR_FREE
, 0);
456 root_tag_set(root
, IDR_FREE
);
459 /* Propagate the aggregated tag info to the new child */
460 for (tag
= 0; tag
< RADIX_TREE_MAX_TAGS
; tag
++) {
461 if (root_tag_get(root
, tag
))
462 tag_set(node
, tag
, 0);
466 BUG_ON(shift
> BITS_PER_LONG
);
467 if (radix_tree_is_internal_node(entry
)) {
468 entry_to_node(entry
)->parent
= node
;
469 } else if (xa_is_value(entry
)) {
470 /* Moving a value entry root->xa_head to a node */
474 * entry was already in the radix tree, so we do not need
475 * rcu_assign_pointer here
477 node
->slots
[0] = (void __rcu
*)entry
;
478 entry
= node_to_entry(node
);
479 rcu_assign_pointer(root
->xa_head
, entry
);
480 shift
+= RADIX_TREE_MAP_SHIFT
;
481 } while (shift
<= maxshift
);
483 return maxshift
+ RADIX_TREE_MAP_SHIFT
;
487 * radix_tree_shrink - shrink radix tree to minimum height
488 * @root radix tree root
490 static inline bool radix_tree_shrink(struct radix_tree_root
*root
)
495 struct radix_tree_node
*node
= rcu_dereference_raw(root
->xa_head
);
496 struct radix_tree_node
*child
;
498 if (!radix_tree_is_internal_node(node
))
500 node
= entry_to_node(node
);
503 * The candidate node has more than one child, or its child
504 * is not at the leftmost slot, we cannot shrink.
506 if (node
->count
!= 1)
508 child
= rcu_dereference_raw(node
->slots
[0]);
513 * For an IDR, we must not shrink entry 0 into the root in
514 * case somebody calls idr_replace() with a pointer that
515 * appears to be an internal entry
517 if (!node
->shift
&& is_idr(root
))
520 if (radix_tree_is_internal_node(child
))
521 entry_to_node(child
)->parent
= NULL
;
524 * We don't need rcu_assign_pointer(), since we are simply
525 * moving the node from one part of the tree to another: if it
526 * was safe to dereference the old pointer to it
527 * (node->slots[0]), it will be safe to dereference the new
528 * one (root->xa_head) as far as dependent read barriers go.
530 root
->xa_head
= (void __rcu
*)child
;
531 if (is_idr(root
) && !tag_get(node
, IDR_FREE
, 0))
532 root_tag_clear(root
, IDR_FREE
);
535 * We have a dilemma here. The node's slot[0] must not be
536 * NULLed in case there are concurrent lookups expecting to
537 * find the item. However if this was a bottom-level node,
538 * then it may be subject to the slot pointer being visible
539 * to callers dereferencing it. If item corresponding to
540 * slot[0] is subsequently deleted, these callers would expect
541 * their slot to become empty sooner or later.
543 * For example, lockless pagecache will look up a slot, deref
544 * the page pointer, and if the page has 0 refcount it means it
545 * was concurrently deleted from pagecache so try the deref
546 * again. Fortunately there is already a requirement for logic
547 * to retry the entire slot lookup -- the indirect pointer
548 * problem (replacing direct root node with an indirect pointer
549 * also results in a stale slot). So tag the slot as indirect
550 * to force callers to retry.
553 if (!radix_tree_is_internal_node(child
)) {
554 node
->slots
[0] = (void __rcu
*)RADIX_TREE_RETRY
;
557 WARN_ON_ONCE(!list_empty(&node
->private_list
));
558 radix_tree_node_free(node
);
565 static bool delete_node(struct radix_tree_root
*root
,
566 struct radix_tree_node
*node
)
568 bool deleted
= false;
571 struct radix_tree_node
*parent
;
574 if (node_to_entry(node
) ==
575 rcu_dereference_raw(root
->xa_head
))
576 deleted
|= radix_tree_shrink(root
);
580 parent
= node
->parent
;
582 parent
->slots
[node
->offset
] = NULL
;
586 * Shouldn't the tags already have all been cleared
590 root_tag_clear_all(root
);
591 root
->xa_head
= NULL
;
594 WARN_ON_ONCE(!list_empty(&node
->private_list
));
595 radix_tree_node_free(node
);
605 * __radix_tree_create - create a slot in a radix tree
606 * @root: radix tree root
608 * @nodep: returns node
609 * @slotp: returns slot
611 * Create, if necessary, and return the node and slot for an item
612 * at position @index in the radix tree @root.
614 * Until there is more than one item in the tree, no nodes are
615 * allocated and @root->xa_head is used as a direct slot instead of
616 * pointing to a node, in which case *@nodep will be NULL.
618 * Returns -ENOMEM, or 0 for success.
620 static int __radix_tree_create(struct radix_tree_root
*root
,
621 unsigned long index
, struct radix_tree_node
**nodep
,
624 struct radix_tree_node
*node
= NULL
, *child
;
625 void __rcu
**slot
= (void __rcu
**)&root
->xa_head
;
626 unsigned long maxindex
;
627 unsigned int shift
, offset
= 0;
628 unsigned long max
= index
;
629 gfp_t gfp
= root_gfp_mask(root
);
631 shift
= radix_tree_load_root(root
, &child
, &maxindex
);
633 /* Make sure the tree is high enough. */
634 if (max
> maxindex
) {
635 int error
= radix_tree_extend(root
, gfp
, max
, shift
);
639 child
= rcu_dereference_raw(root
->xa_head
);
643 shift
-= RADIX_TREE_MAP_SHIFT
;
645 /* Have to add a child node. */
646 child
= radix_tree_node_alloc(gfp
, node
, root
, shift
,
650 rcu_assign_pointer(*slot
, node_to_entry(child
));
653 } else if (!radix_tree_is_internal_node(child
))
656 /* Go a level down */
657 node
= entry_to_node(child
);
658 offset
= radix_tree_descend(node
, &child
, index
);
659 slot
= &node
->slots
[offset
];
670 * Free any nodes below this node. The tree is presumed to not need
671 * shrinking, and any user data in the tree is presumed to not need a
672 * destructor called on it. If we need to add a destructor, we can
673 * add that functionality later. Note that we may not clear tags or
674 * slots from the tree as an RCU walker may still have a pointer into
675 * this subtree. We could replace the entries with RADIX_TREE_RETRY,
676 * but we'll still have to clear those in rcu_free.
678 static void radix_tree_free_nodes(struct radix_tree_node
*node
)
681 struct radix_tree_node
*child
= entry_to_node(node
);
684 void *entry
= rcu_dereference_raw(child
->slots
[offset
]);
685 if (xa_is_node(entry
) && child
->shift
) {
686 child
= entry_to_node(entry
);
691 while (offset
== RADIX_TREE_MAP_SIZE
) {
692 struct radix_tree_node
*old
= child
;
693 offset
= child
->offset
+ 1;
694 child
= child
->parent
;
695 WARN_ON_ONCE(!list_empty(&old
->private_list
));
696 radix_tree_node_free(old
);
697 if (old
== entry_to_node(node
))
703 static inline int insert_entries(struct radix_tree_node
*node
,
704 void __rcu
**slot
, void *item
, bool replace
)
708 rcu_assign_pointer(*slot
, item
);
711 if (xa_is_value(item
))
718 * __radix_tree_insert - insert into a radix tree
719 * @root: radix tree root
721 * @item: item to insert
723 * Insert an item into the radix tree at position @index.
725 int radix_tree_insert(struct radix_tree_root
*root
, unsigned long index
,
728 struct radix_tree_node
*node
;
732 BUG_ON(radix_tree_is_internal_node(item
));
734 error
= __radix_tree_create(root
, index
, &node
, &slot
);
738 error
= insert_entries(node
, slot
, item
, false);
743 unsigned offset
= get_slot_offset(node
, slot
);
744 BUG_ON(tag_get(node
, 0, offset
));
745 BUG_ON(tag_get(node
, 1, offset
));
746 BUG_ON(tag_get(node
, 2, offset
));
748 BUG_ON(root_tags_get(root
));
753 EXPORT_SYMBOL(radix_tree_insert
);
756 * __radix_tree_lookup - lookup an item in a radix tree
757 * @root: radix tree root
759 * @nodep: returns node
760 * @slotp: returns slot
762 * Lookup and return the item at position @index in the radix
765 * Until there is more than one item in the tree, no nodes are
766 * allocated and @root->xa_head is used as a direct slot instead of
767 * pointing to a node, in which case *@nodep will be NULL.
769 void *__radix_tree_lookup(const struct radix_tree_root
*root
,
770 unsigned long index
, struct radix_tree_node
**nodep
,
773 struct radix_tree_node
*node
, *parent
;
774 unsigned long maxindex
;
779 slot
= (void __rcu
**)&root
->xa_head
;
780 radix_tree_load_root(root
, &node
, &maxindex
);
781 if (index
> maxindex
)
784 while (radix_tree_is_internal_node(node
)) {
787 parent
= entry_to_node(node
);
788 offset
= radix_tree_descend(parent
, &node
, index
);
789 slot
= parent
->slots
+ offset
;
790 if (node
== RADIX_TREE_RETRY
)
792 if (parent
->shift
== 0)
804 * radix_tree_lookup_slot - lookup a slot in a radix tree
805 * @root: radix tree root
808 * Returns: the slot corresponding to the position @index in the
809 * radix tree @root. This is useful for update-if-exists operations.
811 * This function can be called under rcu_read_lock iff the slot is not
812 * modified by radix_tree_replace_slot, otherwise it must be called
813 * exclusive from other writers. Any dereference of the slot must be done
814 * using radix_tree_deref_slot.
816 void __rcu
**radix_tree_lookup_slot(const struct radix_tree_root
*root
,
821 if (!__radix_tree_lookup(root
, index
, NULL
, &slot
))
825 EXPORT_SYMBOL(radix_tree_lookup_slot
);
828 * radix_tree_lookup - perform lookup operation on a radix tree
829 * @root: radix tree root
832 * Lookup the item at the position @index in the radix tree @root.
834 * This function can be called under rcu_read_lock, however the caller
835 * must manage lifetimes of leaf nodes (eg. RCU may also be used to free
836 * them safely). No RCU barriers are required to access or modify the
837 * returned item, however.
839 void *radix_tree_lookup(const struct radix_tree_root
*root
, unsigned long index
)
841 return __radix_tree_lookup(root
, index
, NULL
, NULL
);
843 EXPORT_SYMBOL(radix_tree_lookup
);
845 static void replace_slot(void __rcu
**slot
, void *item
,
846 struct radix_tree_node
*node
, int count
, int values
)
848 if (node
&& (count
|| values
)) {
849 node
->count
+= count
;
850 node
->nr_values
+= values
;
853 rcu_assign_pointer(*slot
, item
);
856 static bool node_tag_get(const struct radix_tree_root
*root
,
857 const struct radix_tree_node
*node
,
858 unsigned int tag
, unsigned int offset
)
861 return tag_get(node
, tag
, offset
);
862 return root_tag_get(root
, tag
);
866 * IDR users want to be able to store NULL in the tree, so if the slot isn't
867 * free, don't adjust the count, even if it's transitioning between NULL and
868 * non-NULL. For the IDA, we mark slots as being IDR_FREE while they still
869 * have empty bits, but it only stores NULL in slots when they're being
872 static int calculate_count(struct radix_tree_root
*root
,
873 struct radix_tree_node
*node
, void __rcu
**slot
,
874 void *item
, void *old
)
877 unsigned offset
= get_slot_offset(node
, slot
);
878 bool free
= node_tag_get(root
, node
, IDR_FREE
, offset
);
884 return !!item
- !!old
;
888 * __radix_tree_replace - replace item in a slot
889 * @root: radix tree root
890 * @node: pointer to tree node
891 * @slot: pointer to slot in @node
892 * @item: new item to store in the slot.
894 * For use with __radix_tree_lookup(). Caller must hold tree write locked
895 * across slot lookup and replacement.
897 void __radix_tree_replace(struct radix_tree_root
*root
,
898 struct radix_tree_node
*node
,
899 void __rcu
**slot
, void *item
)
901 void *old
= rcu_dereference_raw(*slot
);
902 int values
= !!xa_is_value(item
) - !!xa_is_value(old
);
903 int count
= calculate_count(root
, node
, slot
, item
, old
);
906 * This function supports replacing value entries and
907 * deleting entries, but that needs accounting against the
908 * node unless the slot is root->xa_head.
910 WARN_ON_ONCE(!node
&& (slot
!= (void __rcu
**)&root
->xa_head
) &&
912 replace_slot(slot
, item
, node
, count
, values
);
917 delete_node(root
, node
);
921 * radix_tree_replace_slot - replace item in a slot
922 * @root: radix tree root
923 * @slot: pointer to slot
924 * @item: new item to store in the slot.
926 * For use with radix_tree_lookup_slot() and
927 * radix_tree_gang_lookup_tag_slot(). Caller must hold tree write locked
928 * across slot lookup and replacement.
930 * NOTE: This cannot be used to switch between non-entries (empty slots),
931 * regular entries, and value entries, as that requires accounting
932 * inside the radix tree node. When switching from one type of entry or
933 * deleting, use __radix_tree_lookup() and __radix_tree_replace() or
934 * radix_tree_iter_replace().
936 void radix_tree_replace_slot(struct radix_tree_root
*root
,
937 void __rcu
**slot
, void *item
)
939 __radix_tree_replace(root
, NULL
, slot
, item
);
941 EXPORT_SYMBOL(radix_tree_replace_slot
);
944 * radix_tree_iter_replace - replace item in a slot
945 * @root: radix tree root
946 * @slot: pointer to slot
947 * @item: new item to store in the slot.
949 * For use with radix_tree_for_each_slot().
950 * Caller must hold tree write locked.
952 void radix_tree_iter_replace(struct radix_tree_root
*root
,
953 const struct radix_tree_iter
*iter
,
954 void __rcu
**slot
, void *item
)
956 __radix_tree_replace(root
, iter
->node
, slot
, item
);
959 static void node_tag_set(struct radix_tree_root
*root
,
960 struct radix_tree_node
*node
,
961 unsigned int tag
, unsigned int offset
)
964 if (tag_get(node
, tag
, offset
))
966 tag_set(node
, tag
, offset
);
967 offset
= node
->offset
;
971 if (!root_tag_get(root
, tag
))
972 root_tag_set(root
, tag
);
976 * radix_tree_tag_set - set a tag on a radix tree node
977 * @root: radix tree root
981 * Set the search tag (which must be < RADIX_TREE_MAX_TAGS)
982 * corresponding to @index in the radix tree. From
983 * the root all the way down to the leaf node.
985 * Returns the address of the tagged item. Setting a tag on a not-present
988 void *radix_tree_tag_set(struct radix_tree_root
*root
,
989 unsigned long index
, unsigned int tag
)
991 struct radix_tree_node
*node
, *parent
;
992 unsigned long maxindex
;
994 radix_tree_load_root(root
, &node
, &maxindex
);
995 BUG_ON(index
> maxindex
);
997 while (radix_tree_is_internal_node(node
)) {
1000 parent
= entry_to_node(node
);
1001 offset
= radix_tree_descend(parent
, &node
, index
);
1004 if (!tag_get(parent
, tag
, offset
))
1005 tag_set(parent
, tag
, offset
);
1008 /* set the root's tag bit */
1009 if (!root_tag_get(root
, tag
))
1010 root_tag_set(root
, tag
);
1014 EXPORT_SYMBOL(radix_tree_tag_set
);
1016 static void node_tag_clear(struct radix_tree_root
*root
,
1017 struct radix_tree_node
*node
,
1018 unsigned int tag
, unsigned int offset
)
1021 if (!tag_get(node
, tag
, offset
))
1023 tag_clear(node
, tag
, offset
);
1024 if (any_tag_set(node
, tag
))
1027 offset
= node
->offset
;
1028 node
= node
->parent
;
1031 /* clear the root's tag bit */
1032 if (root_tag_get(root
, tag
))
1033 root_tag_clear(root
, tag
);
1037 * radix_tree_tag_clear - clear a tag on a radix tree node
1038 * @root: radix tree root
1042 * Clear the search tag (which must be < RADIX_TREE_MAX_TAGS)
1043 * corresponding to @index in the radix tree. If this causes
1044 * the leaf node to have no tags set then clear the tag in the
1045 * next-to-leaf node, etc.
1047 * Returns the address of the tagged item on success, else NULL. ie:
1048 * has the same return value and semantics as radix_tree_lookup().
1050 void *radix_tree_tag_clear(struct radix_tree_root
*root
,
1051 unsigned long index
, unsigned int tag
)
1053 struct radix_tree_node
*node
, *parent
;
1054 unsigned long maxindex
;
1055 int uninitialized_var(offset
);
1057 radix_tree_load_root(root
, &node
, &maxindex
);
1058 if (index
> maxindex
)
1063 while (radix_tree_is_internal_node(node
)) {
1064 parent
= entry_to_node(node
);
1065 offset
= radix_tree_descend(parent
, &node
, index
);
1069 node_tag_clear(root
, parent
, tag
, offset
);
1073 EXPORT_SYMBOL(radix_tree_tag_clear
);
1076 * radix_tree_iter_tag_clear - clear a tag on the current iterator entry
1077 * @root: radix tree root
1078 * @iter: iterator state
1079 * @tag: tag to clear
1081 void radix_tree_iter_tag_clear(struct radix_tree_root
*root
,
1082 const struct radix_tree_iter
*iter
, unsigned int tag
)
1084 node_tag_clear(root
, iter
->node
, tag
, iter_offset(iter
));
1088 * radix_tree_tag_get - get a tag on a radix tree node
1089 * @root: radix tree root
1091 * @tag: tag index (< RADIX_TREE_MAX_TAGS)
1095 * 0: tag not present or not set
1098 * Note that the return value of this function may not be relied on, even if
1099 * the RCU lock is held, unless tag modification and node deletion are excluded
1102 int radix_tree_tag_get(const struct radix_tree_root
*root
,
1103 unsigned long index
, unsigned int tag
)
1105 struct radix_tree_node
*node
, *parent
;
1106 unsigned long maxindex
;
1108 if (!root_tag_get(root
, tag
))
1111 radix_tree_load_root(root
, &node
, &maxindex
);
1112 if (index
> maxindex
)
1115 while (radix_tree_is_internal_node(node
)) {
1118 parent
= entry_to_node(node
);
1119 offset
= radix_tree_descend(parent
, &node
, index
);
1121 if (!tag_get(parent
, tag
, offset
))
1123 if (node
== RADIX_TREE_RETRY
)
1129 EXPORT_SYMBOL(radix_tree_tag_get
);
1131 /* Construct iter->tags bit-mask from node->tags[tag] array */
1132 static void set_iter_tags(struct radix_tree_iter
*iter
,
1133 struct radix_tree_node
*node
, unsigned offset
,
1136 unsigned tag_long
= offset
/ BITS_PER_LONG
;
1137 unsigned tag_bit
= offset
% BITS_PER_LONG
;
1144 iter
->tags
= node
->tags
[tag
][tag_long
] >> tag_bit
;
1146 /* This never happens if RADIX_TREE_TAG_LONGS == 1 */
1147 if (tag_long
< RADIX_TREE_TAG_LONGS
- 1) {
1148 /* Pick tags from next element */
1150 iter
->tags
|= node
->tags
[tag
][tag_long
+ 1] <<
1151 (BITS_PER_LONG
- tag_bit
);
1152 /* Clip chunk size, here only BITS_PER_LONG tags */
1153 iter
->next_index
= __radix_tree_iter_add(iter
, BITS_PER_LONG
);
1157 void __rcu
**radix_tree_iter_resume(void __rcu
**slot
,
1158 struct radix_tree_iter
*iter
)
1161 iter
->index
= __radix_tree_iter_add(iter
, 1);
1162 iter
->next_index
= iter
->index
;
1166 EXPORT_SYMBOL(radix_tree_iter_resume
);
1169 * radix_tree_next_chunk - find next chunk of slots for iteration
1171 * @root: radix tree root
1172 * @iter: iterator state
1173 * @flags: RADIX_TREE_ITER_* flags and tag index
1174 * Returns: pointer to chunk first slot, or NULL if iteration is over
1176 void __rcu
**radix_tree_next_chunk(const struct radix_tree_root
*root
,
1177 struct radix_tree_iter
*iter
, unsigned flags
)
1179 unsigned tag
= flags
& RADIX_TREE_ITER_TAG_MASK
;
1180 struct radix_tree_node
*node
, *child
;
1181 unsigned long index
, offset
, maxindex
;
1183 if ((flags
& RADIX_TREE_ITER_TAGGED
) && !root_tag_get(root
, tag
))
1187 * Catch next_index overflow after ~0UL. iter->index never overflows
1188 * during iterating; it can be zero only at the beginning.
1189 * And we cannot overflow iter->next_index in a single step,
1190 * because RADIX_TREE_MAP_SHIFT < BITS_PER_LONG.
1192 * This condition also used by radix_tree_next_slot() to stop
1193 * contiguous iterating, and forbid switching to the next chunk.
1195 index
= iter
->next_index
;
1196 if (!index
&& iter
->index
)
1200 radix_tree_load_root(root
, &child
, &maxindex
);
1201 if (index
> maxindex
)
1206 if (!radix_tree_is_internal_node(child
)) {
1207 /* Single-slot tree */
1208 iter
->index
= index
;
1209 iter
->next_index
= maxindex
+ 1;
1212 return (void __rcu
**)&root
->xa_head
;
1216 node
= entry_to_node(child
);
1217 offset
= radix_tree_descend(node
, &child
, index
);
1219 if ((flags
& RADIX_TREE_ITER_TAGGED
) ?
1220 !tag_get(node
, tag
, offset
) : !child
) {
1222 if (flags
& RADIX_TREE_ITER_CONTIG
)
1225 if (flags
& RADIX_TREE_ITER_TAGGED
)
1226 offset
= radix_tree_find_next_bit(node
, tag
,
1229 while (++offset
< RADIX_TREE_MAP_SIZE
) {
1230 void *slot
= rcu_dereference_raw(
1231 node
->slots
[offset
]);
1235 index
&= ~node_maxindex(node
);
1236 index
+= offset
<< node
->shift
;
1237 /* Overflow after ~0UL */
1240 if (offset
== RADIX_TREE_MAP_SIZE
)
1242 child
= rcu_dereference_raw(node
->slots
[offset
]);
1247 if (child
== RADIX_TREE_RETRY
)
1249 } while (node
->shift
&& radix_tree_is_internal_node(child
));
1251 /* Update the iterator state */
1252 iter
->index
= (index
&~ node_maxindex(node
)) | offset
;
1253 iter
->next_index
= (index
| node_maxindex(node
)) + 1;
1256 if (flags
& RADIX_TREE_ITER_TAGGED
)
1257 set_iter_tags(iter
, node
, offset
, tag
);
1259 return node
->slots
+ offset
;
1261 EXPORT_SYMBOL(radix_tree_next_chunk
);
1264 * radix_tree_gang_lookup - perform multiple lookup on a radix tree
1265 * @root: radix tree root
1266 * @results: where the results of the lookup are placed
1267 * @first_index: start the lookup from this key
1268 * @max_items: place up to this many items at *results
1270 * Performs an index-ascending scan of the tree for present items. Places
1271 * them at *@results and returns the number of items which were placed at
1274 * The implementation is naive.
1276 * Like radix_tree_lookup, radix_tree_gang_lookup may be called under
1277 * rcu_read_lock. In this case, rather than the returned results being
1278 * an atomic snapshot of the tree at a single point in time, the
1279 * semantics of an RCU protected gang lookup are as though multiple
1280 * radix_tree_lookups have been issued in individual locks, and results
1281 * stored in 'results'.
1284 radix_tree_gang_lookup(const struct radix_tree_root
*root
, void **results
,
1285 unsigned long first_index
, unsigned int max_items
)
1287 struct radix_tree_iter iter
;
1289 unsigned int ret
= 0;
1291 if (unlikely(!max_items
))
1294 radix_tree_for_each_slot(slot
, root
, &iter
, first_index
) {
1295 results
[ret
] = rcu_dereference_raw(*slot
);
1298 if (radix_tree_is_internal_node(results
[ret
])) {
1299 slot
= radix_tree_iter_retry(&iter
);
1302 if (++ret
== max_items
)
1308 EXPORT_SYMBOL(radix_tree_gang_lookup
);
1311 * radix_tree_gang_lookup_tag - perform multiple lookup on a radix tree
1313 * @root: radix tree root
1314 * @results: where the results of the lookup are placed
1315 * @first_index: start the lookup from this key
1316 * @max_items: place up to this many items at *results
1317 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
1319 * Performs an index-ascending scan of the tree for present items which
1320 * have the tag indexed by @tag set. Places the items at *@results and
1321 * returns the number of items which were placed at *@results.
1324 radix_tree_gang_lookup_tag(const struct radix_tree_root
*root
, void **results
,
1325 unsigned long first_index
, unsigned int max_items
,
1328 struct radix_tree_iter iter
;
1330 unsigned int ret
= 0;
1332 if (unlikely(!max_items
))
1335 radix_tree_for_each_tagged(slot
, root
, &iter
, first_index
, tag
) {
1336 results
[ret
] = rcu_dereference_raw(*slot
);
1339 if (radix_tree_is_internal_node(results
[ret
])) {
1340 slot
= radix_tree_iter_retry(&iter
);
1343 if (++ret
== max_items
)
1349 EXPORT_SYMBOL(radix_tree_gang_lookup_tag
);
1352 * radix_tree_gang_lookup_tag_slot - perform multiple slot lookup on a
1353 * radix tree based on a tag
1354 * @root: radix tree root
1355 * @results: where the results of the lookup are placed
1356 * @first_index: start the lookup from this key
1357 * @max_items: place up to this many items at *results
1358 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
1360 * Performs an index-ascending scan of the tree for present items which
1361 * have the tag indexed by @tag set. Places the slots at *@results and
1362 * returns the number of slots which were placed at *@results.
1365 radix_tree_gang_lookup_tag_slot(const struct radix_tree_root
*root
,
1366 void __rcu
***results
, unsigned long first_index
,
1367 unsigned int max_items
, unsigned int tag
)
1369 struct radix_tree_iter iter
;
1371 unsigned int ret
= 0;
1373 if (unlikely(!max_items
))
1376 radix_tree_for_each_tagged(slot
, root
, &iter
, first_index
, tag
) {
1377 results
[ret
] = slot
;
1378 if (++ret
== max_items
)
1384 EXPORT_SYMBOL(radix_tree_gang_lookup_tag_slot
);
1386 static bool __radix_tree_delete(struct radix_tree_root
*root
,
1387 struct radix_tree_node
*node
, void __rcu
**slot
)
1389 void *old
= rcu_dereference_raw(*slot
);
1390 int values
= xa_is_value(old
) ? -1 : 0;
1391 unsigned offset
= get_slot_offset(node
, slot
);
1395 node_tag_set(root
, node
, IDR_FREE
, offset
);
1397 for (tag
= 0; tag
< RADIX_TREE_MAX_TAGS
; tag
++)
1398 node_tag_clear(root
, node
, tag
, offset
);
1400 replace_slot(slot
, NULL
, node
, -1, values
);
1401 return node
&& delete_node(root
, node
);
1405 * radix_tree_iter_delete - delete the entry at this iterator position
1406 * @root: radix tree root
1407 * @iter: iterator state
1408 * @slot: pointer to slot
1410 * Delete the entry at the position currently pointed to by the iterator.
1411 * This may result in the current node being freed; if it is, the iterator
1412 * is advanced so that it will not reference the freed memory. This
1413 * function may be called without any locking if there are no other threads
1414 * which can access this tree.
1416 void radix_tree_iter_delete(struct radix_tree_root
*root
,
1417 struct radix_tree_iter
*iter
, void __rcu
**slot
)
1419 if (__radix_tree_delete(root
, iter
->node
, slot
))
1420 iter
->index
= iter
->next_index
;
1422 EXPORT_SYMBOL(radix_tree_iter_delete
);
1425 * radix_tree_delete_item - delete an item from a radix tree
1426 * @root: radix tree root
1428 * @item: expected item
1430 * Remove @item at @index from the radix tree rooted at @root.
1432 * Return: the deleted entry, or %NULL if it was not present
1433 * or the entry at the given @index was not @item.
1435 void *radix_tree_delete_item(struct radix_tree_root
*root
,
1436 unsigned long index
, void *item
)
1438 struct radix_tree_node
*node
= NULL
;
1439 void __rcu
**slot
= NULL
;
1442 entry
= __radix_tree_lookup(root
, index
, &node
, &slot
);
1445 if (!entry
&& (!is_idr(root
) || node_tag_get(root
, node
, IDR_FREE
,
1446 get_slot_offset(node
, slot
))))
1449 if (item
&& entry
!= item
)
1452 __radix_tree_delete(root
, node
, slot
);
1456 EXPORT_SYMBOL(radix_tree_delete_item
);
1459 * radix_tree_delete - delete an entry from a radix tree
1460 * @root: radix tree root
1463 * Remove the entry at @index from the radix tree rooted at @root.
1465 * Return: The deleted entry, or %NULL if it was not present.
1467 void *radix_tree_delete(struct radix_tree_root
*root
, unsigned long index
)
1469 return radix_tree_delete_item(root
, index
, NULL
);
1471 EXPORT_SYMBOL(radix_tree_delete
);
1474 * radix_tree_tagged - test whether any items in the tree are tagged
1475 * @root: radix tree root
1478 int radix_tree_tagged(const struct radix_tree_root
*root
, unsigned int tag
)
1480 return root_tag_get(root
, tag
);
1482 EXPORT_SYMBOL(radix_tree_tagged
);
1485 * idr_preload - preload for idr_alloc()
1486 * @gfp_mask: allocation mask to use for preloading
1488 * Preallocate memory to use for the next call to idr_alloc(). This function
1489 * returns with preemption disabled. It will be enabled by idr_preload_end().
1491 void idr_preload(gfp_t gfp_mask
)
1493 if (__radix_tree_preload(gfp_mask
, IDR_PRELOAD_SIZE
))
1496 EXPORT_SYMBOL(idr_preload
);
1498 void __rcu
**idr_get_free(struct radix_tree_root
*root
,
1499 struct radix_tree_iter
*iter
, gfp_t gfp
,
1502 struct radix_tree_node
*node
= NULL
, *child
;
1503 void __rcu
**slot
= (void __rcu
**)&root
->xa_head
;
1504 unsigned long maxindex
, start
= iter
->next_index
;
1505 unsigned int shift
, offset
= 0;
1508 shift
= radix_tree_load_root(root
, &child
, &maxindex
);
1509 if (!radix_tree_tagged(root
, IDR_FREE
))
1510 start
= max(start
, maxindex
+ 1);
1512 return ERR_PTR(-ENOSPC
);
1514 if (start
> maxindex
) {
1515 int error
= radix_tree_extend(root
, gfp
, start
, shift
);
1517 return ERR_PTR(error
);
1519 child
= rcu_dereference_raw(root
->xa_head
);
1521 if (start
== 0 && shift
== 0)
1522 shift
= RADIX_TREE_MAP_SHIFT
;
1525 shift
-= RADIX_TREE_MAP_SHIFT
;
1526 if (child
== NULL
) {
1527 /* Have to add a child node. */
1528 child
= radix_tree_node_alloc(gfp
, node
, root
, shift
,
1531 return ERR_PTR(-ENOMEM
);
1532 all_tag_set(child
, IDR_FREE
);
1533 rcu_assign_pointer(*slot
, node_to_entry(child
));
1536 } else if (!radix_tree_is_internal_node(child
))
1539 node
= entry_to_node(child
);
1540 offset
= radix_tree_descend(node
, &child
, start
);
1541 if (!tag_get(node
, IDR_FREE
, offset
)) {
1542 offset
= radix_tree_find_next_bit(node
, IDR_FREE
,
1544 start
= next_index(start
, node
, offset
);
1546 return ERR_PTR(-ENOSPC
);
1547 while (offset
== RADIX_TREE_MAP_SIZE
) {
1548 offset
= node
->offset
+ 1;
1549 node
= node
->parent
;
1552 shift
= node
->shift
;
1554 child
= rcu_dereference_raw(node
->slots
[offset
]);
1556 slot
= &node
->slots
[offset
];
1559 iter
->index
= start
;
1561 iter
->next_index
= 1 + min(max
, (start
| node_maxindex(node
)));
1563 iter
->next_index
= 1;
1565 set_iter_tags(iter
, node
, offset
, IDR_FREE
);
1571 * idr_destroy - release all internal memory from an IDR
1574 * After this function is called, the IDR is empty, and may be reused or
1575 * the data structure containing it may be freed.
1577 * A typical clean-up sequence for objects stored in an idr tree will use
1578 * idr_for_each() to free all objects, if necessary, then idr_destroy() to
1579 * free the memory used to keep track of those objects.
1581 void idr_destroy(struct idr
*idr
)
1583 struct radix_tree_node
*node
= rcu_dereference_raw(idr
->idr_rt
.xa_head
);
1584 if (radix_tree_is_internal_node(node
))
1585 radix_tree_free_nodes(node
);
1586 idr
->idr_rt
.xa_head
= NULL
;
1587 root_tag_set(&idr
->idr_rt
, IDR_FREE
);
1589 EXPORT_SYMBOL(idr_destroy
);
1592 radix_tree_node_ctor(void *arg
)
1594 struct radix_tree_node
*node
= arg
;
1596 memset(node
, 0, sizeof(*node
));
1597 INIT_LIST_HEAD(&node
->private_list
);
1600 static int radix_tree_cpu_dead(unsigned int cpu
)
1602 struct radix_tree_preload
*rtp
;
1603 struct radix_tree_node
*node
;
1605 /* Free per-cpu pool of preloaded nodes */
1606 rtp
= &per_cpu(radix_tree_preloads
, cpu
);
1609 rtp
->nodes
= node
->parent
;
1610 kmem_cache_free(radix_tree_node_cachep
, node
);
1616 void __init
radix_tree_init(void)
1620 BUILD_BUG_ON(RADIX_TREE_MAX_TAGS
+ __GFP_BITS_SHIFT
> 32);
1621 BUILD_BUG_ON(ROOT_IS_IDR
& ~GFP_ZONEMASK
);
1622 BUILD_BUG_ON(XA_CHUNK_SIZE
> 255);
1623 radix_tree_node_cachep
= kmem_cache_create("radix_tree_node",
1624 sizeof(struct radix_tree_node
), 0,
1625 SLAB_PANIC
| SLAB_RECLAIM_ACCOUNT
,
1626 radix_tree_node_ctor
);
1627 ret
= cpuhp_setup_state_nocalls(CPUHP_RADIX_DEAD
, "lib/radix:dead",
1628 NULL
, radix_tree_cpu_dead
);