diff options
author | Konstantin Khlebnikov <koct9i@gmail.com> | 2016-02-05 18:37:01 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-02-05 21:10:40 -0500 |
commit | 732042821cfa106b3c20b9780e4c60fee9d68900 (patch) | |
tree | 9e825128f3807b51449536a3301984857db5e412 | |
parent | b14fd334ff3dc47b31c3592c166af5ea42b204d3 (diff) |
radix-tree: fix oops after radix_tree_iter_retry
Helper radix_tree_iter_retry() resets next_index to the current index.
In following radix_tree_next_slot current chunk size becomes zero. This
isn't checked and it tries to dereference null pointer in slot.
Tagged iterator is fine because retry happens only at slot 0 where tag
bitmask in iter->tags is filled with single bit.
Fixes: 46437f9a554f ("radix-tree: fix race in gang lookup")
Signed-off-by: Konstantin Khlebnikov <koct9i@gmail.com>
Cc: Matthew Wilcox <willy@linux.intel.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Ohad Ben-Cohen <ohad@wizery.com>
Cc: Jeremiah Mahler <jmmahler@gmail.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/radix-tree.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/radix-tree.h b/include/linux/radix-tree.h index 00b17c526c1f..f54be7082207 100644 --- a/include/linux/radix-tree.h +++ b/include/linux/radix-tree.h | |||
@@ -400,7 +400,7 @@ void **radix_tree_iter_retry(struct radix_tree_iter *iter) | |||
400 | * @iter: pointer to radix tree iterator | 400 | * @iter: pointer to radix tree iterator |
401 | * Returns: current chunk size | 401 | * Returns: current chunk size |
402 | */ | 402 | */ |
403 | static __always_inline unsigned | 403 | static __always_inline long |
404 | radix_tree_chunk_size(struct radix_tree_iter *iter) | 404 | radix_tree_chunk_size(struct radix_tree_iter *iter) |
405 | { | 405 | { |
406 | return iter->next_index - iter->index; | 406 | return iter->next_index - iter->index; |
@@ -434,9 +434,9 @@ radix_tree_next_slot(void **slot, struct radix_tree_iter *iter, unsigned flags) | |||
434 | return slot + offset + 1; | 434 | return slot + offset + 1; |
435 | } | 435 | } |
436 | } else { | 436 | } else { |
437 | unsigned size = radix_tree_chunk_size(iter) - 1; | 437 | long size = radix_tree_chunk_size(iter); |
438 | 438 | ||
439 | while (size--) { | 439 | while (--size > 0) { |
440 | slot++; | 440 | slot++; |
441 | iter->index++; | 441 | iter->index++; |
442 | if (likely(*slot)) | 442 | if (likely(*slot)) |