Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756187AbbHZCQs (ORCPT ); Tue, 25 Aug 2015 22:16:48 -0400 Received: from 216-12-86-13.cv.mvl.ntelos.net ([216.12.86.13]:42758 "EHLO brightrain.aerifal.cx" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752105AbbHZCQr (ORCPT ); Tue, 25 Aug 2015 22:16:47 -0400 Date: Tue, 25 Aug 2015 22:16:42 -0400 From: Rich Felker To: Greg Ungerer Cc: linux-embedded@vger.kernel.org, Paul Gortmaker , Matt Mackall , David Woodhouse , Alexander Viro , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, David Howells Subject: Re: [PATCH] fs/binfmt_elf_fdpic.c: fix brk area overlap with stack on NOMMU Message-ID: <20150826021642.GN32742@brightrain.aerifal.cx> References: <20150820191106.GA9655@brightrain.aerifal.cx> <55DD15AA.5040503@uclinux.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <55DD15AA.5040503@uclinux.org> 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 Content-Length: 2135 Lines: 51 On Wed, Aug 26, 2015 at 11:26:02AM +1000, Greg Ungerer wrote: > Hi Rich, > > On 21/08/15 05:11, Rich Felker wrote: > > From: Rich Felker > > > > On NOMMU archs, the FDPIC ELF loader sets up the usable brk range to > > overlap with all but the last PAGE_SIZE bytes of the stack. This leads > > to catastrophic memory reuse/corruption if brk is used. Fix by setting > > the brk area to zero size to disable its use. > > > > Signed-off-by: Rich Felker > > It would make sense to run this by David Howells , > I think he wrote this code (added to CC list). Thanks. I have another follow-up patch to submit soon that uses the existing ELF_FDPIC_FLAG_CONSTDISP code in binfmt_elf_fdpic.c to load normal, non-FDPIC ELF files on NOMMU, so I'll make sure to CC him on that too. > I have no problem with it, so: > > Acked-by: Greg Ungerer > > > --- > > > > There is no reason for the kernel to be providing a brk area at all on > > NOMMU; the bFLT loader does not provide one, uClibc never uses brk on > > NOMMU targets, and musl libc goes out of its way to avoid using brk > > that might run into the stack. > > I recall a long time back someone was playing with the idea of setting > the brk to the unused parts of the last data area page. (Somewhat like > this code seems to be trying). That scheme still allocated the full > requested stack size (IIRC) though. And that would have been on bFLT > executables. Anyway, just some historical reference, not really > relevant now. For what it's worth, musl's malloc rounds the initial brk up to a page boundary, but the dynamic linker recovers any partial page at the end of the data segment and donates it to malloc without brk's help. So even though brk will fail and malloc will fall back to mmap, this otherwise-wasted space does get recovered and used. Rich -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/