2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
[mono/afaerber.git] / libgc / os_dep.c
blob83b166c44a9c9d8e8f18bf3c3bdad194f9094263
1 /*
2 * Copyright 1988, 1989 Hans-J. Boehm, Alan J. Demers
3 * Copyright (c) 1991-1995 by Xerox Corporation. All rights reserved.
4 * Copyright (c) 1996-1999 by Silicon Graphics. All rights reserved.
5 * Copyright (c) 1999 by Hewlett-Packard Company. All rights reserved.
7 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
8 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
10 * Permission is hereby granted to use or copy this program
11 * for any purpose, provided the above notices are retained on all copies.
12 * Permission to modify the code and to distribute modified code is granted,
13 * provided the above notices are retained, and a notice that the code was
14 * modified is included with the above copyright notice.
17 # include "private/gc_priv.h"
19 # if defined(LINUX) && !defined(POWERPC)
20 # include <linux/version.h>
21 # if (LINUX_VERSION_CODE <= 0x10400)
22 /* Ugly hack to get struct sigcontext_struct definition. Required */
23 /* for some early 1.3.X releases. Will hopefully go away soon. */
24 /* in some later Linux releases, asm/sigcontext.h may have to */
25 /* be included instead. */
26 # define __KERNEL__
27 # include <asm/signal.h>
28 # undef __KERNEL__
29 # else
30 /* Kernels prior to 2.1.1 defined struct sigcontext_struct instead of */
31 /* struct sigcontext. libc6 (glibc2) uses "struct sigcontext" in */
32 /* prototypes, so we have to include the top-level sigcontext.h to */
33 /* make sure the former gets defined to be the latter if appropriate. */
34 # include <features.h>
35 # if 2 <= __GLIBC__
36 # if 2 == __GLIBC__ && 0 == __GLIBC_MINOR__
37 /* glibc 2.1 no longer has sigcontext.h. But signal.h */
38 /* has the right declaration for glibc 2.1. */
39 # include <sigcontext.h>
40 # endif /* 0 == __GLIBC_MINOR__ */
41 # else /* not 2 <= __GLIBC__ */
42 /* libc5 doesn't have <sigcontext.h>: go directly with the kernel */
43 /* one. Check LINUX_VERSION_CODE to see which we should reference. */
44 # include <asm/sigcontext.h>
45 # endif /* 2 <= __GLIBC__ */
46 # endif
47 # endif
48 # if !defined(OS2) && !defined(PCR) && !defined(AMIGA) && !defined(MACOS) \
49 && !defined(MSWINCE)
50 # include <sys/types.h>
51 # if !defined(MSWIN32) && !defined(SUNOS4)
52 # include <unistd.h>
53 # endif
54 # endif
56 # include <stdio.h>
57 # if defined(MSWINCE)
58 # define SIGSEGV 0 /* value is irrelevant */
59 # else
60 # include <signal.h>
61 # endif
63 #if defined(LINUX) || defined(LINUX_STACKBOTTOM)
64 # include <ctype.h>
65 #endif
67 /* Blatantly OS dependent routines, except for those that are related */
68 /* to dynamic loading. */
70 # if defined(HEURISTIC2) || defined(SEARCH_FOR_DATA_START)
71 # define NEED_FIND_LIMIT
72 # endif
74 # if !defined(STACKBOTTOM) && defined(HEURISTIC2)
75 # define NEED_FIND_LIMIT
76 # endif
78 # if (defined(SUNOS4) && defined(DYNAMIC_LOADING)) && !defined(PCR)
79 # define NEED_FIND_LIMIT
80 # endif
82 # if (defined(SVR4) || defined(AUX) || defined(DGUX) \
83 || (defined(LINUX) && defined(SPARC))) && !defined(PCR)
84 # define NEED_FIND_LIMIT
85 # endif
87 #if defined(FREEBSD) && (defined(I386) || defined(powerpc) || defined(__powerpc__))
88 # include <machine/trap.h>
89 # if !defined(PCR)
90 # define NEED_FIND_LIMIT
91 # endif
92 #endif
94 #if (defined(NETBSD) || defined(OPENBSD)) && defined(__ELF__) \
95 && !defined(NEED_FIND_LIMIT)
96 /* Used by GC_init_netbsd_elf() below. */
97 # define NEED_FIND_LIMIT
98 #endif
100 #ifdef NEED_FIND_LIMIT
101 # include <setjmp.h>
102 #endif
104 #ifdef AMIGA
105 # define GC_AMIGA_DEF
106 # include "AmigaOS.c"
107 # undef GC_AMIGA_DEF
108 #endif
110 #if defined(MSWIN32) || defined(MSWINCE)
111 # define WIN32_LEAN_AND_MEAN
112 # define NOSERVICE
113 # include <windows.h>
114 #endif
116 #ifdef MACOS
117 # include <Processes.h>
118 #endif
120 #ifdef IRIX5
121 # include <sys/uio.h>
122 # include <malloc.h> /* for locking */
123 #endif
124 #if defined(USE_MUNMAP)
125 # ifndef USE_MMAP
126 --> USE_MUNMAP requires USE_MMAP
127 # endif
128 #endif
129 #if defined(USE_MMAP) || defined(USE_MUNMAP) || defined(FALLBACK_TO_MMAP)
130 # include <sys/types.h>
131 # include <sys/mman.h>
132 # include <sys/stat.h>
133 # include <errno.h>
134 #endif
136 #ifdef UNIX_LIKE
137 # include <fcntl.h>
138 #endif
140 #if (defined(SUNOS5SIGS) || defined (HURD) || defined(LINUX) || defined(NETBSD)) && !defined(FREEBSD)
141 # ifdef SUNOS5SIGS
142 # include <sys/siginfo.h>
143 # endif
144 /* Define SETJMP and friends to be the version that restores */
145 /* the signal mask. */
146 # define SETJMP(env) sigsetjmp(env, 1)
147 # define LONGJMP(env, val) siglongjmp(env, val)
148 # define JMP_BUF sigjmp_buf
149 #else
150 # define SETJMP(env) setjmp(env)
151 # define LONGJMP(env, val) longjmp(env, val)
152 # define JMP_BUF jmp_buf
153 #endif
155 #ifdef DARWIN
156 /* for get_etext and friends */
157 #include <mach-o/getsect.h>
158 #endif
160 #ifdef DJGPP
161 /* Apparently necessary for djgpp 2.01. May cause problems with */
162 /* other versions. */
163 typedef long unsigned int caddr_t;
164 #endif
166 #ifdef PCR
167 # include "il/PCR_IL.h"
168 # include "th/PCR_ThCtl.h"
169 # include "mm/PCR_MM.h"
170 #endif
172 #if !defined(NO_EXECUTE_PERMISSION)
173 # define OPT_PROT_EXEC PROT_EXEC
174 #else
175 # define OPT_PROT_EXEC 0
176 #endif
178 #if defined(LINUX) && \
179 (defined(USE_PROC_FOR_LIBRARIES) || defined(IA64) || !defined(SMALL_CONFIG))
181 /* We need to parse /proc/self/maps, either to find dynamic libraries, */
182 /* and/or to find the register backing store base (IA64). Do it once */
183 /* here. */
185 #define READ read
187 /* Repeatedly perform a read call until the buffer is filled or */
188 /* we encounter EOF. */
189 ssize_t GC_repeat_read(int fd, char *buf, size_t count)
191 ssize_t num_read = 0;
192 ssize_t result;
194 while (num_read < count) {
195 result = READ(fd, buf + num_read, count - num_read);
196 if (result < 0) return result;
197 if (result == 0) break;
198 num_read += result;
200 return num_read;
204 * Apply fn to a buffer containing the contents of /proc/self/maps.
205 * Return the result of fn or, if we failed, 0.
206 * We currently do nothing to /proc/self/maps other than simply read
207 * it. This code could be simplified if we could determine its size
208 * ahead of time.
211 word GC_apply_to_maps(word (*fn)(char *))
213 int f;
214 int result;
215 size_t maps_size = 4000; /* Initial guess. */
216 static char init_buf[1];
217 static char *maps_buf = init_buf;
218 static size_t maps_buf_sz = 1;
220 /* Read /proc/self/maps, growing maps_buf as necessary. */
221 /* Note that we may not allocate conventionally, and */
222 /* thus can't use stdio. */
223 do {
224 if (maps_size >= maps_buf_sz) {
225 /* Grow only by powers of 2, since we leak "too small" buffers. */
226 while (maps_size >= maps_buf_sz) maps_buf_sz *= 2;
227 maps_buf = GC_scratch_alloc(maps_buf_sz);
228 if (maps_buf == 0) return 0;
230 f = open("/proc/self/maps", O_RDONLY);
231 if (-1 == f) return 0;
232 maps_size = 0;
233 do {
234 result = GC_repeat_read(f, maps_buf, maps_buf_sz-1);
235 if (result <= 0) return 0;
236 maps_size += result;
237 } while (result == maps_buf_sz-1);
238 close(f);
239 } while (maps_size >= maps_buf_sz);
240 maps_buf[maps_size] = '\0';
242 /* Apply fn to result. */
243 return fn(maps_buf);
246 #endif /* Need GC_apply_to_maps */
248 #if defined(LINUX) && (defined(USE_PROC_FOR_LIBRARIES) || defined(IA64))
250 // GC_parse_map_entry parses an entry from /proc/self/maps so we can
251 // locate all writable data segments that belong to shared libraries.
252 // The format of one of these entries and the fields we care about
253 // is as follows:
254 // XXXXXXXX-XXXXXXXX r-xp 00000000 30:05 260537 name of mapping...\n
255 // ^^^^^^^^ ^^^^^^^^ ^^^^ ^^
256 // start end prot maj_dev
258 // Note that since about auguat 2003 kernels, the columns no longer have
259 // fixed offsets on 64-bit kernels. Hence we no longer rely on fixed offsets
260 // anywhere, which is safer anyway.
264 * Assign various fields of the first line in buf_ptr to *start, *end,
265 * *prot_buf and *maj_dev. Only *prot_buf may be set for unwritable maps.
267 char *GC_parse_map_entry(char *buf_ptr, word *start, word *end,
268 char *prot_buf, unsigned int *maj_dev)
270 char *start_start, *end_start, *prot_start, *maj_dev_start;
271 char *p;
272 char *endp;
274 if (buf_ptr == NULL || *buf_ptr == '\0') {
275 return NULL;
278 p = buf_ptr;
279 while (isspace(*p)) ++p;
280 start_start = p;
281 GC_ASSERT(isxdigit(*start_start));
282 *start = strtoul(start_start, &endp, 16); p = endp;
283 GC_ASSERT(*p=='-');
285 ++p;
286 end_start = p;
287 GC_ASSERT(isxdigit(*end_start));
288 *end = strtoul(end_start, &endp, 16); p = endp;
289 GC_ASSERT(isspace(*p));
291 while (isspace(*p)) ++p;
292 prot_start = p;
293 GC_ASSERT(*prot_start == 'r' || *prot_start == '-');
294 memcpy(prot_buf, prot_start, 4);
295 prot_buf[4] = '\0';
296 if (prot_buf[1] == 'w') {/* we can skip the rest if it's not writable. */
297 /* Skip past protection field to offset field */
298 while (!isspace(*p)) ++p; while (isspace(*p)) ++p;
299 GC_ASSERT(isxdigit(*p));
300 /* Skip past offset field, which we ignore */
301 while (!isspace(*p)) ++p; while (isspace(*p)) ++p;
302 maj_dev_start = p;
303 GC_ASSERT(isxdigit(*maj_dev_start));
304 *maj_dev = strtoul(maj_dev_start, NULL, 16);
307 while (*p && *p++ != '\n');
309 return p;
312 #endif /* Need to parse /proc/self/maps. */
314 #if defined(SEARCH_FOR_DATA_START)
315 /* The I386 case can be handled without a search. The Alpha case */
316 /* used to be handled differently as well, but the rules changed */
317 /* for recent Linux versions. This seems to be the easiest way to */
318 /* cover all versions. */
320 # ifdef LINUX
321 /* Some Linux distributions arrange to define __data_start. Some */
322 /* define data_start as a weak symbol. The latter is technically */
323 /* broken, since the user program may define data_start, in which */
324 /* case we lose. Nonetheless, we try both, prefering __data_start. */
325 /* We assume gcc-compatible pragmas. */
326 # pragma weak __data_start
327 extern int __data_start[];
328 # pragma weak data_start
329 extern int data_start[];
330 # endif /* LINUX */
331 extern int _end[];
333 ptr_t GC_data_start;
335 void GC_init_linux_data_start()
337 extern ptr_t GC_find_limit();
339 if (GC_no_dls)
341 * Not needed, avoids the SIGSEGV caused by GC_find_limit which
342 * complicates debugging.
344 return;
346 # ifdef LINUX
347 /* Try the easy approaches first: */
348 if ((ptr_t)__data_start != 0) {
349 GC_data_start = (ptr_t)(__data_start);
350 return;
352 if ((ptr_t)data_start != 0) {
353 GC_data_start = (ptr_t)(data_start);
354 return;
356 # endif /* LINUX */
357 GC_data_start = GC_find_limit((ptr_t)(_end), FALSE);
359 #endif
361 # ifdef ECOS
363 # ifndef ECOS_GC_MEMORY_SIZE
364 # define ECOS_GC_MEMORY_SIZE (448 * 1024)
365 # endif /* ECOS_GC_MEMORY_SIZE */
367 // setjmp() function, as described in ANSI para 7.6.1.1
368 #undef SETJMP
369 #define SETJMP( __env__ ) hal_setjmp( __env__ )
371 // FIXME: This is a simple way of allocating memory which is
372 // compatible with ECOS early releases. Later releases use a more
373 // sophisticated means of allocating memory than this simple static
374 // allocator, but this method is at least bound to work.
375 static char memory[ECOS_GC_MEMORY_SIZE];
376 static char *brk = memory;
378 static void *tiny_sbrk(ptrdiff_t increment)
380 void *p = brk;
382 brk += increment;
384 if (brk > memory + sizeof memory)
386 brk -= increment;
387 return NULL;
390 return p;
392 #define sbrk tiny_sbrk
393 # endif /* ECOS */
395 #if (defined(NETBSD) || defined(OPENBSD)) && defined(__ELF__)
396 ptr_t GC_data_start;
398 void GC_init_netbsd_elf()
400 extern ptr_t GC_find_limit();
401 extern char **environ;
402 /* This may need to be environ, without the underscore, for */
403 /* some versions. */
404 GC_data_start = GC_find_limit((ptr_t)&environ, FALSE);
406 #endif
408 # ifdef OS2
410 # include <stddef.h>
412 # if !defined(__IBMC__) && !defined(__WATCOMC__) /* e.g. EMX */
414 struct exe_hdr {
415 unsigned short magic_number;
416 unsigned short padding[29];
417 long new_exe_offset;
420 #define E_MAGIC(x) (x).magic_number
421 #define EMAGIC 0x5A4D
422 #define E_LFANEW(x) (x).new_exe_offset
424 struct e32_exe {
425 unsigned char magic_number[2];
426 unsigned char byte_order;
427 unsigned char word_order;
428 unsigned long exe_format_level;
429 unsigned short cpu;
430 unsigned short os;
431 unsigned long padding1[13];
432 unsigned long object_table_offset;
433 unsigned long object_count;
434 unsigned long padding2[31];
437 #define E32_MAGIC1(x) (x).magic_number[0]
438 #define E32MAGIC1 'L'
439 #define E32_MAGIC2(x) (x).magic_number[1]
440 #define E32MAGIC2 'X'
441 #define E32_BORDER(x) (x).byte_order
442 #define E32LEBO 0
443 #define E32_WORDER(x) (x).word_order
444 #define E32LEWO 0
445 #define E32_CPU(x) (x).cpu
446 #define E32CPU286 1
447 #define E32_OBJTAB(x) (x).object_table_offset
448 #define E32_OBJCNT(x) (x).object_count
450 struct o32_obj {
451 unsigned long size;
452 unsigned long base;
453 unsigned long flags;
454 unsigned long pagemap;
455 unsigned long mapsize;
456 unsigned long reserved;
459 #define O32_FLAGS(x) (x).flags
460 #define OBJREAD 0x0001L
461 #define OBJWRITE 0x0002L
462 #define OBJINVALID 0x0080L
463 #define O32_SIZE(x) (x).size
464 #define O32_BASE(x) (x).base
466 # else /* IBM's compiler */
468 /* A kludge to get around what appears to be a header file bug */
469 # ifndef WORD
470 # define WORD unsigned short
471 # endif
472 # ifndef DWORD
473 # define DWORD unsigned long
474 # endif
476 # define EXE386 1
477 # include <newexe.h>
478 # include <exe386.h>
480 # endif /* __IBMC__ */
482 # define INCL_DOSEXCEPTIONS
483 # define INCL_DOSPROCESS
484 # define INCL_DOSERRORS
485 # define INCL_DOSMODULEMGR
486 # define INCL_DOSMEMMGR
487 # include <os2.h>
490 /* Disable and enable signals during nontrivial allocations */
492 void GC_disable_signals(void)
494 ULONG nest;
496 DosEnterMustComplete(&nest);
497 if (nest != 1) ABORT("nested GC_disable_signals");
500 void GC_enable_signals(void)
502 ULONG nest;
504 DosExitMustComplete(&nest);
505 if (nest != 0) ABORT("GC_enable_signals");
509 # else
511 # if !defined(PCR) && !defined(AMIGA) && !defined(MSWIN32) \
512 && !defined(MSWINCE) \
513 && !defined(MACOS) && !defined(DJGPP) && !defined(DOS4GW) \
514 && !defined(NOSYS) && !defined(ECOS)
516 # if defined(sigmask) && !defined(UTS4) && !defined(HURD)
517 /* Use the traditional BSD interface */
518 # define SIGSET_T int
519 # define SIG_DEL(set, signal) (set) &= ~(sigmask(signal))
520 # define SIG_FILL(set) (set) = 0x7fffffff
521 /* Setting the leading bit appears to provoke a bug in some */
522 /* longjmp implementations. Most systems appear not to have */
523 /* a signal 32. */
524 # define SIGSETMASK(old, new) (old) = sigsetmask(new)
525 # else
526 /* Use POSIX/SYSV interface */
527 # define SIGSET_T sigset_t
528 # define SIG_DEL(set, signal) sigdelset(&(set), (signal))
529 # define SIG_FILL(set) sigfillset(&set)
530 # define SIGSETMASK(old, new) sigprocmask(SIG_SETMASK, &(new), &(old))
531 # endif
533 static GC_bool mask_initialized = FALSE;
535 static SIGSET_T new_mask;
537 static SIGSET_T old_mask;
539 static SIGSET_T dummy;
541 #if defined(PRINTSTATS) && !defined(THREADS)
542 # define CHECK_SIGNALS
543 int GC_sig_disabled = 0;
544 #endif
546 void GC_disable_signals()
548 if (!mask_initialized) {
549 SIG_FILL(new_mask);
551 SIG_DEL(new_mask, SIGSEGV);
552 SIG_DEL(new_mask, SIGILL);
553 SIG_DEL(new_mask, SIGQUIT);
554 # ifdef SIGBUS
555 SIG_DEL(new_mask, SIGBUS);
556 # endif
557 # ifdef SIGIOT
558 SIG_DEL(new_mask, SIGIOT);
559 # endif
560 # ifdef SIGEMT
561 SIG_DEL(new_mask, SIGEMT);
562 # endif
563 # ifdef SIGTRAP
564 SIG_DEL(new_mask, SIGTRAP);
565 # endif
566 mask_initialized = TRUE;
568 # ifdef CHECK_SIGNALS
569 if (GC_sig_disabled != 0) ABORT("Nested disables");
570 GC_sig_disabled++;
571 # endif
572 SIGSETMASK(old_mask,new_mask);
575 void GC_enable_signals()
577 # ifdef CHECK_SIGNALS
578 if (GC_sig_disabled != 1) ABORT("Unmatched enable");
579 GC_sig_disabled--;
580 # endif
581 SIGSETMASK(dummy,old_mask);
584 # endif /* !PCR */
586 # endif /*!OS/2 */
588 /* Ivan Demakov: simplest way (to me) */
589 #if defined (DOS4GW)
590 void GC_disable_signals() { }
591 void GC_enable_signals() { }
592 #endif
594 /* Find the page size */
595 word GC_page_size;
597 # if defined(MSWIN32) || defined(MSWINCE)
598 void GC_setpagesize()
600 GetSystemInfo(&GC_sysinfo);
601 GC_page_size = GC_sysinfo.dwPageSize;
604 # else
605 # if defined(MPROTECT_VDB) || defined(PROC_VDB) || defined(USE_MMAP) \
606 || defined(USE_MUNMAP) || defined(FALLBACK_TO_MMAP)
607 void GC_setpagesize()
609 GC_page_size = GETPAGESIZE();
611 # else
612 /* It's acceptable to fake it. */
613 void GC_setpagesize()
615 GC_page_size = HBLKSIZE;
617 # endif
618 # endif
621 * Find the base of the stack.
622 * Used only in single-threaded environment.
623 * With threads, GC_mark_roots needs to know how to do this.
624 * Called with allocator lock held.
626 # if defined(MSWIN32) || defined(MSWINCE)
627 # define is_writable(prot) ((prot) == PAGE_READWRITE \
628 || (prot) == PAGE_WRITECOPY \
629 || (prot) == PAGE_EXECUTE_READWRITE \
630 || (prot) == PAGE_EXECUTE_WRITECOPY)
631 /* Return the number of bytes that are writable starting at p. */
632 /* The pointer p is assumed to be page aligned. */
633 /* If base is not 0, *base becomes the beginning of the */
634 /* allocation region containing p. */
635 word GC_get_writable_length(ptr_t p, ptr_t *base)
637 MEMORY_BASIC_INFORMATION buf;
638 word result;
639 word protect;
641 result = VirtualQuery(p, &buf, sizeof(buf));
642 if (result != sizeof(buf)) ABORT("Weird VirtualQuery result");
643 if (base != 0) *base = (ptr_t)(buf.AllocationBase);
644 protect = (buf.Protect & ~(PAGE_GUARD | PAGE_NOCACHE));
645 if (!is_writable(protect)) {
646 return(0);
648 if (buf.State != MEM_COMMIT) return(0);
649 return(buf.RegionSize);
652 ptr_t GC_get_stack_base()
654 int dummy;
655 ptr_t sp = (ptr_t)(&dummy);
656 ptr_t trunc_sp = (ptr_t)((word)sp & ~(GC_page_size - 1));
657 word size = GC_get_writable_length(trunc_sp, 0);
659 return(trunc_sp + size);
663 # endif /* MS Windows */
665 # ifdef BEOS
666 # include <kernel/OS.h>
667 ptr_t GC_get_stack_base(){
668 thread_info th;
669 get_thread_info(find_thread(NULL),&th);
670 return th.stack_end;
672 # endif /* BEOS */
675 # ifdef OS2
677 ptr_t GC_get_stack_base()
679 PTIB ptib;
680 PPIB ppib;
682 if (DosGetInfoBlocks(&ptib, &ppib) != NO_ERROR) {
683 GC_err_printf0("DosGetInfoBlocks failed\n");
684 ABORT("DosGetInfoBlocks failed\n");
686 return((ptr_t)(ptib -> tib_pstacklimit));
689 # endif /* OS2 */
691 # ifdef AMIGA
692 # define GC_AMIGA_SB
693 # include "AmigaOS.c"
694 # undef GC_AMIGA_SB
695 # endif /* AMIGA */
697 # if defined(NEED_FIND_LIMIT) || defined(UNIX_LIKE)
699 # ifdef __STDC__
700 typedef void (*handler)(int);
701 # else
702 typedef void (*handler)();
703 # endif
705 # if defined(SUNOS5SIGS) || defined(IRIX5) || defined(OSF1) \
706 || defined(HURD) || defined(NETBSD) || defined(FREEBSD)
707 static struct sigaction old_segv_act;
708 # if defined(IRIX5) || defined(HPUX) \
709 || defined(HURD) || defined(NETBSD)
710 static struct sigaction old_bus_act;
711 # endif
712 # else
713 static handler old_segv_handler, old_bus_handler;
714 # endif
716 # ifdef __STDC__
717 void GC_set_and_save_fault_handler(handler h)
718 # else
719 void GC_set_and_save_fault_handler(h)
720 handler h;
721 # endif
723 # if defined(SUNOS5SIGS) || defined(IRIX5) \
724 || defined(OSF1) || defined(HURD) || defined(NETBSD) || defined(FREEBSD)
725 struct sigaction act;
727 act.sa_handler = h;
728 # if 0 /* Was necessary for Solaris 2.3 and very temporary */
729 /* NetBSD bugs. */
730 act.sa_flags = SA_RESTART | SA_NODEFER;
731 # else
732 act.sa_flags = SA_RESTART;
733 # endif
735 (void) sigemptyset(&act.sa_mask);
736 # ifdef GC_IRIX_THREADS
737 /* Older versions have a bug related to retrieving and */
738 /* and setting a handler at the same time. */
739 (void) sigaction(SIGSEGV, 0, &old_segv_act);
740 (void) sigaction(SIGSEGV, &act, 0);
741 (void) sigaction(SIGBUS, 0, &old_bus_act);
742 (void) sigaction(SIGBUS, &act, 0);
743 # else
744 (void) sigaction(SIGSEGV, &act, &old_segv_act);
745 # if defined(IRIX5) \
746 || defined(HPUX) || defined(HURD) || defined(NETBSD)
747 /* Under Irix 5.x or HP/UX, we may get SIGBUS. */
748 /* Pthreads doesn't exist under Irix 5.x, so we */
749 /* don't have to worry in the threads case. */
750 (void) sigaction(SIGBUS, &act, &old_bus_act);
751 # endif
752 # endif /* GC_IRIX_THREADS */
753 # else
754 old_segv_handler = signal(SIGSEGV, h);
755 # ifdef SIGBUS
756 old_bus_handler = signal(SIGBUS, h);
757 # endif
758 # endif
760 # endif /* NEED_FIND_LIMIT || UNIX_LIKE */
762 # ifdef NEED_FIND_LIMIT
763 /* Some tools to implement HEURISTIC2 */
764 # define MIN_PAGE_SIZE 256 /* Smallest conceivable page size, bytes */
765 /* static */ JMP_BUF GC_jmp_buf;
767 /*ARGSUSED*/
768 void GC_fault_handler(sig)
769 int sig;
771 LONGJMP(GC_jmp_buf, 1);
774 void GC_setup_temporary_fault_handler()
776 GC_set_and_save_fault_handler(GC_fault_handler);
779 void GC_reset_fault_handler()
781 # if defined(SUNOS5SIGS) || defined(IRIX5) \
782 || defined(OSF1) || defined(HURD) || defined(NETBSD) || defined(FREEBSD)
783 (void) sigaction(SIGSEGV, &old_segv_act, 0);
784 # if defined(IRIX5) \
785 || defined(HPUX) || defined(HURD) || defined(NETBSD)
786 (void) sigaction(SIGBUS, &old_bus_act, 0);
787 # endif
788 # else
789 (void) signal(SIGSEGV, old_segv_handler);
790 # ifdef SIGBUS
791 (void) signal(SIGBUS, old_bus_handler);
792 # endif
793 # endif
796 /* Return the first nonaddressible location > p (up) or */
797 /* the smallest location q s.t. [q,p) is addressable (!up). */
798 /* We assume that p (up) or p-1 (!up) is addressable. */
799 ptr_t GC_find_limit(p, up)
800 ptr_t p;
801 GC_bool up;
803 static VOLATILE ptr_t result;
804 /* Needs to be static, since otherwise it may not be */
805 /* preserved across the longjmp. Can safely be */
806 /* static since it's only called once, with the */
807 /* allocation lock held. */
810 GC_setup_temporary_fault_handler();
811 if (SETJMP(GC_jmp_buf) == 0) {
812 result = (ptr_t)(((word)(p))
813 & ~(MIN_PAGE_SIZE-1));
814 for (;;) {
815 if (up) {
816 result += MIN_PAGE_SIZE;
817 } else {
818 result -= MIN_PAGE_SIZE;
820 GC_noop1((word)(*result));
823 GC_reset_fault_handler();
824 if (!up) {
825 result += MIN_PAGE_SIZE;
827 return(result);
829 # endif
831 #if defined(ECOS) || defined(NOSYS)
832 ptr_t GC_get_stack_base()
834 return STACKBOTTOM;
836 #endif
838 #ifdef HPUX_STACKBOTTOM
840 #include <sys/param.h>
841 #include <sys/pstat.h>
843 ptr_t GC_get_register_stack_base(void)
845 struct pst_vm_status vm_status;
847 int i = 0;
848 while (pstat_getprocvm(&vm_status, sizeof(vm_status), 0, i++) == 1) {
849 if (vm_status.pst_type == PS_RSESTACK) {
850 return (ptr_t) vm_status.pst_vaddr;
854 /* old way to get the register stackbottom */
855 return (ptr_t)(((word)GC_stackbottom - BACKING_STORE_DISPLACEMENT - 1)
856 & ~(BACKING_STORE_ALIGNMENT - 1));
859 #endif /* HPUX_STACK_BOTTOM */
861 #ifdef LINUX_STACKBOTTOM
863 #include <sys/types.h>
864 #include <sys/stat.h>
866 # define STAT_SKIP 27 /* Number of fields preceding startstack */
867 /* field in /proc/self/stat */
869 #ifdef USE_LIBC_PRIVATES
870 # pragma weak __libc_stack_end
871 extern ptr_t __libc_stack_end;
872 #endif
874 # ifdef IA64
875 /* Try to read the backing store base from /proc/self/maps. */
876 /* We look for the writable mapping with a 0 major device, */
877 /* which is as close to our frame as possible, but below it.*/
878 static word backing_store_base_from_maps(char *maps)
880 char prot_buf[5];
881 char *buf_ptr = maps;
882 word start, end;
883 unsigned int maj_dev;
884 word current_best = 0;
885 word dummy;
887 for (;;) {
888 buf_ptr = GC_parse_map_entry(buf_ptr, &start, &end, prot_buf, &maj_dev);
889 if (buf_ptr == NULL) return current_best;
890 if (prot_buf[1] == 'w' && maj_dev == 0) {
891 if (end < (word)(&dummy) && start > current_best) current_best = start;
894 return current_best;
897 static word backing_store_base_from_proc(void)
899 return GC_apply_to_maps(backing_store_base_from_maps);
902 # ifdef USE_LIBC_PRIVATES
903 # pragma weak __libc_ia64_register_backing_store_base
904 extern ptr_t __libc_ia64_register_backing_store_base;
905 # endif
907 ptr_t GC_get_register_stack_base(void)
909 # ifdef USE_LIBC_PRIVATES
910 if (0 != &__libc_ia64_register_backing_store_base
911 && 0 != __libc_ia64_register_backing_store_base) {
912 /* Glibc 2.2.4 has a bug such that for dynamically linked */
913 /* executables __libc_ia64_register_backing_store_base is */
914 /* defined but uninitialized during constructor calls. */
915 /* Hence we check for both nonzero address and value. */
916 return __libc_ia64_register_backing_store_base;
918 # endif
919 word result = backing_store_base_from_proc();
920 if (0 == result) {
921 /* Use dumb heuristics. Works only for default configuration. */
922 result = (word)GC_stackbottom - BACKING_STORE_DISPLACEMENT;
923 result += BACKING_STORE_ALIGNMENT - 1;
924 result &= ~(BACKING_STORE_ALIGNMENT - 1);
925 /* Verify that it's at least readable. If not, we goofed. */
926 GC_noop1(*(word *)result);
928 return (ptr_t)result;
930 # endif
932 void *GC_set_stackbottom = NULL;
934 ptr_t GC_linux_stack_base(void)
936 /* We read the stack base value from /proc/self/stat. We do this */
937 /* using direct I/O system calls in order to avoid calling malloc */
938 /* in case REDIRECT_MALLOC is defined. */
939 # define STAT_BUF_SIZE 4096
940 # define STAT_READ read
941 /* Should probably call the real read, if read is wrapped. */
942 char stat_buf[STAT_BUF_SIZE];
943 int f;
944 char c;
945 word result = 0;
946 size_t i, buf_offset = 0;
948 /* First try the easy way. This should work for glibc 2.2 */
949 /* This fails in a prelinked ("prelink" command) executable */
950 /* since the correct value of __libc_stack_end never */
951 /* becomes visible to us. The second test works around */
952 /* this. */
953 # ifdef USE_LIBC_PRIVATES
954 if (0 != &__libc_stack_end && 0 != __libc_stack_end ) {
955 # ifdef IA64
956 /* Some versions of glibc set the address 16 bytes too */
957 /* low while the initialization code is running. */
958 if (((word)__libc_stack_end & 0xfff) + 0x10 < 0x1000) {
959 return __libc_stack_end + 0x10;
960 } /* Otherwise it's not safe to add 16 bytes and we fall */
961 /* back to using /proc. */
962 # else
963 # ifdef SPARC
964 /* Older versions of glibc for 64-bit Sparc do not set
965 * this variable correctly, it gets set to either zero
966 * or one.
968 if (__libc_stack_end != (ptr_t) (unsigned long)0x1)
969 return __libc_stack_end;
970 # else
971 return __libc_stack_end;
972 # endif
973 # endif
975 # endif
976 f = open("/proc/self/stat", O_RDONLY);
977 if (f < 0 || STAT_READ(f, stat_buf, STAT_BUF_SIZE) < 2 * STAT_SKIP) {
978 ABORT("Couldn't read /proc/self/stat");
980 c = stat_buf[buf_offset++];
981 /* Skip the required number of fields. This number is hopefully */
982 /* constant across all Linux implementations. */
983 for (i = 0; i < STAT_SKIP; ++i) {
984 while (isspace(c)) c = stat_buf[buf_offset++];
985 while (!isspace(c)) c = stat_buf[buf_offset++];
987 while (isspace(c)) c = stat_buf[buf_offset++];
988 while (isdigit(c)) {
989 result *= 10;
990 result += c - '0';
991 c = stat_buf[buf_offset++];
993 close(f);
994 if (result < 0x10000000) ABORT("Absurd stack bottom value");
995 return (ptr_t)result;
998 #endif /* LINUX_STACKBOTTOM */
1000 #ifdef FREEBSD_STACKBOTTOM
1002 /* This uses an undocumented sysctl call, but at least one expert */
1003 /* believes it will stay. */
1005 #include <unistd.h>
1006 #include <sys/types.h>
1007 #include <sys/sysctl.h>
1009 ptr_t GC_freebsd_stack_base(void)
1011 int nm[2] = {CTL_KERN, KERN_USRSTACK};
1012 ptr_t base;
1013 size_t len = sizeof(ptr_t);
1014 int r = sysctl(nm, 2, &base, &len, NULL, 0);
1016 if (r) ABORT("Error getting stack base");
1018 return base;
1021 #endif /* FREEBSD_STACKBOTTOM */
1023 #if !defined(BEOS) && !defined(AMIGA) && !defined(MSWIN32) \
1024 && !defined(MSWINCE) && !defined(OS2) && !defined(NOSYS) && !defined(ECOS)
1026 ptr_t GC_get_stack_base()
1028 # if defined(HEURISTIC1) || defined(HEURISTIC2) || \
1029 defined(LINUX_STACKBOTTOM) || defined(FREEBSD_STACKBOTTOM)
1030 word dummy;
1031 ptr_t result;
1032 # endif
1034 # define STACKBOTTOM_ALIGNMENT_M1 ((word)STACK_GRAN - 1)
1036 # ifdef STACKBOTTOM
1037 return(STACKBOTTOM);
1038 # else
1039 # ifdef HEURISTIC1
1040 # ifdef STACK_GROWS_DOWN
1041 result = (ptr_t)((((word)(&dummy))
1042 + STACKBOTTOM_ALIGNMENT_M1)
1043 & ~STACKBOTTOM_ALIGNMENT_M1);
1044 # else
1045 result = (ptr_t)(((word)(&dummy))
1046 & ~STACKBOTTOM_ALIGNMENT_M1);
1047 # endif
1048 # endif /* HEURISTIC1 */
1049 # ifdef LINUX_STACKBOTTOM
1050 result = GC_linux_stack_base();
1051 # endif
1052 # ifdef FREEBSD_STACKBOTTOM
1053 result = GC_freebsd_stack_base();
1054 # endif
1055 # ifdef HEURISTIC2
1056 # ifdef STACK_GROWS_DOWN
1057 result = GC_find_limit((ptr_t)(&dummy), TRUE);
1058 # ifdef HEURISTIC2_LIMIT
1059 if (result > HEURISTIC2_LIMIT
1060 && (ptr_t)(&dummy) < HEURISTIC2_LIMIT) {
1061 result = HEURISTIC2_LIMIT;
1063 # endif
1064 # else
1065 result = GC_find_limit((ptr_t)(&dummy), FALSE);
1066 # ifdef HEURISTIC2_LIMIT
1067 if (result < HEURISTIC2_LIMIT
1068 && (ptr_t)(&dummy) > HEURISTIC2_LIMIT) {
1069 result = HEURISTIC2_LIMIT;
1071 # endif
1072 # endif
1074 # endif /* HEURISTIC2 */
1075 # ifdef STACK_GROWS_DOWN
1076 if (result == 0) result = (ptr_t)(signed_word)(-sizeof(ptr_t));
1077 # endif
1078 return(result);
1079 # endif /* STACKBOTTOM */
1082 # endif /* ! AMIGA, !OS 2, ! MS Windows, !BEOS, !NOSYS, !ECOS */
1085 * Register static data segment(s) as roots.
1086 * If more data segments are added later then they need to be registered
1087 * add that point (as we do with SunOS dynamic loading),
1088 * or GC_mark_roots needs to check for them (as we do with PCR).
1089 * Called with allocator lock held.
1092 # ifdef OS2
1094 void GC_register_data_segments()
1096 PTIB ptib;
1097 PPIB ppib;
1098 HMODULE module_handle;
1099 # define PBUFSIZ 512
1100 UCHAR path[PBUFSIZ];
1101 FILE * myexefile;
1102 struct exe_hdr hdrdos; /* MSDOS header. */
1103 struct e32_exe hdr386; /* Real header for my executable */
1104 struct o32_obj seg; /* Currrent segment */
1105 int nsegs;
1108 if (DosGetInfoBlocks(&ptib, &ppib) != NO_ERROR) {
1109 GC_err_printf0("DosGetInfoBlocks failed\n");
1110 ABORT("DosGetInfoBlocks failed\n");
1112 module_handle = ppib -> pib_hmte;
1113 if (DosQueryModuleName(module_handle, PBUFSIZ, path) != NO_ERROR) {
1114 GC_err_printf0("DosQueryModuleName failed\n");
1115 ABORT("DosGetInfoBlocks failed\n");
1117 myexefile = fopen(path, "rb");
1118 if (myexefile == 0) {
1119 GC_err_puts("Couldn't open executable ");
1120 GC_err_puts(path); GC_err_puts("\n");
1121 ABORT("Failed to open executable\n");
1123 if (fread((char *)(&hdrdos), 1, sizeof hdrdos, myexefile) < sizeof hdrdos) {
1124 GC_err_puts("Couldn't read MSDOS header from ");
1125 GC_err_puts(path); GC_err_puts("\n");
1126 ABORT("Couldn't read MSDOS header");
1128 if (E_MAGIC(hdrdos) != EMAGIC) {
1129 GC_err_puts("Executable has wrong DOS magic number: ");
1130 GC_err_puts(path); GC_err_puts("\n");
1131 ABORT("Bad DOS magic number");
1133 if (fseek(myexefile, E_LFANEW(hdrdos), SEEK_SET) != 0) {
1134 GC_err_puts("Seek to new header failed in ");
1135 GC_err_puts(path); GC_err_puts("\n");
1136 ABORT("Bad DOS magic number");
1138 if (fread((char *)(&hdr386), 1, sizeof hdr386, myexefile) < sizeof hdr386) {
1139 GC_err_puts("Couldn't read MSDOS header from ");
1140 GC_err_puts(path); GC_err_puts("\n");
1141 ABORT("Couldn't read OS/2 header");
1143 if (E32_MAGIC1(hdr386) != E32MAGIC1 || E32_MAGIC2(hdr386) != E32MAGIC2) {
1144 GC_err_puts("Executable has wrong OS/2 magic number:");
1145 GC_err_puts(path); GC_err_puts("\n");
1146 ABORT("Bad OS/2 magic number");
1148 if ( E32_BORDER(hdr386) != E32LEBO || E32_WORDER(hdr386) != E32LEWO) {
1149 GC_err_puts("Executable %s has wrong byte order: ");
1150 GC_err_puts(path); GC_err_puts("\n");
1151 ABORT("Bad byte order");
1153 if ( E32_CPU(hdr386) == E32CPU286) {
1154 GC_err_puts("GC can't handle 80286 executables: ");
1155 GC_err_puts(path); GC_err_puts("\n");
1156 EXIT();
1158 if (fseek(myexefile, E_LFANEW(hdrdos) + E32_OBJTAB(hdr386),
1159 SEEK_SET) != 0) {
1160 GC_err_puts("Seek to object table failed: ");
1161 GC_err_puts(path); GC_err_puts("\n");
1162 ABORT("Seek to object table failed");
1164 for (nsegs = E32_OBJCNT(hdr386); nsegs > 0; nsegs--) {
1165 int flags;
1166 if (fread((char *)(&seg), 1, sizeof seg, myexefile) < sizeof seg) {
1167 GC_err_puts("Couldn't read obj table entry from ");
1168 GC_err_puts(path); GC_err_puts("\n");
1169 ABORT("Couldn't read obj table entry");
1171 flags = O32_FLAGS(seg);
1172 if (!(flags & OBJWRITE)) continue;
1173 if (!(flags & OBJREAD)) continue;
1174 if (flags & OBJINVALID) {
1175 GC_err_printf0("Object with invalid pages?\n");
1176 continue;
1178 GC_add_roots_inner(O32_BASE(seg), O32_BASE(seg)+O32_SIZE(seg), FALSE);
1182 # else /* !OS2 */
1184 # if defined(MSWIN32) || defined(MSWINCE)
1186 # ifdef MSWIN32
1187 /* Unfortunately, we have to handle win32s very differently from NT, */
1188 /* Since VirtualQuery has very different semantics. In particular, */
1189 /* under win32s a VirtualQuery call on an unmapped page returns an */
1190 /* invalid result. Under NT, GC_register_data_segments is a noop and */
1191 /* all real work is done by GC_register_dynamic_libraries. Under */
1192 /* win32s, we cannot find the data segments associated with dll's. */
1193 /* We register the main data segment here. */
1194 GC_bool GC_no_win32_dlls = FALSE;
1195 /* This used to be set for gcc, to avoid dealing with */
1196 /* the structured exception handling issues. But we now have */
1197 /* assembly code to do that right. */
1199 void GC_init_win32()
1201 /* if we're running under win32s, assume that no DLLs will be loaded */
1202 DWORD v = GetVersion();
1203 GC_no_win32_dlls |= ((v & 0x80000000) && (v & 0xff) <= 3);
1206 /* Return the smallest address a such that VirtualQuery */
1207 /* returns correct results for all addresses between a and start. */
1208 /* Assumes VirtualQuery returns correct information for start. */
1209 ptr_t GC_least_described_address(ptr_t start)
1211 MEMORY_BASIC_INFORMATION buf;
1212 DWORD result;
1213 LPVOID limit;
1214 ptr_t p;
1215 LPVOID q;
1217 limit = GC_sysinfo.lpMinimumApplicationAddress;
1218 p = (ptr_t)((word)start & ~(GC_page_size - 1));
1219 for (;;) {
1220 q = (LPVOID)(p - GC_page_size);
1221 if ((ptr_t)q > (ptr_t)p /* underflow */ || q < limit) break;
1222 result = VirtualQuery(q, &buf, sizeof(buf));
1223 if (result != sizeof(buf) || buf.AllocationBase == 0) break;
1224 p = (ptr_t)(buf.AllocationBase);
1226 return(p);
1228 # endif
1230 # ifndef REDIRECT_MALLOC
1231 /* We maintain a linked list of AllocationBase values that we know */
1232 /* correspond to malloc heap sections. Currently this is only called */
1233 /* during a GC. But there is some hope that for long running */
1234 /* programs we will eventually see most heap sections. */
1236 /* In the long run, it would be more reliable to occasionally walk */
1237 /* the malloc heap with HeapWalk on the default heap. But that */
1238 /* apparently works only for NT-based Windows. */
1240 /* In the long run, a better data structure would also be nice ... */
1241 struct GC_malloc_heap_list {
1242 void * allocation_base;
1243 struct GC_malloc_heap_list *next;
1244 } *GC_malloc_heap_l = 0;
1246 /* Is p the base of one of the malloc heap sections we already know */
1247 /* about? */
1248 GC_bool GC_is_malloc_heap_base(ptr_t p)
1250 struct GC_malloc_heap_list *q = GC_malloc_heap_l;
1252 while (0 != q) {
1253 if (q -> allocation_base == p) return TRUE;
1254 q = q -> next;
1256 return FALSE;
1259 void *GC_get_allocation_base(void *p)
1261 MEMORY_BASIC_INFORMATION buf;
1262 DWORD result = VirtualQuery(p, &buf, sizeof(buf));
1263 if (result != sizeof(buf)) {
1264 ABORT("Weird VirtualQuery result");
1266 return buf.AllocationBase;
1269 size_t GC_max_root_size = 100000; /* Appr. largest root size. */
1271 void GC_add_current_malloc_heap()
1273 struct GC_malloc_heap_list *new_l =
1274 malloc(sizeof(struct GC_malloc_heap_list));
1275 void * candidate = GC_get_allocation_base(new_l);
1277 if (new_l == 0) return;
1278 if (GC_is_malloc_heap_base(candidate)) {
1279 /* Try a little harder to find malloc heap. */
1280 size_t req_size = 10000;
1281 do {
1282 void *p = malloc(req_size);
1283 if (0 == p) { free(new_l); return; }
1284 candidate = GC_get_allocation_base(p);
1285 free(p);
1286 req_size *= 2;
1287 } while (GC_is_malloc_heap_base(candidate)
1288 && req_size < GC_max_root_size/10 && req_size < 500000);
1289 if (GC_is_malloc_heap_base(candidate)) {
1290 free(new_l); return;
1293 # ifdef CONDPRINT
1294 if (GC_print_stats)
1295 GC_printf1("Found new system malloc AllocationBase at 0x%lx\n",
1296 candidate);
1297 # endif
1298 new_l -> allocation_base = candidate;
1299 new_l -> next = GC_malloc_heap_l;
1300 GC_malloc_heap_l = new_l;
1302 # endif /* REDIRECT_MALLOC */
1304 /* Is p the start of either the malloc heap, or of one of our */
1305 /* heap sections? */
1306 GC_bool GC_is_heap_base (ptr_t p)
1309 unsigned i;
1311 # ifndef REDIRECT_MALLOC
1312 static word last_gc_no = -1;
1314 if (last_gc_no != GC_gc_no) {
1315 GC_add_current_malloc_heap();
1316 last_gc_no = GC_gc_no;
1318 if (GC_root_size > GC_max_root_size) GC_max_root_size = GC_root_size;
1319 if (GC_is_malloc_heap_base(p)) return TRUE;
1320 # endif
1321 for (i = 0; i < GC_n_heap_bases; i++) {
1322 if (GC_heap_bases[i] == p) return TRUE;
1324 return FALSE ;
1327 # ifdef MSWIN32
1328 void GC_register_root_section(ptr_t static_root)
1330 MEMORY_BASIC_INFORMATION buf;
1331 DWORD result;
1332 DWORD protect;
1333 LPVOID p;
1334 char * base;
1335 char * limit, * new_limit;
1337 if (!GC_no_win32_dlls) return;
1338 p = base = limit = GC_least_described_address(static_root);
1339 while (p < GC_sysinfo.lpMaximumApplicationAddress) {
1340 result = VirtualQuery(p, &buf, sizeof(buf));
1341 if (result != sizeof(buf) || buf.AllocationBase == 0
1342 || GC_is_heap_base(buf.AllocationBase)) break;
1343 new_limit = (char *)p + buf.RegionSize;
1344 protect = buf.Protect;
1345 if (buf.State == MEM_COMMIT
1346 && is_writable(protect)) {
1347 if ((char *)p == limit) {
1348 limit = new_limit;
1349 } else {
1350 if (base != limit) GC_add_roots_inner(base, limit, FALSE);
1351 base = p;
1352 limit = new_limit;
1355 if (p > (LPVOID)new_limit /* overflow */) break;
1356 p = (LPVOID)new_limit;
1358 if (base != limit) GC_add_roots_inner(base, limit, FALSE);
1360 #endif
1362 void GC_register_data_segments()
1364 # ifdef MSWIN32
1365 static char dummy;
1366 GC_register_root_section((ptr_t)(&dummy));
1367 # endif
1370 # else /* !OS2 && !Windows */
1372 # if (defined(SVR4) || defined(AUX) || defined(DGUX) \
1373 || (defined(LINUX) && defined(SPARC))) && !defined(PCR)
1374 ptr_t GC_SysVGetDataStart(max_page_size, etext_addr)
1375 int max_page_size;
1376 int * etext_addr;
1378 word text_end = ((word)(etext_addr) + sizeof(word) - 1)
1379 & ~(sizeof(word) - 1);
1380 /* etext rounded to word boundary */
1381 word next_page = ((text_end + (word)max_page_size - 1)
1382 & ~((word)max_page_size - 1));
1383 word page_offset = (text_end & ((word)max_page_size - 1));
1384 VOLATILE char * result = (char *)(next_page + page_offset);
1385 /* Note that this isnt equivalent to just adding */
1386 /* max_page_size to &etext if &etext is at a page boundary */
1388 GC_setup_temporary_fault_handler();
1389 if (SETJMP(GC_jmp_buf) == 0) {
1390 /* Try writing to the address. */
1391 *result = *result;
1392 GC_reset_fault_handler();
1393 } else {
1394 GC_reset_fault_handler();
1395 /* We got here via a longjmp. The address is not readable. */
1396 /* This is known to happen under Solaris 2.4 + gcc, which place */
1397 /* string constants in the text segment, but after etext. */
1398 /* Use plan B. Note that we now know there is a gap between */
1399 /* text and data segments, so plan A bought us something. */
1400 result = (char *)GC_find_limit((ptr_t)(DATAEND), FALSE);
1402 return((ptr_t)result);
1404 # endif
1406 # if defined(FREEBSD) && (defined(I386) || defined(powerpc) || defined(__powerpc__) || defined(__x86_64__)) && !defined(PCR)
1407 /* Its unclear whether this should be identical to the above, or */
1408 /* whether it should apply to non-X86 architectures. */
1409 /* For now we don't assume that there is always an empty page after */
1410 /* etext. But in some cases there actually seems to be slightly more. */
1411 /* This also deals with holes between read-only data and writable data. */
1412 ptr_t GC_FreeBSDGetDataStart(max_page_size, etext_addr)
1413 int max_page_size;
1414 int * etext_addr;
1416 word text_end = ((word)(etext_addr) + sizeof(word) - 1)
1417 & ~(sizeof(word) - 1);
1418 /* etext rounded to word boundary */
1419 VOLATILE word next_page = (text_end + (word)max_page_size - 1)
1420 & ~((word)max_page_size - 1);
1421 VOLATILE ptr_t result = (ptr_t)text_end;
1422 GC_setup_temporary_fault_handler();
1423 if (SETJMP(GC_jmp_buf) == 0) {
1424 /* Try reading at the address. */
1425 /* This should happen before there is another thread. */
1426 for (; next_page < (word)(DATAEND); next_page += (word)max_page_size)
1427 *(VOLATILE char *)next_page;
1428 GC_reset_fault_handler();
1429 } else {
1430 GC_reset_fault_handler();
1431 /* As above, we go to plan B */
1432 result = GC_find_limit((ptr_t)(DATAEND), FALSE);
1434 return(result);
1437 # endif
1440 #ifdef AMIGA
1442 # define GC_AMIGA_DS
1443 # include "AmigaOS.c"
1444 # undef GC_AMIGA_DS
1446 #else /* !OS2 && !Windows && !AMIGA */
1448 void GC_register_data_segments()
1450 # if !defined(PCR) && !defined(SRC_M3) && !defined(MACOS)
1451 # if defined(REDIRECT_MALLOC) && defined(GC_SOLARIS_THREADS)
1452 /* As of Solaris 2.3, the Solaris threads implementation */
1453 /* allocates the data structure for the initial thread with */
1454 /* sbrk at process startup. It needs to be scanned, so that */
1455 /* we don't lose some malloc allocated data structures */
1456 /* hanging from it. We're on thin ice here ... */
1457 extern caddr_t sbrk();
1459 GC_ASSERT(DATASTART);
1460 GC_add_roots_inner(DATASTART, (char *)sbrk(0), FALSE);
1461 # else
1462 GC_ASSERT(DATASTART);
1463 GC_add_roots_inner(DATASTART, (char *)(DATAEND), FALSE);
1464 # if defined(DATASTART2)
1465 GC_add_roots_inner(DATASTART2, (char *)(DATAEND2), FALSE);
1466 # endif
1467 # endif
1468 # endif
1469 # if defined(MACOS)
1471 # if defined(THINK_C)
1472 extern void* GC_MacGetDataStart(void);
1473 /* globals begin above stack and end at a5. */
1474 GC_add_roots_inner((ptr_t)GC_MacGetDataStart(),
1475 (ptr_t)LMGetCurrentA5(), FALSE);
1476 # else
1477 # if defined(__MWERKS__)
1478 # if !__POWERPC__
1479 extern void* GC_MacGetDataStart(void);
1480 /* MATTHEW: Function to handle Far Globals (CW Pro 3) */
1481 # if __option(far_data)
1482 extern void* GC_MacGetDataEnd(void);
1483 # endif
1484 /* globals begin above stack and end at a5. */
1485 GC_add_roots_inner((ptr_t)GC_MacGetDataStart(),
1486 (ptr_t)LMGetCurrentA5(), FALSE);
1487 /* MATTHEW: Handle Far Globals */
1488 # if __option(far_data)
1489 /* Far globals follow he QD globals: */
1490 GC_add_roots_inner((ptr_t)LMGetCurrentA5(),
1491 (ptr_t)GC_MacGetDataEnd(), FALSE);
1492 # endif
1493 # else
1494 extern char __data_start__[], __data_end__[];
1495 GC_add_roots_inner((ptr_t)&__data_start__,
1496 (ptr_t)&__data_end__, FALSE);
1497 # endif /* __POWERPC__ */
1498 # endif /* __MWERKS__ */
1499 # endif /* !THINK_C */
1501 # endif /* MACOS */
1503 /* Dynamic libraries are added at every collection, since they may */
1504 /* change. */
1507 # endif /* ! AMIGA */
1508 # endif /* ! MSWIN32 && ! MSWINCE*/
1509 # endif /* ! OS2 */
1512 * Auxiliary routines for obtaining memory from OS.
1515 # if !defined(OS2) && !defined(PCR) && !defined(AMIGA) \
1516 && !defined(MSWIN32) && !defined(MSWINCE) \
1517 && !defined(MACOS) && !defined(DOS4GW)
1519 # ifdef SUNOS4
1520 extern caddr_t sbrk();
1521 # endif
1522 # ifdef __STDC__
1523 # define SBRK_ARG_T ptrdiff_t
1524 # else
1525 # define SBRK_ARG_T int
1526 # endif
1529 # if 0 && defined(RS6000) /* We now use mmap */
1530 /* The compiler seems to generate speculative reads one past the end of */
1531 /* an allocated object. Hence we need to make sure that the page */
1532 /* following the last heap page is also mapped. */
1533 ptr_t GC_unix_get_mem(bytes)
1534 word bytes;
1536 caddr_t cur_brk = (caddr_t)sbrk(0);
1537 caddr_t result;
1538 SBRK_ARG_T lsbs = (word)cur_brk & (GC_page_size-1);
1539 static caddr_t my_brk_val = 0;
1541 if ((SBRK_ARG_T)bytes < 0) return(0); /* too big */
1542 if (lsbs != 0) {
1543 if((caddr_t)(sbrk(GC_page_size - lsbs)) == (caddr_t)(-1)) return(0);
1545 if (cur_brk == my_brk_val) {
1546 /* Use the extra block we allocated last time. */
1547 result = (ptr_t)sbrk((SBRK_ARG_T)bytes);
1548 if (result == (caddr_t)(-1)) return(0);
1549 result -= GC_page_size;
1550 } else {
1551 result = (ptr_t)sbrk(GC_page_size + (SBRK_ARG_T)bytes);
1552 if (result == (caddr_t)(-1)) return(0);
1554 my_brk_val = result + bytes + GC_page_size; /* Always page aligned */
1555 return((ptr_t)result);
1558 #else /* Not RS6000 */
1560 #if defined(USE_MMAP) || defined(USE_MUNMAP) || defined(FALLBACK_TO_MMAP)
1562 #ifdef USE_MMAP_FIXED
1563 # define GC_MMAP_FLAGS MAP_FIXED | MAP_PRIVATE
1564 /* Seems to yield better performance on Solaris 2, but can */
1565 /* be unreliable if something is already mapped at the address. */
1566 #else
1567 # define GC_MMAP_FLAGS MAP_PRIVATE
1568 #endif
1570 #ifdef USE_MMAP_ANON
1571 # define zero_fd -1
1572 # if defined(MAP_ANONYMOUS)
1573 # define OPT_MAP_ANON MAP_ANONYMOUS
1574 # else
1575 # define OPT_MAP_ANON MAP_ANON
1576 # endif
1577 #else
1578 static int zero_fd;
1579 # define OPT_MAP_ANON 0
1580 #endif
1582 #endif /* defined(USE_MMAP) || defined(USE_MUNMAP) */
1584 #if defined(USE_MMAP) || defined(FALLBACK_TO_MMAP)
1585 /* Tested only under Linux, IRIX5 and Solaris 2 */
1587 #ifndef HEAP_START
1588 # define HEAP_START 0
1589 #endif
1591 #ifdef FALLBACK_TO_MMAP
1592 static ptr_t GC_unix_get_mem_mmap(bytes)
1593 #else
1594 ptr_t GC_unix_get_mem(bytes)
1595 #endif
1596 word bytes;
1598 void *result;
1599 static ptr_t last_addr = HEAP_START;
1601 # ifndef USE_MMAP_ANON
1602 static GC_bool initialized = FALSE;
1604 if (!initialized) {
1605 zero_fd = open("/dev/zero", O_RDONLY);
1606 fcntl(zero_fd, F_SETFD, FD_CLOEXEC);
1607 initialized = TRUE;
1609 # endif
1611 if (bytes & (GC_page_size -1)) ABORT("Bad GET_MEM arg");
1612 result = mmap(last_addr, bytes, PROT_READ | PROT_WRITE | OPT_PROT_EXEC,
1613 GC_MMAP_FLAGS | OPT_MAP_ANON, zero_fd, 0/* offset */);
1614 if (result == MAP_FAILED) return(0);
1615 last_addr = (ptr_t)result + bytes + GC_page_size - 1;
1616 last_addr = (ptr_t)((word)last_addr & ~(GC_page_size - 1));
1617 # if !defined(LINUX)
1618 if (last_addr == 0) {
1619 /* Oops. We got the end of the address space. This isn't */
1620 /* usable by arbitrary C code, since one-past-end pointers */
1621 /* don't work, so we discard it and try again. */
1622 munmap(result, (size_t)(-GC_page_size) - (size_t)result);
1623 /* Leave last page mapped, so we can't repeat. */
1624 return GC_unix_get_mem(bytes);
1626 # else
1627 GC_ASSERT(last_addr != 0);
1628 # endif
1629 if (((word)result % HBLKSIZE) != 0)
1630 ABORT ("GC_unix_get_mem: Memory returned by mmap is not aligned to HBLKSIZE.");
1631 return((ptr_t)result);
1634 #endif
1636 #ifndef USE_MMAP
1638 ptr_t GC_unix_get_mem(bytes)
1639 word bytes;
1641 ptr_t result;
1642 # ifdef IRIX5
1643 /* Bare sbrk isn't thread safe. Play by malloc rules. */
1644 /* The equivalent may be needed on other systems as well. */
1645 __LOCK_MALLOC();
1646 # endif
1648 ptr_t cur_brk = (ptr_t)sbrk(0);
1649 SBRK_ARG_T lsbs = (word)cur_brk & (GC_page_size-1);
1651 if ((SBRK_ARG_T)bytes < 0) return(0); /* too big */
1652 if (lsbs != 0) {
1653 if((ptr_t)sbrk(GC_page_size - lsbs) == (ptr_t)(-1)) return(0);
1655 result = (ptr_t)sbrk((SBRK_ARG_T)bytes);
1656 if (result == (ptr_t)(-1)) {
1657 #ifdef FALLBACK_TO_MMAP
1658 result = GC_unix_get_mem_mmap (bytes);
1659 #else
1660 result = 0;
1661 #endif
1664 # ifdef IRIX5
1665 __UNLOCK_MALLOC();
1666 # endif
1667 return(result);
1670 #endif /* Not USE_MMAP */
1671 #endif /* Not RS6000 */
1673 # endif /* UN*X */
1675 # ifdef OS2
1677 void * os2_alloc(size_t bytes)
1679 void * result;
1681 if (DosAllocMem(&result, bytes, PAG_EXECUTE | PAG_READ |
1682 PAG_WRITE | PAG_COMMIT)
1683 != NO_ERROR) {
1684 return(0);
1686 if (result == 0) return(os2_alloc(bytes));
1687 return(result);
1690 # endif /* OS2 */
1693 # if defined(MSWIN32) || defined(MSWINCE)
1694 SYSTEM_INFO GC_sysinfo;
1695 # endif
1697 # ifdef MSWIN32
1699 # ifdef USE_GLOBAL_ALLOC
1700 # define GLOBAL_ALLOC_TEST 1
1701 # else
1702 # define GLOBAL_ALLOC_TEST GC_no_win32_dlls
1703 # endif
1705 word GC_n_heap_bases = 0;
1707 ptr_t GC_win32_get_mem(bytes)
1708 word bytes;
1710 ptr_t result;
1712 if (GLOBAL_ALLOC_TEST) {
1713 /* VirtualAlloc doesn't like PAGE_EXECUTE_READWRITE. */
1714 /* There are also unconfirmed rumors of other */
1715 /* problems, so we dodge the issue. */
1716 result = (ptr_t) GlobalAlloc(0, bytes + HBLKSIZE);
1717 result = (ptr_t)(((word)result + HBLKSIZE) & ~(HBLKSIZE-1));
1718 } else {
1719 /* VirtualProtect only works on regions returned by a */
1720 /* single VirtualAlloc call. Thus we allocate one */
1721 /* extra page, which will prevent merging of blocks */
1722 /* in separate regions, and eliminate any temptation */
1723 /* to call VirtualProtect on a range spanning regions. */
1724 /* This wastes a small amount of memory, and risks */
1725 /* increased fragmentation. But better alternatives */
1726 /* would require effort. */
1727 result = (ptr_t) VirtualAlloc(NULL, bytes + 1,
1728 MEM_COMMIT | MEM_RESERVE,
1729 PAGE_EXECUTE_READWRITE);
1731 if (HBLKDISPL(result) != 0) ABORT("Bad VirtualAlloc result");
1732 /* If I read the documentation correctly, this can */
1733 /* only happen if HBLKSIZE > 64k or not a power of 2. */
1734 if (GC_n_heap_bases >= MAX_HEAP_SECTS) ABORT("Too many heap sections");
1735 GC_heap_bases[GC_n_heap_bases++] = result;
1736 return(result);
1739 void GC_win32_free_heap ()
1741 if (GC_no_win32_dlls) {
1742 while (GC_n_heap_bases > 0) {
1743 GlobalFree (GC_heap_bases[--GC_n_heap_bases]);
1744 GC_heap_bases[GC_n_heap_bases] = 0;
1748 # endif
1750 #ifdef AMIGA
1751 # define GC_AMIGA_AM
1752 # include "AmigaOS.c"
1753 # undef GC_AMIGA_AM
1754 #endif
1757 # ifdef MSWINCE
1758 word GC_n_heap_bases = 0;
1760 ptr_t GC_wince_get_mem(bytes)
1761 word bytes;
1763 ptr_t result;
1764 word i;
1766 /* Round up allocation size to multiple of page size */
1767 bytes = (bytes + GC_page_size-1) & ~(GC_page_size-1);
1769 /* Try to find reserved, uncommitted pages */
1770 for (i = 0; i < GC_n_heap_bases; i++) {
1771 if (((word)(-(signed_word)GC_heap_lengths[i])
1772 & (GC_sysinfo.dwAllocationGranularity-1))
1773 >= bytes) {
1774 result = GC_heap_bases[i] + GC_heap_lengths[i];
1775 break;
1779 if (i == GC_n_heap_bases) {
1780 /* Reserve more pages */
1781 word res_bytes = (bytes + GC_sysinfo.dwAllocationGranularity-1)
1782 & ~(GC_sysinfo.dwAllocationGranularity-1);
1783 /* If we ever support MPROTECT_VDB here, we will probably need to */
1784 /* ensure that res_bytes is strictly > bytes, so that VirtualProtect */
1785 /* never spans regions. It seems to be OK for a VirtualFree argument */
1786 /* to span regions, so we should be OK for now. */
1787 result = (ptr_t) VirtualAlloc(NULL, res_bytes,
1788 MEM_RESERVE | MEM_TOP_DOWN,
1789 PAGE_EXECUTE_READWRITE);
1790 if (HBLKDISPL(result) != 0) ABORT("Bad VirtualAlloc result");
1791 /* If I read the documentation correctly, this can */
1792 /* only happen if HBLKSIZE > 64k or not a power of 2. */
1793 if (GC_n_heap_bases >= MAX_HEAP_SECTS) ABORT("Too many heap sections");
1794 GC_heap_bases[GC_n_heap_bases] = result;
1795 GC_heap_lengths[GC_n_heap_bases] = 0;
1796 GC_n_heap_bases++;
1799 /* Commit pages */
1800 result = (ptr_t) VirtualAlloc(result, bytes,
1801 MEM_COMMIT,
1802 PAGE_EXECUTE_READWRITE);
1803 if (result != NULL) {
1804 if (HBLKDISPL(result) != 0) ABORT("Bad VirtualAlloc result");
1805 GC_heap_lengths[i] += bytes;
1808 return(result);
1810 # endif
1812 #ifdef USE_MUNMAP
1814 /* For now, this only works on Win32/WinCE and some Unix-like */
1815 /* systems. If you have something else, don't define */
1816 /* USE_MUNMAP. */
1817 /* We assume ANSI C to support this feature. */
1819 #if !defined(MSWIN32) && !defined(MSWINCE)
1821 #include <unistd.h>
1822 #include <sys/mman.h>
1823 #include <sys/stat.h>
1824 #include <sys/types.h>
1826 #endif
1828 /* Compute a page aligned starting address for the unmap */
1829 /* operation on a block of size bytes starting at start. */
1830 /* Return 0 if the block is too small to make this feasible. */
1831 ptr_t GC_unmap_start(ptr_t start, word bytes)
1833 ptr_t result = start;
1834 /* Round start to next page boundary. */
1835 result += GC_page_size - 1;
1836 result = (ptr_t)((word)result & ~(GC_page_size - 1));
1837 if (result + GC_page_size > start + bytes) return 0;
1838 return result;
1841 /* Compute end address for an unmap operation on the indicated */
1842 /* block. */
1843 ptr_t GC_unmap_end(ptr_t start, word bytes)
1845 ptr_t end_addr = start + bytes;
1846 end_addr = (ptr_t)((word)end_addr & ~(GC_page_size - 1));
1847 return end_addr;
1850 /* Under Win32/WinCE we commit (map) and decommit (unmap) */
1851 /* memory using VirtualAlloc and VirtualFree. These functions */
1852 /* work on individual allocations of virtual memory, made */
1853 /* previously using VirtualAlloc with the MEM_RESERVE flag. */
1854 /* The ranges we need to (de)commit may span several of these */
1855 /* allocations; therefore we use VirtualQuery to check */
1856 /* allocation lengths, and split up the range as necessary. */
1858 /* We assume that GC_remap is called on exactly the same range */
1859 /* as a previous call to GC_unmap. It is safe to consistently */
1860 /* round the endpoints in both places. */
1861 void GC_unmap(ptr_t start, word bytes)
1863 ptr_t start_addr = GC_unmap_start(start, bytes);
1864 ptr_t end_addr = GC_unmap_end(start, bytes);
1865 word len = end_addr - start_addr;
1866 if (0 == start_addr) return;
1867 # if defined(MSWIN32) || defined(MSWINCE)
1868 while (len != 0) {
1869 MEMORY_BASIC_INFORMATION mem_info;
1870 GC_word free_len;
1871 if (VirtualQuery(start_addr, &mem_info, sizeof(mem_info))
1872 != sizeof(mem_info))
1873 ABORT("Weird VirtualQuery result");
1874 free_len = (len < mem_info.RegionSize) ? len : mem_info.RegionSize;
1875 if (!VirtualFree(start_addr, free_len, MEM_DECOMMIT))
1876 ABORT("VirtualFree failed");
1877 GC_unmapped_bytes += free_len;
1878 start_addr += free_len;
1879 len -= free_len;
1881 # else
1882 /* We immediately remap it to prevent an intervening mmap from */
1883 /* accidentally grabbing the same address space. */
1885 void * result;
1886 result = mmap(start_addr, len, PROT_NONE,
1887 MAP_PRIVATE | MAP_FIXED | OPT_MAP_ANON,
1888 zero_fd, 0/* offset */);
1889 if (result != (void *)start_addr) ABORT("mmap(...PROT_NONE...) failed");
1891 GC_unmapped_bytes += len;
1892 # endif
1896 void GC_remap(ptr_t start, word bytes)
1898 ptr_t start_addr = GC_unmap_start(start, bytes);
1899 ptr_t end_addr = GC_unmap_end(start, bytes);
1900 word len = end_addr - start_addr;
1902 # if defined(MSWIN32) || defined(MSWINCE)
1903 ptr_t result;
1905 if (0 == start_addr) return;
1906 while (len != 0) {
1907 MEMORY_BASIC_INFORMATION mem_info;
1908 GC_word alloc_len;
1909 if (VirtualQuery(start_addr, &mem_info, sizeof(mem_info))
1910 != sizeof(mem_info))
1911 ABORT("Weird VirtualQuery result");
1912 alloc_len = (len < mem_info.RegionSize) ? len : mem_info.RegionSize;
1913 result = VirtualAlloc(start_addr, alloc_len,
1914 MEM_COMMIT,
1915 PAGE_EXECUTE_READWRITE);
1916 if (result != start_addr) {
1917 ABORT("VirtualAlloc remapping failed");
1919 GC_unmapped_bytes -= alloc_len;
1920 start_addr += alloc_len;
1921 len -= alloc_len;
1923 # else
1924 /* It was already remapped with PROT_NONE. */
1925 int result;
1927 if (0 == start_addr) return;
1928 result = mprotect(start_addr, len,
1929 PROT_READ | PROT_WRITE | OPT_PROT_EXEC);
1930 if (result != 0) {
1931 GC_err_printf3(
1932 "Mprotect failed at 0x%lx (length %ld) with errno %ld\n",
1933 start_addr, len, errno);
1934 ABORT("Mprotect remapping failed");
1936 GC_unmapped_bytes -= len;
1937 # endif
1940 /* Two adjacent blocks have already been unmapped and are about to */
1941 /* be merged. Unmap the whole block. This typically requires */
1942 /* that we unmap a small section in the middle that was not previously */
1943 /* unmapped due to alignment constraints. */
1944 void GC_unmap_gap(ptr_t start1, word bytes1, ptr_t start2, word bytes2)
1946 ptr_t start1_addr = GC_unmap_start(start1, bytes1);
1947 ptr_t end1_addr = GC_unmap_end(start1, bytes1);
1948 ptr_t start2_addr = GC_unmap_start(start2, bytes2);
1949 ptr_t end2_addr = GC_unmap_end(start2, bytes2);
1950 ptr_t start_addr = end1_addr;
1951 ptr_t end_addr = start2_addr;
1952 word len;
1953 GC_ASSERT(start1 + bytes1 == start2);
1954 if (0 == start1_addr) start_addr = GC_unmap_start(start1, bytes1 + bytes2);
1955 if (0 == start2_addr) end_addr = GC_unmap_end(start1, bytes1 + bytes2);
1956 if (0 == start_addr) return;
1957 len = end_addr - start_addr;
1958 # if defined(MSWIN32) || defined(MSWINCE)
1959 while (len != 0) {
1960 MEMORY_BASIC_INFORMATION mem_info;
1961 GC_word free_len;
1962 if (VirtualQuery(start_addr, &mem_info, sizeof(mem_info))
1963 != sizeof(mem_info))
1964 ABORT("Weird VirtualQuery result");
1965 free_len = (len < mem_info.RegionSize) ? len : mem_info.RegionSize;
1966 if (!VirtualFree(start_addr, free_len, MEM_DECOMMIT))
1967 ABORT("VirtualFree failed");
1968 GC_unmapped_bytes += free_len;
1969 start_addr += free_len;
1970 len -= free_len;
1972 # else
1973 if (len != 0 && munmap(start_addr, len) != 0) ABORT("munmap failed");
1974 GC_unmapped_bytes += len;
1975 # endif
1978 #endif /* USE_MUNMAP */
1980 /* Routine for pushing any additional roots. In THREADS */
1981 /* environment, this is also responsible for marking from */
1982 /* thread stacks. */
1983 #ifndef THREADS
1984 void (*GC_push_other_roots)() = 0;
1985 #else /* THREADS */
1987 # ifdef PCR
1988 PCR_ERes GC_push_thread_stack(PCR_Th_T *t, PCR_Any dummy)
1990 struct PCR_ThCtl_TInfoRep info;
1991 PCR_ERes result;
1993 info.ti_stkLow = info.ti_stkHi = 0;
1994 result = PCR_ThCtl_GetInfo(t, &info);
1995 GC_push_all_stack((ptr_t)(info.ti_stkLow), (ptr_t)(info.ti_stkHi));
1996 return(result);
1999 /* Push the contents of an old object. We treat this as stack */
2000 /* data only becasue that makes it robust against mark stack */
2001 /* overflow. */
2002 PCR_ERes GC_push_old_obj(void *p, size_t size, PCR_Any data)
2004 GC_push_all_stack((ptr_t)p, (ptr_t)p + size);
2005 return(PCR_ERes_okay);
2009 void GC_default_push_other_roots GC_PROTO((void))
2011 /* Traverse data allocated by previous memory managers. */
2013 extern struct PCR_MM_ProcsRep * GC_old_allocator;
2015 if ((*(GC_old_allocator->mmp_enumerate))(PCR_Bool_false,
2016 GC_push_old_obj, 0)
2017 != PCR_ERes_okay) {
2018 ABORT("Old object enumeration failed");
2021 /* Traverse all thread stacks. */
2022 if (PCR_ERes_IsErr(
2023 PCR_ThCtl_ApplyToAllOtherThreads(GC_push_thread_stack,0))
2024 || PCR_ERes_IsErr(GC_push_thread_stack(PCR_Th_CurrThread(), 0))) {
2025 ABORT("Thread stack marking failed\n");
2029 # endif /* PCR */
2031 # ifdef SRC_M3
2033 # ifdef ALL_INTERIOR_POINTERS
2034 --> misconfigured
2035 # endif
2037 void GC_push_thread_structures GC_PROTO((void))
2039 /* Not our responsibibility. */
2042 extern void ThreadF__ProcessStacks();
2044 void GC_push_thread_stack(start, stop)
2045 word start, stop;
2047 GC_push_all_stack((ptr_t)start, (ptr_t)stop + sizeof(word));
2050 /* Push routine with M3 specific calling convention. */
2051 GC_m3_push_root(dummy1, p, dummy2, dummy3)
2052 word *p;
2053 ptr_t dummy1, dummy2;
2054 int dummy3;
2056 word q = *p;
2058 GC_PUSH_ONE_STACK(q, p);
2061 /* M3 set equivalent to RTHeap.TracedRefTypes */
2062 typedef struct { int elts[1]; } RefTypeSet;
2063 RefTypeSet GC_TracedRefTypes = {{0x1}};
2065 void GC_default_push_other_roots GC_PROTO((void))
2067 /* Use the M3 provided routine for finding static roots. */
2068 /* This is a bit dubious, since it presumes no C roots. */
2069 /* We handle the collector roots explicitly in GC_push_roots */
2070 RTMain__GlobalMapProc(GC_m3_push_root, 0, GC_TracedRefTypes);
2071 if (GC_words_allocd > 0) {
2072 ThreadF__ProcessStacks(GC_push_thread_stack);
2074 /* Otherwise this isn't absolutely necessary, and we have */
2075 /* startup ordering problems. */
2078 # endif /* SRC_M3 */
2080 # if defined(GC_SOLARIS_THREADS) || defined(GC_PTHREADS) || \
2081 defined(GC_WIN32_THREADS)
2083 extern void GC_push_all_stacks();
2085 void GC_default_push_other_roots GC_PROTO((void))
2087 GC_push_all_stacks();
2090 # endif /* GC_SOLARIS_THREADS || GC_PTHREADS */
2092 void (*GC_push_other_roots) GC_PROTO((void)) = GC_default_push_other_roots;
2094 #endif /* THREADS */
2097 * Routines for accessing dirty bits on virtual pages.
2098 * We plan to eventually implement four strategies for doing so:
2099 * DEFAULT_VDB: A simple dummy implementation that treats every page
2100 * as possibly dirty. This makes incremental collection
2101 * useless, but the implementation is still correct.
2102 * PCR_VDB: Use PPCRs virtual dirty bit facility.
2103 * PROC_VDB: Use the /proc facility for reading dirty bits. Only
2104 * works under some SVR4 variants. Even then, it may be
2105 * too slow to be entirely satisfactory. Requires reading
2106 * dirty bits for entire address space. Implementations tend
2107 * to assume that the client is a (slow) debugger.
2108 * MPROTECT_VDB:Protect pages and then catch the faults to keep track of
2109 * dirtied pages. The implementation (and implementability)
2110 * is highly system dependent. This usually fails when system
2111 * calls write to a protected page. We prevent the read system
2112 * call from doing so. It is the clients responsibility to
2113 * make sure that other system calls are similarly protected
2114 * or write only to the stack.
2116 GC_bool GC_dirty_maintained = FALSE;
2118 # ifdef DEFAULT_VDB
2120 /* All of the following assume the allocation lock is held, and */
2121 /* signals are disabled. */
2123 /* The client asserts that unallocated pages in the heap are never */
2124 /* written. */
2126 /* Initialize virtual dirty bit implementation. */
2127 void GC_dirty_init()
2129 # ifdef PRINTSTATS
2130 GC_printf0("Initializing DEFAULT_VDB...\n");
2131 # endif
2132 GC_dirty_maintained = TRUE;
2135 /* Retrieve system dirty bits for heap to a local buffer. */
2136 /* Restore the systems notion of which pages are dirty. */
2137 void GC_read_dirty()
2140 /* Is the HBLKSIZE sized page at h marked dirty in the local buffer? */
2141 /* If the actual page size is different, this returns TRUE if any */
2142 /* of the pages overlapping h are dirty. This routine may err on the */
2143 /* side of labelling pages as dirty (and this implementation does). */
2144 /*ARGSUSED*/
2145 GC_bool GC_page_was_dirty(h)
2146 struct hblk *h;
2148 return(TRUE);
2152 * The following two routines are typically less crucial. They matter
2153 * most with large dynamic libraries, or if we can't accurately identify
2154 * stacks, e.g. under Solaris 2.X. Otherwise the following default
2155 * versions are adequate.
2158 /* Could any valid GC heap pointer ever have been written to this page? */
2159 /*ARGSUSED*/
2160 GC_bool GC_page_was_ever_dirty(h)
2161 struct hblk *h;
2163 return(TRUE);
2166 /* Reset the n pages starting at h to "was never dirty" status. */
2167 void GC_is_fresh(h, n)
2168 struct hblk *h;
2169 word n;
2173 /* A call that: */
2174 /* I) hints that [h, h+nblocks) is about to be written. */
2175 /* II) guarantees that protection is removed. */
2176 /* (I) may speed up some dirty bit implementations. */
2177 /* (II) may be essential if we need to ensure that */
2178 /* pointer-free system call buffers in the heap are */
2179 /* not protected. */
2180 /*ARGSUSED*/
2181 void GC_remove_protection(h, nblocks, is_ptrfree)
2182 struct hblk *h;
2183 word nblocks;
2184 GC_bool is_ptrfree;
2188 # endif /* DEFAULT_VDB */
2191 # ifdef MPROTECT_VDB
2194 * See DEFAULT_VDB for interface descriptions.
2198 * This implementation maintains dirty bits itself by catching write
2199 * faults and keeping track of them. We assume nobody else catches
2200 * SIGBUS or SIGSEGV. We assume no write faults occur in system calls.
2201 * This means that clients must ensure that system calls don't write
2202 * to the write-protected heap. Probably the best way to do this is to
2203 * ensure that system calls write at most to POINTERFREE objects in the
2204 * heap, and do even that only if we are on a platform on which those
2205 * are not protected. Another alternative is to wrap system calls
2206 * (see example for read below), but the current implementation holds
2207 * a lock across blocking calls, making it problematic for multithreaded
2208 * applications.
2209 * We assume the page size is a multiple of HBLKSIZE.
2210 * We prefer them to be the same. We avoid protecting POINTERFREE
2211 * objects only if they are the same.
2214 # if !defined(MSWIN32) && !defined(MSWINCE) && !defined(DARWIN)
2216 # include <sys/mman.h>
2217 # include <signal.h>
2218 # include <sys/syscall.h>
2220 # define PROTECT(addr, len) \
2221 if (mprotect((caddr_t)(addr), (size_t)(len), \
2222 PROT_READ | OPT_PROT_EXEC) < 0) { \
2223 ABORT("mprotect failed"); \
2225 # define UNPROTECT(addr, len) \
2226 if (mprotect((caddr_t)(addr), (size_t)(len), \
2227 PROT_WRITE | PROT_READ | OPT_PROT_EXEC ) < 0) { \
2228 ABORT("un-mprotect failed"); \
2231 # else
2233 # ifdef DARWIN
2234 /* Using vm_protect (mach syscall) over mprotect (BSD syscall) seems to
2235 decrease the likelihood of some of the problems described below. */
2236 #include <mach/vm_map.h>
2237 static mach_port_t GC_task_self;
2238 #define PROTECT(addr,len) \
2239 if(vm_protect(GC_task_self,(vm_address_t)(addr),(vm_size_t)(len), \
2240 FALSE,VM_PROT_READ) != KERN_SUCCESS) { \
2241 ABORT("vm_portect failed"); \
2243 #define UNPROTECT(addr,len) \
2244 if(vm_protect(GC_task_self,(vm_address_t)(addr),(vm_size_t)(len), \
2245 FALSE,VM_PROT_READ|VM_PROT_WRITE) != KERN_SUCCESS) { \
2246 ABORT("vm_portect failed"); \
2248 # else
2250 # ifndef MSWINCE
2251 # include <signal.h>
2252 # endif
2254 static DWORD protect_junk;
2255 # define PROTECT(addr, len) \
2256 if (!VirtualProtect((addr), (len), PAGE_EXECUTE_READ, \
2257 &protect_junk)) { \
2258 DWORD last_error = GetLastError(); \
2259 GC_printf1("Last error code: %lx\n", last_error); \
2260 ABORT("VirtualProtect failed"); \
2262 # define UNPROTECT(addr, len) \
2263 if (!VirtualProtect((addr), (len), PAGE_EXECUTE_READWRITE, \
2264 &protect_junk)) { \
2265 ABORT("un-VirtualProtect failed"); \
2267 # endif /* !DARWIN */
2268 # endif /* MSWIN32 || MSWINCE || DARWIN */
2270 #if defined(SUNOS4) || (defined(FREEBSD) && !defined(SUNOS5SIGS))
2271 typedef void (* SIG_PF)();
2272 #endif /* SUNOS4 || (FREEBSD && !SUNOS5SIGS) */
2274 #if defined(SUNOS5SIGS) || defined(OSF1) || defined(LINUX) \
2275 || defined(HURD)
2276 # ifdef __STDC__
2277 typedef void (* SIG_PF)(int);
2278 # else
2279 typedef void (* SIG_PF)();
2280 # endif
2281 #endif /* SUNOS5SIGS || OSF1 || LINUX || HURD */
2283 #if defined(MSWIN32)
2284 typedef LPTOP_LEVEL_EXCEPTION_FILTER SIG_PF;
2285 # undef SIG_DFL
2286 # define SIG_DFL (LPTOP_LEVEL_EXCEPTION_FILTER) (-1)
2287 #endif
2288 #if defined(MSWINCE)
2289 typedef LONG (WINAPI *SIG_PF)(struct _EXCEPTION_POINTERS *);
2290 # undef SIG_DFL
2291 # define SIG_DFL (SIG_PF) (-1)
2292 #endif
2294 #if defined(IRIX5) || defined(OSF1) || defined(HURD)
2295 typedef void (* REAL_SIG_PF)(int, int, struct sigcontext *);
2296 #endif /* IRIX5 || OSF1 || HURD */
2298 #if defined(SUNOS5SIGS)
2299 # if defined(HPUX) || defined(FREEBSD)
2300 # define SIGINFO_T siginfo_t
2301 # else
2302 # define SIGINFO_T struct siginfo
2303 # endif
2304 # ifdef __STDC__
2305 typedef void (* REAL_SIG_PF)(int, SIGINFO_T *, void *);
2306 # else
2307 typedef void (* REAL_SIG_PF)();
2308 # endif
2309 #endif /* SUNOS5SIGS */
2311 #if defined(LINUX)
2312 # if __GLIBC__ > 2 || __GLIBC__ == 2 && __GLIBC_MINOR__ >= 2
2313 typedef struct sigcontext s_c;
2314 # else /* glibc < 2.2 */
2315 # include <linux/version.h>
2316 # if (LINUX_VERSION_CODE >= 0x20100) && !defined(M68K) || defined(ALPHA) || defined(ARM32)
2317 typedef struct sigcontext s_c;
2318 # else
2319 typedef struct sigcontext_struct s_c;
2320 # endif
2321 # endif /* glibc < 2.2 */
2322 # if defined(ALPHA) || defined(M68K)
2323 typedef void (* REAL_SIG_PF)(int, int, s_c *);
2324 # else
2325 # if defined(IA64) || defined(HP_PA) || defined(X86_64)
2326 typedef void (* REAL_SIG_PF)(int, siginfo_t *, s_c *);
2327 /* FIXME: */
2328 /* According to SUSV3, the last argument should have type */
2329 /* void * or ucontext_t * */
2330 # else
2331 typedef void (* REAL_SIG_PF)(int, s_c);
2332 # endif
2333 # endif
2334 # ifdef ALPHA
2335 /* Retrieve fault address from sigcontext structure by decoding */
2336 /* instruction. */
2337 char * get_fault_addr(s_c *sc) {
2338 unsigned instr;
2339 word faultaddr;
2341 instr = *((unsigned *)(sc->sc_pc));
2342 faultaddr = sc->sc_regs[(instr >> 16) & 0x1f];
2343 faultaddr += (word) (((int)instr << 16) >> 16);
2344 return (char *)faultaddr;
2346 # endif /* !ALPHA */
2347 # endif /* LINUX */
2349 #ifndef DARWIN
2350 SIG_PF GC_old_bus_handler;
2351 SIG_PF GC_old_segv_handler; /* Also old MSWIN32 ACCESS_VIOLATION filter */
2352 #endif /* !DARWIN */
2354 #if defined(THREADS)
2355 /* We need to lock around the bitmap update in the write fault handler */
2356 /* in order to avoid the risk of losing a bit. We do this with a */
2357 /* test-and-set spin lock if we know how to do that. Otherwise we */
2358 /* check whether we are already in the handler and use the dumb but */
2359 /* safe fallback algorithm of setting all bits in the word. */
2360 /* Contention should be very rare, so we do the minimum to handle it */
2361 /* correctly. */
2362 #ifdef GC_TEST_AND_SET_DEFINED
2363 static VOLATILE unsigned int fault_handler_lock = 0;
2364 void async_set_pht_entry_from_index(VOLATILE page_hash_table db, int index) {
2365 while (GC_test_and_set(&fault_handler_lock)) {}
2366 /* Could also revert to set_pht_entry_from_index_safe if initial */
2367 /* GC_test_and_set fails. */
2368 set_pht_entry_from_index(db, index);
2369 GC_clear(&fault_handler_lock);
2371 #else /* !GC_TEST_AND_SET_DEFINED */
2372 /* THIS IS INCORRECT! The dirty bit vector may be temporarily wrong, */
2373 /* just before we notice the conflict and correct it. We may end up */
2374 /* looking at it while it's wrong. But this requires contention */
2375 /* exactly when a GC is triggered, which seems far less likely to */
2376 /* fail than the old code, which had no reported failures. Thus we */
2377 /* leave it this way while we think of something better, or support */
2378 /* GC_test_and_set on the remaining platforms. */
2379 static VOLATILE word currently_updating = 0;
2380 void async_set_pht_entry_from_index(VOLATILE page_hash_table db, int index) {
2381 unsigned int update_dummy;
2382 currently_updating = (word)(&update_dummy);
2383 set_pht_entry_from_index(db, index);
2384 /* If we get contention in the 10 or so instruction window here, */
2385 /* and we get stopped by a GC between the two updates, we lose! */
2386 if (currently_updating != (word)(&update_dummy)) {
2387 set_pht_entry_from_index_safe(db, index);
2388 /* We claim that if two threads concurrently try to update the */
2389 /* dirty bit vector, the first one to execute UPDATE_START */
2390 /* will see it changed when UPDATE_END is executed. (Note that */
2391 /* &update_dummy must differ in two distinct threads.) It */
2392 /* will then execute set_pht_entry_from_index_safe, thus */
2393 /* returning us to a safe state, though not soon enough. */
2396 #endif /* !GC_TEST_AND_SET_DEFINED */
2397 #else /* !THREADS */
2398 # define async_set_pht_entry_from_index(db, index) \
2399 set_pht_entry_from_index(db, index)
2400 #endif /* !THREADS */
2402 /*ARGSUSED*/
2403 #if !defined(DARWIN)
2404 # if defined (SUNOS4) || (defined(FREEBSD) && !defined(SUNOS5SIGS))
2405 void GC_write_fault_handler(sig, code, scp, addr)
2406 int sig, code;
2407 struct sigcontext *scp;
2408 char * addr;
2409 # ifdef SUNOS4
2410 # define SIG_OK (sig == SIGSEGV || sig == SIGBUS)
2411 # define CODE_OK (FC_CODE(code) == FC_PROT \
2412 || (FC_CODE(code) == FC_OBJERR \
2413 && FC_ERRNO(code) == FC_PROT))
2414 # endif
2415 # ifdef FREEBSD
2416 # define SIG_OK (sig == SIGBUS)
2417 # define CODE_OK TRUE
2418 # endif
2419 # endif /* SUNOS4 || (FREEBSD && !SUNOS5SIGS) */
2421 # if defined(IRIX5) || defined(OSF1) || defined(HURD)
2422 # include <errno.h>
2423 void GC_write_fault_handler(int sig, int code, struct sigcontext *scp)
2424 # ifdef OSF1
2425 # define SIG_OK (sig == SIGSEGV)
2426 # define CODE_OK (code == 2 /* experimentally determined */)
2427 # endif
2428 # ifdef IRIX5
2429 # define SIG_OK (sig == SIGSEGV)
2430 # define CODE_OK (code == EACCES)
2431 # endif
2432 # ifdef HURD
2433 # define SIG_OK (sig == SIGBUS || sig == SIGSEGV)
2434 # define CODE_OK TRUE
2435 # endif
2436 # endif /* IRIX5 || OSF1 || HURD */
2438 # if defined(LINUX)
2439 # if defined(ALPHA) || defined(M68K)
2440 void GC_write_fault_handler(int sig, int code, s_c * sc)
2441 # else
2442 # if defined(IA64) || defined(HP_PA) || defined(X86_64)
2443 void GC_write_fault_handler(int sig, siginfo_t * si, s_c * scp)
2444 # else
2445 # if defined(ARM32)
2446 void GC_write_fault_handler(int sig, int a2, int a3, int a4, s_c sc)
2447 # else
2448 void GC_write_fault_handler(int sig, s_c sc)
2449 # endif
2450 # endif
2451 # endif
2452 # define SIG_OK (sig == SIGSEGV)
2453 # define CODE_OK TRUE
2454 /* Empirically c.trapno == 14, on IA32, but is that useful? */
2455 /* Should probably consider alignment issues on other */
2456 /* architectures. */
2457 # endif /* LINUX */
2459 # if defined(SUNOS5SIGS)
2460 # ifdef __STDC__
2461 void GC_write_fault_handler(int sig, SIGINFO_T *scp, void * context)
2462 # else
2463 void GC_write_fault_handler(sig, scp, context)
2464 int sig;
2465 SIGINFO_T *scp;
2466 void * context;
2467 # endif
2468 # ifdef HPUX
2469 # define SIG_OK (sig == SIGSEGV || sig == SIGBUS)
2470 # define CODE_OK (scp -> si_code == SEGV_ACCERR) \
2471 || (scp -> si_code == BUS_ADRERR) \
2472 || (scp -> si_code == BUS_UNKNOWN) \
2473 || (scp -> si_code == SEGV_UNKNOWN) \
2474 || (scp -> si_code == BUS_OBJERR)
2475 # else
2476 # ifdef FREEBSD
2477 # define SIG_OK (sig == SIGBUS)
2478 # define CODE_OK (scp -> si_code == BUS_PAGE_FAULT)
2479 # else
2480 # define SIG_OK (sig == SIGSEGV)
2481 # define CODE_OK (scp -> si_code == SEGV_ACCERR)
2482 # endif
2483 # endif
2484 # endif /* SUNOS5SIGS */
2486 # if defined(MSWIN32) || defined(MSWINCE)
2487 LONG WINAPI GC_write_fault_handler(struct _EXCEPTION_POINTERS *exc_info)
2488 # define SIG_OK (exc_info -> ExceptionRecord -> ExceptionCode == \
2489 STATUS_ACCESS_VIOLATION)
2490 # define CODE_OK (exc_info -> ExceptionRecord -> ExceptionInformation[0] == 1)
2491 /* Write fault */
2492 # endif /* MSWIN32 || MSWINCE */
2494 register unsigned i;
2495 # if defined(HURD)
2496 char *addr = (char *) code;
2497 # endif
2498 # ifdef IRIX5
2499 char * addr = (char *) (size_t) (scp -> sc_badvaddr);
2500 # endif
2501 # if defined(OSF1) && defined(ALPHA)
2502 char * addr = (char *) (scp -> sc_traparg_a0);
2503 # endif
2504 # ifdef SUNOS5SIGS
2505 char * addr = (char *) (scp -> si_addr);
2506 # endif
2507 # ifdef LINUX
2508 # if defined(I386)
2509 char * addr = (char *) (sc.cr2);
2510 # else
2511 # if defined(M68K)
2512 char * addr = NULL;
2514 struct sigcontext *scp = (struct sigcontext *)(sc);
2516 int format = (scp->sc_formatvec >> 12) & 0xf;
2517 unsigned long *framedata = (unsigned long *)(scp + 1);
2518 unsigned long ea;
2520 if (format == 0xa || format == 0xb) {
2521 /* 68020/030 */
2522 ea = framedata[2];
2523 } else if (format == 7) {
2524 /* 68040 */
2525 ea = framedata[3];
2526 if (framedata[1] & 0x08000000) {
2527 /* correct addr on misaligned access */
2528 ea = (ea+4095)&(~4095);
2530 } else if (format == 4) {
2531 /* 68060 */
2532 ea = framedata[0];
2533 if (framedata[1] & 0x08000000) {
2534 /* correct addr on misaligned access */
2535 ea = (ea+4095)&(~4095);
2538 addr = (char *)ea;
2539 # else
2540 # ifdef ALPHA
2541 char * addr = get_fault_addr(sc);
2542 # else
2543 # if defined(IA64) || defined(HP_PA) || defined(X86_64)
2544 char * addr = si -> si_addr;
2545 /* I believe this is claimed to work on all platforms for */
2546 /* Linux 2.3.47 and later. Hopefully we don't have to */
2547 /* worry about earlier kernels on IA64. */
2548 # else
2549 # if defined(POWERPC)
2550 char * addr = (char *) (sc.regs->dar);
2551 # else
2552 # if defined(ARM32)
2553 char * addr = (char *)sc.fault_address;
2554 # else
2555 # if defined(CRIS)
2556 char * addr = (char *)sc.regs.csraddr;
2557 # else
2558 --> architecture not supported
2559 # endif
2560 # endif
2561 # endif
2562 # endif
2563 # endif
2564 # endif
2565 # endif
2566 # endif
2567 # if defined(MSWIN32) || defined(MSWINCE)
2568 char * addr = (char *) (exc_info -> ExceptionRecord
2569 -> ExceptionInformation[1]);
2570 # define sig SIGSEGV
2571 # endif
2573 if (SIG_OK && CODE_OK) {
2574 register struct hblk * h =
2575 (struct hblk *)((word)addr & ~(GC_page_size-1));
2576 GC_bool in_allocd_block;
2578 # ifdef SUNOS5SIGS
2579 /* Address is only within the correct physical page. */
2580 in_allocd_block = FALSE;
2581 for (i = 0; i < divHBLKSZ(GC_page_size); i++) {
2582 if (HDR(h+i) != 0) {
2583 in_allocd_block = TRUE;
2586 # else
2587 in_allocd_block = (HDR(addr) != 0);
2588 # endif
2589 if (!in_allocd_block) {
2590 /* FIXME - We should make sure that we invoke the */
2591 /* old handler with the appropriate calling */
2592 /* sequence, which often depends on SA_SIGINFO. */
2594 /* Heap blocks now begin and end on page boundaries */
2595 SIG_PF old_handler;
2597 if (sig == SIGSEGV) {
2598 old_handler = GC_old_segv_handler;
2599 } else {
2600 old_handler = GC_old_bus_handler;
2602 if (old_handler == SIG_DFL) {
2603 # if !defined(MSWIN32) && !defined(MSWINCE)
2604 GC_err_printf1("Segfault at 0x%lx\n", addr);
2605 ABORT("Unexpected bus error or segmentation fault");
2606 # else
2607 return(EXCEPTION_CONTINUE_SEARCH);
2608 # endif
2609 } else {
2610 # if defined (SUNOS4) \
2611 || (defined(FREEBSD) && !defined(SUNOS5SIGS))
2612 (*old_handler) (sig, code, scp, addr);
2613 return;
2614 # endif
2615 # if defined (SUNOS5SIGS)
2617 * FIXME: For FreeBSD, this code should check if the
2618 * old signal handler used the traditional BSD style and
2619 * if so call it using that style.
2621 (*(REAL_SIG_PF)old_handler) (sig, scp, context);
2622 return;
2623 # endif
2624 # if defined (LINUX)
2625 # if defined(ALPHA) || defined(M68K)
2626 (*(REAL_SIG_PF)old_handler) (sig, code, sc);
2627 # else
2628 # if defined(IA64) || defined(HP_PA) || defined(X86_64)
2629 (*(REAL_SIG_PF)old_handler) (sig, si, scp);
2630 # else
2631 (*(REAL_SIG_PF)old_handler) (sig, sc);
2632 # endif
2633 # endif
2634 return;
2635 # endif
2636 # if defined (IRIX5) || defined(OSF1) || defined(HURD)
2637 (*(REAL_SIG_PF)old_handler) (sig, code, scp);
2638 return;
2639 # endif
2640 # ifdef MSWIN32
2641 return((*old_handler)(exc_info));
2642 # endif
2645 UNPROTECT(h, GC_page_size);
2646 /* We need to make sure that no collection occurs between */
2647 /* the UNPROTECT and the setting of the dirty bit. Otherwise */
2648 /* a write by a third thread might go unnoticed. Reversing */
2649 /* the order is just as bad, since we would end up unprotecting */
2650 /* a page in a GC cycle during which it's not marked. */
2651 /* Currently we do this by disabling the thread stopping */
2652 /* signals while this handler is running. An alternative might */
2653 /* be to record the fact that we're about to unprotect, or */
2654 /* have just unprotected a page in the GC's thread structure, */
2655 /* and then to have the thread stopping code set the dirty */
2656 /* flag, if necessary. */
2657 for (i = 0; i < divHBLKSZ(GC_page_size); i++) {
2658 register int index = PHT_HASH(h+i);
2660 async_set_pht_entry_from_index(GC_dirty_pages, index);
2662 # if defined(OSF1)
2663 /* These reset the signal handler each time by default. */
2664 signal(SIGSEGV, (SIG_PF) GC_write_fault_handler);
2665 # endif
2666 /* The write may not take place before dirty bits are read. */
2667 /* But then we'll fault again ... */
2668 # if defined(MSWIN32) || defined(MSWINCE)
2669 return(EXCEPTION_CONTINUE_EXECUTION);
2670 # else
2671 return;
2672 # endif
2674 #if defined(MSWIN32) || defined(MSWINCE)
2675 return EXCEPTION_CONTINUE_SEARCH;
2676 #else
2677 GC_err_printf1("Segfault at 0x%lx\n", addr);
2678 ABORT("Unexpected bus error or segmentation fault");
2679 #endif
2681 #endif /* !DARWIN */
2684 * We hold the allocation lock. We expect block h to be written
2685 * shortly. Ensure that all pages containing any part of the n hblks
2686 * starting at h are no longer protected. If is_ptrfree is false,
2687 * also ensure that they will subsequently appear to be dirty.
2689 void GC_remove_protection(h, nblocks, is_ptrfree)
2690 struct hblk *h;
2691 word nblocks;
2692 GC_bool is_ptrfree;
2694 struct hblk * h_trunc; /* Truncated to page boundary */
2695 struct hblk * h_end; /* Page boundary following block end */
2696 struct hblk * current;
2697 GC_bool found_clean;
2699 if (!GC_dirty_maintained) return;
2700 h_trunc = (struct hblk *)((word)h & ~(GC_page_size-1));
2701 h_end = (struct hblk *)(((word)(h + nblocks) + GC_page_size-1)
2702 & ~(GC_page_size-1));
2703 found_clean = FALSE;
2704 for (current = h_trunc; current < h_end; ++current) {
2705 int index = PHT_HASH(current);
2707 if (!is_ptrfree || current < h || current >= h + nblocks) {
2708 async_set_pht_entry_from_index(GC_dirty_pages, index);
2711 UNPROTECT(h_trunc, (ptr_t)h_end - (ptr_t)h_trunc);
2714 #if !defined(DARWIN)
2715 void GC_dirty_init()
2717 # if defined(SUNOS5SIGS) || defined(IRIX5) || defined(LINUX) || \
2718 defined(OSF1) || defined(HURD)
2719 struct sigaction act, oldact;
2720 /* We should probably specify SA_SIGINFO for Linux, and handle */
2721 /* the different architectures more uniformly. */
2722 # if defined(IRIX5) || defined(LINUX) && !defined(X86_64) \
2723 || defined(OSF1) || defined(HURD)
2724 act.sa_flags = SA_RESTART;
2725 act.sa_handler = (SIG_PF)GC_write_fault_handler;
2726 # else
2727 act.sa_flags = SA_RESTART | SA_SIGINFO;
2728 act.sa_sigaction = GC_write_fault_handler;
2729 # endif
2730 (void)sigemptyset(&act.sa_mask);
2731 # ifdef SIG_SUSPEND
2732 /* Arrange to postpone SIG_SUSPEND while we're in a write fault */
2733 /* handler. This effectively makes the handler atomic w.r.t. */
2734 /* stopping the world for GC. */
2735 (void)sigaddset(&act.sa_mask, SIG_SUSPEND);
2736 # endif /* SIG_SUSPEND */
2737 # endif
2738 # ifdef PRINTSTATS
2739 GC_printf0("Inititalizing mprotect virtual dirty bit implementation\n");
2740 # endif
2741 GC_dirty_maintained = TRUE;
2742 if (GC_page_size % HBLKSIZE != 0) {
2743 GC_err_printf0("Page size not multiple of HBLKSIZE\n");
2744 ABORT("Page size not multiple of HBLKSIZE");
2746 # if defined(SUNOS4) || (defined(FREEBSD) && !defined(SUNOS5SIGS))
2747 GC_old_bus_handler = signal(SIGBUS, GC_write_fault_handler);
2748 if (GC_old_bus_handler == SIG_IGN) {
2749 GC_err_printf0("Previously ignored bus error!?");
2750 GC_old_bus_handler = SIG_DFL;
2752 if (GC_old_bus_handler != SIG_DFL) {
2753 # ifdef PRINTSTATS
2754 GC_err_printf0("Replaced other SIGBUS handler\n");
2755 # endif
2757 # endif
2758 # if defined(SUNOS4)
2759 GC_old_segv_handler = signal(SIGSEGV, (SIG_PF)GC_write_fault_handler);
2760 if (GC_old_segv_handler == SIG_IGN) {
2761 GC_err_printf0("Previously ignored segmentation violation!?");
2762 GC_old_segv_handler = SIG_DFL;
2764 if (GC_old_segv_handler != SIG_DFL) {
2765 # ifdef PRINTSTATS
2766 GC_err_printf0("Replaced other SIGSEGV handler\n");
2767 # endif
2769 # endif
2770 # if (defined(SUNOS5SIGS) && !defined(FREEBSD)) || defined(IRIX5) \
2771 || defined(LINUX) || defined(OSF1) || defined(HURD)
2772 /* SUNOS5SIGS includes HPUX */
2773 # if defined(GC_IRIX_THREADS)
2774 sigaction(SIGSEGV, 0, &oldact);
2775 sigaction(SIGSEGV, &act, 0);
2776 # else
2778 int res = sigaction(SIGSEGV, &act, &oldact);
2779 if (res != 0) ABORT("Sigaction failed");
2781 # endif
2782 # if defined(_sigargs) || defined(HURD) || !defined(SA_SIGINFO)
2783 /* This is Irix 5.x, not 6.x. Irix 5.x does not have */
2784 /* sa_sigaction. */
2785 GC_old_segv_handler = oldact.sa_handler;
2786 # else /* Irix 6.x or SUNOS5SIGS or LINUX */
2787 if (oldact.sa_flags & SA_SIGINFO) {
2788 GC_old_segv_handler = (SIG_PF)(oldact.sa_sigaction);
2789 } else {
2790 GC_old_segv_handler = oldact.sa_handler;
2792 # endif
2793 if (GC_old_segv_handler == SIG_IGN) {
2794 GC_err_printf0("Previously ignored segmentation violation!?");
2795 GC_old_segv_handler = SIG_DFL;
2797 if (GC_old_segv_handler != SIG_DFL) {
2798 # ifdef PRINTSTATS
2799 GC_err_printf0("Replaced other SIGSEGV handler\n");
2800 # endif
2802 # endif /* (SUNOS5SIGS && !FREEBSD) || IRIX5 || LINUX || OSF1 || HURD */
2803 # if defined(HPUX) || defined(LINUX) || defined(HURD) \
2804 || (defined(FREEBSD) && defined(SUNOS5SIGS))
2805 sigaction(SIGBUS, &act, &oldact);
2806 GC_old_bus_handler = oldact.sa_handler;
2807 if (GC_old_bus_handler == SIG_IGN) {
2808 GC_err_printf0("Previously ignored bus error!?");
2809 GC_old_bus_handler = SIG_DFL;
2811 if (GC_old_bus_handler != SIG_DFL) {
2812 # ifdef PRINTSTATS
2813 GC_err_printf0("Replaced other SIGBUS handler\n");
2814 # endif
2816 # endif /* HPUX || LINUX || HURD || (FREEBSD && SUNOS5SIGS) */
2817 # if defined(MSWIN32)
2818 GC_old_segv_handler = SetUnhandledExceptionFilter(GC_write_fault_handler);
2819 if (GC_old_segv_handler != NULL) {
2820 # ifdef PRINTSTATS
2821 GC_err_printf0("Replaced other UnhandledExceptionFilter\n");
2822 # endif
2823 } else {
2824 GC_old_segv_handler = SIG_DFL;
2826 # endif
2828 #endif /* !DARWIN */
2830 int GC_incremental_protection_needs()
2832 if (GC_page_size == HBLKSIZE) {
2833 return GC_PROTECTS_POINTER_HEAP;
2834 } else {
2835 return GC_PROTECTS_POINTER_HEAP | GC_PROTECTS_PTRFREE_HEAP;
2839 #define HAVE_INCREMENTAL_PROTECTION_NEEDS
2841 #define IS_PTRFREE(hhdr) ((hhdr)->hb_descr == 0)
2843 #define PAGE_ALIGNED(x) !((word)(x) & (GC_page_size - 1))
2844 void GC_protect_heap()
2846 ptr_t start;
2847 word len;
2848 struct hblk * current;
2849 struct hblk * current_start; /* Start of block to be protected. */
2850 struct hblk * limit;
2851 unsigned i;
2852 GC_bool protect_all =
2853 (0 != (GC_incremental_protection_needs() & GC_PROTECTS_PTRFREE_HEAP));
2854 for (i = 0; i < GC_n_heap_sects; i++) {
2855 start = GC_heap_sects[i].hs_start;
2856 len = GC_heap_sects[i].hs_bytes;
2857 if (protect_all) {
2858 PROTECT(start, len);
2859 } else {
2860 GC_ASSERT(PAGE_ALIGNED(len))
2861 GC_ASSERT(PAGE_ALIGNED(start))
2862 current_start = current = (struct hblk *)start;
2863 limit = (struct hblk *)(start + len);
2864 while (current < limit) {
2865 hdr * hhdr;
2866 word nhblks;
2867 GC_bool is_ptrfree;
2869 GC_ASSERT(PAGE_ALIGNED(current));
2870 GET_HDR(current, hhdr);
2871 if (IS_FORWARDING_ADDR_OR_NIL(hhdr)) {
2872 /* This can happen only if we're at the beginning of a */
2873 /* heap segment, and a block spans heap segments. */
2874 /* We will handle that block as part of the preceding */
2875 /* segment. */
2876 GC_ASSERT(current_start == current);
2877 current_start = ++current;
2878 continue;
2880 if (HBLK_IS_FREE(hhdr)) {
2881 GC_ASSERT(PAGE_ALIGNED(hhdr -> hb_sz));
2882 nhblks = divHBLKSZ(hhdr -> hb_sz);
2883 is_ptrfree = TRUE; /* dirty on alloc */
2884 } else {
2885 nhblks = OBJ_SZ_TO_BLOCKS(hhdr -> hb_sz);
2886 is_ptrfree = IS_PTRFREE(hhdr);
2888 if (is_ptrfree) {
2889 if (current_start < current) {
2890 PROTECT(current_start, (ptr_t)current - (ptr_t)current_start);
2892 current_start = (current += nhblks);
2893 } else {
2894 current += nhblks;
2897 if (current_start < current) {
2898 PROTECT(current_start, (ptr_t)current - (ptr_t)current_start);
2904 /* We assume that either the world is stopped or its OK to lose dirty */
2905 /* bits while this is happenning (as in GC_enable_incremental). */
2906 void GC_read_dirty()
2908 BCOPY((word *)GC_dirty_pages, GC_grungy_pages,
2909 (sizeof GC_dirty_pages));
2910 BZERO((word *)GC_dirty_pages, (sizeof GC_dirty_pages));
2911 GC_protect_heap();
2914 GC_bool GC_page_was_dirty(h)
2915 struct hblk * h;
2917 register word index = PHT_HASH(h);
2919 return(HDR(h) == 0 || get_pht_entry_from_index(GC_grungy_pages, index));
2923 * Acquiring the allocation lock here is dangerous, since this
2924 * can be called from within GC_call_with_alloc_lock, and the cord
2925 * package does so. On systems that allow nested lock acquisition, this
2926 * happens to work.
2927 * On other systems, SET_LOCK_HOLDER and friends must be suitably defined.
2930 static GC_bool syscall_acquired_lock = FALSE; /* Protected by GC lock. */
2932 void GC_begin_syscall()
2934 if (!I_HOLD_LOCK()) {
2935 LOCK();
2936 syscall_acquired_lock = TRUE;
2940 void GC_end_syscall()
2942 if (syscall_acquired_lock) {
2943 syscall_acquired_lock = FALSE;
2944 UNLOCK();
2948 void GC_unprotect_range(addr, len)
2949 ptr_t addr;
2950 word len;
2952 struct hblk * start_block;
2953 struct hblk * end_block;
2954 register struct hblk *h;
2955 ptr_t obj_start;
2957 if (!GC_dirty_maintained) return;
2958 obj_start = GC_base(addr);
2959 if (obj_start == 0) return;
2960 if (GC_base(addr + len - 1) != obj_start) {
2961 ABORT("GC_unprotect_range(range bigger than object)");
2963 start_block = (struct hblk *)((word)addr & ~(GC_page_size - 1));
2964 end_block = (struct hblk *)((word)(addr + len - 1) & ~(GC_page_size - 1));
2965 end_block += GC_page_size/HBLKSIZE - 1;
2966 for (h = start_block; h <= end_block; h++) {
2967 register word index = PHT_HASH(h);
2969 async_set_pht_entry_from_index(GC_dirty_pages, index);
2971 UNPROTECT(start_block,
2972 ((ptr_t)end_block - (ptr_t)start_block) + HBLKSIZE);
2975 #if 0
2977 /* We no longer wrap read by default, since that was causing too many */
2978 /* problems. It is preferred that the client instead avoids writing */
2979 /* to the write-protected heap with a system call. */
2980 /* This still serves as sample code if you do want to wrap system calls.*/
2982 #if !defined(MSWIN32) && !defined(MSWINCE) && !defined(GC_USE_LD_WRAP)
2983 /* Replacement for UNIX system call. */
2984 /* Other calls that write to the heap should be handled similarly. */
2985 /* Note that this doesn't work well for blocking reads: It will hold */
2986 /* the allocation lock for the entire duration of the call. Multithreaded */
2987 /* clients should really ensure that it won't block, either by setting */
2988 /* the descriptor nonblocking, or by calling select or poll first, to */
2989 /* make sure that input is available. */
2990 /* Another, preferred alternative is to ensure that system calls never */
2991 /* write to the protected heap (see above). */
2992 # if defined(__STDC__) && !defined(SUNOS4)
2993 # include <unistd.h>
2994 # include <sys/uio.h>
2995 ssize_t read(int fd, void *buf, size_t nbyte)
2996 # else
2997 # ifndef LINT
2998 int read(fd, buf, nbyte)
2999 # else
3000 int GC_read(fd, buf, nbyte)
3001 # endif
3002 int fd;
3003 char *buf;
3004 int nbyte;
3005 # endif
3007 int result;
3009 GC_begin_syscall();
3010 GC_unprotect_range(buf, (word)nbyte);
3011 # if defined(IRIX5) || defined(GC_LINUX_THREADS)
3012 /* Indirect system call may not always be easily available. */
3013 /* We could call _read, but that would interfere with the */
3014 /* libpthread interception of read. */
3015 /* On Linux, we have to be careful with the linuxthreads */
3016 /* read interception. */
3018 struct iovec iov;
3020 iov.iov_base = buf;
3021 iov.iov_len = nbyte;
3022 result = readv(fd, &iov, 1);
3024 # else
3025 # if defined(HURD)
3026 result = __read(fd, buf, nbyte);
3027 # else
3028 /* The two zero args at the end of this list are because one
3029 IA-64 syscall() implementation actually requires six args
3030 to be passed, even though they aren't always used. */
3031 result = syscall(SYS_read, fd, buf, nbyte, 0, 0);
3032 # endif /* !HURD */
3033 # endif
3034 GC_end_syscall();
3035 return(result);
3037 #endif /* !MSWIN32 && !MSWINCE && !GC_LINUX_THREADS */
3039 #if defined(GC_USE_LD_WRAP) && !defined(THREADS)
3040 /* We use the GNU ld call wrapping facility. */
3041 /* This requires that the linker be invoked with "--wrap read". */
3042 /* This can be done by passing -Wl,"--wrap read" to gcc. */
3043 /* I'm not sure that this actually wraps whatever version of read */
3044 /* is called by stdio. That code also mentions __read. */
3045 # include <unistd.h>
3046 ssize_t __wrap_read(int fd, void *buf, size_t nbyte)
3048 int result;
3050 GC_begin_syscall();
3051 GC_unprotect_range(buf, (word)nbyte);
3052 result = __real_read(fd, buf, nbyte);
3053 GC_end_syscall();
3054 return(result);
3057 /* We should probably also do this for __read, or whatever stdio */
3058 /* actually calls. */
3059 #endif
3061 #endif /* 0 */
3063 /*ARGSUSED*/
3064 GC_bool GC_page_was_ever_dirty(h)
3065 struct hblk *h;
3067 return(TRUE);
3070 /* Reset the n pages starting at h to "was never dirty" status. */
3071 /*ARGSUSED*/
3072 void GC_is_fresh(h, n)
3073 struct hblk *h;
3074 word n;
3078 # endif /* MPROTECT_VDB */
3080 # ifdef PROC_VDB
3083 * See DEFAULT_VDB for interface descriptions.
3087 * This implementaion assumes a Solaris 2.X like /proc pseudo-file-system
3088 * from which we can read page modified bits. This facility is far from
3089 * optimal (e.g. we would like to get the info for only some of the
3090 * address space), but it avoids intercepting system calls.
3093 #include <errno.h>
3094 #include <sys/types.h>
3095 #include <sys/signal.h>
3096 #include <sys/fault.h>
3097 #include <sys/syscall.h>
3098 #include <sys/procfs.h>
3099 #include <sys/stat.h>
3101 #define INITIAL_BUF_SZ 16384
3102 word GC_proc_buf_size = INITIAL_BUF_SZ;
3103 char *GC_proc_buf;
3105 #ifdef GC_SOLARIS_THREADS
3106 /* We don't have exact sp values for threads. So we count on */
3107 /* occasionally declaring stack pages to be fresh. Thus we */
3108 /* need a real implementation of GC_is_fresh. We can't clear */
3109 /* entries in GC_written_pages, since that would declare all */
3110 /* pages with the given hash address to be fresh. */
3111 # define MAX_FRESH_PAGES 8*1024 /* Must be power of 2 */
3112 struct hblk ** GC_fresh_pages; /* A direct mapped cache. */
3113 /* Collisions are dropped. */
3115 # define FRESH_PAGE_SLOT(h) (divHBLKSZ((word)(h)) & (MAX_FRESH_PAGES-1))
3116 # define ADD_FRESH_PAGE(h) \
3117 GC_fresh_pages[FRESH_PAGE_SLOT(h)] = (h)
3118 # define PAGE_IS_FRESH(h) \
3119 (GC_fresh_pages[FRESH_PAGE_SLOT(h)] == (h) && (h) != 0)
3120 #endif
3122 /* Add all pages in pht2 to pht1 */
3123 void GC_or_pages(pht1, pht2)
3124 page_hash_table pht1, pht2;
3126 register int i;
3128 for (i = 0; i < PHT_SIZE; i++) pht1[i] |= pht2[i];
3131 int GC_proc_fd;
3133 void GC_dirty_init()
3135 int fd;
3136 char buf[30];
3138 GC_dirty_maintained = TRUE;
3139 if (GC_words_allocd != 0 || GC_words_allocd_before_gc != 0) {
3140 register int i;
3142 for (i = 0; i < PHT_SIZE; i++) GC_written_pages[i] = (word)(-1);
3143 # ifdef PRINTSTATS
3144 GC_printf1("Allocated words:%lu:all pages may have been written\n",
3145 (unsigned long)
3146 (GC_words_allocd + GC_words_allocd_before_gc));
3147 # endif
3149 sprintf(buf, "/proc/%d", getpid());
3150 fd = open(buf, O_RDONLY);
3151 if (fd < 0) {
3152 ABORT("/proc open failed");
3154 GC_proc_fd = syscall(SYS_ioctl, fd, PIOCOPENPD, 0);
3155 close(fd);
3156 syscall(SYS_fcntl, GC_proc_fd, F_SETFD, FD_CLOEXEC);
3157 if (GC_proc_fd < 0) {
3158 ABORT("/proc ioctl failed");
3160 GC_proc_buf = GC_scratch_alloc(GC_proc_buf_size);
3161 # ifdef GC_SOLARIS_THREADS
3162 GC_fresh_pages = (struct hblk **)
3163 GC_scratch_alloc(MAX_FRESH_PAGES * sizeof (struct hblk *));
3164 if (GC_fresh_pages == 0) {
3165 GC_err_printf0("No space for fresh pages\n");
3166 EXIT();
3168 BZERO(GC_fresh_pages, MAX_FRESH_PAGES * sizeof (struct hblk *));
3169 # endif
3172 /* Ignore write hints. They don't help us here. */
3173 /*ARGSUSED*/
3174 void GC_remove_protection(h, nblocks, is_ptrfree)
3175 struct hblk *h;
3176 word nblocks;
3177 GC_bool is_ptrfree;
3181 #ifdef GC_SOLARIS_THREADS
3182 # define READ(fd,buf,nbytes) syscall(SYS_read, fd, buf, nbytes)
3183 #else
3184 # define READ(fd,buf,nbytes) read(fd, buf, nbytes)
3185 #endif
3187 void GC_read_dirty()
3189 unsigned long ps, np;
3190 int nmaps;
3191 ptr_t vaddr;
3192 struct prasmap * map;
3193 char * bufp;
3194 ptr_t current_addr, limit;
3195 int i;
3196 int dummy;
3198 BZERO(GC_grungy_pages, (sizeof GC_grungy_pages));
3200 bufp = GC_proc_buf;
3201 if (READ(GC_proc_fd, bufp, GC_proc_buf_size) <= 0) {
3202 # ifdef PRINTSTATS
3203 GC_printf1("/proc read failed: GC_proc_buf_size = %lu\n",
3204 GC_proc_buf_size);
3205 # endif
3207 /* Retry with larger buffer. */
3208 word new_size = 2 * GC_proc_buf_size;
3209 char * new_buf = GC_scratch_alloc(new_size);
3211 if (new_buf != 0) {
3212 GC_proc_buf = bufp = new_buf;
3213 GC_proc_buf_size = new_size;
3215 if (READ(GC_proc_fd, bufp, GC_proc_buf_size) <= 0) {
3216 WARN("Insufficient space for /proc read\n", 0);
3217 /* Punt: */
3218 memset(GC_grungy_pages, 0xff, sizeof (page_hash_table));
3219 memset(GC_written_pages, 0xff, sizeof(page_hash_table));
3220 # ifdef GC_SOLARIS_THREADS
3221 BZERO(GC_fresh_pages,
3222 MAX_FRESH_PAGES * sizeof (struct hblk *));
3223 # endif
3224 return;
3228 /* Copy dirty bits into GC_grungy_pages */
3229 nmaps = ((struct prpageheader *)bufp) -> pr_nmap;
3230 /* printf( "nmaps = %d, PG_REFERENCED = %d, PG_MODIFIED = %d\n",
3231 nmaps, PG_REFERENCED, PG_MODIFIED); */
3232 bufp = bufp + sizeof(struct prpageheader);
3233 for (i = 0; i < nmaps; i++) {
3234 map = (struct prasmap *)bufp;
3235 vaddr = (ptr_t)(map -> pr_vaddr);
3236 ps = map -> pr_pagesize;
3237 np = map -> pr_npage;
3238 /* printf("vaddr = 0x%X, ps = 0x%X, np = 0x%X\n", vaddr, ps, np); */
3239 limit = vaddr + ps * np;
3240 bufp += sizeof (struct prasmap);
3241 for (current_addr = vaddr;
3242 current_addr < limit; current_addr += ps){
3243 if ((*bufp++) & PG_MODIFIED) {
3244 register struct hblk * h = (struct hblk *) current_addr;
3246 while ((ptr_t)h < current_addr + ps) {
3247 register word index = PHT_HASH(h);
3249 set_pht_entry_from_index(GC_grungy_pages, index);
3250 # ifdef GC_SOLARIS_THREADS
3252 register int slot = FRESH_PAGE_SLOT(h);
3254 if (GC_fresh_pages[slot] == h) {
3255 GC_fresh_pages[slot] = 0;
3258 # endif
3259 h++;
3263 bufp += sizeof(long) - 1;
3264 bufp = (char *)((unsigned long)bufp & ~(sizeof(long)-1));
3266 /* Update GC_written_pages. */
3267 GC_or_pages(GC_written_pages, GC_grungy_pages);
3268 # ifdef GC_SOLARIS_THREADS
3269 /* Make sure that old stacks are considered completely clean */
3270 /* unless written again. */
3271 GC_old_stacks_are_fresh();
3272 # endif
3275 #undef READ
3277 GC_bool GC_page_was_dirty(h)
3278 struct hblk *h;
3280 register word index = PHT_HASH(h);
3281 register GC_bool result;
3283 result = get_pht_entry_from_index(GC_grungy_pages, index);
3284 # ifdef GC_SOLARIS_THREADS
3285 if (result && PAGE_IS_FRESH(h)) result = FALSE;
3286 /* This happens only if page was declared fresh since */
3287 /* the read_dirty call, e.g. because it's in an unused */
3288 /* thread stack. It's OK to treat it as clean, in */
3289 /* that case. And it's consistent with */
3290 /* GC_page_was_ever_dirty. */
3291 # endif
3292 return(result);
3295 GC_bool GC_page_was_ever_dirty(h)
3296 struct hblk *h;
3298 register word index = PHT_HASH(h);
3299 register GC_bool result;
3301 result = get_pht_entry_from_index(GC_written_pages, index);
3302 # ifdef GC_SOLARIS_THREADS
3303 if (result && PAGE_IS_FRESH(h)) result = FALSE;
3304 # endif
3305 return(result);
3308 /* Caller holds allocation lock. */
3309 void GC_is_fresh(h, n)
3310 struct hblk *h;
3311 word n;
3314 register word index;
3316 # ifdef GC_SOLARIS_THREADS
3317 register word i;
3319 if (GC_fresh_pages != 0) {
3320 for (i = 0; i < n; i++) {
3321 ADD_FRESH_PAGE(h + i);
3324 # endif
3327 # endif /* PROC_VDB */
3330 # ifdef PCR_VDB
3332 # include "vd/PCR_VD.h"
3334 # define NPAGES (32*1024) /* 128 MB */
3336 PCR_VD_DB GC_grungy_bits[NPAGES];
3338 ptr_t GC_vd_base; /* Address corresponding to GC_grungy_bits[0] */
3339 /* HBLKSIZE aligned. */
3341 void GC_dirty_init()
3343 GC_dirty_maintained = TRUE;
3344 /* For the time being, we assume the heap generally grows up */
3345 GC_vd_base = GC_heap_sects[0].hs_start;
3346 if (GC_vd_base == 0) {
3347 ABORT("Bad initial heap segment");
3349 if (PCR_VD_Start(HBLKSIZE, GC_vd_base, NPAGES*HBLKSIZE)
3350 != PCR_ERes_okay) {
3351 ABORT("dirty bit initialization failed");
3355 void GC_read_dirty()
3357 /* lazily enable dirty bits on newly added heap sects */
3359 static int onhs = 0;
3360 int nhs = GC_n_heap_sects;
3361 for( ; onhs < nhs; onhs++ ) {
3362 PCR_VD_WriteProtectEnable(
3363 GC_heap_sects[onhs].hs_start,
3364 GC_heap_sects[onhs].hs_bytes );
3369 if (PCR_VD_Clear(GC_vd_base, NPAGES*HBLKSIZE, GC_grungy_bits)
3370 != PCR_ERes_okay) {
3371 ABORT("dirty bit read failed");
3375 GC_bool GC_page_was_dirty(h)
3376 struct hblk *h;
3378 if((ptr_t)h < GC_vd_base || (ptr_t)h >= GC_vd_base + NPAGES*HBLKSIZE) {
3379 return(TRUE);
3381 return(GC_grungy_bits[h - (struct hblk *)GC_vd_base] & PCR_VD_DB_dirtyBit);
3384 /*ARGSUSED*/
3385 void GC_remove_protection(h, nblocks, is_ptrfree)
3386 struct hblk *h;
3387 word nblocks;
3388 GC_bool is_ptrfree;
3390 PCR_VD_WriteProtectDisable(h, nblocks*HBLKSIZE);
3391 PCR_VD_WriteProtectEnable(h, nblocks*HBLKSIZE);
3394 # endif /* PCR_VDB */
3396 #if defined(MPROTECT_VDB) && defined(DARWIN)
3397 /* The following sources were used as a *reference* for this exception handling
3398 code:
3399 1. Apple's mach/xnu documentation
3400 2. Timothy J. Wood's "Mach Exception Handlers 101" post to the
3401 omnigroup's macosx-dev list.
3402 www.omnigroup.com/mailman/archive/macosx-dev/2000-June/002030.html
3403 3. macosx-nat.c from Apple's GDB source code.
3406 /* The bug that caused all this trouble should now be fixed. This should
3407 eventually be removed if all goes well. */
3408 /* define BROKEN_EXCEPTION_HANDLING */
3410 #include <mach/mach.h>
3411 #include <mach/mach_error.h>
3412 #include <mach/thread_status.h>
3413 #include <mach/exception.h>
3414 #include <mach/task.h>
3415 #include <pthread.h>
3417 /* These are not defined in any header, although they are documented */
3418 extern boolean_t exc_server(mach_msg_header_t *,mach_msg_header_t *);
3419 extern kern_return_t exception_raise(
3420 mach_port_t,mach_port_t,mach_port_t,
3421 exception_type_t,exception_data_t,mach_msg_type_number_t);
3422 extern kern_return_t exception_raise_state(
3423 mach_port_t,mach_port_t,mach_port_t,
3424 exception_type_t,exception_data_t,mach_msg_type_number_t,
3425 thread_state_flavor_t*,thread_state_t,mach_msg_type_number_t,
3426 thread_state_t,mach_msg_type_number_t*);
3427 extern kern_return_t exception_raise_state_identity(
3428 mach_port_t,mach_port_t,mach_port_t,
3429 exception_type_t,exception_data_t,mach_msg_type_number_t,
3430 thread_state_flavor_t*,thread_state_t,mach_msg_type_number_t,
3431 thread_state_t,mach_msg_type_number_t*);
3434 #define MAX_EXCEPTION_PORTS 16
3436 static struct {
3437 mach_msg_type_number_t count;
3438 exception_mask_t masks[MAX_EXCEPTION_PORTS];
3439 exception_handler_t ports[MAX_EXCEPTION_PORTS];
3440 exception_behavior_t behaviors[MAX_EXCEPTION_PORTS];
3441 thread_state_flavor_t flavors[MAX_EXCEPTION_PORTS];
3442 } GC_old_exc_ports;
3444 static struct {
3445 mach_port_t exception;
3446 #if defined(THREADS)
3447 mach_port_t reply;
3448 #endif
3449 } GC_ports;
3451 typedef struct {
3452 mach_msg_header_t head;
3453 } GC_msg_t;
3455 typedef enum {
3456 GC_MP_NORMAL, GC_MP_DISCARDING, GC_MP_STOPPED
3457 } GC_mprotect_state_t;
3459 /* FIXME: 1 and 2 seem to be safe to use in the msgh_id field,
3460 but it isn't documented. Use the source and see if they
3461 should be ok. */
3462 #define ID_STOP 1
3463 #define ID_RESUME 2
3465 /* These values are only used on the reply port */
3466 #define ID_ACK 3
3468 #if defined(THREADS)
3470 GC_mprotect_state_t GC_mprotect_state;
3472 /* The following should ONLY be called when the world is stopped */
3473 static void GC_mprotect_thread_notify(mach_msg_id_t id) {
3474 struct {
3475 GC_msg_t msg;
3476 mach_msg_trailer_t trailer;
3477 } buf;
3478 mach_msg_return_t r;
3479 /* remote, local */
3480 buf.msg.head.msgh_bits =
3481 MACH_MSGH_BITS(MACH_MSG_TYPE_MAKE_SEND,0);
3482 buf.msg.head.msgh_size = sizeof(buf.msg);
3483 buf.msg.head.msgh_remote_port = GC_ports.exception;
3484 buf.msg.head.msgh_local_port = MACH_PORT_NULL;
3485 buf.msg.head.msgh_id = id;
3487 r = mach_msg(
3488 &buf.msg.head,
3489 MACH_SEND_MSG|MACH_RCV_MSG|MACH_RCV_LARGE,
3490 sizeof(buf.msg),
3491 sizeof(buf),
3492 GC_ports.reply,
3493 MACH_MSG_TIMEOUT_NONE,
3494 MACH_PORT_NULL);
3495 if(r != MACH_MSG_SUCCESS)
3496 ABORT("mach_msg failed in GC_mprotect_thread_notify");
3497 if(buf.msg.head.msgh_id != ID_ACK)
3498 ABORT("invalid ack in GC_mprotect_thread_notify");
3501 /* Should only be called by the mprotect thread */
3502 static void GC_mprotect_thread_reply() {
3503 GC_msg_t msg;
3504 mach_msg_return_t r;
3505 /* remote, local */
3506 msg.head.msgh_bits =
3507 MACH_MSGH_BITS(MACH_MSG_TYPE_MAKE_SEND,0);
3508 msg.head.msgh_size = sizeof(msg);
3509 msg.head.msgh_remote_port = GC_ports.reply;
3510 msg.head.msgh_local_port = MACH_PORT_NULL;
3511 msg.head.msgh_id = ID_ACK;
3513 r = mach_msg(
3514 &msg.head,
3515 MACH_SEND_MSG,
3516 sizeof(msg),
3518 MACH_PORT_NULL,
3519 MACH_MSG_TIMEOUT_NONE,
3520 MACH_PORT_NULL);
3521 if(r != MACH_MSG_SUCCESS)
3522 ABORT("mach_msg failed in GC_mprotect_thread_reply");
3525 void GC_mprotect_stop() {
3526 GC_mprotect_thread_notify(ID_STOP);
3528 void GC_mprotect_resume() {
3529 GC_mprotect_thread_notify(ID_RESUME);
3532 #else /* !THREADS */
3533 /* The compiler should optimize away any GC_mprotect_state computations */
3534 #define GC_mprotect_state GC_MP_NORMAL
3535 #endif
3537 static void *GC_mprotect_thread(void *arg) {
3538 mach_msg_return_t r;
3539 /* These two structures contain some private kernel data. We don't need to
3540 access any of it so we don't bother defining a proper struct. The
3541 correct definitions are in the xnu source code. */
3542 struct {
3543 mach_msg_header_t head;
3544 char data[256];
3545 } reply;
3546 struct {
3547 mach_msg_header_t head;
3548 mach_msg_body_t msgh_body;
3549 char data[1024];
3550 } msg;
3552 mach_msg_id_t id;
3554 GC_darwin_register_mach_handler_thread(mach_thread_self());
3556 for(;;) {
3557 r = mach_msg(
3558 &msg.head,
3559 MACH_RCV_MSG|MACH_RCV_LARGE|
3560 (GC_mprotect_state == GC_MP_DISCARDING ? MACH_RCV_TIMEOUT : 0),
3562 sizeof(msg),
3563 GC_ports.exception,
3564 GC_mprotect_state == GC_MP_DISCARDING ? 0 : MACH_MSG_TIMEOUT_NONE,
3565 MACH_PORT_NULL);
3567 id = r == MACH_MSG_SUCCESS ? msg.head.msgh_id : -1;
3569 #if defined(THREADS)
3570 if(GC_mprotect_state == GC_MP_DISCARDING) {
3571 if(r == MACH_RCV_TIMED_OUT) {
3572 GC_mprotect_state = GC_MP_STOPPED;
3573 GC_mprotect_thread_reply();
3574 continue;
3576 if(r == MACH_MSG_SUCCESS && (id == ID_STOP || id == ID_RESUME))
3577 ABORT("out of order mprotect thread request");
3579 #endif
3581 if(r != MACH_MSG_SUCCESS) {
3582 GC_err_printf2("mach_msg failed with %d %s\n",
3583 (int)r,mach_error_string(r));
3584 ABORT("mach_msg failed");
3587 switch(id) {
3588 #if defined(THREADS)
3589 case ID_STOP:
3590 if(GC_mprotect_state != GC_MP_NORMAL)
3591 ABORT("Called mprotect_stop when state wasn't normal");
3592 GC_mprotect_state = GC_MP_DISCARDING;
3593 break;
3594 case ID_RESUME:
3595 if(GC_mprotect_state != GC_MP_STOPPED)
3596 ABORT("Called mprotect_resume when state wasn't stopped");
3597 GC_mprotect_state = GC_MP_NORMAL;
3598 GC_mprotect_thread_reply();
3599 break;
3600 #endif /* THREADS */
3601 default:
3602 /* Handle the message (calls catch_exception_raise) */
3603 if(!exc_server(&msg.head,&reply.head))
3604 ABORT("exc_server failed");
3605 /* Send the reply */
3606 r = mach_msg(
3607 &reply.head,
3608 MACH_SEND_MSG,
3609 reply.head.msgh_size,
3611 MACH_PORT_NULL,
3612 MACH_MSG_TIMEOUT_NONE,
3613 MACH_PORT_NULL);
3614 if(r != MACH_MSG_SUCCESS) {
3615 /* This will fail if the thread dies, but the thread shouldn't
3616 die... */
3617 #ifdef BROKEN_EXCEPTION_HANDLING
3618 GC_err_printf2(
3619 "mach_msg failed with %d %s while sending exc reply\n",
3620 (int)r,mach_error_string(r));
3621 #else
3622 ABORT("mach_msg failed while sending exception reply");
3623 #endif
3625 } /* switch */
3626 } /* for(;;) */
3627 /* NOT REACHED */
3628 return NULL;
3631 /* All this SIGBUS code shouldn't be necessary. All protection faults should
3632 be going throught the mach exception handler. However, it seems a SIGBUS is
3633 occasionally sent for some unknown reason. Even more odd, it seems to be
3634 meaningless and safe to ignore. */
3635 #ifdef BROKEN_EXCEPTION_HANDLING
3637 typedef void (* SIG_PF)();
3638 static SIG_PF GC_old_bus_handler;
3640 /* Updates to this aren't atomic, but the SIGBUSs seem pretty rare.
3641 Even if this doesn't get updated property, it isn't really a problem */
3642 static int GC_sigbus_count;
3644 static void GC_darwin_sigbus(int num,siginfo_t *sip,void *context) {
3645 if(num != SIGBUS) ABORT("Got a non-sigbus signal in the sigbus handler");
3647 /* Ugh... some seem safe to ignore, but too many in a row probably means
3648 trouble. GC_sigbus_count is reset for each mach exception that is
3649 handled */
3650 if(GC_sigbus_count >= 8) {
3651 ABORT("Got more than 8 SIGBUSs in a row!");
3652 } else {
3653 GC_sigbus_count++;
3654 GC_err_printf0("GC: WARNING: Ignoring SIGBUS.\n");
3657 #endif /* BROKEN_EXCEPTION_HANDLING */
3659 void GC_dirty_init() {
3660 kern_return_t r;
3661 mach_port_t me;
3662 pthread_t thread;
3663 pthread_attr_t attr;
3664 exception_mask_t mask;
3666 # ifdef PRINTSTATS
3667 GC_printf0("Inititalizing mach/darwin mprotect virtual dirty bit "
3668 "implementation\n");
3669 # endif
3670 # ifdef BROKEN_EXCEPTION_HANDLING
3671 GC_err_printf0("GC: WARNING: Enabling workarounds for various darwin "
3672 "exception handling bugs.\n");
3673 # endif
3674 GC_dirty_maintained = TRUE;
3675 if (GC_page_size % HBLKSIZE != 0) {
3676 GC_err_printf0("Page size not multiple of HBLKSIZE\n");
3677 ABORT("Page size not multiple of HBLKSIZE");
3680 GC_task_self = me = mach_task_self();
3682 r = mach_port_allocate(me,MACH_PORT_RIGHT_RECEIVE,&GC_ports.exception);
3683 if(r != KERN_SUCCESS) ABORT("mach_port_allocate failed (exception port)");
3685 r = mach_port_insert_right(me,GC_ports.exception,GC_ports.exception,
3686 MACH_MSG_TYPE_MAKE_SEND);
3687 if(r != KERN_SUCCESS)
3688 ABORT("mach_port_insert_right failed (exception port)");
3690 #if defined(THREADS)
3691 r = mach_port_allocate(me,MACH_PORT_RIGHT_RECEIVE,&GC_ports.reply);
3692 if(r != KERN_SUCCESS) ABORT("mach_port_allocate failed (reply port)");
3693 #endif
3695 /* The exceptions we want to catch */
3696 mask = EXC_MASK_BAD_ACCESS;
3698 r = task_get_exception_ports(
3700 mask,
3701 GC_old_exc_ports.masks,
3702 &GC_old_exc_ports.count,
3703 GC_old_exc_ports.ports,
3704 GC_old_exc_ports.behaviors,
3705 GC_old_exc_ports.flavors
3707 if(r != KERN_SUCCESS) ABORT("task_get_exception_ports failed");
3709 r = task_set_exception_ports(
3711 mask,
3712 GC_ports.exception,
3713 EXCEPTION_DEFAULT,
3714 GC_MACH_THREAD_STATE_FLAVOR
3716 if(r != KERN_SUCCESS) ABORT("task_set_exception_ports failed");
3718 if(pthread_attr_init(&attr) != 0) ABORT("pthread_attr_init failed");
3719 if(pthread_attr_setdetachstate(&attr,PTHREAD_CREATE_DETACHED) != 0)
3720 ABORT("pthread_attr_setdetachedstate failed");
3722 # undef pthread_create
3723 /* This will call the real pthread function, not our wrapper */
3724 if(pthread_create(&thread,&attr,GC_mprotect_thread,NULL) != 0)
3725 ABORT("pthread_create failed");
3726 pthread_attr_destroy(&attr);
3728 /* Setup the sigbus handler for ignoring the meaningless SIGBUSs */
3729 #ifdef BROKEN_EXCEPTION_HANDLING
3731 struct sigaction sa, oldsa;
3732 sa.sa_handler = (SIG_PF)GC_darwin_sigbus;
3733 sigemptyset(&sa.sa_mask);
3734 sa.sa_flags = SA_RESTART|SA_SIGINFO;
3735 if(sigaction(SIGBUS,&sa,&oldsa) < 0) ABORT("sigaction");
3736 GC_old_bus_handler = (SIG_PF)oldsa.sa_handler;
3737 if (GC_old_bus_handler != SIG_DFL) {
3738 # ifdef PRINTSTATS
3739 GC_err_printf0("Replaced other SIGBUS handler\n");
3740 # endif
3743 #endif /* BROKEN_EXCEPTION_HANDLING */
3746 /* The source code for Apple's GDB was used as a reference for the exception
3747 forwarding code. This code is similar to be GDB code only because there is
3748 only one way to do it. */
3749 static kern_return_t GC_forward_exception(
3750 mach_port_t thread,
3751 mach_port_t task,
3752 exception_type_t exception,
3753 exception_data_t data,
3754 mach_msg_type_number_t data_count
3756 int i;
3757 kern_return_t r;
3758 mach_port_t port;
3759 exception_behavior_t behavior;
3760 thread_state_flavor_t flavor;
3762 thread_state_t thread_state;
3763 mach_msg_type_number_t thread_state_count = THREAD_STATE_MAX;
3765 for(i=0;i<GC_old_exc_ports.count;i++)
3766 if(GC_old_exc_ports.masks[i] & (1 << exception))
3767 break;
3768 if(i==GC_old_exc_ports.count) ABORT("No handler for exception!");
3770 port = GC_old_exc_ports.ports[i];
3771 behavior = GC_old_exc_ports.behaviors[i];
3772 flavor = GC_old_exc_ports.flavors[i];
3774 if(behavior != EXCEPTION_DEFAULT) {
3775 r = thread_get_state(thread,flavor,thread_state,&thread_state_count);
3776 if(r != KERN_SUCCESS)
3777 ABORT("thread_get_state failed in forward_exception");
3780 switch(behavior) {
3781 case EXCEPTION_DEFAULT:
3782 r = exception_raise(port,thread,task,exception,data,data_count);
3783 break;
3784 case EXCEPTION_STATE:
3785 r = exception_raise_state(port,thread,task,exception,data,
3786 data_count,&flavor,thread_state,thread_state_count,
3787 thread_state,&thread_state_count);
3788 break;
3789 case EXCEPTION_STATE_IDENTITY:
3790 r = exception_raise_state_identity(port,thread,task,exception,data,
3791 data_count,&flavor,thread_state,thread_state_count,
3792 thread_state,&thread_state_count);
3793 break;
3794 default:
3795 r = KERN_FAILURE; /* make gcc happy */
3796 ABORT("forward_exception: unknown behavior");
3797 break;
3800 if(behavior != EXCEPTION_DEFAULT) {
3801 r = thread_set_state(thread,flavor,thread_state,thread_state_count);
3802 if(r != KERN_SUCCESS)
3803 ABORT("thread_set_state failed in forward_exception");
3806 return r;
3809 #define FWD() GC_forward_exception(thread,task,exception,code,code_count)
3811 /* This violates the namespace rules but there isn't anything that can be done
3812 about it. The exception handling stuff is hard coded to call this */
3813 kern_return_t
3814 catch_exception_raise(
3815 mach_port_t exception_port,mach_port_t thread,mach_port_t task,
3816 exception_type_t exception,exception_data_t code,
3817 mach_msg_type_number_t code_count
3819 kern_return_t r;
3820 char *addr;
3821 struct hblk *h;
3822 int i;
3823 # if defined(POWERPC)
3824 # if CPP_WORDSZ == 32
3825 thread_state_flavor_t flavor = PPC_EXCEPTION_STATE;
3826 mach_msg_type_number_t exc_state_count = PPC_EXCEPTION_STATE_COUNT;
3827 ppc_exception_state_t exc_state;
3828 # else
3829 thread_state_flavor_t flavor = PPC_EXCEPTION_STATE64;
3830 mach_msg_type_number_t exc_state_count = PPC_EXCEPTION_STATE64_COUNT;
3831 ppc_exception_state64_t exc_state;
3832 # endif
3833 # elif defined(I386)
3834 thread_state_flavor_t flavor = i386_EXCEPTION_STATE;
3835 mach_msg_type_number_t exc_state_count = i386_EXCEPTION_STATE_COUNT;
3836 i386_exception_state_t exc_state;
3837 # else
3838 # error FIXME for non-ppc darwin
3839 # endif
3842 if(exception != EXC_BAD_ACCESS || code[0] != KERN_PROTECTION_FAILURE) {
3843 #ifdef DEBUG_EXCEPTION_HANDLING
3844 /* We aren't interested, pass it on to the old handler */
3845 GC_printf3("Exception: 0x%x Code: 0x%x 0x%x in catch....\n",
3846 exception,
3847 code_count > 0 ? code[0] : -1,
3848 code_count > 1 ? code[1] : -1);
3849 #endif
3850 return FWD();
3853 r = thread_get_state(thread,flavor,
3854 (natural_t*)&exc_state,&exc_state_count);
3855 if(r != KERN_SUCCESS) {
3856 /* The thread is supposed to be suspended while the exception handler
3857 is called. This shouldn't fail. */
3858 #ifdef BROKEN_EXCEPTION_HANDLING
3859 GC_err_printf0("thread_get_state failed in "
3860 "catch_exception_raise\n");
3861 return KERN_SUCCESS;
3862 #else
3863 ABORT("thread_get_state failed in catch_exception_raise");
3864 #endif
3867 /* This is the address that caused the fault */
3868 #if defined(POWERPC)
3869 addr = (char*) exc_state.dar;
3870 #elif defined (I386)
3871 addr = (char*) exc_state.faultvaddr;
3872 #else
3873 # error FIXME for non POWERPC/I386
3874 #endif
3876 if((HDR(addr)) == 0) {
3877 /* Ugh... just like the SIGBUS problem above, it seems we get a bogus
3878 KERN_PROTECTION_FAILURE every once and a while. We wait till we get
3879 a bunch in a row before doing anything about it. If a "real" fault
3880 ever occurres it'll just keep faulting over and over and we'll hit
3881 the limit pretty quickly. */
3882 #ifdef BROKEN_EXCEPTION_HANDLING
3883 static char *last_fault;
3884 static int last_fault_count;
3886 if(addr != last_fault) {
3887 last_fault = addr;
3888 last_fault_count = 0;
3890 if(++last_fault_count < 32) {
3891 if(last_fault_count == 1)
3892 GC_err_printf1(
3893 "GC: WARNING: Ignoring KERN_PROTECTION_FAILURE at %p\n",
3894 addr);
3895 return KERN_SUCCESS;
3898 GC_err_printf1("Unexpected KERN_PROTECTION_FAILURE at %p\n",addr);
3899 /* Can't pass it along to the signal handler because that is
3900 ignoring SIGBUS signals. We also shouldn't call ABORT here as
3901 signals don't always work too well from the exception handler. */
3902 GC_err_printf0("Aborting\n");
3903 exit(EXIT_FAILURE);
3904 #else /* BROKEN_EXCEPTION_HANDLING */
3905 /* Pass it along to the next exception handler
3906 (which should call SIGBUS/SIGSEGV) */
3907 return FWD();
3908 #endif /* !BROKEN_EXCEPTION_HANDLING */
3911 #ifdef BROKEN_EXCEPTION_HANDLING
3912 /* Reset the number of consecutive SIGBUSs */
3913 GC_sigbus_count = 0;
3914 #endif
3916 if(GC_mprotect_state == GC_MP_NORMAL) { /* common case */
3917 h = (struct hblk*)((word)addr & ~(GC_page_size-1));
3918 UNPROTECT(h, GC_page_size);
3919 for (i = 0; i < divHBLKSZ(GC_page_size); i++) {
3920 register int index = PHT_HASH(h+i);
3921 async_set_pht_entry_from_index(GC_dirty_pages, index);
3923 } else if(GC_mprotect_state == GC_MP_DISCARDING) {
3924 /* Lie to the thread for now. No sense UNPROTECT()ing the memory
3925 when we're just going to PROTECT() it again later. The thread
3926 will just fault again once it resumes */
3927 } else {
3928 /* Shouldn't happen, i don't think */
3929 GC_printf0("KERN_PROTECTION_FAILURE while world is stopped\n");
3930 return FWD();
3932 return KERN_SUCCESS;
3934 #undef FWD
3936 /* These should never be called, but just in case... */
3937 kern_return_t catch_exception_raise_state(mach_port_name_t exception_port,
3938 int exception, exception_data_t code, mach_msg_type_number_t codeCnt,
3939 int flavor, thread_state_t old_state, int old_stateCnt,
3940 thread_state_t new_state, int new_stateCnt)
3942 ABORT("catch_exception_raise_state");
3943 return(KERN_INVALID_ARGUMENT);
3945 kern_return_t catch_exception_raise_state_identity(
3946 mach_port_name_t exception_port, mach_port_t thread, mach_port_t task,
3947 int exception, exception_data_t code, mach_msg_type_number_t codeCnt,
3948 int flavor, thread_state_t old_state, int old_stateCnt,
3949 thread_state_t new_state, int new_stateCnt)
3951 ABORT("catch_exception_raise_state_identity");
3952 return(KERN_INVALID_ARGUMENT);
3956 #endif /* DARWIN && MPROTECT_VDB */
3958 # ifndef HAVE_INCREMENTAL_PROTECTION_NEEDS
3959 int GC_incremental_protection_needs()
3961 return GC_PROTECTS_NONE;
3963 # endif /* !HAVE_INCREMENTAL_PROTECTION_NEEDS */
3966 * Call stack save code for debugging.
3967 * Should probably be in mach_dep.c, but that requires reorganization.
3970 /* I suspect the following works for most X86 *nix variants, so */
3971 /* long as the frame pointer is explicitly stored. In the case of gcc, */
3972 /* compiler flags (e.g. -fomit-frame-pointer) determine whether it is. */
3973 #if defined(I386) && defined(LINUX) && defined(SAVE_CALL_CHAIN)
3974 # include <features.h>
3976 struct frame {
3977 struct frame *fr_savfp;
3978 long fr_savpc;
3979 long fr_arg[NARGS]; /* All the arguments go here. */
3981 #endif
3983 #if defined(SPARC)
3984 # if defined(LINUX)
3985 # include <features.h>
3987 struct frame {
3988 long fr_local[8];
3989 long fr_arg[6];
3990 struct frame *fr_savfp;
3991 long fr_savpc;
3992 # ifndef __arch64__
3993 char *fr_stret;
3994 # endif
3995 long fr_argd[6];
3996 long fr_argx[0];
3998 # else
3999 # if defined(SUNOS4)
4000 # include <machine/frame.h>
4001 # else
4002 # if defined (DRSNX)
4003 # include <sys/sparc/frame.h>
4004 # else
4005 # if defined(OPENBSD)
4006 # include <frame.h>
4007 # else
4008 # if defined(FREEBSD) || defined(NETBSD)
4009 # include <machine/frame.h>
4010 # else
4011 # include <sys/frame.h>
4012 # endif
4013 # endif
4014 # endif
4015 # endif
4016 # endif
4017 # if NARGS > 6
4018 --> We only know how to to get the first 6 arguments
4019 # endif
4020 #endif /* SPARC */
4022 #ifdef NEED_CALLINFO
4023 /* Fill in the pc and argument information for up to NFRAMES of my */
4024 /* callers. Ignore my frame and my callers frame. */
4026 #ifdef LINUX
4027 # include <unistd.h>
4028 #endif
4030 #endif /* NEED_CALLINFO */
4032 #if defined(GC_HAVE_BUILTIN_BACKTRACE)
4033 # include <execinfo.h>
4034 #endif
4036 #ifdef SAVE_CALL_CHAIN
4038 #if NARGS == 0 && NFRAMES % 2 == 0 /* No padding */ \
4039 && defined(GC_HAVE_BUILTIN_BACKTRACE)
4041 #ifdef REDIRECT_MALLOC
4042 /* Deal with possible malloc calls in backtrace by omitting */
4043 /* the infinitely recursing backtrace. */
4044 # ifdef THREADS
4045 __thread /* If your compiler doesn't understand this */
4046 /* you could use something like pthread_getspecific. */
4047 # endif
4048 GC_in_save_callers = FALSE;
4049 #endif
4051 void GC_save_callers (info)
4052 struct callinfo info[NFRAMES];
4054 void * tmp_info[NFRAMES + 1];
4055 int npcs, i;
4056 # define IGNORE_FRAMES 1
4058 /* We retrieve NFRAMES+1 pc values, but discard the first, since it */
4059 /* points to our own frame. */
4060 # ifdef REDIRECT_MALLOC
4061 if (GC_in_save_callers) {
4062 info[0].ci_pc = (word)(&GC_save_callers);
4063 for (i = 1; i < NFRAMES; ++i) info[i].ci_pc = 0;
4064 return;
4066 GC_in_save_callers = TRUE;
4067 # endif
4068 GC_ASSERT(sizeof(struct callinfo) == sizeof(void *));
4069 npcs = backtrace((void **)tmp_info, NFRAMES + IGNORE_FRAMES);
4070 BCOPY(tmp_info+IGNORE_FRAMES, info, (npcs - IGNORE_FRAMES) * sizeof(void *));
4071 for (i = npcs - IGNORE_FRAMES; i < NFRAMES; ++i) info[i].ci_pc = 0;
4072 # ifdef REDIRECT_MALLOC
4073 GC_in_save_callers = FALSE;
4074 # endif
4077 #else /* No builtin backtrace; do it ourselves */
4079 #if (defined(OPENBSD) || defined(NETBSD) || defined(FREEBSD)) && defined(SPARC)
4080 # define FR_SAVFP fr_fp
4081 # define FR_SAVPC fr_pc
4082 #else
4083 # define FR_SAVFP fr_savfp
4084 # define FR_SAVPC fr_savpc
4085 #endif
4087 #if defined(SPARC) && (defined(__arch64__) || defined(__sparcv9))
4088 # define BIAS 2047
4089 #else
4090 # define BIAS 0
4091 #endif
4093 void GC_save_callers (info)
4094 struct callinfo info[NFRAMES];
4096 struct frame *frame;
4097 struct frame *fp;
4098 int nframes = 0;
4099 # ifdef I386
4100 /* We assume this is turned on only with gcc as the compiler. */
4101 asm("movl %%ebp,%0" : "=r"(frame));
4102 fp = frame;
4103 # else
4104 frame = (struct frame *) GC_save_regs_in_stack ();
4105 fp = (struct frame *)((long) frame -> FR_SAVFP + BIAS);
4106 #endif
4108 for (; (!(fp HOTTER_THAN frame) && !(GC_stackbottom HOTTER_THAN (ptr_t)fp)
4109 && (nframes < NFRAMES));
4110 fp = (struct frame *)((long) fp -> FR_SAVFP + BIAS), nframes++) {
4111 register int i;
4113 info[nframes].ci_pc = fp->FR_SAVPC;
4114 # if NARGS > 0
4115 for (i = 0; i < NARGS; i++) {
4116 info[nframes].ci_arg[i] = ~(fp->fr_arg[i]);
4118 # endif /* NARGS > 0 */
4120 if (nframes < NFRAMES) info[nframes].ci_pc = 0;
4123 #endif /* No builtin backtrace */
4125 #endif /* SAVE_CALL_CHAIN */
4127 #ifdef NEED_CALLINFO
4129 /* Print info to stderr. We do NOT hold the allocation lock */
4130 void GC_print_callers (info)
4131 struct callinfo info[NFRAMES];
4133 register int i;
4134 static int reentry_count = 0;
4135 GC_bool stop = FALSE;
4137 /* FIXME: This should probably use a different lock, so that we */
4138 /* become callable with or without the allocation lock. */
4139 LOCK();
4140 ++reentry_count;
4141 UNLOCK();
4143 # if NFRAMES == 1
4144 GC_err_printf0("\tCaller at allocation:\n");
4145 # else
4146 GC_err_printf0("\tCall chain at allocation:\n");
4147 # endif
4148 for (i = 0; i < NFRAMES && !stop ; i++) {
4149 if (info[i].ci_pc == 0) break;
4150 # if NARGS > 0
4152 int j;
4154 GC_err_printf0("\t\targs: ");
4155 for (j = 0; j < NARGS; j++) {
4156 if (j != 0) GC_err_printf0(", ");
4157 GC_err_printf2("%d (0x%X)", ~(info[i].ci_arg[j]),
4158 ~(info[i].ci_arg[j]));
4160 GC_err_printf0("\n");
4162 # endif
4163 if (reentry_count > 1) {
4164 /* We were called during an allocation during */
4165 /* a previous GC_print_callers call; punt. */
4166 GC_err_printf1("\t\t##PC##= 0x%lx\n", info[i].ci_pc);
4167 continue;
4170 # ifdef LINUX
4171 FILE *pipe;
4172 # endif
4173 # if defined(GC_HAVE_BUILTIN_BACKTRACE) \
4174 && !defined(GC_BACKTRACE_SYMBOLS_BROKEN)
4175 char **sym_name =
4176 backtrace_symbols((void **)(&(info[i].ci_pc)), 1);
4177 char *name = sym_name[0];
4178 # else
4179 char buf[40];
4180 char *name = buf;
4181 sprintf(buf, "##PC##= 0x%lx", info[i].ci_pc);
4182 # endif
4183 # if defined(LINUX) && !defined(SMALL_CONFIG)
4184 /* Try for a line number. */
4186 # define EXE_SZ 100
4187 static char exe_name[EXE_SZ];
4188 # define CMD_SZ 200
4189 char cmd_buf[CMD_SZ];
4190 # define RESULT_SZ 200
4191 static char result_buf[RESULT_SZ];
4192 size_t result_len;
4193 char *old_preload;
4194 # define PRELOAD_SZ 200
4195 char preload_buf[PRELOAD_SZ];
4196 static GC_bool found_exe_name = FALSE;
4197 static GC_bool will_fail = FALSE;
4198 int ret_code;
4199 /* Try to get it via a hairy and expensive scheme. */
4200 /* First we get the name of the executable: */
4201 if (will_fail) goto out;
4202 if (!found_exe_name) {
4203 ret_code = readlink("/proc/self/exe", exe_name, EXE_SZ);
4204 if (ret_code < 0 || ret_code >= EXE_SZ
4205 || exe_name[0] != '/') {
4206 will_fail = TRUE; /* Dont try again. */
4207 goto out;
4209 exe_name[ret_code] = '\0';
4210 found_exe_name = TRUE;
4212 /* Then we use popen to start addr2line -e <exe> <addr> */
4213 /* There are faster ways to do this, but hopefully this */
4214 /* isn't time critical. */
4215 sprintf(cmd_buf, "/usr/bin/addr2line -f -e %s 0x%lx", exe_name,
4216 (unsigned long)info[i].ci_pc);
4217 old_preload = getenv ("LD_PRELOAD");
4218 if (0 != old_preload) {
4219 if (strlen (old_preload) >= PRELOAD_SZ) {
4220 will_fail = TRUE;
4221 goto out;
4223 strcpy (preload_buf, old_preload);
4224 unsetenv ("LD_PRELOAD");
4226 pipe = popen(cmd_buf, "r");
4227 if (0 != old_preload
4228 && 0 != setenv ("LD_PRELOAD", preload_buf, 0)) {
4229 WARN("Failed to reset LD_PRELOAD\n", 0);
4231 if (pipe == NULL
4232 || (result_len = fread(result_buf, 1, RESULT_SZ - 1, pipe))
4233 == 0) {
4234 if (pipe != NULL) pclose(pipe);
4235 will_fail = TRUE;
4236 goto out;
4238 if (result_buf[result_len - 1] == '\n') --result_len;
4239 result_buf[result_len] = 0;
4240 if (result_buf[0] == '?'
4241 || result_buf[result_len-2] == ':'
4242 && result_buf[result_len-1] == '0') {
4243 pclose(pipe);
4244 goto out;
4246 /* Get rid of embedded newline, if any. Test for "main" */
4248 char * nl = strchr(result_buf, '\n');
4249 if (nl != NULL && nl < result_buf + result_len) {
4250 *nl = ':';
4252 if (strncmp(result_buf, "main", nl - result_buf) == 0) {
4253 stop = TRUE;
4256 if (result_len < RESULT_SZ - 25) {
4257 /* Add in hex address */
4258 sprintf(result_buf + result_len, " [0x%lx]",
4259 (unsigned long)info[i].ci_pc);
4261 name = result_buf;
4262 pclose(pipe);
4263 out:;
4265 # endif /* LINUX */
4266 GC_err_printf1("\t\t%s\n", name);
4267 # if defined(GC_HAVE_BUILTIN_BACKTRACE) \
4268 && !defined(GC_BACKTRACE_SYMBOLS_BROKEN)
4269 free(sym_name); /* May call GC_free; that's OK */
4270 # endif
4273 LOCK();
4274 --reentry_count;
4275 UNLOCK();
4278 #endif /* NEED_CALLINFO */
4282 #if defined(LINUX) && defined(__ELF__) && !defined(SMALL_CONFIG)
4284 /* Dump /proc/self/maps to GC_stderr, to enable looking up names for
4285 addresses in FIND_LEAK output. */
4287 static word dump_maps(char *maps)
4289 GC_err_write(maps, strlen(maps));
4290 return 1;
4293 void GC_print_address_map()
4295 GC_err_printf0("---------- Begin address map ----------\n");
4296 GC_apply_to_maps(dump_maps);
4297 GC_err_printf0("---------- End address map ----------\n");
4300 #endif