Update.
[glibc.git] / elf / dl-sym.c
blob9ca2af81e4ef59859dcc764c8da4d76cf4db8fd7
1 /* Look up a symbol in a shared object loaded by `dlopen'.
2 Copyright (C) 1999, 2000 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. */
20 #include <stddef.h>
21 #include <setjmp.h>
22 #include <libintl.h>
24 #include <dlfcn.h>
25 #include <ldsodefs.h>
26 #include <dl-hash.h>
28 void *
29 internal_function
30 _dl_sym (void *handle, const char *name, void *who)
32 const ElfW(Sym) *ref = NULL;
33 lookup_t result;
34 ElfW(Addr) caller = (ElfW(Addr)) who;
35 struct link_map *match;
36 struct link_map *l;
38 /* If the address is not recognized the call comes from the main
39 program (we hope). */
40 match = _dl_loaded;
42 /* Find the highest-addressed object that CALLER is not below. */
43 for (l = _dl_loaded; l != NULL; l = l->l_next)
44 if (caller >= l->l_map_start && caller < l->l_map_end)
46 /* There must be exactly one DSO for the range of the virtual
47 memory. Otherwise something is really broken. */
48 match = l;
49 break;
52 if (handle == RTLD_DEFAULT)
53 /* Search the global scope as seen in the caller object. */
54 result = _dl_lookup_symbol (name, match, &ref, match->l_scope, 0, 0);
55 else
57 if (handle != RTLD_NEXT)
59 /* Search the scope of the given object. */
60 struct link_map *map = handle;
62 result = _dl_lookup_symbol (name, match, &ref, map->l_local_scope,
63 0, 1);
65 else
67 if (__builtin_expect (match == _dl_loaded, 0))
69 if (! _dl_loaded
70 || caller < _dl_loaded->l_map_start
71 || caller >= _dl_loaded->l_map_end)
72 _dl_signal_error (0, NULL, N_("\
73 RTLD_NEXT used in code not dynamically loaded"));
76 l = match;
77 while (l->l_loader != NULL)
78 l = l->l_loader;
80 result = _dl_lookup_symbol_skip (name, l, &ref, l->l_local_scope,
81 match);
85 if (ref != NULL)
86 return DL_SYMBOL_ADDRESS (result, ref);
88 return NULL;
91 void *
92 internal_function
93 _dl_vsym (void *handle, const char *name, const char *version, void *who)
95 const ElfW(Sym) *ref = NULL;
96 struct r_found_version vers;
97 lookup_t result;
98 ElfW(Addr) caller = (ElfW(Addr)) who;
99 struct link_map *match;
100 struct link_map *l;
102 /* Compute hash value to the version string. */
103 vers.name = version;
104 vers.hidden = 1;
105 vers.hash = _dl_elf_hash (version);
106 /* We don't have a specific file where the symbol can be found. */
107 vers.filename = NULL;
109 /* If the address is not recognized the call comes from the main
110 program (we hope). */
111 match = _dl_loaded;
113 /* Find the highest-addressed object that CALLER is not below. */
114 for (l = _dl_loaded; l != NULL; l = l->l_next)
115 if (caller >= l->l_map_start && caller < l->l_map_end)
117 /* There must be exactly one DSO for the range of the virtual
118 memory. Otherwise something is really broken. */
119 match = l;
120 break;
123 if (handle == RTLD_DEFAULT)
124 /* Search the global scope. */
125 result = _dl_lookup_versioned_symbol (name, match, &ref, match->l_scope,
126 &vers, 0, 0);
127 else if (handle == RTLD_NEXT)
129 if (__builtin_expect (match == _dl_loaded, 0))
131 if (! _dl_loaded
132 || caller < _dl_loaded->l_map_start
133 || caller >= _dl_loaded->l_map_end)
134 _dl_signal_error (0, NULL, N_("\
135 RTLD_NEXT used in code not dynamically loaded"));
138 l = match;
139 while (l->l_loader != NULL)
140 l = l->l_loader;
142 result = _dl_lookup_versioned_symbol_skip (name, l, &ref,
143 l->l_local_scope,
144 &vers, match);
146 else
148 /* Search the scope of the given object. */
149 struct link_map *map = handle;
150 result = _dl_lookup_versioned_symbol (name, map, &ref,
151 map->l_local_scope, &vers, 0, 1);
154 if (ref != NULL)
155 return DL_SYMBOL_ADDRESS (result, ref);
157 return NULL;