more sigsegvs when receiving a signal to soon
* optimization: Faster 32-bit SB-ROTATE-BYTE:ROTATE-BYTE on non-x86/ppc
platforms
+ * bug fix: add a workaround for the memory randomization features in
+ Linux kernels >= 2.6.12 that interfere with SBCL's memory maps. This
+ workaround will only be in effect on systems with the proc filesystem
+ mounted.
* threads
** bug fix: parent thread now can be gc'ed even with a live
child thread
#include "gencgc-internal.h"
#endif
+#ifdef LISP_FEATURE_LINUX
+#include <sys/personality.h>
+#endif
+
size_t os_vm_page_size;
#ifdef LISP_FEATURE_SB_THREAD
int linux_no_threads_p = 0;
void
-os_init(void)
+os_init(char *argv[], char *envp[])
{
/* Conduct various version checks: do we have enough mmap(), is
* this a sparc running 2.2, can we do threads? */
fprintf(stderr,"Linux with NPTL support (e.g. kernel 2.6 or newer) required for \nthread-enabled SBCL. Disabling thread support.\n\n");
#endif
os_vm_page_size = getpagesize();
+
+ /* KLUDGE: Disable memory randomization on new Linux kernels
+ * by setting a personality flag and re-executing. (We need
+ * to re-execute, since the memory maps that can conflict with
+ * the SBCL spaces have already been done at this point).
+ */
+#if defined(LISP_FEATURE_X86)
+ if ((major_version == 2 && minor_version >= 6)
+ || major_version >= 3)
+ {
+ long pers = personality(-1);
+ /* 0x40000 aka. ADDR_NO_RANDOMIZE */
+ if (!(pers & 0x40000)) {
+ if (personality(pers | 0x40000) != -1) {
+ char runtime[PATH_MAX+1];
+ /* Use /proc/self/exe instead of trying to figure out the
+ * executable path from PATH and argv[0], since that's
+ * unreliable.
+ */
+ if (readlink("/proc/self/exe", runtime, PATH_MAX) != -1) {
+ execve(runtime, argv, envp);
+ }
+ }
+ /* Either changing the personality or execve() failed. Either
+ * way we might as well continue, and hope that the random
+ * memory maps are ok this time around.
+ */
+ fprintf(stderr, "WARNING: Couldn't re-execute SBCL with the proper personality flags (maybe /proc isn't mounted?). Trying to continue anyway.\n");
+ }
+ }
+#endif
}