Received: by 2002:a05:6a10:af89:0:0:0:0 with SMTP id iu9csp4716128pxb; Tue, 25 Jan 2022 17:24:55 -0800 (PST) X-Google-Smtp-Source: ABdhPJzdFpMmzIlu+p1/Vy4TYITYXvwSVzBWF8LeXwLpVdYtO9YZN/89KDR09GRxlyrH6aRfLBPc X-Received: by 2002:a17:906:3fd5:: with SMTP id k21mr18352379ejj.668.1643160294791; Tue, 25 Jan 2022 17:24:54 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1643160294; cv=none; d=google.com; s=arc-20160816; b=0anuoAlDyIJiDM/dolZ6M7QrPPBRur2Gtl18JrqRG1YJ6WW6ZmuuKQn4nBkrATsMiY Typ4CAA8Obh0puOI2higQ9+7a5Odb0nsknXF3rmYhzu04YsOcP8m/xFvzPSUAGCVcKO8 fwQrkI7VSS5pCtS6Qrhn7B9Swtvy7Sf1e3psZ/vSiZsZZwYt5iuAgDfHwOjtM7tyPhJd p/VAFW6AD1Vj+dpnjnkxX+P0arc1sEymtUJaJuXKoJDdVFbddQYyWMc+YlTaBWPidTYB i0dpHkcdgw/1TwZo+lsBHe5OMLNhOCJHzzJrJPopQ+nvDGi2xbUaAM8Yhghzxeaeq78w KLwA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=3TAW2bLIxaehagVJ5uWCl8SZixV3n9gDAoesv17acCA=; b=DMyqltyUm4AR5jl3S+XCrabfLH30/TeP97lpANSvAoKGzZKP2Whkxb8GTM0YYV7XIC hFgiItXGIzyKnrxTkH2D8CEthKhi4Va76P9VQP/QEazZAAAJBKx5n75Wzo4U4Vcbc0Iq kE4Zv5GBpIW9XIMZ5RNXkGwOTXwp5Rs2eqw4ju3ejFtqG7yW0wPbPXfupRM11fW1pr9V qzGimh9aJL+GNHiF98nXchpe9C6HZOY0Cbih4tHks9kgoiLatj31fib57L8akHjTILdP r/NvOfsfHqw9M6S9SqzUq6Q/d6fUcM3DsfSHRQa/Qx77B4w6bnTnYyJAFLYJJHH4Ulo3 20cA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id kx3si10285454ejc.130.2022.01.25.17.24.30; Tue, 25 Jan 2022 17:24:54 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232230AbiAYRJP (ORCPT + 99 others); Tue, 25 Jan 2022 12:09:15 -0500 Received: from foss.arm.com ([217.140.110.172]:56628 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1353604AbiAYRHg (ORCPT ); Tue, 25 Jan 2022 12:07:36 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 892521FB; Tue, 25 Jan 2022 09:07:33 -0800 (PST) Received: from FVFF77S0Q05N (unknown [10.57.1.45]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 1C3133F766; Tue, 25 Jan 2022 09:07:31 -0800 (PST) Date: Tue, 25 Jan 2022 17:07:29 +0000 From: Mark Rutland To: Evgenii Stepanov Cc: Catalin Marinas , Will Deacon , Ard Biesheuvel , Robin Murphy , Jisheng Zhang , Linux ARM , LKML Subject: Re: [PATCH] arm64: extable: fix null deref in load_unaligned_zeropad. Message-ID: References: <20220122023447.1480995-1-eugenis@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jan 25, 2022 at 08:59:07AM -0800, Evgenii Stepanov wrote: > On Tue, Jan 25, 2022 at 7:50 AM Mark Rutland wrote: > > > > On Tue, Jan 25, 2022 at 03:23:20PM +0000, Mark Rutland wrote: > > > On Fri, Jan 21, 2022 at 06:34:47PM -0800, Evgenii Stepanov wrote: > > > > ex_handler_load_unaligned_zeropad extracts the source and data register > > > > numbers from the wrong field of the exception table. > > > > > > Ouch. Did you find this by inspection, or did this show up in testing? > > > > > > Sorry about this. > > > > > > I think we should be a little more explicit as to exactly what goes wrong. How > > > about: > > > > > > | In ex_handler_load_unaligned_zeropad() we erroneously extract the data and > > > | addr register indices from ex->type rather than ex->data. As ex->type will > > > | contain EX_TYPE_LOAD_UNALIGNED_ZEROPAD (i.e. 4): > > > | > > > | * We'll always treat X0 as the address register, since EX_DATA_REG_ADDR is > > > | extracted from bits [9:5]. Thus, we may attempt to dereference an arbitrary > > > | address as X0 may hold an arbitary value. > > > | > > > | * We'll always treat X4 as the data register, since EX_DATA_REG_DATA is > > > | extracted from bits [4:0]. Thus we will corrupt X4 and cause arbitrary > > > | behaviour within load_unaligned_zeropad() and its caller. > > > | > > > | Fix this by extracting both values from ex->data as originally intended. > > > > > > > Fixes: 753b3236 > > > > > > That should be expanded, e.g. > > > > > > Fixes: 753b32368705c396 ("arm64: extable: add load_unaligned_zeropad() handler") > > > > > > With those changes: > > > > > > Reviewed-by: Mark Rutland > > > > Looking again, sicne this isn't jsut a null-deref, can we also rework the > > title, something like: > > > > | arm64: extable: fix load_unaligned_zeropad() reg indices > > That's a much better commit message, thank you! I'll upload v2 shortly. > > This was found by updating to a newer QEMU that correctly delivers MTE > faults from unaligned memory accesses, and triggers this bug reliably > during Android boot. I'll add a stack trace to v2. That'd be great, thanks! Mark.