From mboxrd@z Thu Jan 1 00:00:00 1970 From: ebiederm@xmission.com (Eric W. Biederman) Subject: Re: [PATCH v1 2/2] signal: add procfd_signal() syscall Date: Mon, 19 Nov 2018 13:02:06 -0600 Message-ID: <87o9ak28nl.fsf@xmission.com> References: <20181119103241.5229-1-christian@brauner.io> <20181119103241.5229-3-christian@brauner.io> <20181119182902.fadw6qiu3eepndm3@brauner.io> Mime-Version: 1.0 Content-Type: text/plain Return-path: In-Reply-To: <20181119182902.fadw6qiu3eepndm3@brauner.io> (Christian Brauner's message of "Mon, 19 Nov 2018 19:29:05 +0100") Sender: linux-kernel-owner@vger.kernel.org To: Christian Brauner Cc: Daniel Colascione , linux-kernel , "Serge E. Hallyn" , Jann Horn , Andy Lutomirski , Andrew Morton , Oleg Nesterov , Aleksa Sarai , Al Viro , Linux FS Devel , Linux API , Tim Murray , linux-man , Kees Cook List-Id: linux-api@vger.kernel.org Christian Brauner writes: > On Mon, Nov 19, 2018 at 07:59:24AM -0800, Daniel Colascione wrote: >> You never addressed my comment on the previous patch about your use of > > Sorry, that thread exploded so quickly that I might have missed it. > >> private_data here. Why can't you use the struct pid reference that's >> already in the inode? > > If that's what people prefer we can probably use that. There was > precedent for stashing away such data in fs/proc/base.c already for > various other things including user namespaces and struct mm so I > followed this model. A prior version of my patch (I didn't send out) did > retrive the inode via proc_pid() in .open() took an additional reference > via get_pid() and dropped it in .release(). Do we prefer that? If you are using proc// directories as your file descriptors, you don't need to add an open or a release method at all. The existing file descriptors hold a reference to the inode which holds a reference the the struct pid. The only time you need to get a reference is when you need a task and kill_pid_info already performs that work for you. So using proc_pid is all you need to do to get the pid from the existing file descriptors. Eric