Received: by 10.223.185.116 with SMTP id b49csp3927581wrg; Tue, 13 Feb 2018 09:53:24 -0800 (PST) X-Google-Smtp-Source: AH8x226RIPdRoZmKrs/mPRYwUtqzFJr9BNjhos6xCPvZ98DjrxwVrqwb6Lw8RIGaMeM/tNbRX2fP X-Received: by 10.101.78.12 with SMTP id r12mr1616332pgt.33.1518544404788; Tue, 13 Feb 2018 09:53:24 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1518544404; cv=none; d=google.com; s=arc-20160816; b=g5eS8pucf7S+etkoPVPK+HBp+3NXeqdkX3xImvm/f7mn+wspB3SxhBgT1f7Qw2InlW 5q+sVX5odBTwTjCNnZbEQk0uwk7BB8eetzjGHTFjAjee85tzBvnClxNitg01yHYQayeN EGhLyi5l5pNRy2f8QXR818TGAM1px407zC+4MWTXmHchoKm6DRQCry1vKZc7pz7d8+XW 0dao2ldWSx9dVSlngyN1OqRVVlVVPYDct6u/W8iBaEPxzq20H3ejuxWumWjjjy5D+3La HbU5g9PG1Z+PCnsihj9OOtqgFQEx3MFreD/gBhlKSeg7Hwr54yJePCcDPQ+fn/M3ri/u TELw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=w5PpT3AFFLvm3PfeI8hO7B7U4DKC1bemzdI3tpdwAZE=; b=VIfS0gh2pWRBIIw9KvGR1jENOnC6Vhg7/m7QM23UzGjU0vq2i6GNdGT14KlPw2V89Q IhDp60FZeGetFbS9FA6DNaAaSgTuwCAJp50Sajfrz3cDbdD97YKyp1XfX6c7sBOhFVzA hmJVLWefaoyWy75+8v5TgMKogLBsAOrMJ7xmJ13tj95fl9WiZVXZOIbtVvRIiiJu+F6z lAXQq06zVuYPUPiLR/xRxuiTbfA/HPYQdFFTBOj71gAHaDtuJb4rSC+5CJR9dXiBlgW/ Vkeuj+/eIet4iixnrsVMLe9TlzaDbR9ewS9ChLURMhbg5RKG48z8Pf3cWhQb4lSzqz+F TJhg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id e17si3675064pgo.61.2018.02.13.09.53.10; Tue, 13 Feb 2018 09:53:24 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965572AbeBMRvk (ORCPT + 99 others); Tue, 13 Feb 2018 12:51:40 -0500 Received: from smtp2.provo.novell.com ([137.65.250.81]:48751 "EHLO smtp2.provo.novell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965310AbeBMRvJ (ORCPT ); Tue, 13 Feb 2018 12:51:09 -0500 Received: from linux-n805.suse.de (prv-ext-foundry1int.gns.novell.com [137.65.251.240]) by smtp2.provo.novell.com with ESMTP (TLS encrypted); Tue, 13 Feb 2018 10:51:04 -0700 From: Davidlohr Bueso To: akpm@linux-foundation.org Cc: mhocko@kernel.org, mtk.manpages@gmail.com, keescook@chromium.org, linux-api@vger.kernel.org, linux-kernel@vger.kernel.org, Davidlohr Bueso , Davidlohr Bueso Subject: [PATCH 3/3] ipc/msg: introduce shmctl(MSG_STAT_ALL) Date: Tue, 13 Feb 2018 09:41:36 -0800 Message-Id: <20180213174136.6346-4-dave@stgolabs.net> X-Mailer: git-send-email 2.13.6 In-Reply-To: <20180213174136.6346-1-dave@stgolabs.net> References: <20180213174136.6346-1-dave@stgolabs.net> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org There is a permission discrepancy when consulting msq ipc object metadata between /proc/sysvipc/msg (0444) and the MSG_STAT shmctl command. The later does permission checks for the object vs S_IRUGO. As such there can be cases where EACCESS is returned via syscall but the info is displayed anyways in the procfs files. While this might have security implications via info leaking (albeit no writing to the msq metadata), this behavior goes way back and showing all the objects regardless of the permissions was most likely an overlook - so we are stuck with it. Furthermore, modifying either the syscall or the procfs file can cause userspace programs to break (ie ipcs). Some applications require getting the procfs info (without root privileges) and can be rather slow in comparison with a syscall -- up to 500x in some reported cases for shm. This patch introduces a new MSG_STAT_ALL command such that the msq ipc object permissions are ignored, and only audited instead. In addition, I've left the lsm security hook checks in place, as if some policy can block the call, then the user has no other choice than just parsing the procfs file. Signed-off-by: Davidlohr Bueso --- include/uapi/linux/msg.h | 1 + ipc/msg.c | 17 ++++++++++++----- security/selinux/hooks.c | 1 + 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/include/uapi/linux/msg.h b/include/uapi/linux/msg.h index 5d5ab81dc9be..fe9bdfb25a2f 100644 --- a/include/uapi/linux/msg.h +++ b/include/uapi/linux/msg.h @@ -7,6 +7,7 @@ /* ipcs ctl commands */ #define MSG_STAT 11 #define MSG_INFO 12 +#define MSG_STAT_ALL 13 /* msgrcv options */ #define MSG_NOERROR 010000 /* no error if message is too big */ diff --git a/ipc/msg.c b/ipc/msg.c index 0dcc6699dc53..533c9ac2fb13 100644 --- a/ipc/msg.c +++ b/ipc/msg.c @@ -483,14 +483,14 @@ static int msgctl_stat(struct ipc_namespace *ns, int msqid, memset(p, 0, sizeof(*p)); rcu_read_lock(); - if (cmd == MSG_STAT) { + if (cmd == MSG_STAT || cmd == MSG_STAT_ALL) { msq = msq_obtain_object(ns, msqid); if (IS_ERR(msq)) { err = PTR_ERR(msq); goto out_unlock; } id = msq->q_perm.id; - } else { + } else { /* IPC_STAT */ msq = msq_obtain_object_check(ns, msqid); if (IS_ERR(msq)) { err = PTR_ERR(msq); @@ -498,9 +498,14 @@ static int msgctl_stat(struct ipc_namespace *ns, int msqid, } } - err = -EACCES; - if (ipcperms(ns, &msq->q_perm, S_IRUGO)) - goto out_unlock; + /* see comment for SHM_STAT_ALL */ + if (cmd == MSG_STAT_ALL) + audit_ipc_obj(&msq->q_perm); + else { + err = -EACCES; + if (ipcperms(ns, &msq->q_perm, S_IRUGO)) + goto out_unlock; + } err = security_msg_queue_msgctl(msq, cmd); if (err) @@ -558,6 +563,7 @@ SYSCALL_DEFINE3(msgctl, int, msqid, int, cmd, struct msqid_ds __user *, buf) return err; } case MSG_STAT: /* msqid is an index rather than a msg queue id */ + case MSG_STAT_ALL: case IPC_STAT: err = msgctl_stat(ns, msqid, cmd, &msqid64); if (err < 0) @@ -671,6 +677,7 @@ COMPAT_SYSCALL_DEFINE3(msgctl, int, msqid, int, cmd, void __user *, uptr) } case IPC_STAT: case MSG_STAT: + case MSG_STAT_ALL: err = msgctl_stat(ns, msqid, cmd, &msqid64); if (err < 0) return err; diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index aa965742bba9..457e80f6b4e7 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -5591,6 +5591,7 @@ static int selinux_msg_queue_msgctl(struct msg_queue *msq, int cmd) SECCLASS_SYSTEM, SYSTEM__IPC_INFO, NULL); case IPC_STAT: case MSG_STAT: + case MSG_STAT_ALL: perms = MSGQ__GETATTR | MSGQ__ASSOCIATE; break; case IPC_SET: -- 2.13.6