2 * OS-dependent routines for BSD-ish systems
4 * This file (along with os.h) exports an OS-independent interface to
5 * the operating system VM facilities. This interface looks a lot like
6 * the Mach interface (but simpler in some places). For some operating
7 * systems, a subset of these functions will have to be emulated.
11 * This software is part of the SBCL system. See the README file for
14 * This software is derived from the CMU CL system, which was
15 * written at Carnegie Mellon University and released into the
16 * public domain. The software is in the public domain and is
17 * provided with absolutely no warranty. See the COPYING and CREDITS
18 * files for more information.
22 #include <sys/param.h>
32 #include "interrupt.h"
37 #include "genesis/static-symbols.h"
38 #include "genesis/fdefn.h"
40 #include <sys/types.h>
42 /* #include <sys/sysinfo.h> */
44 #if defined LISP_FEATURE_GENCGC
45 #include "gencgc-internal.h"
48 os_vm_size_t os_vm_page_size
;
51 #include <sys/resource.h>
52 #include <sys/sysctl.h>
54 #include <sys/stat.h> /* For the stat-family wrappers. */
55 #include <dirent.h> /* For the opendir()/readdir() wrappers */
56 #include <sys/socket.h> /* For the socket() wrapper */
57 static void netbsd_init();
58 #endif /* __NetBSD__ */
61 #include <sys/sysctl.h>
62 #if defined(LISP_FEATURE_SB_THREAD) && !defined(LISP_FEATURE_SB_PTHREAD_FUTEX)
66 static void freebsd_init();
67 #endif /* __FreeBSD__ */
70 os_init(char *argv
[], char *envp
[])
72 os_vm_page_size
= getpagesize();
76 #elif defined(__FreeBSD__)
82 os_context_sigmask_addr(os_context_t
*context
)
84 /* (Unlike most of the other context fields that we access, the
85 * signal mask field is a field of the basic, outermost context
86 * struct itself both in FreeBSD 4.0 and in OpenBSD 2.6.) */
87 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(LISP_FEATURE_DARWIN)
88 return &context
->uc_sigmask
;
89 #elif defined (__OpenBSD__)
90 return &context
->sc_mask
;
92 #error unsupported BSD variant
97 os_validate(os_vm_address_t addr
, os_vm_size_t len
)
99 int flags
= MAP_PRIVATE
| MAP_ANON
;
104 addr
= mmap(addr
, len
, OS_VM_PROT_ALL
, flags
, -1, 0);
106 if (addr
== MAP_FAILED
) {
115 os_invalidate(os_vm_address_t addr
, os_vm_size_t len
)
117 if (munmap(addr
, len
) == -1)
122 os_map(int fd
, int offset
, os_vm_address_t addr
, os_vm_size_t len
)
124 addr
= mmap(addr
, len
,
126 MAP_PRIVATE
| MAP_FILE
| MAP_FIXED
,
129 if (addr
== MAP_FAILED
) {
131 lose("unexpected mmap(..) failure\n");
138 os_protect(os_vm_address_t address
, os_vm_size_t length
, os_vm_prot_t prot
)
140 if (mprotect(address
, length
, prot
) == -1) {
146 in_range_p(os_vm_address_t a
, lispobj sbeg
, size_t slen
)
148 char* beg
= (char*) sbeg
;
149 char* end
= (char*) sbeg
+ slen
;
150 char* adr
= (char*) a
;
151 return (adr
>= beg
&& adr
< end
);
155 is_valid_lisp_addr(os_vm_address_t addr
)
159 if (in_range_p(addr
, READ_ONLY_SPACE_START
, READ_ONLY_SPACE_SIZE
) ||
160 in_range_p(addr
, STATIC_SPACE_START
, STATIC_SPACE_SIZE
) ||
161 in_range_p(addr
, DYNAMIC_SPACE_START
, dynamic_space_size
))
163 for_each_thread(th
) {
164 if (((os_vm_address_t
)th
->control_stack_start
<= addr
) &&
165 (addr
< (os_vm_address_t
)th
->control_stack_end
))
167 if (in_range_p(addr
, (lispobj
) th
->binding_stack_start
,
175 * any OS-dependent special low-level handling for signals
178 #if defined LISP_FEATURE_GENCGC
181 * The GENCGC needs to be hooked into whatever signal is raised for
182 * page fault on this OS.
186 memory_fault_handler(int signal
, siginfo_t
*siginfo
, void *void_context
187 #if defined(LISP_FEATURE_FREEBSD) && defined(LISP_FEATURE_X86_64)
188 /* FreeBSD/amd64 stores fault address only in undocumented 4th arg. */
193 os_context_t
*context
= arch_os_get_context(&void_context
);
194 #if defined(LISP_FEATURE_FREEBSD) && defined(LISP_FEATURE_X86_64)
195 /* KLUDGE: Store fault address into si_addr for compatibilities. */
196 siginfo
->si_addr
= fault_addr
;
198 void *fault_addr
= arch_get_bad_addr(signal
, siginfo
, context
);
201 #if defined(LISP_FEATURE_RESTORE_TLS_SEGMENT_REGISTER_FROM_CONTEXT)
202 FSHOW_SIGNAL((stderr
, "/ TLS: restoring fs: %p in memory_fault_handler\n",
203 *CONTEXT_ADDR_FROM_STEM(fs
)));
204 os_restore_tls_segment_register(context
);
207 FSHOW((stderr
, "Memory fault at: %p, PC: %p\n", fault_addr
, *os_context_pc_addr(context
)));
209 if (!gencgc_handle_wp_violation(fault_addr
))
210 if(!handle_guard_page_triggered(context
,fault_addr
)) {
211 #ifdef LISP_FEATURE_C_STACK_IS_CONTROL_STACK
212 lisp_memory_fault_error(context
, fault_addr
);
214 if (!maybe_gc(context
)) {
215 interrupt_handle_now(signal
, siginfo
, context
);
217 #if defined(LISP_FEATURE_DARWIN)
218 /* Work around G5 bug; fix courtesy gbyers */
219 DARWIN_FIX_CONTEXT(context
);
225 #if defined(LISP_FEATURE_MACH_EXCEPTION_HANDLER)
227 mach_error_memory_fault_handler(int signal
, siginfo_t
*siginfo
, void *void_context
) {
228 lose("Unhandled memory fault. Exiting.");
233 os_install_interrupt_handlers(void)
235 SHOW("os_install_interrupt_handlers()/bsd-os/defined(GENCGC)");
236 #if defined(LISP_FEATURE_MACH_EXCEPTION_HANDLER)
237 undoably_install_low_level_interrupt_handler(SIG_MEMORY_FAULT
,
238 mach_error_memory_fault_handler
);
240 undoably_install_low_level_interrupt_handler(SIG_MEMORY_FAULT
,
241 #ifdef LISP_FEATURE_FREEBSD
242 (__siginfohandler_t
*)
244 memory_fault_handler
);
247 #ifdef LISP_FEATURE_SB_THREAD
248 undoably_install_low_level_interrupt_handler(SIG_INTERRUPT_THREAD
,
249 interrupt_thread_handler
);
250 undoably_install_low_level_interrupt_handler(SIG_STOP_FOR_GC
,
251 sig_stop_for_gc_handler
);
252 #ifdef SIG_RESUME_FROM_GC
253 undoably_install_low_level_interrupt_handler(SIG_RESUME_FROM_GC
,
254 sig_stop_for_gc_handler
);
257 SHOW("leaving os_install_interrupt_handlers()");
260 #else /* Currently PPC/Darwin/Cheney only */
263 sigsegv_handler(int signal
, siginfo_t
*info
, void* void_context
)
265 os_context_t
*context
= arch_os_get_context(&void_context
);
267 unsigned int pc
= (unsigned int *)(*os_context_pc_addr(context
));
269 os_vm_address_t addr
;
271 addr
= arch_get_bad_addr(signal
, info
, context
);
272 if (!cheneygc_handle_wp_violation(context
, addr
))
273 if (!handle_guard_page_triggered(context
, addr
))
274 interrupt_handle_now(signal
, info
, context
);
275 /* Work around G5 bug; fix courtesy gbyers */
276 DARWIN_FIX_CONTEXT(context
);
280 os_install_interrupt_handlers(void)
282 SHOW("os_install_interrupt_handlers()/bsd-os/!defined(GENCGC)");
283 undoably_install_low_level_interrupt_handler(SIG_MEMORY_FAULT
,
287 #endif /* defined GENCGC */
290 static void netbsd_init()
296 /* Are we running on a sufficiently functional kernel? */
301 sysctl(mib
, 2, &osrev
, &len
, NULL
, 0);
303 /* If we're older than 2.0... */
304 if (osrev
< 200000000) {
305 fprintf(stderr
, "osrev = %d (needed at least 200000000).\n", osrev
);
306 lose("NetBSD kernel too old to run sbcl.\n");
309 /* NetBSD counts mmap()ed space against the process's data size limit,
310 * so yank it up. This might be a nasty thing to do? */
311 getrlimit (RLIMIT_DATA
, &rl
);
312 /* Amazingly for such a new port, the provenance and meaning of
313 this number are unknown. It might just mean REALLY_BIG_LIMIT,
314 or possibly it should be calculated from dynamic space size.
315 -- CSR, 2004-04-08 */
316 rl
.rlim_cur
= 1073741824;
317 if (setrlimit (RLIMIT_DATA
, &rl
) < 0) {
319 "RUNTIME WARNING: unable to raise process data size limit:\n\
321 The system may fail to start.\n",
326 /* Various routines in NetBSD's C library are compatibility wrappers
327 for old versions. Programs must be processed by the C toolchain in
328 order to get up-to-date definitions of such routines. */
329 /* The stat-family, opendir, and readdir are used only in sb-posix, as
330 of 2007-01-16. -- RMK */
332 _stat(const char *path
, struct stat
*sb
)
334 return stat(path
, sb
);
337 _lstat(const char *path
, struct stat
*sb
)
339 return lstat(path
, sb
);
342 _fstat(int fd
, struct stat
*sb
)
344 return fstat(fd
, sb
);
348 _opendir(const char *filename
)
350 return opendir(filename
);
355 return readdir(dirp
);
358 /* Used in sb-bsd-sockets. */
360 _socket(int domain
, int type
, int protocol
)
362 return socket(domain
, type
, protocol
);
364 #endif /* __NetBSD__ */
367 extern int getosreldate(void);
369 int sig_memory_fault
;
371 static void freebsd_init()
373 /* Memory fault signal on FreeBSD was changed from SIGBUS to
375 if (getosreldate() < 700004)
376 sig_memory_fault
= SIGBUS
;
378 sig_memory_fault
= SIGSEGV
;
380 /* Quote from sbcl-devel (NIIMI Satoshi): "Some OSes, like FreeBSD
381 * 4.x with GENERIC kernel, does not enable SSE support even on
382 * SSE capable CPUs". Detect this situation and skip the
383 * fast_bzero sse/base selection logic that's normally done in
386 #ifdef LISP_FEATURE_X86
390 len
= sizeof(instruction_sse
);
391 if (sysctlbyname("hw.instruction_sse", &instruction_sse
, &len
, NULL
, 0) == 0
392 && instruction_sse
!= 0) {
393 /* Use the SSE detector */
394 fast_bzero_pointer
= fast_bzero_detect
;
396 #endif /* LISP_FEATURE_X86 */
399 #if defined(LISP_FEATURE_SB_THREAD) && !defined(LISP_FEATURE_SB_PTHREAD_FUTEX)
401 futex_wait(int *lock_word
, long oldval
, long sec
, unsigned long usec
)
403 struct timespec timeout
;
408 ret
= umtx_wait((void *)lock_word
, oldval
, NULL
);
410 timeout
.tv_sec
= sec
;
411 timeout
.tv_nsec
= usec
* 1000;
412 ret
= umtx_wait((void *)lock_word
, oldval
, &timeout
);
421 /* spurious wakeup from interrupt */
424 /* EWOULDBLOCK and others, need to check the lock */
430 futex_wake(int *lock_word
, int n
)
432 return umtx_wake((void *)lock_word
, n
);
435 #endif /* __FreeBSD__ */
437 #ifdef LISP_FEATURE_DARWIN
438 /* defined in ppc-darwin-os.c instead */
439 #elif defined(LISP_FEATURE_FREEBSD)
440 #ifndef KERN_PROC_PATHNAME
441 #define KERN_PROC_PATHNAME 12
445 os_get_runtime_executable_path()
447 char path
[PATH_MAX
+ 1];
449 if (getosreldate() >= 600024) {
450 /* KERN_PROC_PATHNAME is available */
451 size_t len
= PATH_MAX
+ 1;
456 mib
[2] = KERN_PROC_PATHNAME
;
458 if (sysctl(mib
, 4, &path
, &len
, NULL
, 0) != 0)
462 size
= readlink("/proc/curproc/file", path
, sizeof(path
) - 1);
467 if (strcmp(path
, "unknown") == 0)
469 return copied_string(path
);
471 #elif defined(LISP_FEATURE_NETBSD)
473 os_get_runtime_executable_path()
476 char *path
= strdup("/proc/curproc/file");
477 if (path
&& ((stat(path
, &sb
)) == 0))
480 fprintf(stderr
, "Couldn't stat /proc/curproc/file; is /proc mounted?\n");
484 #else /* Not DARWIN or FREEBSD or NETBSD */
486 os_get_runtime_executable_path()