From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754133Ab2CWGsF (ORCPT ); Fri, 23 Mar 2012 02:48:05 -0400 Received: from mail-bk0-f46.google.com ([209.85.214.46]:59006 "EHLO mail-bk0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751357Ab2CWGrw (ORCPT ); Fri, 23 Mar 2012 02:47:52 -0400 Date: Fri, 23 Mar 2012 10:47:48 +0400 From: Cyrill Gorcunov To: "Eric W. Biederman" Cc: Andrew Morton , richard -rw- weinberger , LKML , Oleg Nesterov , KOSAKI Motohiro , Pavel Emelyanov , Kees Cook , Tejun Heo , Matt Helsley Subject: Re: [patch 1/2] c/r: prctl: Add ability to set new mm_struct::exe_file Message-ID: <20120323064748.GA8029@moon> References: <20120316205556.595309230@openvz.org> <20120316210343.925446961@openvz.org> <20120319151507.93bab32a.akpm@linux-foundation.org> <20120319223941.GJ19594@moon> <20120319154649.0687f545.akpm@linux-foundation.org> <20120320065543.GB14269@moon> <20120323064136.GA6766@moon> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120323064136.GA6766@moon> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Mar 23, 2012 at 10:41:36AM +0400, Cyrill Gorcunov wrote: > On Thu, Mar 22, 2012 at 04:38:43PM -0700, Eric W. Biederman wrote: > > > > > > Andrew, take a look please, will the changelog and comments look > > > better? > > > > Can you change this to take an actual address and get the exe_file > > from an mmapped area and make certain that the mmaped_area is already > > mapped MAP_EXEC. > > > > That will prevent out-right lies. > > > > At least then we will know that exe_file will at least be a file that is > > mapped executable in the process's address space. It's not a lot better > > but it makes /proc//exe at almost as trustable as it is now. > > This won't work for all cases. When we restore a program we map new > VM_EXEC areas _without_ vma::vm_file field. > Well, it's not complete true ;) At moment all exec areas we re-map during restore do correspond to executable files. but I think having ability to set this symlink without requirement such as 'every VM_EXEC should be mapped with file' is a win. That said I would prefer to leave this interface as is, until there strong objections. Cyrill