From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9331FC6FD1C for ; Thu, 23 Mar 2023 17:18:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=Slk4SF0p5WJKmFvACQcKeAAoxa6wqUiG1AIZNs7rm8I=; b=oS32gQm6pgChLJ GHbWmL1s4PKIByG1hpNMMmDnk8jf6sYFjS8bcUJBePTUZJjgCZSQYHYiIvROTH8fG+cTY9TqRpBZQ BkwjYse1N5dT7naulqDO0rb37Qt5wCQrDxo3QcYFC2c02Y69y6dDzoO5SG0kpmyO8sTAWJf9BXllK RatC6RNr5YV/z4eURMntsIPMHtXowGX36cr6yIE3kKDkcCPD9JTXfweoY5SX486hftvnkbPXhbUY3 QIKoQ8bh9O40BhthYsJS1/ABGpCtsvgLJwkpaTCUrtqAfsv5lVedpRB3jdXhO1P6aaJ4kH9WU5S/f AXWmQ2cPQKfDipCrwQ+A==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1pfOZ6-002Zsn-2f; Thu, 23 Mar 2023 17:17:28 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1pfOZ2-002Zrh-1o for linux-arm-kernel@lists.infradead.org; Thu, 23 Mar 2023 17:17:26 +0000 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 488942F4; Thu, 23 Mar 2023 10:18:06 -0700 (PDT) Received: from FVFF77S0Q05N.cambridge.arm.com (FVFF77S0Q05N.cambridge.arm.com [10.1.31.167]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 4BE133F766; Thu, 23 Mar 2023 10:17:20 -0700 (PDT) Date: Thu, 23 Mar 2023 17:17:14 +0000 From: Mark Rutland To: madvenka@linux.microsoft.com Cc: jpoimboe@redhat.com, peterz@infradead.org, chenzhongjin@huawei.com, broonie@kernel.org, nobuta.keiya@fujitsu.com, sjitindarsingh@gmail.com, catalin.marinas@arm.com, will@kernel.org, jamorris@linux.microsoft.com, linux-arm-kernel@lists.infradead.org, live-patching@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [RFC PATCH v3 00/22] arm64: livepatch: Use ORC for dynamic frame pointer validation Message-ID: References: <0337266cf19f4c98388e3f6d09f590d9de258dc7> <20230202074036.507249-1-madvenka@linux.microsoft.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20230202074036.507249-1-madvenka@linux.microsoft.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230323_101724_695800_141AB284 X-CRM114-Status: GOOD ( 42.35 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Madhavan, At a high-level, I think this still falls afoul of our desire to not reverse engineer control flow from the binary, and so I do not think this is the right approach. I've expanded a bit on that below. I do think it would be nice to have *some* of the objtool changes, as I do think we will want to use objtool for some things in future (e.g. some build-time binary patching such as table sorting). On Thu, Feb 02, 2023 at 01:40:14AM -0600, madvenka@linux.microsoft.com wrote: > From: "Madhavan T. Venkataraman" > > Introduction > ============ > > The livepatch feature requires an unwinder that can provide a reliable stack > trace. General requirements for a reliable unwinder are described in this > document from Mark Rutland: > > Documentation/livepatch/reliable-stacktrace.rst > > The requirements have two parts: > > 1. The unwinder must be enhanced with certain features. E.g., > > - Identifying successful termination of stack trace > - Identifying unwindable and non-unwindable code > - Identifying interrupts and exceptions occurring in the frame pointer > prolog and epilog > - Identifying features such as kretprobe and ftrace graph tracing > that can modify the return address stored on the stack > - Identifying corrupted/unreliable stack contents > - Architecture-specific items that can render a stack trace unreliable > at certain points in code > > 2. Validation of the frame pointer > > This assumes that the unwinder is based on the frame pointer (FP). > The actual frame pointer that the unwinder uses cannot just be > assumed to be correct. It needs to be validated somehow. > > This patch series is to address the following: > > - Identifying unwindable and non-unwindable code > - Identifying interrupts and exceptions occurring in the frame pointer > prolog and epilog > - Validation of the frame pointer > > The rest are already in place AFAICT. Just as a note: there are a few issues remaining (e.g. the kretprobe and fgraph PC recovery both have windows where they lose the original return address), and there are a few compiler-generated trampoline functions with non-AAPCS calling conventions that will need special care. > Validation of the FP (aka FRAME_POINTER_VALIDATION) > ==================== > > The current approach in Linux is to use objtool, a build time tool, for this > purpose. When configured, objtool is invoked on every relocatable object file > during kernel build. It performs static analysis of the code in each file. It > walks the instructions in every function and notes the changes to the stack > pointer (SP) and the frame pointer (FP). It makes sure that the changes are in > accordance with the ABI rules. There are also a lot of other checks that > Objtool performs. Once objtool completes successfully, the kernel can then be > used for livepatch purposes. > > Objtool can have uses other than just FP validation. For instance, it can check > control flow integrity during its analysis. > > Problem > ======= > > Objtool is complex and highly architecture-dependent. There are a lot of > different checks in objtool that all of the code in the kernel must pass > before livepatch can be enabled. If a check fails, it must be corrected > before we can proceed. Sometimes, the kernel code needs to be fixed. > Sometimes, it is a compiler bug that needs to be fixed. The challenge is > also to prove that all the work is complete for an architecture. > > As such, it presents a great challenge to enable livepatch for an > architecture. There's a more fundamental issue here in that objtool has to reverse-engineer control flow, and so even if the kernel code and compiled code generation is *perfect*, it's possible that objtool won't recognise the structure of the generated code, and won't be able to reverse-engineer the correct control flow. We've seen issues where objtool didn't understand jump tables, so support for that got disabled on x86. A key objection from the arm64 side is that we don't want to disable compile code generation strategies like this. Further, as compiles evolve, their code generation strategies will change, and it's likely there will be other cases that crop up. This is inherently fragile. The key objections from the arm64 side is that we don't want to reverse-engineer details from the binary, as this is complex, fragile, and unstable. This is why we've previously suggested that we should work with compiler folk to get what we need. I'll note that at the last Linux Plumbers Conference, there was a discussion about what is now called SFrame, which *might* give us sufficient information, but I have not had the time to dig into that as I have been chasing other problems and trying to get other infrastructure in place. > A different approach > ==================== > > I would like to propose a different approach for FP validation. I would > like to be able to enable livepatch for an architecture as is. That is, > without "fixing" the kernel or the compiler for it: > > There are three steps in this: > > 1. Objtool walks all the functions as usual. It computes the stack and > frame pointer offsets at each instruction as usual. It generates ORC > records and stores them in special sections as usual. This is simple > enough to do. This still requires reverse-engineering the forward-edge control flow in order to compute those offets, so the same objections apply with this approach. I do not think this is the right approach. I would *strongly* prefer that we work with compiler folk to get the information that we need. [...] > FWIW, I have also compared the CFI I am generating with DWARF > information that the compiler generates. The CFIs match a > 100% for Clang. In the case of gcc, the comparison fails > in 1.7% of the cases. I have analyzed those cases and found > the DWARF information generated by gcc is incorrect. The > ORC generated by my Objtool is correct. Have you reported this to the GCC folk, and can you give any examples? I'm sure they would be interested in fixing this, regardless of whether we end up using it. Thanks, Mark. _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel