[PATCH] D23538: [ELF] Allow specifying the stack size
Petr Hosek via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 17 12:36:00 PDT 2016
phosek updated this revision to Diff 68399.
https://reviews.llvm.org/D23538
Files:
ELF/Config.h
ELF/Driver.cpp
ELF/Writer.cpp
test/ELF/zstack-size.s
Index: test/ELF/zstack-size.s
===================================================================
--- /dev/null
+++ test/ELF/zstack-size.s
@@ -0,0 +1,20 @@
+# REQUIRES: x86
+# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
+# RUN: ld.lld -z stack-size=0x1000 %t -o %t1
+# RUN: llvm-readobj -program-headers %t1 | FileCheck %s
+
+.global _start
+_start:
+ nop
+
+# CHECK: Type: PT_GNU_STACK (0x6474E551)
+# CHECK-NEXT: Offset: 0x0
+# CHECK-NEXT: VirtualAddress: 0x0
+# CHECK-NEXT: PhysicalAddress: 0x0
+# CHECK-NEXT: FileSize: 0
+# CHECK-NEXT: MemSize: 4096
+# CHECK-NEXT: Flags [ (0x6)
+# CHECK-NEXT: PF_R (0x4)
+# CHECK-NEXT: PF_W (0x2)
+# CHECK-NEXT: ]
+# CHECK-NEXT: Alignment: 0
Index: ELF/Writer.cpp
===================================================================
--- ELF/Writer.cpp
+++ ELF/Writer.cpp
@@ -1005,8 +1005,11 @@
// PT_GNU_STACK is a special section to tell the loader to make the
// pages for the stack non-executable.
- if (!Config->ZExecStack)
- AddHdr(PT_GNU_STACK, PF_R | PF_W);
+ if (!Config->ZExecStack) {
+ Phdr &Hdr = *AddHdr(PT_GNU_STACK, PF_R | PF_W);
+ if (Config->ZStackSize != uint64_t(-1))
+ Hdr.H.p_memsz = Config->ZStackSize;
+ }
if (Note.First)
Ret.push_back(std::move(Note));
Index: ELF/Driver.cpp
===================================================================
--- ELF/Driver.cpp
+++ ELF/Driver.cpp
@@ -256,6 +256,17 @@
return false;
}
+static Optional<StringRef>
+getZOptionValue(opt::InputArgList &Args, StringRef Key) {
+ for (auto *Arg : Args.filtered(OPT_z)) {
+ StringRef Value = Arg->getValue();
+ size_t Pos = Value.find("=");
+ if (Pos != StringRef::npos && Key == Value.substr(0, Pos))
+ return Value.substr(Pos + 1);
+ }
+ return None;
+}
+
void LinkerDriver::main(ArrayRef<const char *> ArgsArr) {
ELFOptTable Parser;
opt::InputArgList Args = Parser.parse(ArgsArr.slice(1));
@@ -395,6 +406,10 @@
Config->ZOrigin = hasZOption(Args, "origin");
Config->ZRelro = !hasZOption(Args, "norelro");
+ if (Optional<StringRef> Value = getZOptionValue(Args, "stack-size"))
+ if (Value->getAsInteger(0, Config->ZStackSize))
+ error("invalid stack size: " + *Value);
+
if (Config->Relocatable)
Config->StripAll = false;
Index: ELF/Config.h
===================================================================
--- ELF/Config.h
+++ ELF/Config.h
@@ -121,6 +121,7 @@
uint16_t EMachine = llvm::ELF::EM_NONE;
uint64_t EntryAddr = -1;
uint64_t ImageBase;
+ uint64_t ZStackSize = -1;
unsigned LtoJobs;
unsigned LtoO;
unsigned Optimize;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23538.68399.patch
Type: text/x-patch
Size: 2647 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160817/88e208e4/attachment.bin>
More information about the llvm-commits
mailing list