]> www.infradead.org Git - users/jedix/linux-maple.git/commit
HID: cp2112: Use struct_group() for memcpy() region
authorKees Cook <keescook@chromium.org>
Sun, 20 Jun 2021 17:09:58 +0000 (10:09 -0700)
committerKees Cook <keescook@chromium.org>
Wed, 25 Aug 2021 15:38:40 +0000 (08:38 -0700)
commit8a61df2aec5bac991ca7b79bdeb11d536102e32c
treedc945fee1d1854c0ae841b606618284cef222459
parent44bc39386942704dcb42138904805410a41feb95
HID: cp2112: Use struct_group() for memcpy() region

In preparation for FORTIFY_SOURCE performing compile-time and run-time
field bounds checking for memcpy(), memmove(), and memset(), avoid
intentionally writing across neighboring fields.

Use struct_group() in struct cp2112_string_report around members report,
length, type, and string, so they can be referenced together. This will
allow memcpy() and sizeof() to more easily reason about sizes, improve
readability, and avoid future warnings about writing beyond the end of
report.

"pahole" shows no size nor member offset changes to struct
cp2112_string_report.  "objdump -d" shows no meaningful object
code changes (i.e. only source line number induced differences.)

Cc: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Cc: linux-input@vger.kernel.org
Acked-by: Jiri Kosina <jikos@kernel.org>
Link: https://lore.kernel.org/lkml/nycvar.YFH.7.76.2108201810560.15313@cbobk.fhfr.pm
Signed-off-by: Kees Cook <keescook@chromium.org>
drivers/hid/hid-cp2112.c