All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] KEYS: Fix keyring ref leak in join_session_keyring()
@ 2016-01-19 22:09 David Howells
  2016-01-20  8:20 ` Greg KH
  2016-01-20  9:36 ` David Howells
  0 siblings, 2 replies; 3+ messages in thread
From: David Howells @ 2016-01-19 22:09 UTC (permalink / raw)
  To: jmorris
  Cc: Don Zickus, Prarit Bhargava, Yevgeny Pats, linux-kernel,
	Jarod Wilson, dhowells, linux-security-module, keyrings

From: Yevgeny Pats <yevgeny@perception-point.io>

This fixes CVE-2016-0728.

If a thread is asked to join as a session keyring the keyring that's already
set as its session, we leak a keyring reference.

This can be tested with the following program:

	#include <stddef.h>
	#include <stdio.h>
	#include <sys/types.h>
	#include <keyutils.h>

	int main(int argc, const char *argv[])
	{
		int i = 0;
		key_serial_t serial;

		serial = keyctl(KEYCTL_JOIN_SESSION_KEYRING,
				"leaked-keyring");
		if (serial < 0) {
			perror("keyctl");
			return -1;
		}

		if (keyctl(KEYCTL_SETPERM, serial,
			   KEY_POS_ALL | KEY_USR_ALL) < 0) {
			perror("keyctl");
			return -1;
		}

		for (i = 0; i < 100; i++) {
			serial = keyctl(KEYCTL_JOIN_SESSION_KEYRING,
					"leaked-keyring");
			if (serial < 0) {
				perror("keyctl");
				return -1;
			}
		}

		return 0;
	}

If, after the program has run, there something like the following line in
/proc/keys:

3f3d898f I--Q---   100 perm 3f3f0000     0     0 keyring   leaked-keyring: empty

with a usage count of 100 * the number of times the program has been run,
then the kernel is malfunctioning.  If leaked-keyring has zero usages or
has been garbage collected, then the problem is fixed.

Reported-by: Yevgeny Pats <yevgeny@perception-point.io>
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Don Zickus <dzickus@redhat.com>
Acked-by: Prarit Bhargava <prarit@redhat.com>
Acked-by: Jarod Wilson <jarod@redhat.com>
---

 security/keys/process_keys.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/security/keys/process_keys.c b/security/keys/process_keys.c
index a3f85d2a00bb..e6d50172872f 100644
--- a/security/keys/process_keys.c
+++ b/security/keys/process_keys.c
@@ -794,6 +794,7 @@ long join_session_keyring(const char *name)
 		ret = PTR_ERR(keyring);
 		goto error2;
 	} else if (keyring == new->session_keyring) {
+		key_put(keyring);
 		ret = 0;
 		goto error2;
 	}

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] KEYS: Fix keyring ref leak in join_session_keyring()
  2016-01-19 22:09 [PATCH] KEYS: Fix keyring ref leak in join_session_keyring() David Howells
@ 2016-01-20  8:20 ` Greg KH
  2016-01-20  9:36 ` David Howells
  1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2016-01-20  8:20 UTC (permalink / raw)
  To: David Howells
  Cc: jmorris, Don Zickus, Prarit Bhargava, Yevgeny Pats, linux-kernel,
	Jarod Wilson, linux-security-module, keyrings

On Tue, Jan 19, 2016 at 10:09:04PM +0000, David Howells wrote:
> From: Yevgeny Pats <yevgeny@perception-point.io>
> 
> This fixes CVE-2016-0728.
> 
> If a thread is asked to join as a session keyring the keyring that's already
> set as its session, we leak a keyring reference.
> 
> This can be tested with the following program:
> 
> 	#include <stddef.h>
> 	#include <stdio.h>
> 	#include <sys/types.h>
> 	#include <keyutils.h>
> 
> 	int main(int argc, const char *argv[])
> 	{
> 		int i = 0;
> 		key_serial_t serial;
> 
> 		serial = keyctl(KEYCTL_JOIN_SESSION_KEYRING,
> 				"leaked-keyring");
> 		if (serial < 0) {
> 			perror("keyctl");
> 			return -1;
> 		}
> 
> 		if (keyctl(KEYCTL_SETPERM, serial,
> 			   KEY_POS_ALL | KEY_USR_ALL) < 0) {
> 			perror("keyctl");
> 			return -1;
> 		}
> 
> 		for (i = 0; i < 100; i++) {
> 			serial = keyctl(KEYCTL_JOIN_SESSION_KEYRING,
> 					"leaked-keyring");
> 			if (serial < 0) {
> 				perror("keyctl");
> 				return -1;
> 			}
> 		}
> 
> 		return 0;
> 	}
> 
> If, after the program has run, there something like the following line in
> /proc/keys:
> 
> 3f3d898f I--Q---   100 perm 3f3f0000     0     0 keyring   leaked-keyring: empty
> 
> with a usage count of 100 * the number of times the program has been run,
> then the kernel is malfunctioning.  If leaked-keyring has zero usages or
> has been garbage collected, then the problem is fixed.
> 
> Reported-by: Yevgeny Pats <yevgeny@perception-point.io>
> Signed-off-by: David Howells <dhowells@redhat.com>
> Acked-by: Don Zickus <dzickus@redhat.com>
> Acked-by: Prarit Bhargava <prarit@redhat.com>
> Acked-by: Jarod Wilson <jarod@redhat.com>

Any reason you didn't tag this for stable kernels?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] KEYS: Fix keyring ref leak in join_session_keyring()
  2016-01-19 22:09 [PATCH] KEYS: Fix keyring ref leak in join_session_keyring() David Howells
  2016-01-20  8:20 ` Greg KH
@ 2016-01-20  9:36 ` David Howells
  1 sibling, 0 replies; 3+ messages in thread
From: David Howells @ 2016-01-20  9:36 UTC (permalink / raw)
  To: Greg KH
  Cc: dhowells, jmorris, Don Zickus, Prarit Bhargava, Yevgeny Pats,
	linux-kernel, Jarod Wilson, linux-security-module, keyrings

Greg KH <gregkh@linuxfoundation.org> wrote:

> Any reason you didn't tag this for stable kernels?

Sorry, I forgot.

David

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-01-20  9:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-19 22:09 [PATCH] KEYS: Fix keyring ref leak in join_session_keyring() David Howells
2016-01-20  8:20 ` Greg KH
2016-01-20  9:36 ` David Howells

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.