1 /* Test program for making nonexecutable stacks executable
2 on load of a DSO that requires executable stacks. */
10 #include <stackinfo.h>
17 asprintf (&cmd
, "cat /proc/%d/maps", getpid ());
23 static void deeper (void (*f
) (void));
29 tryme_thread (void *f
)
31 (*((void (*) (void)) f
)) ();
36 static pthread_barrier_t startup_barrier
, go_barrier
;
38 waiter_thread (void *arg
)
41 pthread_barrier_wait (&startup_barrier
);
42 pthread_barrier_wait (&go_barrier
);
44 (*((void (*) (void)) *f
)) ();
50 static bool allow_execstack
= true;
56 /* Check whether SELinux is enabled and disallows executable stacks. */
57 FILE *fp
= fopen ("/selinux/enforce", "r");
64 ssize_t n
= getline (&line
, &linelen
, fp
);
65 if (n
> 0 && line
[0] != '0')
72 fp
= fopen ("/selinux/booleans/allow_execstack", "r");
75 n
= getline (&line
, &linelen
, fp
);
76 if (n
> 0 && line
[0] == '0')
77 allow_execstack
= false;
84 printf ("executable stacks %sallowed\n", allow_execstack
? "" : "not ");
86 static void *f
; /* Address of this is used in other threads. */
89 /* Create some threads while stacks are nonexecutable. */
93 pthread_barrier_init (&startup_barrier
, NULL
, N
+ 1);
94 pthread_barrier_init (&go_barrier
, NULL
, N
+ 1);
96 for (int i
= 0; i
< N
; ++i
)
98 int rc
= pthread_create (&thr
[i
], NULL
, &waiter_thread
, &f
);
100 error (1, rc
, "pthread_create");
103 /* Make sure they are all there using their stacks. */
104 pthread_barrier_wait (&startup_barrier
);
105 puts ("threads waiting");
111 void *old_stack_addr
, *new_stack_addr
;
113 pthread_t me
= pthread_self ();
117 ret
= pthread_getattr_np (me
, &attr
);
120 printf ("before execstack: pthread_getattr_np returned error: %s\n",
125 ret
= pthread_attr_getstack (&attr
, &old_stack_addr
, &stack_size
);
128 printf ("before execstack: pthread_attr_getstack returned error: %s\n",
132 # if _STACK_GROWS_DOWN
133 old_stack_addr
+= stack_size
;
135 old_stack_addr
-= stack_size
;
139 /* Loading this module should force stacks to become executable. */
140 void *h
= dlopen ("tst-execstack-mod.so", RTLD_LAZY
);
143 printf ("cannot load: %s\n", dlerror ());
144 return allow_execstack
;
147 f
= dlsym (h
, "tryme");
150 printf ("symbol not found: %s\n", dlerror ());
154 /* Test if that really made our stack executable.
155 The `tryme' function should crash if not. */
157 (*((void (*) (void)) f
)) ();
162 ret
= pthread_getattr_np (me
, &attr
);
165 printf ("after execstack: pthread_getattr_np returned error: %s\n",
170 ret
= pthread_attr_getstack (&attr
, &new_stack_addr
, &stack_size
);
173 printf ("after execstack: pthread_attr_getstack returned error: %s\n",
178 # if _STACK_GROWS_DOWN
179 new_stack_addr
+= stack_size
;
181 new_stack_addr
-= stack_size
;
184 /* It is possible that the dlopen'd module may have been mmapped just below
185 the stack. The stack size is taken as MIN(stack rlimit size, end of last
186 vma) in pthread_getattr_np. If rlimit is set high enough, it is possible
187 that the size may have changed. A subsequent call to
188 pthread_attr_getstack returns the size and (bottom - size) as the
189 stacksize and stackaddr respectively. If the size changes due to the
190 above, then both stacksize and stackaddr can change, but the stack bottom
191 should remain the same, which is computed as stackaddr + stacksize. */
192 if (old_stack_addr
!= new_stack_addr
)
194 printf ("Stack end changed, old: %p, new: %p\n",
195 old_stack_addr
, new_stack_addr
);
198 printf ("Stack address remains the same: %p\n", old_stack_addr
);
201 /* Test that growing the stack region gets new executable pages too. */
202 deeper ((void (*) (void)) f
);
207 /* Test that a fresh thread now gets an executable stack. */
210 int rc
= pthread_create (&th
, NULL
, &tryme_thread
, f
);
212 error (1, rc
, "pthread_create");
216 /* The existing threads' stacks should have been changed.
217 Let them run to test it. */
218 pthread_barrier_wait (&go_barrier
);
220 pthread_exit ((void *) (long int) (! allow_execstack
));
223 return ! allow_execstack
;
227 deeper (void (*f
) (void))
229 char stack
[1100 * 1024];
230 memfrob (stack
, sizeof stack
);
232 memfrob (stack
, sizeof stack
);
236 #define TEST_FUNCTION do_test ()
237 #include "../test-skeleton.c"