]> git.baikalelectronics.ru Git - kernel.git/commit
Revert "HID: uhid: use strlcpy() instead of strncpy()"
authorDavid Herrmann <dh.herrmann@gmail.com>
Wed, 14 Nov 2018 13:16:42 +0000 (14:16 +0100)
committerJiri Kosina <jkosina@suse.cz>
Mon, 19 Nov 2018 13:32:27 +0000 (14:32 +0100)
commit96e7332a1fcf982633b81f834d3e6cecf9b8ae31
treef1a9ff9487e6984b11310d08d43f37c207ee7b66
parent410b0560b36a41dacfceb126349a986823e3d17f
Revert "HID: uhid: use strlcpy() instead of strncpy()"

This reverts commit 304eed91e8426d067d60dc81baa0aa6fd3ee72eb.

Please note that `strlcpy()` does *NOT* do what you think it does.
strlcpy() *ALWAYS* reads the full input string, regardless of the
'length' parameter. That is, if the input is not zero-terminated,
strlcpy() will *READ* beyond input boundaries. It does this, because it
always returns the size it *would* copy if the target was big enough,
not the truncated size it actually copied.

The original code was perfectly fine. The hid device is
zero-initialized and the strncpy() functions copied up to n-1
characters. The result is always zero-terminated this way.

This is the third time someone tried to replace strncpy with strlcpy in
this function, and gets it wrong. I now added a comment that should at
least make people reconsider.

Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/uhid.c