From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932525Ab2JYEQe (ORCPT ); Thu, 25 Oct 2012 00:16:34 -0400 Received: from zeniv.linux.org.uk ([195.92.253.2]:42383 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751174Ab2JYEQX (ORCPT ); Thu, 25 Oct 2012 00:16:23 -0400 Date: Thu, 25 Oct 2012 05:16:21 +0100 From: Al Viro To: Kees Cook Cc: linux-kernel@vger.kernel.org, Andrew Morton , Josh Triplett , Serge Hallyn , linux-fsdevel@vger.kernel.org, halfdog Subject: Re: [PATCH] exec: do not leave bprm->interp on stack Message-ID: <20121025041620.GH2616@ZenIV.linux.org.uk> References: <20121024232032.GA31129@www.outflux.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121024232032.GA31129@www.outflux.net> 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 Wed, Oct 24, 2012 at 04:20:32PM -0700, Kees Cook wrote: > If a series of scripts are executed, each triggering module loading via > unprintable bytes in the script header, kernel stack contents can leak > into the command line. > > Normally execution of binfmt_script and binfmt_misc happens > recursively. However, when modules are enabled, and unprintable bytes > exist in the bprm->buf, execution will restart after attempting to load > matching binfmt modules. Unfortunately, the logic in binfmt_script and > binfmt_misc does not expect to get restarted. They leave bprm->interp > pointing to their local stack. This means on restart bprm->interp is > left pointing into unused stack memory which can then be copied into > the userspace argv areas. > > This changes the logic to require allocation for any changes to the > bprm->interp. To avoid adding a new kmalloc to every exec, the default > value is left as-is. Only when passing through binfmt_script or > binfmt_misc does an allocation take place. I really don't like that. It papers over the problem, but doesn't really solve the underlying stupidity. We have no good reason to retry a binfmt we'd already attempted on this level of recursion. And your patch doesn't deal with that at all.