From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id DCB7BDE0AC for ; Sat, 18 Apr 2009 03:05:34 +1000 (EST) Subject: Re: issues w/init From: Benjamin Herrenschmidt To: Kumar Gala In-Reply-To: <087C29B1-39CA-4A32-81E6-533FAD21A2BC@kernel.crashing.org> References: <680ABFDC-A67F-48BB-B46C-564CB5373FEB@kernel.crashing.org> <88F07543-B7F6-4F27-B5FB-4780AD069D7E@kernel.crashing.org> <49E78620.7070303@freescale.com> <1239953907.7443.45.camel@pasglop> <18920.21593.737132.732053@cargo.ozlabs.ibm.com> <1239964860.7443.65.camel@pasglop> <087C29B1-39CA-4A32-81E6-533FAD21A2BC@kernel.crashing.org> Content-Type: text/plain Date: Fri, 17 Apr 2009 19:03:11 +0200 Message-Id: <1239987791.7210.15.camel@pasglop> Mime-Version: 1.0 Cc: Scott Wood , Linuxppc-dev Development , Paul Mackerras List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Fri, 2009-04-17 at 08:23 -0500, Kumar Gala wrote: > I can and might have already done this, need to double check. But > what I was seeing from elf_map is that we don't get PROT_EXEC set for > this PHDR, but get VM_MAY_EXEC. I'm not clear on what VM_MAY_EXEC is > intended for. Looking at a 2.6.29 tree here, I don't see any reference to VM_MAY_EXEC but I see a VM_MAYEXEC :-) Though it shouldn't be relevant here. What I see, and what should be checked is: 1- In binfmt_elf.c, what happens with this statement ? if (elf_read_implies_exec(loc->elf_ex, executable_stack)) current->personality |= READ_IMPLIES_EXEC; (ie. is the personality flag set ?) 2- When the phdr's are mmap'ed, do you hit this: if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC)) if (!(file && (file->f_path.mnt->mnt_flags & MNT_NOEXEC))) prot |= PROT_EXEC; (Which should later be turned into VM_EXEC by calc_vm_prot_bits(). If any of these isn't happening, then we need to figure out why. Cheers, Ben.