f1697200f9f7655728f229ad726dd97eb255dae7
[sbcl.git] / src / runtime / bsd-os.c
1 /*
2  * OS-dependent routines for BSD-ish systems
3  *
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.
8  */
9
10 /*
11  * This software is part of the SBCL system. See the README file for
12  * more information.
13  *
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.
19  */
20
21 #include <stdio.h>
22 #include <sys/param.h>
23 #include <sys/file.h>
24 #include <unistd.h>
25 #include <assert.h>
26 #include <errno.h>
27 #include "sbcl.h"
28 #include "./signal.h"
29 #include "os.h"
30 #include "arch.h"
31 #include "globals.h"
32 #include "interrupt.h"
33 #include "interr.h"
34 #include "lispregs.h"
35 #include "thread.h"
36 #include "runtime.h"
37 #include "genesis/static-symbols.h"
38 #include "genesis/fdefn.h"
39
40 #include <sys/types.h>
41 #include <signal.h>
42 /* #include <sys/sysinfo.h> */
43 #include "validate.h"
44 #if defined LISP_FEATURE_GENCGC
45 #include "gencgc-internal.h"
46 #endif
47 \f
48 os_vm_size_t os_vm_page_size;
49
50 #ifdef __NetBSD__
51 #include <sys/resource.h>
52 #include <sys/sysctl.h>
53 #include <string.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__ */
59
60 #ifdef __FreeBSD__
61 #include <sys/sysctl.h>
62 #if defined(LISP_FEATURE_SB_THREAD) && !defined(LISP_FEATURE_SB_PTHREAD_FUTEX)
63 #include <sys/umtx.h>
64 #endif
65
66 static void freebsd_init();
67 #endif /* __FreeBSD__ */
68
69 void
70 os_init(char *argv[], char *envp[])
71 {
72     os_vm_page_size = getpagesize();
73
74 #ifdef __NetBSD__
75     netbsd_init();
76 #elif defined(__FreeBSD__)
77     freebsd_init();
78 #endif
79 }
80
81 sigset_t *
82 os_context_sigmask_addr(os_context_t *context)
83 {
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;
91 #else
92 #error unsupported BSD variant
93 #endif
94 }
95
96 os_vm_address_t
97 os_validate(os_vm_address_t addr, os_vm_size_t len)
98 {
99     int flags = MAP_PRIVATE | MAP_ANON;
100
101     if (addr)
102         flags |= MAP_FIXED;
103
104     addr = mmap(addr, len, OS_VM_PROT_ALL, flags, -1, 0);
105
106     if (addr == MAP_FAILED) {
107         perror("mmap");
108         return NULL;
109     }
110
111     return addr;
112 }
113
114 void
115 os_invalidate(os_vm_address_t addr, os_vm_size_t len)
116 {
117     if (munmap(addr, len) == -1)
118         perror("munmap");
119 }
120
121 os_vm_address_t
122 os_map(int fd, int offset, os_vm_address_t addr, os_vm_size_t len)
123 {
124     addr = mmap(addr, len,
125                 OS_VM_PROT_ALL,
126                 MAP_PRIVATE | MAP_FILE | MAP_FIXED,
127                 fd, (off_t) offset);
128
129     if (addr == MAP_FAILED) {
130         perror("mmap");
131         lose("unexpected mmap(..) failure\n");
132     }
133
134     return addr;
135 }
136
137 void
138 os_protect(os_vm_address_t address, os_vm_size_t length, os_vm_prot_t prot)
139 {
140     if (mprotect(address, length, prot) == -1) {
141         perror("mprotect");
142     }
143 }
144 \f
145 static boolean
146 in_range_p(os_vm_address_t a, lispobj sbeg, size_t slen)
147 {
148     char* beg = (char*) sbeg;
149     char* end = (char*) sbeg + slen;
150     char* adr = (char*) a;
151     return (adr >= beg && adr < end);
152 }
153
154 boolean
155 is_valid_lisp_addr(os_vm_address_t addr)
156 {
157     struct thread *th;
158
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))
162         return 1;
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))
166             return 1;
167         if (in_range_p(addr, (lispobj) th->binding_stack_start,
168                        BINDING_STACK_SIZE))
169             return 1;
170     }
171     return 0;
172 }
173 \f
174 /*
175  * any OS-dependent special low-level handling for signals
176  */
177
178 #if defined LISP_FEATURE_GENCGC
179
180 /*
181  * The GENCGC needs to be hooked into whatever signal is raised for
182  * page fault on this OS.
183  */
184
185 void
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. */
189                      ,void *fault_addr
190 #endif
191     )
192 {
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;
197 #else
198     void *fault_addr = arch_get_bad_addr(signal, siginfo, context);
199 #endif
200
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);
205 #endif
206
207     FSHOW((stderr, "Memory fault at: %p, PC: %p\n", fault_addr, *os_context_pc_addr(context)));
208
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);
213 #else
214             if (!maybe_gc(context)) {
215                 interrupt_handle_now(signal, siginfo, context);
216             }
217 #endif
218         }
219 }
220
221 #if defined(LISP_FEATURE_MACH_EXCEPTION_HANDLER)
222 void
223 mach_error_memory_fault_handler(int signal, siginfo_t *siginfo, void *void_context) {
224     lose("Unhandled memory fault. Exiting.");
225 }
226 #endif
227
228 void
229 os_install_interrupt_handlers(void)
230 {
231     SHOW("os_install_interrupt_handlers()/bsd-os/defined(GENCGC)");
232 #if defined(LISP_FEATURE_MACH_EXCEPTION_HANDLER)
233     undoably_install_low_level_interrupt_handler(SIG_MEMORY_FAULT,
234                                                  mach_error_memory_fault_handler);
235 #else
236     undoably_install_low_level_interrupt_handler(SIG_MEMORY_FAULT,
237 #ifdef LISP_FEATURE_FREEBSD
238                                                  (__siginfohandler_t *)
239 #endif
240                                                  memory_fault_handler);
241 #endif
242
243 #ifdef LISP_FEATURE_SB_THREAD
244     undoably_install_low_level_interrupt_handler(SIG_INTERRUPT_THREAD,
245                                                  interrupt_thread_handler);
246     undoably_install_low_level_interrupt_handler(SIG_STOP_FOR_GC,
247                                                  sig_stop_for_gc_handler);
248 #ifdef SIG_RESUME_FROM_GC
249     undoably_install_low_level_interrupt_handler(SIG_RESUME_FROM_GC,
250                                                  sig_stop_for_gc_handler);
251 #endif
252 #endif
253     SHOW("leaving os_install_interrupt_handlers()");
254 }
255
256 #else /* Currently PPC/Darwin/Cheney only */
257
258 static void
259 sigsegv_handler(int signal, siginfo_t *info, void* void_context)
260 {
261     os_context_t *context = arch_os_get_context(&void_context);
262 #if 0
263     unsigned int pc =  (unsigned int *)(*os_context_pc_addr(context));
264 #endif
265     os_vm_address_t addr;
266
267     addr = arch_get_bad_addr(signal, info, context);
268     if (!cheneygc_handle_wp_violation(context, addr))
269         if (!handle_guard_page_triggered(context, addr))
270             interrupt_handle_now(signal, info, context);
271 }
272
273 void
274 os_install_interrupt_handlers(void)
275 {
276     SHOW("os_install_interrupt_handlers()/bsd-os/!defined(GENCGC)");
277     undoably_install_low_level_interrupt_handler(SIG_MEMORY_FAULT,
278                                                  sigsegv_handler);
279 }
280
281 #endif /* defined GENCGC */
282
283 #ifdef __NetBSD__
284 static void netbsd_init()
285 {
286     struct rlimit rl;
287     int mib[2], osrev;
288     size_t len;
289
290     /* Are we running on a sufficiently functional kernel? */
291     mib[0] = CTL_KERN;
292     mib[1] = KERN_OSREV;
293
294     len = sizeof(osrev);
295     sysctl(mib, 2, &osrev, &len, NULL, 0);
296
297     /* If we're older than 2.0... */
298     if (osrev < 200000000) {
299         fprintf(stderr, "osrev = %d (needed at least 200000000).\n", osrev);
300         lose("NetBSD kernel too old to run sbcl.\n");
301     }
302
303     /* NetBSD counts mmap()ed space against the process's data size limit,
304      * so yank it up. This might be a nasty thing to do? */
305     getrlimit (RLIMIT_DATA, &rl);
306     /* Amazingly for such a new port, the provenance and meaning of
307        this number are unknown.  It might just mean REALLY_BIG_LIMIT,
308        or possibly it should be calculated from dynamic space size.
309        -- CSR, 2004-04-08 */
310     rl.rlim_cur = 1073741824;
311     if (setrlimit (RLIMIT_DATA, &rl) < 0) {
312         fprintf (stderr,
313                  "RUNTIME WARNING: unable to raise process data size limit:\n\
314   %s.\n\
315 The system may fail to start.\n",
316                  strerror(errno));
317     }
318 }
319
320 /* Various routines in NetBSD's C library are compatibility wrappers
321    for old versions. Programs must be processed by the C toolchain in
322    order to get up-to-date definitions of such routines. */
323 /* The stat-family, opendir, and readdir are used only in sb-posix, as
324    of 2007-01-16. -- RMK */
325 int
326 _stat(const char *path, struct stat *sb)
327 {
328     return stat(path, sb);
329 }
330 int
331 _lstat(const char *path, struct stat *sb)
332 {
333     return lstat(path, sb);
334 }
335 int
336 _fstat(int fd, struct stat *sb)
337 {
338     return fstat(fd, sb);
339 }
340
341 DIR *
342 _opendir(const char *filename)
343 {
344     return opendir(filename);
345 }
346 struct dirent *
347 _readdir(DIR *dirp)
348 {
349     return readdir(dirp);
350 }
351
352 /* Used in sb-bsd-sockets. */
353 int
354 _socket(int domain, int type, int protocol)
355 {
356     return socket(domain, type, protocol);
357 }
358 #endif /* __NetBSD__ */
359
360 #ifdef __FreeBSD__
361 extern int getosreldate(void);
362
363 int sig_memory_fault;
364
365 static void freebsd_init()
366 {
367     /* Memory fault signal on FreeBSD was changed from SIGBUS to
368      * SIGSEGV. */
369     if (getosreldate() < 700004)
370         sig_memory_fault = SIGBUS;
371     else
372         sig_memory_fault = SIGSEGV;
373
374     /* Quote from sbcl-devel (NIIMI Satoshi): "Some OSes, like FreeBSD
375      * 4.x with GENERIC kernel, does not enable SSE support even on
376      * SSE capable CPUs". Detect this situation and skip the
377      * fast_bzero sse/base selection logic that's normally done in
378      * x86-assem.S.
379      */
380 #ifdef LISP_FEATURE_X86
381     {
382         size_t len;
383         int instruction_sse;
384
385         len = sizeof(instruction_sse);
386         if (sysctlbyname("hw.instruction_sse", &instruction_sse, &len,
387                          NULL, 0) == 0 && instruction_sse != 0) {
388             /* Use the SSE detector */
389             fast_bzero_pointer = fast_bzero_detect;
390         }
391     }
392 #endif /* LISP_FEATURE_X86 */
393 }
394
395 #if defined(LISP_FEATURE_SB_THREAD) && !defined(LISP_FEATURE_SB_PTHREAD_FUTEX)
396 int
397 futex_wait(int *lock_word, long oldval, long sec, unsigned long usec)
398 {
399     struct timespec timeout;
400     int ret;
401
402 again:
403     if (sec < 0)
404         ret = umtx_wait((void *)lock_word, oldval, NULL);
405     else {
406         timeout.tv_sec = sec;
407         timeout.tv_nsec = usec * 1000;
408         ret = umtx_wait((void *)lock_word, oldval, &timeout);
409     }
410
411     switch (ret) {
412     case 0:
413         return 0;
414     case ETIMEDOUT:
415         return 1;
416     case EINTR:
417         /* spurious wakeup from interrupt */
418         goto again;
419     default:
420         /* EWOULDBLOCK and others, need to check the lock */
421         return -1;
422     }
423 }
424
425 int
426 futex_wake(int *lock_word, int n)
427 {
428     return umtx_wake((void *)lock_word, n);
429 }
430 #endif
431 #endif /* __FreeBSD__ */
432
433 #ifdef LISP_FEATURE_DARWIN
434 /* defined in ppc-darwin-os.c instead */
435 #elif defined(LISP_FEATURE_FREEBSD)
436 #ifndef KERN_PROC_PATHNAME
437 #define KERN_PROC_PATHNAME 12
438 #endif
439
440 char *
441 os_get_runtime_executable_path()
442 {
443     char path[PATH_MAX + 1];
444
445     if (getosreldate() >= 600024) {
446         /* KERN_PROC_PATHNAME is available */
447         size_t len = PATH_MAX + 1;
448         int mib[4];
449
450         mib[0] = CTL_KERN;
451         mib[1] = KERN_PROC;
452         mib[2] = KERN_PROC_PATHNAME;
453         mib[3] = -1;
454         if (sysctl(mib, 4, &path, &len, NULL, 0) != 0)
455             return NULL;
456     } else {
457         int size;
458         size = readlink("/proc/curproc/file", path, sizeof(path) - 1);
459         if (size < 0)
460             return NULL;
461         path[size] = '\0';
462     }
463     if (strcmp(path, "unknown") == 0)
464         return NULL;
465     return copied_string(path);
466 }
467 #elif defined(LISP_FEATURE_NETBSD)
468 char *
469 os_get_runtime_executable_path()
470 {
471     struct stat sb;
472     char *path = strdup("/proc/curproc/file");
473     if (path && ((stat(path, &sb)) == 0))
474         return path;
475     else {
476         fprintf(stderr, "Couldn't stat /proc/curproc/file; is /proc mounted?\n");
477         return NULL;
478     }
479 }
480 #else /* Not DARWIN or FREEBSD or NETBSD */
481 char *
482 os_get_runtime_executable_path()
483 {
484     return NULL;
485 }
486 #endif