summaryrefslogtreecommitdiffstats
path: root/drivers/reset
diff options
context:
space:
mode:
authorJann Horn2019-02-18 22:43:09 +0100
committerMichal Simek2019-03-18 13:43:54 +0100
commitb9472f7d8224460499dd7128ec944735ed5345a0 (patch)
treef2410aed6f9d4aaaf3d299d62fc5caae126a6080 /drivers/reset
parentLinux 5.1-rc1 (diff)
downloadkernel-qcow2-linux-b9472f7d8224460499dd7128ec944735ed5345a0.tar.gz
kernel-qcow2-linux-b9472f7d8224460499dd7128ec944735ed5345a0.tar.xz
kernel-qcow2-linux-b9472f7d8224460499dd7128ec944735ed5345a0.zip
firmware: xilinx: fix debugfs write handler
- Userspace wants to write a string with `len` bytes, not counting the terminating NULL, so we should allocate `len+1` bytes. It looks like the current code relied on having a nullbyte directly behind `kern_buff`, which happens to work reliably as long as `len` isn't one of the kmalloc size classes. - strncpy_from_user() is completely wrong here; userspace is giving us a (not necessarily null-terminated) buffer and its length. strncpy_from_user() is for cases in which we don't know the length. - Don't let broken userspace allocate arbitrarily big kmalloc allocations. Just use memdup_user_nul(), which is designed precisely for things like this. Signed-off-by: Jann Horn <jannh@google.com> Acked-by: Jolly Shah <jolly.shah@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'drivers/reset')
0 files changed, 0 insertions, 0 deletions