* [PATCH] KEYS: fix keyctl_set_reqkey_keyring() to not leak thread keyrings
@ 2017-04-01 23:39 Eric Biggers
2017-04-03 15:52 ` David Howells
0 siblings, 1 reply; 2+ messages in thread
From: Eric Biggers @ 2017-04-01 23:39 UTC (permalink / raw)
To: keyrings
Cc: David Howells, linux-security-module, linux-kernel, Eric Biggers,
stable
From: Eric Biggers <ebiggers@google.com>
Running the following program as an unprivileged user exhausts kernel
memory by leaking thread keyrings:
#include <keyutils.h>
int main()
{
for (;;)
keyctl_set_reqkey_keyring(KEY_REQKEY_DEFL_THREAD_KEYRING);
}
Fix it by only creating a new thread keyring if there wasn't one before,
just as we do for process keyrings.
Fixes: d84f4f992cbd ("CRED: Inaugurate COW credentials")
Cc: stable@vger.kernel.org # 2.6.29+
Signed-off-by: Eric Biggers <ebiggers@google.com>
---
security/keys/keyctl.c | 13 +++++--------
security/keys/process_keys.c | 3 +++
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/security/keys/keyctl.c b/security/keys/keyctl.c
index 52c34532c785..6f3440530835 100644
--- a/security/keys/keyctl.c
+++ b/security/keys/keyctl.c
@@ -1253,8 +1253,8 @@ long keyctl_reject_key(key_serial_t id, unsigned timeout, unsigned error,
* Read or set the default keyring in which request_key() will cache keys and
* return the old setting.
*
- * If a process keyring is specified then this will be created if it doesn't
- * yet exist. The old setting will be returned if successful.
+ * If a thread or process keyring is specified then it will be created if it
+ * doesn't yet exist. The old setting will be returned if successful.
*/
long keyctl_set_reqkey_keyring(int reqkey_defl)
{
@@ -1273,17 +1273,14 @@ long keyctl_set_reqkey_keyring(int reqkey_defl)
switch (reqkey_defl) {
case KEY_REQKEY_DEFL_THREAD_KEYRING:
ret = install_thread_keyring_to_cred(new);
- if (ret < 0)
+ if (ret < 0 && ret != -EEXIST)
goto error;
goto set;
case KEY_REQKEY_DEFL_PROCESS_KEYRING:
ret = install_process_keyring_to_cred(new);
- if (ret < 0) {
- if (ret != -EEXIST)
- goto error;
- ret = 0;
- }
+ if (ret < 0 && ret != -EEXIST)
+ goto error;
goto set;
case KEY_REQKEY_DEFL_DEFAULT:
diff --git a/security/keys/process_keys.c b/security/keys/process_keys.c
index b6fdd22205b1..9e5337876e52 100644
--- a/security/keys/process_keys.c
+++ b/security/keys/process_keys.c
@@ -135,6 +135,9 @@ int install_thread_keyring_to_cred(struct cred *new)
{
struct key *keyring;
+ if (new->thread_keyring)
+ return -EEXIST;
+
keyring = keyring_alloc("_tid", new->uid, new->gid, new,
KEY_POS_ALL | KEY_USR_VIEW,
KEY_ALLOC_QUOTA_OVERRUN,
--
2.12.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] KEYS: fix keyctl_set_reqkey_keyring() to not leak thread keyrings
2017-04-01 23:39 [PATCH] KEYS: fix keyctl_set_reqkey_keyring() to not leak thread keyrings Eric Biggers
@ 2017-04-03 15:52 ` David Howells
0 siblings, 0 replies; 2+ messages in thread
From: David Howells @ 2017-04-03 15:52 UTC (permalink / raw)
To: Eric Biggers
Cc: dhowells, keyrings, linux-security-module, linux-kernel,
Eric Biggers, stable
Eric Biggers <ebiggers3@gmail.com> wrote:
> @@ -135,6 +135,9 @@ int install_thread_keyring_to_cred(struct cred *new)
> {
> struct key *keyring;
>
> + if (new->thread_keyring)
> + return -EEXIST;
> +
> keyring = keyring_alloc("_tid", new->uid, new->gid, new,
> KEY_POS_ALL | KEY_USR_VIEW,
> KEY_ALLOC_QUOTA_OVERRUN,
It would probably be better just to return 0 and change the comment on the
function to say that it sets a thread keyring if there isn't one already.
Same for the process keyring.
David
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-04-03 15:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-01 23:39 [PATCH] KEYS: fix keyctl_set_reqkey_keyring() to not leak thread keyrings Eric Biggers
2017-04-03 15:52 ` David Howells
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).