Update copyright dates with scripts/update-copyrights.
[glibc.git] / dlfcn / dlinfo.c
blobed6e4a3aa499431ab2392b7e2f62fa5b4bf8e573
1 /* dlinfo -- Get information from the dynamic linker.
2 Copyright (C) 2003-2015 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 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.
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.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <dlfcn.h>
20 #include <link.h>
21 #include <ldsodefs.h>
22 #include <libintl.h>
24 #if !defined SHARED && IS_IN (libdl)
26 int
27 dlinfo (void *handle, int request, void *arg)
29 return __dlinfo (handle, request, arg, RETURN_ADDRESS (0));
32 #else
34 # include <dl-tls.h>
36 struct dlinfo_args
38 ElfW(Addr) caller;
39 void *handle;
40 int request;
41 void *arg;
44 static void
45 dlinfo_doit (void *argsblock)
47 struct dlinfo_args *const args = argsblock;
48 struct link_map *l = args->handle;
50 # if 0
51 if (args->handle == RTLD_SELF)
53 Lmid_t nsid;
55 /* Find the highest-addressed object that CALLER is not below. */
56 for (nsid = 0; nsid < DL_NNS; ++nsid)
57 for (l = GL(dl_ns)[nsid]._ns_loaded; l != NULL; l = l->l_next)
58 if (caller >= l->l_map_start && caller < l->l_map_end
59 && (l->l_contiguous || _dl_addr_inside_object (l, caller)))
60 break;
62 if (l == NULL)
63 GLRO(dl_signal_error) (0, NULL, NULL, N_("\
64 RTLD_SELF used in code not dynamically loaded"));
66 # endif
68 switch (args->request)
70 case RTLD_DI_CONFIGADDR:
71 default:
72 GLRO(dl_signal_error) (0, NULL, NULL, N_("unsupported dlinfo request"));
73 break;
75 case RTLD_DI_LMID:
76 *(Lmid_t *) args->arg = l->l_ns;
77 break;
79 case RTLD_DI_LINKMAP:
80 *(struct link_map **) args->arg = l;
81 break;
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;
90 case RTLD_DI_ORIGIN:
91 strcpy (args->arg, l->l_origin);
92 break;
94 case RTLD_DI_TLS_MODID:
95 *(size_t *) args->arg = 0;
96 *(size_t *) args->arg = l->l_tls_modid;
97 break;
99 case RTLD_DI_TLS_DATA:
101 void *data = NULL;
102 if (l->l_tls_modid != 0)
103 data = GLRO(dl_tls_get_addr_soft) (l);
104 *(void **) args->arg = data;
105 break;
111 __dlinfo (void *handle, int request, void *arg DL_CALLER_DECL)
113 # ifdef SHARED
114 if (__glibc_unlikely (_dlfcn_hook != NULL))
115 return _dlfcn_hook->dlinfo (handle, request, arg,
116 DL_CALLER);
117 # endif
119 struct dlinfo_args args = { (ElfW(Addr)) DL_CALLER,
120 handle, request, arg };
121 return _dlerror_run (&dlinfo_doit, &args) ? -1 : 0;
123 # ifdef SHARED
124 strong_alias (__dlinfo, dlinfo)
125 # endif
126 #endif