Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754676AbdLTIcH (ORCPT ); Wed, 20 Dec 2017 03:32:07 -0500 Received: from mail-wm0-f45.google.com ([74.125.82.45]:35452 "EHLO mail-wm0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754639AbdLTIcF (ORCPT ); Wed, 20 Dec 2017 03:32:05 -0500 X-Google-Smtp-Source: ACJfBouOyE4Ak623mQxUXe5wvsVWtkEQKibMywqhFIKmJLoiQpwh6A+kIlDDkz3tNCiayskwRFALYg== Subject: Re: shmctl(SHM_STAT) vs. /proc/sysvipc/shm permissions discrepancies To: Michal Hocko , linux-api@vger.kernel.org Cc: Andrew Morton , Al Viro , Kees Cook , Linus Torvalds , Mike Waychison , LKML , linux-mm@kvack.org References: <20171219094848.GE2787@dhcp22.suse.cz> From: "Dr. Manfred Spraul" Message-ID: Date: Wed, 20 Dec 2017 09:32:01 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <20171219094848.GE2787@dhcp22.suse.cz> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1240 Lines: 32 Hi Michal, On 12/19/2017 10:48 AM, Michal Hocko wrote: > Hi, > we have been contacted by our partner about the following permission > discrepancy > 1. Create a shared memory segment with permissions 600 with user A using > shmget(key, 1024, 0600 | IPC_CREAT) > 2. ipcs -m should return an output as follows: > > ------ Shared Memory Segments -------- > key shmid owner perms bytes nattch status > 0x58b74326 759562241 A 600 1024 0 > > 3. Try to read the metadata with shmctl(0, SHM_STAT,...) as user B. > 4. shmctl will return -EACCES > > The supper set information provided by shmctl can be retrieved by > reading /proc/sysvipc/shm which does not require read permissions > because it is 444. > > It seems that the discrepancy is there since ae7817745eef ("[PATCH] ipc: > add generic struct ipc_ids seq_file iteration") when the proc interface > has been introduced. The changelog is really modest on information or > intention but I suspect this just got overlooked during review. SHM_STAT > has always been about read permission and it is explicitly documented > that way. Are you sure that this patch changed the behavior? The proc interface is much older. --     Manfred