blob: ff94a4875e1cb3beccd4dd13c52cf7d3ee548105 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/linux/idr.h
3 *
4 * 2002-10-18 written by Jim Houston jim.houston@ccur.com
5 * Copyright (C) 2002 by Concurrent Computer Corporation
6 * Distributed under the GNU GPL license version 2.
7 *
8 * Small id to pointer translation service avoiding fixed sized
9 * tables.
10 */
Luben Tuikovf668ab12005-11-08 17:14:08 +010011
12#ifndef __IDR_H__
13#define __IDR_H__
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/types.h>
16#include <linux/bitops.h>
Akinobu Mita199f0ca2008-04-29 01:03:13 -070017#include <linux/init.h>
Nadia Derbey2027d1a2008-07-25 01:47:57 -070018#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Tejun Heo050a6b42013-02-27 17:05:06 -080020/*
21 * We want shallower trees and thus more bits covered at each layer. 8
22 * bits gives us large enough first layer for most use cases and maximum
23 * tree depth of 4. Each idr_layer is slightly larger than 2k on 64bit and
24 * 1k on 32bit.
25 */
26#define IDR_BITS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#define IDR_SIZE (1 << IDR_BITS)
28#define IDR_MASK ((1 << IDR_BITS)-1)
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030struct idr_layer {
Tejun Heo54616282013-02-27 17:05:07 -080031 int prefix; /* the ID prefix of this idr_layer */
Tejun Heo1d9b2e12013-02-27 17:05:05 -080032 DECLARE_BITMAP(bitmap, IDR_SIZE); /* A zero bit means "space here" */
Arnd Bergmannd2c24862010-02-26 14:53:26 +010033 struct idr_layer __rcu *ary[1<<IDR_BITS];
Tejun Heo4106eca2013-02-27 17:03:51 -080034 int count; /* When zero, we can release it */
35 int layer; /* distance from leaf */
36 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
38
39struct idr {
Tejun Heo0ffc2a92013-02-27 17:05:08 -080040 struct idr_layer __rcu *hint; /* the last layer allocated from */
Tejun Heo4106eca2013-02-27 17:03:51 -080041 struct idr_layer __rcu *top;
42 struct idr_layer *id_free;
43 int layers; /* only valid w/o concurrent changes */
44 int id_free_cnt;
Jeff Layton3e6628c42013-04-29 16:21:16 -070045 int cur; /* current pos for cyclic allocation */
Tejun Heo4106eca2013-02-27 17:03:51 -080046 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
48
Tejun Heo4106eca2013-02-27 17:03:51 -080049#define IDR_INIT(name) \
50{ \
51 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53#define DEFINE_IDR(name) struct idr name = IDR_INIT(name)
54
Nadia Derbeyf9c46d62008-07-25 01:48:01 -070055/**
Randy Dunlap56083ab2010-10-26 14:19:08 -070056 * DOC: idr sync
Nadia Derbeyf9c46d62008-07-25 01:48:01 -070057 * idr synchronization (stolen from radix-tree.h)
58 *
59 * idr_find() is able to be called locklessly, using RCU. The caller must
60 * ensure calls to this function are made within rcu_read_lock() regions.
61 * Other readers (lock-free or otherwise) and modifications may be running
62 * concurrently.
63 *
64 * It is still required that the caller manage the synchronization and
65 * lifetimes of the items. So if RCU lock-free lookups are used, typically
66 * this would mean that the items have their own locks, or are amenable to
67 * lock-free access; and that the items are freed by RCU (or only freed after
68 * having been deleted from the idr tree *and* a synchronize_rcu() grace
69 * period).
70 */
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/*
73 * This is what we export.
74 */
75
Tejun Heo0ffc2a92013-02-27 17:05:08 -080076void *idr_find_slowpath(struct idr *idp, int id);
Tejun Heod5c74092013-02-27 17:03:55 -080077void idr_preload(gfp_t gfp_mask);
78int idr_alloc(struct idr *idp, void *ptr, int start, int end, gfp_t gfp_mask);
Jeff Layton3e6628c42013-04-29 16:21:16 -070079int idr_alloc_cyclic(struct idr *idr, void *ptr, int start, int end, gfp_t gfp_mask);
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -070080int idr_for_each(struct idr *idp,
81 int (*fn)(int id, void *p, void *data), void *data);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -070082void *idr_get_next(struct idr *idp, int *nextid);
Jeff Mahoney5806f072006-06-26 00:27:19 -070083void *idr_replace(struct idr *idp, void *ptr, int id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084void idr_remove(struct idr *idp, int id);
Andrew Morton8d3b3592005-10-23 12:57:18 -070085void idr_destroy(struct idr *idp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086void idr_init(struct idr *idp);
Luben Tuikovf668ab12005-11-08 17:14:08 +010087
Tejun Heo49038ef2013-02-27 17:03:52 -080088/**
Tejun Heod5c74092013-02-27 17:03:55 -080089 * idr_preload_end - end preload section started with idr_preload()
90 *
91 * Each idr_preload() should be matched with an invocation of this
92 * function. See idr_preload() for details.
93 */
94static inline void idr_preload_end(void)
95{
96 preempt_enable();
97}
98
99/**
Tejun Heo0ffc2a92013-02-27 17:05:08 -0800100 * idr_find - return pointer for given id
Randy Dunlap5857f702013-03-04 14:32:54 -0800101 * @idr: idr handle
Tejun Heo0ffc2a92013-02-27 17:05:08 -0800102 * @id: lookup key
103 *
104 * Return the pointer given the id it has been registered with. A %NULL
105 * return indicates that @id is not valid or you passed %NULL in
106 * idr_get_new().
107 *
108 * This function can be called under rcu_read_lock(), given that the leaf
109 * pointers lifetimes are correctly managed.
110 */
111static inline void *idr_find(struct idr *idr, int id)
112{
113 struct idr_layer *hint = rcu_dereference_raw(idr->hint);
114
115 if (hint && (id & ~IDR_MASK) == hint->prefix)
116 return rcu_dereference_raw(hint->ary[id & IDR_MASK]);
117
118 return idr_find_slowpath(idr, id);
119}
120
121/**
Tejun Heo49038ef2013-02-27 17:03:52 -0800122 * idr_for_each_entry - iterate over an idr's elements of a given type
123 * @idp: idr handle
124 * @entry: the type * to use as cursor
125 * @id: id entry's key
George Spelvinb949be52013-03-27 14:08:33 +0100126 *
127 * @entry and @id do not need to be initialized before the loop, and
128 * after normal terminatinon @entry is left with the value NULL. This
129 * is convenient for a "not found" value.
Tejun Heo49038ef2013-02-27 17:03:52 -0800130 */
George Spelvinb949be52013-03-27 14:08:33 +0100131#define idr_for_each_entry(idp, entry, id) \
132 for (id = 0; ((entry) = idr_get_next(idp, &(id))) != NULL; ++id)
Tejun Heo49038ef2013-02-27 17:03:52 -0800133
Tejun Heoc8615d32013-03-13 14:59:42 -0700134/*
135 * Don't use the following functions. These exist only to suppress
136 * deprecated warnings on EXPORT_SYMBOL()s.
137 */
138int __idr_pre_get(struct idr *idp, gfp_t gfp_mask);
139int __idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id);
140void __idr_remove_all(struct idr *idp);
141
142/**
143 * idr_pre_get - reserve resources for idr allocation
144 * @idp: idr handle
145 * @gfp_mask: memory allocation flags
146 *
147 * Part of old alloc interface. This is going away. Use
148 * idr_preload[_end]() and idr_alloc() instead.
149 */
150static inline int __deprecated idr_pre_get(struct idr *idp, gfp_t gfp_mask)
151{
152 return __idr_pre_get(idp, gfp_mask);
153}
154
155/**
156 * idr_get_new_above - allocate new idr entry above or equal to a start id
157 * @idp: idr handle
158 * @ptr: pointer you want associated with the id
159 * @starting_id: id to start search at
160 * @id: pointer to the allocated handle
161 *
162 * Part of old alloc interface. This is going away. Use
163 * idr_preload[_end]() and idr_alloc() instead.
164 */
165static inline int __deprecated idr_get_new_above(struct idr *idp, void *ptr,
166 int starting_id, int *id)
167{
168 return __idr_get_new_above(idp, ptr, starting_id, id);
169}
170
171/**
172 * idr_get_new - allocate new idr entry
173 * @idp: idr handle
174 * @ptr: pointer you want associated with the id
175 * @id: pointer to the allocated handle
176 *
177 * Part of old alloc interface. This is going away. Use
178 * idr_preload[_end]() and idr_alloc() instead.
179 */
180static inline int __deprecated idr_get_new(struct idr *idp, void *ptr, int *id)
181{
182 return __idr_get_new_above(idp, ptr, 0, id);
183}
Tejun Heofe6e24e2013-02-27 17:03:50 -0800184
185/**
186 * idr_remove_all - remove all ids from the given idr tree
187 * @idp: idr handle
188 *
189 * If you're trying to destroy @idp, calling idr_destroy() is enough.
190 * This is going away. Don't use.
191 */
192static inline void __deprecated idr_remove_all(struct idr *idp)
193{
194 __idr_remove_all(idp);
195}
Tejun Heo72dba582007-06-14 03:45:13 +0900196
197/*
198 * IDA - IDR based id allocator, use when translation from id to
199 * pointer isn't necessary.
Namhyung Kimed9f5242010-09-16 01:30:19 +0900200 *
201 * IDA_BITMAP_LONGS is calculated to be one less to accommodate
202 * ida_bitmap->nr_busy so that the whole struct fits in 128 bytes.
Tejun Heo72dba582007-06-14 03:45:13 +0900203 */
204#define IDA_CHUNK_SIZE 128 /* 128 bytes per chunk */
Namhyung Kimed9f5242010-09-16 01:30:19 +0900205#define IDA_BITMAP_LONGS (IDA_CHUNK_SIZE / sizeof(long) - 1)
206#define IDA_BITMAP_BITS (IDA_BITMAP_LONGS * sizeof(long) * 8)
Tejun Heo72dba582007-06-14 03:45:13 +0900207
208struct ida_bitmap {
209 long nr_busy;
210 unsigned long bitmap[IDA_BITMAP_LONGS];
211};
212
213struct ida {
214 struct idr idr;
215 struct ida_bitmap *free_bitmap;
216};
217
Thomas Gleixnereece09e2011-07-17 21:25:03 +0200218#define IDA_INIT(name) { .idr = IDR_INIT((name).idr), .free_bitmap = NULL, }
Tejun Heo72dba582007-06-14 03:45:13 +0900219#define DEFINE_IDA(name) struct ida name = IDA_INIT(name)
220
221int ida_pre_get(struct ida *ida, gfp_t gfp_mask);
222int ida_get_new_above(struct ida *ida, int starting_id, int *p_id);
Tejun Heo72dba582007-06-14 03:45:13 +0900223void ida_remove(struct ida *ida, int id);
224void ida_destroy(struct ida *ida);
225void ida_init(struct ida *ida);
226
Rusty Russell88eca022011-08-03 16:21:06 -0700227int ida_simple_get(struct ida *ida, unsigned int start, unsigned int end,
228 gfp_t gfp_mask);
229void ida_simple_remove(struct ida *ida, unsigned int id);
230
Philipp Reisner9749f302011-07-20 14:59:37 +0200231/**
Tejun Heo49038ef2013-02-27 17:03:52 -0800232 * ida_get_new - allocate new ID
233 * @ida: idr handle
234 * @p_id: pointer to the allocated handle
235 *
236 * Simple wrapper around ida_get_new_above() w/ @starting_id of zero.
Philipp Reisner9749f302011-07-20 14:59:37 +0200237 */
Tejun Heo49038ef2013-02-27 17:03:52 -0800238static inline int ida_get_new(struct ida *ida, int *p_id)
239{
240 return ida_get_new_above(ida, 0, p_id);
241}
242
243void __init idr_init_cache(void);
Philipp Reisner9749f302011-07-20 14:59:37 +0200244
Luben Tuikovf668ab12005-11-08 17:14:08 +0100245#endif /* __IDR_H__ */