2.9
[glibc/nacl-glibc.git] / elf / tst-execstack.c
bloba835e4c0d6f788b297e4eb5f353c4d06e0a62a78
1 /* Test program for making nonexecutable stacks executable
2 on load of a DSO that requires executable stacks. */
4 #include <dlfcn.h>
5 #include <stdbool.h>
6 #include <stdio.h>
7 #include <string.h>
8 #include <unistd.h>
9 #include <error.h>
11 static void
12 print_maps (void)
14 #if 0
15 char *cmd = NULL;
16 asprintf (&cmd, "cat /proc/%d/maps", getpid ());
17 system (cmd);
18 free (cmd);
19 #endif
22 static void deeper (void (*f) (void));
24 #if USE_PTHREADS
25 # include <pthread.h>
27 static void *
28 tryme_thread (void *f)
30 (*((void (*) (void)) f)) ();
32 return 0;
35 static pthread_barrier_t startup_barrier, go_barrier;
36 static void *
37 waiter_thread (void *arg)
39 void **f = arg;
40 pthread_barrier_wait (&startup_barrier);
41 pthread_barrier_wait (&go_barrier);
43 (*((void (*) (void)) *f)) ();
45 return 0;
47 #endif
50 static bool allow_execstack = true;
53 static int
54 do_test (void)
56 /* Check whether SELinux is enabled and disallows executable stacks. */
57 FILE *fp = fopen ("/selinux/enforce", "r");
58 if (fp != NULL)
60 char *line = NULL;
61 size_t linelen = 0;
63 bool enabled = false;
64 ssize_t n = getline (&line, &linelen, fp);
65 if (n > 0 && line[0] != '0')
66 enabled = true;
68 fclose (fp);
70 if (enabled)
72 fp = fopen ("/selinux/booleans/allow_execstack", "r");
73 if (fp != NULL)
75 n = getline (&line, &linelen, fp);
76 if (n > 0 && line[0] == '0')
77 allow_execstack = false;
80 fclose (fp);
84 printf ("executable stacks %sallowed\n", allow_execstack ? "" : "not ");
86 static void *f; /* Address of this is used in other threads. */
88 #if USE_PTHREADS
89 /* Create some threads while stacks are nonexecutable. */
90 #define N 5
91 pthread_t thr[N];
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);
99 if (rc)
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");
106 #endif
108 print_maps ();
110 /* Loading this module should force stacks to become executable. */
111 void *h = dlopen ("tst-execstack-mod.so", RTLD_LAZY);
112 if (h == NULL)
114 printf ("cannot load: %s\n", dlerror ());
115 return allow_execstack;
118 f = dlsym (h, "tryme");
119 if (f == NULL)
121 printf ("symbol not found: %s\n", dlerror ());
122 return 1;
125 /* Test if that really made our stack executable.
126 The `tryme' function should crash if not. */
128 (*((void (*) (void)) f)) ();
130 print_maps ();
132 /* Test that growing the stack region gets new executable pages too. */
133 deeper ((void (*) (void)) f);
135 print_maps ();
137 #if USE_PTHREADS
138 /* Test that a fresh thread now gets an executable stack. */
140 pthread_t th;
141 int rc = pthread_create (&th, NULL, &tryme_thread, f);
142 if (rc)
143 error (1, rc, "pthread_create");
146 puts ("threads go");
147 /* The existing threads' stacks should have been changed.
148 Let them run to test it. */
149 pthread_barrier_wait (&go_barrier);
151 pthread_exit (! allow_execstack);
152 #endif
154 return ! allow_execstack;
157 static void
158 deeper (void (*f) (void))
160 char stack[1100 * 1024];
161 memfrob (stack, sizeof stack);
162 (*f) ();
163 memfrob (stack, sizeof stack);
167 #define TEST_FUNCTION do_test ()
168 #include "../test-skeleton.c"