Commit 7f973ed9 authored by Mark Rutland's avatar Mark Rutland Committed by David Howells

KEYS: fix refcount_inc() on zero

If a key's refcount is dropped to zero between key_lookup() peeking at
the refcount and subsequently attempting to increment it, refcount_inc()
will see a zero refcount.  Here, refcount_inc() will WARN_ONCE(), and
will *not* increment the refcount, which will remain zero.

Once key_lookup() drops key_serial_lock, it is possible for the key to
be freed behind our back.

This patch uses refcount_inc_not_zero() to perform the peek and increment
atomically.

Fixes: fff29291 ("security, keys: convert key.usage from atomic_t to refcount_t")
Signed-off-by: default avatarMark Rutland <mark.rutland@arm.com>
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Cc: David Windsor <dwindsor@gmail.com>
Cc: Elena Reshetova <elena.reshetova@intel.com>
Cc: Hans Liljestrand <ishkamiel@gmail.com>
Cc: James Morris <james.l.morris@oracle.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Peter Zijlstra <peterz@infradead.org>
parent 3169b64f
...@@ -660,14 +660,11 @@ struct key *key_lookup(key_serial_t id) ...@@ -660,14 +660,11 @@ struct key *key_lookup(key_serial_t id)
goto error; goto error;
found: found:
/* pretend it doesn't exist if it is awaiting deletion */ /* A key is allowed to be looked up only if someone still owns a
if (refcount_read(&key->usage) == 0) * reference to it - otherwise it's awaiting the gc.
goto not_found;
/* this races with key_put(), but that doesn't matter since key_put()
* doesn't actually change the key
*/ */
__key_get(key); if (!refcount_inc_not_zero(&key->usage))
goto not_found;
error: error:
spin_unlock(&key_serial_lock); spin_unlock(&key_serial_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment