blob: d66e75bfc1a085e2804592005c9dbb9f521786c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * 2002-10-18 written by Jim Houston jim.houston@ccur.com
3 * Copyright (C) 2002 by Concurrent Computer Corporation
4 * Distributed under the GNU GPL license version 2.
5 *
6 * Modified by George Anzinger to reuse immediately and to use
7 * find bit instructions. Also removed _irq on spinlocks.
8 *
Nadia Derbey3219b3b2008-07-25 01:48:00 -07009 * Modified by Nadia Derbey to make it RCU safe.
10 *
Jesper Juhle15ae2d2005-10-30 15:02:14 -080011 * Small id to pointer translation service.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
Jesper Juhle15ae2d2005-10-30 15:02:14 -080013 * It uses a radix tree like structure as a sparse array indexed
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * by the id to obtain the pointer. The bitmap makes allocating
Jesper Juhle15ae2d2005-10-30 15:02:14 -080015 * a new id quick.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * You call it to allocate an id (an int) an associate with that id a
18 * pointer or what ever, we treat it as a (void *). You can pass this
19 * id to a user for him to pass back at a later time. You then pass
20 * that id to this code and it returns your pointer.
21
Jesper Juhle15ae2d2005-10-30 15:02:14 -080022 * You can release ids at any time. When all ids are released, most of
Fengguang Wu125c4c72012-10-04 17:13:15 -070023 * the memory is returned (we keep MAX_IDR_FREE) in a local pool so we
Jesper Juhle15ae2d2005-10-30 15:02:14 -080024 * don't need to go to the memory "store" during an id allocate, just
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * so you don't need to be too concerned about locking and conflicts
26 * with the slab allocator.
27 */
28
29#ifndef TEST // to test in user space...
30#include <linux/slab.h>
31#include <linux/init.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050032#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#endif
Jeff Mahoney5806f072006-06-26 00:27:19 -070034#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/string.h>
36#include <linux/idr.h>
Rusty Russell88eca022011-08-03 16:21:06 -070037#include <linux/spinlock.h>
Tejun Heod5c74092013-02-27 17:03:55 -080038#include <linux/percpu.h>
39#include <linux/hardirq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Tejun Heoe8c8d1b2013-02-27 17:05:04 -080041#define MAX_IDR_SHIFT (sizeof(int) * 8 - 1)
42#define MAX_IDR_BIT (1U << MAX_IDR_SHIFT)
43
44/* Leave the possibility of an incomplete final layer */
45#define MAX_IDR_LEVEL ((MAX_IDR_SHIFT + IDR_BITS - 1) / IDR_BITS)
46
47/* Number of id_layer structs to leave in free list */
48#define MAX_IDR_FREE (MAX_IDR_LEVEL * 2)
49
Christoph Lametere18b8902006-12-06 20:33:20 -080050static struct kmem_cache *idr_layer_cache;
Tejun Heod5c74092013-02-27 17:03:55 -080051static DEFINE_PER_CPU(struct idr_layer *, idr_preload_head);
52static DEFINE_PER_CPU(int, idr_preload_cnt);
Rusty Russell88eca022011-08-03 16:21:06 -070053static DEFINE_SPINLOCK(simple_ida_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Tejun Heo326cf0f2013-02-27 17:05:02 -080055/* the maximum ID which can be allocated given idr->layers */
56static int idr_max(int layers)
57{
58 int bits = min_t(int, layers * IDR_BITS, MAX_IDR_SHIFT);
59
60 return (1 << bits) - 1;
61}
62
Nadia Derbey4ae53782008-07-25 01:47:58 -070063static struct idr_layer *get_from_free_list(struct idr *idp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
65 struct idr_layer *p;
Roland Dreierc259cc22006-07-14 00:24:23 -070066 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Roland Dreierc259cc22006-07-14 00:24:23 -070068 spin_lock_irqsave(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if ((p = idp->id_free)) {
70 idp->id_free = p->ary[0];
71 idp->id_free_cnt--;
72 p->ary[0] = NULL;
73 }
Roland Dreierc259cc22006-07-14 00:24:23 -070074 spin_unlock_irqrestore(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return(p);
76}
77
Tejun Heod5c74092013-02-27 17:03:55 -080078/**
79 * idr_layer_alloc - allocate a new idr_layer
80 * @gfp_mask: allocation mask
81 * @layer_idr: optional idr to allocate from
82 *
83 * If @layer_idr is %NULL, directly allocate one using @gfp_mask or fetch
84 * one from the per-cpu preload buffer. If @layer_idr is not %NULL, fetch
85 * an idr_layer from @idr->id_free.
86 *
87 * @layer_idr is to maintain backward compatibility with the old alloc
88 * interface - idr_pre_get() and idr_get_new*() - and will be removed
89 * together with per-pool preload buffer.
90 */
91static struct idr_layer *idr_layer_alloc(gfp_t gfp_mask, struct idr *layer_idr)
92{
93 struct idr_layer *new;
94
95 /* this is the old path, bypass to get_from_free_list() */
96 if (layer_idr)
97 return get_from_free_list(layer_idr);
98
99 /* try to allocate directly from kmem_cache */
100 new = kmem_cache_zalloc(idr_layer_cache, gfp_mask);
101 if (new)
102 return new;
103
104 /*
105 * Try to fetch one from the per-cpu preload buffer if in process
106 * context. See idr_preload() for details.
107 */
108 if (in_interrupt())
109 return NULL;
110
111 preempt_disable();
112 new = __this_cpu_read(idr_preload_head);
113 if (new) {
114 __this_cpu_write(idr_preload_head, new->ary[0]);
115 __this_cpu_dec(idr_preload_cnt);
116 new->ary[0] = NULL;
117 }
118 preempt_enable();
119 return new;
120}
121
Nadia Derbeycf481c22008-07-25 01:48:02 -0700122static void idr_layer_rcu_free(struct rcu_head *head)
123{
124 struct idr_layer *layer;
125
126 layer = container_of(head, struct idr_layer, rcu_head);
127 kmem_cache_free(idr_layer_cache, layer);
128}
129
130static inline void free_layer(struct idr_layer *p)
131{
132 call_rcu(&p->rcu_head, idr_layer_rcu_free);
133}
134
Sonny Rao1eec0052006-06-25 05:49:34 -0700135/* only called when idp->lock is held */
Nadia Derbey4ae53782008-07-25 01:47:58 -0700136static void __move_to_free_list(struct idr *idp, struct idr_layer *p)
Sonny Rao1eec0052006-06-25 05:49:34 -0700137{
138 p->ary[0] = idp->id_free;
139 idp->id_free = p;
140 idp->id_free_cnt++;
141}
142
Nadia Derbey4ae53782008-07-25 01:47:58 -0700143static void move_to_free_list(struct idr *idp, struct idr_layer *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Roland Dreierc259cc22006-07-14 00:24:23 -0700145 unsigned long flags;
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /*
148 * Depends on the return element being zeroed.
149 */
Roland Dreierc259cc22006-07-14 00:24:23 -0700150 spin_lock_irqsave(&idp->lock, flags);
Nadia Derbey4ae53782008-07-25 01:47:58 -0700151 __move_to_free_list(idp, p);
Roland Dreierc259cc22006-07-14 00:24:23 -0700152 spin_unlock_irqrestore(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900155static void idr_mark_full(struct idr_layer **pa, int id)
156{
157 struct idr_layer *p = pa[0];
158 int l = 0;
159
Tejun Heo1d9b2e12013-02-27 17:05:05 -0800160 __set_bit(id & IDR_MASK, p->bitmap);
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900161 /*
162 * If this layer is full mark the bit in the layer above to
163 * show that this part of the radix tree is full. This may
164 * complete the layer above and require walking up the radix
165 * tree.
166 */
Tejun Heo1d9b2e12013-02-27 17:05:05 -0800167 while (bitmap_full(p->bitmap, IDR_SIZE)) {
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900168 if (!(p = pa[++l]))
169 break;
170 id = id >> IDR_BITS;
Tejun Heo1d9b2e12013-02-27 17:05:05 -0800171 __set_bit((id & IDR_MASK), p->bitmap);
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900172 }
173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/**
Randy Dunlap56083ab2010-10-26 14:19:08 -0700176 * idr_pre_get - reserve resources for idr allocation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * @idp: idr handle
178 * @gfp_mask: memory allocation flags
179 *
Naohiro Aota066a9be2010-10-26 14:23:03 -0700180 * This function should be called prior to calling the idr_get_new* functions.
181 * It preallocates enough memory to satisfy the worst possible allocation. The
182 * caller should pass in GFP_KERNEL if possible. This of course requires that
183 * no spinning locks be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700185 * If the system is REALLY out of memory this function returns %0,
186 * otherwise %1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 */
Al Virofd4f2df2005-10-21 03:18:50 -0400188int idr_pre_get(struct idr *idp, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Fengguang Wu125c4c72012-10-04 17:13:15 -0700190 while (idp->id_free_cnt < MAX_IDR_FREE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 struct idr_layer *new;
Andrew Morton5b019e92009-01-15 13:51:21 -0800192 new = kmem_cache_zalloc(idr_layer_cache, gfp_mask);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800193 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return (0);
Nadia Derbey4ae53782008-07-25 01:47:58 -0700195 move_to_free_list(idp, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197 return 1;
198}
199EXPORT_SYMBOL(idr_pre_get);
200
Tejun Heo12d1b432013-02-27 17:03:53 -0800201/**
202 * sub_alloc - try to allocate an id without growing the tree depth
203 * @idp: idr handle
204 * @starting_id: id to start search at
205 * @id: pointer to the allocated handle
206 * @pa: idr_layer[MAX_IDR_LEVEL] used as backtrack buffer
Tejun Heod5c74092013-02-27 17:03:55 -0800207 * @gfp_mask: allocation mask for idr_layer_alloc()
208 * @layer_idr: optional idr passed to idr_layer_alloc()
Tejun Heo12d1b432013-02-27 17:03:53 -0800209 *
210 * Allocate an id in range [@starting_id, INT_MAX] from @idp without
211 * growing its depth. Returns
212 *
213 * the allocated id >= 0 if successful,
214 * -EAGAIN if the tree needs to grow for allocation to succeed,
215 * -ENOSPC if the id space is exhausted,
216 * -ENOMEM if more idr_layers need to be allocated.
217 */
Tejun Heod5c74092013-02-27 17:03:55 -0800218static int sub_alloc(struct idr *idp, int *starting_id, struct idr_layer **pa,
219 gfp_t gfp_mask, struct idr *layer_idr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 int n, m, sh;
222 struct idr_layer *p, *new;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900223 int l, id, oid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 id = *starting_id;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900226 restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 p = idp->top;
228 l = idp->layers;
229 pa[l--] = NULL;
230 while (1) {
231 /*
232 * We run around this while until we reach the leaf node...
233 */
234 n = (id >> (IDR_BITS*l)) & IDR_MASK;
Tejun Heo1d9b2e12013-02-27 17:05:05 -0800235 m = find_next_zero_bit(p->bitmap, IDR_SIZE, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (m == IDR_SIZE) {
237 /* no space available go back to previous layer. */
238 l++;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900239 oid = id;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800240 id = (id | ((1 << (IDR_BITS * l)) - 1)) + 1;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900241
242 /* if already at the top layer, we need to grow */
Tejun Heod2e72762010-02-22 12:44:19 -0800243 if (id >= 1 << (idp->layers * IDR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 *starting_id = id;
Tejun Heo12d1b432013-02-27 17:03:53 -0800245 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
Tejun Heod2e72762010-02-22 12:44:19 -0800247 p = pa[l];
248 BUG_ON(!p);
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900249
250 /* If we need to go up one layer, continue the
251 * loop; otherwise, restart from the top.
252 */
253 sh = IDR_BITS * (l + 1);
254 if (oid >> sh == id >> sh)
255 continue;
256 else
257 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
259 if (m != n) {
260 sh = IDR_BITS*l;
261 id = ((id >> sh) ^ n ^ m) << sh;
262 }
Fengguang Wu125c4c72012-10-04 17:13:15 -0700263 if ((id >= MAX_IDR_BIT) || (id < 0))
Tejun Heo12d1b432013-02-27 17:03:53 -0800264 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (l == 0)
266 break;
267 /*
268 * Create the layer below if it is missing.
269 */
270 if (!p->ary[m]) {
Tejun Heod5c74092013-02-27 17:03:55 -0800271 new = idr_layer_alloc(gfp_mask, layer_idr);
Nadia Derbey4ae53782008-07-25 01:47:58 -0700272 if (!new)
Tejun Heo12d1b432013-02-27 17:03:53 -0800273 return -ENOMEM;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800274 new->layer = l-1;
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700275 rcu_assign_pointer(p->ary[m], new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 p->count++;
277 }
278 pa[l--] = p;
279 p = p->ary[m];
280 }
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900281
282 pa[l] = p;
283 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900286static int idr_get_empty_slot(struct idr *idp, int starting_id,
Tejun Heod5c74092013-02-27 17:03:55 -0800287 struct idr_layer **pa, gfp_t gfp_mask,
288 struct idr *layer_idr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 struct idr_layer *p, *new;
291 int layers, v, id;
Roland Dreierc259cc22006-07-14 00:24:23 -0700292 unsigned long flags;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 id = starting_id;
295build_up:
296 p = idp->top;
297 layers = idp->layers;
298 if (unlikely(!p)) {
Tejun Heod5c74092013-02-27 17:03:55 -0800299 if (!(p = idr_layer_alloc(gfp_mask, layer_idr)))
Tejun Heo12d1b432013-02-27 17:03:53 -0800300 return -ENOMEM;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800301 p->layer = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 layers = 1;
303 }
304 /*
305 * Add a new layer to the top of the tree if the requested
306 * id is larger than the currently allocated space.
307 */
Tejun Heo326cf0f2013-02-27 17:05:02 -0800308 while (id > idr_max(layers)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 layers++;
Manfred Spraul711a49a2008-12-10 18:17:06 +0100310 if (!p->count) {
311 /* special case: if the tree is currently empty,
312 * then we grow the tree by moving the top node
313 * upwards.
314 */
315 p->layer++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 continue;
Manfred Spraul711a49a2008-12-10 18:17:06 +0100317 }
Tejun Heod5c74092013-02-27 17:03:55 -0800318 if (!(new = idr_layer_alloc(gfp_mask, layer_idr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /*
320 * The allocation failed. If we built part of
321 * the structure tear it down.
322 */
Roland Dreierc259cc22006-07-14 00:24:23 -0700323 spin_lock_irqsave(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 for (new = p; p && p != idp->top; new = p) {
325 p = p->ary[0];
326 new->ary[0] = NULL;
Tejun Heo1d9b2e12013-02-27 17:05:05 -0800327 new->count = 0;
328 bitmap_clear(new->bitmap, 0, IDR_SIZE);
Nadia Derbey4ae53782008-07-25 01:47:58 -0700329 __move_to_free_list(idp, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Roland Dreierc259cc22006-07-14 00:24:23 -0700331 spin_unlock_irqrestore(&idp->lock, flags);
Tejun Heo12d1b432013-02-27 17:03:53 -0800332 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334 new->ary[0] = p;
335 new->count = 1;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800336 new->layer = layers-1;
Tejun Heo1d9b2e12013-02-27 17:05:05 -0800337 if (bitmap_full(p->bitmap, IDR_SIZE))
338 __set_bit(0, new->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 p = new;
340 }
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700341 rcu_assign_pointer(idp->top, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 idp->layers = layers;
Tejun Heod5c74092013-02-27 17:03:55 -0800343 v = sub_alloc(idp, &id, pa, gfp_mask, layer_idr);
Tejun Heo12d1b432013-02-27 17:03:53 -0800344 if (v == -EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 goto build_up;
346 return(v);
347}
348
Tejun Heo3594eb22013-02-27 17:03:54 -0800349/*
350 * @id and @pa are from a successful allocation from idr_get_empty_slot().
351 * Install the user pointer @ptr and mark the slot full.
352 */
353static void idr_fill_slot(void *ptr, int id, struct idr_layer **pa)
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900354{
Tejun Heo3594eb22013-02-27 17:03:54 -0800355 rcu_assign_pointer(pa[0]->ary[id & IDR_MASK], (struct idr_layer *)ptr);
356 pa[0]->count++;
357 idr_mark_full(pa, id);
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900358}
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360/**
John McCutchan7c657f22005-08-26 14:02:04 -0400361 * idr_get_new_above - allocate new idr entry above or equal to a start id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 * @idp: idr handle
Thadeu Lima de Souza Cascardo94e2bd62009-10-16 15:20:49 +0200363 * @ptr: pointer you want associated with the id
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900364 * @starting_id: id to start search at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * @id: pointer to the allocated handle
366 *
367 * This is the allocate id function. It should be called with any
368 * required locks.
369 *
Naohiro Aota066a9be2010-10-26 14:23:03 -0700370 * If allocation from IDR's private freelist fails, idr_get_new_above() will
Randy Dunlap56083ab2010-10-26 14:19:08 -0700371 * return %-EAGAIN. The caller should retry the idr_pre_get() call to refill
Naohiro Aota066a9be2010-10-26 14:23:03 -0700372 * IDR's preallocation and then retry the idr_get_new_above() call.
373 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700374 * If the idr is full idr_get_new_above() will return %-ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700376 * @id returns a value in the range @starting_id ... %0x7fffffff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 */
378int idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id)
379{
Tejun Heo326cf0f2013-02-27 17:05:02 -0800380 struct idr_layer *pa[MAX_IDR_LEVEL + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 int rv;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800382
Tejun Heod5c74092013-02-27 17:03:55 -0800383 rv = idr_get_empty_slot(idp, starting_id, pa, 0, idp);
Nadia Derbey944ca052008-07-25 01:47:59 -0700384 if (rv < 0)
Tejun Heo12d1b432013-02-27 17:03:53 -0800385 return rv == -ENOMEM ? -EAGAIN : rv;
Tejun Heo3594eb22013-02-27 17:03:54 -0800386
387 idr_fill_slot(ptr, rv, pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 *id = rv;
389 return 0;
390}
391EXPORT_SYMBOL(idr_get_new_above);
392
Tejun Heod5c74092013-02-27 17:03:55 -0800393/**
394 * idr_preload - preload for idr_alloc()
395 * @gfp_mask: allocation mask to use for preloading
396 *
397 * Preload per-cpu layer buffer for idr_alloc(). Can only be used from
398 * process context and each idr_preload() invocation should be matched with
399 * idr_preload_end(). Note that preemption is disabled while preloaded.
400 *
401 * The first idr_alloc() in the preloaded section can be treated as if it
402 * were invoked with @gfp_mask used for preloading. This allows using more
403 * permissive allocation masks for idrs protected by spinlocks.
404 *
405 * For example, if idr_alloc() below fails, the failure can be treated as
406 * if idr_alloc() were called with GFP_KERNEL rather than GFP_NOWAIT.
407 *
408 * idr_preload(GFP_KERNEL);
409 * spin_lock(lock);
410 *
411 * id = idr_alloc(idr, ptr, start, end, GFP_NOWAIT);
412 *
413 * spin_unlock(lock);
414 * idr_preload_end();
415 * if (id < 0)
416 * error;
417 */
418void idr_preload(gfp_t gfp_mask)
419{
420 /*
421 * Consuming preload buffer from non-process context breaks preload
422 * allocation guarantee. Disallow usage from those contexts.
423 */
424 WARN_ON_ONCE(in_interrupt());
425 might_sleep_if(gfp_mask & __GFP_WAIT);
426
427 preempt_disable();
428
429 /*
430 * idr_alloc() is likely to succeed w/o full idr_layer buffer and
431 * return value from idr_alloc() needs to be checked for failure
432 * anyway. Silently give up if allocation fails. The caller can
433 * treat failures from idr_alloc() as if idr_alloc() were called
434 * with @gfp_mask which should be enough.
435 */
436 while (__this_cpu_read(idr_preload_cnt) < MAX_IDR_FREE) {
437 struct idr_layer *new;
438
439 preempt_enable();
440 new = kmem_cache_zalloc(idr_layer_cache, gfp_mask);
441 preempt_disable();
442 if (!new)
443 break;
444
445 /* link the new one to per-cpu preload list */
446 new->ary[0] = __this_cpu_read(idr_preload_head);
447 __this_cpu_write(idr_preload_head, new);
448 __this_cpu_inc(idr_preload_cnt);
449 }
450}
451EXPORT_SYMBOL(idr_preload);
452
453/**
454 * idr_alloc - allocate new idr entry
455 * @idr: the (initialized) idr
456 * @ptr: pointer to be associated with the new id
457 * @start: the minimum id (inclusive)
458 * @end: the maximum id (exclusive, <= 0 for max)
459 * @gfp_mask: memory allocation flags
460 *
461 * Allocate an id in [start, end) and associate it with @ptr. If no ID is
462 * available in the specified range, returns -ENOSPC. On memory allocation
463 * failure, returns -ENOMEM.
464 *
465 * Note that @end is treated as max when <= 0. This is to always allow
466 * using @start + N as @end as long as N is inside integer range.
467 *
468 * The user is responsible for exclusively synchronizing all operations
469 * which may modify @idr. However, read-only accesses such as idr_find()
470 * or iteration can be performed under RCU read lock provided the user
471 * destroys @ptr in RCU-safe way after removal from idr.
472 */
473int idr_alloc(struct idr *idr, void *ptr, int start, int end, gfp_t gfp_mask)
474{
475 int max = end > 0 ? end - 1 : INT_MAX; /* inclusive upper limit */
Tejun Heo326cf0f2013-02-27 17:05:02 -0800476 struct idr_layer *pa[MAX_IDR_LEVEL + 1];
Tejun Heod5c74092013-02-27 17:03:55 -0800477 int id;
478
479 might_sleep_if(gfp_mask & __GFP_WAIT);
480
481 /* sanity checks */
482 if (WARN_ON_ONCE(start < 0))
483 return -EINVAL;
484 if (unlikely(max < start))
485 return -ENOSPC;
486
487 /* allocate id */
488 id = idr_get_empty_slot(idr, start, pa, gfp_mask, NULL);
489 if (unlikely(id < 0))
490 return id;
491 if (unlikely(id > max))
492 return -ENOSPC;
493
494 idr_fill_slot(ptr, id, pa);
495 return id;
496}
497EXPORT_SYMBOL_GPL(idr_alloc);
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499static void idr_remove_warning(int id)
500{
Nadia Derbeyf098ad62008-07-25 01:47:59 -0700501 printk(KERN_WARNING
502 "idr_remove called for id=%d which is not allocated.\n", id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 dump_stack();
504}
505
506static void sub_remove(struct idr *idp, int shift, int id)
507{
508 struct idr_layer *p = idp->top;
Tejun Heo326cf0f2013-02-27 17:05:02 -0800509 struct idr_layer **pa[MAX_IDR_LEVEL + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 struct idr_layer ***paa = &pa[0];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700511 struct idr_layer *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 int n;
513
514 *paa = NULL;
515 *++paa = &idp->top;
516
517 while ((shift > 0) && p) {
518 n = (id >> shift) & IDR_MASK;
Tejun Heo1d9b2e12013-02-27 17:05:05 -0800519 __clear_bit(n, p->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 *++paa = &p->ary[n];
521 p = p->ary[n];
522 shift -= IDR_BITS;
523 }
524 n = id & IDR_MASK;
Tejun Heo1d9b2e12013-02-27 17:05:05 -0800525 if (likely(p != NULL && test_bit(n, p->bitmap))) {
526 __clear_bit(n, p->bitmap);
Nadia Derbeycf481c22008-07-25 01:48:02 -0700527 rcu_assign_pointer(p->ary[n], NULL);
528 to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 while(*paa && ! --((**paa)->count)){
Nadia Derbeycf481c22008-07-25 01:48:02 -0700530 if (to_free)
531 free_layer(to_free);
532 to_free = **paa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 **paa-- = NULL;
534 }
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800535 if (!*paa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 idp->layers = 0;
Nadia Derbeycf481c22008-07-25 01:48:02 -0700537 if (to_free)
538 free_layer(to_free);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800539 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 idr_remove_warning(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
543/**
Randy Dunlap56083ab2010-10-26 14:19:08 -0700544 * idr_remove - remove the given id and free its slot
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800545 * @idp: idr handle
546 * @id: unique key
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 */
548void idr_remove(struct idr *idp, int id)
549{
550 struct idr_layer *p;
Nadia Derbeycf481c22008-07-25 01:48:02 -0700551 struct idr_layer *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Tejun Heoe8c8d1b2013-02-27 17:05:04 -0800553 if (WARN_ON_ONCE(id < 0))
554 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 sub_remove(idp, (idp->layers - 1) * IDR_BITS, id);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800557 if (idp->top && idp->top->count == 1 && (idp->layers > 1) &&
Nadia Derbeycf481c22008-07-25 01:48:02 -0700558 idp->top->ary[0]) {
559 /*
560 * Single child at leftmost slot: we can shrink the tree.
561 * This level is not needed anymore since when layers are
562 * inserted, they are inserted at the top of the existing
563 * tree.
564 */
565 to_free = idp->top;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 p = idp->top->ary[0];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700567 rcu_assign_pointer(idp->top, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 --idp->layers;
Tejun Heo1d9b2e12013-02-27 17:05:05 -0800569 to_free->count = 0;
570 bitmap_clear(to_free->bitmap, 0, IDR_SIZE);
Nadia Derbeycf481c22008-07-25 01:48:02 -0700571 free_layer(to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
Fengguang Wu125c4c72012-10-04 17:13:15 -0700573 while (idp->id_free_cnt >= MAX_IDR_FREE) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700574 p = get_from_free_list(idp);
Nadia Derbeycf481c22008-07-25 01:48:02 -0700575 /*
576 * Note: we don't call the rcu callback here, since the only
577 * layers that fall into the freelist are those that have been
578 * preallocated.
579 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 kmem_cache_free(idr_layer_cache, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
Nadia Derbeyaf8e2a42008-05-01 04:34:57 -0700582 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584EXPORT_SYMBOL(idr_remove);
585
Tejun Heofe6e24e2013-02-27 17:03:50 -0800586void __idr_remove_all(struct idr *idp)
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700587{
Oleg Nesterov6ace06dc2007-07-31 00:39:19 -0700588 int n, id, max;
Imre Deak2dcb22b2010-05-26 14:43:38 -0700589 int bt_mask;
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700590 struct idr_layer *p;
Tejun Heo326cf0f2013-02-27 17:05:02 -0800591 struct idr_layer *pa[MAX_IDR_LEVEL + 1];
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700592 struct idr_layer **paa = &pa[0];
593
594 n = idp->layers * IDR_BITS;
595 p = idp->top;
Paul E. McKenney1b233362009-03-10 12:55:52 -0700596 rcu_assign_pointer(idp->top, NULL);
Tejun Heo326cf0f2013-02-27 17:05:02 -0800597 max = idr_max(idp->layers);
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700598
599 id = 0;
Tejun Heo326cf0f2013-02-27 17:05:02 -0800600 while (id >= 0 && id <= max) {
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700601 while (n > IDR_BITS && p) {
602 n -= IDR_BITS;
603 *paa++ = p;
604 p = p->ary[(id >> n) & IDR_MASK];
605 }
606
Imre Deak2dcb22b2010-05-26 14:43:38 -0700607 bt_mask = id;
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700608 id += 1 << n;
Imre Deak2dcb22b2010-05-26 14:43:38 -0700609 /* Get the highest bit that the above add changed from 0->1. */
610 while (n < fls(id ^ bt_mask)) {
Nadia Derbeycf481c22008-07-25 01:48:02 -0700611 if (p)
612 free_layer(p);
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700613 n += IDR_BITS;
614 p = *--paa;
615 }
616 }
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700617 idp->layers = 0;
618}
Tejun Heofe6e24e2013-02-27 17:03:50 -0800619EXPORT_SYMBOL(__idr_remove_all);
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700620
621/**
Andrew Morton8d3b3592005-10-23 12:57:18 -0700622 * idr_destroy - release all cached layers within an idr tree
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900623 * @idp: idr handle
Tejun Heo9bb26bc2013-02-27 17:03:35 -0800624 *
625 * Free all id mappings and all idp_layers. After this function, @idp is
626 * completely unused and can be freed / recycled. The caller is
627 * responsible for ensuring that no one else accesses @idp during or after
628 * idr_destroy().
629 *
630 * A typical clean-up sequence for objects stored in an idr tree will use
631 * idr_for_each() to free all objects, if necessay, then idr_destroy() to
632 * free up the id mappings and cached idr_layers.
Andrew Morton8d3b3592005-10-23 12:57:18 -0700633 */
634void idr_destroy(struct idr *idp)
635{
Tejun Heofe6e24e2013-02-27 17:03:50 -0800636 __idr_remove_all(idp);
Tejun Heo9bb26bc2013-02-27 17:03:35 -0800637
Andrew Morton8d3b3592005-10-23 12:57:18 -0700638 while (idp->id_free_cnt) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700639 struct idr_layer *p = get_from_free_list(idp);
Andrew Morton8d3b3592005-10-23 12:57:18 -0700640 kmem_cache_free(idr_layer_cache, p);
641 }
642}
643EXPORT_SYMBOL(idr_destroy);
644
645/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 * idr_find - return pointer for given id
647 * @idp: idr handle
648 * @id: lookup key
649 *
650 * Return the pointer given the id it has been registered with. A %NULL
651 * return indicates that @id is not valid or you passed %NULL in
652 * idr_get_new().
653 *
Nadia Derbeyf9c46d62008-07-25 01:48:01 -0700654 * This function can be called under rcu_read_lock(), given that the leaf
655 * pointers lifetimes are correctly managed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
657void *idr_find(struct idr *idp, int id)
658{
659 int n;
660 struct idr_layer *p;
661
Tejun Heoe8c8d1b2013-02-27 17:05:04 -0800662 if (WARN_ON_ONCE(id < 0))
663 return NULL;
664
Paul E. McKenney96be7532010-02-22 17:04:55 -0800665 p = rcu_dereference_raw(idp->top);
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800666 if (!p)
667 return NULL;
668 n = (p->layer+1) * IDR_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Tejun Heo326cf0f2013-02-27 17:05:02 -0800670 if (id > idr_max(p->layer + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return NULL;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800672 BUG_ON(n == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 while (n > 0 && p) {
675 n -= IDR_BITS;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800676 BUG_ON(n != p->layer*IDR_BITS);
Paul E. McKenney96be7532010-02-22 17:04:55 -0800677 p = rcu_dereference_raw(p->ary[(id >> n) & IDR_MASK]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679 return((void *)p);
680}
681EXPORT_SYMBOL(idr_find);
682
Jeff Mahoney5806f072006-06-26 00:27:19 -0700683/**
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700684 * idr_for_each - iterate through all stored pointers
685 * @idp: idr handle
686 * @fn: function to be called for each pointer
687 * @data: data passed back to callback function
688 *
689 * Iterate over the pointers registered with the given idr. The
690 * callback function will be called for each pointer currently
691 * registered, passing the id, the pointer and the data pointer passed
692 * to this function. It is not safe to modify the idr tree while in
693 * the callback, so functions such as idr_get_new and idr_remove are
694 * not allowed.
695 *
696 * We check the return of @fn each time. If it returns anything other
Randy Dunlap56083ab2010-10-26 14:19:08 -0700697 * than %0, we break out and return that value.
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700698 *
699 * The caller must serialize idr_for_each() vs idr_get_new() and idr_remove().
700 */
701int idr_for_each(struct idr *idp,
702 int (*fn)(int id, void *p, void *data), void *data)
703{
704 int n, id, max, error = 0;
705 struct idr_layer *p;
Tejun Heo326cf0f2013-02-27 17:05:02 -0800706 struct idr_layer *pa[MAX_IDR_LEVEL + 1];
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700707 struct idr_layer **paa = &pa[0];
708
709 n = idp->layers * IDR_BITS;
Paul E. McKenney96be7532010-02-22 17:04:55 -0800710 p = rcu_dereference_raw(idp->top);
Tejun Heo326cf0f2013-02-27 17:05:02 -0800711 max = idr_max(idp->layers);
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700712
713 id = 0;
Tejun Heo326cf0f2013-02-27 17:05:02 -0800714 while (id >= 0 && id <= max) {
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700715 while (n > 0 && p) {
716 n -= IDR_BITS;
717 *paa++ = p;
Paul E. McKenney96be7532010-02-22 17:04:55 -0800718 p = rcu_dereference_raw(p->ary[(id >> n) & IDR_MASK]);
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700719 }
720
721 if (p) {
722 error = fn(id, (void *)p, data);
723 if (error)
724 break;
725 }
726
727 id += 1 << n;
728 while (n < fls(id)) {
729 n += IDR_BITS;
730 p = *--paa;
731 }
732 }
733
734 return error;
735}
736EXPORT_SYMBOL(idr_for_each);
737
738/**
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700739 * idr_get_next - lookup next object of id to given id.
740 * @idp: idr handle
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900741 * @nextidp: pointer to lookup key
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700742 *
743 * Returns pointer to registered object with id, which is next number to
Naohiro Aota1458ce12010-08-27 17:43:46 +0900744 * given id. After being looked up, *@nextidp will be updated for the next
745 * iteration.
Hugh Dickins9f7de822012-03-21 16:34:20 -0700746 *
747 * This function can be called under rcu_read_lock(), given that the leaf
748 * pointers lifetimes are correctly managed.
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700749 */
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700750void *idr_get_next(struct idr *idp, int *nextidp)
751{
Tejun Heo326cf0f2013-02-27 17:05:02 -0800752 struct idr_layer *p, *pa[MAX_IDR_LEVEL + 1];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700753 struct idr_layer **paa = &pa[0];
754 int id = *nextidp;
755 int n, max;
756
757 /* find first ent */
Paul E. McKenney94bfa3b2010-06-07 17:09:45 -0700758 p = rcu_dereference_raw(idp->top);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700759 if (!p)
760 return NULL;
Hugh Dickins9f7de822012-03-21 16:34:20 -0700761 n = (p->layer + 1) * IDR_BITS;
Tejun Heo326cf0f2013-02-27 17:05:02 -0800762 max = idr_max(p->layer + 1);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700763
Tejun Heo326cf0f2013-02-27 17:05:02 -0800764 while (id >= 0 && id <= max) {
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700765 while (n > 0 && p) {
766 n -= IDR_BITS;
767 *paa++ = p;
Paul E. McKenney94bfa3b2010-06-07 17:09:45 -0700768 p = rcu_dereference_raw(p->ary[(id >> n) & IDR_MASK]);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700769 }
770
771 if (p) {
772 *nextidp = id;
773 return p;
774 }
775
Tejun Heo6cdae742013-02-27 17:03:34 -0800776 /*
777 * Proceed to the next layer at the current level. Unlike
778 * idr_for_each(), @id isn't guaranteed to be aligned to
779 * layer boundary at this point and adding 1 << n may
780 * incorrectly skip IDs. Make sure we jump to the
781 * beginning of the next layer using round_up().
782 */
783 id = round_up(id + 1, 1 << n);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700784 while (n < fls(id)) {
785 n += IDR_BITS;
786 p = *--paa;
787 }
788 }
789 return NULL;
790}
Ben Hutchings4d1ee802010-01-29 20:59:17 +0000791EXPORT_SYMBOL(idr_get_next);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700792
793
794/**
Jeff Mahoney5806f072006-06-26 00:27:19 -0700795 * idr_replace - replace pointer for given id
796 * @idp: idr handle
797 * @ptr: pointer you want associated with the id
798 * @id: lookup key
799 *
800 * Replace the pointer registered with an id and return the old value.
Randy Dunlap56083ab2010-10-26 14:19:08 -0700801 * A %-ENOENT return indicates that @id was not found.
802 * A %-EINVAL return indicates that @id was not within valid constraints.
Jeff Mahoney5806f072006-06-26 00:27:19 -0700803 *
Nadia Derbeycf481c22008-07-25 01:48:02 -0700804 * The caller must serialize with writers.
Jeff Mahoney5806f072006-06-26 00:27:19 -0700805 */
806void *idr_replace(struct idr *idp, void *ptr, int id)
807{
808 int n;
809 struct idr_layer *p, *old_p;
810
Tejun Heoe8c8d1b2013-02-27 17:05:04 -0800811 if (WARN_ON_ONCE(id < 0))
812 return ERR_PTR(-EINVAL);
813
Jeff Mahoney5806f072006-06-26 00:27:19 -0700814 p = idp->top;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800815 if (!p)
816 return ERR_PTR(-EINVAL);
817
818 n = (p->layer+1) * IDR_BITS;
Jeff Mahoney5806f072006-06-26 00:27:19 -0700819
Jeff Mahoney5806f072006-06-26 00:27:19 -0700820 if (id >= (1 << n))
821 return ERR_PTR(-EINVAL);
822
823 n -= IDR_BITS;
824 while ((n > 0) && p) {
825 p = p->ary[(id >> n) & IDR_MASK];
826 n -= IDR_BITS;
827 }
828
829 n = id & IDR_MASK;
Tejun Heo1d9b2e12013-02-27 17:05:05 -0800830 if (unlikely(p == NULL || !test_bit(n, p->bitmap)))
Jeff Mahoney5806f072006-06-26 00:27:19 -0700831 return ERR_PTR(-ENOENT);
832
833 old_p = p->ary[n];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700834 rcu_assign_pointer(p->ary[n], ptr);
Jeff Mahoney5806f072006-06-26 00:27:19 -0700835
836 return old_p;
837}
838EXPORT_SYMBOL(idr_replace);
839
Akinobu Mita199f0ca2008-04-29 01:03:13 -0700840void __init idr_init_cache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Akinobu Mita199f0ca2008-04-29 01:03:13 -0700842 idr_layer_cache = kmem_cache_create("idr_layer_cache",
Andrew Morton5b019e92009-01-15 13:51:21 -0800843 sizeof(struct idr_layer), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
846/**
847 * idr_init - initialize idr handle
848 * @idp: idr handle
849 *
850 * This function is use to set up the handle (@idp) that you will pass
851 * to the rest of the functions.
852 */
853void idr_init(struct idr *idp)
854{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 memset(idp, 0, sizeof(struct idr));
856 spin_lock_init(&idp->lock);
857}
858EXPORT_SYMBOL(idr_init);
Tejun Heo72dba582007-06-14 03:45:13 +0900859
860
Randy Dunlap56083ab2010-10-26 14:19:08 -0700861/**
862 * DOC: IDA description
Tejun Heo72dba582007-06-14 03:45:13 +0900863 * IDA - IDR based ID allocator
864 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700865 * This is id allocator without id -> pointer translation. Memory
Tejun Heo72dba582007-06-14 03:45:13 +0900866 * usage is much lower than full blown idr because each id only
867 * occupies a bit. ida uses a custom leaf node which contains
868 * IDA_BITMAP_BITS slots.
869 *
870 * 2007-04-25 written by Tejun Heo <htejun@gmail.com>
871 */
872
873static void free_bitmap(struct ida *ida, struct ida_bitmap *bitmap)
874{
875 unsigned long flags;
876
877 if (!ida->free_bitmap) {
878 spin_lock_irqsave(&ida->idr.lock, flags);
879 if (!ida->free_bitmap) {
880 ida->free_bitmap = bitmap;
881 bitmap = NULL;
882 }
883 spin_unlock_irqrestore(&ida->idr.lock, flags);
884 }
885
886 kfree(bitmap);
887}
888
889/**
890 * ida_pre_get - reserve resources for ida allocation
891 * @ida: ida handle
892 * @gfp_mask: memory allocation flag
893 *
894 * This function should be called prior to locking and calling the
895 * following function. It preallocates enough memory to satisfy the
896 * worst possible allocation.
897 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700898 * If the system is REALLY out of memory this function returns %0,
899 * otherwise %1.
Tejun Heo72dba582007-06-14 03:45:13 +0900900 */
901int ida_pre_get(struct ida *ida, gfp_t gfp_mask)
902{
903 /* allocate idr_layers */
904 if (!idr_pre_get(&ida->idr, gfp_mask))
905 return 0;
906
907 /* allocate free_bitmap */
908 if (!ida->free_bitmap) {
909 struct ida_bitmap *bitmap;
910
911 bitmap = kmalloc(sizeof(struct ida_bitmap), gfp_mask);
912 if (!bitmap)
913 return 0;
914
915 free_bitmap(ida, bitmap);
916 }
917
918 return 1;
919}
920EXPORT_SYMBOL(ida_pre_get);
921
922/**
923 * ida_get_new_above - allocate new ID above or equal to a start id
924 * @ida: ida handle
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900925 * @starting_id: id to start search at
Tejun Heo72dba582007-06-14 03:45:13 +0900926 * @p_id: pointer to the allocated handle
927 *
Wang Sheng-Huie3816c52011-10-31 17:12:36 -0700928 * Allocate new ID above or equal to @starting_id. It should be called
929 * with any required locks.
Tejun Heo72dba582007-06-14 03:45:13 +0900930 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700931 * If memory is required, it will return %-EAGAIN, you should unlock
Tejun Heo72dba582007-06-14 03:45:13 +0900932 * and go back to the ida_pre_get() call. If the ida is full, it will
Randy Dunlap56083ab2010-10-26 14:19:08 -0700933 * return %-ENOSPC.
Tejun Heo72dba582007-06-14 03:45:13 +0900934 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700935 * @p_id returns a value in the range @starting_id ... %0x7fffffff.
Tejun Heo72dba582007-06-14 03:45:13 +0900936 */
937int ida_get_new_above(struct ida *ida, int starting_id, int *p_id)
938{
Tejun Heo326cf0f2013-02-27 17:05:02 -0800939 struct idr_layer *pa[MAX_IDR_LEVEL + 1];
Tejun Heo72dba582007-06-14 03:45:13 +0900940 struct ida_bitmap *bitmap;
941 unsigned long flags;
942 int idr_id = starting_id / IDA_BITMAP_BITS;
943 int offset = starting_id % IDA_BITMAP_BITS;
944 int t, id;
945
946 restart:
947 /* get vacant slot */
Tejun Heod5c74092013-02-27 17:03:55 -0800948 t = idr_get_empty_slot(&ida->idr, idr_id, pa, 0, &ida->idr);
Nadia Derbey944ca052008-07-25 01:47:59 -0700949 if (t < 0)
Tejun Heo12d1b432013-02-27 17:03:53 -0800950 return t == -ENOMEM ? -EAGAIN : t;
Tejun Heo72dba582007-06-14 03:45:13 +0900951
Fengguang Wu125c4c72012-10-04 17:13:15 -0700952 if (t * IDA_BITMAP_BITS >= MAX_IDR_BIT)
Tejun Heo72dba582007-06-14 03:45:13 +0900953 return -ENOSPC;
954
955 if (t != idr_id)
956 offset = 0;
957 idr_id = t;
958
959 /* if bitmap isn't there, create a new one */
960 bitmap = (void *)pa[0]->ary[idr_id & IDR_MASK];
961 if (!bitmap) {
962 spin_lock_irqsave(&ida->idr.lock, flags);
963 bitmap = ida->free_bitmap;
964 ida->free_bitmap = NULL;
965 spin_unlock_irqrestore(&ida->idr.lock, flags);
966
967 if (!bitmap)
968 return -EAGAIN;
969
970 memset(bitmap, 0, sizeof(struct ida_bitmap));
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700971 rcu_assign_pointer(pa[0]->ary[idr_id & IDR_MASK],
972 (void *)bitmap);
Tejun Heo72dba582007-06-14 03:45:13 +0900973 pa[0]->count++;
974 }
975
976 /* lookup for empty slot */
977 t = find_next_zero_bit(bitmap->bitmap, IDA_BITMAP_BITS, offset);
978 if (t == IDA_BITMAP_BITS) {
979 /* no empty slot after offset, continue to the next chunk */
980 idr_id++;
981 offset = 0;
982 goto restart;
983 }
984
985 id = idr_id * IDA_BITMAP_BITS + t;
Fengguang Wu125c4c72012-10-04 17:13:15 -0700986 if (id >= MAX_IDR_BIT)
Tejun Heo72dba582007-06-14 03:45:13 +0900987 return -ENOSPC;
988
989 __set_bit(t, bitmap->bitmap);
990 if (++bitmap->nr_busy == IDA_BITMAP_BITS)
991 idr_mark_full(pa, idr_id);
992
993 *p_id = id;
994
995 /* Each leaf node can handle nearly a thousand slots and the
996 * whole idea of ida is to have small memory foot print.
997 * Throw away extra resources one by one after each successful
998 * allocation.
999 */
1000 if (ida->idr.id_free_cnt || ida->free_bitmap) {
Nadia Derbey4ae53782008-07-25 01:47:58 -07001001 struct idr_layer *p = get_from_free_list(&ida->idr);
Tejun Heo72dba582007-06-14 03:45:13 +09001002 if (p)
1003 kmem_cache_free(idr_layer_cache, p);
1004 }
1005
1006 return 0;
1007}
1008EXPORT_SYMBOL(ida_get_new_above);
1009
1010/**
Tejun Heo72dba582007-06-14 03:45:13 +09001011 * ida_remove - remove the given ID
1012 * @ida: ida handle
1013 * @id: ID to free
1014 */
1015void ida_remove(struct ida *ida, int id)
1016{
1017 struct idr_layer *p = ida->idr.top;
1018 int shift = (ida->idr.layers - 1) * IDR_BITS;
1019 int idr_id = id / IDA_BITMAP_BITS;
1020 int offset = id % IDA_BITMAP_BITS;
1021 int n;
1022 struct ida_bitmap *bitmap;
1023
1024 /* clear full bits while looking up the leaf idr_layer */
1025 while ((shift > 0) && p) {
1026 n = (idr_id >> shift) & IDR_MASK;
Tejun Heo1d9b2e12013-02-27 17:05:05 -08001027 __clear_bit(n, p->bitmap);
Tejun Heo72dba582007-06-14 03:45:13 +09001028 p = p->ary[n];
1029 shift -= IDR_BITS;
1030 }
1031
1032 if (p == NULL)
1033 goto err;
1034
1035 n = idr_id & IDR_MASK;
Tejun Heo1d9b2e12013-02-27 17:05:05 -08001036 __clear_bit(n, p->bitmap);
Tejun Heo72dba582007-06-14 03:45:13 +09001037
1038 bitmap = (void *)p->ary[n];
1039 if (!test_bit(offset, bitmap->bitmap))
1040 goto err;
1041
1042 /* update bitmap and remove it if empty */
1043 __clear_bit(offset, bitmap->bitmap);
1044 if (--bitmap->nr_busy == 0) {
Tejun Heo1d9b2e12013-02-27 17:05:05 -08001045 __set_bit(n, p->bitmap); /* to please idr_remove() */
Tejun Heo72dba582007-06-14 03:45:13 +09001046 idr_remove(&ida->idr, idr_id);
1047 free_bitmap(ida, bitmap);
1048 }
1049
1050 return;
1051
1052 err:
1053 printk(KERN_WARNING
1054 "ida_remove called for id=%d which is not allocated.\n", id);
1055}
1056EXPORT_SYMBOL(ida_remove);
1057
1058/**
1059 * ida_destroy - release all cached layers within an ida tree
Naohiro Aotaea24ea82010-08-31 00:37:03 +09001060 * @ida: ida handle
Tejun Heo72dba582007-06-14 03:45:13 +09001061 */
1062void ida_destroy(struct ida *ida)
1063{
1064 idr_destroy(&ida->idr);
1065 kfree(ida->free_bitmap);
1066}
1067EXPORT_SYMBOL(ida_destroy);
1068
1069/**
Rusty Russell88eca022011-08-03 16:21:06 -07001070 * ida_simple_get - get a new id.
1071 * @ida: the (initialized) ida.
1072 * @start: the minimum id (inclusive, < 0x8000000)
1073 * @end: the maximum id (exclusive, < 0x8000000 or 0)
1074 * @gfp_mask: memory allocation flags
1075 *
1076 * Allocates an id in the range start <= id < end, or returns -ENOSPC.
1077 * On memory allocation failure, returns -ENOMEM.
1078 *
1079 * Use ida_simple_remove() to get rid of an id.
1080 */
1081int ida_simple_get(struct ida *ida, unsigned int start, unsigned int end,
1082 gfp_t gfp_mask)
1083{
1084 int ret, id;
1085 unsigned int max;
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001086 unsigned long flags;
Rusty Russell88eca022011-08-03 16:21:06 -07001087
1088 BUG_ON((int)start < 0);
1089 BUG_ON((int)end < 0);
1090
1091 if (end == 0)
1092 max = 0x80000000;
1093 else {
1094 BUG_ON(end < start);
1095 max = end - 1;
1096 }
1097
1098again:
1099 if (!ida_pre_get(ida, gfp_mask))
1100 return -ENOMEM;
1101
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001102 spin_lock_irqsave(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -07001103 ret = ida_get_new_above(ida, start, &id);
1104 if (!ret) {
1105 if (id > max) {
1106 ida_remove(ida, id);
1107 ret = -ENOSPC;
1108 } else {
1109 ret = id;
1110 }
1111 }
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001112 spin_unlock_irqrestore(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -07001113
1114 if (unlikely(ret == -EAGAIN))
1115 goto again;
1116
1117 return ret;
1118}
1119EXPORT_SYMBOL(ida_simple_get);
1120
1121/**
1122 * ida_simple_remove - remove an allocated id.
1123 * @ida: the (initialized) ida.
1124 * @id: the id returned by ida_simple_get.
1125 */
1126void ida_simple_remove(struct ida *ida, unsigned int id)
1127{
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001128 unsigned long flags;
1129
Rusty Russell88eca022011-08-03 16:21:06 -07001130 BUG_ON((int)id < 0);
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001131 spin_lock_irqsave(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -07001132 ida_remove(ida, id);
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001133 spin_unlock_irqrestore(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -07001134}
1135EXPORT_SYMBOL(ida_simple_remove);
1136
1137/**
Tejun Heo72dba582007-06-14 03:45:13 +09001138 * ida_init - initialize ida handle
1139 * @ida: ida handle
1140 *
1141 * This function is use to set up the handle (@ida) that you will pass
1142 * to the rest of the functions.
1143 */
1144void ida_init(struct ida *ida)
1145{
1146 memset(ida, 0, sizeof(struct ida));
1147 idr_init(&ida->idr);
1148
1149}
1150EXPORT_SYMBOL(ida_init);