diff options
author | Lai Jiangshan <laijs@cn.fujitsu.com> | 2014-06-06 17:37:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-06 19:08:12 -0400 |
commit | 8f9f665a707721146f24a892b1a0da1ab4da1d58 (patch) | |
tree | 75850b4a284ac671b7f1b563c985b959181aa70d | |
parent | 3afb69cb5572b3c8c898c00880803cf1a49852c4 (diff) |
idr: fix unexpected ID-removal when idr_remove(unallocated_id)
If unallocated_id = (ANY * idr_max(idp->layers) + existing_id) is passed
to idr_remove(). The existing_id will be removed unexpectedly.
The following test shows this unexpected id-removal:
static void test4(void)
{
int id;
DEFINE_IDR(test_idr);
printk(KERN_INFO "Start test4\n");
id = idr_alloc(&test_idr, (void *)1, 42, 43, GFP_KERNEL);
BUG_ON(id != 42);
idr_remove(&test_idr, 42 + IDR_SIZE);
TEST_BUG_ON(idr_find(&test_idr, 42) != (void *)1);
idr_destroy(&test_idr);
printk(KERN_INFO "End of test4\n");
}
ida_remove() shares the similar problem.
It happens only when the caller tries to free an unallocated ID which is
the caller's fault. It is not a bug. But it is better to add the
proper check and complain rather than removing an existing_id silently.
Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | lib/idr.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -562,6 +562,11 @@ void idr_remove(struct idr *idp, int id) | |||
562 | if (id < 0) | 562 | if (id < 0) |
563 | return; | 563 | return; |
564 | 564 | ||
565 | if (id > idr_max(idp->layers)) { | ||
566 | idr_remove_warning(id); | ||
567 | return; | ||
568 | } | ||
569 | |||
565 | sub_remove(idp, (idp->layers - 1) * IDR_BITS, id); | 570 | sub_remove(idp, (idp->layers - 1) * IDR_BITS, id); |
566 | if (idp->top && idp->top->count == 1 && (idp->layers > 1) && | 571 | if (idp->top && idp->top->count == 1 && (idp->layers > 1) && |
567 | idp->top->ary[0]) { | 572 | idp->top->ary[0]) { |
@@ -1025,6 +1030,9 @@ void ida_remove(struct ida *ida, int id) | |||
1025 | int n; | 1030 | int n; |
1026 | struct ida_bitmap *bitmap; | 1031 | struct ida_bitmap *bitmap; |
1027 | 1032 | ||
1033 | if (idr_id > idr_max(ida->idr.layers)) | ||
1034 | goto err; | ||
1035 | |||
1028 | /* clear full bits while looking up the leaf idr_layer */ | 1036 | /* clear full bits while looking up the leaf idr_layer */ |
1029 | while ((shift > 0) && p) { | 1037 | while ((shift > 0) && p) { |
1030 | n = (idr_id >> shift) & IDR_MASK; | 1038 | n = (idr_id >> shift) & IDR_MASK; |