aboutsummaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorJesper Nilsson <jesper.nilsson@axis.com>2013-11-21 17:32:08 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2013-11-21 19:42:28 -0500
commit3a72660b07d86d60457ca32080b1ce8c2b628ee2 (patch)
treeedc6f42a551b165943c4590389482c70d6f6639f /ipc
parentb7a9f420ed737cb7cd4075ba06ac1a6f0da9f878 (diff)
ipc,shm: correct error return value in shmctl (SHM_UNLOCK)
Commit 2caacaa82a51 ("ipc,shm: shorten critical region for shmctl") restructured the ipc shm to shorten critical region, but introduced a path where the return value could be -EPERM, even if the operation actually was performed. Before the commit, the err return value was reset by the return value from security_shm_shmctl() after the if (!ns_capable(...)) statement. Now, we still exit the if statement with err set to -EPERM, and in the case of SHM_UNLOCK, it is not reset at all, and used as the return value from shmctl. To fix this, we only set err when errors occur, leaving the fallthrough case alone. Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com> Cc: Davidlohr Bueso <davidlohr@hp.com> Cc: Rik van Riel <riel@redhat.com> Cc: Michel Lespinasse <walken@google.com> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: <stable@vger.kernel.org> [3.12.x] Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc')
-rw-r--r--ipc/shm.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/ipc/shm.c b/ipc/shm.c
index 0bdf21c6814e..7a51443a51d6 100644
--- a/ipc/shm.c
+++ b/ipc/shm.c
@@ -977,12 +977,15 @@ SYSCALL_DEFINE3(shmctl, int, shmid, int, cmd, struct shmid_ds __user *, buf)
977 ipc_lock_object(&shp->shm_perm); 977 ipc_lock_object(&shp->shm_perm);
978 if (!ns_capable(ns->user_ns, CAP_IPC_LOCK)) { 978 if (!ns_capable(ns->user_ns, CAP_IPC_LOCK)) {
979 kuid_t euid = current_euid(); 979 kuid_t euid = current_euid();
980 err = -EPERM;
981 if (!uid_eq(euid, shp->shm_perm.uid) && 980 if (!uid_eq(euid, shp->shm_perm.uid) &&
982 !uid_eq(euid, shp->shm_perm.cuid)) 981 !uid_eq(euid, shp->shm_perm.cuid)) {
982 err = -EPERM;
983 goto out_unlock0; 983 goto out_unlock0;
984 if (cmd == SHM_LOCK && !rlimit(RLIMIT_MEMLOCK)) 984 }
985 if (cmd == SHM_LOCK && !rlimit(RLIMIT_MEMLOCK)) {
986 err = -EPERM;
985 goto out_unlock0; 987 goto out_unlock0;
988 }
986 } 989 }
987 990
988 shm_file = shp->shm_file; 991 shm_file = shp->shm_file;