blob: 7a785a0c2ea0fccead72653a0fd66af5111888ea [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * the memory is returned (we keep IDR_FREE_MAX) 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>
32#include <linux/module.h>
33#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>
37
Christoph Lametere18b8902006-12-06 20:33:20 -080038static struct kmem_cache *idr_layer_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Nadia Derbey4ae53782008-07-25 01:47:58 -070040static struct idr_layer *get_from_free_list(struct idr *idp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 struct idr_layer *p;
Roland Dreierc259cc22006-07-14 00:24:23 -070043 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Roland Dreierc259cc22006-07-14 00:24:23 -070045 spin_lock_irqsave(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 if ((p = idp->id_free)) {
47 idp->id_free = p->ary[0];
48 idp->id_free_cnt--;
49 p->ary[0] = NULL;
50 }
Roland Dreierc259cc22006-07-14 00:24:23 -070051 spin_unlock_irqrestore(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 return(p);
53}
54
Nadia Derbeycf481c22008-07-25 01:48:02 -070055static void idr_layer_rcu_free(struct rcu_head *head)
56{
57 struct idr_layer *layer;
58
59 layer = container_of(head, struct idr_layer, rcu_head);
60 kmem_cache_free(idr_layer_cache, layer);
61}
62
63static inline void free_layer(struct idr_layer *p)
64{
65 call_rcu(&p->rcu_head, idr_layer_rcu_free);
66}
67
Sonny Rao1eec0052006-06-25 05:49:34 -070068/* only called when idp->lock is held */
Nadia Derbey4ae53782008-07-25 01:47:58 -070069static void __move_to_free_list(struct idr *idp, struct idr_layer *p)
Sonny Rao1eec0052006-06-25 05:49:34 -070070{
71 p->ary[0] = idp->id_free;
72 idp->id_free = p;
73 idp->id_free_cnt++;
74}
75
Nadia Derbey4ae53782008-07-25 01:47:58 -070076static void move_to_free_list(struct idr *idp, struct idr_layer *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Roland Dreierc259cc22006-07-14 00:24:23 -070078 unsigned long flags;
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 /*
81 * Depends on the return element being zeroed.
82 */
Roland Dreierc259cc22006-07-14 00:24:23 -070083 spin_lock_irqsave(&idp->lock, flags);
Nadia Derbey4ae53782008-07-25 01:47:58 -070084 __move_to_free_list(idp, p);
Roland Dreierc259cc22006-07-14 00:24:23 -070085 spin_unlock_irqrestore(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
Tejun Heoe33ac8b2007-06-14 03:45:12 +090088static void idr_mark_full(struct idr_layer **pa, int id)
89{
90 struct idr_layer *p = pa[0];
91 int l = 0;
92
93 __set_bit(id & IDR_MASK, &p->bitmap);
94 /*
95 * If this layer is full mark the bit in the layer above to
96 * show that this part of the radix tree is full. This may
97 * complete the layer above and require walking up the radix
98 * tree.
99 */
100 while (p->bitmap == IDR_FULL) {
101 if (!(p = pa[++l]))
102 break;
103 id = id >> IDR_BITS;
104 __set_bit((id & IDR_MASK), &p->bitmap);
105 }
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/**
109 * idr_pre_get - reserver resources for idr allocation
110 * @idp: idr handle
111 * @gfp_mask: memory allocation flags
112 *
113 * This function should be called prior to locking and calling the
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700114 * idr_get_new* functions. It preallocates enough memory to satisfy
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * the worst possible allocation.
116 *
117 * If the system is REALLY out of memory this function returns 0,
118 * otherwise 1.
119 */
Al Virofd4f2df2005-10-21 03:18:50 -0400120int idr_pre_get(struct idr *idp, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 while (idp->id_free_cnt < IDR_FREE_MAX) {
123 struct idr_layer *new;
124 new = kmem_cache_alloc(idr_layer_cache, gfp_mask);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800125 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return (0);
Nadia Derbey4ae53782008-07-25 01:47:58 -0700127 move_to_free_list(idp, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
129 return 1;
130}
131EXPORT_SYMBOL(idr_pre_get);
132
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900133static int sub_alloc(struct idr *idp, int *starting_id, struct idr_layer **pa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 int n, m, sh;
136 struct idr_layer *p, *new;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900137 int l, id, oid;
Al Viro5ba25332007-10-14 19:35:50 +0100138 unsigned long bm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 id = *starting_id;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900141 restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 p = idp->top;
143 l = idp->layers;
144 pa[l--] = NULL;
145 while (1) {
146 /*
147 * We run around this while until we reach the leaf node...
148 */
149 n = (id >> (IDR_BITS*l)) & IDR_MASK;
150 bm = ~p->bitmap;
151 m = find_next_bit(&bm, IDR_SIZE, n);
152 if (m == IDR_SIZE) {
153 /* no space available go back to previous layer. */
154 l++;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900155 oid = id;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800156 id = (id | ((1 << (IDR_BITS * l)) - 1)) + 1;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900157
158 /* if already at the top layer, we need to grow */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (!(p = pa[l])) {
160 *starting_id = id;
Nadia Derbey944ca052008-07-25 01:47:59 -0700161 return IDR_NEED_TO_GROW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900163
164 /* If we need to go up one layer, continue the
165 * loop; otherwise, restart from the top.
166 */
167 sh = IDR_BITS * (l + 1);
168 if (oid >> sh == id >> sh)
169 continue;
170 else
171 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173 if (m != n) {
174 sh = IDR_BITS*l;
175 id = ((id >> sh) ^ n ^ m) << sh;
176 }
177 if ((id >= MAX_ID_BIT) || (id < 0))
Nadia Derbey944ca052008-07-25 01:47:59 -0700178 return IDR_NOMORE_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (l == 0)
180 break;
181 /*
182 * Create the layer below if it is missing.
183 */
184 if (!p->ary[m]) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700185 new = get_from_free_list(idp);
186 if (!new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return -1;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800188 new->layer = l-1;
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700189 rcu_assign_pointer(p->ary[m], new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 p->count++;
191 }
192 pa[l--] = p;
193 p = p->ary[m];
194 }
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900195
196 pa[l] = p;
197 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900200static int idr_get_empty_slot(struct idr *idp, int starting_id,
201 struct idr_layer **pa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 struct idr_layer *p, *new;
204 int layers, v, id;
Roland Dreierc259cc22006-07-14 00:24:23 -0700205 unsigned long flags;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 id = starting_id;
208build_up:
209 p = idp->top;
210 layers = idp->layers;
211 if (unlikely(!p)) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700212 if (!(p = get_from_free_list(idp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return -1;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800214 p->layer = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 layers = 1;
216 }
217 /*
218 * Add a new layer to the top of the tree if the requested
219 * id is larger than the currently allocated space.
220 */
Zaur Kambarov589777e2005-06-21 17:14:31 -0700221 while ((layers < (MAX_LEVEL - 1)) && (id >= (1 << (layers*IDR_BITS)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 layers++;
223 if (!p->count)
224 continue;
Nadia Derbey4ae53782008-07-25 01:47:58 -0700225 if (!(new = get_from_free_list(idp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /*
227 * The allocation failed. If we built part of
228 * the structure tear it down.
229 */
Roland Dreierc259cc22006-07-14 00:24:23 -0700230 spin_lock_irqsave(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 for (new = p; p && p != idp->top; new = p) {
232 p = p->ary[0];
233 new->ary[0] = NULL;
234 new->bitmap = new->count = 0;
Nadia Derbey4ae53782008-07-25 01:47:58 -0700235 __move_to_free_list(idp, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
Roland Dreierc259cc22006-07-14 00:24:23 -0700237 spin_unlock_irqrestore(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return -1;
239 }
240 new->ary[0] = p;
241 new->count = 1;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800242 new->layer = layers-1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (p->bitmap == IDR_FULL)
244 __set_bit(0, &new->bitmap);
245 p = new;
246 }
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700247 rcu_assign_pointer(idp->top, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 idp->layers = layers;
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900249 v = sub_alloc(idp, &id, pa);
Nadia Derbey944ca052008-07-25 01:47:59 -0700250 if (v == IDR_NEED_TO_GROW)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 goto build_up;
252 return(v);
253}
254
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900255static int idr_get_new_above_int(struct idr *idp, void *ptr, int starting_id)
256{
257 struct idr_layer *pa[MAX_LEVEL];
258 int id;
259
260 id = idr_get_empty_slot(idp, starting_id, pa);
261 if (id >= 0) {
262 /*
263 * Successfully found an empty slot. Install the user
264 * pointer and mark the slot full.
265 */
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700266 rcu_assign_pointer(pa[0]->ary[id & IDR_MASK],
267 (struct idr_layer *)ptr);
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900268 pa[0]->count++;
269 idr_mark_full(pa, id);
270 }
271
272 return id;
273}
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275/**
John McCutchan7c657f22005-08-26 14:02:04 -0400276 * idr_get_new_above - allocate new idr entry above or equal to a start id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 * @idp: idr handle
278 * @ptr: pointer you want associated with the ide
279 * @start_id: id to start search at
280 * @id: pointer to the allocated handle
281 *
282 * This is the allocate id function. It should be called with any
283 * required locks.
284 *
285 * If memory is required, it will return -EAGAIN, you should unlock
286 * and go back to the idr_pre_get() call. If the idr is full, it will
287 * return -ENOSPC.
288 *
289 * @id returns a value in the range 0 ... 0x7fffffff
290 */
291int idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id)
292{
293 int rv;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 rv = idr_get_new_above_int(idp, ptr, starting_id);
296 /*
297 * This is a cheap hack until the IDR code can be fixed to
298 * return proper error values.
299 */
Nadia Derbey944ca052008-07-25 01:47:59 -0700300 if (rv < 0)
301 return _idr_rc_to_errno(rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 *id = rv;
303 return 0;
304}
305EXPORT_SYMBOL(idr_get_new_above);
306
307/**
308 * idr_get_new - allocate new idr entry
309 * @idp: idr handle
310 * @ptr: pointer you want associated with the ide
311 * @id: pointer to the allocated handle
312 *
313 * This is the allocate id function. It should be called with any
314 * required locks.
315 *
316 * If memory is required, it will return -EAGAIN, you should unlock
317 * and go back to the idr_pre_get() call. If the idr is full, it will
318 * return -ENOSPC.
319 *
320 * @id returns a value in the range 0 ... 0x7fffffff
321 */
322int idr_get_new(struct idr *idp, void *ptr, int *id)
323{
324 int rv;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 rv = idr_get_new_above_int(idp, ptr, 0);
327 /*
328 * This is a cheap hack until the IDR code can be fixed to
329 * return proper error values.
330 */
Nadia Derbey944ca052008-07-25 01:47:59 -0700331 if (rv < 0)
332 return _idr_rc_to_errno(rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 *id = rv;
334 return 0;
335}
336EXPORT_SYMBOL(idr_get_new);
337
338static void idr_remove_warning(int id)
339{
Nadia Derbeyf098ad62008-07-25 01:47:59 -0700340 printk(KERN_WARNING
341 "idr_remove called for id=%d which is not allocated.\n", id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 dump_stack();
343}
344
345static void sub_remove(struct idr *idp, int shift, int id)
346{
347 struct idr_layer *p = idp->top;
348 struct idr_layer **pa[MAX_LEVEL];
349 struct idr_layer ***paa = &pa[0];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700350 struct idr_layer *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 int n;
352
353 *paa = NULL;
354 *++paa = &idp->top;
355
356 while ((shift > 0) && p) {
357 n = (id >> shift) & IDR_MASK;
358 __clear_bit(n, &p->bitmap);
359 *++paa = &p->ary[n];
360 p = p->ary[n];
361 shift -= IDR_BITS;
362 }
363 n = id & IDR_MASK;
364 if (likely(p != NULL && test_bit(n, &p->bitmap))){
365 __clear_bit(n, &p->bitmap);
Nadia Derbeycf481c22008-07-25 01:48:02 -0700366 rcu_assign_pointer(p->ary[n], NULL);
367 to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 while(*paa && ! --((**paa)->count)){
Nadia Derbeycf481c22008-07-25 01:48:02 -0700369 if (to_free)
370 free_layer(to_free);
371 to_free = **paa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 **paa-- = NULL;
373 }
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800374 if (!*paa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 idp->layers = 0;
Nadia Derbeycf481c22008-07-25 01:48:02 -0700376 if (to_free)
377 free_layer(to_free);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800378 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 idr_remove_warning(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
382/**
383 * idr_remove - remove the given id and free it's slot
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800384 * @idp: idr handle
385 * @id: unique key
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 */
387void idr_remove(struct idr *idp, int id)
388{
389 struct idr_layer *p;
Nadia Derbeycf481c22008-07-25 01:48:02 -0700390 struct idr_layer *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 /* Mask off upper bits we don't use for the search. */
393 id &= MAX_ID_MASK;
394
395 sub_remove(idp, (idp->layers - 1) * IDR_BITS, id);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800396 if (idp->top && idp->top->count == 1 && (idp->layers > 1) &&
Nadia Derbeycf481c22008-07-25 01:48:02 -0700397 idp->top->ary[0]) {
398 /*
399 * Single child at leftmost slot: we can shrink the tree.
400 * This level is not needed anymore since when layers are
401 * inserted, they are inserted at the top of the existing
402 * tree.
403 */
404 to_free = idp->top;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 p = idp->top->ary[0];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700406 rcu_assign_pointer(idp->top, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 --idp->layers;
Nadia Derbeycf481c22008-07-25 01:48:02 -0700408 to_free->bitmap = to_free->count = 0;
409 free_layer(to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411 while (idp->id_free_cnt >= IDR_FREE_MAX) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700412 p = get_from_free_list(idp);
Nadia Derbeycf481c22008-07-25 01:48:02 -0700413 /*
414 * Note: we don't call the rcu callback here, since the only
415 * layers that fall into the freelist are those that have been
416 * preallocated.
417 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 kmem_cache_free(idr_layer_cache, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
Nadia Derbeyaf8e2a42008-05-01 04:34:57 -0700420 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422EXPORT_SYMBOL(idr_remove);
423
424/**
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700425 * idr_remove_all - remove all ids from the given idr tree
426 * @idp: idr handle
427 *
428 * idr_destroy() only frees up unused, cached idp_layers, but this
429 * function will remove all id mappings and leave all idp_layers
430 * unused.
431 *
432 * A typical clean-up sequence for objects stored in an idr tree, will
433 * use idr_for_each() to free all objects, if necessay, then
434 * idr_remove_all() to remove all ids, and idr_destroy() to free
435 * up the cached idr_layers.
436 */
437void idr_remove_all(struct idr *idp)
438{
Oleg Nesterov6ace06dc2007-07-31 00:39:19 -0700439 int n, id, max;
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700440 struct idr_layer *p;
441 struct idr_layer *pa[MAX_LEVEL];
442 struct idr_layer **paa = &pa[0];
443
444 n = idp->layers * IDR_BITS;
445 p = idp->top;
446 max = 1 << n;
447
448 id = 0;
Oleg Nesterov6ace06dc2007-07-31 00:39:19 -0700449 while (id < max) {
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700450 while (n > IDR_BITS && p) {
451 n -= IDR_BITS;
452 *paa++ = p;
453 p = p->ary[(id >> n) & IDR_MASK];
454 }
455
456 id += 1 << n;
457 while (n < fls(id)) {
Nadia Derbeycf481c22008-07-25 01:48:02 -0700458 if (p)
459 free_layer(p);
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700460 n += IDR_BITS;
461 p = *--paa;
462 }
463 }
Nadia Derbeycf481c22008-07-25 01:48:02 -0700464 rcu_assign_pointer(idp->top, NULL);
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700465 idp->layers = 0;
466}
467EXPORT_SYMBOL(idr_remove_all);
468
469/**
Andrew Morton8d3b3592005-10-23 12:57:18 -0700470 * idr_destroy - release all cached layers within an idr tree
471 * idp: idr handle
472 */
473void idr_destroy(struct idr *idp)
474{
475 while (idp->id_free_cnt) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700476 struct idr_layer *p = get_from_free_list(idp);
Andrew Morton8d3b3592005-10-23 12:57:18 -0700477 kmem_cache_free(idr_layer_cache, p);
478 }
479}
480EXPORT_SYMBOL(idr_destroy);
481
482/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 * idr_find - return pointer for given id
484 * @idp: idr handle
485 * @id: lookup key
486 *
487 * Return the pointer given the id it has been registered with. A %NULL
488 * return indicates that @id is not valid or you passed %NULL in
489 * idr_get_new().
490 *
Nadia Derbeyf9c46d62008-07-25 01:48:01 -0700491 * This function can be called under rcu_read_lock(), given that the leaf
492 * pointers lifetimes are correctly managed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 */
494void *idr_find(struct idr *idp, int id)
495{
496 int n;
497 struct idr_layer *p;
498
Nadia Derbeyf9c46d62008-07-25 01:48:01 -0700499 p = rcu_dereference(idp->top);
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800500 if (!p)
501 return NULL;
502 n = (p->layer+1) * IDR_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /* Mask off upper bits we don't use for the search. */
505 id &= MAX_ID_MASK;
506
507 if (id >= (1 << n))
508 return NULL;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800509 BUG_ON(n == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 while (n > 0 && p) {
512 n -= IDR_BITS;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800513 BUG_ON(n != p->layer*IDR_BITS);
Nadia Derbeyf9c46d62008-07-25 01:48:01 -0700514 p = rcu_dereference(p->ary[(id >> n) & IDR_MASK]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516 return((void *)p);
517}
518EXPORT_SYMBOL(idr_find);
519
Jeff Mahoney5806f072006-06-26 00:27:19 -0700520/**
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700521 * idr_for_each - iterate through all stored pointers
522 * @idp: idr handle
523 * @fn: function to be called for each pointer
524 * @data: data passed back to callback function
525 *
526 * Iterate over the pointers registered with the given idr. The
527 * callback function will be called for each pointer currently
528 * registered, passing the id, the pointer and the data pointer passed
529 * to this function. It is not safe to modify the idr tree while in
530 * the callback, so functions such as idr_get_new and idr_remove are
531 * not allowed.
532 *
533 * We check the return of @fn each time. If it returns anything other
534 * than 0, we break out and return that value.
535 *
536 * The caller must serialize idr_for_each() vs idr_get_new() and idr_remove().
537 */
538int idr_for_each(struct idr *idp,
539 int (*fn)(int id, void *p, void *data), void *data)
540{
541 int n, id, max, error = 0;
542 struct idr_layer *p;
543 struct idr_layer *pa[MAX_LEVEL];
544 struct idr_layer **paa = &pa[0];
545
546 n = idp->layers * IDR_BITS;
Nadia Derbeyf9c46d62008-07-25 01:48:01 -0700547 p = rcu_dereference(idp->top);
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700548 max = 1 << n;
549
550 id = 0;
551 while (id < max) {
552 while (n > 0 && p) {
553 n -= IDR_BITS;
554 *paa++ = p;
Nadia Derbeyf9c46d62008-07-25 01:48:01 -0700555 p = rcu_dereference(p->ary[(id >> n) & IDR_MASK]);
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700556 }
557
558 if (p) {
559 error = fn(id, (void *)p, data);
560 if (error)
561 break;
562 }
563
564 id += 1 << n;
565 while (n < fls(id)) {
566 n += IDR_BITS;
567 p = *--paa;
568 }
569 }
570
571 return error;
572}
573EXPORT_SYMBOL(idr_for_each);
574
575/**
Jeff Mahoney5806f072006-06-26 00:27:19 -0700576 * idr_replace - replace pointer for given id
577 * @idp: idr handle
578 * @ptr: pointer you want associated with the id
579 * @id: lookup key
580 *
581 * Replace the pointer registered with an id and return the old value.
582 * A -ENOENT return indicates that @id was not found.
583 * A -EINVAL return indicates that @id was not within valid constraints.
584 *
Nadia Derbeycf481c22008-07-25 01:48:02 -0700585 * The caller must serialize with writers.
Jeff Mahoney5806f072006-06-26 00:27:19 -0700586 */
587void *idr_replace(struct idr *idp, void *ptr, int id)
588{
589 int n;
590 struct idr_layer *p, *old_p;
591
Jeff Mahoney5806f072006-06-26 00:27:19 -0700592 p = idp->top;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800593 if (!p)
594 return ERR_PTR(-EINVAL);
595
596 n = (p->layer+1) * IDR_BITS;
Jeff Mahoney5806f072006-06-26 00:27:19 -0700597
598 id &= MAX_ID_MASK;
599
600 if (id >= (1 << n))
601 return ERR_PTR(-EINVAL);
602
603 n -= IDR_BITS;
604 while ((n > 0) && p) {
605 p = p->ary[(id >> n) & IDR_MASK];
606 n -= IDR_BITS;
607 }
608
609 n = id & IDR_MASK;
610 if (unlikely(p == NULL || !test_bit(n, &p->bitmap)))
611 return ERR_PTR(-ENOENT);
612
613 old_p = p->ary[n];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700614 rcu_assign_pointer(p->ary[n], ptr);
Jeff Mahoney5806f072006-06-26 00:27:19 -0700615
616 return old_p;
617}
618EXPORT_SYMBOL(idr_replace);
619
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700620static void idr_cache_ctor(void *idr_layer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
622 memset(idr_layer, 0, sizeof(struct idr_layer));
623}
624
Akinobu Mita199f0ca2008-04-29 01:03:13 -0700625void __init idr_init_cache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Akinobu Mita199f0ca2008-04-29 01:03:13 -0700627 idr_layer_cache = kmem_cache_create("idr_layer_cache",
628 sizeof(struct idr_layer), 0, SLAB_PANIC,
629 idr_cache_ctor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
632/**
633 * idr_init - initialize idr handle
634 * @idp: idr handle
635 *
636 * This function is use to set up the handle (@idp) that you will pass
637 * to the rest of the functions.
638 */
639void idr_init(struct idr *idp)
640{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 memset(idp, 0, sizeof(struct idr));
642 spin_lock_init(&idp->lock);
643}
644EXPORT_SYMBOL(idr_init);
Tejun Heo72dba582007-06-14 03:45:13 +0900645
646
647/*
648 * IDA - IDR based ID allocator
649 *
650 * this is id allocator without id -> pointer translation. Memory
651 * usage is much lower than full blown idr because each id only
652 * occupies a bit. ida uses a custom leaf node which contains
653 * IDA_BITMAP_BITS slots.
654 *
655 * 2007-04-25 written by Tejun Heo <htejun@gmail.com>
656 */
657
658static void free_bitmap(struct ida *ida, struct ida_bitmap *bitmap)
659{
660 unsigned long flags;
661
662 if (!ida->free_bitmap) {
663 spin_lock_irqsave(&ida->idr.lock, flags);
664 if (!ida->free_bitmap) {
665 ida->free_bitmap = bitmap;
666 bitmap = NULL;
667 }
668 spin_unlock_irqrestore(&ida->idr.lock, flags);
669 }
670
671 kfree(bitmap);
672}
673
674/**
675 * ida_pre_get - reserve resources for ida allocation
676 * @ida: ida handle
677 * @gfp_mask: memory allocation flag
678 *
679 * This function should be called prior to locking and calling the
680 * following function. It preallocates enough memory to satisfy the
681 * worst possible allocation.
682 *
683 * If the system is REALLY out of memory this function returns 0,
684 * otherwise 1.
685 */
686int ida_pre_get(struct ida *ida, gfp_t gfp_mask)
687{
688 /* allocate idr_layers */
689 if (!idr_pre_get(&ida->idr, gfp_mask))
690 return 0;
691
692 /* allocate free_bitmap */
693 if (!ida->free_bitmap) {
694 struct ida_bitmap *bitmap;
695
696 bitmap = kmalloc(sizeof(struct ida_bitmap), gfp_mask);
697 if (!bitmap)
698 return 0;
699
700 free_bitmap(ida, bitmap);
701 }
702
703 return 1;
704}
705EXPORT_SYMBOL(ida_pre_get);
706
707/**
708 * ida_get_new_above - allocate new ID above or equal to a start id
709 * @ida: ida handle
710 * @staring_id: id to start search at
711 * @p_id: pointer to the allocated handle
712 *
713 * Allocate new ID above or equal to @ida. It should be called with
714 * any required locks.
715 *
716 * If memory is required, it will return -EAGAIN, you should unlock
717 * and go back to the ida_pre_get() call. If the ida is full, it will
718 * return -ENOSPC.
719 *
720 * @p_id returns a value in the range 0 ... 0x7fffffff.
721 */
722int ida_get_new_above(struct ida *ida, int starting_id, int *p_id)
723{
724 struct idr_layer *pa[MAX_LEVEL];
725 struct ida_bitmap *bitmap;
726 unsigned long flags;
727 int idr_id = starting_id / IDA_BITMAP_BITS;
728 int offset = starting_id % IDA_BITMAP_BITS;
729 int t, id;
730
731 restart:
732 /* get vacant slot */
733 t = idr_get_empty_slot(&ida->idr, idr_id, pa);
Nadia Derbey944ca052008-07-25 01:47:59 -0700734 if (t < 0)
735 return _idr_rc_to_errno(t);
Tejun Heo72dba582007-06-14 03:45:13 +0900736
737 if (t * IDA_BITMAP_BITS >= MAX_ID_BIT)
738 return -ENOSPC;
739
740 if (t != idr_id)
741 offset = 0;
742 idr_id = t;
743
744 /* if bitmap isn't there, create a new one */
745 bitmap = (void *)pa[0]->ary[idr_id & IDR_MASK];
746 if (!bitmap) {
747 spin_lock_irqsave(&ida->idr.lock, flags);
748 bitmap = ida->free_bitmap;
749 ida->free_bitmap = NULL;
750 spin_unlock_irqrestore(&ida->idr.lock, flags);
751
752 if (!bitmap)
753 return -EAGAIN;
754
755 memset(bitmap, 0, sizeof(struct ida_bitmap));
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700756 rcu_assign_pointer(pa[0]->ary[idr_id & IDR_MASK],
757 (void *)bitmap);
Tejun Heo72dba582007-06-14 03:45:13 +0900758 pa[0]->count++;
759 }
760
761 /* lookup for empty slot */
762 t = find_next_zero_bit(bitmap->bitmap, IDA_BITMAP_BITS, offset);
763 if (t == IDA_BITMAP_BITS) {
764 /* no empty slot after offset, continue to the next chunk */
765 idr_id++;
766 offset = 0;
767 goto restart;
768 }
769
770 id = idr_id * IDA_BITMAP_BITS + t;
771 if (id >= MAX_ID_BIT)
772 return -ENOSPC;
773
774 __set_bit(t, bitmap->bitmap);
775 if (++bitmap->nr_busy == IDA_BITMAP_BITS)
776 idr_mark_full(pa, idr_id);
777
778 *p_id = id;
779
780 /* Each leaf node can handle nearly a thousand slots and the
781 * whole idea of ida is to have small memory foot print.
782 * Throw away extra resources one by one after each successful
783 * allocation.
784 */
785 if (ida->idr.id_free_cnt || ida->free_bitmap) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700786 struct idr_layer *p = get_from_free_list(&ida->idr);
Tejun Heo72dba582007-06-14 03:45:13 +0900787 if (p)
788 kmem_cache_free(idr_layer_cache, p);
789 }
790
791 return 0;
792}
793EXPORT_SYMBOL(ida_get_new_above);
794
795/**
796 * ida_get_new - allocate new ID
797 * @ida: idr handle
798 * @p_id: pointer to the allocated handle
799 *
800 * Allocate new ID. It should be called with any required locks.
801 *
802 * If memory is required, it will return -EAGAIN, you should unlock
803 * and go back to the idr_pre_get() call. If the idr is full, it will
804 * return -ENOSPC.
805 *
806 * @id returns a value in the range 0 ... 0x7fffffff.
807 */
808int ida_get_new(struct ida *ida, int *p_id)
809{
810 return ida_get_new_above(ida, 0, p_id);
811}
812EXPORT_SYMBOL(ida_get_new);
813
814/**
815 * ida_remove - remove the given ID
816 * @ida: ida handle
817 * @id: ID to free
818 */
819void ida_remove(struct ida *ida, int id)
820{
821 struct idr_layer *p = ida->idr.top;
822 int shift = (ida->idr.layers - 1) * IDR_BITS;
823 int idr_id = id / IDA_BITMAP_BITS;
824 int offset = id % IDA_BITMAP_BITS;
825 int n;
826 struct ida_bitmap *bitmap;
827
828 /* clear full bits while looking up the leaf idr_layer */
829 while ((shift > 0) && p) {
830 n = (idr_id >> shift) & IDR_MASK;
831 __clear_bit(n, &p->bitmap);
832 p = p->ary[n];
833 shift -= IDR_BITS;
834 }
835
836 if (p == NULL)
837 goto err;
838
839 n = idr_id & IDR_MASK;
840 __clear_bit(n, &p->bitmap);
841
842 bitmap = (void *)p->ary[n];
843 if (!test_bit(offset, bitmap->bitmap))
844 goto err;
845
846 /* update bitmap and remove it if empty */
847 __clear_bit(offset, bitmap->bitmap);
848 if (--bitmap->nr_busy == 0) {
849 __set_bit(n, &p->bitmap); /* to please idr_remove() */
850 idr_remove(&ida->idr, idr_id);
851 free_bitmap(ida, bitmap);
852 }
853
854 return;
855
856 err:
857 printk(KERN_WARNING
858 "ida_remove called for id=%d which is not allocated.\n", id);
859}
860EXPORT_SYMBOL(ida_remove);
861
862/**
863 * ida_destroy - release all cached layers within an ida tree
864 * ida: ida handle
865 */
866void ida_destroy(struct ida *ida)
867{
868 idr_destroy(&ida->idr);
869 kfree(ida->free_bitmap);
870}
871EXPORT_SYMBOL(ida_destroy);
872
873/**
874 * ida_init - initialize ida handle
875 * @ida: ida handle
876 *
877 * This function is use to set up the handle (@ida) that you will pass
878 * to the rest of the functions.
879 */
880void ida_init(struct ida *ida)
881{
882 memset(ida, 0, sizeof(struct ida));
883 idr_init(&ida->idr);
884
885}
886EXPORT_SYMBOL(ida_init);