From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1946768Ab2LFSmY (ORCPT ); Thu, 6 Dec 2012 13:42:24 -0500 Received: from mail-pa0-f46.google.com ([209.85.220.46]:62503 "EHLO mail-pa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1946753Ab2LFSmV (ORCPT ); Thu, 6 Dec 2012 13:42:21 -0500 Date: Thu, 6 Dec 2012 10:42:17 -0800 From: Greg Kroah-Hartman To: Herton Ronaldo Krzesinski Cc: linux-kernel@vger.kernel.org, stable@vger.kernel.org, alan@lxorguk.ukuu.org.uk, Yang Wei , Robert Richter , "H. Peter Anvin" , Jun Zhang Subject: Re: [ 06/37] x86-32: Fix invalid stack address while in softirq Message-ID: <20121206184217.GF2862@kroah.com> References: <20121130183857.166228045@linuxfoundation.org> <20121130183857.883260247@linuxfoundation.org> <20121204134257.GD2984@herton-Z68MA-D2H-B3> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121204134257.GD2984@herton-Z68MA-D2H-B3> 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 Tue, Dec 04, 2012 at 11:42:58AM -0200, Herton Ronaldo Krzesinski wrote: > On Fri, Nov 30, 2012 at 10:45:53AM -0800, Greg Kroah-Hartman wrote: > > 3.0-stable review patch. If anyone has any objections, please let me know. > > > > ------------------ > > > > From: Robert Richter > > > > commit 1022623842cb72ee4d0dbf02f6937f38c92c3f41 upstream. > > > > In 32 bit the stack address provided by kernel_stack_pointer() may > > point to an invalid range causing NULL pointer access or page faults > > while in NMI (see trace below). This happens if called in softirq > > context and if the stack is empty. The address at ®s->sp is then > > out of range. > > > > Fixing this by checking if regs and ®s->sp are in the same stack > > context. Otherwise return the previous stack pointer stored in struct > > thread_info. If that address is invalid too, return address of regs. > > > [...] > > Hi, this makes build fail with oprofile on i386 on 3.0.54: > ERROR: "kernel_stack_pointer" [arch/x86/oprofile/oprofile.ko] undefined! Now fixed with 3.0.55. thanks, greg k-h