2 * idr-test.c: Test the IDR API
3 * Copyright (c) 2016 Matthew Wilcox <willy@infradead.org>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 #include <linux/bitmap.h>
15 #include <linux/idr.h>
16 #include <linux/slab.h>
17 #include <linux/kernel.h>
18 #include <linux/errno.h>
22 #define DUMMY_PTR ((void *)0x12)
24 int item_idr_free(int id
, void *p
, void *data
)
26 struct item
*item
= p
;
27 assert(item
->index
== id
);
33 void item_idr_remove(struct idr
*idr
, int id
)
35 struct item
*item
= idr_find(idr
, id
);
36 assert(item
->index
== id
);
41 void idr_alloc_test(void)
46 assert(idr_alloc_cyclic(&idr
, DUMMY_PTR
, 0, 0x4000, GFP_KERNEL
) == 0);
47 assert(idr_alloc_cyclic(&idr
, DUMMY_PTR
, 0x3ffd, 0x4000, GFP_KERNEL
) == 0x3ffd);
48 idr_remove(&idr
, 0x3ffd);
51 for (i
= 0x3ffe; i
< 0x4003; i
++) {
56 item
= item_create(i
, 0);
58 item
= item_create(i
- 0x3fff, 0);
60 id
= idr_alloc_cyclic(&idr
, item
, 1, 0x4000, GFP_KERNEL
);
61 assert(id
== item
->index
);
64 idr_for_each(&idr
, item_idr_free
, &idr
);
68 void idr_replace_test(void)
72 idr_alloc(&idr
, (void *)-1, 10, 11, GFP_KERNEL
);
73 idr_replace(&idr
, &idr
, 10);
79 * Unlike the radix tree, you can put a NULL pointer -- with care -- into
80 * the IDR. Some interfaces, like idr_find() do not distinguish between
81 * "present, value is NULL" and "not present", but that's exactly what some
84 void idr_null_test(void)
89 assert(idr_is_empty(&idr
));
91 assert(idr_alloc(&idr
, NULL
, 0, 0, GFP_KERNEL
) == 0);
92 assert(!idr_is_empty(&idr
));
94 assert(idr_is_empty(&idr
));
96 assert(idr_alloc(&idr
, NULL
, 0, 0, GFP_KERNEL
) == 0);
97 assert(!idr_is_empty(&idr
));
99 assert(idr_is_empty(&idr
));
101 for (i
= 0; i
< 10; i
++) {
102 assert(idr_alloc(&idr
, NULL
, 0, 0, GFP_KERNEL
) == i
);
105 assert(idr_replace(&idr
, DUMMY_PTR
, 3) == NULL
);
106 assert(idr_replace(&idr
, DUMMY_PTR
, 4) == NULL
);
107 assert(idr_replace(&idr
, NULL
, 4) == DUMMY_PTR
);
108 assert(idr_replace(&idr
, DUMMY_PTR
, 11) == ERR_PTR(-ENOENT
));
110 assert(idr_alloc(&idr
, NULL
, 0, 0, GFP_KERNEL
) == 5);
113 for (i
= 0; i
< 9; i
++) {
115 assert(!idr_is_empty(&idr
));
118 assert(!idr_is_empty(&idr
));
120 assert(idr_is_empty(&idr
));
122 assert(idr_alloc(&idr
, NULL
, 0, 0, GFP_KERNEL
) == 0);
123 assert(idr_replace(&idr
, DUMMY_PTR
, 3) == ERR_PTR(-ENOENT
));
124 assert(idr_replace(&idr
, DUMMY_PTR
, 0) == NULL
);
125 assert(idr_replace(&idr
, NULL
, 0) == DUMMY_PTR
);
128 assert(idr_is_empty(&idr
));
130 for (i
= 1; i
< 10; i
++) {
131 assert(idr_alloc(&idr
, NULL
, 1, 0, GFP_KERNEL
) == i
);
135 assert(idr_is_empty(&idr
));
138 void idr_nowait_test(void)
143 idr_preload(GFP_KERNEL
);
145 for (i
= 0; i
< 3; i
++) {
146 struct item
*item
= item_create(i
, 0);
147 assert(idr_alloc(&idr
, item
, i
, i
+ 1, GFP_NOWAIT
) == i
);
152 idr_for_each(&idr
, item_idr_free
, &idr
);
156 void idr_get_next_test(int base
)
161 idr_init_base(&idr
, base
);
163 int indices
[] = {4, 7, 9, 15, 65, 128, 1000, 99999, 0};
165 for(i
= 0; indices
[i
]; i
++) {
166 struct item
*item
= item_create(indices
[i
], 0);
167 assert(idr_alloc(&idr
, item
, indices
[i
], indices
[i
+1],
168 GFP_KERNEL
) == indices
[i
]);
171 for(i
= 0, nextid
= 0; indices
[i
]; i
++) {
172 idr_get_next(&idr
, &nextid
);
173 assert(nextid
== indices
[i
]);
177 idr_for_each(&idr
, item_idr_free
, &idr
);
181 int idr_u32_cb(int id
, void *ptr
, void *data
)
184 BUG_ON(ptr
!= DUMMY_PTR
);
188 void idr_u32_test1(struct idr
*idr
, u32 handle
)
190 static bool warned
= false;
195 BUG_ON(idr_alloc_u32(idr
, DUMMY_PTR
, &id
, id
, GFP_KERNEL
));
196 BUG_ON(id
!= handle
);
197 BUG_ON(idr_alloc_u32(idr
, DUMMY_PTR
, &id
, id
, GFP_KERNEL
) != -ENOSPC
);
198 BUG_ON(id
!= handle
);
199 if (!warned
&& id
> INT_MAX
)
200 printk("vvv Ignore these warnings\n");
201 ptr
= idr_get_next(idr
, &sid
);
206 BUG_ON(ptr
!= DUMMY_PTR
);
209 idr_for_each(idr
, idr_u32_cb
, NULL
);
210 if (!warned
&& id
> INT_MAX
) {
211 printk("^^^ Warnings over\n");
214 BUG_ON(idr_remove(idr
, id
) != DUMMY_PTR
);
215 BUG_ON(!idr_is_empty(idr
));
218 void idr_u32_test(int base
)
221 idr_init_base(&idr
, base
);
222 idr_u32_test1(&idr
, 10);
223 idr_u32_test1(&idr
, 0x7fffffff);
224 idr_u32_test1(&idr
, 0x80000000);
225 idr_u32_test1(&idr
, 0x80000001);
226 idr_u32_test1(&idr
, 0xffe00000);
227 idr_u32_test1(&idr
, 0xffffffff);
230 void idr_checks(void)
235 for (i
= 0; i
< 10000; i
++) {
236 struct item
*item
= item_create(i
, 0);
237 assert(idr_alloc(&idr
, item
, 0, 20000, GFP_KERNEL
) == i
);
240 assert(idr_alloc(&idr
, DUMMY_PTR
, 5, 30, GFP_KERNEL
) < 0);
242 for (i
= 0; i
< 5000; i
++)
243 item_idr_remove(&idr
, i
);
247 idr_for_each(&idr
, item_idr_free
, &idr
);
250 assert(idr_is_empty(&idr
));
255 assert(idr_alloc(&idr
, DUMMY_PTR
, 0, 0, GFP_KERNEL
) == 0);
257 for (i
= 1; i
< RADIX_TREE_MAP_SIZE
; i
++)
258 assert(idr_alloc(&idr
, DUMMY_PTR
, 0, 0, GFP_KERNEL
) == i
);
259 idr_remove(&idr
, 1 << 30);
262 for (i
= INT_MAX
- 3UL; i
< INT_MAX
+ 1UL; i
++) {
263 struct item
*item
= item_create(i
, 0);
264 assert(idr_alloc(&idr
, item
, i
, i
+ 10, GFP_KERNEL
) == i
);
266 assert(idr_alloc(&idr
, DUMMY_PTR
, i
- 2, i
, GFP_KERNEL
) == -ENOSPC
);
267 assert(idr_alloc(&idr
, DUMMY_PTR
, i
- 2, i
+ 10, GFP_KERNEL
) == -ENOSPC
);
269 idr_for_each(&idr
, item_idr_free
, &idr
);
273 assert(idr_is_empty(&idr
));
275 idr_set_cursor(&idr
, INT_MAX
- 3UL);
276 for (i
= INT_MAX
- 3UL; i
< INT_MAX
+ 3UL; i
++) {
280 item
= item_create(i
, 0);
282 item
= item_create(i
- INT_MAX
- 1, 0);
284 id
= idr_alloc_cyclic(&idr
, item
, 0, 0, GFP_KERNEL
);
285 assert(id
== item
->index
);
288 idr_for_each(&idr
, item_idr_free
, &idr
);
290 assert(idr_is_empty(&idr
));
292 for (i
= 1; i
< 10000; i
++) {
293 struct item
*item
= item_create(i
, 0);
294 assert(idr_alloc(&idr
, item
, 1, 20000, GFP_KERNEL
) == i
);
297 idr_for_each(&idr
, item_idr_free
, &idr
);
304 idr_get_next_test(0);
305 idr_get_next_test(1);
306 idr_get_next_test(4);
312 #define module_init(x)
313 #define module_exit(x)
314 #define MODULE_AUTHOR(x)
315 #define MODULE_LICENSE(x)
316 #define dump_stack() assert(0)
317 void ida_dump(struct ida
*);
319 #include "../../../lib/test_ida.c"
322 * Check that we get the correct error when we run out of memory doing
323 * allocations. In userspace, GFP_NOWAIT will always fail an allocation.
324 * The first test is for not having a bitmap available, and the second test
325 * is for not being able to allocate a level of the radix tree.
327 void ida_check_nomem(void)
332 id
= ida_alloc_min(&ida
, 256, GFP_NOWAIT
);
333 IDA_BUG_ON(&ida
, id
!= -ENOMEM
);
334 id
= ida_alloc_min(&ida
, 1UL << 30, GFP_NOWAIT
);
335 IDA_BUG_ON(&ida
, id
!= -ENOMEM
);
336 IDA_BUG_ON(&ida
, !ida_is_empty(&ida
));
340 * Check handling of conversions between exceptional entries and full bitmaps.
342 void ida_check_conv_user(void)
347 radix_tree_cpu_dead(1);
348 for (i
= 0; i
< 1000000; i
++) {
349 int id
= ida_alloc(&ida
, GFP_NOWAIT
);
351 IDA_BUG_ON(&ida
, (i
% IDA_BITMAP_BITS
) !=
353 id
= ida_alloc(&ida
, GFP_KERNEL
);
355 IDA_BUG_ON(&ida
, (i
% IDA_BITMAP_BITS
) ==
358 IDA_BUG_ON(&ida
, id
!= i
);
363 void ida_check_random(void)
366 DECLARE_BITMAP(bitmap
, 2048);
368 time_t s
= time(NULL
);
371 memset(bitmap
, 0, sizeof(bitmap
));
372 for (i
= 0; i
< 100000; i
++) {
375 if (test_bit(bit
, bitmap
)) {
376 __clear_bit(bit
, bitmap
);
379 __set_bit(bit
, bitmap
);
380 IDA_BUG_ON(&ida
, ida_alloc_min(&ida
, bit
, GFP_KERNEL
)
385 if (time(NULL
) < s
+ 10)
389 void ida_simple_get_remove_test(void)
394 for (i
= 0; i
< 10000; i
++) {
395 assert(ida_simple_get(&ida
, 0, 20000, GFP_KERNEL
) == i
);
397 assert(ida_simple_get(&ida
, 5, 30, GFP_KERNEL
) < 0);
399 for (i
= 0; i
< 10000; i
++) {
400 ida_simple_remove(&ida
, i
);
402 assert(ida_is_empty(&ida
));
407 void user_ida_checks(void)
409 radix_tree_cpu_dead(1);
412 ida_check_conv_user();
414 ida_simple_get_remove_test();
416 radix_tree_cpu_dead(1);
419 static void *ida_random_fn(void *arg
)
421 rcu_register_thread();
423 rcu_unregister_thread();
427 void ida_thread_tests(void)
429 pthread_t threads
[20];
432 for (i
= 0; i
< ARRAY_SIZE(threads
); i
++)
433 if (pthread_create(&threads
[i
], NULL
, ida_random_fn
, NULL
)) {
434 perror("creating ida thread");
439 pthread_join(threads
[i
], NULL
);
450 int __weak
main(void)
455 radix_tree_cpu_dead(1);
458 printf("nr_allocated = %d\n", nr_allocated
);