]> sourceware.org Git - glibc.git/blame - dlfcn/dlinfo.c
* nscd/nscd_helper.c: Include <time.h> for `time' declaration.
[glibc.git] / dlfcn / dlinfo.c
CommitLineData
45e4762c 1/* dlinfo -- Get information from the dynamic linker.
a334319f 2 Copyright (C) 2003, 2004 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
45e4762c
RM
35struct dlinfo_args
36{
37 ElfW(Addr) caller;
38 void *handle;
39 int request;
40 void *arg;
41};
42
43static void
44dlinfo_doit (void *argsblock)
45{
46 struct dlinfo_args *const args = argsblock;
47 struct link_map *l = args->handle;
48
5f21997b 49# if 0
45e4762c
RM
50 if (args->handle == RTLD_SELF)
51 {
5ca3d19c 52 Lmid_t nsid;
45e4762c
RM
53
54 /* Find the highest-addressed object that CALLER is not below. */
5ca3d19c
UD
55 for (nsid = 0; nsid < DL_NNS; ++nsid)
56 for (l = GL(dl_ns)[nsid]._ns_loaded; l != NULL; l = l->l_next)
a334319f
UD
57 if (caller >= l->l_map_start && caller < l->l_map_end)
58 /* There must be exactly one DSO for the range of the virtual
59 memory. Otherwise something is really broken. */
5ca3d19c 60 break;
45e4762c
RM
61
62 if (l == NULL)
154d10bd 63 GLRO(dl_signal_error) (0, NULL, NULL, N_("\
45e4762c
RM
64RTLD_SELF used in code not dynamically loaded"));
65 }
5f21997b 66# endif
45e4762c
RM
67
68 switch (args->request)
69 {
45e4762c
RM
70 case RTLD_DI_CONFIGADDR:
71 default:
154d10bd 72 GLRO(dl_signal_error) (0, NULL, NULL, N_("unsupported dlinfo request"));
45e4762c
RM
73 break;
74
c0f62c56
UD
75 case RTLD_DI_LMID:
76 *(Lmid_t *) args->arg = l->l_ns;
77 break;
78
45e4762c
RM
79 case RTLD_DI_LINKMAP:
80 *(struct link_map **) args->arg = l;
81 break;
82
83 case RTLD_DI_SERINFO:
84 _dl_rtld_di_serinfo (l, args->arg, false);
85 break;
86 case RTLD_DI_SERINFOSIZE:
87 _dl_rtld_di_serinfo (l, args->arg, true);
88 break;
89
90 case RTLD_DI_ORIGIN:
91 strcpy (args->arg, l->l_origin);
92 break;
93 }
94}
95
96int
5f21997b 97__dlinfo (void *handle, int request, void *arg DL_CALLER_DECL)
45e4762c 98{
5f21997b
UD
99# ifdef SHARED
100 if (__builtin_expect (_dlfcn_hook != NULL, 0))
101 return _dlfcn_hook->dlinfo (handle, request, arg,
102 DL_CALLER);
103# endif
104
105 struct dlinfo_args args = { (ElfW(Addr)) DL_CALLER,
45e4762c
RM
106 handle, request, arg };
107 return _dlerror_run (&dlinfo_doit, &args) ? -1 : 0;
108}
5f21997b
UD
109# ifdef SHARED
110strong_alias (__dlinfo, dlinfo)
111# endif
112#endif
This page took 0.10829 seconds and 5 git commands to generate.