diff mbox series

[v6,2/3] elf: Add tst-execstack-prog-static

Message ID 20241223144954.3823971-3-adhemerval.zanella@linaro.org
State New
Headers show
Series Improve executable stack handling | expand

Commit Message

Adhemerval Zanella Dec. 23, 2024, 2:49 p.m. UTC
Similar to tst-execstack-prog, check if executable stacks works for
statically linked programs.
---
 elf/Makefile                    | 7 +++++++
 elf/tst-execstack-prog-static.c | 1 +
 2 files changed, 8 insertions(+)
 create mode 100644 elf/tst-execstack-prog-static.c

Comments

Florian Weimer Dec. 23, 2024, 7:15 p.m. UTC | #1
* Adhemerval Zanella:

> Similar to tst-execstack-prog, check if executable stacks works for
> statically linked programs.

This looks okay to me.

Reviewed-by: Florian Weimer <fweimer@redhat.com>

Thanks,
Florian
diff mbox series

Patch

diff --git a/elf/Makefile b/elf/Makefile
index e8fc6bd65f..cea48e9537 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -567,6 +567,9 @@  tests-execstack-yes = \
   tst-execstack-needed \
   tst-execstack-prog \
   # tests-execstack-yes
+tests-execstack-static-yes = \
+  tst-execstack-prog-static
+  # tests-execstack-static-yes
 endif
 endif
 ifeq ($(have-depaudit),yes)
@@ -662,6 +665,7 @@  $(objpfx)tst-rtld-dash-dash.out: tst-rtld-dash-dash.sh $(objpfx)ld.so
 	$(evaluate-test)
 
 tests += $(tests-execstack-$(have-z-execstack))
+tests-static+= $(tests-execstack-static-$(have-z-execstack))
 ifeq ($(run-built-tests),yes)
 tests-special += \
   $(objpfx)tst-ldconfig-X.out \
@@ -1982,6 +1986,9 @@  LDFLAGS-tst-execstack-needed = -Wl,-z,noexecstack
 LDFLAGS-tst-execstack-prog = -Wl,-z,execstack
 CFLAGS-tst-execstack-prog.c += -Wno-trampolines
 CFLAGS-tst-execstack-mod.c += -Wno-trampolines
+
+LDFLAGS-tst-execstack-prog-static = -Wl,-z,execstack
+CFLAGS-tst-execstack-prog-static.c += -Wno-trampolines
 endif
 
 LDFLAGS-tst-array2 = -Wl,--no-as-needed
diff --git a/elf/tst-execstack-prog-static.c b/elf/tst-execstack-prog-static.c
new file mode 100644
index 0000000000..328065dd9c
--- /dev/null
+++ b/elf/tst-execstack-prog-static.c
@@ -0,0 +1 @@ 
+#include <tst-execstack-prog.c>