Skip to content

[PAC][AArch64] Lower ptrauth constants in data #94240

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
merged 4 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions llvm/include/llvm/CodeGen/AsmPrinter.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class BasicBlock;
class BlockAddress;
class Constant;
class ConstantArray;
class ConstantPtrAuth;
class DataLayout;
class DIE;
class DIEAbbrev;
Expand Down Expand Up @@ -585,6 +586,10 @@ class AsmPrinter : public MachineFunctionPass {
emitGlobalConstant(DL, CV);
}

virtual const MCExpr *lowerConstantPtrAuth(const ConstantPtrAuth &CPA) {
report_fatal_error("ptrauth constant lowering not implemented");
}

/// Return true if the basic block has exactly one predecessor and the control
/// transfer mechanism between the predecessor and this block is a
/// fall-through.
Expand Down
3 changes: 3 additions & 0 deletions llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3181,6 +3181,9 @@ const MCExpr *AsmPrinter::lowerConstant(const Constant *CV) {
if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
return MCConstantExpr::create(CI->getZExtValue(), Ctx);

if (const ConstantPtrAuth *CPA = dyn_cast<ConstantPtrAuth>(CV))
return lowerConstantPtrAuth(*CPA);

if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
return MCSymbolRefExpr::create(getSymbol(GV), Ctx);

Expand Down
48 changes: 48 additions & 0 deletions llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ class AArch64AsmPrinter : public AsmPrinter {
return MCInstLowering.lowerOperand(MO, MCOp);
}

const MCExpr *lowerConstantPtrAuth(const ConstantPtrAuth &CPA) override;

void emitStartOfAsmFile(Module &M) override;
void emitJumpTableInfo() override;
std::tuple<const MCSymbol *, uint64_t, const MCSymbol *,
Expand Down Expand Up @@ -1575,6 +1577,52 @@ void AArch64AsmPrinter::emitPtrauthBranch(const MachineInstr *MI) {
assert(STI->getInstrInfo()->getInstSizeInBytes(*MI) >= InstsEmitted * 4);
}

const MCExpr *
AArch64AsmPrinter::lowerConstantPtrAuth(const ConstantPtrAuth &CPA) {
MCContext &Ctx = OutContext;

// Figure out the base symbol and the addend, if any.
APInt Offset(64, 0);
const Value *BaseGV = CPA.getPointer()->stripAndAccumulateConstantOffsets(
getDataLayout(), Offset, /*AllowNonInbounds=*/true);

auto *BaseGVB = dyn_cast<GlobalValue>(BaseGV);

// If we can't understand the referenced ConstantExpr, there's nothing
// else we can do: emit an error.
if (!BaseGVB) {
BaseGV->getContext().emitError(
"cannot resolve target base/addend of ptrauth constant");
return nullptr;
}

// If there is an addend, turn that into the appropriate MCExpr.
const MCExpr *Sym = MCSymbolRefExpr::create(getSymbol(BaseGVB), Ctx);
if (Offset.sgt(0))
Sym = MCBinaryExpr::createAdd(
Sym, MCConstantExpr::create(Offset.getSExtValue(), Ctx), Ctx);
else if (Offset.slt(0))
Sym = MCBinaryExpr::createSub(
Sym, MCConstantExpr::create((-Offset).getSExtValue(), Ctx), Ctx);

uint64_t KeyID = CPA.getKey()->getZExtValue();
// We later rely on valid KeyID value in AArch64PACKeyIDToString call from
// AArch64AuthMCExpr::printImpl, so fail fast.
if (KeyID > AArch64PACKey::LAST)
report_fatal_error("AArch64 PAC Key ID '" + Twine(KeyID) +
"' out of range [0, " +
Twine((unsigned)AArch64PACKey::LAST) + "]");

uint64_t Disc = CPA.getDiscriminator()->getZExtValue();
if (!isUInt<16>(Disc))
report_fatal_error("AArch64 PAC Discriminator '" + Twine(Disc) +
"' out of range [0, 0xFFFF]");

// Finally build the complete @AUTH expr.
return AArch64AuthMCExpr::create(Sym, Disc, AArch64PACKey::ID(KeyID),
CPA.hasAddressDiscriminator(), Ctx);
}

// Simple pseudo-instructions have their lowering (with expansion to real
// instructions) auto-generated.
#include "AArch64GenMCPseudoLowering.inc"
Expand Down
176 changes: 176 additions & 0 deletions llvm/test/CodeGen/AArch64/ptrauth-reloc.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
; RUN: rm -rf %t && split-file %s %t && cd %t

;--- ok.ll

; RUN: llc < ok.ll -mtriple arm64e-apple-darwin \
; RUN: | FileCheck %s --check-prefix=CHECK-MACHO
; RUN: llc < ok.ll -mtriple aarch64-elf -mattr=+pauth \
; RUN: | FileCheck %s --check-prefix=CHECK-ELF

; RUN: llc < ok.ll -mtriple arm64e-apple-darwin \
; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 \
; RUN: | FileCheck %s --check-prefix=CHECK-MACHO
; RUN: llc < ok.ll -mtriple aarch64-elf -mattr=+pauth \
; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 \
; RUN: | FileCheck %s --check-prefix=CHECK-ELF

@g = external global i32

@g_weak = extern_weak global i32

@g_strong_def = constant i32 42

; CHECK-ELF-LABEL: .globl g.ref.ia.0
; CHECK-ELF-NEXT: .p2align 4
; CHECK-ELF-NEXT: g.ref.ia.0:
; CHECK-ELF-NEXT: .xword 5
; CHECK-ELF-NEXT: .xword g@AUTH(ia,0)
; CHECK-ELF-NEXT: .xword 6

; CHECK-MACHO-LABEL: .section __DATA,__const
; CHECK-MACHO-NEXT: .globl _g.ref.ia.0
; CHECK-MACHO-NEXT: .p2align 4
; CHECK-MACHO-NEXT: _g.ref.ia.0:
; CHECK-MACHO-NEXT: .quad 5
; CHECK-MACHO-NEXT: .quad _g@AUTH(ia,0)
; CHECK-MACHO-NEXT: .quad 6

@g.ref.ia.0 = constant { i64, ptr, i64 } { i64 5, ptr ptrauth (ptr @g, i32 0), i64 6 }

; CHECK-ELF-LABEL: .globl g.ref.ia.42
; CHECK-ELF-NEXT: .p2align 3
; CHECK-ELF-NEXT: g.ref.ia.42:
; CHECK-ELF-NEXT: .xword g@AUTH(ia,42)

; CHECK-MACHO-LABEL: .globl _g.ref.ia.42
; CHECK-MACHO-NEXT: .p2align 3
; CHECK-MACHO-NEXT: _g.ref.ia.42:
; CHECK-MACHO-NEXT: .quad _g@AUTH(ia,42)

@g.ref.ia.42 = constant ptr ptrauth (ptr @g, i32 0, i64 42)

; CHECK-ELF-LABEL: .globl g.ref.ib.0
; CHECK-ELF-NEXT: .p2align 4
; CHECK-ELF-NEXT: g.ref.ib.0:
; CHECK-ELF-NEXT: .xword 5
; CHECK-ELF-NEXT: .xword g@AUTH(ib,0)
; CHECK-ELF-NEXT: .xword 6

; CHECK-MACHO-LABEL: .globl _g.ref.ib.0
; CHECK-MACHO-NEXT: .p2align 4
; CHECK-MACHO-NEXT: _g.ref.ib.0:
; CHECK-MACHO-NEXT: .quad 5
; CHECK-MACHO-NEXT: .quad _g@AUTH(ib,0)
; CHECK-MACHO-NEXT: .quad 6

@g.ref.ib.0 = constant { i64, ptr, i64 } { i64 5, ptr ptrauth (ptr @g, i32 1, i64 0), i64 6 }

; CHECK-ELF-LABEL: .globl g.ref.da.42.addr
; CHECK-ELF-NEXT: .p2align 3
; CHECK-ELF-NEXT: g.ref.da.42.addr:
; CHECK-ELF-NEXT: .xword g@AUTH(da,42,addr)

; CHECK-MACHO-LABEL: .globl _g.ref.da.42.addr
; CHECK-MACHO-NEXT: .p2align 3
; CHECK-MACHO-NEXT: _g.ref.da.42.addr:
; CHECK-MACHO-NEXT: .quad _g@AUTH(da,42,addr)

@g.ref.da.42.addr = constant ptr ptrauth (ptr @g, i32 2, i64 42, ptr @g.ref.da.42.addr)

; CHECK-ELF-LABEL: .globl g.offset.ref.da.0
; CHECK-ELF-NEXT: .p2align 3
; CHECK-ELF-NEXT: g.offset.ref.da.0:
; CHECK-ELF-NEXT: .xword (g+16)@AUTH(da,0)

; CHECK-MACHO-LABEL: .globl _g.offset.ref.da.0
; CHECK-MACHO-NEXT: .p2align 3
; CHECK-MACHO-NEXT: _g.offset.ref.da.0:
; CHECK-MACHO-NEXT: .quad (_g+16)@AUTH(da,0)

@g.offset.ref.da.0 = constant ptr ptrauth (i8* getelementptr (i8, ptr @g, i64 16), i32 2)

; CHECK-ELF-LABEL: .globl g.big_offset.ref.da.0
; CHECK-ELF-NEXT: .p2align 3
; CHECK-ELF-NEXT: g.big_offset.ref.da.0:
; CHECK-ELF-NEXT: .xword (g+2147549185)@AUTH(da,0)

; CHECK-MACHO-LABEL: .globl _g.big_offset.ref.da.0
; CHECK-MACHO-NEXT: .p2align 3
; CHECK-MACHO-NEXT: _g.big_offset.ref.da.0:
; CHECK-MACHO-NEXT: .quad (_g+2147549185)@AUTH(da,0)

@g.big_offset.ref.da.0 = constant ptr ptrauth (i8* getelementptr (i8, ptr @g, i64 add (i64 2147483648, i64 65537)), i32 2)

; CHECK-ELF-LABEL: .globl g.weird_ref.da.0
; CHECK-ELF-NEXT: .p2align 3
; CHECK-ELF-NEXT: g.weird_ref.da.0:
; CHECK-ELF-NEXT: .xword (g+16)@AUTH(da,0)

; CHECK-MACHO-LABEL: .globl _g.weird_ref.da.0
; CHECK-MACHO-NEXT: .p2align 3
; CHECK-MACHO-NEXT: _g.weird_ref.da.0:
; CHECK-MACHO-NEXT: .quad (_g+16)@AUTH(da,0)

@g.weird_ref.da.0 = constant i64 ptrtoint (ptr inttoptr (i64 ptrtoint (ptr ptrauth (i8* getelementptr (i8, ptr @g, i64 16), i32 2) to i64) to ptr) to i64)

; CHECK-ELF-LABEL: .globl g_weak.ref.ia.42
; CHECK-ELF-NEXT: .p2align 3
; CHECK-ELF-NEXT: g_weak.ref.ia.42:
; CHECK-ELF-NEXT: .xword g_weak@AUTH(ia,42)

; CHECK-MACHO-LABEL: .globl _g_weak.ref.ia.42
; CHECK-MACHO-NEXT: .p2align 3
; CHECK-MACHO-NEXT: _g_weak.ref.ia.42:
; CHECK-MACHO-NEXT: .quad _g_weak@AUTH(ia,42)

@g_weak.ref.ia.42 = constant ptr ptrauth (ptr @g_weak, i32 0, i64 42)

; CHECK-ELF-LABEL: .globl g_strong_def.ref.da.0
; CHECK-ELF-NEXT: .p2align 3
; CHECK-ELF-NEXT: g_strong_def.ref.da.0:
; CHECK-ELF-NEXT: .xword g_strong_def@AUTH(da,0)

; CHECK-MACHO-LABEL: .globl _g_strong_def.ref.da.0
; CHECK-MACHO-NEXT: .p2align 3
; CHECK-MACHO-NEXT: _g_strong_def.ref.da.0:
; CHECK-MACHO-NEXT: .quad _g_strong_def@AUTH(da,0)

@g_strong_def.ref.da.0 = constant ptr ptrauth (ptr @g_strong_def, i32 2)

;--- err-key.ll

; RUN: not --crash llc < err-key.ll -mtriple arm64e-apple-darwin 2>&1 \
; RUN: | FileCheck %s --check-prefix=CHECK-ERR-KEY
; RUN: not --crash llc < err-key.ll -mtriple aarch64-elf -mattr=+pauth 2>&1 \
; RUN: | FileCheck %s --check-prefix=CHECK-ERR-KEY

; RUN: not --crash llc < err-key.ll -mtriple arm64e-apple-darwin \
; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 2>&1 \
; RUN: | FileCheck %s --check-prefix=CHECK-ERR-KEY
; RUN: not --crash llc < err-key.ll -mtriple aarch64-elf -mattr=+pauth \
; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 2>&1 \
; RUN: | FileCheck %s --check-prefix=CHECK-ERR-KEY

; CHECK-ERR-KEY: LLVM ERROR: AArch64 PAC Key ID '4' out of range [0, 3]

@g = external global i32
@g.ref.4.0 = constant ptr ptrauth (ptr @g, i32 4, i64 0)

;--- err-disc.ll

; RUN: not --crash llc < err-disc.ll -mtriple arm64e-apple-darwin 2>&1 \
; RUN: | FileCheck %s --check-prefix=CHECK-ERR-DISC
; RUN: not --crash llc < err-disc.ll -mtriple aarch64-elf -mattr=+pauth 2>&1 \
; RUN: | FileCheck %s --check-prefix=CHECK-ERR-DISC

; RUN: not --crash llc < err-disc.ll -mtriple arm64e-apple-darwin \
; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 2>&1 \
; RUN: | FileCheck %s --check-prefix=CHECK-ERR-DISC
; RUN: not --crash llc < err-disc.ll -mtriple aarch64-elf -mattr=+pauth \
; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 2>&1 \
; RUN: | FileCheck %s --check-prefix=CHECK-ERR-DISC

; CHECK-ERR-DISC: LLVM ERROR: AArch64 PAC Discriminator '65536' out of range [0, 0xFFFF]

@g = external global i32
@g.ref.ia.65536 = constant ptr ptrauth (ptr @g, i32 0, i64 65536)
Loading