]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/dl-dst.h
Fix math/test-fenvinline for no-exceptions configurations.
[thirdparty/glibc.git] / elf / dl-dst.h
CommitLineData
dc5efe83 1/* Handling of dynamic sring tokens.
bfff8b1b 2 Copyright (C) 1999-2017 Free Software Foundation, Inc.
dc5efe83
UD
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
41bdb6e2
AJ
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.
dc5efe83
UD
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
41bdb6e2 13 Lesser General Public License for more details.
dc5efe83 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
dc5efe83 18
4c35fb65
AS
19#include "trusted-dirs.h"
20
dc5efe83
UD
21/* Determine the number of DST elements in the name. Only if IS_PATH is
22 nonzero paths are recognized (i.e., multiple, ':' separated filenames). */
23#define DL_DST_COUNT(name, is_path) \
24 ({ \
25 size_t __cnt = 0; \
26 const char *__sf = strchr (name, '$'); \
27 \
a1ffb40e 28 if (__glibc_unlikely (__sf != NULL)) \
154d10bd 29 __cnt = _dl_dst_count (__sf, is_path); \
dc5efe83
UD
30 \
31 __cnt; })
dc5efe83
UD
32
33
08769175
UD
34#ifdef SHARED
35# define IS_RTLD(l) (l) == &GL(dl_rtld_map)
36#else
37# define IS_RTLD(l) 0
38#endif
b3fc5f84 39/* Guess from the number of DSTs the length of the result string. */
dc5efe83
UD
40#define DL_DST_REQUIRED(l, name, len, cnt) \
41 ({ \
dc5efe83 42 size_t __len = (len); \
d4b04a33 43 size_t __cnt = (cnt); \
dc5efe83 44 \
d4b04a33 45 if (__cnt > 0) \
dc5efe83 46 { \
08769175 47 size_t dst_len; \
d4b04a33
UD
48 /* Now we make a guess how many extra characters on top of the \
49 length of S we need to represent the result. We know that \
50 we have CNT replacements. Each at most can use \
4c35fb65
AS
51 MAX (MAX (strlen (ORIGIN), strlen (_dl_platform)), \
52 strlen (DL_DST_LIB)) \
53 minus 4 (which is the length of "$LIB"). \
d4b04a33
UD
54 \
55 First get the origin string if it is not available yet. \
08769175
UD
56 This can only happen for the map of the executable or, when \
57 auditing, in ld.so. */ \
d4b04a33
UD
58 if ((l)->l_origin == NULL) \
59 { \
08769175 60 assert ((l)->l_name[0] == '\0' || IS_RTLD (l)); \
d4b04a33 61 (l)->l_origin = _dl_get_origin (); \
4c35fb65 62 dst_len = ((l)->l_origin && (l)->l_origin != (char *) -1 \
d4b04a33
UD
63 ? strlen ((l)->l_origin) : 0); \
64 } \
65 else \
4c35fb65 66 dst_len = (l)->l_origin == (char *) -1 \
d4b04a33 67 ? 0 : strlen ((l)->l_origin); \
08769175 68 dst_len = MAX (MAX (dst_len, GLRO(dl_platformlen)), \
4c35fb65
AS
69 strlen (DL_DST_LIB)); \
70 if (dst_len > 4) \
71 __len += __cnt * (dst_len - 4); \
dc5efe83 72 } \
dc5efe83 73 \
d4b04a33 74 __len; })