]> sourceware.org Git - glibc.git/blame - dlfcn/dlinfo.c
.
[glibc.git] / dlfcn / dlinfo.c
CommitLineData
45e4762c 1/* dlinfo -- Get information from the dynamic linker.
32c075e1 2 Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
45e4762c
RM
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
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 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
19
20#include <dlfcn.h>
21#include <link.h>
22#include <ldsodefs.h>
23#include <libintl.h>
24
5f21997b
UD
25#if !defined SHARED && defined IS_IN_libdl
26
27int
28dlinfo (void *handle, int request, void *arg)
29{
30 return __dlinfo (handle, request, arg, RETURN_ADDRESS (0));
31}
32
33#else
34
32c075e1
JJ
35# ifdef USE_TLS
36# include <dl-tls.h>
37# endif
d78efd9f 38
45e4762c
RM
39struct dlinfo_args
40{
41 ElfW(Addr) caller;
42 void *handle;
43 int request;
44 void *arg;
45};
46
47static void
48dlinfo_doit (void *argsblock)
49{
50 struct dlinfo_args *const args = argsblock;
51 struct link_map *l = args->handle;
52
5f21997b 53# if 0
45e4762c
RM
54 if (args->handle == RTLD_SELF)
55 {
5ca3d19c 56 Lmid_t nsid;
45e4762c
RM
57
58 /* Find the highest-addressed object that CALLER is not below. */
5ca3d19c
UD
59 for (nsid = 0; nsid < DL_NNS; ++nsid)
60 for (l = GL(dl_ns)[nsid]._ns_loaded; l != NULL; l = l->l_next)
32c075e1
JJ
61 if (caller >= l->l_map_start && caller < l->l_map_end
62 && (l->l_contiguous || _dl_addr_inside_object (l, caller)))
5ca3d19c 63 break;
45e4762c
RM
64
65 if (l == NULL)
154d10bd 66 GLRO(dl_signal_error) (0, NULL, NULL, N_("\
45e4762c
RM
67RTLD_SELF used in code not dynamically loaded"));
68 }
5f21997b 69# endif
45e4762c
RM
70
71 switch (args->request)
72 {
45e4762c
RM
73 case RTLD_DI_CONFIGADDR:
74 default:
154d10bd 75 GLRO(dl_signal_error) (0, NULL, NULL, N_("unsupported dlinfo request"));
45e4762c
RM
76 break;
77
c0f62c56
UD
78 case RTLD_DI_LMID:
79 *(Lmid_t *) args->arg = l->l_ns;
80 break;
81
45e4762c
RM
82 case RTLD_DI_LINKMAP:
83 *(struct link_map **) args->arg = l;
84 break;
85
86 case RTLD_DI_SERINFO:
87 _dl_rtld_di_serinfo (l, args->arg, false);
88 break;
89 case RTLD_DI_SERINFOSIZE:
90 _dl_rtld_di_serinfo (l, args->arg, true);
91 break;
92
93 case RTLD_DI_ORIGIN:
94 strcpy (args->arg, l->l_origin);
95 break;
d78efd9f
RM
96
97 case RTLD_DI_TLS_MODID:
98 *(size_t *) args->arg = 0;
32c075e1 99#ifdef USE_TLS
d78efd9f 100 *(size_t *) args->arg = l->l_tls_modid;
32c075e1 101#endif
d78efd9f
RM
102 break;
103
104 case RTLD_DI_TLS_DATA:
105 {
106 void *data = NULL;
32c075e1 107#ifdef USE_TLS
d78efd9f
RM
108 if (l->l_tls_modid != 0)
109 data = _dl_tls_get_addr_soft (l);
32c075e1 110#endif
d78efd9f
RM
111 *(void **) args->arg = data;
112 break;
113 }
45e4762c
RM
114 }
115}
116
117int
5f21997b 118__dlinfo (void *handle, int request, void *arg DL_CALLER_DECL)
45e4762c 119{
5f21997b
UD
120# ifdef SHARED
121 if (__builtin_expect (_dlfcn_hook != NULL, 0))
122 return _dlfcn_hook->dlinfo (handle, request, arg,
123 DL_CALLER);
124# endif
125
126 struct dlinfo_args args = { (ElfW(Addr)) DL_CALLER,
45e4762c
RM
127 handle, request, arg };
128 return _dlerror_run (&dlinfo_doit, &args) ? -1 : 0;
129}
5f21997b
UD
130# ifdef SHARED
131strong_alias (__dlinfo, dlinfo)
132# endif
133#endif
This page took 0.111897 seconds and 5 git commands to generate.