diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2021-07-14 19:45:49 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-09-02 19:47:01 +0300 |
commit | 7661809d493b426e979f39ab512e3adf41fbcc69 (patch) | |
tree | e6aefba9862580081aee2c8538676a4637d54d20 /fs/d_path.c | |
parent | 111c1aa8cad4a0069dfe98fc093507b5b2cdfda7 (diff) | |
download | linux-7661809d493b426e979f39ab512e3adf41fbcc69.tar.xz |
mm: don't allow oversized kvmalloc() calls
'kvmalloc()' is a convenience function for people who want to do a
kmalloc() but fall back on vmalloc() if there aren't enough physically
contiguous pages, or if the allocation is larger than what kmalloc()
supports.
However, let's make sure it doesn't get _too_ easy to do crazy things
with it. In particular, don't allow big allocations that could be due
to integer overflow or underflow. So make sure the allocation size fits
in an 'int', to protect against trivial integer conversion issues.
Acked-by: Willy Tarreau <w@1wt.eu>
Cc: Kees Cook <keescook@chromium.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/d_path.c')
0 files changed, 0 insertions, 0 deletions