libbpf: Handle size overflow for ringbuf mmap
authorHou Tao <houtao1@huawei.com>
Wed, 16 Nov 2022 07:23:49 +0000 (15:23 +0800)
committerAndrii Nakryiko <andrii@kernel.org>
Thu, 17 Nov 2022 23:48:50 +0000 (15:48 -0800)
commit927cbb478adf917e0a142b94baa37f06279cc466
treeb77bd9e79b4a72bd72e05e0d60bc9e35d072dc66
parent689eb2f1ba46b4b02195ac2a71c55b96d619ebf8
libbpf: Handle size overflow for ringbuf mmap

The maximum size of ringbuf is 2GB on x86-64 host, so 2 * max_entries
will overflow u32 when mapping producer page and data pages. Only
casting max_entries to size_t is not enough, because for 32-bits
application on 64-bits kernel the size of read-only mmap region
also could overflow size_t.

So fixing it by casting the size of read-only mmap region into a __u64
and checking whether or not there will be overflow during mmap.

Fixes: bf99c936f947 ("libbpf: Add BPF ring buffer support")
Signed-off-by: Hou Tao <houtao1@huawei.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20221116072351.1168938-3-houtao@huaweicloud.com
tools/lib/bpf/ringbuf.c