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 #include <sys/types.h>
71 #include <sys/resource.h>
75 static void openbsd_init();
79 os_init(char *argv[], char *envp[])
81 os_vm_page_size = getpagesize();
85 #elif defined(__FreeBSD__)
87 #elif defined(__OpenBSD__)
93 os_context_sigmask_addr(os_context_t *context)
95 /* (Unlike most of the other context fields that we access, the
96 * signal mask field is a field of the basic, outermost context
97 * struct itself both in FreeBSD 4.0 and in OpenBSD 2.6.) */
98 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(LISP_FEATURE_DARWIN)
99 return &context->uc_sigmask;
100 #elif defined (__OpenBSD__)
101 return &context->sc_mask;
103 #error unsupported BSD variant
108 os_validate(os_vm_address_t addr, os_vm_size_t len)
110 int flags = MAP_PRIVATE | MAP_ANON;
115 addr = mmap(addr, len, OS_VM_PROT_ALL, flags, -1, 0);
117 if (addr == MAP_FAILED) {
126 os_invalidate(os_vm_address_t addr, os_vm_size_t len)
128 if (munmap(addr, len) == -1)
133 os_map(int fd, int offset, os_vm_address_t addr, os_vm_size_t len)
135 addr = mmap(addr, len,
137 MAP_PRIVATE | MAP_FILE | MAP_FIXED,
140 if (addr == MAP_FAILED) {
142 lose("unexpected mmap(..) failure\n");
149 os_protect(os_vm_address_t address, os_vm_size_t length, os_vm_prot_t prot)
151 if (mprotect(address, length, prot) == -1) {
157 in_range_p(os_vm_address_t a, lispobj sbeg, size_t slen)
159 char* beg = (char*) sbeg;
160 char* end = (char*) sbeg + slen;
161 char* adr = (char*) a;
162 return (adr >= beg && adr < end);
166 is_valid_lisp_addr(os_vm_address_t addr)
170 if (in_range_p(addr, READ_ONLY_SPACE_START, READ_ONLY_SPACE_SIZE) ||
171 in_range_p(addr, STATIC_SPACE_START, STATIC_SPACE_SIZE) ||
172 in_range_p(addr, DYNAMIC_SPACE_START, dynamic_space_size))
174 for_each_thread(th) {
175 if (((os_vm_address_t)th->control_stack_start <= addr) &&
176 (addr < (os_vm_address_t)th->control_stack_end))
178 if (in_range_p(addr, (lispobj) th->binding_stack_start,
186 * any OS-dependent special low-level handling for signals
189 #if defined LISP_FEATURE_GENCGC
192 * The GENCGC needs to be hooked into whatever signal is raised for
193 * page fault on this OS.
197 memory_fault_handler(int signal, siginfo_t *siginfo, os_context_t *context
198 #if defined(LISP_FEATURE_FREEBSD) && defined(LISP_FEATURE_X86_64)
199 /* FreeBSD/amd64 stores fault address only in undocumented 4th arg. */
204 #if defined(LISP_FEATURE_FREEBSD) && defined(LISP_FEATURE_X86_64)
205 /* KLUDGE: Store fault address into si_addr for compatibilities. */
206 siginfo->si_addr = fault_addr;
208 void *fault_addr = arch_get_bad_addr(signal, siginfo, context);
211 #if defined(LISP_FEATURE_RESTORE_TLS_SEGMENT_REGISTER_FROM_CONTEXT)
212 FSHOW_SIGNAL((stderr, "/ TLS: restoring fs: %p in memory_fault_handler\n",
213 *CONTEXT_ADDR_FROM_STEM(fs)));
214 os_restore_tls_segment_register(context);
217 FSHOW((stderr, "Memory fault at: %p, PC: %p\n", fault_addr, *os_context_pc_addr(context)));
219 if (!gencgc_handle_wp_violation(fault_addr))
220 if(!handle_guard_page_triggered(context,fault_addr))
221 lisp_memory_fault_error(context, fault_addr);
224 #if defined(LISP_FEATURE_MACH_EXCEPTION_HANDLER)
226 mach_error_memory_fault_handler(int signal, siginfo_t *siginfo,
227 os_context_t *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_STOP_FOR_GC,
249 sig_stop_for_gc_handler);
251 SHOW("leaving os_install_interrupt_handlers()");
254 #else /* Currently PPC/Darwin/Cheney only */
257 sigsegv_handler(int signal, siginfo_t *info, os_context_t *context)
260 unsigned int pc = (unsigned int *)(*os_context_pc_addr(context));
262 os_vm_address_t addr;
264 addr = arch_get_bad_addr(signal, info, context);
265 if (!cheneygc_handle_wp_violation(context, addr))
266 if (!handle_guard_page_triggered(context, addr))
267 interrupt_handle_now(signal, info, context);
271 os_install_interrupt_handlers(void)
273 SHOW("os_install_interrupt_handlers()/bsd-os/!defined(GENCGC)");
274 undoably_install_low_level_interrupt_handler(SIG_MEMORY_FAULT,
278 #endif /* defined GENCGC */
281 static void netbsd_init()
287 /* Are we running on a sufficiently functional kernel? */
292 sysctl(mib, 2, &osrev, &len, NULL, 0);
294 /* If we're older than 2.0... */
295 if (osrev < 200000000) {
296 fprintf(stderr, "osrev = %d (needed at least 200000000).\n", osrev);
297 lose("NetBSD kernel too old to run sbcl.\n");
300 /* NetBSD counts mmap()ed space against the process's data size limit,
301 * so yank it up. This might be a nasty thing to do? */
302 getrlimit (RLIMIT_DATA, &rl);
303 /* Amazingly for such a new port, the provenance and meaning of
304 this number are unknown. It might just mean REALLY_BIG_LIMIT,
305 or possibly it should be calculated from dynamic space size.
306 -- CSR, 2004-04-08 */
307 rl.rlim_cur = 1073741824;
308 if (setrlimit (RLIMIT_DATA, &rl) < 0) {
310 "RUNTIME WARNING: unable to raise process data size limit:\n\
312 The system may fail to start.\n",
317 /* Various routines in NetBSD's C library are compatibility wrappers
318 for old versions. Programs must be processed by the C toolchain in
319 order to get up-to-date definitions of such routines. */
320 /* The stat-family, opendir, and readdir are used only in sb-posix, as
321 of 2007-01-16. -- RMK */
323 _stat(const char *path, struct stat *sb)
325 return stat(path, sb);
328 _lstat(const char *path, struct stat *sb)
330 return lstat(path, sb);
333 _fstat(int fd, struct stat *sb)
335 return fstat(fd, sb);
339 _opendir(const char *filename)
341 return opendir(filename);
346 return readdir(dirp);
349 /* Used in sb-bsd-sockets. */
351 _socket(int domain, int type, int protocol)
353 return socket(domain, type, protocol);
355 #endif /* __NetBSD__ */
358 extern int getosreldate(void);
360 int sig_memory_fault;
362 static void freebsd_init()
364 /* Memory fault signal on FreeBSD was changed from SIGBUS to
366 if (getosreldate() < 700004)
367 sig_memory_fault = SIGBUS;
369 sig_memory_fault = SIGSEGV;
371 /* Quote from sbcl-devel (NIIMI Satoshi): "Some OSes, like FreeBSD
372 * 4.x with GENERIC kernel, does not enable SSE support even on
373 * SSE capable CPUs". Detect this situation and skip the
374 * fast_bzero sse/base selection logic that's normally done in
377 #ifdef LISP_FEATURE_X86
382 len = sizeof(instruction_sse);
383 if (sysctlbyname("hw.instruction_sse", &instruction_sse, &len,
384 NULL, 0) == 0 && instruction_sse != 0) {
385 /* Use the SSE detector */
386 fast_bzero_pointer = fast_bzero_detect;
389 #endif /* LISP_FEATURE_X86 */
392 #if defined(LISP_FEATURE_SB_THREAD) && !defined(LISP_FEATURE_SB_PTHREAD_FUTEX)
394 futex_wait(int *lock_word, long oldval, long sec, unsigned long usec)
396 struct timespec timeout;
400 ret = umtx_wait((void *)lock_word, oldval, NULL);
402 timeout.tv_sec = sec;
403 timeout.tv_nsec = usec * 1000;
404 ret = umtx_wait((void *)lock_word, oldval, &timeout);
415 /* EWOULDBLOCK and others, need to check the lock */
421 futex_wake(int *lock_word, int n)
423 return umtx_wake((void *)lock_word, n);
426 #endif /* __FreeBSD__ */
428 #ifdef LISP_FEATURE_DARWIN
429 /* defined in ppc-darwin-os.c instead */
430 #elif defined(LISP_FEATURE_FREEBSD)
431 #ifndef KERN_PROC_PATHNAME
432 #define KERN_PROC_PATHNAME 12
436 os_get_runtime_executable_path()
438 char path[PATH_MAX + 1];
440 if (getosreldate() >= 600024) {
441 /* KERN_PROC_PATHNAME is available */
442 size_t len = PATH_MAX + 1;
447 mib[2] = KERN_PROC_PATHNAME;
449 if (sysctl(mib, 4, &path, &len, NULL, 0) != 0)
453 size = readlink("/proc/curproc/file", path, sizeof(path) - 1);
458 if (strcmp(path, "unknown") == 0)
460 return copied_string(path);
462 #elif defined(LISP_FEATURE_NETBSD) || defined(LISP_FEATURE_OPENBSD)
464 os_get_runtime_executable_path()
467 char *path = strdup("/proc/curproc/file");
468 if (path && ((stat(path, &sb)) == 0))
471 fprintf(stderr, "Couldn't stat /proc/curproc/file; is /proc mounted?\n");
475 #else /* Not DARWIN or FREEBSD or NETBSD or OPENBSD */
477 os_get_runtime_executable_path()
489 /* OpenBSD, like NetBSD, counts mmap()ed space against the
490 * process's data size limit. If the soft limit is lower than the
491 * hard limit then try to yank it up, this lets users in the
492 * "staff" login class run sbcl with a default /etc/login.conf
494 getrlimit (RLIMIT_DATA, &rl);
495 if (rl.rlim_cur < rl.rlim_max) {
496 rl.rlim_cur = rl.rlim_max;
497 if (setrlimit (RLIMIT_DATA, &rl) < 0) {
499 "RUNTIME WARNING: unable to raise process data size limit:\n\
501 The system may fail to start.\n",
506 /* Display a (hopefully) helpful warning if it looks like we won't
507 * be able to allocate enough memory. In testing I found that on
508 * my system at least, a minimum of 25M on top of the three space
509 * sizes was needed to start SBCL. Show a warning below 32M so as
510 * to leave a little breathing room.
512 getrlimit (RLIMIT_DATA, &rl);
513 if (dynamic_space_size + READ_ONLY_SPACE_SIZE + STATIC_SPACE_SIZE +
514 LINKAGE_TABLE_SPACE_SIZE + (32*1024*1024) > rl.rlim_cur)
516 "RUNTIME WARNING: data size resource limit may be too low,\n"
517 " try decreasing the dynamic space size with --dynamic-space-size\n");
520 /* OpenBSD's dlsym() relies on the gcc bulitin
521 * __builtin_return_address(0) returning an address in the
522 * executable's text segment, but when called from lisp it will return
523 * an address in the dynamic space. Work around this by calling this
524 * wrapper function instead. Note that tail-call optimization will
525 * defeat this, disable it by saving the dlsym() return value in a
529 os_dlsym(void *handle, const char *symbol)
531 void * volatile ret = dlsym(handle, symbol);