From: David Howells Date: Tue, 16 Sep 2014 16:29:03 +0000 (+0100) Subject: KEYS: Reinstate EPERM for a key type name beginning with a '.' X-Git-Tag: v3.2.89~31 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?p=pandora-kernel.git;a=commitdiff_plain;h=ac3025e451b520e79e947e8aa0bbea1d9db543c7 KEYS: Reinstate EPERM for a key type name beginning with a '.' commit 54e2c2c1a9d6cbb270b0999a38545fa9a69bee43 upstream. Reinstate the generation of EPERM for a key type name beginning with a '.' in a userspace call. Types whose name begins with a '.' are internal only. The test was removed by: commit a4e3b8d79a5c6d40f4a9703abf7fe3abcc6c3b8d Author: Mimi Zohar Date: Thu May 22 14:02:23 2014 -0400 Subject: KEYS: special dot prefixed keyring name bug fix I think we want to keep the restriction on type name so that userspace can't add keys of a special internal type. Note that removal of the test causes several of the tests in the keyutils testsuite to fail. Signed-off-by: David Howells Acked-by: Vivek Goyal cc: Mimi Zohar Signed-off-by: Ben Hutchings --- diff --git a/security/keys/keyctl.c b/security/keys/keyctl.c index 930988a70f0c..3947cff24a56 100644 --- a/security/keys/keyctl.c +++ b/security/keys/keyctl.c @@ -35,6 +35,8 @@ static int key_get_type_from_user(char *type, return ret; if (ret == 0 || ret >= len) return -EINVAL; + if (type[0] == '.') + return -EPERM; type[len - 1] = '\0'; return 0; }