]> sourceware.org Git - glibc.git/blame - dlfcn/dlinfo.c
* libio/bits/stdio2.h (__fread_chk, __fread_unlocked_chk): New
[glibc.git] / dlfcn / dlinfo.c
CommitLineData
45e4762c 1/* dlinfo -- Get information from the dynamic linker.
9be09e06 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
11bf311e 35# include <dl-tls.h>
d78efd9f 36
45e4762c
RM
37struct dlinfo_args
38{
39 ElfW(Addr) caller;
40 void *handle;
41 int request;
42 void *arg;
43};
44
45static void
46dlinfo_doit (void *argsblock)
47{
48 struct dlinfo_args *const args = argsblock;
49 struct link_map *l = args->handle;
50
5f21997b 51# if 0
45e4762c
RM
52 if (args->handle == RTLD_SELF)
53 {
5ca3d19c 54 Lmid_t nsid;
45e4762c
RM
55
56 /* Find the highest-addressed object that CALLER is not below. */
5ca3d19c
UD
57 for (nsid = 0; nsid < DL_NNS; ++nsid)
58 for (l = GL(dl_ns)[nsid]._ns_loaded; l != NULL; l = l->l_next)
9be09e06
UD
59 if (caller >= l->l_map_start && caller < l->l_map_end
60 && (l->l_contiguous || _dl_addr_inside_object (l, caller)))
5ca3d19c 61 break;
45e4762c
RM
62
63 if (l == NULL)
154d10bd 64 GLRO(dl_signal_error) (0, NULL, NULL, N_("\
45e4762c
RM
65RTLD_SELF used in code not dynamically loaded"));
66 }
5f21997b 67# endif
45e4762c
RM
68
69 switch (args->request)
70 {
45e4762c
RM
71 case RTLD_DI_CONFIGADDR:
72 default:
154d10bd 73 GLRO(dl_signal_error) (0, NULL, NULL, N_("unsupported dlinfo request"));
45e4762c
RM
74 break;
75
c0f62c56
UD
76 case RTLD_DI_LMID:
77 *(Lmid_t *) args->arg = l->l_ns;
78 break;
79
45e4762c
RM
80 case RTLD_DI_LINKMAP:
81 *(struct link_map **) args->arg = l;
82 break;
83
84 case RTLD_DI_SERINFO:
85 _dl_rtld_di_serinfo (l, args->arg, false);
86 break;
87 case RTLD_DI_SERINFOSIZE:
88 _dl_rtld_di_serinfo (l, args->arg, true);
89 break;
90
91 case RTLD_DI_ORIGIN:
92 strcpy (args->arg, l->l_origin);
93 break;
d78efd9f
RM
94
95 case RTLD_DI_TLS_MODID:
96 *(size_t *) args->arg = 0;
d78efd9f 97 *(size_t *) args->arg = l->l_tls_modid;
d78efd9f
RM
98 break;
99
100 case RTLD_DI_TLS_DATA:
101 {
102 void *data = NULL;
d78efd9f
RM
103 if (l->l_tls_modid != 0)
104 data = _dl_tls_get_addr_soft (l);
d78efd9f
RM
105 *(void **) args->arg = data;
106 break;
107 }
45e4762c
RM
108 }
109}
110
111int
5f21997b 112__dlinfo (void *handle, int request, void *arg DL_CALLER_DECL)
45e4762c 113{
5f21997b
UD
114# ifdef SHARED
115 if (__builtin_expect (_dlfcn_hook != NULL, 0))
116 return _dlfcn_hook->dlinfo (handle, request, arg,
117 DL_CALLER);
118# endif
119
120 struct dlinfo_args args = { (ElfW(Addr)) DL_CALLER,
45e4762c
RM
121 handle, request, arg };
122 return _dlerror_run (&dlinfo_doit, &args) ? -1 : 0;
123}
5f21997b
UD
124# ifdef SHARED
125strong_alias (__dlinfo, dlinfo)
126# endif
127#endif
This page took 0.121825 seconds and 5 git commands to generate.