diff options
author | Lee Jones <[email protected]> | 2024-07-05 08:43:39 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-07-05 09:57:24 +0200 |
commit | 6d3c721e686ea6c59e18289b400cc95c76e927e0 (patch) | |
tree | 09b319a96730f64eefebf29dcbe2cec37a66343f /scripts/generate_rust_analyzer.py | |
parent | 2bf35ea46d0bc379c456e14c0ec1dc1e003b39f1 (diff) |
usb: gadget: configfs: Prevent OOB read/write in usb_string_copy()
Userspace provided string 's' could trivially have the length zero. Left
unchecked this will firstly result in an OOB read in the form
`if (str[0 - 1] == '\n') followed closely by an OOB write in the form
`str[0 - 1] = '\0'`.
There is already a validating check to catch strings that are too long.
Let's supply an additional check for invalid strings that are too short.
Signed-off-by: Lee Jones <[email protected]>
Cc: stable <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'scripts/generate_rust_analyzer.py')
0 files changed, 0 insertions, 0 deletions