aboutsummaryrefslogtreecommitdiff
path: root/tools/include/linux/overflow.h
AgeCommit message (Collapse)AuthorFilesLines
2018-07-11tools: bpf: make use of reallocarrayJakub Kicinski1-0/+278
reallocarray() is a safer variant of realloc which checks for multiplication overflow in case of array allocation. Since it's not available in Glibc < 2.26 import kernel's overflow.h and add a static inline implementation when needed. Use feature detection to probe for existence of reallocarray. Signed-off-by: Jakub Kicinski <[email protected]> Reviewed-by: Quentin Monnet <[email protected]> Reviewed-by: Jiong Wang <[email protected]> Signed-off-by: Daniel Borkmann <[email protected]>