KEYS: Avoid false positive ENOMEM error on key read
authorWaiman Long <longman@redhat.com>
Sun, 22 Mar 2020 01:11:25 +0000 (21:11 -0400)
committerDavid Howells <dhowells@redhat.com>
Sun, 29 Mar 2020 11:40:41 +0000 (12:40 +0100)
commit4f0882491a148059a52480e753b7f07fc550e188
tree5f8861f74d8324e66056e5af33209b3d23f50f90
parentd3ec10aa95819bff18a0d936b18884c7816d0914
KEYS: Avoid false positive ENOMEM error on key read

By allocating a kernel buffer with a user-supplied buffer length, it
is possible that a false positive ENOMEM error may be returned because
the user-supplied length is just too large even if the system do have
enough memory to hold the actual key data.

Moreover, if the buffer length is larger than the maximum amount of
memory that can be returned by kmalloc() (2^(MAX_ORDER-1) number of
pages), a warning message will also be printed.

To reduce this possibility, we set a threshold (PAGE_SIZE) over which we
do check the actual key length first before allocating a buffer of the
right size to hold it. The threshold is arbitrary, it is just used to
trigger a buffer length check. It does not limit the actual key length
as long as there is enough memory to satisfy the memory request.

To further avoid large buffer allocation failure due to page
fragmentation, kvmalloc() is used to allocate the buffer so that vmapped
pages can be used when there is not a large enough contiguous set of
pages available for allocation.

In the extremely unlikely scenario that the key keeps on being changed
and made longer (still <= buflen) in between 2 __keyctl_read_key()
calls, the __keyctl_read_key() calling loop in keyctl_read_key() may
have to be iterated a large number of times, but definitely not infinite.

Signed-off-by: Waiman Long <longman@redhat.com>
Signed-off-by: David Howells <dhowells@redhat.com>
security/keys/internal.h
security/keys/keyctl.c