diff options
| author | Mark Rutland <mark.rutland@arm.com> | 2017-06-08 09:47:41 -0400 |
|---|---|---|
| committer | James Morris <james.l.morris@oracle.com> | 2017-06-08 23:29:50 -0400 |
| commit | 92347cfd62c174ab91ad97dd4bfbaa1d4aa28e67 (patch) | |
| tree | b3bc051f940ef773d5fb6e01401f70700ef8b875 | |
| parent | 7cbe0932c2f2014d6e24e716e79ea3910b468950 (diff) | |
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: fff292914d3a2f1e ("security, keys: convert key.usage from atomic_t to refcount_t")
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: David 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>
Signed-off-by: James Morris <james.l.morris@oracle.com>
| -rw-r--r-- | security/keys/key.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/security/keys/key.c b/security/keys/key.c index cbae368c0e57..83da68d98b40 100644 --- a/security/keys/key.c +++ b/security/keys/key.c | |||
| @@ -660,14 +660,11 @@ not_found: | |||
| 660 | goto error; | 660 | goto error; |
| 661 | 661 | ||
| 662 | found: | 662 | found: |
| 663 | /* pretend it doesn't exist if it is awaiting deletion */ | 663 | /* A key is allowed to be looked up only if someone still owns a |
| 664 | if (refcount_read(&key->usage) == 0) | 664 | * reference to it - otherwise it's awaiting the gc. |
| 665 | goto not_found; | ||
| 666 | |||
| 667 | /* this races with key_put(), but that doesn't matter since key_put() | ||
| 668 | * doesn't actually change the key | ||
| 669 | */ | 665 | */ |
| 670 | __key_get(key); | 666 | if (!refcount_inc_not_zero(&key->usage)) |
| 667 | goto not_found; | ||
| 671 | 668 | ||
| 672 | error: | 669 | error: |
| 673 | spin_unlock(&key_serial_lock); | 670 | spin_unlock(&key_serial_lock); |
