diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-11-20 17:11:44 +0200 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2023-12-01 09:51:43 -0800 |
commit | 0fc79cbc937f2a754a302a710a94b68c61d0a89a (patch) | |
tree | 7c839b3086485fba045c1cbc5fef89a5a3695b24 /kernel/params.c | |
parent | fd0cd057a1b7351604daa6ffc91dfe28adf7225d (diff) |
params: Use size_add() for kmalloc()
Prevent allocations from integer overflow by using size_add().
Reviewed-by: Luis Chamberlain <mcgrof@kernel.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20231120151419.1661807-4-andriy.shevchenko@linux.intel.com
Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'kernel/params.c')
-rw-r--r-- | kernel/params.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/params.c b/kernel/params.c index f8e3c4139854..c3a029fe183d 100644 --- a/kernel/params.c +++ b/kernel/params.c @@ -11,6 +11,7 @@ #include <linux/moduleparam.h> #include <linux/device.h> #include <linux/err.h> +#include <linux/overflow.h> #include <linux/slab.h> #include <linux/ctype.h> #include <linux/security.h> @@ -48,7 +49,7 @@ static void *kmalloc_parameter(unsigned int size) { struct kmalloced_param *p; - p = kmalloc(sizeof(*p) + size, GFP_KERNEL); + p = kmalloc(size_add(sizeof(*p), size), GFP_KERNEL); if (!p) return NULL; |