Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Tuikov | f668ab1 | 2005-11-08 17:14:08 +0100 | [diff] [blame] | 11 | |
| 12 | #ifndef __IDR_H__ |
| 13 | #define __IDR_H__ |
| 14 | |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 15 | #include <linux/radix-tree.h> |
| 16 | #include <linux/gfp.h> |
Matthew Wilcox | 7ad3d4d | 2016-12-16 11:55:56 -0500 | [diff] [blame] | 17 | #include <linux/percpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
| 19 | struct idr { |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 20 | struct radix_tree_root idr_rt; |
Matthew Wilcox | 6ce711f | 2017-11-30 13:45:11 -0500 | [diff] [blame] | 21 | unsigned int idr_base; |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 22 | unsigned int idr_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | }; |
| 24 | |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 25 | /* |
| 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 Wilcox | fa290cd | 2018-04-10 16:36:28 -0700 | [diff] [blame] | 32 | #define IDR_RT_MARKER (ROOT_IS_IDR | (__force gfp_t) \ |
| 33 | (1 << (ROOT_TAG_SHIFT + IDR_FREE))) |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 34 | |
Matthew Wilcox | f6bb2a2 | 2018-04-10 16:36:52 -0700 | [diff] [blame] | 35 | #define IDR_INIT_BASE(name, base) { \ |
| 36 | .idr_rt = RADIX_TREE_INIT(name, IDR_RT_MARKER), \ |
Matthew Wilcox | 6ce711f | 2017-11-30 13:45:11 -0500 | [diff] [blame] | 37 | .idr_base = (base), \ |
| 38 | .idr_next = 0, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Nadia Derbey | f9c46d6 | 2008-07-25 01:48:01 -0700 | [diff] [blame] | 41 | /** |
Matthew Wilcox | 6ce711f | 2017-11-30 13:45:11 -0500 | [diff] [blame] | 42 | * IDR_INIT() - Initialise an IDR. |
Matthew Wilcox | f6bb2a2 | 2018-04-10 16:36:52 -0700 | [diff] [blame] | 43 | * @name: Name of IDR. |
Matthew Wilcox | 6ce711f | 2017-11-30 13:45:11 -0500 | [diff] [blame] | 44 | * |
| 45 | * A freshly-initialised IDR contains no IDs. |
| 46 | */ |
Matthew Wilcox | f6bb2a2 | 2018-04-10 16:36:52 -0700 | [diff] [blame] | 47 | #define IDR_INIT(name) IDR_INIT_BASE(name, 0) |
Matthew Wilcox | 6ce711f | 2017-11-30 13:45:11 -0500 | [diff] [blame] | 48 | |
| 49 | /** |
Matthew Wilcox | f6bb2a2 | 2018-04-10 16:36:52 -0700 | [diff] [blame] | 50 | * DEFINE_IDR() - Define a statically-allocated IDR. |
| 51 | * @name: Name of IDR. |
Matthew Wilcox | ac665d9 | 2018-02-06 15:05:49 -0500 | [diff] [blame] | 52 | * |
| 53 | * An IDR defined using this macro is ready for use with no additional |
| 54 | * initialisation required. It contains no IDs. |
| 55 | */ |
Matthew Wilcox | f6bb2a2 | 2018-04-10 16:36:52 -0700 | [diff] [blame] | 56 | #define DEFINE_IDR(name) struct idr name = IDR_INIT(name) |
Matthew Wilcox | ac665d9 | 2018-02-06 15:05:49 -0500 | [diff] [blame] | 57 | |
| 58 | /** |
Matthew Wilcox | 4443061 | 2016-12-14 15:09:19 -0800 | [diff] [blame] | 59 | * 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 Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 66 | static inline unsigned int idr_get_cursor(const struct idr *idr) |
Matthew Wilcox | 4443061 | 2016-12-14 15:09:19 -0800 | [diff] [blame] | 67 | { |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 68 | return READ_ONCE(idr->idr_next); |
Matthew Wilcox | 4443061 | 2016-12-14 15:09:19 -0800 | [diff] [blame] | 69 | } |
| 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 | */ |
| 79 | static inline void idr_set_cursor(struct idr *idr, unsigned int val) |
| 80 | { |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 81 | WRITE_ONCE(idr->idr_next, val); |
Matthew Wilcox | 4443061 | 2016-12-14 15:09:19 -0800 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | /** |
Randy Dunlap | 56083ab | 2010-10-26 14:19:08 -0700 | [diff] [blame] | 85 | * DOC: idr sync |
Nadia Derbey | f9c46d6 | 2008-07-25 01:48:01 -0700 | [diff] [blame] | 86 | * 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 | |
Tejun Heo | d5c7409 | 2013-02-27 17:03:55 -0800 | [diff] [blame] | 101 | void idr_preload(gfp_t gfp_mask); |
Chris Mi | 388f79f | 2017-08-30 02:31:57 -0400 | [diff] [blame] | 102 | |
Matthew Wilcox | 6ce711f | 2017-11-30 13:45:11 -0500 | [diff] [blame] | 103 | int idr_alloc(struct idr *, void *ptr, int start, int end, gfp_t); |
| 104 | int __must_check idr_alloc_u32(struct idr *, void *ptr, u32 *id, |
Matthew Wilcox | e096f6a | 2017-11-28 10:14:27 -0500 | [diff] [blame] | 105 | unsigned long max, gfp_t); |
Matthew Wilcox | 6ce711f | 2017-11-30 13:45:11 -0500 | [diff] [blame] | 106 | int idr_alloc_cyclic(struct idr *, void *ptr, int start, int end, gfp_t); |
| 107 | void *idr_remove(struct idr *, unsigned long id); |
| 108 | void *idr_find(const struct idr *, unsigned long id); |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 109 | int idr_for_each(const struct idr *, |
Kristian Hoegsberg | 96d7fa4 | 2007-07-15 23:37:24 -0700 | [diff] [blame] | 110 | int (*fn)(int id, void *p, void *data), void *data); |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 111 | void *idr_get_next(struct idr *, int *nextid); |
Matthew Wilcox | 7a45757 | 2017-11-28 15:39:51 -0500 | [diff] [blame] | 112 | void *idr_get_next_ul(struct idr *, unsigned long *nextid); |
Matthew Wilcox | 234a462 | 2017-11-28 09:56:36 -0500 | [diff] [blame] | 113 | void *idr_replace(struct idr *, void *, unsigned long id); |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 114 | void idr_destroy(struct idr *); |
| 115 | |
Matthew Wilcox | 6ce711f | 2017-11-30 13:45:11 -0500 | [diff] [blame] | 116 | /** |
| 117 | * idr_init_base() - Initialise an IDR. |
| 118 | * @idr: IDR handle. |
| 119 | * @base: The base value for the IDR. |
| 120 | * |
| 121 | * This variation of idr_init() creates an IDR which will allocate IDs |
| 122 | * starting at %base. |
| 123 | */ |
| 124 | static inline void idr_init_base(struct idr *idr, int base) |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 125 | { |
| 126 | INIT_RADIX_TREE(&idr->idr_rt, IDR_RT_MARKER); |
Matthew Wilcox | 6ce711f | 2017-11-30 13:45:11 -0500 | [diff] [blame] | 127 | idr->idr_base = base; |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 128 | idr->idr_next = 0; |
| 129 | } |
| 130 | |
Matthew Wilcox | 6ce711f | 2017-11-30 13:45:11 -0500 | [diff] [blame] | 131 | /** |
| 132 | * idr_init() - Initialise an IDR. |
| 133 | * @idr: IDR handle. |
| 134 | * |
| 135 | * Initialise a dynamically allocated IDR. To initialise a |
| 136 | * statically allocated IDR, use DEFINE_IDR(). |
| 137 | */ |
| 138 | static inline void idr_init(struct idr *idr) |
| 139 | { |
| 140 | idr_init_base(idr, 0); |
| 141 | } |
| 142 | |
Matthew Wilcox | ac665d9 | 2018-02-06 15:05:49 -0500 | [diff] [blame] | 143 | /** |
| 144 | * idr_is_empty() - Are there any IDs allocated? |
| 145 | * @idr: IDR handle. |
| 146 | * |
| 147 | * Return: %true if any IDs have been allocated from this IDR. |
| 148 | */ |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 149 | static inline bool idr_is_empty(const struct idr *idr) |
| 150 | { |
| 151 | return radix_tree_empty(&idr->idr_rt) && |
| 152 | radix_tree_tagged(&idr->idr_rt, IDR_FREE); |
| 153 | } |
Luben Tuikov | f668ab1 | 2005-11-08 17:14:08 +0100 | [diff] [blame] | 154 | |
Tejun Heo | 49038ef | 2013-02-27 17:03:52 -0800 | [diff] [blame] | 155 | /** |
Tejun Heo | d5c7409 | 2013-02-27 17:03:55 -0800 | [diff] [blame] | 156 | * idr_preload_end - end preload section started with idr_preload() |
| 157 | * |
| 158 | * Each idr_preload() should be matched with an invocation of this |
| 159 | * function. See idr_preload() for details. |
| 160 | */ |
| 161 | static inline void idr_preload_end(void) |
| 162 | { |
| 163 | preempt_enable(); |
| 164 | } |
| 165 | |
| 166 | /** |
Matthew Wilcox | 7a45757 | 2017-11-28 15:39:51 -0500 | [diff] [blame] | 167 | * idr_for_each_entry() - Iterate over an IDR's elements of a given type. |
| 168 | * @idr: IDR handle. |
| 169 | * @entry: The type * to use as cursor |
| 170 | * @id: Entry ID. |
George Spelvin | b949be5 | 2013-03-27 14:08:33 +0100 | [diff] [blame] | 171 | * |
| 172 | * @entry and @id do not need to be initialized before the loop, and |
Matthew Wilcox | 7a45757 | 2017-11-28 15:39:51 -0500 | [diff] [blame] | 173 | * after normal termination @entry is left with the value NULL. This |
George Spelvin | b949be5 | 2013-03-27 14:08:33 +0100 | [diff] [blame] | 174 | * is convenient for a "not found" value. |
Tejun Heo | 49038ef | 2013-02-27 17:03:52 -0800 | [diff] [blame] | 175 | */ |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 176 | #define idr_for_each_entry(idr, entry, id) \ |
| 177 | for (id = 0; ((entry) = idr_get_next(idr, &(id))) != NULL; ++id) |
Tejun Heo | 49038ef | 2013-02-27 17:03:52 -0800 | [diff] [blame] | 178 | |
Andreas Gruenbacher | a55bbd3 | 2014-08-28 13:31:14 +0200 | [diff] [blame] | 179 | /** |
Matthew Wilcox | 7a45757 | 2017-11-28 15:39:51 -0500 | [diff] [blame] | 180 | * idr_for_each_entry_ul() - Iterate over an IDR's elements of a given type. |
| 181 | * @idr: IDR handle. |
| 182 | * @entry: The type * to use as cursor. |
| 183 | * @id: Entry ID. |
Andreas Gruenbacher | a55bbd3 | 2014-08-28 13:31:14 +0200 | [diff] [blame] | 184 | * |
Matthew Wilcox | 7a45757 | 2017-11-28 15:39:51 -0500 | [diff] [blame] | 185 | * @entry and @id do not need to be initialized before the loop, and |
| 186 | * after normal termination @entry is left with the value NULL. This |
| 187 | * is convenient for a "not found" value. |
| 188 | */ |
| 189 | #define idr_for_each_entry_ul(idr, entry, id) \ |
| 190 | for (id = 0; ((entry) = idr_get_next_ul(idr, &(id))) != NULL; ++id) |
| 191 | |
| 192 | /** |
| 193 | * idr_for_each_entry_continue() - Continue iteration over an IDR's elements of a given type |
| 194 | * @idr: IDR handle. |
| 195 | * @entry: The type * to use as a cursor. |
| 196 | * @id: Entry ID. |
| 197 | * |
| 198 | * Continue to iterate over entries, continuing after the current position. |
Andreas Gruenbacher | a55bbd3 | 2014-08-28 13:31:14 +0200 | [diff] [blame] | 199 | */ |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 200 | #define idr_for_each_entry_continue(idr, entry, id) \ |
| 201 | for ((entry) = idr_get_next((idr), &(id)); \ |
Andreas Gruenbacher | a55bbd3 | 2014-08-28 13:31:14 +0200 | [diff] [blame] | 202 | entry; \ |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 203 | ++id, (entry) = idr_get_next((idr), &(id))) |
Andreas Gruenbacher | a55bbd3 | 2014-08-28 13:31:14 +0200 | [diff] [blame] | 204 | |
Tejun Heo | c8615d3 | 2013-03-13 14:59:42 -0700 | [diff] [blame] | 205 | /* |
Tejun Heo | 72dba58 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 206 | * IDA - IDR based id allocator, use when translation from id to |
| 207 | * pointer isn't necessary. |
| 208 | */ |
| 209 | #define IDA_CHUNK_SIZE 128 /* 128 bytes per chunk */ |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 210 | #define IDA_BITMAP_LONGS (IDA_CHUNK_SIZE / sizeof(long)) |
Namhyung Kim | ed9f524 | 2010-09-16 01:30:19 +0900 | [diff] [blame] | 211 | #define IDA_BITMAP_BITS (IDA_BITMAP_LONGS * sizeof(long) * 8) |
Tejun Heo | 72dba58 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 212 | |
| 213 | struct ida_bitmap { |
Tejun Heo | 72dba58 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 214 | unsigned long bitmap[IDA_BITMAP_LONGS]; |
| 215 | }; |
| 216 | |
Matthew Wilcox | 7ad3d4d | 2016-12-16 11:55:56 -0500 | [diff] [blame] | 217 | DECLARE_PER_CPU(struct ida_bitmap *, ida_bitmap); |
| 218 | |
Tejun Heo | 72dba58 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 219 | struct ida { |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 220 | struct radix_tree_root ida_rt; |
Tejun Heo | 72dba58 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 221 | }; |
| 222 | |
Matthew Wilcox | f6bb2a2 | 2018-04-10 16:36:52 -0700 | [diff] [blame] | 223 | #define IDA_INIT(name) { \ |
| 224 | .ida_rt = RADIX_TREE_INIT(name, IDR_RT_MARKER | GFP_NOWAIT), \ |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 225 | } |
Matthew Wilcox | f6bb2a2 | 2018-04-10 16:36:52 -0700 | [diff] [blame] | 226 | #define DEFINE_IDA(name) struct ida name = IDA_INIT(name) |
Tejun Heo | 72dba58 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 227 | |
| 228 | int ida_pre_get(struct ida *ida, gfp_t gfp_mask); |
| 229 | int ida_get_new_above(struct ida *ida, int starting_id, int *p_id); |
Tejun Heo | 72dba58 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 230 | void ida_remove(struct ida *ida, int id); |
| 231 | void ida_destroy(struct ida *ida); |
Tejun Heo | 72dba58 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 232 | |
Rusty Russell | 88eca02 | 2011-08-03 16:21:06 -0700 | [diff] [blame] | 233 | int ida_simple_get(struct ida *ida, unsigned int start, unsigned int end, |
| 234 | gfp_t gfp_mask); |
| 235 | void ida_simple_remove(struct ida *ida, unsigned int id); |
| 236 | |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 237 | static inline void ida_init(struct ida *ida) |
| 238 | { |
| 239 | INIT_RADIX_TREE(&ida->ida_rt, IDR_RT_MARKER | GFP_NOWAIT); |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 240 | } |
| 241 | |
Philipp Reisner | 9749f30 | 2011-07-20 14:59:37 +0200 | [diff] [blame] | 242 | /** |
Tejun Heo | 49038ef | 2013-02-27 17:03:52 -0800 | [diff] [blame] | 243 | * ida_get_new - allocate new ID |
| 244 | * @ida: idr handle |
| 245 | * @p_id: pointer to the allocated handle |
| 246 | * |
| 247 | * Simple wrapper around ida_get_new_above() w/ @starting_id of zero. |
Philipp Reisner | 9749f30 | 2011-07-20 14:59:37 +0200 | [diff] [blame] | 248 | */ |
Tejun Heo | 49038ef | 2013-02-27 17:03:52 -0800 | [diff] [blame] | 249 | static inline int ida_get_new(struct ida *ida, int *p_id) |
| 250 | { |
| 251 | return ida_get_new_above(ida, 0, p_id); |
| 252 | } |
| 253 | |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 254 | static inline bool ida_is_empty(const struct ida *ida) |
Matthew Wilcox | 99c4940 | 2016-12-14 15:09:13 -0800 | [diff] [blame] | 255 | { |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 256 | return radix_tree_empty(&ida->ida_rt); |
Matthew Wilcox | 99c4940 | 2016-12-14 15:09:13 -0800 | [diff] [blame] | 257 | } |
Luben Tuikov | f668ab1 | 2005-11-08 17:14:08 +0100 | [diff] [blame] | 258 | #endif /* __IDR_H__ */ |