blob: 4ec8986e5dfb61c7f2fd47abd2563893bb4deaa0 [file] [log] [blame]
Thomas Gleixner68cf6182019-05-28 10:10:22 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * include/linux/idr.h
4 *
5 * 2002-10-18 written by Jim Houston jim.houston@ccur.com
6 * Copyright (C) 2002 by Concurrent Computer Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
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
Matthew Wilcox0a835c42016-12-20 10:27:56 -050015#include <linux/radix-tree.h>
16#include <linux/gfp.h>
Matthew Wilcox7ad3d4d2016-12-16 11:55:56 -050017#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19struct idr {
Matthew Wilcox0a835c42016-12-20 10:27:56 -050020 struct radix_tree_root idr_rt;
Matthew Wilcox6ce711f2017-11-30 13:45:11 -050021 unsigned int idr_base;
Matthew Wilcox0a835c42016-12-20 10:27:56 -050022 unsigned int idr_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023};
24
Matthew Wilcox0a835c42016-12-20 10:27:56 -050025/*
26 * The IDR API does not expose the tagging functionality of the radix tree
27 * to users. Use tag 0 to track whether a node has free space below it.
28 */
29#define IDR_FREE 0
30
31/* Set the IDR flag and the IDR_FREE tag */
Matthew Wilcoxfa290cd2018-04-10 16:36:28 -070032#define IDR_RT_MARKER (ROOT_IS_IDR | (__force gfp_t) \
33 (1 << (ROOT_TAG_SHIFT + IDR_FREE)))
Matthew Wilcox0a835c42016-12-20 10:27:56 -050034
Matthew Wilcoxf6bb2a22018-04-10 16:36:52 -070035#define IDR_INIT_BASE(name, base) { \
36 .idr_rt = RADIX_TREE_INIT(name, IDR_RT_MARKER), \
Matthew Wilcox6ce711f2017-11-30 13:45:11 -050037 .idr_base = (base), \
38 .idr_next = 0, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Nadia Derbeyf9c46d62008-07-25 01:48:01 -070041/**
Matthew Wilcox6ce711f2017-11-30 13:45:11 -050042 * IDR_INIT() - Initialise an IDR.
Matthew Wilcoxf6bb2a22018-04-10 16:36:52 -070043 * @name: Name of IDR.
Matthew Wilcox6ce711f2017-11-30 13:45:11 -050044 *
45 * A freshly-initialised IDR contains no IDs.
46 */
Matthew Wilcoxf6bb2a22018-04-10 16:36:52 -070047#define IDR_INIT(name) IDR_INIT_BASE(name, 0)
Matthew Wilcox6ce711f2017-11-30 13:45:11 -050048
49/**
Matthew Wilcoxf6bb2a22018-04-10 16:36:52 -070050 * DEFINE_IDR() - Define a statically-allocated IDR.
51 * @name: Name of IDR.
Matthew Wilcoxac665d92018-02-06 15:05:49 -050052 *
53 * An IDR defined using this macro is ready for use with no additional
54 * initialisation required. It contains no IDs.
55 */
Matthew Wilcoxf6bb2a22018-04-10 16:36:52 -070056#define DEFINE_IDR(name) struct idr name = IDR_INIT(name)
Matthew Wilcoxac665d92018-02-06 15:05:49 -050057
58/**
Matthew Wilcox44430612016-12-14 15:09:19 -080059 * idr_get_cursor - Return the current position of the cyclic allocator
60 * @idr: idr handle
61 *
62 * The value returned is the value that will be next returned from
63 * idr_alloc_cyclic() if it is free (otherwise the search will start from
64 * this position).
65 */
Matthew Wilcox0a835c42016-12-20 10:27:56 -050066static inline unsigned int idr_get_cursor(const struct idr *idr)
Matthew Wilcox44430612016-12-14 15:09:19 -080067{
Matthew Wilcox0a835c42016-12-20 10:27:56 -050068 return READ_ONCE(idr->idr_next);
Matthew Wilcox44430612016-12-14 15:09:19 -080069}
70
71/**
72 * idr_set_cursor - Set the current position of the cyclic allocator
73 * @idr: idr handle
74 * @val: new position
75 *
76 * The next call to idr_alloc_cyclic() will return @val if it is free
77 * (otherwise the search will start from this position).
78 */
79static inline void idr_set_cursor(struct idr *idr, unsigned int val)
80{
Matthew Wilcox0a835c42016-12-20 10:27:56 -050081 WRITE_ONCE(idr->idr_next, val);
Matthew Wilcox44430612016-12-14 15:09:19 -080082}
83
84/**
Randy Dunlap56083ab2010-10-26 14:19:08 -070085 * DOC: idr sync
Nadia Derbeyf9c46d62008-07-25 01:48:01 -070086 * idr synchronization (stolen from radix-tree.h)
87 *
88 * idr_find() is able to be called locklessly, using RCU. The caller must
89 * ensure calls to this function are made within rcu_read_lock() regions.
90 * Other readers (lock-free or otherwise) and modifications may be running
91 * concurrently.
92 *
93 * It is still required that the caller manage the synchronization and
94 * lifetimes of the items. So if RCU lock-free lookups are used, typically
95 * this would mean that the items have their own locks, or are amenable to
96 * lock-free access; and that the items are freed by RCU (or only freed after
97 * having been deleted from the idr tree *and* a synchronize_rcu() grace
98 * period).
99 */
100
willy@infradead.org3c60e862018-06-13 11:45:55 -0700101#define idr_lock(idr) xa_lock(&(idr)->idr_rt)
102#define idr_unlock(idr) xa_unlock(&(idr)->idr_rt)
103#define idr_lock_bh(idr) xa_lock_bh(&(idr)->idr_rt)
104#define idr_unlock_bh(idr) xa_unlock_bh(&(idr)->idr_rt)
105#define idr_lock_irq(idr) xa_lock_irq(&(idr)->idr_rt)
106#define idr_unlock_irq(idr) xa_unlock_irq(&(idr)->idr_rt)
107#define idr_lock_irqsave(idr, flags) \
108 xa_lock_irqsave(&(idr)->idr_rt, flags)
109#define idr_unlock_irqrestore(idr, flags) \
110 xa_unlock_irqrestore(&(idr)->idr_rt, flags)
111
Tejun Heod5c74092013-02-27 17:03:55 -0800112void idr_preload(gfp_t gfp_mask);
Chris Mi388f79f2017-08-30 02:31:57 -0400113
Matthew Wilcox6ce711f2017-11-30 13:45:11 -0500114int idr_alloc(struct idr *, void *ptr, int start, int end, gfp_t);
115int __must_check idr_alloc_u32(struct idr *, void *ptr, u32 *id,
Matthew Wilcoxe096f6a2017-11-28 10:14:27 -0500116 unsigned long max, gfp_t);
Matthew Wilcox6ce711f2017-11-30 13:45:11 -0500117int idr_alloc_cyclic(struct idr *, void *ptr, int start, int end, gfp_t);
118void *idr_remove(struct idr *, unsigned long id);
119void *idr_find(const struct idr *, unsigned long id);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500120int idr_for_each(const struct idr *,
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700121 int (*fn)(int id, void *p, void *data), void *data);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500122void *idr_get_next(struct idr *, int *nextid);
Matthew Wilcox7a457572017-11-28 15:39:51 -0500123void *idr_get_next_ul(struct idr *, unsigned long *nextid);
Matthew Wilcox234a4622017-11-28 09:56:36 -0500124void *idr_replace(struct idr *, void *, unsigned long id);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500125void idr_destroy(struct idr *);
126
Matthew Wilcox6ce711f2017-11-30 13:45:11 -0500127/**
128 * idr_init_base() - Initialise an IDR.
129 * @idr: IDR handle.
130 * @base: The base value for the IDR.
131 *
132 * This variation of idr_init() creates an IDR which will allocate IDs
133 * starting at %base.
134 */
135static inline void idr_init_base(struct idr *idr, int base)
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500136{
137 INIT_RADIX_TREE(&idr->idr_rt, IDR_RT_MARKER);
Matthew Wilcox6ce711f2017-11-30 13:45:11 -0500138 idr->idr_base = base;
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500139 idr->idr_next = 0;
140}
141
Matthew Wilcox6ce711f2017-11-30 13:45:11 -0500142/**
143 * idr_init() - Initialise an IDR.
144 * @idr: IDR handle.
145 *
146 * Initialise a dynamically allocated IDR. To initialise a
147 * statically allocated IDR, use DEFINE_IDR().
148 */
149static inline void idr_init(struct idr *idr)
150{
151 idr_init_base(idr, 0);
152}
153
Matthew Wilcoxac665d92018-02-06 15:05:49 -0500154/**
155 * idr_is_empty() - Are there any IDs allocated?
156 * @idr: IDR handle.
157 *
158 * Return: %true if any IDs have been allocated from this IDR.
159 */
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500160static inline bool idr_is_empty(const struct idr *idr)
161{
162 return radix_tree_empty(&idr->idr_rt) &&
163 radix_tree_tagged(&idr->idr_rt, IDR_FREE);
164}
Luben Tuikovf668ab12005-11-08 17:14:08 +0100165
Tejun Heo49038ef2013-02-27 17:03:52 -0800166/**
Tejun Heod5c74092013-02-27 17:03:55 -0800167 * idr_preload_end - end preload section started with idr_preload()
168 *
169 * Each idr_preload() should be matched with an invocation of this
170 * function. See idr_preload() for details.
171 */
172static inline void idr_preload_end(void)
173{
174 preempt_enable();
175}
176
177/**
Matthew Wilcox7a457572017-11-28 15:39:51 -0500178 * idr_for_each_entry() - Iterate over an IDR's elements of a given type.
179 * @idr: IDR handle.
180 * @entry: The type * to use as cursor
181 * @id: Entry ID.
George Spelvinb949be52013-03-27 14:08:33 +0100182 *
183 * @entry and @id do not need to be initialized before the loop, and
Matthew Wilcox7a457572017-11-28 15:39:51 -0500184 * after normal termination @entry is left with the value NULL. This
George Spelvinb949be52013-03-27 14:08:33 +0100185 * is convenient for a "not found" value.
Tejun Heo49038ef2013-02-27 17:03:52 -0800186 */
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500187#define idr_for_each_entry(idr, entry, id) \
188 for (id = 0; ((entry) = idr_get_next(idr, &(id))) != NULL; ++id)
Tejun Heo49038ef2013-02-27 17:03:52 -0800189
Andreas Gruenbachera55bbd32014-08-28 13:31:14 +0200190/**
Matthew Wilcox7a457572017-11-28 15:39:51 -0500191 * idr_for_each_entry_ul() - Iterate over an IDR's elements of a given type.
192 * @idr: IDR handle.
193 * @entry: The type * to use as cursor.
Cong Wange33d2b72019-06-28 11:03:41 -0700194 * @tmp: A temporary placeholder for ID.
Matthew Wilcox7a457572017-11-28 15:39:51 -0500195 * @id: Entry ID.
Andreas Gruenbachera55bbd32014-08-28 13:31:14 +0200196 *
Matthew Wilcox7a457572017-11-28 15:39:51 -0500197 * @entry and @id do not need to be initialized before the loop, and
198 * after normal termination @entry is left with the value NULL. This
199 * is convenient for a "not found" value.
200 */
Cong Wange33d2b72019-06-28 11:03:41 -0700201#define idr_for_each_entry_ul(idr, entry, tmp, id) \
202 for (tmp = 0, id = 0; \
203 tmp <= id && ((entry) = idr_get_next_ul(idr, &(id))) != NULL; \
204 tmp = id, ++id)
Matthew Wilcox7a457572017-11-28 15:39:51 -0500205
206/**
207 * idr_for_each_entry_continue() - Continue iteration over an IDR's elements of a given type
208 * @idr: IDR handle.
209 * @entry: The type * to use as a cursor.
210 * @id: Entry ID.
211 *
212 * Continue to iterate over entries, continuing after the current position.
Andreas Gruenbachera55bbd32014-08-28 13:31:14 +0200213 */
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500214#define idr_for_each_entry_continue(idr, entry, id) \
215 for ((entry) = idr_get_next((idr), &(id)); \
Andreas Gruenbachera55bbd32014-08-28 13:31:14 +0200216 entry; \
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500217 ++id, (entry) = idr_get_next((idr), &(id)))
Andreas Gruenbachera55bbd32014-08-28 13:31:14 +0200218
Cong Wangd39d7142019-06-28 11:03:42 -0700219/**
220 * idr_for_each_entry_continue_ul() - Continue iteration over an IDR's elements of a given type
221 * @idr: IDR handle.
222 * @entry: The type * to use as a cursor.
223 * @tmp: A temporary placeholder for ID.
224 * @id: Entry ID.
225 *
226 * Continue to iterate over entries, continuing after the current position.
227 */
228#define idr_for_each_entry_continue_ul(idr, entry, tmp, id) \
229 for (tmp = id; \
230 tmp <= id && ((entry) = idr_get_next_ul(idr, &(id))) != NULL; \
231 tmp = id, ++id)
232
Tejun Heoc8615d32013-03-13 14:59:42 -0700233/*
Matthew Wilcoxf32f0042018-07-04 15:42:46 -0400234 * IDA - ID Allocator, use when translation from id to pointer isn't necessary.
Tejun Heo72dba582007-06-14 03:45:13 +0900235 */
236#define IDA_CHUNK_SIZE 128 /* 128 bytes per chunk */
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500237#define IDA_BITMAP_LONGS (IDA_CHUNK_SIZE / sizeof(long))
Namhyung Kimed9f5242010-09-16 01:30:19 +0900238#define IDA_BITMAP_BITS (IDA_BITMAP_LONGS * sizeof(long) * 8)
Tejun Heo72dba582007-06-14 03:45:13 +0900239
240struct ida_bitmap {
Tejun Heo72dba582007-06-14 03:45:13 +0900241 unsigned long bitmap[IDA_BITMAP_LONGS];
242};
243
244struct ida {
Matthew Wilcoxf32f0042018-07-04 15:42:46 -0400245 struct xarray xa;
Tejun Heo72dba582007-06-14 03:45:13 +0900246};
247
Matthew Wilcoxf32f0042018-07-04 15:42:46 -0400248#define IDA_INIT_FLAGS (XA_FLAGS_LOCK_IRQ | XA_FLAGS_ALLOC)
249
Matthew Wilcoxf6bb2a22018-04-10 16:36:52 -0700250#define IDA_INIT(name) { \
Matthew Wilcoxf32f0042018-07-04 15:42:46 -0400251 .xa = XARRAY_INIT(name, IDA_INIT_FLAGS) \
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500252}
Matthew Wilcoxf6bb2a22018-04-10 16:36:52 -0700253#define DEFINE_IDA(name) struct ida name = IDA_INIT(name)
Tejun Heo72dba582007-06-14 03:45:13 +0900254
Matthew Wilcox5ade60d2018-03-20 17:07:11 -0400255int ida_alloc_range(struct ida *, unsigned int min, unsigned int max, gfp_t);
256void ida_free(struct ida *, unsigned int id);
Tejun Heo72dba582007-06-14 03:45:13 +0900257void ida_destroy(struct ida *ida);
Tejun Heo72dba582007-06-14 03:45:13 +0900258
Matthew Wilcox5ade60d2018-03-20 17:07:11 -0400259/**
260 * ida_alloc() - Allocate an unused ID.
261 * @ida: IDA handle.
262 * @gfp: Memory allocation flags.
263 *
264 * Allocate an ID between 0 and %INT_MAX, inclusive.
265 *
266 * Context: Any context.
267 * Return: The allocated ID, or %-ENOMEM if memory could not be allocated,
268 * or %-ENOSPC if there are no free IDs.
269 */
270static inline int ida_alloc(struct ida *ida, gfp_t gfp)
271{
272 return ida_alloc_range(ida, 0, ~0, gfp);
273}
274
275/**
276 * ida_alloc_min() - Allocate an unused ID.
277 * @ida: IDA handle.
278 * @min: Lowest ID to allocate.
279 * @gfp: Memory allocation flags.
280 *
281 * Allocate an ID between @min and %INT_MAX, inclusive.
282 *
283 * Context: Any context.
284 * Return: The allocated ID, or %-ENOMEM if memory could not be allocated,
285 * or %-ENOSPC if there are no free IDs.
286 */
287static inline int ida_alloc_min(struct ida *ida, unsigned int min, gfp_t gfp)
288{
289 return ida_alloc_range(ida, min, ~0, gfp);
290}
291
292/**
293 * ida_alloc_max() - Allocate an unused ID.
294 * @ida: IDA handle.
295 * @max: Highest ID to allocate.
296 * @gfp: Memory allocation flags.
297 *
298 * Allocate an ID between 0 and @max, inclusive.
299 *
300 * Context: Any context.
301 * Return: The allocated ID, or %-ENOMEM if memory could not be allocated,
302 * or %-ENOSPC if there are no free IDs.
303 */
304static inline int ida_alloc_max(struct ida *ida, unsigned int max, gfp_t gfp)
305{
306 return ida_alloc_range(ida, 0, max, gfp);
307}
Rusty Russell88eca022011-08-03 16:21:06 -0700308
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500309static inline void ida_init(struct ida *ida)
310{
Matthew Wilcoxf32f0042018-07-04 15:42:46 -0400311 xa_init_flags(&ida->xa, IDA_INIT_FLAGS);
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500312}
313
Matthew Wilcox5ade60d2018-03-20 17:07:11 -0400314#define ida_simple_get(ida, start, end, gfp) \
315 ida_alloc_range(ida, start, (end) - 1, gfp)
316#define ida_simple_remove(ida, id) ida_free(ida, id)
Tejun Heo49038ef2013-02-27 17:03:52 -0800317
Matthew Wilcox0a835c42016-12-20 10:27:56 -0500318static inline bool ida_is_empty(const struct ida *ida)
Matthew Wilcox99c49402016-12-14 15:09:13 -0800319{
Matthew Wilcoxf32f0042018-07-04 15:42:46 -0400320 return xa_empty(&ida->xa);
Matthew Wilcox99c49402016-12-14 15:09:13 -0800321}
Luben Tuikovf668ab12005-11-08 17:14:08 +0100322#endif /* __IDR_H__ */