1 /* Load a shared object at runtime, relocate it, and run its initializer.
2 Copyright (C) 1996 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
26 extern ElfW(Addr
) _dl_sysdep_start (void **start_argptr
,
27 void (*dl_main
) (const ElfW(Phdr
) *phdr
,
29 ElfW(Addr
) *user_entry
));
30 weak_extern (_dl_sysdep_start
)
32 extern int __libc_multiple_libcs
; /* Defined in init-first.c. */
34 extern int __libc_argc
;
35 extern char **__libc_argv
;
37 extern char **__environ
;
39 size_t _dl_global_scope_alloc
;
42 _dl_open (const char *file
, int mode
)
44 struct link_map
*new, *l
;
48 /* Load the named object. */
49 new = _dl_map_object (NULL
, file
, lt_loaded
, 0);
50 if (new->l_searchlist
)
51 /* It was already open. */
54 /* Load that object's dependencies. */
55 _dl_map_object_deps (new, NULL
, 0, 0);
58 /* Relocate the objects loaded. We do this in reverse order so that copy
59 relocs of earlier objects overwrite the data written by later objects. */
68 /* We use an indirect call call for _dl_relocate_object because
69 we must avoid using the PLT in the call. If our PLT entry for
70 _dl_relocate_object hasn't been used yet, then the dynamic
71 linker fixup routine will clobber _dl_global_scope during its
72 work. We must be sure that nothing will require a PLT fixup
73 between when _dl_object_relocation_scope returns and when we
74 enter the dynamic linker's code (_dl_relocate_object). */
75 __typeof (_dl_relocate_object
) *reloc
= &_dl_relocate_object
;
76 (*reloc
) (l
, _dl_object_relocation_scope (l
),
77 (mode
& RTLD_BINDING_MASK
) == RTLD_LAZY
);
78 *_dl_global_scope_end
= NULL
;
86 new->l_global
= (mode
& RTLD_GLOBAL
);
89 /* The symbols of the new object and its dependencies are to be
90 introduced into the global scope that will be used to resolve
91 references from other dynamically-loaded objects. */
93 if (_dl_global_scope_alloc
== 0)
95 /* This is the first dynamic object given global scope. */
96 _dl_global_scope_alloc
= 8;
97 _dl_global_scope
= malloc (8 * sizeof (struct link_map
*));
98 if (! _dl_global_scope
)
100 _dl_global_scope
= _dl_default_scope
;
103 _dl_signal_error (ENOMEM
, file
, "cannot extend global scope");
105 _dl_global_scope
[2] = _dl_default_scope
[2];
106 _dl_global_scope
[3] = new;
107 _dl_global_scope
[4] = NULL
;
108 _dl_global_scope
[5] = NULL
;
112 if (_dl_global_scope_alloc
<
113 (size_t) (_dl_global_scope_end
- _dl_global_scope
+ 2))
115 /* Must extend the list. */
116 struct link_map
**new = realloc (_dl_global_scope
,
117 _dl_global_scope_alloc
* 2);
120 _dl_global_scope_end
= new + (_dl_global_scope_end
-
122 _dl_global_scope
= new;
123 _dl_global_scope_alloc
*= 2;
126 /* Append the new object and re-terminate the list. */
127 *_dl_global_scope_end
++ = new;
128 /* We keep the list double-terminated so the last element
129 can be filled in for symbol lookups. */
130 _dl_global_scope_end
[0] = NULL
;
131 _dl_global_scope_end
[1] = NULL
;
136 /* Notify the debugger we have added some objects. We need to call
137 _dl_debug_initialize in a static program in case dynamic linking has
138 not been used before. */
139 r
= _dl_debug_initialize (0);
143 /* Run the initializer functions of new objects. */
144 while (init
= _dl_init_next (new))
145 (*(void (*) (int, char **, char **)) init
) (__libc_argc
, __libc_argv
,
148 if (_dl_sysdep_start
== NULL
)
149 /* We must be the static _dl_open in libc.a. A static program that
150 has loaded a dynamic object now has competition. */
151 __libc_multiple_libcs
= 1;