-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[PAC][ELF][AArch64] Support signed personality function pointer #113148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+176
−8
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
9d7f4eb
[PAC][ELF][AArch64] Support signed personality function pointer
kovdan01 726cb7d
Merge branch 'main' into pauth-personality
kovdan01 bb04654
Address review comments
kovdan01 b4ca8b1
Move `HasSignedPersonality` to `AArch64MachineModuleInfo`
kovdan01 75d6649
Delete not needed includes
kovdan01 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
// RUN: %clang_cc1 -triple aarch64-linux-gnu -emit-llvm %s -o - | FileCheck %s --check-prefix=OFF | ||
// RUN: %clang_cc1 -triple aarch64-linux-gnu -fptrauth-elf-got -emit-llvm %s -o - | FileCheck %s --check-prefix=ELFGOT | ||
// RUN: %clang_cc1 -triple aarch64-linux-gnu -fptrauth-calls -emit-llvm %s -o - | FileCheck %s --check-prefix=PERSONALITY | ||
|
||
// ELFGOT: !llvm.module.flags = !{ | ||
// ELFGOT-SAME: !1 | ||
// ELFGOT: !1 = !{i32 8, !"ptrauth-elf-got", i32 1} | ||
|
||
// PERSONALITY: !llvm.module.flags = !{ | ||
// PERSONALITY-SAME: !1 | ||
// PERSONALITY: !1 = !{i32 8, !"ptrauth-sign-personality", i32 1} | ||
|
||
// OFF-NOT: "ptrauth- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
//===--- AArch64MachineModuleInfo.cpp ---------------------------*- C++ -*-===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
/// \file | ||
/// AArch64 Machine Module Info. | ||
/// | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#include "AArch64MachineModuleInfo.h" | ||
#include "llvm/IR/Constants.h" | ||
#include "llvm/IR/Module.h" | ||
|
||
namespace llvm { | ||
|
||
AArch64MachineModuleInfo::AArch64MachineModuleInfo(const MachineModuleInfo &MMI) | ||
: MachineModuleInfoELF(MMI) { | ||
const Module *M = MMI.getModule(); | ||
const auto *Flag = mdconst::extract_or_null<ConstantInt>( | ||
M->getModuleFlag("ptrauth-sign-personality")); | ||
if (Flag && Flag->getZExtValue() == 1) | ||
HasSignedPersonality = true; | ||
else | ||
HasSignedPersonality = false; | ||
} | ||
|
||
} // end namespace llvm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
//===--- AArch64MachineModuleInfo.h -----------------------------*- C++ -*-===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
/// \file | ||
/// AArch64 Machine Module Info. | ||
/// | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef LLVM_LIB_TARGET_AARCH64_AARCH64MACHINEMODULEINFO_H | ||
#define LLVM_LIB_TARGET_AARCH64_AARCH64MACHINEMODULEINFO_H | ||
|
||
#include "llvm/CodeGen/MachineModuleInfoImpls.h" | ||
|
||
namespace llvm { | ||
|
||
class AArch64MachineModuleInfo final : public MachineModuleInfoELF { | ||
/// HasSignedPersonality is true if the corresponding IR module has the | ||
/// "ptrauth-sign-personality" flag set to 1. | ||
bool HasSignedPersonality = false; | ||
|
||
public: | ||
AArch64MachineModuleInfo(const MachineModuleInfo &); | ||
|
||
bool hasSignedPersonality() const { return HasSignedPersonality; } | ||
}; | ||
|
||
} // end namespace llvm | ||
|
||
#endif // LLVM_LIB_TARGET_AARCH64_AARCH64MACHINEMODULEINFO_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
; RUN: llc -mtriple=aarch64-linux -filetype=asm %s -o - | FileCheck %s | ||
; RUN: llc -mtriple=aarch64-linux -filetype=obj %s -o - | \ | ||
; RUN: llvm-readelf -r -x .data.DW.ref.__gxx_personality_v0 - | \ | ||
; RUN: FileCheck --check-prefix=RELOC %s | ||
|
||
@_ZTISt9exception = external constant ptr | ||
|
||
define i32 @main() personality ptr @__gxx_personality_v0 { | ||
entry: | ||
invoke void @foo() to label %cont unwind label %lpad | ||
|
||
lpad: | ||
%0 = landingpad { ptr, i32 } | ||
catch ptr null | ||
catch ptr @_ZTISt9exception | ||
ret i32 0 | ||
|
||
cont: | ||
ret i32 0 | ||
} | ||
|
||
declare i32 @__gxx_personality_v0(...) | ||
|
||
declare void @foo() | ||
|
||
!llvm.module.flags = !{!0} | ||
!0 = !{i32 8, !"ptrauth-sign-personality", i32 1} | ||
|
||
; CHECK: DW.ref.__gxx_personality_v0: | ||
; CHECK-NEXT: .xword __gxx_personality_v0@AUTH(ia,32429,addr) | ||
|
||
; RELOC: Relocation section '.rela.data.DW.ref.__gxx_personality_v0' at offset 0x2a0 contains 1 entries: | ||
; RELOC-NEXT: Offset Info Type Symbol's Value Symbol's Name + Addend | ||
; RELOC-NEXT: 0000000000000000 0000000f00000244 R_AARCH64_AUTH_ABS64 0000000000000000 __gxx_personality_v0 + 0 | ||
|
||
; RELOC: Hex dump of section '.data.DW.ref.__gxx_personality_v0': | ||
; RELOC-NEXT: 0x00000000 00000000 ad7e0080 | ||
; ^^^^ 0x7EAD = discriminator | ||
; ^^ 0b10000000: bit 63 = 1 -> address diversity enabled, bits 61:60 = 0b00 -> key is IA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use Streamer.getContext() and remove
Ctx
parameterThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in bb04654, thanks for suggestion