From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932507AbeENOHW (ORCPT ); Mon, 14 May 2018 10:07:22 -0400 Received: from foss.arm.com ([217.140.101.70]:43404 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932413AbeENOHU (ORCPT ); Mon, 14 May 2018 10:07:20 -0400 Date: Mon, 14 May 2018 15:07:15 +0100 From: Mark Rutland To: Alexander Popov Cc: Andy Lutomirski , Laura Abbott , Kees Cook , Ard Biesheuvel , kernel-hardening@lists.openwall.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 2/2] arm64: Clear the stack Message-ID: <20180514140714.sfmvfpwco63eomor@lakrids.cambridge.arm.com> References: <20180504110907.c2dw33kjmyybso6t@lakrids.cambridge.arm.com> <4badae50-be9b-2c6d-854b-57ab48664800@linux.com> <71199506-b46b-5f91-e489-e6450b6d1067@linux.com> <20180511161317.57k6prl54xjmsit3@lakrids.cambridge.arm.com> <20180514051555.bpbydgr56hyffjch@salmiak> <6c311899-7131-d21b-10f6-d2ba7380a392@linux.com> <20180514100639.v3erlzbuv2e4awfh@lakrids.cambridge.arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, May 14, 2018 at 04:53:12PM +0300, Alexander Popov wrote: > On 14.05.2018 13:06, Mark Rutland wrote: > > I think it is reasonable to panic() here even with CONFIG_VMAP_STACK > > selected. > > It's too tough for CONFIG_VMAP_STACK on x86 - the system can proceed to live. > Anyway, the check_alloca() code will not be shared between x86 and arm64, I've > described the reasons in this thread. So I can have BUG() for CONFIG_VMAP_STACK > on x86 and Laura can consistently use panic() on arm64. If we need arch-specific implementations anyway, then that's fine by me. > >> So we should not do it in check_alloca() as well, just use BUG() and > >> hope for the best. > > > > Regardless of whether we BUG() or panic(), we're hoping for the best. > > > > Consistently using panic() here will keep things simpler, so any failure > > reported will be easier to reason about, and easier to debug. > > Let me keep BUG() for !CONFIG_SCHED_STACK_END_CHECK. I beware of using panic() > by default, let distro/user decide this. I remember very well how I was shouted > at, when this one was merged: > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ce6fa91b93630396ca220c33dd38ffc62686d499 Sure; my comments needn't hold up your patches. Thanks, Mark.