aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ptr_ring.h
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2018-01-26 01:36:35 +0200
committerDavid S. Miller <davem@davemloft.net>2018-01-29 12:02:54 -0500
commit9fb582b67072bea6cbfe1aefc2be13c62c7681bf (patch)
treec2be3e6f9bc8cde4512dbb7871fcc5801c9f45c2 /include/linux/ptr_ring.h
parentptr_ring: disallow lockless __ptr_ring_full (diff)
downloadlinux-dev-9fb582b67072bea6cbfe1aefc2be13c62c7681bf.tar.xz
linux-dev-9fb582b67072bea6cbfe1aefc2be13c62c7681bf.zip
Revert "net: ptr_ring: otherwise safe empty checks can overrun array bounds"
This reverts commit bcecb4bbf88aa03171c30652bca761cf27755a6b. If we try to allocate an extra entry as the above commit did, and when the requested size is UINT_MAX, addition overflows causing zero size to be passed to kmalloc(). kmalloc then returns ZERO_SIZE_PTR with a subsequent crash. Reported-by: syzbot+87678bcf753b44c39b67@syzkaller.appspotmail.com Cc: John Fastabend <john.fastabend@gmail.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: John Fastabend <john.fastabend@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/ptr_ring.h')
-rw-r--r--include/linux/ptr_ring.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/linux/ptr_ring.h b/include/linux/ptr_ring.h
index f17584680b79..3a19ebdcef14 100644
--- a/include/linux/ptr_ring.h
+++ b/include/linux/ptr_ring.h
@@ -466,12 +466,7 @@ static inline int ptr_ring_consume_batched_bh(struct ptr_ring *r,
static inline void **__ptr_ring_init_queue_alloc(unsigned int size, gfp_t gfp)
{
- /* Allocate an extra dummy element at end of ring to avoid consumer head
- * or produce head access past the end of the array. Possible when
- * producer/consumer operations and __ptr_ring_peek operations run in
- * parallel.
- */
- return kcalloc(size + 1, sizeof(void *), gfp);
+ return kcalloc(size, sizeof(void *), gfp);
}
static inline void __ptr_ring_set_size(struct ptr_ring *r, int size)