6 * This software is part of the SBCL system. See the README file for
9 * This software is derived from the CMU CL system, which was
10 * written at Carnegie Mellon University and released into the
11 * public domain. The software is in the public domain and is
12 * provided with absolutely no warranty. See the COPYING and CREDITS
13 * files for more information.
25 #include "interr.h" /* for declaration of lose */
29 ensure_space(lispobj *start, unsigned long size)
31 if (os_validate((os_vm_address_t)start,(os_vm_size_t)size)==NULL) {
33 "ensure_space: failed to validate %ld bytes at 0x%08lx\n",
35 (unsigned long)start);
37 "(hint: Try \"ulimit -a\"; maybe you should increase memory limits.)\n");
42 os_vm_address_t undefined_alien_address = 0;
45 ensure_undefined_alien(void) {
46 os_vm_address_t start = os_validate(NULL, os_vm_page_size);
48 os_protect(start, os_vm_page_size, OS_VM_PROT_NONE);
49 undefined_alien_address = start;
51 lose("could not allocate guard page for undefined alien\n");
59 printf("validating memory ...");
63 ensure_space( (lispobj *)READ_ONLY_SPACE_START, READ_ONLY_SPACE_SIZE);
64 ensure_space( (lispobj *)STATIC_SPACE_START , STATIC_SPACE_SIZE);
65 #ifdef LISP_FEATURE_GENCGC
66 ensure_space( (lispobj *)DYNAMIC_SPACE_START , dynamic_space_size);
68 ensure_space( (lispobj *)DYNAMIC_0_SPACE_START, dynamic_space_size);
69 ensure_space( (lispobj *)DYNAMIC_1_SPACE_START, dynamic_space_size);
72 #ifdef LISP_FEATURE_LINKAGE_TABLE
73 ensure_space( (lispobj *)LINKAGE_TABLE_SPACE_START,
74 LINKAGE_TABLE_SPACE_SIZE);
77 #ifdef LISP_FEATURE_OS_PROVIDES_DLOPEN
78 ensure_undefined_alien();
87 protect_page(void *page, int protect_p, os_vm_prot_t flags) {
88 os_protect(page, os_vm_page_size, protect_p ?
89 flags : OS_VM_PROT_ALL);
92 #define DEF_PROTECT_PAGE(name,page_name,flags) \
94 protect_##name(int protect_p, struct thread *thread) { \
96 thread = arch_os_get_current_thread(); \
97 protect_page(page_name(thread), protect_p, flags); \
100 DEF_PROTECT_PAGE(control_stack_hard_guard_page,
101 CONTROL_STACK_HARD_GUARD_PAGE,
103 DEF_PROTECT_PAGE(control_stack_guard_page,
104 CONTROL_STACK_GUARD_PAGE,
105 OS_VM_PROT_READ|OS_VM_PROT_EXECUTE)
106 DEF_PROTECT_PAGE(control_stack_return_guard_page,
107 CONTROL_STACK_RETURN_GUARD_PAGE,
108 OS_VM_PROT_READ|OS_VM_PROT_EXECUTE)
110 DEF_PROTECT_PAGE(binding_stack_hard_guard_page,
111 BINDING_STACK_HARD_GUARD_PAGE,
113 DEF_PROTECT_PAGE(binding_stack_guard_page,
114 BINDING_STACK_GUARD_PAGE,
116 DEF_PROTECT_PAGE(binding_stack_return_guard_page,
117 BINDING_STACK_RETURN_GUARD_PAGE,
120 DEF_PROTECT_PAGE(alien_stack_hard_guard_page,
121 ALIEN_STACK_HARD_GUARD_PAGE,
123 DEF_PROTECT_PAGE(alien_stack_guard_page,
124 ALIEN_STACK_GUARD_PAGE,
126 DEF_PROTECT_PAGE(alien_stack_return_guard_page,
127 ALIEN_STACK_RETURN_GUARD_PAGE,