1 /* dlinfo -- Get information from the dynamic linker.
2 Copyright (C) 2003-2020 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 <https://www.gnu.org/licenses/>. */
24 #if !defined SHARED && IS_IN (libdl)
27 dlinfo (void *handle
, int request
, void *arg
)
29 return __dlinfo (handle
, request
, arg
);
44 dlinfo_doit (void *argsblock
)
46 struct dlinfo_args
*const args
= argsblock
;
47 struct link_map
*l
= args
->handle
;
49 switch (args
->request
)
51 case RTLD_DI_CONFIGADDR
:
53 _dl_signal_error (0, NULL
, NULL
, N_("unsupported dlinfo request"));
57 *(Lmid_t
*) args
->arg
= l
->l_ns
;
61 *(struct link_map
**) args
->arg
= l
;
65 _dl_rtld_di_serinfo (l
, args
->arg
, false);
67 case RTLD_DI_SERINFOSIZE
:
68 _dl_rtld_di_serinfo (l
, args
->arg
, true);
72 strcpy (args
->arg
, l
->l_origin
);
75 case RTLD_DI_TLS_MODID
:
76 *(size_t *) args
->arg
= 0;
77 *(size_t *) args
->arg
= l
->l_tls_modid
;
80 case RTLD_DI_TLS_DATA
:
83 if (l
->l_tls_modid
!= 0)
84 data
= GLRO(dl_tls_get_addr_soft
) (l
);
85 *(void **) args
->arg
= data
;
92 __dlinfo (void *handle
, int request
, void *arg
)
96 return _dlfcn_hook
->dlinfo (handle
, request
, arg
);
99 struct dlinfo_args args
= { handle
, request
, arg
};
100 return _dlerror_run (&dlinfo_doit
, &args
) ? -1 : 0;
103 strong_alias (__dlinfo
, dlinfo
)