diff options
author | David Howells <dhowells@redhat.com> | 2015-10-19 06:20:28 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2015-10-19 06:24:51 -0400 |
commit | 911b79cde95c7da0ec02f48105358a36636b7a71 (patch) | |
tree | 623ed8957cae8115b835018968fec344fba9677d /security/keys | |
parent | f05819df10d7b09f6d1eb6f8534a8f68e5a4fe61 (diff) |
KEYS: Don't permit request_key() to construct a new keyring
If request_key() is used to find a keyring, only do the search part - don't
do the construction part if the keyring was not found by the search. We
don't really want keyrings in the negative instantiated state since the
rejected/negative instantiation error value in the payload is unioned with
keyring metadata.
Now the kernel gives an error:
request_key("keyring", "#selinux,bdekeyring", "keyring", KEY_SPEC_USER_SESSION_KEYRING) = -1 EPERM (Operation not permitted)
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'security/keys')
-rw-r--r-- | security/keys/request_key.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/security/keys/request_key.c b/security/keys/request_key.c index 486ef6fa393b..0d6253124278 100644 --- a/security/keys/request_key.c +++ b/security/keys/request_key.c | |||
@@ -440,6 +440,9 @@ static struct key *construct_key_and_link(struct keyring_search_context *ctx, | |||
440 | 440 | ||
441 | kenter(""); | 441 | kenter(""); |
442 | 442 | ||
443 | if (ctx->index_key.type == &key_type_keyring) | ||
444 | return ERR_PTR(-EPERM); | ||
445 | |||
443 | user = key_user_lookup(current_fsuid()); | 446 | user = key_user_lookup(current_fsuid()); |
444 | if (!user) | 447 | if (!user) |
445 | return ERR_PTR(-ENOMEM); | 448 | return ERR_PTR(-ENOMEM); |