Revision 0f0909e242f73c1154272cf04f07fc9afe13e5b8 authored by Eric Biggers on 14 November 2016, 01:41:09 UTC, committed by Theodore Ts'o on 20 November 2016, 01:56:13 UTC
With the new (in 4.9) option to use a virtually-mapped stack
(CONFIG_VMAP_STACK), stack buffers cannot be used as input/output for
the scatterlist crypto API because they may not be directly mappable to
struct page.  get_crypt_info() was using a stack buffer to hold the
output from the encryption operation used to derive the per-file key.
Fix it by using a heap buffer.

This bug could most easily be observed in a CONFIG_DEBUG_SG kernel
because this allowed the BUG in sg_set_buf() to be triggered.

Cc: stable@vger.kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
1 parent 3c7018e
History
File Mode Size
hci
nci
Kconfig -rw-r--r-- 805 bytes
Makefile -rw-r--r-- 339 bytes
af_nfc.c -rw-r--r-- 2.4 KB
core.c -rw-r--r-- 24.8 KB
digital.h -rw-r--r-- 5.6 KB
digital_core.c -rw-r--r-- 20.3 KB
digital_dep.c -rw-r--r-- 34.9 KB
digital_technology.c -rw-r--r-- 26.9 KB
llcp.h -rw-r--r-- 7.3 KB
llcp_commands.c -rw-r--r-- 16.4 KB
llcp_core.c -rw-r--r-- 34.5 KB
llcp_sock.c -rw-r--r-- 22.2 KB
netlink.c -rw-r--r-- 38.8 KB
nfc.h -rw-r--r-- 5.0 KB
rawsock.c -rw-r--r-- 9.6 KB

back to top