blob: be1183e62590fd8cd739224dcebc06f2dc6fd102 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001 Momchil Velikov
3 * Portions Copyright (C) 2001 Christoph Hellwig
Christoph Lametercde53532008-07-04 09:59:22 -07004 * Copyright (C) 2005 SGI, Christoph Lameter
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08005 * Copyright (C) 2006 Nick Piggin
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07006 * Copyright (C) 2012 Konstantin Khlebnikov
Matthew Wilcox6b053b82016-05-20 17:02:58 -07007 * Copyright (C) 2016 Intel, Matthew Wilcox
8 * Copyright (C) 2016 Intel, Ross Zwisler
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
Matthew Wilcoxe157b552016-12-14 15:09:01 -080025#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/errno.h>
27#include <linux/init.h>
28#include <linux/kernel.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050029#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/radix-tree.h>
31#include <linux/percpu.h>
32#include <linux/slab.h>
Catalin Marinasce80b062014-06-06 14:38:18 -070033#include <linux/kmemleak.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/notifier.h>
35#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/string.h>
37#include <linux/bitops.h>
Nick Piggin7cf9c2c2006-12-06 20:33:44 -080038#include <linux/rcupdate.h>
Frederic Weisbecker92cf2112015-05-12 16:41:46 +020039#include <linux/preempt.h> /* in_interrupt() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -070042/* Number of nodes in fully populated tree of given height */
43static unsigned long height_to_maxnodes[RADIX_TREE_MAX_PATH + 1] __read_mostly;
44
Jeff Moyer26fb1582007-10-16 01:24:49 -070045/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * Radix tree node cache.
47 */
Christoph Lametere18b8902006-12-06 20:33:20 -080048static struct kmem_cache *radix_tree_node_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
Nick Piggin55368052012-05-29 15:07:34 -070051 * The radix tree is variable-height, so an insert operation not only has
52 * to build the branch to its corresponding item, it also has to build the
53 * branch to existing items if the size has to be increased (by
54 * radix_tree_extend).
55 *
56 * The worst case is a zero height tree with just a single item at index 0,
57 * and then inserting an item at index ULONG_MAX. This requires 2 new branches
58 * of RADIX_TREE_MAX_PATH size to be created, with only the root node shared.
59 * Hence:
60 */
61#define RADIX_TREE_PRELOAD_SIZE (RADIX_TREE_MAX_PATH * 2 - 1)
62
63/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * Per-cpu pool of preloaded nodes
65 */
66struct radix_tree_preload {
Matthew Wilcox2fcd9002016-05-20 17:03:04 -070067 unsigned nr;
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -070068 /* nodes->private_data points to next preallocated node */
69 struct radix_tree_node *nodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
Harvey Harrison8cef7d52009-01-06 14:40:50 -080071static DEFINE_PER_CPU(struct radix_tree_preload, radix_tree_preloads) = { 0, };
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Matthew Wilcox148deab2016-12-14 15:08:49 -080073static inline struct radix_tree_node *entry_to_node(void *ptr)
74{
75 return (void *)((unsigned long)ptr & ~RADIX_TREE_INTERNAL_NODE);
76}
77
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -070078static inline void *node_to_entry(void *ptr)
Nick Piggin27d20fd2010-11-11 14:05:19 -080079{
Matthew Wilcox30ff46cc2016-05-20 17:03:22 -070080 return (void *)((unsigned long)ptr | RADIX_TREE_INTERNAL_NODE);
Nick Piggin27d20fd2010-11-11 14:05:19 -080081}
82
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -070083#define RADIX_TREE_RETRY node_to_entry(NULL)
Matthew Wilcoxafe0e392016-05-20 17:02:17 -070084
Matthew Wilcoxdb050f22016-05-20 17:01:57 -070085#ifdef CONFIG_RADIX_TREE_MULTIORDER
86/* Sibling slots point directly to another slot in the same node */
87static inline bool is_sibling_entry(struct radix_tree_node *parent, void *node)
88{
89 void **ptr = node;
90 return (parent->slots <= ptr) &&
91 (ptr < parent->slots + RADIX_TREE_MAP_SIZE);
92}
93#else
94static inline bool is_sibling_entry(struct radix_tree_node *parent, void *node)
95{
96 return false;
97}
98#endif
99
100static inline unsigned long get_slot_offset(struct radix_tree_node *parent,
101 void **slot)
102{
103 return slot - parent->slots;
104}
105
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700106static unsigned int radix_tree_descend(struct radix_tree_node *parent,
107 struct radix_tree_node **nodep, unsigned long index)
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700108{
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700109 unsigned int offset = (index >> parent->shift) & RADIX_TREE_MAP_MASK;
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700110 void **entry = rcu_dereference_raw(parent->slots[offset]);
111
112#ifdef CONFIG_RADIX_TREE_MULTIORDER
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700113 if (radix_tree_is_internal_node(entry)) {
Linus Torvalds8d2c0d32016-09-25 13:32:46 -0700114 if (is_sibling_entry(parent, entry)) {
115 void **sibentry = (void **) entry_to_node(entry);
116 offset = get_slot_offset(parent, sibentry);
117 entry = rcu_dereference_raw(*sibentry);
Matthew Wilcoxdb050f22016-05-20 17:01:57 -0700118 }
119 }
120#endif
121
122 *nodep = (void *)entry;
123 return offset;
124}
125
Nick Piggin612d6c12006-06-23 02:03:22 -0700126static inline gfp_t root_gfp_mask(struct radix_tree_root *root)
127{
128 return root->gfp_mask & __GFP_BITS_MASK;
129}
130
Nick Piggin643b52b2008-06-12 15:21:52 -0700131static inline void tag_set(struct radix_tree_node *node, unsigned int tag,
132 int offset)
133{
134 __set_bit(offset, node->tags[tag]);
135}
136
137static inline void tag_clear(struct radix_tree_node *node, unsigned int tag,
138 int offset)
139{
140 __clear_bit(offset, node->tags[tag]);
141}
142
143static inline int tag_get(struct radix_tree_node *node, unsigned int tag,
144 int offset)
145{
146 return test_bit(offset, node->tags[tag]);
147}
148
149static inline void root_tag_set(struct radix_tree_root *root, unsigned int tag)
150{
151 root->gfp_mask |= (__force gfp_t)(1 << (tag + __GFP_BITS_SHIFT));
152}
153
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700154static inline void root_tag_clear(struct radix_tree_root *root, unsigned tag)
Nick Piggin643b52b2008-06-12 15:21:52 -0700155{
156 root->gfp_mask &= (__force gfp_t)~(1 << (tag + __GFP_BITS_SHIFT));
157}
158
159static inline void root_tag_clear_all(struct radix_tree_root *root)
160{
161 root->gfp_mask &= __GFP_BITS_MASK;
162}
163
164static inline int root_tag_get(struct radix_tree_root *root, unsigned int tag)
165{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700166 return (__force int)root->gfp_mask & (1 << (tag + __GFP_BITS_SHIFT));
Nick Piggin643b52b2008-06-12 15:21:52 -0700167}
168
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700169static inline unsigned root_tags_get(struct radix_tree_root *root)
170{
171 return (__force unsigned)root->gfp_mask >> __GFP_BITS_SHIFT;
172}
173
Nick Piggin643b52b2008-06-12 15:21:52 -0700174/*
175 * Returns 1 if any slot in the node has this tag set.
176 * Otherwise returns 0.
177 */
178static inline int any_tag_set(struct radix_tree_node *node, unsigned int tag)
179{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700180 unsigned idx;
Nick Piggin643b52b2008-06-12 15:21:52 -0700181 for (idx = 0; idx < RADIX_TREE_TAG_LONGS; idx++) {
182 if (node->tags[tag][idx])
183 return 1;
184 }
185 return 0;
186}
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700187
188/**
189 * radix_tree_find_next_bit - find the next set bit in a memory region
190 *
191 * @addr: The address to base the search on
192 * @size: The bitmap size in bits
193 * @offset: The bitnumber to start searching at
194 *
195 * Unrollable variant of find_next_bit() for constant size arrays.
196 * Tail bits starting from size to roundup(size, BITS_PER_LONG) must be zero.
197 * Returns next bit offset, or size if nothing found.
198 */
199static __always_inline unsigned long
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800200radix_tree_find_next_bit(struct radix_tree_node *node, unsigned int tag,
201 unsigned long offset)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700202{
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800203 const unsigned long *addr = node->tags[tag];
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700204
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800205 if (offset < RADIX_TREE_MAP_SIZE) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700206 unsigned long tmp;
207
208 addr += offset / BITS_PER_LONG;
209 tmp = *addr >> (offset % BITS_PER_LONG);
210 if (tmp)
211 return __ffs(tmp) + offset;
212 offset = (offset + BITS_PER_LONG) & ~(BITS_PER_LONG - 1);
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800213 while (offset < RADIX_TREE_MAP_SIZE) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700214 tmp = *++addr;
215 if (tmp)
216 return __ffs(tmp) + offset;
217 offset += BITS_PER_LONG;
218 }
219 }
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -0800220 return RADIX_TREE_MAP_SIZE;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -0700221}
222
Matthew Wilcox268f42d2016-12-14 15:08:55 -0800223static unsigned int iter_offset(const struct radix_tree_iter *iter)
224{
225 return (iter->index >> iter_shift(iter)) & RADIX_TREE_MAP_MASK;
226}
227
Matthew Wilcox218ed752016-12-14 15:08:43 -0800228/*
229 * The maximum index which can be stored in a radix tree
230 */
231static inline unsigned long shift_maxindex(unsigned int shift)
232{
233 return (RADIX_TREE_MAP_SIZE << shift) - 1;
234}
235
236static inline unsigned long node_maxindex(struct radix_tree_node *node)
237{
238 return shift_maxindex(node->shift);
239}
240
Ross Zwisler0796c582016-05-20 17:02:55 -0700241#ifndef __KERNEL__
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700242static void dump_node(struct radix_tree_node *node, unsigned long index)
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700243{
Ross Zwisler0796c582016-05-20 17:02:55 -0700244 unsigned long i;
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700245
Matthew Wilcox218ed752016-12-14 15:08:43 -0800246 pr_debug("radix node: %p offset %d indices %lu-%lu parent %p tags %lx %lx %lx shift %d count %d exceptional %d\n",
247 node, node->offset, index, index | node_maxindex(node),
248 node->parent,
Ross Zwisler0796c582016-05-20 17:02:55 -0700249 node->tags[0][0], node->tags[1][0], node->tags[2][0],
Matthew Wilcox218ed752016-12-14 15:08:43 -0800250 node->shift, node->count, node->exceptional);
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700251
Ross Zwisler0796c582016-05-20 17:02:55 -0700252 for (i = 0; i < RADIX_TREE_MAP_SIZE; i++) {
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700253 unsigned long first = index | (i << node->shift);
254 unsigned long last = first | ((1UL << node->shift) - 1);
Ross Zwisler0796c582016-05-20 17:02:55 -0700255 void *entry = node->slots[i];
256 if (!entry)
257 continue;
Matthew Wilcox218ed752016-12-14 15:08:43 -0800258 if (entry == RADIX_TREE_RETRY) {
259 pr_debug("radix retry offset %ld indices %lu-%lu parent %p\n",
260 i, first, last, node);
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700261 } else if (!radix_tree_is_internal_node(entry)) {
Matthew Wilcox218ed752016-12-14 15:08:43 -0800262 pr_debug("radix entry %p offset %ld indices %lu-%lu parent %p\n",
263 entry, i, first, last, node);
264 } else if (is_sibling_entry(node, entry)) {
265 pr_debug("radix sblng %p offset %ld indices %lu-%lu parent %p val %p\n",
266 entry, i, first, last, node,
267 *(void **)entry_to_node(entry));
Ross Zwisler0796c582016-05-20 17:02:55 -0700268 } else {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700269 dump_node(entry_to_node(entry), first);
Ross Zwisler0796c582016-05-20 17:02:55 -0700270 }
271 }
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700272}
273
274/* For debug */
275static void radix_tree_dump(struct radix_tree_root *root)
276{
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700277 pr_debug("radix root: %p rnode %p tags %x\n",
278 root, root->rnode,
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700279 root->gfp_mask >> __GFP_BITS_SHIFT);
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700280 if (!radix_tree_is_internal_node(root->rnode))
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700281 return;
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700282 dump_node(entry_to_node(root->rnode), 0);
Matthew Wilcox7cf19af2016-03-17 14:21:57 -0700283}
284#endif
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/*
287 * This assumes that the caller has performed appropriate preallocation, and
288 * that the caller has pinned this thread of control to the current CPU.
289 */
290static struct radix_tree_node *
291radix_tree_node_alloc(struct radix_tree_root *root)
292{
Nick Piggine2848a02008-02-04 22:29:10 -0800293 struct radix_tree_node *ret = NULL;
Nick Piggin612d6c12006-06-23 02:03:22 -0700294 gfp_t gfp_mask = root_gfp_mask(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Jan Kara5e4c0d972013-09-11 14:26:05 -0700296 /*
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700297 * Preload code isn't irq safe and it doesn't make sense to use
298 * preloading during an interrupt anyway as all the allocations have
299 * to be atomic. So just do normal allocation when in interrupt.
Jan Kara5e4c0d972013-09-11 14:26:05 -0700300 */
Mel Gormand0164ad2015-11-06 16:28:21 -0800301 if (!gfpflags_allow_blocking(gfp_mask) && !in_interrupt()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 struct radix_tree_preload *rtp;
303
Nick Piggine2848a02008-02-04 22:29:10 -0800304 /*
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700305 * Even if the caller has preloaded, try to allocate from the
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700306 * cache first for the new node to get accounted to the memory
307 * cgroup.
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700308 */
309 ret = kmem_cache_alloc(radix_tree_node_cachep,
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700310 gfp_mask | __GFP_NOWARN);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700311 if (ret)
312 goto out;
313
314 /*
Nick Piggine2848a02008-02-04 22:29:10 -0800315 * Provided the caller has preloaded here, we will always
316 * succeed in getting a node here (and never reach
317 * kmem_cache_alloc)
318 */
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700319 rtp = this_cpu_ptr(&radix_tree_preloads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (rtp->nr) {
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700321 ret = rtp->nodes;
322 rtp->nodes = ret->private_data;
323 ret->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 rtp->nr--;
325 }
Catalin Marinasce80b062014-06-06 14:38:18 -0700326 /*
327 * Update the allocation stack trace as this is more useful
328 * for debugging.
329 */
330 kmemleak_update_trace(ret);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700331 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700333 ret = kmem_cache_alloc(radix_tree_node_cachep, gfp_mask);
Vladimir Davydov58e698a2016-03-17 14:18:36 -0700334out:
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700335 BUG_ON(radix_tree_is_internal_node(ret));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return ret;
337}
338
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800339static void radix_tree_node_rcu_free(struct rcu_head *head)
340{
341 struct radix_tree_node *node =
342 container_of(head, struct radix_tree_node, rcu_head);
Nick Piggin643b52b2008-06-12 15:21:52 -0700343
344 /*
Matthew Wilcox175542f2016-12-14 15:08:58 -0800345 * Must only free zeroed nodes into the slab. We can be left with
346 * non-NULL entries by radix_tree_free_nodes, so clear the entries
347 * and tags here.
Nick Piggin643b52b2008-06-12 15:21:52 -0700348 */
Matthew Wilcox175542f2016-12-14 15:08:58 -0800349 memset(node->slots, 0, sizeof(node->slots));
350 memset(node->tags, 0, sizeof(node->tags));
Matthew Wilcox91d9c052016-12-14 15:08:34 -0800351 INIT_LIST_HEAD(&node->private_list);
Nick Piggin643b52b2008-06-12 15:21:52 -0700352
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800353 kmem_cache_free(radix_tree_node_cachep, node);
354}
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356static inline void
357radix_tree_node_free(struct radix_tree_node *node)
358{
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800359 call_rcu(&node->rcu_head, radix_tree_node_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
362/*
363 * Load up this CPU's radix_tree_node buffer with sufficient objects to
364 * ensure that the addition of a single element in the tree cannot fail. On
365 * success, return zero, with preemption disabled. On error, return -ENOMEM
366 * with preemption not disabled.
David Howellsb34df792009-11-19 18:11:14 +0000367 *
368 * To make use of this facility, the radix tree must be initialised without
Mel Gormand0164ad2015-11-06 16:28:21 -0800369 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 */
Matthew Wilcox27916532016-12-14 15:09:04 -0800371static int __radix_tree_preload(gfp_t gfp_mask, unsigned nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
373 struct radix_tree_preload *rtp;
374 struct radix_tree_node *node;
375 int ret = -ENOMEM;
376
Vladimir Davydov05eb6e72016-08-02 14:03:01 -0700377 /*
378 * Nodes preloaded by one cgroup can be be used by another cgroup, so
379 * they should never be accounted to any particular memory cgroup.
380 */
381 gfp_mask &= ~__GFP_ACCOUNT;
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700384 rtp = this_cpu_ptr(&radix_tree_preloads);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700385 while (rtp->nr < nr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 preempt_enable();
Christoph Lameter488514d2008-04-28 02:12:05 -0700387 node = kmem_cache_alloc(radix_tree_node_cachep, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (node == NULL)
389 goto out;
390 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700391 rtp = this_cpu_ptr(&radix_tree_preloads);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700392 if (rtp->nr < nr) {
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700393 node->private_data = rtp->nodes;
394 rtp->nodes = node;
395 rtp->nr++;
396 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 kmem_cache_free(radix_tree_node_cachep, node);
Kirill A. Shutemov9d2a8da2015-06-25 15:02:19 -0700398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400 ret = 0;
401out:
402 return ret;
403}
Jan Kara5e4c0d972013-09-11 14:26:05 -0700404
405/*
406 * Load up this CPU's radix_tree_node buffer with sufficient objects to
407 * ensure that the addition of a single element in the tree cannot fail. On
408 * success, return zero, with preemption disabled. On error, return -ENOMEM
409 * with preemption not disabled.
410 *
411 * To make use of this facility, the radix tree must be initialised without
Mel Gormand0164ad2015-11-06 16:28:21 -0800412 * __GFP_DIRECT_RECLAIM being passed to INIT_RADIX_TREE().
Jan Kara5e4c0d972013-09-11 14:26:05 -0700413 */
414int radix_tree_preload(gfp_t gfp_mask)
415{
416 /* Warn on non-sensical use... */
Mel Gormand0164ad2015-11-06 16:28:21 -0800417 WARN_ON_ONCE(!gfpflags_allow_blocking(gfp_mask));
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700418 return __radix_tree_preload(gfp_mask, RADIX_TREE_PRELOAD_SIZE);
Jan Kara5e4c0d972013-09-11 14:26:05 -0700419}
David Chinnerd7f09232007-07-14 16:05:04 +1000420EXPORT_SYMBOL(radix_tree_preload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Nick Piggin6e954b92006-01-08 01:01:40 -0800422/*
Jan Kara5e4c0d972013-09-11 14:26:05 -0700423 * The same as above function, except we don't guarantee preloading happens.
424 * We do it, if we decide it helps. On success, return zero with preemption
425 * disabled. On error, return -ENOMEM with preemption not disabled.
426 */
427int radix_tree_maybe_preload(gfp_t gfp_mask)
428{
Mel Gormand0164ad2015-11-06 16:28:21 -0800429 if (gfpflags_allow_blocking(gfp_mask))
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700430 return __radix_tree_preload(gfp_mask, RADIX_TREE_PRELOAD_SIZE);
Jan Kara5e4c0d972013-09-11 14:26:05 -0700431 /* Preloading doesn't help anything with this gfp mask, skip it */
432 preempt_disable();
433 return 0;
434}
435EXPORT_SYMBOL(radix_tree_maybe_preload);
436
Matthew Wilcox27916532016-12-14 15:09:04 -0800437#ifdef CONFIG_RADIX_TREE_MULTIORDER
438/*
439 * Preload with enough objects to ensure that we can split a single entry
440 * of order @old_order into many entries of size @new_order
441 */
442int radix_tree_split_preload(unsigned int old_order, unsigned int new_order,
443 gfp_t gfp_mask)
444{
445 unsigned top = 1 << (old_order % RADIX_TREE_MAP_SHIFT);
446 unsigned layers = (old_order / RADIX_TREE_MAP_SHIFT) -
447 (new_order / RADIX_TREE_MAP_SHIFT);
448 unsigned nr = 0;
449
450 WARN_ON_ONCE(!gfpflags_allow_blocking(gfp_mask));
451 BUG_ON(new_order >= old_order);
452
453 while (layers--)
454 nr = nr * RADIX_TREE_MAP_SIZE + 1;
455 return __radix_tree_preload(gfp_mask, top * nr);
456}
457#endif
458
Jan Kara5e4c0d972013-09-11 14:26:05 -0700459/*
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -0700460 * The same as function above, but preload number of nodes required to insert
461 * (1 << order) continuous naturally-aligned elements.
462 */
463int radix_tree_maybe_preload_order(gfp_t gfp_mask, int order)
464{
465 unsigned long nr_subtrees;
466 int nr_nodes, subtree_height;
467
468 /* Preloading doesn't help anything with this gfp mask, skip it */
469 if (!gfpflags_allow_blocking(gfp_mask)) {
470 preempt_disable();
471 return 0;
472 }
473
474 /*
475 * Calculate number and height of fully populated subtrees it takes to
476 * store (1 << order) elements.
477 */
478 nr_subtrees = 1 << order;
479 for (subtree_height = 0; nr_subtrees > RADIX_TREE_MAP_SIZE;
480 subtree_height++)
481 nr_subtrees >>= RADIX_TREE_MAP_SHIFT;
482
483 /*
484 * The worst case is zero height tree with a single item at index 0 and
485 * then inserting items starting at ULONG_MAX - (1 << order).
486 *
487 * This requires RADIX_TREE_MAX_PATH nodes to build branch from root to
488 * 0-index item.
489 */
490 nr_nodes = RADIX_TREE_MAX_PATH;
491
492 /* Plus branch to fully populated subtrees. */
493 nr_nodes += RADIX_TREE_MAX_PATH - subtree_height;
494
495 /* Root node is shared. */
496 nr_nodes--;
497
498 /* Plus nodes required to build subtrees. */
499 nr_nodes += nr_subtrees * height_to_maxnodes[subtree_height];
500
501 return __radix_tree_preload(gfp_mask, nr_nodes);
502}
503
Matthew Wilcox1456a432016-05-20 17:02:08 -0700504static unsigned radix_tree_load_root(struct radix_tree_root *root,
505 struct radix_tree_node **nodep, unsigned long *maxindex)
506{
507 struct radix_tree_node *node = rcu_dereference_raw(root->rnode);
508
509 *nodep = node;
510
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700511 if (likely(radix_tree_is_internal_node(node))) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700512 node = entry_to_node(node);
Matthew Wilcox1456a432016-05-20 17:02:08 -0700513 *maxindex = node_maxindex(node);
Matthew Wilcoxc12e51b2016-05-20 17:03:10 -0700514 return node->shift + RADIX_TREE_MAP_SHIFT;
Matthew Wilcox1456a432016-05-20 17:02:08 -0700515 }
516
517 *maxindex = 0;
518 return 0;
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*
522 * Extend a radix tree so it can store key @index.
523 */
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700524static int radix_tree_extend(struct radix_tree_root *root,
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700525 unsigned long index, unsigned int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Hugh Dickinse2bdb932012-01-12 17:20:41 -0800527 struct radix_tree_node *slot;
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700528 unsigned int maxshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 int tag;
530
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700531 /* Figure out what the shift should be. */
532 maxshift = shift;
533 while (index > shift_maxindex(maxshift))
534 maxshift += RADIX_TREE_MAP_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700536 slot = root->rnode;
537 if (!slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 do {
Matthew Wilcox2fcd9002016-05-20 17:03:04 -0700541 struct radix_tree_node *node = radix_tree_node_alloc(root);
542
543 if (!node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return -ENOMEM;
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* Propagate the aggregated tag info into the new root */
Jonathan Corbetdaff89f2006-03-25 03:08:05 -0800547 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++) {
Nick Piggin612d6c12006-06-23 02:03:22 -0700548 if (root_tag_get(root, tag))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 tag_set(node, tag, 0);
550 }
551
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700552 BUG_ON(shift > BITS_PER_LONG);
553 node->shift = shift;
Matthew Wilcox0c7fa0a2016-05-20 17:03:07 -0700554 node->offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 node->count = 1;
Hugh Dickinse2bdb932012-01-12 17:20:41 -0800556 node->parent = NULL;
Johannes Weinerf7942432016-12-12 16:43:41 -0800557 if (radix_tree_is_internal_node(slot)) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700558 entry_to_node(slot)->parent = node;
Johannes Weinerf7942432016-12-12 16:43:41 -0800559 } else {
560 /* Moving an exceptional root->rnode to a node */
561 if (radix_tree_exceptional_entry(slot))
562 node->exceptional = 1;
563 }
Hugh Dickinse2bdb932012-01-12 17:20:41 -0800564 node->slots[0] = slot;
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -0700565 slot = node_to_entry(node);
566 rcu_assign_pointer(root->rnode, slot);
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700567 shift += RADIX_TREE_MAP_SHIFT;
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700568 } while (shift <= maxshift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569out:
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700570 return maxshift + RADIX_TREE_MAP_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
573/**
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800574 * radix_tree_shrink - shrink radix tree to minimum height
575 * @root radix tree root
576 */
Johannes Weiner14b46872016-12-12 16:43:52 -0800577static inline void radix_tree_shrink(struct radix_tree_root *root,
Johannes Weiner4d693d02016-12-12 16:43:49 -0800578 radix_tree_update_node_t update_node,
579 void *private)
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800580{
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800581 for (;;) {
582 struct radix_tree_node *node = root->rnode;
583 struct radix_tree_node *child;
584
585 if (!radix_tree_is_internal_node(node))
586 break;
587 node = entry_to_node(node);
588
589 /*
590 * The candidate node has more than one child, or its child
591 * is not at the leftmost slot, or the child is a multiorder
592 * entry, we cannot shrink.
593 */
594 if (node->count != 1)
595 break;
596 child = node->slots[0];
597 if (!child)
598 break;
599 if (!radix_tree_is_internal_node(child) && node->shift)
600 break;
601
602 if (radix_tree_is_internal_node(child))
603 entry_to_node(child)->parent = NULL;
604
605 /*
606 * We don't need rcu_assign_pointer(), since we are simply
607 * moving the node from one part of the tree to another: if it
608 * was safe to dereference the old pointer to it
609 * (node->slots[0]), it will be safe to dereference the new
610 * one (root->rnode) as far as dependent read barriers go.
611 */
612 root->rnode = child;
613
614 /*
615 * We have a dilemma here. The node's slot[0] must not be
616 * NULLed in case there are concurrent lookups expecting to
617 * find the item. However if this was a bottom-level node,
618 * then it may be subject to the slot pointer being visible
619 * to callers dereferencing it. If item corresponding to
620 * slot[0] is subsequently deleted, these callers would expect
621 * their slot to become empty sooner or later.
622 *
623 * For example, lockless pagecache will look up a slot, deref
624 * the page pointer, and if the page has 0 refcount it means it
625 * was concurrently deleted from pagecache so try the deref
626 * again. Fortunately there is already a requirement for logic
627 * to retry the entire slot lookup -- the indirect pointer
628 * problem (replacing direct root node with an indirect pointer
629 * also results in a stale slot). So tag the slot as indirect
630 * to force callers to retry.
631 */
Johannes Weiner4d693d02016-12-12 16:43:49 -0800632 node->count = 0;
633 if (!radix_tree_is_internal_node(child)) {
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800634 node->slots[0] = RADIX_TREE_RETRY;
Johannes Weiner4d693d02016-12-12 16:43:49 -0800635 if (update_node)
636 update_node(node, private);
637 }
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800638
639 radix_tree_node_free(node);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800640 }
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800641}
642
Johannes Weiner14b46872016-12-12 16:43:52 -0800643static void delete_node(struct radix_tree_root *root,
Johannes Weiner4d693d02016-12-12 16:43:49 -0800644 struct radix_tree_node *node,
645 radix_tree_update_node_t update_node, void *private)
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800646{
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800647 do {
648 struct radix_tree_node *parent;
649
650 if (node->count) {
651 if (node == entry_to_node(root->rnode))
Johannes Weiner14b46872016-12-12 16:43:52 -0800652 radix_tree_shrink(root, update_node, private);
653 return;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800654 }
655
656 parent = node->parent;
657 if (parent) {
658 parent->slots[node->offset] = NULL;
659 parent->count--;
660 } else {
661 root_tag_clear_all(root);
662 root->rnode = NULL;
663 }
664
665 radix_tree_node_free(node);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800666
667 node = parent;
668 } while (node);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800669}
670
671/**
Johannes Weiner139e5612014-04-03 14:47:54 -0700672 * __radix_tree_create - create a slot in a radix tree
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 * @root: radix tree root
674 * @index: index key
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700675 * @order: index occupies 2^order aligned slots
Johannes Weiner139e5612014-04-03 14:47:54 -0700676 * @nodep: returns node
677 * @slotp: returns slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 *
Johannes Weiner139e5612014-04-03 14:47:54 -0700679 * Create, if necessary, and return the node and slot for an item
680 * at position @index in the radix tree @root.
681 *
682 * Until there is more than one item in the tree, no nodes are
683 * allocated and @root->rnode is used as a direct slot instead of
684 * pointing to a node, in which case *@nodep will be NULL.
685 *
686 * Returns -ENOMEM, or 0 for success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 */
Johannes Weiner139e5612014-04-03 14:47:54 -0700688int __radix_tree_create(struct radix_tree_root *root, unsigned long index,
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700689 unsigned order, struct radix_tree_node **nodep,
690 void ***slotp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700692 struct radix_tree_node *node = NULL, *child;
693 void **slot = (void **)&root->rnode;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700694 unsigned long maxindex;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700695 unsigned int shift, offset = 0;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700696 unsigned long max = index | ((1UL << order) - 1);
697
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700698 shift = radix_tree_load_root(root, &child, &maxindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 /* Make sure the tree is high enough. */
Matthew Wilcox175542f2016-12-14 15:08:58 -0800701 if (order > 0 && max == ((1UL << order) - 1))
702 max++;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700703 if (max > maxindex) {
Matthew Wilcoxd0891262016-05-20 17:03:19 -0700704 int error = radix_tree_extend(root, max, shift);
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700705 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return error;
Matthew Wilcox49ea6eb2016-05-20 17:02:11 -0700707 shift = error;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700708 child = root->rnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700711 while (shift > order) {
Matthew Wilcoxc12e51b2016-05-20 17:03:10 -0700712 shift -= RADIX_TREE_MAP_SHIFT;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700713 if (child == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /* Have to add a child node. */
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700715 child = radix_tree_node_alloc(root);
716 if (!child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return -ENOMEM;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700718 child->shift = shift;
719 child->offset = offset;
Matthew Wilcox175542f2016-12-14 15:08:58 -0800720 child->count = 0;
721 child->exceptional = 0;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700722 child->parent = node;
723 rcu_assign_pointer(*slot, node_to_entry(child));
724 if (node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 node->count++;
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700726 } else if (!radix_tree_is_internal_node(child))
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700727 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 /* Go a level down */
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700730 node = entry_to_node(child);
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700731 offset = radix_tree_descend(node, &child, index);
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700732 slot = &node->slots[offset];
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700733 }
734
Johannes Weiner139e5612014-04-03 14:47:54 -0700735 if (nodep)
736 *nodep = node;
737 if (slotp)
Matthew Wilcox89148aa2016-05-20 17:03:42 -0700738 *slotp = slot;
Johannes Weiner139e5612014-04-03 14:47:54 -0700739 return 0;
740}
741
Matthew Wilcox175542f2016-12-14 15:08:58 -0800742#ifdef CONFIG_RADIX_TREE_MULTIORDER
743/*
744 * Free any nodes below this node. The tree is presumed to not need
745 * shrinking, and any user data in the tree is presumed to not need a
746 * destructor called on it. If we need to add a destructor, we can
747 * add that functionality later. Note that we may not clear tags or
748 * slots from the tree as an RCU walker may still have a pointer into
749 * this subtree. We could replace the entries with RADIX_TREE_RETRY,
750 * but we'll still have to clear those in rcu_free.
751 */
752static void radix_tree_free_nodes(struct radix_tree_node *node)
753{
754 unsigned offset = 0;
755 struct radix_tree_node *child = entry_to_node(node);
756
757 for (;;) {
758 void *entry = child->slots[offset];
759 if (radix_tree_is_internal_node(entry) &&
760 !is_sibling_entry(child, entry)) {
761 child = entry_to_node(entry);
762 offset = 0;
763 continue;
764 }
765 offset++;
766 while (offset == RADIX_TREE_MAP_SIZE) {
767 struct radix_tree_node *old = child;
768 offset = child->offset + 1;
769 child = child->parent;
770 radix_tree_node_free(old);
771 if (old == entry_to_node(node))
772 return;
773 }
774 }
775}
776
777static inline int insert_entries(struct radix_tree_node *node, void **slot,
778 void *item, unsigned order, bool replace)
779{
780 struct radix_tree_node *child;
781 unsigned i, n, tag, offset, tags = 0;
782
783 if (node) {
Matthew Wilcoxe157b552016-12-14 15:09:01 -0800784 if (order > node->shift)
785 n = 1 << (order - node->shift);
786 else
787 n = 1;
Matthew Wilcox175542f2016-12-14 15:08:58 -0800788 offset = get_slot_offset(node, slot);
789 } else {
790 n = 1;
791 offset = 0;
792 }
793
794 if (n > 1) {
795 offset = offset & ~(n - 1);
796 slot = &node->slots[offset];
797 }
798 child = node_to_entry(slot);
799
800 for (i = 0; i < n; i++) {
801 if (slot[i]) {
802 if (replace) {
803 node->count--;
804 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
805 if (tag_get(node, tag, offset + i))
806 tags |= 1 << tag;
807 } else
808 return -EEXIST;
809 }
810 }
811
812 for (i = 0; i < n; i++) {
813 struct radix_tree_node *old = slot[i];
814 if (i) {
815 rcu_assign_pointer(slot[i], child);
816 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
817 if (tags & (1 << tag))
818 tag_clear(node, tag, offset + i);
819 } else {
820 rcu_assign_pointer(slot[i], item);
821 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
822 if (tags & (1 << tag))
823 tag_set(node, tag, offset);
824 }
825 if (radix_tree_is_internal_node(old) &&
Matthew Wilcoxe157b552016-12-14 15:09:01 -0800826 !is_sibling_entry(node, old) &&
827 (old != RADIX_TREE_RETRY))
Matthew Wilcox175542f2016-12-14 15:08:58 -0800828 radix_tree_free_nodes(old);
829 if (radix_tree_exceptional_entry(old))
830 node->exceptional--;
831 }
832 if (node) {
833 node->count += n;
834 if (radix_tree_exceptional_entry(item))
835 node->exceptional += n;
836 }
837 return n;
838}
839#else
840static inline int insert_entries(struct radix_tree_node *node, void **slot,
841 void *item, unsigned order, bool replace)
842{
843 if (*slot)
844 return -EEXIST;
845 rcu_assign_pointer(*slot, item);
846 if (node) {
847 node->count++;
848 if (radix_tree_exceptional_entry(item))
849 node->exceptional++;
850 }
851 return 1;
852}
853#endif
854
Johannes Weiner139e5612014-04-03 14:47:54 -0700855/**
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700856 * __radix_tree_insert - insert into a radix tree
Johannes Weiner139e5612014-04-03 14:47:54 -0700857 * @root: radix tree root
858 * @index: index key
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700859 * @order: key covers the 2^order indices around index
Johannes Weiner139e5612014-04-03 14:47:54 -0700860 * @item: item to insert
861 *
862 * Insert an item into the radix tree at position @index.
863 */
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700864int __radix_tree_insert(struct radix_tree_root *root, unsigned long index,
865 unsigned order, void *item)
Johannes Weiner139e5612014-04-03 14:47:54 -0700866{
867 struct radix_tree_node *node;
868 void **slot;
869 int error;
870
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700871 BUG_ON(radix_tree_is_internal_node(item));
Johannes Weiner139e5612014-04-03 14:47:54 -0700872
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700873 error = __radix_tree_create(root, index, order, &node, &slot);
Johannes Weiner139e5612014-04-03 14:47:54 -0700874 if (error)
875 return error;
Matthew Wilcox175542f2016-12-14 15:08:58 -0800876
877 error = insert_entries(node, slot, item, order, false);
878 if (error < 0)
879 return error;
Christoph Lameter201b6262005-09-06 15:16:46 -0700880
Nick Piggin612d6c12006-06-23 02:03:22 -0700881 if (node) {
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700882 unsigned offset = get_slot_offset(node, slot);
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700883 BUG_ON(tag_get(node, 0, offset));
884 BUG_ON(tag_get(node, 1, offset));
885 BUG_ON(tag_get(node, 2, offset));
Nick Piggin612d6c12006-06-23 02:03:22 -0700886 } else {
Matthew Wilcox7b60e9a2016-05-20 17:02:23 -0700887 BUG_ON(root_tags_get(root));
Nick Piggin612d6c12006-06-23 02:03:22 -0700888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return 0;
891}
Matthew Wilcoxe6145232016-03-17 14:21:54 -0700892EXPORT_SYMBOL(__radix_tree_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Johannes Weiner139e5612014-04-03 14:47:54 -0700894/**
895 * __radix_tree_lookup - lookup an item in a radix tree
896 * @root: radix tree root
897 * @index: index key
898 * @nodep: returns node
899 * @slotp: returns slot
900 *
901 * Lookup and return the item at position @index in the radix
902 * tree @root.
903 *
904 * Until there is more than one item in the tree, no nodes are
905 * allocated and @root->rnode is used as a direct slot instead of
906 * pointing to a node, in which case *@nodep will be NULL.
Hans Reisera4331362005-11-07 00:59:29 -0800907 */
Johannes Weiner139e5612014-04-03 14:47:54 -0700908void *__radix_tree_lookup(struct radix_tree_root *root, unsigned long index,
909 struct radix_tree_node **nodep, void ***slotp)
Hans Reisera4331362005-11-07 00:59:29 -0800910{
Johannes Weiner139e5612014-04-03 14:47:54 -0700911 struct radix_tree_node *node, *parent;
Matthew Wilcox85829952016-05-20 17:02:20 -0700912 unsigned long maxindex;
Johannes Weiner139e5612014-04-03 14:47:54 -0700913 void **slot;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800914
Matthew Wilcox85829952016-05-20 17:02:20 -0700915 restart:
916 parent = NULL;
917 slot = (void **)&root->rnode;
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700918 radix_tree_load_root(root, &node, &maxindex);
Matthew Wilcox85829952016-05-20 17:02:20 -0700919 if (index > maxindex)
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800920 return NULL;
921
Matthew Wilcoxb194d162016-05-20 17:03:30 -0700922 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox85829952016-05-20 17:02:20 -0700923 unsigned offset;
Johannes Weiner139e5612014-04-03 14:47:54 -0700924
Matthew Wilcox85829952016-05-20 17:02:20 -0700925 if (node == RADIX_TREE_RETRY)
926 goto restart;
Matthew Wilcox4dd6c092016-05-20 17:03:27 -0700927 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -0700928 offset = radix_tree_descend(parent, &node, index);
Matthew Wilcox85829952016-05-20 17:02:20 -0700929 slot = parent->slots + offset;
930 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800931
Johannes Weiner139e5612014-04-03 14:47:54 -0700932 if (nodep)
933 *nodep = parent;
934 if (slotp)
935 *slotp = slot;
936 return node;
Huang Shijieb72b71c2009-06-16 15:33:42 -0700937}
938
939/**
940 * radix_tree_lookup_slot - lookup a slot in a radix tree
941 * @root: radix tree root
942 * @index: index key
943 *
944 * Returns: the slot corresponding to the position @index in the
945 * radix tree @root. This is useful for update-if-exists operations.
946 *
947 * This function can be called under rcu_read_lock iff the slot is not
948 * modified by radix_tree_replace_slot, otherwise it must be called
949 * exclusive from other writers. Any dereference of the slot must be done
950 * using radix_tree_deref_slot.
951 */
952void **radix_tree_lookup_slot(struct radix_tree_root *root, unsigned long index)
953{
Johannes Weiner139e5612014-04-03 14:47:54 -0700954 void **slot;
955
956 if (!__radix_tree_lookup(root, index, NULL, &slot))
957 return NULL;
958 return slot;
Hans Reisera4331362005-11-07 00:59:29 -0800959}
960EXPORT_SYMBOL(radix_tree_lookup_slot);
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962/**
963 * radix_tree_lookup - perform lookup operation on a radix tree
964 * @root: radix tree root
965 * @index: index key
966 *
967 * Lookup the item at the position @index in the radix tree @root.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800968 *
969 * This function can be called under rcu_read_lock, however the caller
970 * must manage lifetimes of leaf nodes (eg. RCU may also be used to free
971 * them safely). No RCU barriers are required to access or modify the
972 * returned item, however.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 */
974void *radix_tree_lookup(struct radix_tree_root *root, unsigned long index)
975{
Johannes Weiner139e5612014-04-03 14:47:54 -0700976 return __radix_tree_lookup(root, index, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977}
978EXPORT_SYMBOL(radix_tree_lookup);
979
Johannes Weiner6d75f362016-12-12 16:43:43 -0800980static void replace_slot(struct radix_tree_root *root,
981 struct radix_tree_node *node,
982 void **slot, void *item,
983 bool warn_typeswitch)
984{
985 void *old = rcu_dereference_raw(*slot);
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800986 int count, exceptional;
Johannes Weiner6d75f362016-12-12 16:43:43 -0800987
988 WARN_ON_ONCE(radix_tree_is_internal_node(item));
Johannes Weiner6d75f362016-12-12 16:43:43 -0800989
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800990 count = !!item - !!old;
Johannes Weiner6d75f362016-12-12 16:43:43 -0800991 exceptional = !!radix_tree_exceptional_entry(item) -
992 !!radix_tree_exceptional_entry(old);
993
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800994 WARN_ON_ONCE(warn_typeswitch && (count || exceptional));
Johannes Weiner6d75f362016-12-12 16:43:43 -0800995
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800996 if (node) {
997 node->count += count;
Johannes Weiner6d75f362016-12-12 16:43:43 -0800998 node->exceptional += exceptional;
Johannes Weinerf4b109c2016-12-12 16:43:46 -0800999 }
Johannes Weiner6d75f362016-12-12 16:43:43 -08001000
1001 rcu_assign_pointer(*slot, item);
1002}
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004/**
Johannes Weinerf7942432016-12-12 16:43:41 -08001005 * __radix_tree_replace - replace item in a slot
Johannes Weiner4d693d02016-12-12 16:43:49 -08001006 * @root: radix tree root
1007 * @node: pointer to tree node
1008 * @slot: pointer to slot in @node
1009 * @item: new item to store in the slot.
1010 * @update_node: callback for changing leaf nodes
1011 * @private: private data to pass to @update_node
Johannes Weinerf7942432016-12-12 16:43:41 -08001012 *
1013 * For use with __radix_tree_lookup(). Caller must hold tree write locked
1014 * across slot lookup and replacement.
1015 */
1016void __radix_tree_replace(struct radix_tree_root *root,
1017 struct radix_tree_node *node,
Johannes Weiner4d693d02016-12-12 16:43:49 -08001018 void **slot, void *item,
1019 radix_tree_update_node_t update_node, void *private)
Johannes Weinerf7942432016-12-12 16:43:41 -08001020{
Johannes Weiner6d75f362016-12-12 16:43:43 -08001021 /*
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001022 * This function supports replacing exceptional entries and
1023 * deleting entries, but that needs accounting against the
1024 * node unless the slot is root->rnode.
Johannes Weiner6d75f362016-12-12 16:43:43 -08001025 */
1026 replace_slot(root, node, slot, item,
1027 !node && slot != (void **)&root->rnode);
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001028
Johannes Weiner4d693d02016-12-12 16:43:49 -08001029 if (!node)
1030 return;
1031
1032 if (update_node)
1033 update_node(node, private);
1034
1035 delete_node(root, node, update_node, private);
Johannes Weiner6d75f362016-12-12 16:43:43 -08001036}
Johannes Weinerf7942432016-12-12 16:43:41 -08001037
Johannes Weiner6d75f362016-12-12 16:43:43 -08001038/**
1039 * radix_tree_replace_slot - replace item in a slot
1040 * @root: radix tree root
1041 * @slot: pointer to slot
1042 * @item: new item to store in the slot.
1043 *
1044 * For use with radix_tree_lookup_slot(), radix_tree_gang_lookup_slot(),
1045 * radix_tree_gang_lookup_tag_slot(). Caller must hold tree write locked
1046 * across slot lookup and replacement.
1047 *
1048 * NOTE: This cannot be used to switch between non-entries (empty slots),
1049 * regular entries, and exceptional entries, as that requires accounting
Johannes Weinerf4b109c2016-12-12 16:43:46 -08001050 * inside the radix tree node. When switching from one type of entry or
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001051 * deleting, use __radix_tree_lookup() and __radix_tree_replace() or
1052 * radix_tree_iter_replace().
Johannes Weiner6d75f362016-12-12 16:43:43 -08001053 */
1054void radix_tree_replace_slot(struct radix_tree_root *root,
1055 void **slot, void *item)
1056{
1057 replace_slot(root, NULL, slot, item, true);
Johannes Weinerf7942432016-12-12 16:43:41 -08001058}
1059
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001060/**
1061 * radix_tree_iter_replace - replace item in a slot
1062 * @root: radix tree root
1063 * @slot: pointer to slot
1064 * @item: new item to store in the slot.
1065 *
1066 * For use with radix_tree_split() and radix_tree_for_each_slot().
1067 * Caller must hold tree write locked across split and replacement.
1068 */
1069void radix_tree_iter_replace(struct radix_tree_root *root,
1070 const struct radix_tree_iter *iter, void **slot, void *item)
1071{
1072 __radix_tree_replace(root, iter->node, slot, item, NULL, NULL);
1073}
1074
Matthew Wilcox175542f2016-12-14 15:08:58 -08001075#ifdef CONFIG_RADIX_TREE_MULTIORDER
1076/**
1077 * radix_tree_join - replace multiple entries with one multiorder entry
1078 * @root: radix tree root
1079 * @index: an index inside the new entry
1080 * @order: order of the new entry
1081 * @item: new entry
1082 *
1083 * Call this function to replace several entries with one larger entry.
1084 * The existing entries are presumed to not need freeing as a result of
1085 * this call.
1086 *
1087 * The replacement entry will have all the tags set on it that were set
1088 * on any of the entries it is replacing.
1089 */
1090int radix_tree_join(struct radix_tree_root *root, unsigned long index,
1091 unsigned order, void *item)
1092{
1093 struct radix_tree_node *node;
1094 void **slot;
1095 int error;
1096
1097 BUG_ON(radix_tree_is_internal_node(item));
1098
1099 error = __radix_tree_create(root, index, order, &node, &slot);
1100 if (!error)
1101 error = insert_entries(node, slot, item, order, true);
1102 if (error > 0)
1103 error = 0;
1104
1105 return error;
1106}
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001107
1108/**
1109 * radix_tree_split - Split an entry into smaller entries
1110 * @root: radix tree root
1111 * @index: An index within the large entry
1112 * @order: Order of new entries
1113 *
1114 * Call this function as the first step in replacing a multiorder entry
1115 * with several entries of lower order. After this function returns,
1116 * loop over the relevant portion of the tree using radix_tree_for_each_slot()
1117 * and call radix_tree_iter_replace() to set up each new entry.
1118 *
1119 * The tags from this entry are replicated to all the new entries.
1120 *
1121 * The radix tree should be locked against modification during the entire
1122 * replacement operation. Lock-free lookups will see RADIX_TREE_RETRY which
1123 * should prompt RCU walkers to restart the lookup from the root.
1124 */
1125int radix_tree_split(struct radix_tree_root *root, unsigned long index,
1126 unsigned order)
1127{
1128 struct radix_tree_node *parent, *node, *child;
1129 void **slot;
1130 unsigned int offset, end;
1131 unsigned n, tag, tags = 0;
1132
1133 if (!__radix_tree_lookup(root, index, &parent, &slot))
1134 return -ENOENT;
1135 if (!parent)
1136 return -ENOENT;
1137
1138 offset = get_slot_offset(parent, slot);
1139
1140 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1141 if (tag_get(parent, tag, offset))
1142 tags |= 1 << tag;
1143
1144 for (end = offset + 1; end < RADIX_TREE_MAP_SIZE; end++) {
1145 if (!is_sibling_entry(parent, parent->slots[end]))
1146 break;
1147 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1148 if (tags & (1 << tag))
1149 tag_set(parent, tag, end);
1150 /* rcu_assign_pointer ensures tags are set before RETRY */
1151 rcu_assign_pointer(parent->slots[end], RADIX_TREE_RETRY);
1152 }
1153 rcu_assign_pointer(parent->slots[offset], RADIX_TREE_RETRY);
1154 parent->exceptional -= (end - offset);
1155
1156 if (order == parent->shift)
1157 return 0;
1158 if (order > parent->shift) {
1159 while (offset < end)
1160 offset += insert_entries(parent, &parent->slots[offset],
1161 RADIX_TREE_RETRY, order, true);
1162 return 0;
1163 }
1164
1165 node = parent;
1166
1167 for (;;) {
1168 if (node->shift > order) {
1169 child = radix_tree_node_alloc(root);
1170 if (!child)
1171 goto nomem;
1172 child->shift = node->shift - RADIX_TREE_MAP_SHIFT;
1173 child->offset = offset;
1174 child->count = 0;
1175 child->parent = node;
1176 if (node != parent) {
1177 node->count++;
1178 node->slots[offset] = node_to_entry(child);
1179 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1180 if (tags & (1 << tag))
1181 tag_set(node, tag, offset);
1182 }
1183
1184 node = child;
1185 offset = 0;
1186 continue;
1187 }
1188
1189 n = insert_entries(node, &node->slots[offset],
1190 RADIX_TREE_RETRY, order, false);
1191 BUG_ON(n > RADIX_TREE_MAP_SIZE);
1192
1193 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1194 if (tags & (1 << tag))
1195 tag_set(node, tag, offset);
1196 offset += n;
1197
1198 while (offset == RADIX_TREE_MAP_SIZE) {
1199 if (node == parent)
1200 break;
1201 offset = node->offset;
1202 child = node;
1203 node = node->parent;
1204 rcu_assign_pointer(node->slots[offset],
1205 node_to_entry(child));
1206 offset++;
1207 }
1208 if ((node == parent) && (offset == end))
1209 return 0;
1210 }
1211
1212 nomem:
1213 /* Shouldn't happen; did user forget to preload? */
1214 /* TODO: free all the allocated nodes */
1215 WARN_ON(1);
1216 return -ENOMEM;
1217}
Matthew Wilcox175542f2016-12-14 15:08:58 -08001218#endif
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220/**
1221 * radix_tree_tag_set - set a tag on a radix tree node
1222 * @root: radix tree root
1223 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001224 * @tag: tag index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 *
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001226 * Set the search tag (which must be < RADIX_TREE_MAX_TAGS)
1227 * corresponding to @index in the radix tree. From
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 * the root all the way down to the leaf node.
1229 *
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001230 * Returns the address of the tagged item. Setting a tag on a not-present
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 * item is a bug.
1232 */
1233void *radix_tree_tag_set(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001234 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
Ross Zwislerfb969902016-05-20 17:02:32 -07001236 struct radix_tree_node *node, *parent;
1237 unsigned long maxindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001239 radix_tree_load_root(root, &node, &maxindex);
Ross Zwislerfb969902016-05-20 17:02:32 -07001240 BUG_ON(index > maxindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001242 while (radix_tree_is_internal_node(node)) {
Ross Zwislerfb969902016-05-20 17:02:32 -07001243 unsigned offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001245 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001246 offset = radix_tree_descend(parent, &node, index);
Ross Zwislerfb969902016-05-20 17:02:32 -07001247 BUG_ON(!node);
1248
1249 if (!tag_get(parent, tag, offset))
1250 tag_set(parent, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
1252
Nick Piggin612d6c12006-06-23 02:03:22 -07001253 /* set the root's tag bit */
Ross Zwislerfb969902016-05-20 17:02:32 -07001254 if (!root_tag_get(root, tag))
Nick Piggin612d6c12006-06-23 02:03:22 -07001255 root_tag_set(root, tag);
1256
Ross Zwislerfb969902016-05-20 17:02:32 -07001257 return node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259EXPORT_SYMBOL(radix_tree_tag_set);
1260
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001261static void node_tag_clear(struct radix_tree_root *root,
1262 struct radix_tree_node *node,
1263 unsigned int tag, unsigned int offset)
1264{
1265 while (node) {
1266 if (!tag_get(node, tag, offset))
1267 return;
1268 tag_clear(node, tag, offset);
1269 if (any_tag_set(node, tag))
1270 return;
1271
1272 offset = node->offset;
1273 node = node->parent;
1274 }
1275
1276 /* clear the root's tag bit */
1277 if (root_tag_get(root, tag))
1278 root_tag_clear(root, tag);
1279}
1280
Matthew Wilcox9498d2b2016-12-14 15:08:37 -08001281static void node_tag_set(struct radix_tree_root *root,
1282 struct radix_tree_node *node,
1283 unsigned int tag, unsigned int offset)
1284{
1285 while (node) {
1286 if (tag_get(node, tag, offset))
1287 return;
1288 tag_set(node, tag, offset);
1289 offset = node->offset;
1290 node = node->parent;
1291 }
1292
1293 if (!root_tag_get(root, tag))
1294 root_tag_set(root, tag);
1295}
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297/**
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001298 * radix_tree_iter_tag_set - set a tag on the current iterator entry
1299 * @root: radix tree root
1300 * @iter: iterator state
1301 * @tag: tag to set
1302 */
1303void radix_tree_iter_tag_set(struct radix_tree_root *root,
1304 const struct radix_tree_iter *iter, unsigned int tag)
1305{
1306 node_tag_set(root, iter->node, tag, iter_offset(iter));
1307}
1308
1309/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 * radix_tree_tag_clear - clear a tag on a radix tree node
1311 * @root: radix tree root
1312 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001313 * @tag: tag index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 *
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001315 * Clear the search tag (which must be < RADIX_TREE_MAX_TAGS)
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001316 * corresponding to @index in the radix tree. If this causes
1317 * the leaf node to have no tags set then clear the tag in the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 * next-to-leaf node, etc.
1319 *
1320 * Returns the address of the tagged item on success, else NULL. ie:
1321 * has the same return value and semantics as radix_tree_lookup().
1322 */
1323void *radix_tree_tag_clear(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001324 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
Ross Zwisler00f47b52016-05-20 17:02:35 -07001326 struct radix_tree_node *node, *parent;
1327 unsigned long maxindex;
Hugh Dickinse2bdb932012-01-12 17:20:41 -08001328 int uninitialized_var(offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001330 radix_tree_load_root(root, &node, &maxindex);
Ross Zwisler00f47b52016-05-20 17:02:35 -07001331 if (index > maxindex)
1332 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Ross Zwisler00f47b52016-05-20 17:02:35 -07001334 parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001336 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001337 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001338 offset = radix_tree_descend(parent, &node, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001341 if (node)
1342 node_tag_clear(root, parent, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Ross Zwisler00f47b52016-05-20 17:02:35 -07001344 return node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346EXPORT_SYMBOL(radix_tree_tag_clear);
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348/**
Marcelo Tosatti32605a12005-09-06 15:16:48 -07001349 * radix_tree_tag_get - get a tag on a radix tree node
1350 * @root: radix tree root
1351 * @index: index key
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001352 * @tag: tag index (< RADIX_TREE_MAX_TAGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 *
Marcelo Tosatti32605a12005-09-06 15:16:48 -07001354 * Return values:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 *
Nick Piggin612d6c12006-06-23 02:03:22 -07001356 * 0: tag not present or not set
1357 * 1: tag set
David Howellsce826532010-04-06 22:36:20 +01001358 *
1359 * Note that the return value of this function may not be relied on, even if
1360 * the RCU lock is held, unless tag modification and node deletion are excluded
1361 * from concurrency.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 */
1363int radix_tree_tag_get(struct radix_tree_root *root,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001364 unsigned long index, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Ross Zwisler4589ba62016-05-20 17:02:38 -07001366 struct radix_tree_node *node, *parent;
1367 unsigned long maxindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Nick Piggin612d6c12006-06-23 02:03:22 -07001369 if (!root_tag_get(root, tag))
1370 return 0;
1371
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001372 radix_tree_load_root(root, &node, &maxindex);
Ross Zwisler4589ba62016-05-20 17:02:38 -07001373 if (index > maxindex)
1374 return 0;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001375 if (node == NULL)
1376 return 0;
1377
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001378 while (radix_tree_is_internal_node(node)) {
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001379 unsigned offset;
Ross Zwisler4589ba62016-05-20 17:02:38 -07001380
Matthew Wilcox4dd6c092016-05-20 17:03:27 -07001381 parent = entry_to_node(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001382 offset = radix_tree_descend(parent, &node, index);
Ross Zwisler4589ba62016-05-20 17:02:38 -07001383
1384 if (!node)
1385 return 0;
1386 if (!tag_get(parent, tag, offset))
1387 return 0;
1388 if (node == RADIX_TREE_RETRY)
1389 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
Ross Zwisler4589ba62016-05-20 17:02:38 -07001391
1392 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394EXPORT_SYMBOL(radix_tree_tag_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Ross Zwisler21ef5332016-05-20 17:02:26 -07001396static inline void __set_iter_shift(struct radix_tree_iter *iter,
1397 unsigned int shift)
1398{
1399#ifdef CONFIG_RADIX_TREE_MULTIORDER
1400 iter->shift = shift;
1401#endif
1402}
1403
Matthew Wilcox148deab2016-12-14 15:08:49 -08001404/* Construct iter->tags bit-mask from node->tags[tag] array */
1405static void set_iter_tags(struct radix_tree_iter *iter,
1406 struct radix_tree_node *node, unsigned offset,
1407 unsigned tag)
1408{
1409 unsigned tag_long = offset / BITS_PER_LONG;
1410 unsigned tag_bit = offset % BITS_PER_LONG;
1411
1412 iter->tags = node->tags[tag][tag_long] >> tag_bit;
1413
1414 /* This never happens if RADIX_TREE_TAG_LONGS == 1 */
1415 if (tag_long < RADIX_TREE_TAG_LONGS - 1) {
1416 /* Pick tags from next element */
1417 if (tag_bit)
1418 iter->tags |= node->tags[tag][tag_long + 1] <<
1419 (BITS_PER_LONG - tag_bit);
1420 /* Clip chunk size, here only BITS_PER_LONG tags */
1421 iter->next_index = __radix_tree_iter_add(iter, BITS_PER_LONG);
1422 }
1423}
1424
1425#ifdef CONFIG_RADIX_TREE_MULTIORDER
1426static void **skip_siblings(struct radix_tree_node **nodep,
1427 void **slot, struct radix_tree_iter *iter)
1428{
1429 void *sib = node_to_entry(slot - 1);
1430
1431 while (iter->index < iter->next_index) {
1432 *nodep = rcu_dereference_raw(*slot);
1433 if (*nodep && *nodep != sib)
1434 return slot;
1435 slot++;
1436 iter->index = __radix_tree_iter_add(iter, 1);
1437 iter->tags >>= 1;
1438 }
1439
1440 *nodep = NULL;
1441 return NULL;
1442}
1443
1444void ** __radix_tree_next_slot(void **slot, struct radix_tree_iter *iter,
1445 unsigned flags)
1446{
1447 unsigned tag = flags & RADIX_TREE_ITER_TAG_MASK;
1448 struct radix_tree_node *node = rcu_dereference_raw(*slot);
1449
1450 slot = skip_siblings(&node, slot, iter);
1451
1452 while (radix_tree_is_internal_node(node)) {
1453 unsigned offset;
1454 unsigned long next_index;
1455
1456 if (node == RADIX_TREE_RETRY)
1457 return slot;
1458 node = entry_to_node(node);
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001459 iter->node = node;
Matthew Wilcox148deab2016-12-14 15:08:49 -08001460 iter->shift = node->shift;
1461
1462 if (flags & RADIX_TREE_ITER_TAGGED) {
1463 offset = radix_tree_find_next_bit(node, tag, 0);
1464 if (offset == RADIX_TREE_MAP_SIZE)
1465 return NULL;
1466 slot = &node->slots[offset];
1467 iter->index = __radix_tree_iter_add(iter, offset);
1468 set_iter_tags(iter, node, offset, tag);
1469 node = rcu_dereference_raw(*slot);
1470 } else {
1471 offset = 0;
1472 slot = &node->slots[0];
1473 for (;;) {
1474 node = rcu_dereference_raw(*slot);
1475 if (node)
1476 break;
1477 slot++;
1478 offset++;
1479 if (offset == RADIX_TREE_MAP_SIZE)
1480 return NULL;
1481 }
1482 iter->index = __radix_tree_iter_add(iter, offset);
1483 }
1484 if ((flags & RADIX_TREE_ITER_CONTIG) && (offset > 0))
1485 goto none;
1486 next_index = (iter->index | shift_maxindex(iter->shift)) + 1;
1487 if (next_index < iter->next_index)
1488 iter->next_index = next_index;
1489 }
1490
1491 return slot;
1492 none:
1493 iter->next_index = 0;
1494 return NULL;
1495}
1496EXPORT_SYMBOL(__radix_tree_next_slot);
1497#else
1498static void **skip_siblings(struct radix_tree_node **nodep,
1499 void **slot, struct radix_tree_iter *iter)
1500{
1501 return slot;
1502}
1503#endif
1504
1505void **radix_tree_iter_resume(void **slot, struct radix_tree_iter *iter)
1506{
1507 struct radix_tree_node *node;
1508
1509 slot++;
1510 iter->index = __radix_tree_iter_add(iter, 1);
1511 node = rcu_dereference_raw(*slot);
1512 skip_siblings(&node, slot, iter);
1513 iter->next_index = iter->index;
1514 iter->tags = 0;
1515 return NULL;
1516}
1517EXPORT_SYMBOL(radix_tree_iter_resume);
1518
Fengguang Wu6df8ba42007-10-16 01:24:33 -07001519/**
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001520 * radix_tree_next_chunk - find next chunk of slots for iteration
1521 *
1522 * @root: radix tree root
1523 * @iter: iterator state
1524 * @flags: RADIX_TREE_ITER_* flags and tag index
1525 * Returns: pointer to chunk first slot, or NULL if iteration is over
1526 */
1527void **radix_tree_next_chunk(struct radix_tree_root *root,
1528 struct radix_tree_iter *iter, unsigned flags)
1529{
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001530 unsigned tag = flags & RADIX_TREE_ITER_TAG_MASK;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001531 struct radix_tree_node *node, *child;
Ross Zwisler21ef5332016-05-20 17:02:26 -07001532 unsigned long index, offset, maxindex;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001533
1534 if ((flags & RADIX_TREE_ITER_TAGGED) && !root_tag_get(root, tag))
1535 return NULL;
1536
1537 /*
1538 * Catch next_index overflow after ~0UL. iter->index never overflows
1539 * during iterating; it can be zero only at the beginning.
1540 * And we cannot overflow iter->next_index in a single step,
1541 * because RADIX_TREE_MAP_SHIFT < BITS_PER_LONG.
Konstantin Khlebnikovfffaee32012-06-05 21:36:33 +04001542 *
1543 * This condition also used by radix_tree_next_slot() to stop
Matthew Wilcox91b9677c2016-12-14 15:08:31 -08001544 * contiguous iterating, and forbid switching to the next chunk.
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001545 */
1546 index = iter->next_index;
1547 if (!index && iter->index)
1548 return NULL;
1549
Ross Zwisler21ef5332016-05-20 17:02:26 -07001550 restart:
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001551 radix_tree_load_root(root, &child, &maxindex);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001552 if (index > maxindex)
1553 return NULL;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001554 if (!child)
1555 return NULL;
Ross Zwisler21ef5332016-05-20 17:02:26 -07001556
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001557 if (!radix_tree_is_internal_node(child)) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001558 /* Single-slot tree */
Ross Zwisler21ef5332016-05-20 17:02:26 -07001559 iter->index = index;
1560 iter->next_index = maxindex + 1;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001561 iter->tags = 1;
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001562 iter->node = NULL;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001563 __set_iter_shift(iter, 0);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001564 return (void **)&root->rnode;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001565 }
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001566
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001567 do {
1568 node = entry_to_node(child);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001569 offset = radix_tree_descend(node, &child, index);
Ross Zwisler21ef5332016-05-20 17:02:26 -07001570
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001571 if ((flags & RADIX_TREE_ITER_TAGGED) ?
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001572 !tag_get(node, tag, offset) : !child) {
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001573 /* Hole detected */
1574 if (flags & RADIX_TREE_ITER_CONTIG)
1575 return NULL;
1576
1577 if (flags & RADIX_TREE_ITER_TAGGED)
Matthew Wilcoxbc412fc2016-12-14 15:08:40 -08001578 offset = radix_tree_find_next_bit(node, tag,
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001579 offset + 1);
1580 else
1581 while (++offset < RADIX_TREE_MAP_SIZE) {
Ross Zwisler21ef5332016-05-20 17:02:26 -07001582 void *slot = node->slots[offset];
1583 if (is_sibling_entry(node, slot))
1584 continue;
1585 if (slot)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001586 break;
1587 }
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001588 index &= ~node_maxindex(node);
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001589 index += offset << node->shift;
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001590 /* Overflow after ~0UL */
1591 if (!index)
1592 return NULL;
1593 if (offset == RADIX_TREE_MAP_SIZE)
1594 goto restart;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001595 child = rcu_dereference_raw(node->slots[offset]);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001596 }
1597
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001598 if (!child)
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001599 goto restart;
Matthew Wilcoxe157b552016-12-14 15:09:01 -08001600 if (child == RADIX_TREE_RETRY)
1601 break;
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001602 } while (radix_tree_is_internal_node(child));
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001603
1604 /* Update the iterator state */
Matthew Wilcox8c1244d2016-05-20 17:03:36 -07001605 iter->index = (index &~ node_maxindex(node)) | (offset << node->shift);
1606 iter->next_index = (index | node_maxindex(node)) + 1;
Matthew Wilcox268f42d2016-12-14 15:08:55 -08001607 iter->node = node;
Matthew Wilcox9e85d812016-05-20 17:03:48 -07001608 __set_iter_shift(iter, node->shift);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001609
Matthew Wilcox148deab2016-12-14 15:08:49 -08001610 if (flags & RADIX_TREE_ITER_TAGGED)
1611 set_iter_tags(iter, node, offset, tag);
Konstantin Khlebnikov78c1d782012-03-28 14:42:53 -07001612
1613 return node->slots + offset;
1614}
1615EXPORT_SYMBOL(radix_tree_next_chunk);
1616
1617/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 * radix_tree_gang_lookup - perform multiple lookup on a radix tree
1619 * @root: radix tree root
1620 * @results: where the results of the lookup are placed
1621 * @first_index: start the lookup from this key
1622 * @max_items: place up to this many items at *results
1623 *
1624 * Performs an index-ascending scan of the tree for present items. Places
1625 * them at *@results and returns the number of items which were placed at
1626 * *@results.
1627 *
1628 * The implementation is naive.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001629 *
1630 * Like radix_tree_lookup, radix_tree_gang_lookup may be called under
1631 * rcu_read_lock. In this case, rather than the returned results being
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001632 * an atomic snapshot of the tree at a single point in time, the
1633 * semantics of an RCU protected gang lookup are as though multiple
1634 * radix_tree_lookups have been issued in individual locks, and results
1635 * stored in 'results'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 */
1637unsigned int
1638radix_tree_gang_lookup(struct radix_tree_root *root, void **results,
1639 unsigned long first_index, unsigned int max_items)
1640{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001641 struct radix_tree_iter iter;
1642 void **slot;
1643 unsigned int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001645 if (unlikely(!max_items))
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001646 return 0;
1647
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001648 radix_tree_for_each_slot(slot, root, &iter, first_index) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001649 results[ret] = rcu_dereference_raw(*slot);
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001650 if (!results[ret])
1651 continue;
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001652 if (radix_tree_is_internal_node(results[ret])) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001653 slot = radix_tree_iter_retry(&iter);
1654 continue;
1655 }
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001656 if (++ret == max_items)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 return ret;
1661}
1662EXPORT_SYMBOL(radix_tree_gang_lookup);
1663
Nick Piggin47feff22008-07-25 19:45:29 -07001664/**
1665 * radix_tree_gang_lookup_slot - perform multiple slot lookup on radix tree
1666 * @root: radix tree root
1667 * @results: where the results of the lookup are placed
Hugh Dickins63286502011-08-03 16:21:18 -07001668 * @indices: where their indices should be placed (but usually NULL)
Nick Piggin47feff22008-07-25 19:45:29 -07001669 * @first_index: start the lookup from this key
1670 * @max_items: place up to this many items at *results
1671 *
1672 * Performs an index-ascending scan of the tree for present items. Places
1673 * their slots at *@results and returns the number of items which were
1674 * placed at *@results.
1675 *
1676 * The implementation is naive.
1677 *
1678 * Like radix_tree_gang_lookup as far as RCU and locking goes. Slots must
1679 * be dereferenced with radix_tree_deref_slot, and if using only RCU
1680 * protection, radix_tree_deref_slot may fail requiring a retry.
1681 */
1682unsigned int
Hugh Dickins63286502011-08-03 16:21:18 -07001683radix_tree_gang_lookup_slot(struct radix_tree_root *root,
1684 void ***results, unsigned long *indices,
Nick Piggin47feff22008-07-25 19:45:29 -07001685 unsigned long first_index, unsigned int max_items)
1686{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001687 struct radix_tree_iter iter;
1688 void **slot;
1689 unsigned int ret = 0;
Nick Piggin47feff22008-07-25 19:45:29 -07001690
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001691 if (unlikely(!max_items))
Nick Piggin47feff22008-07-25 19:45:29 -07001692 return 0;
1693
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001694 radix_tree_for_each_slot(slot, root, &iter, first_index) {
1695 results[ret] = slot;
Hugh Dickins63286502011-08-03 16:21:18 -07001696 if (indices)
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001697 indices[ret] = iter.index;
1698 if (++ret == max_items)
Nick Piggin47feff22008-07-25 19:45:29 -07001699 break;
Nick Piggin47feff22008-07-25 19:45:29 -07001700 }
1701
1702 return ret;
1703}
1704EXPORT_SYMBOL(radix_tree_gang_lookup_slot);
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706/**
1707 * radix_tree_gang_lookup_tag - perform multiple lookup on a radix tree
1708 * based on a tag
1709 * @root: radix tree root
1710 * @results: where the results of the lookup are placed
1711 * @first_index: start the lookup from this key
1712 * @max_items: place up to this many items at *results
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001713 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 *
1715 * Performs an index-ascending scan of the tree for present items which
1716 * have the tag indexed by @tag set. Places the items at *@results and
1717 * returns the number of items which were placed at *@results.
1718 */
1719unsigned int
1720radix_tree_gang_lookup_tag(struct radix_tree_root *root, void **results,
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001721 unsigned long first_index, unsigned int max_items,
1722 unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001724 struct radix_tree_iter iter;
1725 void **slot;
1726 unsigned int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001728 if (unlikely(!max_items))
Nick Piggin612d6c12006-06-23 02:03:22 -07001729 return 0;
1730
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001731 radix_tree_for_each_tagged(slot, root, &iter, first_index, tag) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001732 results[ret] = rcu_dereference_raw(*slot);
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001733 if (!results[ret])
1734 continue;
Matthew Wilcoxb194d162016-05-20 17:03:30 -07001735 if (radix_tree_is_internal_node(results[ret])) {
Matthew Wilcox46437f92016-02-02 16:57:52 -08001736 slot = radix_tree_iter_retry(&iter);
1737 continue;
1738 }
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001739 if (++ret == max_items)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -08001742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return ret;
1744}
1745EXPORT_SYMBOL(radix_tree_gang_lookup_tag);
1746
1747/**
Nick Piggin47feff22008-07-25 19:45:29 -07001748 * radix_tree_gang_lookup_tag_slot - perform multiple slot lookup on a
1749 * radix tree based on a tag
1750 * @root: radix tree root
1751 * @results: where the results of the lookup are placed
1752 * @first_index: start the lookup from this key
1753 * @max_items: place up to this many items at *results
1754 * @tag: the tag index (< RADIX_TREE_MAX_TAGS)
1755 *
1756 * Performs an index-ascending scan of the tree for present items which
1757 * have the tag indexed by @tag set. Places the slots at *@results and
1758 * returns the number of slots which were placed at *@results.
1759 */
1760unsigned int
1761radix_tree_gang_lookup_tag_slot(struct radix_tree_root *root, void ***results,
1762 unsigned long first_index, unsigned int max_items,
1763 unsigned int tag)
1764{
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001765 struct radix_tree_iter iter;
1766 void **slot;
1767 unsigned int ret = 0;
Nick Piggin47feff22008-07-25 19:45:29 -07001768
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001769 if (unlikely(!max_items))
Nick Piggin47feff22008-07-25 19:45:29 -07001770 return 0;
1771
Konstantin Khlebnikovcebbd292012-03-28 14:42:53 -07001772 radix_tree_for_each_tagged(slot, root, &iter, first_index, tag) {
1773 results[ret] = slot;
1774 if (++ret == max_items)
Nick Piggin47feff22008-07-25 19:45:29 -07001775 break;
Nick Piggin47feff22008-07-25 19:45:29 -07001776 }
1777
1778 return ret;
1779}
1780EXPORT_SYMBOL(radix_tree_gang_lookup_tag_slot);
1781
Nick Piggin47feff22008-07-25 19:45:29 -07001782/**
Johannes Weiner139e5612014-04-03 14:47:54 -07001783 * __radix_tree_delete_node - try to free node after clearing a slot
1784 * @root: radix tree root
Johannes Weiner139e5612014-04-03 14:47:54 -07001785 * @node: node containing @index
1786 *
1787 * After clearing the slot at @index in @node from radix tree
1788 * rooted at @root, call this function to attempt freeing the
1789 * node and shrinking the tree.
Johannes Weiner139e5612014-04-03 14:47:54 -07001790 */
Johannes Weiner14b46872016-12-12 16:43:52 -08001791void __radix_tree_delete_node(struct radix_tree_root *root,
Johannes Weiner139e5612014-04-03 14:47:54 -07001792 struct radix_tree_node *node)
1793{
Johannes Weiner14b46872016-12-12 16:43:52 -08001794 delete_node(root, node, NULL, NULL);
Johannes Weiner139e5612014-04-03 14:47:54 -07001795}
1796
Matthew Wilcox57578c22016-05-20 17:01:54 -07001797static inline void delete_sibling_entries(struct radix_tree_node *node,
1798 void *ptr, unsigned offset)
1799{
1800#ifdef CONFIG_RADIX_TREE_MULTIORDER
1801 int i;
1802 for (i = 1; offset + i < RADIX_TREE_MAP_SIZE; i++) {
1803 if (node->slots[offset + i] != ptr)
1804 break;
1805 node->slots[offset + i] = NULL;
1806 node->count--;
1807 }
1808#endif
1809}
1810
Johannes Weiner139e5612014-04-03 14:47:54 -07001811/**
Johannes Weiner53c59f22014-04-03 14:47:39 -07001812 * radix_tree_delete_item - delete an item from a radix tree
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 * @root: radix tree root
1814 * @index: index key
Johannes Weiner53c59f22014-04-03 14:47:39 -07001815 * @item: expected item
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 *
Johannes Weiner53c59f22014-04-03 14:47:39 -07001817 * Remove @item at @index from the radix tree rooted at @root.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 *
Johannes Weiner53c59f22014-04-03 14:47:39 -07001819 * Returns the address of the deleted item, or NULL if it was not present
1820 * or the entry at the given @index was not @item.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 */
Johannes Weiner53c59f22014-04-03 14:47:39 -07001822void *radix_tree_delete_item(struct radix_tree_root *root,
1823 unsigned long index, void *item)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
Johannes Weiner139e5612014-04-03 14:47:54 -07001825 struct radix_tree_node *node;
Matthew Wilcox57578c22016-05-20 17:01:54 -07001826 unsigned int offset;
Johannes Weiner139e5612014-04-03 14:47:54 -07001827 void **slot;
1828 void *entry;
Nick Piggind5274262006-01-08 01:01:41 -08001829 int tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Johannes Weiner139e5612014-04-03 14:47:54 -07001831 entry = __radix_tree_lookup(root, index, &node, &slot);
1832 if (!entry)
1833 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Johannes Weiner139e5612014-04-03 14:47:54 -07001835 if (item && entry != item)
1836 return NULL;
1837
1838 if (!node) {
Nick Piggin612d6c12006-06-23 02:03:22 -07001839 root_tag_clear_all(root);
1840 root->rnode = NULL;
Johannes Weiner139e5612014-04-03 14:47:54 -07001841 return entry;
Nick Piggin612d6c12006-06-23 02:03:22 -07001842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Matthew Wilcox29e09672016-05-20 17:02:02 -07001844 offset = get_slot_offset(node, slot);
Johannes Weiner53c59f22014-04-03 14:47:39 -07001845
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001846 /* Clear all tags associated with the item to be deleted. */
1847 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1848 node_tag_clear(root, node, tag, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Matthew Wilcoxa4db4dc2016-05-20 17:03:24 -07001850 delete_sibling_entries(node, node_to_entry(slot), offset);
Johannes Weiner4d693d02016-12-12 16:43:49 -08001851 __radix_tree_replace(root, node, slot, NULL, NULL, NULL);
Christoph Lameter201b6262005-09-06 15:16:46 -07001852
Johannes Weiner139e5612014-04-03 14:47:54 -07001853 return entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854}
Johannes Weiner53c59f22014-04-03 14:47:39 -07001855EXPORT_SYMBOL(radix_tree_delete_item);
1856
1857/**
1858 * radix_tree_delete - delete an item from a radix tree
1859 * @root: radix tree root
1860 * @index: index key
1861 *
1862 * Remove the item at @index from the radix tree rooted at @root.
1863 *
1864 * Returns the address of the deleted item, or NULL if it was not present.
1865 */
1866void *radix_tree_delete(struct radix_tree_root *root, unsigned long index)
1867{
1868 return radix_tree_delete_item(root, index, NULL);
1869}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870EXPORT_SYMBOL(radix_tree_delete);
1871
Johannes Weinerd3798ae2016-10-04 22:02:08 +02001872void radix_tree_clear_tags(struct radix_tree_root *root,
1873 struct radix_tree_node *node,
1874 void **slot)
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001875{
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001876 if (node) {
1877 unsigned int tag, offset = get_slot_offset(node, slot);
1878 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++)
1879 node_tag_clear(root, node, tag, offset);
1880 } else {
1881 /* Clear root node tags */
1882 root->gfp_mask &= __GFP_BITS_MASK;
1883 }
Matthew Wilcoxd604c322016-05-20 17:03:45 -07001884}
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886/**
1887 * radix_tree_tagged - test whether any items in the tree are tagged
1888 * @root: radix tree root
1889 * @tag: tag to test
1890 */
Jonathan Corbetdaff89f2006-03-25 03:08:05 -08001891int radix_tree_tagged(struct radix_tree_root *root, unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
Nick Piggin612d6c12006-06-23 02:03:22 -07001893 return root_tag_get(root, tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894}
1895EXPORT_SYMBOL(radix_tree_tagged);
1896
1897static void
Johannes Weiner449dd692014-04-03 14:47:56 -07001898radix_tree_node_ctor(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
Johannes Weiner449dd692014-04-03 14:47:56 -07001900 struct radix_tree_node *node = arg;
1901
1902 memset(node, 0, sizeof(*node));
1903 INIT_LIST_HEAD(&node->private_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
1905
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -07001906static __init unsigned long __maxindex(unsigned int height)
1907{
1908 unsigned int width = height * RADIX_TREE_MAP_SHIFT;
1909 int shift = RADIX_TREE_INDEX_BITS - width;
1910
1911 if (shift < 0)
1912 return ~0UL;
1913 if (shift >= BITS_PER_LONG)
1914 return 0UL;
1915 return ~0UL >> shift;
1916}
1917
1918static __init void radix_tree_init_maxnodes(void)
1919{
1920 unsigned long height_to_maxindex[RADIX_TREE_MAX_PATH + 1];
1921 unsigned int i, j;
1922
1923 for (i = 0; i < ARRAY_SIZE(height_to_maxindex); i++)
1924 height_to_maxindex[i] = __maxindex(i);
1925 for (i = 0; i < ARRAY_SIZE(height_to_maxnodes); i++) {
1926 for (j = i; j > 0; j--)
1927 height_to_maxnodes[i] += height_to_maxindex[j - 1] + 1;
1928 }
1929}
1930
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01001931static int radix_tree_cpu_dead(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001933 struct radix_tree_preload *rtp;
1934 struct radix_tree_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001936 /* Free per-cpu pool of preloaded nodes */
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01001937 rtp = &per_cpu(radix_tree_preloads, cpu);
1938 while (rtp->nr) {
1939 node = rtp->nodes;
1940 rtp->nodes = node->private_data;
1941 kmem_cache_free(radix_tree_node_cachep, node);
1942 rtp->nr--;
Matthew Wilcox2fcd9002016-05-20 17:03:04 -07001943 }
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01001944 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947void __init radix_tree_init(void)
1948{
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01001949 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 radix_tree_node_cachep = kmem_cache_create("radix_tree_node",
1951 sizeof(struct radix_tree_node), 0,
Christoph Lameter488514d2008-04-28 02:12:05 -07001952 SLAB_PANIC | SLAB_RECLAIM_ACCOUNT,
1953 radix_tree_node_ctor);
Kirill A. Shutemovc78c66d2016-07-26 15:26:02 -07001954 radix_tree_init_maxnodes();
Sebastian Andrzej Siewiord544abd2016-11-03 15:50:01 +01001955 ret = cpuhp_setup_state_nocalls(CPUHP_RADIX_DEAD, "lib/radix:dead",
1956 NULL, radix_tree_cpu_dead);
1957 WARN_ON(ret < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}