Initial revision
[platform/upstream/gcc.git] / boehm-gc / dyn_load.c
1 /*
2  * Copyright (c) 1991-1994 by Xerox Corporation.  All rights reserved.
3  * Copyright (c) 1997 by Silicon Graphics.  All rights reserved.
4  *
5  * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
6  * OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
7  *
8  * Permission is hereby granted to use or copy this program
9  * for any purpose,  provided the above notices are retained on all copies.
10  * Permission to modify the code and to distribute modified code is granted,
11  * provided the above notices are retained, and a notice that the code was
12  * modified is included with the above copyright notice.
13  *
14  * Original author: Bill Janssen
15  * Heavily modified by Hans Boehm and others
16  */
17
18 /*
19  * This is incredibly OS specific code for tracking down data sections in
20  * dynamic libraries.  There appears to be no way of doing this quickly
21  * without groveling through undocumented data structures.  We would argue
22  * that this is a bug in the design of the dlopen interface.  THIS CODE
23  * MAY BREAK IN FUTURE OS RELEASES.  If this matters to you, don't hesitate
24  * to let your vendor know ...
25  *
26  * None of this is safe with dlclose and incremental collection.
27  * But then not much of anything is safe in the presence of dlclose.
28  */
29 #ifndef MACOS
30 #  include <sys/types.h>
31 #endif
32 #include "gc_priv.h"
33
34 /* BTL: avoid circular redefinition of dlopen if SOLARIS_THREADS defined */
35 # if defined(SOLARIS_THREADS) && defined(dlopen)
36     /* To support threads in Solaris, gc.h interposes on dlopen by       */
37     /* defining "dlopen" to be "GC_dlopen", which is implemented below.  */
38     /* However, both GC_FirstDLOpenedLinkMap() and GC_dlopen() use the   */
39     /* real system dlopen() in their implementation. We first remove     */
40     /* gc.h's dlopen definition and restore it later, after GC_dlopen(). */
41 #   undef dlopen
42 #   define GC_must_restore_redefined_dlopen
43 # else
44 #   undef GC_must_restore_redefined_dlopen
45 # endif
46
47 #if (defined(DYNAMIC_LOADING) || defined(MSWIN32)) && !defined(PCR)
48 #if !defined(SUNOS4) && !defined(SUNOS5DL) && !defined(IRIX5) && \
49     !defined(MSWIN32) && !(defined(ALPHA) && defined(OSF1)) && \
50     !defined(HP_PA) && (!defined(LINUX) && !defined(__ELF__)) && \
51     !defined(RS6000) && !defined(SCO_ELF)
52  --> We only know how to find data segments of dynamic libraries for the
53  --> above.  Additional SVR4 variants might not be too
54  --> hard to add.
55 #endif
56
57 #include <stdio.h>
58 #ifdef SUNOS5DL
59 #   include <sys/elf.h>
60 #   include <dlfcn.h>
61 #   include <link.h>
62 #endif
63 #ifdef SUNOS4
64 #   include <dlfcn.h>
65 #   include <link.h>
66 #   include <a.out.h>
67   /* struct link_map field overrides */
68 #   define l_next       lm_next
69 #   define l_addr       lm_addr
70 #   define l_name       lm_name
71 #endif
72
73
74 #if defined(SUNOS5DL) && !defined(USE_PROC_FOR_LIBRARIES)
75
76 #ifdef LINT
77     Elf32_Dyn _DYNAMIC;
78 #endif
79
80 static struct link_map *
81 GC_FirstDLOpenedLinkMap()
82 {
83     extern Elf32_Dyn _DYNAMIC;
84     Elf32_Dyn *dp;
85     struct r_debug *r;
86     static struct link_map * cachedResult = 0;
87     static Elf32_Dyn *dynStructureAddr = 0;
88                         /* BTL: added to avoid Solaris 5.3 ld.so _DYNAMIC bug */
89
90 #   ifdef SUNOS53_SHARED_LIB
91         /* BTL: Avoid the Solaris 5.3 bug that _DYNAMIC isn't being set */
92         /* up properly in dynamically linked .so's. This means we have  */
93         /* to use its value in the set of original object files loaded  */
94         /* at program startup.                                          */
95         if( dynStructureAddr == 0 ) {
96           void* startupSyms = dlopen(0, RTLD_LAZY);
97           dynStructureAddr = (Elf32_Dyn*)dlsym(startupSyms, "_DYNAMIC");
98                 }
99 #   else
100         dynStructureAddr = &_DYNAMIC;
101 #   endif
102
103     if( dynStructureAddr == 0) {
104         return(0);
105     }
106     if( cachedResult == 0 ) {
107         int tag;
108         for( dp = ((Elf32_Dyn *)(&_DYNAMIC)); (tag = dp->d_tag) != 0; dp++ ) {
109             if( tag == DT_DEBUG ) {
110                 struct link_map *lm
111                         = ((struct r_debug *)(dp->d_un.d_ptr))->r_map;
112                 if( lm != 0 ) cachedResult = lm->l_next; /* might be NIL */
113                 break;
114             }
115         }
116     }
117     return cachedResult;
118 }
119
120 #endif /* SUNOS5DL ... */
121
122 #if defined(SUNOS4) && !defined(USE_PROC_FOR_LIBRARIES)
123
124 #ifdef LINT
125     struct link_dynamic _DYNAMIC;
126 #endif
127
128 static struct link_map *
129 GC_FirstDLOpenedLinkMap()
130 {
131     extern struct link_dynamic _DYNAMIC;
132
133     if( &_DYNAMIC == 0) {
134         return(0);
135     }
136     return(_DYNAMIC.ld_un.ld_1->ld_loaded);
137 }
138
139 /* Return the address of the ld.so allocated common symbol      */
140 /* with the least address, or 0 if none.                        */
141 static ptr_t GC_first_common()
142 {
143     ptr_t result = 0;
144     extern struct link_dynamic _DYNAMIC;
145     struct rtc_symb * curr_symbol;
146     
147     if( &_DYNAMIC == 0) {
148         return(0);
149     }
150     curr_symbol = _DYNAMIC.ldd -> ldd_cp;
151     for (; curr_symbol != 0; curr_symbol = curr_symbol -> rtc_next) {
152         if (result == 0
153             || (ptr_t)(curr_symbol -> rtc_sp -> n_value) < result) {
154             result = (ptr_t)(curr_symbol -> rtc_sp -> n_value);
155         }
156     }
157     return(result);
158 }
159
160 #endif  /* SUNOS4 ... */
161
162 # if defined(SUNOS4) || defined(SUNOS5DL)
163 /* Add dynamic library data sections to the root set.           */
164 # if !defined(PCR) && !defined(SOLARIS_THREADS) && defined(THREADS)
165 #   ifndef SRC_M3
166         --> fix mutual exclusion with dlopen
167 #   endif  /* We assume M3 programs don't call dlopen for now */
168 # endif
169
170 # ifdef SOLARIS_THREADS
171   /* Redefine dlopen to guarantee mutual exclusion with */
172   /* GC_register_dynamic_libraries.                     */
173   /* assumes that dlopen doesn't need to call GC_malloc */
174   /* and friends.                                       */
175 # include <thread.h>
176 # include <synch.h>
177
178 void * GC_dlopen(const char *path, int mode)
179 {
180     void * result;
181     
182 #   ifndef USE_PROC_FOR_LIBRARIES
183       mutex_lock(&GC_allocate_ml);
184 #   endif
185     result = dlopen(path, mode);
186 #   ifndef USE_PROC_FOR_LIBRARIES
187       mutex_unlock(&GC_allocate_ml);
188 #   endif
189     return(result);
190 }
191 # endif  /* SOLARIS_THREADS */
192
193 /* BTL: added to fix circular dlopen definition if SOLARIS_THREADS defined */
194 # if defined(GC_must_restore_redefined_dlopen)
195 #   define dlopen GC_dlopen
196 # endif
197
198 # ifndef USE_PROC_FOR_LIBRARIES
199 void GC_register_dynamic_libraries()
200 {
201   struct link_map *lm = GC_FirstDLOpenedLinkMap();
202   
203
204   for (lm = GC_FirstDLOpenedLinkMap();
205        lm != (struct link_map *) 0;  lm = lm->l_next)
206     {
207 #     ifdef SUNOS4
208         struct exec *e;
209          
210         e = (struct exec *) lm->lm_addr;
211         GC_add_roots_inner(
212                     ((char *) (N_DATOFF(*e) + lm->lm_addr)),
213                     ((char *) (N_BSSADDR(*e) + e->a_bss + lm->lm_addr)),
214                     TRUE);
215 #     endif
216 #     ifdef SUNOS5DL
217         Elf32_Ehdr * e;
218         Elf32_Phdr * p;
219         unsigned long offset;
220         char * start;
221         register int i;
222         
223         e = (Elf32_Ehdr *) lm->l_addr;
224         p = ((Elf32_Phdr *)(((char *)(e)) + e->e_phoff));
225         offset = ((unsigned long)(lm->l_addr));
226         for( i = 0; i < (int)(e->e_phnum); ((i++),(p++)) ) {
227           switch( p->p_type ) {
228             case PT_LOAD:
229               {
230                 if( !(p->p_flags & PF_W) ) break;
231                 start = ((char *)(p->p_vaddr)) + offset;
232                 GC_add_roots_inner(
233                   start,
234                   start + p->p_memsz,
235                   TRUE
236                 );
237               }
238               break;
239             default:
240               break;
241           }
242         }
243 #     endif
244     }
245 #   ifdef SUNOS4
246       {
247         static ptr_t common_start = 0;
248         ptr_t common_end;
249         extern ptr_t GC_find_limit();
250         
251         if (common_start == 0) common_start = GC_first_common();
252         if (common_start != 0) {
253             common_end = GC_find_limit(common_start, TRUE);
254             GC_add_roots_inner((char *)common_start, (char *)common_end, TRUE);
255         }
256       }
257 #   endif
258 }
259
260 # endif /* !USE_PROC ... */
261 # endif /* SUNOS */
262
263 #if defined(LINUX) && defined(__ELF__) || defined(SCO_ELF)
264
265 /* Dynamic loading code for Linux running ELF. Somewhat tested on
266  * Linux/x86, untested but hopefully should work on Linux/Alpha. 
267  * This code was derived from the Solaris/ELF support. Thanks to
268  * whatever kind soul wrote that.  - Patrick Bridges */
269
270 #include <elf.h>
271 #include <link.h>
272
273 /* Newer versions of Linux/Alpha and Linux/x86 define this macro.  We
274  * define it for those older versions that don't.  */
275 #  ifndef ElfW
276 #    if !defined(ELF_CLASS) || ELF_CLASS == ELFCLASS32
277 #      define ElfW(type) Elf32_##type
278 #    else
279 #      define ElfW(type) Elf64_##type
280 #    endif
281 #  endif
282
283 static struct link_map *
284 GC_FirstDLOpenedLinkMap()
285 {
286     extern ElfW(Dyn) _DYNAMIC[];
287     ElfW(Dyn) *dp;
288     struct r_debug *r;
289     static struct link_map *cachedResult = 0;
290
291     if( _DYNAMIC == 0) {
292         return(0);
293     }
294     if( cachedResult == 0 ) {
295         int tag;
296         for( dp = _DYNAMIC; (tag = dp->d_tag) != 0; dp++ ) {
297             if( tag == DT_DEBUG ) {
298                 struct link_map *lm
299                         = ((struct r_debug *)(dp->d_un.d_ptr))->r_map;
300                 if( lm != 0 ) cachedResult = lm->l_next; /* might be NIL */
301                 break;
302             }
303         }
304     }
305     return cachedResult;
306 }
307
308
309 void GC_register_dynamic_libraries()
310 {
311   struct link_map *lm = GC_FirstDLOpenedLinkMap();
312   
313
314   for (lm = GC_FirstDLOpenedLinkMap();
315        lm != (struct link_map *) 0;  lm = lm->l_next)
316     {
317         ElfW(Ehdr) * e;
318         ElfW(Phdr) * p;
319         unsigned long offset;
320         char * start;
321         register int i;
322         
323         e = (ElfW(Ehdr) *) lm->l_addr;
324         p = ((ElfW(Phdr) *)(((char *)(e)) + e->e_phoff));
325         offset = ((unsigned long)(lm->l_addr));
326         for( i = 0; i < (int)(e->e_phnum); ((i++),(p++)) ) {
327           switch( p->p_type ) {
328             case PT_LOAD:
329               {
330                 if( !(p->p_flags & PF_W) ) break;
331                 start = ((char *)(p->p_vaddr)) + offset;
332                 GC_add_roots_inner(start, start + p->p_memsz, TRUE);
333               }
334               break;
335             default:
336               break;
337           }
338         }
339     }
340 }
341
342 #endif
343
344 #if defined(IRIX5) || defined(USE_PROC_FOR_LIBRARIES)
345
346 #include <sys/procfs.h>
347 #include <sys/stat.h>
348 #include <fcntl.h>
349 #include <elf.h>
350 #include <errno.h>
351
352 extern void * GC_roots_present();
353
354 extern ptr_t GC_scratch_last_end_ptr; /* End of GC_scratch_alloc arena  */
355
356 /* We use /proc to track down all parts of the address space that are   */
357 /* mapped by the process, and throw out regions we know we shouldn't    */
358 /* worry about.  This may also work under other SVR4 variants.          */
359 void GC_register_dynamic_libraries()
360 {
361     static int fd = -1;
362     char buf[30];
363     static prmap_t * addr_map = 0;
364     static int current_sz = 0;  /* Number of records currently in addr_map */
365     static int needed_sz;       /* Required size of addr_map            */
366     register int i;
367     register long flags;
368     register ptr_t start;
369     register ptr_t limit;
370     ptr_t heap_start = (ptr_t)HEAP_START;
371     ptr_t heap_end = heap_start;
372
373 #   ifdef SUNOS5DL
374 #     define MA_PHYS 0
375 #   endif /* SUNOS5DL */
376
377     if (fd < 0) {
378       sprintf(buf, "/proc/%d", getpid());
379       fd = open(buf, O_RDONLY);
380       if (fd < 0) {
381         ABORT("/proc open failed");
382       }
383     }
384     if (ioctl(fd, PIOCNMAP, &needed_sz) < 0) {
385         GC_err_printf2("fd = %d, errno = %d\n", fd, errno);
386         ABORT("/proc PIOCNMAP ioctl failed");
387     }
388     if (needed_sz >= current_sz) {
389         current_sz = needed_sz * 2 + 1;
390                         /* Expansion, plus room for 0 record */
391         addr_map = (prmap_t *)GC_scratch_alloc(current_sz * sizeof(prmap_t));
392     }
393     if (ioctl(fd, PIOCMAP, addr_map) < 0) {
394         GC_err_printf4("fd = %d, errno = %d, needed_sz = %d, addr_map = 0x%X\n",
395                         fd, errno, needed_sz, addr_map);
396         ABORT("/proc PIOCMAP ioctl failed");
397     };
398     if (GC_n_heap_sects > 0) {
399         heap_end = GC_heap_sects[GC_n_heap_sects-1].hs_start
400                         + GC_heap_sects[GC_n_heap_sects-1].hs_bytes;
401         if (heap_end < GC_scratch_last_end_ptr) heap_end = GC_scratch_last_end_ptr; 
402     }
403     for (i = 0; i < needed_sz; i++) {
404         flags = addr_map[i].pr_mflags;
405         if ((flags & (MA_BREAK | MA_STACK | MA_PHYS)) != 0) goto irrelevant;
406         if ((flags & (MA_READ | MA_WRITE)) != (MA_READ | MA_WRITE))
407             goto irrelevant;
408           /* The latter test is empirically useless.  Other than the    */
409           /* main data and stack segments, everything appears to be     */
410           /* mapped readable, writable, executable, and shared(!!).     */
411           /* This makes no sense to me. - HB                            */
412         start = (ptr_t)(addr_map[i].pr_vaddr);
413         if (GC_roots_present(start)) goto irrelevant;
414         if (start < heap_end && start >= heap_start)
415                 goto irrelevant;
416 #       ifdef MMAP_STACKS
417           if (GC_is_thread_stack(start)) goto irrelevant;
418 #       endif /* MMAP_STACKS */
419
420         limit = start + addr_map[i].pr_size;
421         if (addr_map[i].pr_off == 0 && strncmp(start, ELFMAG, 4) == 0) {
422             /* Discard text segments, i.e. 0-offset mappings against    */
423             /* executable files which appear to have ELF headers.       */
424             caddr_t arg;
425             int obj;
426 #           define MAP_IRR_SZ 10
427             static ptr_t map_irr[MAP_IRR_SZ];
428                                         /* Known irrelevant map entries */
429             static int n_irr = 0;
430             struct stat buf;
431             register int i;
432             
433             for (i = 0; i < n_irr; i++) {
434                 if (map_irr[i] == start) goto irrelevant;
435             }
436             arg = (caddr_t)start;
437             obj = ioctl(fd, PIOCOPENM, &arg);
438             if (obj >= 0) {
439                 fstat(obj, &buf);
440                 close(obj);
441                 if ((buf.st_mode & 0111) != 0) {
442                     if (n_irr < MAP_IRR_SZ) {
443                         map_irr[n_irr++] = start;
444                     }
445                     goto irrelevant;
446                 }
447             }
448         }
449         GC_add_roots_inner(start, limit, TRUE);
450       irrelevant: ;
451     }
452     /* Dont keep cached descriptor, for now.  Some kernels don't like us */
453     /* to keep a /proc file descriptor around during kill -9.            */
454         if (close(fd) < 0) ABORT("Couldnt close /proc file");
455         fd = -1;
456 }
457
458 # endif /* USE_PROC || IRIX5 */
459
460 # ifdef MSWIN32
461
462 # define WIN32_LEAN_AND_MEAN
463 # define NOSERVICE
464 # include <windows.h>
465 # include <stdlib.h>
466
467   /* We traverse the entire address space and register all segments     */
468   /* that could possibly have been written to.                          */
469   DWORD GC_allocation_granularity;
470   
471   extern GC_bool GC_is_heap_base (ptr_t p);
472
473 # ifdef WIN32_THREADS
474     extern void GC_get_next_stack(char *start, char **lo, char **hi);
475 # endif
476   
477   void GC_cond_add_roots(char *base, char * limit)
478   {
479     char dummy;
480     char * stack_top
481            = (char *) ((word)(&dummy) & ~(GC_allocation_granularity-1));
482     if (base == limit) return;
483 #   ifdef WIN32_THREADS
484     {
485         char * curr_base = base;
486         char * next_stack_lo;
487         char * next_stack_hi;
488         
489         for(;;) {
490             GC_get_next_stack(curr_base, &next_stack_lo, &next_stack_hi);
491             if (next_stack_lo >= limit) break;
492             GC_add_roots_inner(curr_base, next_stack_lo, TRUE);
493             curr_base = next_stack_hi;
494         }
495         if (curr_base < limit) GC_add_roots_inner(curr_base, limit, TRUE);
496     }
497 #   else
498         if (limit > stack_top && base < GC_stackbottom) {
499             /* Part of the stack; ignore it. */
500             return;
501         }
502         GC_add_roots_inner(base, limit, TRUE);
503 #   endif
504   }
505   
506   extern GC_bool GC_win32s;
507   
508   void GC_register_dynamic_libraries()
509   {
510     MEMORY_BASIC_INFORMATION buf;
511     SYSTEM_INFO sysinfo;
512     DWORD result;
513     DWORD protect;
514     LPVOID p;
515     char * base;
516     char * limit, * new_limit;
517     
518     if (GC_win32s) return;
519     GetSystemInfo(&sysinfo);
520     base = limit = p = sysinfo.lpMinimumApplicationAddress;
521     GC_allocation_granularity = sysinfo.dwAllocationGranularity;
522     while (p < sysinfo.lpMaximumApplicationAddress) {
523         result = VirtualQuery(p, &buf, sizeof(buf));
524         if (result != sizeof(buf)) {
525             ABORT("Weird VirtualQuery result");
526         }
527         new_limit = (char *)p + buf.RegionSize;
528         protect = buf.Protect;
529         if (buf.State == MEM_COMMIT
530             && (protect == PAGE_EXECUTE_READWRITE
531                 || protect == PAGE_READWRITE)
532             && !GC_is_heap_base(buf.AllocationBase)) {
533             if ((char *)p == limit) {
534                 limit = new_limit;
535             } else {
536                 GC_cond_add_roots(base, limit);
537                 base = p;
538                 limit = new_limit;
539             }
540         }
541         if (p > (LPVOID)new_limit /* overflow */) break;
542         p = (LPVOID)new_limit;
543     }
544     GC_cond_add_roots(base, limit);
545   }
546
547 #endif /* MSWIN32 */
548
549 #if defined(ALPHA) && defined(OSF1)
550
551 #include <loader.h>
552
553 void GC_register_dynamic_libraries()
554 {
555   int status;
556   ldr_process_t mypid;
557
558   /* module */
559     ldr_module_t moduleid = LDR_NULL_MODULE;
560     ldr_module_info_t moduleinfo;
561     size_t moduleinfosize = sizeof(moduleinfo);
562     size_t modulereturnsize;    
563
564   /* region */
565     ldr_region_t region; 
566     ldr_region_info_t regioninfo;
567     size_t regioninfosize = sizeof(regioninfo);
568     size_t regionreturnsize;
569
570   /* Obtain id of this process */
571     mypid = ldr_my_process();
572   
573   /* For each module */
574     while (TRUE) {
575
576       /* Get the next (first) module */
577         status = ldr_next_module(mypid, &moduleid);
578
579       /* Any more modules? */
580         if (moduleid == LDR_NULL_MODULE)
581             break;    /* No more modules */
582
583       /* Check status AFTER checking moduleid because */
584       /* of a bug in the non-shared ldr_next_module stub */
585         if (status != 0 ) {
586             GC_printf1("dynamic_load: status = %ld\n", (long)status);
587             {
588                 extern char *sys_errlist[];
589                 extern int sys_nerr;
590                 extern int errno;
591                 if (errno <= sys_nerr) {
592                     GC_printf1("dynamic_load: %s\n", (long)sys_errlist[errno]);
593                } else {
594                     GC_printf1("dynamic_load: %d\n", (long)errno);
595                 }
596         }
597             ABORT("ldr_next_module failed");
598          }
599
600       /* Get the module information */
601         status = ldr_inq_module(mypid, moduleid, &moduleinfo,
602                                 moduleinfosize, &modulereturnsize); 
603         if (status != 0 )
604             ABORT("ldr_inq_module failed");
605
606       /* is module for the main program (i.e. nonshared portion)? */
607           if (moduleinfo.lmi_flags & LDR_MAIN)
608               continue;    /* skip the main module */
609
610 #     ifdef VERBOSE
611           GC_printf("---Module---\n");
612           GC_printf("Module ID            = %16ld\n", moduleinfo.lmi_modid);
613           GC_printf("Count of regions     = %16d\n", moduleinfo.lmi_nregion);
614           GC_printf("flags for module     = %16lx\n", moduleinfo.lmi_flags); 
615           GC_printf("pathname of module   = \"%s\"\n", moduleinfo.lmi_name);
616 #     endif
617
618       /* For each region in this module */
619         for (region = 0; region < moduleinfo.lmi_nregion; region++) {
620
621           /* Get the region information */
622             status = ldr_inq_region(mypid, moduleid, region, &regioninfo,
623                                     regioninfosize, &regionreturnsize);
624             if (status != 0 )
625                 ABORT("ldr_inq_region failed");
626
627           /* only process writable (data) regions */
628             if (! (regioninfo.lri_prot & LDR_W))
629                 continue;
630
631 #         ifdef VERBOSE
632               GC_printf("--- Region ---\n");
633               GC_printf("Region number    = %16ld\n",
634                         regioninfo.lri_region_no);
635               GC_printf("Protection flags = %016x\n",  regioninfo.lri_prot);
636               GC_printf("Virtual address  = %16p\n",   regioninfo.lri_vaddr);
637               GC_printf("Mapped address   = %16p\n",   regioninfo.lri_mapaddr);
638               GC_printf("Region size      = %16ld\n",  regioninfo.lri_size);
639               GC_printf("Region name      = \"%s\"\n", regioninfo.lri_name);
640 #         endif
641
642           /* register region as a garbage collection root */
643             GC_add_roots_inner (
644                 (char *)regioninfo.lri_mapaddr,
645                 (char *)regioninfo.lri_mapaddr + regioninfo.lri_size,
646                 TRUE);
647
648         }
649     }
650 }
651 #endif
652
653 #if defined(HP_PA)
654
655 #include <errno.h>
656 #include <dl.h>
657
658 extern int errno;
659 extern char *sys_errlist[];
660 extern int sys_nerr;
661
662 void GC_register_dynamic_libraries()
663 {
664   int status;
665   int index = 1; /* Ordinal position in shared library search list */
666   struct shl_descriptor *shl_desc; /* Shared library info, see dl.h */
667
668   /* For each dynamic library loaded */
669     while (TRUE) {
670
671       /* Get info about next shared library */
672         status = shl_get(index, &shl_desc);
673
674       /* Check if this is the end of the list or if some error occured */
675         if (status != 0) {
676           if (errno == EINVAL) {
677               break; /* Moved past end of shared library list --> finished */
678           } else {
679               if (errno <= sys_nerr) {
680                     GC_printf1("dynamic_load: %s\n", (long) sys_errlist[errno]);
681               } else {
682                     GC_printf1("dynamic_load: %d\n", (long) errno);
683               }
684               ABORT("shl_get failed");
685           }
686         }
687
688 #     ifdef VERBOSE
689           GC_printf0("---Shared library---\n");
690           GC_printf1("\tfilename        = \"%s\"\n", shl_desc->filename);
691           GC_printf1("\tindex           = %d\n", index);
692           GC_printf1("\thandle          = %08x\n",
693                                         (unsigned long) shl_desc->handle);
694           GC_printf1("\ttext seg. start = %08x\n", shl_desc->tstart);
695           GC_printf1("\ttext seg. end   = %08x\n", shl_desc->tend);
696           GC_printf1("\tdata seg. start = %08x\n", shl_desc->dstart);
697           GC_printf1("\tdata seg. end   = %08x\n", shl_desc->dend);
698           GC_printf1("\tref. count      = %lu\n", shl_desc->ref_count);
699 #     endif
700
701       /* register shared library's data segment as a garbage collection root */
702         GC_add_roots_inner((char *) shl_desc->dstart,
703                            (char *) shl_desc->dend, TRUE);
704
705         index++;
706     }
707 }
708 #endif /* HP_PA */
709
710 #ifdef RS6000
711 #pragma alloca
712 #include <sys/ldr.h>
713 #include <sys/errno.h>
714 void GC_register_dynamic_libraries()
715 {
716         int len;
717         char *ldibuf;
718         int ldibuflen;
719         struct ld_info *ldi;
720
721         ldibuf = alloca(ldibuflen = 8192);
722
723         while ( (len = loadquery(L_GETINFO,ldibuf,ldibuflen)) < 0) {
724                 if (errno != ENOMEM) {
725                         ABORT("loadquery failed");
726                 }
727                 ldibuf = alloca(ldibuflen *= 2);
728         }
729
730         ldi = (struct ld_info *)ldibuf;
731         while (ldi) {
732                 len = ldi->ldinfo_next;
733                 GC_add_roots_inner(
734                                 ldi->ldinfo_dataorg,
735                                 (unsigned long)ldi->ldinfo_dataorg
736                                 + ldi->ldinfo_datasize,
737                                 TRUE);
738                 ldi = len ? (struct ld_info *)((char *)ldi + len) : 0;
739         }
740 }
741 #endif /* RS6000 */
742
743
744
745 #else /* !DYNAMIC_LOADING */
746
747 #ifdef PCR
748
749 #   include "il/PCR_IL.h"
750 #   include "th/PCR_ThCtl.h"
751 #   include "mm/PCR_MM.h"
752
753 void GC_register_dynamic_libraries()
754 {
755     /* Add new static data areas of dynamically loaded modules. */
756         {
757           PCR_IL_LoadedFile * p = PCR_IL_GetLastLoadedFile();
758           PCR_IL_LoadedSegment * q;
759           
760           /* Skip uncommited files */
761           while (p != NIL && !(p -> lf_commitPoint)) {
762               /* The loading of this file has not yet been committed    */
763               /* Hence its description could be inconsistent.           */
764               /* Furthermore, it hasn't yet been run.  Hence its data   */
765               /* segments can't possibly reference heap allocated       */
766               /* objects.                                               */
767               p = p -> lf_prev;
768           }
769           for (; p != NIL; p = p -> lf_prev) {
770             for (q = p -> lf_ls; q != NIL; q = q -> ls_next) {
771               if ((q -> ls_flags & PCR_IL_SegFlags_Traced_MASK)
772                   == PCR_IL_SegFlags_Traced_on) {
773                 GC_add_roots_inner
774                         ((char *)(q -> ls_addr), 
775                          (char *)(q -> ls_addr) + q -> ls_bytes,
776                          TRUE);
777               }
778             }
779           }
780         }
781 }
782
783
784 #else /* !PCR */
785
786 void GC_register_dynamic_libraries(){}
787
788 int GC_no_dynamic_loading;
789
790 #endif /* !PCR */
791 #endif /* !DYNAMIC_LOADING */