USB: core: replace %p with %pK
authorVamsi Krishna Samavedam <vskrishn@codeaurora.org>
Tue, 16 May 2017 12:38:08 +0000 (14:38 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 May 2017 13:44:30 +0000 (15:44 +0200)
commit3888f62943bbc77496dc919080296c3a954b56a9
treeb2e25554589f8ffba32922ffce9ccc09d9f3fbc7
parent5d263d94a870a774a24acb2a2cc1e79ef39c2416
USB: core: replace %p with %pK

commit 2f964780c03b73de269b08d12aff96a9618d13f3 upstream.

Format specifier %p can leak kernel addresses while not valuing the
kptr_restrict system settings. When kptr_restrict is set to (1), kernel
pointers printed using the %pK format specifier will be replaced with
Zeros. Debugging Note : &pK prints only Zeros as address. If you need
actual address information, write 0 to kptr_restrict.

echo 0 > /proc/sys/kernel/kptr_restrict

[Found by poking around in a random vendor kernel tree, it would be nice
if someone would actually send these types of patches upstream - gkh]

Signed-off-by: Vamsi Krishna Samavedam <vskrishn@codeaurora.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/core/devio.c
drivers/usb/core/hcd.c
drivers/usb/core/urb.c