2f8a1d5
From 93f27344ac019135dd5ff31a518f1ef2d9e4e4a1 Mon Sep 17 00:00:00 2001
2f8a1d5
From: David Howells <dhowells@redhat.com>
2f8a1d5
Date: Mon, 19 Oct 2015 11:33:38 +0100
2f8a1d5
Subject: [PATCH 2/2] KEYS: Don't permit request_key() to construct a new
2f8a1d5
 keyring
2f8a1d5
2f8a1d5
    If request_key() is used to find a keyring, only do the search part - don't
2f8a1d5
    do the construction part if the keyring was not found by the search.  We
2f8a1d5
    don't really want keyrings in the negative instantiated state since the
2f8a1d5
    rejected/negative instantiation error value in the payload is unioned with
2f8a1d5
    keyring metadata.
2f8a1d5
2f8a1d5
    Signed-off-by: David Howells <dhowells@redhat.com>
2f8a1d5
---
2f8a1d5
 security/keys/request_key.c | 3 +++
2f8a1d5
 1 file changed, 3 insertions(+)
2f8a1d5
2f8a1d5
diff --git a/security/keys/request_key.c b/security/keys/request_key.c
2f8a1d5
index 486ef6fa393b..0d6253124278 100644
2f8a1d5
--- a/security/keys/request_key.c
2f8a1d5
+++ b/security/keys/request_key.c
2f8a1d5
@@ -440,6 +440,9 @@ static struct key *construct_key_and_link(struct keyring_search_context *ctx,
2f8a1d5
 
2f8a1d5
 	kenter("");
2f8a1d5
 
2f8a1d5
+	if (ctx->index_key.type == &key_type_keyring)
2f8a1d5
+		return ERR_PTR(-EPERM);
2f8a1d5
+	
2f8a1d5
 	user = key_user_lookup(current_fsuid());
2f8a1d5
 	if (!user)
2f8a1d5
 		return ERR_PTR(-ENOMEM);
2f8a1d5
-- 
2f8a1d5
2.4.3
2f8a1d5