From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C373E13C9C4; Wed, 13 May 2026 03:34:30 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778643270; cv=none; b=kUhwaaLs70weGMt2kJwVj9E0CRlHWi4j0NRCzhfre0kof41gssnVeHwkxtkWA6M9wGz/Pz7E/7ZjjprSBb6MoWbohIayY7Cu11QmjUpbtkwVzlSdNjEwAkhpPL9Mf6YQhnESuqI11D8Dkhswyi9iYADvGd3WDGRNMuVC/81hevo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778643270; c=relaxed/simple; bh=3oqfclx78zKWNl/PM+bomMzSvStvzcGz0lbbX8cPMeE=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=mzQQxMA/QiL4JpxtyVgruzsgxI52vk3gBDHXu+0PCT6y0D5v0mQ3oXWaTDhp39HW0HL1lHg7/aCrBqcovE8fNQS7/ic/ssHB9RprOKIr1qadwPAqnQl6TZbPZvb+pwfxGhoaf0xh6orEaZK1NuaSraLomMVd5OT60r2u/R2e344= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=tqGuPuh2; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="tqGuPuh2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E07F5C2BCC7; Wed, 13 May 2026 03:34:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778643270; bh=3oqfclx78zKWNl/PM+bomMzSvStvzcGz0lbbX8cPMeE=; h=From:To:Cc:Subject:Date:From; b=tqGuPuh2s9Yuad2jAFCuchftjpS/NeJlQ3UArT0ujCd4EvuVE9a7MyLMtR9ZM3WEf IwxWJgdjuABmwEjiT/wxwtY4HHpQ1LHLwY0IkgYwvIxfwjw/Uo7keM90Esdn3Hnm0m ImSiR/QXRbFZHeBI8QwKaxH2QzONBFSuyj5aOFEqiJanktyPDe5jgsJu4a+Pa4CYf8 DbmR53T0vpceirjX8UUiCR1zYmh0U5kKyayBoNXrBIgVGb3Jk59+h1c157om2vRcpX RD7tcNAXdbrJO7qTWXdbXm1DvN3awXJkElwGBpNvRjhZlcRfBxjCt/TAvfgoBbxEjV Czs6+9J/Avhqg== From: Josh Poimboeuf To: x86@kernel.org Cc: linux-kernel@vger.kernel.org, live-patching@vger.kernel.org, Peter Zijlstra , Joe Lawrence , Song Liu , Catalin Marinas , Will Deacon , linux-arm-kernel@lists.infradead.org, Mark Rutland , Miroslav Benes , Petr Mladek Subject: [PATCH v3 00/21] objtool/arm64: Port klp-build to arm64 Date: Tue, 12 May 2026 20:33:34 -0700 Message-ID: X-Mailer: git-send-email 2.53.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Based on tip/objtool/core. v3: - Too many changes to list. Did a lot of testing and fixed a bunch of issues (many of which have already been merged in tip/objtool/core). v2: https://lore.kernel.org/cover.1773787568.git.jpoimboe@kernel.org - patches 1-2 were merged, rebase on tip/master - improve commit message for "objtool: Extricate checksum calculation from validate_branch()" - add review tags v1: https://lore.kernel.org/cover.1772681234.git.jpoimboe@kernel.org Port objtool and the klp-build tooling (for building livepatch modules) to arm64. Note this doesn't bring all the objtool bells and whistles to arm64, nor any of the CFG reverse engineering. This only adds the bare minimum needed for 'objtool --checksum'. And note that objtool still doesn't get enabled at all for normal arm64 kernel builds, so this doesn't affect any users other than those running klp-build directly. Josh Poimboeuf (21): klp-build: Reject patches to init/*.c arm64: Annotate intra-function calls arm64: Fix EFI linking with -fdata-sections arm64: Rename TRAMP_VALIAS -> TRAMP_VALIAS_ASM in asm-offsets arm64: vdso: Discard .discard.* sections arm64: Annotate special section entries crypto: arm64: Move data to .rodata objtool: Allow setting --mnop without --mcount kbuild: Only run objtool if there is at least one command objtool: Ignore jumps to the end of the function for checksum runs objtool: Allow empty alternatives objtool: Refactor elf_add_data() to use a growable data buffer objtool: Reuse string references objtool: Prevent kCFI hashes from being decoded as instructions objtool/klp: Add arm64 support for prefix/PFE detection objtool/klp: Filter arm64 mapping symbols in find_symbol_by_offset() objtool/klp: Don't correlate arm64 mapping symbols objtool/klp: Clone inline alternative replacements objtool/klp: Introduce objtool for arm64 klp-build: Support cross-compilation klp-build: Add arm64 syscall patching macro arch/arm64/Kconfig | 2 + arch/arm64/include/asm/alternative-macros.h | 27 +- arch/arm64/include/asm/asm-bug.h | 2 + arch/arm64/include/asm/asm-extable.h | 21 +- arch/arm64/include/asm/jump_label.h | 2 + arch/arm64/kernel/asm-offsets.c | 7 +- arch/arm64/kernel/entry.S | 10 +- arch/arm64/kernel/proton-pack.c | 12 +- arch/arm64/kernel/vdso/vdso.lds.S | 1 + arch/arm64/kernel/vmlinux.lds.S | 2 +- arch/x86/boot/startup/Makefile | 2 +- include/linux/annotate.h | 14 +- include/linux/livepatch_helpers.h | 19 ++ include/linux/objtool_types.h | 1 + lib/crypto/arm64/sha2-armv8.pl | 18 +- scripts/Makefile.build | 4 +- scripts/Makefile.lib | 52 ++-- scripts/Makefile.vmlinux_o | 15 +- scripts/livepatch/klp-build | 24 +- tools/include/linux/objtool_types.h | 1 + tools/objtool/Makefile | 4 + tools/objtool/arch/arm64/Build | 2 + tools/objtool/arch/arm64/decode.c | 177 +++++++++++++ .../arch/arm64/include/arch/cfi_regs.h | 11 + tools/objtool/arch/arm64/include/arch/elf.h | 15 ++ .../objtool/arch/arm64/include/arch/special.h | 21 ++ tools/objtool/arch/arm64/special.c | 21 ++ tools/objtool/arch/x86/include/arch/elf.h | 2 + tools/objtool/builtin-check.c | 5 - tools/objtool/check.c | 65 +++-- tools/objtool/elf.c | 170 +++++++------ tools/objtool/include/objtool/elf.h | 48 +++- tools/objtool/klp-diff.c | 237 ++++++++++++++++-- 33 files changed, 819 insertions(+), 195 deletions(-) create mode 100644 tools/objtool/arch/arm64/Build create mode 100644 tools/objtool/arch/arm64/decode.c create mode 100644 tools/objtool/arch/arm64/include/arch/cfi_regs.h create mode 100644 tools/objtool/arch/arm64/include/arch/elf.h create mode 100644 tools/objtool/arch/arm64/include/arch/special.h create mode 100644 tools/objtool/arch/arm64/special.c -- 2.53.0 From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 72B6B3A75B7; Wed, 13 May 2026 03:34:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778643284; cv=none; b=pkTfk+wb0+/iOpUsocMsI3SgWEHZeHm/XPHNscYpZ1Pins0RIXaWur47LVyGLiou0ksj+263Qk/JHKVmCeW101IkqD7Sg3SDmBA6yafGGmYtzeRIysdLfPnjiuafvMioSm1H6ncWZb9EU/4PR4bZWroSRMJpY0rmPslmNGP4RKQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778643284; c=relaxed/simple; bh=3oqfclx78zKWNl/PM+bomMzSvStvzcGz0lbbX8cPMeE=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=k/63GVAgQiGEPH+YPnca6URERi3pmoRdk1B40zfBxCWZO4w4PDdFs5whWn5/NonzMVbcwaOgGBoHluxhldonAQYaWY6cO0y8N59LfqAc7VqBWN3D2ZxqE9rtqhu3TWNtlwpCFLQpS1k+N/wDRu7P9NM5ksZG11jJC+O+Nvj+pw8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=WlqjoU52; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="WlqjoU52" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AB9BEC4AF14; Wed, 13 May 2026 03:34:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778643284; bh=3oqfclx78zKWNl/PM+bomMzSvStvzcGz0lbbX8cPMeE=; h=From:To:Cc:Subject:Date:From; b=WlqjoU52+gq0FyxfwZOzH82yJZr0UgxgZPiYgxmKKJDvROjj6OdnFdfQD0d0K93Gq 3AuvzBnOCwXcweM2Klbu0ANETmWilajiIhwsgxPxKyXqLTvmsSntR7rfC1qYqXrhcH JPqhQSkMxD8Itxi4ZY2wqxgh3UA2VxdG10J+WAFeETExz+HSr2MBecaN31QRAPzjds KRjEUDvTdYZYNgE7O3MaXji6JkthOppKVq82PHSDuiw3zQ/Uhty5mWKlsOGCCyNk/0 AK+TGFLsvFhiKKPMZ+3gf/Idi9OaVwo3fS6bbLxsODJJovWh1OXe6uU/6zVgy6brUX lyUCPQA2Yd7og== From: Josh Poimboeuf To: x86@kernel.org Cc: linux-kernel@vger.kernel.org, live-patching@vger.kernel.org, Peter Zijlstra , Joe Lawrence , Song Liu , Catalin Marinas , Will Deacon , linux-arm-kernel@lists.infradead.org, Mark Rutland , Miroslav Benes , Petr Mladek Subject: [PATCH v3 00/21] objtool/arm64: Port klp-build to arm64 Date: Tue, 12 May 2026 20:33:56 -0700 Message-ID: X-Mailer: git-send-email 2.53.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: <20260513033356.naJIPlAyQUrFhdt79aAYBnxnNPKF5UJ4KB5zjUKW10s@z> Based on tip/objtool/core. v3: - Too many changes to list. Did a lot of testing and fixed a bunch of issues (many of which have already been merged in tip/objtool/core). v2: https://lore.kernel.org/cover.1773787568.git.jpoimboe@kernel.org - patches 1-2 were merged, rebase on tip/master - improve commit message for "objtool: Extricate checksum calculation from validate_branch()" - add review tags v1: https://lore.kernel.org/cover.1772681234.git.jpoimboe@kernel.org Port objtool and the klp-build tooling (for building livepatch modules) to arm64. Note this doesn't bring all the objtool bells and whistles to arm64, nor any of the CFG reverse engineering. This only adds the bare minimum needed for 'objtool --checksum'. And note that objtool still doesn't get enabled at all for normal arm64 kernel builds, so this doesn't affect any users other than those running klp-build directly. Josh Poimboeuf (21): klp-build: Reject patches to init/*.c arm64: Annotate intra-function calls arm64: Fix EFI linking with -fdata-sections arm64: Rename TRAMP_VALIAS -> TRAMP_VALIAS_ASM in asm-offsets arm64: vdso: Discard .discard.* sections arm64: Annotate special section entries crypto: arm64: Move data to .rodata objtool: Allow setting --mnop without --mcount kbuild: Only run objtool if there is at least one command objtool: Ignore jumps to the end of the function for checksum runs objtool: Allow empty alternatives objtool: Refactor elf_add_data() to use a growable data buffer objtool: Reuse string references objtool: Prevent kCFI hashes from being decoded as instructions objtool/klp: Add arm64 support for prefix/PFE detection objtool/klp: Filter arm64 mapping symbols in find_symbol_by_offset() objtool/klp: Don't correlate arm64 mapping symbols objtool/klp: Clone inline alternative replacements objtool/klp: Introduce objtool for arm64 klp-build: Support cross-compilation klp-build: Add arm64 syscall patching macro arch/arm64/Kconfig | 2 + arch/arm64/include/asm/alternative-macros.h | 27 +- arch/arm64/include/asm/asm-bug.h | 2 + arch/arm64/include/asm/asm-extable.h | 21 +- arch/arm64/include/asm/jump_label.h | 2 + arch/arm64/kernel/asm-offsets.c | 7 +- arch/arm64/kernel/entry.S | 10 +- arch/arm64/kernel/proton-pack.c | 12 +- arch/arm64/kernel/vdso/vdso.lds.S | 1 + arch/arm64/kernel/vmlinux.lds.S | 2 +- arch/x86/boot/startup/Makefile | 2 +- include/linux/annotate.h | 14 +- include/linux/livepatch_helpers.h | 19 ++ include/linux/objtool_types.h | 1 + lib/crypto/arm64/sha2-armv8.pl | 18 +- scripts/Makefile.build | 4 +- scripts/Makefile.lib | 52 ++-- scripts/Makefile.vmlinux_o | 15 +- scripts/livepatch/klp-build | 24 +- tools/include/linux/objtool_types.h | 1 + tools/objtool/Makefile | 4 + tools/objtool/arch/arm64/Build | 2 + tools/objtool/arch/arm64/decode.c | 177 +++++++++++++ .../arch/arm64/include/arch/cfi_regs.h | 11 + tools/objtool/arch/arm64/include/arch/elf.h | 15 ++ .../objtool/arch/arm64/include/arch/special.h | 21 ++ tools/objtool/arch/arm64/special.c | 21 ++ tools/objtool/arch/x86/include/arch/elf.h | 2 + tools/objtool/builtin-check.c | 5 - tools/objtool/check.c | 65 +++-- tools/objtool/elf.c | 170 +++++++------ tools/objtool/include/objtool/elf.h | 48 +++- tools/objtool/klp-diff.c | 237 ++++++++++++++++-- 33 files changed, 819 insertions(+), 195 deletions(-) create mode 100644 tools/objtool/arch/arm64/Build create mode 100644 tools/objtool/arch/arm64/decode.c create mode 100644 tools/objtool/arch/arm64/include/arch/cfi_regs.h create mode 100644 tools/objtool/arch/arm64/include/arch/elf.h create mode 100644 tools/objtool/arch/arm64/include/arch/special.h create mode 100644 tools/objtool/arch/arm64/special.c -- 2.53.0