diff options
author | David Howells <dhowells@redhat.com> | 2015-09-25 16:30:08 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-01-22 20:34:55 -0800 |
commit | b49c4dd1e05366d168fe7eebbf7a25197d8616e9 (patch) | |
tree | a9e73bc4885db957c8c7918fcea8f8182ccb83da | |
parent | 6d86d08cd91510d2ad1e70cd26d989c6cb5ed6ac (diff) | |
download | linux-stable-b49c4dd1e05366d168fe7eebbf7a25197d8616e9.tar.gz linux-stable-b49c4dd1e05366d168fe7eebbf7a25197d8616e9.tar.bz2 linux-stable-b49c4dd1e05366d168fe7eebbf7a25197d8616e9.zip |
KEYS: Fix race between key destruction and finding a keyring by name
commit 94c4554ba07adbdde396748ee7ae01e86cf2d8d7 upstream.
There appears to be a race between:
(1) key_gc_unused_keys() which frees key->security and then calls
keyring_destroy() to unlink the name from the name list
(2) find_keyring_by_name() which calls key_permission(), thus accessing
key->security, on a key before checking to see whether the key usage is 0
(ie. the key is dead and might be cleaned up).
Fix this by calling ->destroy() before cleaning up the core key data -
including key->security.
Reported-by: Petr Matousek <pmatouse@redhat.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | security/keys/gc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/keys/gc.c b/security/keys/gc.c index 009d9370c8fd..38676fac7943 100644 --- a/security/keys/gc.c +++ b/security/keys/gc.c @@ -143,6 +143,10 @@ static noinline void key_gc_unused_keys(struct list_head *keys) kdebug("- %u", key->serial); key_check(key); + /* Throw away the key data */ + if (key->type->destroy) + key->type->destroy(key); + security_key_free(key); /* deal with the user's key tracking and quota */ @@ -157,10 +161,6 @@ static noinline void key_gc_unused_keys(struct list_head *keys) if (test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) atomic_dec(&key->user->nikeys); - /* now throw away the key memory */ - if (key->type->destroy) - key->type->destroy(key); - key_user_put(key->user); kfree(key->description); |