blob: 2d016f5c410ee0c32baaf0731eb8f2af0ed057da [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
Christoph Lametere18b8902006-12-06 20:33:20 -080041static struct kmem_cache *idr_layer_cache;
Tejun Heod5c74092013-02-27 17:03:55 -080042static DEFINE_PER_CPU(struct idr_layer *, idr_preload_head);
43static DEFINE_PER_CPU(int, idr_preload_cnt);
Rusty Russell88eca022011-08-03 16:21:06 -070044static DEFINE_SPINLOCK(simple_ida_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Nadia Derbey4ae53782008-07-25 01:47:58 -070046static struct idr_layer *get_from_free_list(struct idr *idp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
48 struct idr_layer *p;
Roland Dreierc259cc22006-07-14 00:24:23 -070049 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Roland Dreierc259cc22006-07-14 00:24:23 -070051 spin_lock_irqsave(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 if ((p = idp->id_free)) {
53 idp->id_free = p->ary[0];
54 idp->id_free_cnt--;
55 p->ary[0] = NULL;
56 }
Roland Dreierc259cc22006-07-14 00:24:23 -070057 spin_unlock_irqrestore(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 return(p);
59}
60
Tejun Heod5c74092013-02-27 17:03:55 -080061/**
62 * idr_layer_alloc - allocate a new idr_layer
63 * @gfp_mask: allocation mask
64 * @layer_idr: optional idr to allocate from
65 *
66 * If @layer_idr is %NULL, directly allocate one using @gfp_mask or fetch
67 * one from the per-cpu preload buffer. If @layer_idr is not %NULL, fetch
68 * an idr_layer from @idr->id_free.
69 *
70 * @layer_idr is to maintain backward compatibility with the old alloc
71 * interface - idr_pre_get() and idr_get_new*() - and will be removed
72 * together with per-pool preload buffer.
73 */
74static struct idr_layer *idr_layer_alloc(gfp_t gfp_mask, struct idr *layer_idr)
75{
76 struct idr_layer *new;
77
78 /* this is the old path, bypass to get_from_free_list() */
79 if (layer_idr)
80 return get_from_free_list(layer_idr);
81
82 /* try to allocate directly from kmem_cache */
83 new = kmem_cache_zalloc(idr_layer_cache, gfp_mask);
84 if (new)
85 return new;
86
87 /*
88 * Try to fetch one from the per-cpu preload buffer if in process
89 * context. See idr_preload() for details.
90 */
91 if (in_interrupt())
92 return NULL;
93
94 preempt_disable();
95 new = __this_cpu_read(idr_preload_head);
96 if (new) {
97 __this_cpu_write(idr_preload_head, new->ary[0]);
98 __this_cpu_dec(idr_preload_cnt);
99 new->ary[0] = NULL;
100 }
101 preempt_enable();
102 return new;
103}
104
Nadia Derbeycf481c22008-07-25 01:48:02 -0700105static void idr_layer_rcu_free(struct rcu_head *head)
106{
107 struct idr_layer *layer;
108
109 layer = container_of(head, struct idr_layer, rcu_head);
110 kmem_cache_free(idr_layer_cache, layer);
111}
112
113static inline void free_layer(struct idr_layer *p)
114{
115 call_rcu(&p->rcu_head, idr_layer_rcu_free);
116}
117
Sonny Rao1eec0052006-06-25 05:49:34 -0700118/* only called when idp->lock is held */
Nadia Derbey4ae53782008-07-25 01:47:58 -0700119static void __move_to_free_list(struct idr *idp, struct idr_layer *p)
Sonny Rao1eec0052006-06-25 05:49:34 -0700120{
121 p->ary[0] = idp->id_free;
122 idp->id_free = p;
123 idp->id_free_cnt++;
124}
125
Nadia Derbey4ae53782008-07-25 01:47:58 -0700126static void move_to_free_list(struct idr *idp, struct idr_layer *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Roland Dreierc259cc22006-07-14 00:24:23 -0700128 unsigned long flags;
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /*
131 * Depends on the return element being zeroed.
132 */
Roland Dreierc259cc22006-07-14 00:24:23 -0700133 spin_lock_irqsave(&idp->lock, flags);
Nadia Derbey4ae53782008-07-25 01:47:58 -0700134 __move_to_free_list(idp, p);
Roland Dreierc259cc22006-07-14 00:24:23 -0700135 spin_unlock_irqrestore(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900138static void idr_mark_full(struct idr_layer **pa, int id)
139{
140 struct idr_layer *p = pa[0];
141 int l = 0;
142
143 __set_bit(id & IDR_MASK, &p->bitmap);
144 /*
145 * If this layer is full mark the bit in the layer above to
146 * show that this part of the radix tree is full. This may
147 * complete the layer above and require walking up the radix
148 * tree.
149 */
150 while (p->bitmap == IDR_FULL) {
151 if (!(p = pa[++l]))
152 break;
153 id = id >> IDR_BITS;
154 __set_bit((id & IDR_MASK), &p->bitmap);
155 }
156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/**
Randy Dunlap56083ab2010-10-26 14:19:08 -0700159 * idr_pre_get - reserve resources for idr allocation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 * @idp: idr handle
161 * @gfp_mask: memory allocation flags
162 *
Naohiro Aota066a9be2010-10-26 14:23:03 -0700163 * This function should be called prior to calling the idr_get_new* functions.
164 * It preallocates enough memory to satisfy the worst possible allocation. The
165 * caller should pass in GFP_KERNEL if possible. This of course requires that
166 * no spinning locks be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700168 * If the system is REALLY out of memory this function returns %0,
169 * otherwise %1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
Al Virofd4f2df2005-10-21 03:18:50 -0400171int idr_pre_get(struct idr *idp, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Fengguang Wu125c4c72012-10-04 17:13:15 -0700173 while (idp->id_free_cnt < MAX_IDR_FREE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 struct idr_layer *new;
Andrew Morton5b019e92009-01-15 13:51:21 -0800175 new = kmem_cache_zalloc(idr_layer_cache, gfp_mask);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800176 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return (0);
Nadia Derbey4ae53782008-07-25 01:47:58 -0700178 move_to_free_list(idp, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180 return 1;
181}
182EXPORT_SYMBOL(idr_pre_get);
183
Tejun Heo12d1b432013-02-27 17:03:53 -0800184/**
185 * sub_alloc - try to allocate an id without growing the tree depth
186 * @idp: idr handle
187 * @starting_id: id to start search at
188 * @id: pointer to the allocated handle
189 * @pa: idr_layer[MAX_IDR_LEVEL] used as backtrack buffer
Tejun Heod5c74092013-02-27 17:03:55 -0800190 * @gfp_mask: allocation mask for idr_layer_alloc()
191 * @layer_idr: optional idr passed to idr_layer_alloc()
Tejun Heo12d1b432013-02-27 17:03:53 -0800192 *
193 * Allocate an id in range [@starting_id, INT_MAX] from @idp without
194 * growing its depth. Returns
195 *
196 * the allocated id >= 0 if successful,
197 * -EAGAIN if the tree needs to grow for allocation to succeed,
198 * -ENOSPC if the id space is exhausted,
199 * -ENOMEM if more idr_layers need to be allocated.
200 */
Tejun Heod5c74092013-02-27 17:03:55 -0800201static int sub_alloc(struct idr *idp, int *starting_id, struct idr_layer **pa,
202 gfp_t gfp_mask, struct idr *layer_idr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 int n, m, sh;
205 struct idr_layer *p, *new;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900206 int l, id, oid;
Al Viro5ba25332007-10-14 19:35:50 +0100207 unsigned long bm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 id = *starting_id;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900210 restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 p = idp->top;
212 l = idp->layers;
213 pa[l--] = NULL;
214 while (1) {
215 /*
216 * We run around this while until we reach the leaf node...
217 */
218 n = (id >> (IDR_BITS*l)) & IDR_MASK;
219 bm = ~p->bitmap;
220 m = find_next_bit(&bm, IDR_SIZE, n);
221 if (m == IDR_SIZE) {
222 /* no space available go back to previous layer. */
223 l++;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900224 oid = id;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800225 id = (id | ((1 << (IDR_BITS * l)) - 1)) + 1;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900226
227 /* if already at the top layer, we need to grow */
Tejun Heod2e72762010-02-22 12:44:19 -0800228 if (id >= 1 << (idp->layers * IDR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 *starting_id = id;
Tejun Heo12d1b432013-02-27 17:03:53 -0800230 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Tejun Heod2e72762010-02-22 12:44:19 -0800232 p = pa[l];
233 BUG_ON(!p);
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900234
235 /* If we need to go up one layer, continue the
236 * loop; otherwise, restart from the top.
237 */
238 sh = IDR_BITS * (l + 1);
239 if (oid >> sh == id >> sh)
240 continue;
241 else
242 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244 if (m != n) {
245 sh = IDR_BITS*l;
246 id = ((id >> sh) ^ n ^ m) << sh;
247 }
Fengguang Wu125c4c72012-10-04 17:13:15 -0700248 if ((id >= MAX_IDR_BIT) || (id < 0))
Tejun Heo12d1b432013-02-27 17:03:53 -0800249 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (l == 0)
251 break;
252 /*
253 * Create the layer below if it is missing.
254 */
255 if (!p->ary[m]) {
Tejun Heod5c74092013-02-27 17:03:55 -0800256 new = idr_layer_alloc(gfp_mask, layer_idr);
Nadia Derbey4ae53782008-07-25 01:47:58 -0700257 if (!new)
Tejun Heo12d1b432013-02-27 17:03:53 -0800258 return -ENOMEM;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800259 new->layer = l-1;
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700260 rcu_assign_pointer(p->ary[m], new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 p->count++;
262 }
263 pa[l--] = p;
264 p = p->ary[m];
265 }
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900266
267 pa[l] = p;
268 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900271static int idr_get_empty_slot(struct idr *idp, int starting_id,
Tejun Heod5c74092013-02-27 17:03:55 -0800272 struct idr_layer **pa, gfp_t gfp_mask,
273 struct idr *layer_idr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 struct idr_layer *p, *new;
276 int layers, v, id;
Roland Dreierc259cc22006-07-14 00:24:23 -0700277 unsigned long flags;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 id = starting_id;
280build_up:
281 p = idp->top;
282 layers = idp->layers;
283 if (unlikely(!p)) {
Tejun Heod5c74092013-02-27 17:03:55 -0800284 if (!(p = idr_layer_alloc(gfp_mask, layer_idr)))
Tejun Heo12d1b432013-02-27 17:03:53 -0800285 return -ENOMEM;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800286 p->layer = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 layers = 1;
288 }
289 /*
290 * Add a new layer to the top of the tree if the requested
291 * id is larger than the currently allocated space.
292 */
Fengguang Wu125c4c72012-10-04 17:13:15 -0700293 while ((layers < (MAX_IDR_LEVEL - 1)) && (id >= (1 << (layers*IDR_BITS)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 layers++;
Manfred Spraul711a49a2008-12-10 18:17:06 +0100295 if (!p->count) {
296 /* special case: if the tree is currently empty,
297 * then we grow the tree by moving the top node
298 * upwards.
299 */
300 p->layer++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 continue;
Manfred Spraul711a49a2008-12-10 18:17:06 +0100302 }
Tejun Heod5c74092013-02-27 17:03:55 -0800303 if (!(new = idr_layer_alloc(gfp_mask, layer_idr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /*
305 * The allocation failed. If we built part of
306 * the structure tear it down.
307 */
Roland Dreierc259cc22006-07-14 00:24:23 -0700308 spin_lock_irqsave(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 for (new = p; p && p != idp->top; new = p) {
310 p = p->ary[0];
311 new->ary[0] = NULL;
312 new->bitmap = new->count = 0;
Nadia Derbey4ae53782008-07-25 01:47:58 -0700313 __move_to_free_list(idp, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
Roland Dreierc259cc22006-07-14 00:24:23 -0700315 spin_unlock_irqrestore(&idp->lock, flags);
Tejun Heo12d1b432013-02-27 17:03:53 -0800316 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318 new->ary[0] = p;
319 new->count = 1;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800320 new->layer = layers-1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (p->bitmap == IDR_FULL)
322 __set_bit(0, &new->bitmap);
323 p = new;
324 }
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700325 rcu_assign_pointer(idp->top, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 idp->layers = layers;
Tejun Heod5c74092013-02-27 17:03:55 -0800327 v = sub_alloc(idp, &id, pa, gfp_mask, layer_idr);
Tejun Heo12d1b432013-02-27 17:03:53 -0800328 if (v == -EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 goto build_up;
330 return(v);
331}
332
Tejun Heo3594eb22013-02-27 17:03:54 -0800333/*
334 * @id and @pa are from a successful allocation from idr_get_empty_slot().
335 * Install the user pointer @ptr and mark the slot full.
336 */
337static void idr_fill_slot(void *ptr, int id, struct idr_layer **pa)
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900338{
Tejun Heo3594eb22013-02-27 17:03:54 -0800339 rcu_assign_pointer(pa[0]->ary[id & IDR_MASK], (struct idr_layer *)ptr);
340 pa[0]->count++;
341 idr_mark_full(pa, id);
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/**
John McCutchan7c657f22005-08-26 14:02:04 -0400345 * idr_get_new_above - allocate new idr entry above or equal to a start id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * @idp: idr handle
Thadeu Lima de Souza Cascardo94e2bd62009-10-16 15:20:49 +0200347 * @ptr: pointer you want associated with the id
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900348 * @starting_id: id to start search at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * @id: pointer to the allocated handle
350 *
351 * This is the allocate id function. It should be called with any
352 * required locks.
353 *
Naohiro Aota066a9be2010-10-26 14:23:03 -0700354 * If allocation from IDR's private freelist fails, idr_get_new_above() will
Randy Dunlap56083ab2010-10-26 14:19:08 -0700355 * return %-EAGAIN. The caller should retry the idr_pre_get() call to refill
Naohiro Aota066a9be2010-10-26 14:23:03 -0700356 * IDR's preallocation and then retry the idr_get_new_above() call.
357 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700358 * If the idr is full idr_get_new_above() will return %-ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700360 * @id returns a value in the range @starting_id ... %0x7fffffff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 */
362int idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id)
363{
Tejun Heo3594eb22013-02-27 17:03:54 -0800364 struct idr_layer *pa[MAX_IDR_LEVEL];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 int rv;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800366
Tejun Heod5c74092013-02-27 17:03:55 -0800367 rv = idr_get_empty_slot(idp, starting_id, pa, 0, idp);
Nadia Derbey944ca052008-07-25 01:47:59 -0700368 if (rv < 0)
Tejun Heo12d1b432013-02-27 17:03:53 -0800369 return rv == -ENOMEM ? -EAGAIN : rv;
Tejun Heo3594eb22013-02-27 17:03:54 -0800370
371 idr_fill_slot(ptr, rv, pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *id = rv;
373 return 0;
374}
375EXPORT_SYMBOL(idr_get_new_above);
376
Tejun Heod5c74092013-02-27 17:03:55 -0800377/**
378 * idr_preload - preload for idr_alloc()
379 * @gfp_mask: allocation mask to use for preloading
380 *
381 * Preload per-cpu layer buffer for idr_alloc(). Can only be used from
382 * process context and each idr_preload() invocation should be matched with
383 * idr_preload_end(). Note that preemption is disabled while preloaded.
384 *
385 * The first idr_alloc() in the preloaded section can be treated as if it
386 * were invoked with @gfp_mask used for preloading. This allows using more
387 * permissive allocation masks for idrs protected by spinlocks.
388 *
389 * For example, if idr_alloc() below fails, the failure can be treated as
390 * if idr_alloc() were called with GFP_KERNEL rather than GFP_NOWAIT.
391 *
392 * idr_preload(GFP_KERNEL);
393 * spin_lock(lock);
394 *
395 * id = idr_alloc(idr, ptr, start, end, GFP_NOWAIT);
396 *
397 * spin_unlock(lock);
398 * idr_preload_end();
399 * if (id < 0)
400 * error;
401 */
402void idr_preload(gfp_t gfp_mask)
403{
404 /*
405 * Consuming preload buffer from non-process context breaks preload
406 * allocation guarantee. Disallow usage from those contexts.
407 */
408 WARN_ON_ONCE(in_interrupt());
409 might_sleep_if(gfp_mask & __GFP_WAIT);
410
411 preempt_disable();
412
413 /*
414 * idr_alloc() is likely to succeed w/o full idr_layer buffer and
415 * return value from idr_alloc() needs to be checked for failure
416 * anyway. Silently give up if allocation fails. The caller can
417 * treat failures from idr_alloc() as if idr_alloc() were called
418 * with @gfp_mask which should be enough.
419 */
420 while (__this_cpu_read(idr_preload_cnt) < MAX_IDR_FREE) {
421 struct idr_layer *new;
422
423 preempt_enable();
424 new = kmem_cache_zalloc(idr_layer_cache, gfp_mask);
425 preempt_disable();
426 if (!new)
427 break;
428
429 /* link the new one to per-cpu preload list */
430 new->ary[0] = __this_cpu_read(idr_preload_head);
431 __this_cpu_write(idr_preload_head, new);
432 __this_cpu_inc(idr_preload_cnt);
433 }
434}
435EXPORT_SYMBOL(idr_preload);
436
437/**
438 * idr_alloc - allocate new idr entry
439 * @idr: the (initialized) idr
440 * @ptr: pointer to be associated with the new id
441 * @start: the minimum id (inclusive)
442 * @end: the maximum id (exclusive, <= 0 for max)
443 * @gfp_mask: memory allocation flags
444 *
445 * Allocate an id in [start, end) and associate it with @ptr. If no ID is
446 * available in the specified range, returns -ENOSPC. On memory allocation
447 * failure, returns -ENOMEM.
448 *
449 * Note that @end is treated as max when <= 0. This is to always allow
450 * using @start + N as @end as long as N is inside integer range.
451 *
452 * The user is responsible for exclusively synchronizing all operations
453 * which may modify @idr. However, read-only accesses such as idr_find()
454 * or iteration can be performed under RCU read lock provided the user
455 * destroys @ptr in RCU-safe way after removal from idr.
456 */
457int idr_alloc(struct idr *idr, void *ptr, int start, int end, gfp_t gfp_mask)
458{
459 int max = end > 0 ? end - 1 : INT_MAX; /* inclusive upper limit */
460 struct idr_layer *pa[MAX_IDR_LEVEL];
461 int id;
462
463 might_sleep_if(gfp_mask & __GFP_WAIT);
464
465 /* sanity checks */
466 if (WARN_ON_ONCE(start < 0))
467 return -EINVAL;
468 if (unlikely(max < start))
469 return -ENOSPC;
470
471 /* allocate id */
472 id = idr_get_empty_slot(idr, start, pa, gfp_mask, NULL);
473 if (unlikely(id < 0))
474 return id;
475 if (unlikely(id > max))
476 return -ENOSPC;
477
478 idr_fill_slot(ptr, id, pa);
479 return id;
480}
481EXPORT_SYMBOL_GPL(idr_alloc);
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483static void idr_remove_warning(int id)
484{
Nadia Derbeyf098ad62008-07-25 01:47:59 -0700485 printk(KERN_WARNING
486 "idr_remove called for id=%d which is not allocated.\n", id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 dump_stack();
488}
489
490static void sub_remove(struct idr *idp, int shift, int id)
491{
492 struct idr_layer *p = idp->top;
Fengguang Wu125c4c72012-10-04 17:13:15 -0700493 struct idr_layer **pa[MAX_IDR_LEVEL];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct idr_layer ***paa = &pa[0];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700495 struct idr_layer *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 int n;
497
498 *paa = NULL;
499 *++paa = &idp->top;
500
501 while ((shift > 0) && p) {
502 n = (id >> shift) & IDR_MASK;
503 __clear_bit(n, &p->bitmap);
504 *++paa = &p->ary[n];
505 p = p->ary[n];
506 shift -= IDR_BITS;
507 }
508 n = id & IDR_MASK;
509 if (likely(p != NULL && test_bit(n, &p->bitmap))){
510 __clear_bit(n, &p->bitmap);
Nadia Derbeycf481c22008-07-25 01:48:02 -0700511 rcu_assign_pointer(p->ary[n], NULL);
512 to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 while(*paa && ! --((**paa)->count)){
Nadia Derbeycf481c22008-07-25 01:48:02 -0700514 if (to_free)
515 free_layer(to_free);
516 to_free = **paa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 **paa-- = NULL;
518 }
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800519 if (!*paa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 idp->layers = 0;
Nadia Derbeycf481c22008-07-25 01:48:02 -0700521 if (to_free)
522 free_layer(to_free);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800523 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 idr_remove_warning(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527/**
Randy Dunlap56083ab2010-10-26 14:19:08 -0700528 * idr_remove - remove the given id and free its slot
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800529 * @idp: idr handle
530 * @id: unique key
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 */
532void idr_remove(struct idr *idp, int id)
533{
534 struct idr_layer *p;
Nadia Derbeycf481c22008-07-25 01:48:02 -0700535 struct idr_layer *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 /* Mask off upper bits we don't use for the search. */
Fengguang Wu125c4c72012-10-04 17:13:15 -0700538 id &= MAX_IDR_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 sub_remove(idp, (idp->layers - 1) * IDR_BITS, id);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800541 if (idp->top && idp->top->count == 1 && (idp->layers > 1) &&
Nadia Derbeycf481c22008-07-25 01:48:02 -0700542 idp->top->ary[0]) {
543 /*
544 * Single child at leftmost slot: we can shrink the tree.
545 * This level is not needed anymore since when layers are
546 * inserted, they are inserted at the top of the existing
547 * tree.
548 */
549 to_free = idp->top;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 p = idp->top->ary[0];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700551 rcu_assign_pointer(idp->top, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 --idp->layers;
Nadia Derbeycf481c22008-07-25 01:48:02 -0700553 to_free->bitmap = to_free->count = 0;
554 free_layer(to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
Fengguang Wu125c4c72012-10-04 17:13:15 -0700556 while (idp->id_free_cnt >= MAX_IDR_FREE) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700557 p = get_from_free_list(idp);
Nadia Derbeycf481c22008-07-25 01:48:02 -0700558 /*
559 * Note: we don't call the rcu callback here, since the only
560 * layers that fall into the freelist are those that have been
561 * preallocated.
562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 kmem_cache_free(idr_layer_cache, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
Nadia Derbeyaf8e2a42008-05-01 04:34:57 -0700565 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567EXPORT_SYMBOL(idr_remove);
568
Tejun Heofe6e24e2013-02-27 17:03:50 -0800569void __idr_remove_all(struct idr *idp)
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700570{
Oleg Nesterov6ace06dc2007-07-31 00:39:19 -0700571 int n, id, max;
Imre Deak2dcb22b2010-05-26 14:43:38 -0700572 int bt_mask;
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700573 struct idr_layer *p;
Fengguang Wu125c4c72012-10-04 17:13:15 -0700574 struct idr_layer *pa[MAX_IDR_LEVEL];
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700575 struct idr_layer **paa = &pa[0];
576
577 n = idp->layers * IDR_BITS;
578 p = idp->top;
Paul E. McKenney1b233362009-03-10 12:55:52 -0700579 rcu_assign_pointer(idp->top, NULL);
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700580 max = 1 << n;
581
582 id = 0;
Oleg Nesterov6ace06dc2007-07-31 00:39:19 -0700583 while (id < max) {
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700584 while (n > IDR_BITS && p) {
585 n -= IDR_BITS;
586 *paa++ = p;
587 p = p->ary[(id >> n) & IDR_MASK];
588 }
589
Imre Deak2dcb22b2010-05-26 14:43:38 -0700590 bt_mask = id;
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700591 id += 1 << n;
Imre Deak2dcb22b2010-05-26 14:43:38 -0700592 /* Get the highest bit that the above add changed from 0->1. */
593 while (n < fls(id ^ bt_mask)) {
Nadia Derbeycf481c22008-07-25 01:48:02 -0700594 if (p)
595 free_layer(p);
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700596 n += IDR_BITS;
597 p = *--paa;
598 }
599 }
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700600 idp->layers = 0;
601}
Tejun Heofe6e24e2013-02-27 17:03:50 -0800602EXPORT_SYMBOL(__idr_remove_all);
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700603
604/**
Andrew Morton8d3b3592005-10-23 12:57:18 -0700605 * idr_destroy - release all cached layers within an idr tree
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900606 * @idp: idr handle
Tejun Heo9bb26bc2013-02-27 17:03:35 -0800607 *
608 * Free all id mappings and all idp_layers. After this function, @idp is
609 * completely unused and can be freed / recycled. The caller is
610 * responsible for ensuring that no one else accesses @idp during or after
611 * idr_destroy().
612 *
613 * A typical clean-up sequence for objects stored in an idr tree will use
614 * idr_for_each() to free all objects, if necessay, then idr_destroy() to
615 * free up the id mappings and cached idr_layers.
Andrew Morton8d3b3592005-10-23 12:57:18 -0700616 */
617void idr_destroy(struct idr *idp)
618{
Tejun Heofe6e24e2013-02-27 17:03:50 -0800619 __idr_remove_all(idp);
Tejun Heo9bb26bc2013-02-27 17:03:35 -0800620
Andrew Morton8d3b3592005-10-23 12:57:18 -0700621 while (idp->id_free_cnt) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700622 struct idr_layer *p = get_from_free_list(idp);
Andrew Morton8d3b3592005-10-23 12:57:18 -0700623 kmem_cache_free(idr_layer_cache, p);
624 }
625}
626EXPORT_SYMBOL(idr_destroy);
627
628/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 * idr_find - return pointer for given id
630 * @idp: idr handle
631 * @id: lookup key
632 *
633 * Return the pointer given the id it has been registered with. A %NULL
634 * return indicates that @id is not valid or you passed %NULL in
635 * idr_get_new().
636 *
Nadia Derbeyf9c46d62008-07-25 01:48:01 -0700637 * This function can be called under rcu_read_lock(), given that the leaf
638 * pointers lifetimes are correctly managed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 */
640void *idr_find(struct idr *idp, int id)
641{
642 int n;
643 struct idr_layer *p;
644
Paul E. McKenney96be7532010-02-22 17:04:55 -0800645 p = rcu_dereference_raw(idp->top);
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800646 if (!p)
647 return NULL;
648 n = (p->layer+1) * IDR_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 /* Mask off upper bits we don't use for the search. */
Fengguang Wu125c4c72012-10-04 17:13:15 -0700651 id &= MAX_IDR_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 if (id >= (1 << n))
654 return NULL;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800655 BUG_ON(n == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 while (n > 0 && p) {
658 n -= IDR_BITS;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800659 BUG_ON(n != p->layer*IDR_BITS);
Paul E. McKenney96be7532010-02-22 17:04:55 -0800660 p = rcu_dereference_raw(p->ary[(id >> n) & IDR_MASK]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662 return((void *)p);
663}
664EXPORT_SYMBOL(idr_find);
665
Jeff Mahoney5806f072006-06-26 00:27:19 -0700666/**
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700667 * idr_for_each - iterate through all stored pointers
668 * @idp: idr handle
669 * @fn: function to be called for each pointer
670 * @data: data passed back to callback function
671 *
672 * Iterate over the pointers registered with the given idr. The
673 * callback function will be called for each pointer currently
674 * registered, passing the id, the pointer and the data pointer passed
675 * to this function. It is not safe to modify the idr tree while in
676 * the callback, so functions such as idr_get_new and idr_remove are
677 * not allowed.
678 *
679 * We check the return of @fn each time. If it returns anything other
Randy Dunlap56083ab2010-10-26 14:19:08 -0700680 * than %0, we break out and return that value.
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700681 *
682 * The caller must serialize idr_for_each() vs idr_get_new() and idr_remove().
683 */
684int idr_for_each(struct idr *idp,
685 int (*fn)(int id, void *p, void *data), void *data)
686{
687 int n, id, max, error = 0;
688 struct idr_layer *p;
Fengguang Wu125c4c72012-10-04 17:13:15 -0700689 struct idr_layer *pa[MAX_IDR_LEVEL];
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700690 struct idr_layer **paa = &pa[0];
691
692 n = idp->layers * IDR_BITS;
Paul E. McKenney96be7532010-02-22 17:04:55 -0800693 p = rcu_dereference_raw(idp->top);
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700694 max = 1 << n;
695
696 id = 0;
697 while (id < max) {
698 while (n > 0 && p) {
699 n -= IDR_BITS;
700 *paa++ = p;
Paul E. McKenney96be7532010-02-22 17:04:55 -0800701 p = rcu_dereference_raw(p->ary[(id >> n) & IDR_MASK]);
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700702 }
703
704 if (p) {
705 error = fn(id, (void *)p, data);
706 if (error)
707 break;
708 }
709
710 id += 1 << n;
711 while (n < fls(id)) {
712 n += IDR_BITS;
713 p = *--paa;
714 }
715 }
716
717 return error;
718}
719EXPORT_SYMBOL(idr_for_each);
720
721/**
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700722 * idr_get_next - lookup next object of id to given id.
723 * @idp: idr handle
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900724 * @nextidp: pointer to lookup key
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700725 *
726 * Returns pointer to registered object with id, which is next number to
Naohiro Aota1458ce12010-08-27 17:43:46 +0900727 * given id. After being looked up, *@nextidp will be updated for the next
728 * iteration.
Hugh Dickins9f7de822012-03-21 16:34:20 -0700729 *
730 * This function can be called under rcu_read_lock(), given that the leaf
731 * pointers lifetimes are correctly managed.
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700732 */
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700733void *idr_get_next(struct idr *idp, int *nextidp)
734{
Fengguang Wu125c4c72012-10-04 17:13:15 -0700735 struct idr_layer *p, *pa[MAX_IDR_LEVEL];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700736 struct idr_layer **paa = &pa[0];
737 int id = *nextidp;
738 int n, max;
739
740 /* find first ent */
Paul E. McKenney94bfa3b2010-06-07 17:09:45 -0700741 p = rcu_dereference_raw(idp->top);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700742 if (!p)
743 return NULL;
Hugh Dickins9f7de822012-03-21 16:34:20 -0700744 n = (p->layer + 1) * IDR_BITS;
745 max = 1 << n;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700746
747 while (id < max) {
748 while (n > 0 && p) {
749 n -= IDR_BITS;
750 *paa++ = p;
Paul E. McKenney94bfa3b2010-06-07 17:09:45 -0700751 p = rcu_dereference_raw(p->ary[(id >> n) & IDR_MASK]);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700752 }
753
754 if (p) {
755 *nextidp = id;
756 return p;
757 }
758
Tejun Heo6cdae742013-02-27 17:03:34 -0800759 /*
760 * Proceed to the next layer at the current level. Unlike
761 * idr_for_each(), @id isn't guaranteed to be aligned to
762 * layer boundary at this point and adding 1 << n may
763 * incorrectly skip IDs. Make sure we jump to the
764 * beginning of the next layer using round_up().
765 */
766 id = round_up(id + 1, 1 << n);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700767 while (n < fls(id)) {
768 n += IDR_BITS;
769 p = *--paa;
770 }
771 }
772 return NULL;
773}
Ben Hutchings4d1ee802010-01-29 20:59:17 +0000774EXPORT_SYMBOL(idr_get_next);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700775
776
777/**
Jeff Mahoney5806f072006-06-26 00:27:19 -0700778 * idr_replace - replace pointer for given id
779 * @idp: idr handle
780 * @ptr: pointer you want associated with the id
781 * @id: lookup key
782 *
783 * Replace the pointer registered with an id and return the old value.
Randy Dunlap56083ab2010-10-26 14:19:08 -0700784 * A %-ENOENT return indicates that @id was not found.
785 * A %-EINVAL return indicates that @id was not within valid constraints.
Jeff Mahoney5806f072006-06-26 00:27:19 -0700786 *
Nadia Derbeycf481c22008-07-25 01:48:02 -0700787 * The caller must serialize with writers.
Jeff Mahoney5806f072006-06-26 00:27:19 -0700788 */
789void *idr_replace(struct idr *idp, void *ptr, int id)
790{
791 int n;
792 struct idr_layer *p, *old_p;
793
Jeff Mahoney5806f072006-06-26 00:27:19 -0700794 p = idp->top;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800795 if (!p)
796 return ERR_PTR(-EINVAL);
797
798 n = (p->layer+1) * IDR_BITS;
Jeff Mahoney5806f072006-06-26 00:27:19 -0700799
Fengguang Wu125c4c72012-10-04 17:13:15 -0700800 id &= MAX_IDR_MASK;
Jeff Mahoney5806f072006-06-26 00:27:19 -0700801
802 if (id >= (1 << n))
803 return ERR_PTR(-EINVAL);
804
805 n -= IDR_BITS;
806 while ((n > 0) && p) {
807 p = p->ary[(id >> n) & IDR_MASK];
808 n -= IDR_BITS;
809 }
810
811 n = id & IDR_MASK;
812 if (unlikely(p == NULL || !test_bit(n, &p->bitmap)))
813 return ERR_PTR(-ENOENT);
814
815 old_p = p->ary[n];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700816 rcu_assign_pointer(p->ary[n], ptr);
Jeff Mahoney5806f072006-06-26 00:27:19 -0700817
818 return old_p;
819}
820EXPORT_SYMBOL(idr_replace);
821
Akinobu Mita199f0ca2008-04-29 01:03:13 -0700822void __init idr_init_cache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Akinobu Mita199f0ca2008-04-29 01:03:13 -0700824 idr_layer_cache = kmem_cache_create("idr_layer_cache",
Andrew Morton5b019e92009-01-15 13:51:21 -0800825 sizeof(struct idr_layer), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
828/**
829 * idr_init - initialize idr handle
830 * @idp: idr handle
831 *
832 * This function is use to set up the handle (@idp) that you will pass
833 * to the rest of the functions.
834 */
835void idr_init(struct idr *idp)
836{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 memset(idp, 0, sizeof(struct idr));
838 spin_lock_init(&idp->lock);
839}
840EXPORT_SYMBOL(idr_init);
Tejun Heo72dba582007-06-14 03:45:13 +0900841
842
Randy Dunlap56083ab2010-10-26 14:19:08 -0700843/**
844 * DOC: IDA description
Tejun Heo72dba582007-06-14 03:45:13 +0900845 * IDA - IDR based ID allocator
846 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700847 * This is id allocator without id -> pointer translation. Memory
Tejun Heo72dba582007-06-14 03:45:13 +0900848 * usage is much lower than full blown idr because each id only
849 * occupies a bit. ida uses a custom leaf node which contains
850 * IDA_BITMAP_BITS slots.
851 *
852 * 2007-04-25 written by Tejun Heo <htejun@gmail.com>
853 */
854
855static void free_bitmap(struct ida *ida, struct ida_bitmap *bitmap)
856{
857 unsigned long flags;
858
859 if (!ida->free_bitmap) {
860 spin_lock_irqsave(&ida->idr.lock, flags);
861 if (!ida->free_bitmap) {
862 ida->free_bitmap = bitmap;
863 bitmap = NULL;
864 }
865 spin_unlock_irqrestore(&ida->idr.lock, flags);
866 }
867
868 kfree(bitmap);
869}
870
871/**
872 * ida_pre_get - reserve resources for ida allocation
873 * @ida: ida handle
874 * @gfp_mask: memory allocation flag
875 *
876 * This function should be called prior to locking and calling the
877 * following function. It preallocates enough memory to satisfy the
878 * worst possible allocation.
879 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700880 * If the system is REALLY out of memory this function returns %0,
881 * otherwise %1.
Tejun Heo72dba582007-06-14 03:45:13 +0900882 */
883int ida_pre_get(struct ida *ida, gfp_t gfp_mask)
884{
885 /* allocate idr_layers */
886 if (!idr_pre_get(&ida->idr, gfp_mask))
887 return 0;
888
889 /* allocate free_bitmap */
890 if (!ida->free_bitmap) {
891 struct ida_bitmap *bitmap;
892
893 bitmap = kmalloc(sizeof(struct ida_bitmap), gfp_mask);
894 if (!bitmap)
895 return 0;
896
897 free_bitmap(ida, bitmap);
898 }
899
900 return 1;
901}
902EXPORT_SYMBOL(ida_pre_get);
903
904/**
905 * ida_get_new_above - allocate new ID above or equal to a start id
906 * @ida: ida handle
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900907 * @starting_id: id to start search at
Tejun Heo72dba582007-06-14 03:45:13 +0900908 * @p_id: pointer to the allocated handle
909 *
Wang Sheng-Huie3816c52011-10-31 17:12:36 -0700910 * Allocate new ID above or equal to @starting_id. It should be called
911 * with any required locks.
Tejun Heo72dba582007-06-14 03:45:13 +0900912 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700913 * If memory is required, it will return %-EAGAIN, you should unlock
Tejun Heo72dba582007-06-14 03:45:13 +0900914 * and go back to the ida_pre_get() call. If the ida is full, it will
Randy Dunlap56083ab2010-10-26 14:19:08 -0700915 * return %-ENOSPC.
Tejun Heo72dba582007-06-14 03:45:13 +0900916 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700917 * @p_id returns a value in the range @starting_id ... %0x7fffffff.
Tejun Heo72dba582007-06-14 03:45:13 +0900918 */
919int ida_get_new_above(struct ida *ida, int starting_id, int *p_id)
920{
Fengguang Wu125c4c72012-10-04 17:13:15 -0700921 struct idr_layer *pa[MAX_IDR_LEVEL];
Tejun Heo72dba582007-06-14 03:45:13 +0900922 struct ida_bitmap *bitmap;
923 unsigned long flags;
924 int idr_id = starting_id / IDA_BITMAP_BITS;
925 int offset = starting_id % IDA_BITMAP_BITS;
926 int t, id;
927
928 restart:
929 /* get vacant slot */
Tejun Heod5c74092013-02-27 17:03:55 -0800930 t = idr_get_empty_slot(&ida->idr, idr_id, pa, 0, &ida->idr);
Nadia Derbey944ca052008-07-25 01:47:59 -0700931 if (t < 0)
Tejun Heo12d1b432013-02-27 17:03:53 -0800932 return t == -ENOMEM ? -EAGAIN : t;
Tejun Heo72dba582007-06-14 03:45:13 +0900933
Fengguang Wu125c4c72012-10-04 17:13:15 -0700934 if (t * IDA_BITMAP_BITS >= MAX_IDR_BIT)
Tejun Heo72dba582007-06-14 03:45:13 +0900935 return -ENOSPC;
936
937 if (t != idr_id)
938 offset = 0;
939 idr_id = t;
940
941 /* if bitmap isn't there, create a new one */
942 bitmap = (void *)pa[0]->ary[idr_id & IDR_MASK];
943 if (!bitmap) {
944 spin_lock_irqsave(&ida->idr.lock, flags);
945 bitmap = ida->free_bitmap;
946 ida->free_bitmap = NULL;
947 spin_unlock_irqrestore(&ida->idr.lock, flags);
948
949 if (!bitmap)
950 return -EAGAIN;
951
952 memset(bitmap, 0, sizeof(struct ida_bitmap));
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700953 rcu_assign_pointer(pa[0]->ary[idr_id & IDR_MASK],
954 (void *)bitmap);
Tejun Heo72dba582007-06-14 03:45:13 +0900955 pa[0]->count++;
956 }
957
958 /* lookup for empty slot */
959 t = find_next_zero_bit(bitmap->bitmap, IDA_BITMAP_BITS, offset);
960 if (t == IDA_BITMAP_BITS) {
961 /* no empty slot after offset, continue to the next chunk */
962 idr_id++;
963 offset = 0;
964 goto restart;
965 }
966
967 id = idr_id * IDA_BITMAP_BITS + t;
Fengguang Wu125c4c72012-10-04 17:13:15 -0700968 if (id >= MAX_IDR_BIT)
Tejun Heo72dba582007-06-14 03:45:13 +0900969 return -ENOSPC;
970
971 __set_bit(t, bitmap->bitmap);
972 if (++bitmap->nr_busy == IDA_BITMAP_BITS)
973 idr_mark_full(pa, idr_id);
974
975 *p_id = id;
976
977 /* Each leaf node can handle nearly a thousand slots and the
978 * whole idea of ida is to have small memory foot print.
979 * Throw away extra resources one by one after each successful
980 * allocation.
981 */
982 if (ida->idr.id_free_cnt || ida->free_bitmap) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700983 struct idr_layer *p = get_from_free_list(&ida->idr);
Tejun Heo72dba582007-06-14 03:45:13 +0900984 if (p)
985 kmem_cache_free(idr_layer_cache, p);
986 }
987
988 return 0;
989}
990EXPORT_SYMBOL(ida_get_new_above);
991
992/**
Tejun Heo72dba582007-06-14 03:45:13 +0900993 * ida_remove - remove the given ID
994 * @ida: ida handle
995 * @id: ID to free
996 */
997void ida_remove(struct ida *ida, int id)
998{
999 struct idr_layer *p = ida->idr.top;
1000 int shift = (ida->idr.layers - 1) * IDR_BITS;
1001 int idr_id = id / IDA_BITMAP_BITS;
1002 int offset = id % IDA_BITMAP_BITS;
1003 int n;
1004 struct ida_bitmap *bitmap;
1005
1006 /* clear full bits while looking up the leaf idr_layer */
1007 while ((shift > 0) && p) {
1008 n = (idr_id >> shift) & IDR_MASK;
1009 __clear_bit(n, &p->bitmap);
1010 p = p->ary[n];
1011 shift -= IDR_BITS;
1012 }
1013
1014 if (p == NULL)
1015 goto err;
1016
1017 n = idr_id & IDR_MASK;
1018 __clear_bit(n, &p->bitmap);
1019
1020 bitmap = (void *)p->ary[n];
1021 if (!test_bit(offset, bitmap->bitmap))
1022 goto err;
1023
1024 /* update bitmap and remove it if empty */
1025 __clear_bit(offset, bitmap->bitmap);
1026 if (--bitmap->nr_busy == 0) {
1027 __set_bit(n, &p->bitmap); /* to please idr_remove() */
1028 idr_remove(&ida->idr, idr_id);
1029 free_bitmap(ida, bitmap);
1030 }
1031
1032 return;
1033
1034 err:
1035 printk(KERN_WARNING
1036 "ida_remove called for id=%d which is not allocated.\n", id);
1037}
1038EXPORT_SYMBOL(ida_remove);
1039
1040/**
1041 * ida_destroy - release all cached layers within an ida tree
Naohiro Aotaea24ea82010-08-31 00:37:03 +09001042 * @ida: ida handle
Tejun Heo72dba582007-06-14 03:45:13 +09001043 */
1044void ida_destroy(struct ida *ida)
1045{
1046 idr_destroy(&ida->idr);
1047 kfree(ida->free_bitmap);
1048}
1049EXPORT_SYMBOL(ida_destroy);
1050
1051/**
Rusty Russell88eca022011-08-03 16:21:06 -07001052 * ida_simple_get - get a new id.
1053 * @ida: the (initialized) ida.
1054 * @start: the minimum id (inclusive, < 0x8000000)
1055 * @end: the maximum id (exclusive, < 0x8000000 or 0)
1056 * @gfp_mask: memory allocation flags
1057 *
1058 * Allocates an id in the range start <= id < end, or returns -ENOSPC.
1059 * On memory allocation failure, returns -ENOMEM.
1060 *
1061 * Use ida_simple_remove() to get rid of an id.
1062 */
1063int ida_simple_get(struct ida *ida, unsigned int start, unsigned int end,
1064 gfp_t gfp_mask)
1065{
1066 int ret, id;
1067 unsigned int max;
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001068 unsigned long flags;
Rusty Russell88eca022011-08-03 16:21:06 -07001069
1070 BUG_ON((int)start < 0);
1071 BUG_ON((int)end < 0);
1072
1073 if (end == 0)
1074 max = 0x80000000;
1075 else {
1076 BUG_ON(end < start);
1077 max = end - 1;
1078 }
1079
1080again:
1081 if (!ida_pre_get(ida, gfp_mask))
1082 return -ENOMEM;
1083
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001084 spin_lock_irqsave(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -07001085 ret = ida_get_new_above(ida, start, &id);
1086 if (!ret) {
1087 if (id > max) {
1088 ida_remove(ida, id);
1089 ret = -ENOSPC;
1090 } else {
1091 ret = id;
1092 }
1093 }
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001094 spin_unlock_irqrestore(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -07001095
1096 if (unlikely(ret == -EAGAIN))
1097 goto again;
1098
1099 return ret;
1100}
1101EXPORT_SYMBOL(ida_simple_get);
1102
1103/**
1104 * ida_simple_remove - remove an allocated id.
1105 * @ida: the (initialized) ida.
1106 * @id: the id returned by ida_simple_get.
1107 */
1108void ida_simple_remove(struct ida *ida, unsigned int id)
1109{
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001110 unsigned long flags;
1111
Rusty Russell88eca022011-08-03 16:21:06 -07001112 BUG_ON((int)id < 0);
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001113 spin_lock_irqsave(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -07001114 ida_remove(ida, id);
Tejun Heo46cbc1d2011-11-02 13:38:46 -07001115 spin_unlock_irqrestore(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -07001116}
1117EXPORT_SYMBOL(ida_simple_remove);
1118
1119/**
Tejun Heo72dba582007-06-14 03:45:13 +09001120 * ida_init - initialize ida handle
1121 * @ida: ida handle
1122 *
1123 * This function is use to set up the handle (@ida) that you will pass
1124 * to the rest of the functions.
1125 */
1126void ida_init(struct ida *ida)
1127{
1128 memset(ida, 0, sizeof(struct ida));
1129 idr_init(&ida->idr);
1130
1131}
1132EXPORT_SYMBOL(ida_init);