1 /* Implement __enable_execute_stack using mprotect(2).
2 Copyright (C) 2011 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
29 #define STACK_PROT_RWX (PROT_READ | PROT_WRITE | PROT_EXEC)
31 static int need_enable_exec_stack
;
33 static void check_enabling (void) __attribute__ ((unused
));
34 extern void __enable_execute_stack (void *);
36 #if defined __FreeBSD__
37 #include <sys/sysctl.h>
39 static void __attribute__ ((constructor
))
43 size_t len
= sizeof (prot
);
45 sysctlbyname ("kern.stackprot", &prot
, &len
, NULL
, 0);
46 if (prot
!= STACK_PROT_RWX
)
47 need_enable_exec_stack
= 1;
49 #elif defined __sun__ && defined __svr4__
50 static void __attribute__ ((constructor
))
53 int prot
= (int) sysconf (_SC_STACK_PROT
);
55 if (prot
!= STACK_PROT_RWX
)
56 need_enable_exec_stack
= 1;
59 /* There is no way to query the execute permission of the stack, so
60 we always issue the mprotect() call. */
62 static int need_enable_exec_stack
= 1;
65 #if defined __NetBSD__
66 /* Note that we go out of our way to use namespace-non-invasive calls
67 here. Unfortunately, there is no libc-internal name for mprotect(). */
69 #include <sys/sysctl.h>
71 extern int __sysctl (int *, unsigned int, void *, size_t *, void *, size_t);
86 (void) __sysctl (mib
, 2, &size
, &len
, NULL
, 0);
90 #endif /* __NetBSD__ */
92 /* Attempt to turn on access permissions for the stack. Unfortunately it
93 is not possible to make this namespace-clean.*/
96 __enable_execute_stack (void *addr
)
98 if (!need_enable_exec_stack
)
102 static long size
, mask
;
105 size
= getpagesize ();
109 char *page
= (char *) (((long) addr
) & mask
);
111 ((((long) (addr
+ __LIBGCC_TRAMPOLINE_SIZE__
)) & mask
) + size
);
113 if (mprotect (page
, end
- page
, STACK_PROT_RWX
) < 0)
114 /* Note that no errors should be emitted by this code; it is
115 considered dangerous for library calls to send messages to