CVE-2024-33601, CVE-2024-33602: nscd: netgroup: Use two buffers in addgetnetgrentX...
[glibc.git] / elf / dl-tunables.c
blobd3ccd2ecd4e2e1cdc4f6a9ac55637afda97ab97a
1 /* The tunable framework. See the README.tunables to know how to use the
2 tunable in a glibc module.
4 Copyright (C) 2016-2024 Free Software Foundation, Inc.
5 This file is part of the GNU C Library.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, see
19 <https://www.gnu.org/licenses/>. */
21 /* Mark symbols hidden in static PIE for early self relocation to work. */
22 #if BUILD_PIE_DEFAULT
23 # pragma GCC visibility push(hidden)
24 #endif
25 #include <startup.h>
26 #include <stdint.h>
27 #include <stdbool.h>
28 #include <unistd.h>
29 #include <stdlib.h>
30 #include <sysdep.h>
31 #include <fcntl.h>
32 #include <ldsodefs.h>
33 #include <array_length.h>
34 #include <dl-minimal-malloc.h>
36 #define TUNABLES_INTERNAL 1
37 #include "dl-tunables.h"
39 static char **
40 get_next_env (char **envp, char **name, char **val, char ***prev_envp)
42 while (envp != NULL && *envp != NULL)
44 char **prev = envp;
45 char *envline = *envp++;
46 int len = 0;
48 while (envline[len] != '\0' && envline[len] != '=')
49 len++;
51 /* Just the name and no value, go to the next one. */
52 if (envline[len] == '\0')
53 continue;
55 *name = envline;
56 *val = &envline[len + 1];
57 *prev_envp = prev;
59 return envp;
62 return NULL;
65 static void
66 do_tunable_update_val (tunable_t *cur, const tunable_val_t *valp,
67 const tunable_num_t *minp,
68 const tunable_num_t *maxp)
70 tunable_num_t val, min, max;
72 switch (cur->type.type_code)
74 case TUNABLE_TYPE_STRING:
75 cur->val.strval = valp->strval;
76 cur->initialized = true;
77 return;
78 case TUNABLE_TYPE_INT_32:
79 val = (int32_t) valp->numval;
80 break;
81 case TUNABLE_TYPE_UINT_64:
82 val = (int64_t) valp->numval;
83 break;
84 case TUNABLE_TYPE_SIZE_T:
85 val = (size_t) valp->numval;
86 break;
87 default:
88 __builtin_unreachable ();
91 bool unsigned_cmp = unsigned_tunable_type (cur->type.type_code);
93 min = minp != NULL ? *minp : cur->type.min;
94 max = maxp != NULL ? *maxp : cur->type.max;
96 /* We allow only increasingly restrictive bounds. */
97 if (tunable_val_lt (min, cur->type.min, unsigned_cmp))
98 min = cur->type.min;
100 if (tunable_val_gt (max, cur->type.max, unsigned_cmp))
101 max = cur->type.max;
103 /* Skip both bounds if they're inconsistent. */
104 if (tunable_val_gt (min, max, unsigned_cmp))
106 min = cur->type.min;
107 max = cur->type.max;
110 /* Bail out if the bounds are not valid. */
111 if (tunable_val_lt (val, min, unsigned_cmp)
112 || tunable_val_lt (max, val, unsigned_cmp))
113 return;
115 cur->val.numval = val;
116 cur->type.min = min;
117 cur->type.max = max;
118 cur->initialized = true;
121 /* Validate range of the input value and initialize the tunable CUR if it looks
122 good. */
123 static bool
124 tunable_initialize (tunable_t *cur, const char *strval, size_t len)
126 tunable_val_t val = { 0 };
128 if (cur->type.type_code != TUNABLE_TYPE_STRING)
130 char *endptr = NULL;
131 uint64_t numval = _dl_strtoul (strval, &endptr);
132 if (endptr != strval + len)
133 return false;
134 val.numval = (tunable_num_t) numval;
136 else
137 val.strval = (struct tunable_str_t) { strval, len };
138 do_tunable_update_val (cur, &val, NULL, NULL);
140 return true;
143 bool
144 __tunable_is_initialized (tunable_id_t id)
146 return tunable_list[id].initialized;
148 rtld_hidden_def (__tunable_is_initialized)
150 void
151 __tunable_set_val (tunable_id_t id, tunable_val_t *valp, tunable_num_t *minp,
152 tunable_num_t *maxp)
154 tunable_t *cur = &tunable_list[id];
156 do_tunable_update_val (cur, valp, minp, maxp);
159 struct tunable_toset_t
161 tunable_t *t;
162 const char *value;
163 size_t len;
166 enum { tunables_list_size = array_length (tunable_list) };
168 /* Parse the tunable string VALSTRING and set TUNABLES with the found tunables
169 and their respective values. The VALSTRING is parsed in place, with the
170 tunable start and size recorded in TUNABLES.
171 Return the number of tunables found (including 0 if the string is empty)
172 or -1 if for an ill-formatted definition. */
173 static int
174 parse_tunables_string (const char *valstring, struct tunable_toset_t *tunables)
176 if (valstring == NULL || *valstring == '\0')
177 return 0;
179 const char *p = valstring;
180 bool done = false;
181 int ntunables = 0;
183 while (!done)
185 const char *name = p;
187 /* First, find where the name ends. */
188 while (*p != '=' && *p != ':' && *p != '\0')
189 p++;
191 /* If we reach the end of the string before getting a valid name-value
192 pair, bail out. */
193 if (*p == '\0')
194 return -1;
196 /* We did not find a valid name-value pair before encountering the
197 colon. */
198 if (*p == ':')
200 p++;
201 continue;
204 /* Skip the '='. */
205 p++;
207 const char *value = p;
209 while (*p != '=' && *p != ':' && *p != '\0')
210 p++;
212 if (*p == '=')
213 return -1;
214 else if (*p == '\0')
215 done = true;
217 /* Add the tunable if it exists. */
218 for (size_t i = 0; i < tunables_list_size; i++)
220 tunable_t *cur = &tunable_list[i];
222 if (tunable_is_name (cur->name, name))
224 tunables[ntunables++] =
225 (struct tunable_toset_t) { cur, value, p - value };
227 /* Ignore tunables if enable_secure is set */
228 if (tunable_is_name ("glibc.rtld.enable_secure", name))
230 tunable_num_t val = (tunable_num_t) _dl_strtoul (value, NULL);
231 if (val == 1)
233 __libc_enable_secure = 1;
234 return 0;
237 break;
242 return ntunables;
245 static void
246 parse_tunables (const char *valstring)
248 struct tunable_toset_t tunables[tunables_list_size];
249 int ntunables = parse_tunables_string (valstring, tunables);
250 if (ntunables == -1)
252 _dl_error_printf (
253 "WARNING: ld.so: invalid GLIBC_TUNABLES `%s': ignored.\n", valstring);
254 return;
257 for (int i = 0; i < ntunables; i++)
258 if (!tunable_initialize (tunables[i].t, tunables[i].value,
259 tunables[i].len))
260 _dl_error_printf ("WARNING: ld.so: invalid GLIBC_TUNABLES value `%.*s' "
261 "for option `%s': ignored.\n",
262 (int) tunables[i].len,
263 tunables[i].value,
264 tunables[i].t->name);
267 /* Initialize the tunables list from the environment. For now we only use the
268 ENV_ALIAS to find values. Later we will also use the tunable names to find
269 values. */
270 void
271 __tunables_init (char **envp)
273 char *envname = NULL;
274 char *envval = NULL;
275 char **prev_envp = envp;
277 /* Ignore tunables for AT_SECURE programs. */
278 if (__libc_enable_secure)
279 return;
281 while ((envp = get_next_env (envp, &envname, &envval, &prev_envp)) != NULL)
283 /* The environment variable is allocated on the stack by the kernel, so
284 it is safe to keep the references to the suboptions for later parsing
285 of string tunables. */
286 if (tunable_is_name ("GLIBC_TUNABLES", envname))
288 parse_tunables (envval);
289 continue;
292 for (int i = 0; i < tunables_list_size; i++)
294 tunable_t *cur = &tunable_list[i];
296 /* Skip over tunables that have either been set already or should be
297 skipped. */
298 if (cur->initialized || cur->env_alias[0] == '\0')
299 continue;
301 const char *name = cur->env_alias;
303 /* We have a match. Initialize and move on to the next line. */
304 if (tunable_is_name (name, envname))
306 size_t envvallen = 0;
307 /* The environment variable is always null-terminated. */
308 for (const char *p = envval; *p != '\0'; p++, envvallen++);
310 tunable_initialize (cur, envval, envvallen);
311 break;
317 void
318 __tunables_print (void)
320 for (int i = 0; i < array_length (tunable_list); i++)
322 const tunable_t *cur = &tunable_list[i];
323 if (cur->type.type_code == TUNABLE_TYPE_STRING
324 && cur->val.strval.str == NULL)
325 _dl_printf ("%s:\n", cur->name);
326 else
328 _dl_printf ("%s: ", cur->name);
329 switch (cur->type.type_code)
331 case TUNABLE_TYPE_INT_32:
332 _dl_printf ("%d (min: %d, max: %d)\n",
333 (int) cur->val.numval,
334 (int) cur->type.min,
335 (int) cur->type.max);
336 break;
337 case TUNABLE_TYPE_UINT_64:
338 _dl_printf ("0x%lx (min: 0x%lx, max: 0x%lx)\n",
339 (long int) cur->val.numval,
340 (long int) cur->type.min,
341 (long int) cur->type.max);
342 break;
343 case TUNABLE_TYPE_SIZE_T:
344 _dl_printf ("0x%zx (min: 0x%zx, max: 0x%zx)\n",
345 (size_t) cur->val.numval,
346 (size_t) cur->type.min,
347 (size_t) cur->type.max);
348 break;
349 case TUNABLE_TYPE_STRING:
350 _dl_printf ("%.*s\n",
351 (int) cur->val.strval.len,
352 cur->val.strval.str);
353 break;
354 default:
355 __builtin_unreachable ();
361 void
362 __tunable_get_default (tunable_id_t id, void *valp)
364 tunable_t *cur = &tunable_list[id];
366 switch (cur->type.type_code)
368 case TUNABLE_TYPE_UINT_64:
370 *((uint64_t *) valp) = (uint64_t) cur->def.numval;
371 break;
373 case TUNABLE_TYPE_INT_32:
375 *((int32_t *) valp) = (int32_t) cur->def.numval;
376 break;
378 case TUNABLE_TYPE_SIZE_T:
380 *((size_t *) valp) = (size_t) cur->def.numval;
381 break;
383 case TUNABLE_TYPE_STRING:
385 *((const struct tunable_str_t **)valp) = &cur->def.strval;
386 break;
388 default:
389 __builtin_unreachable ();
392 rtld_hidden_def (__tunable_get_default)
394 /* Set the tunable value. This is called by the module that the tunable exists
395 in. */
396 void
397 __tunable_get_val (tunable_id_t id, void *valp, tunable_callback_t callback)
399 tunable_t *cur = &tunable_list[id];
401 switch (cur->type.type_code)
403 case TUNABLE_TYPE_UINT_64:
405 *((uint64_t *) valp) = (uint64_t) cur->val.numval;
406 break;
408 case TUNABLE_TYPE_INT_32:
410 *((int32_t *) valp) = (int32_t) cur->val.numval;
411 break;
413 case TUNABLE_TYPE_SIZE_T:
415 *((size_t *) valp) = (size_t) cur->val.numval;
416 break;
418 case TUNABLE_TYPE_STRING:
420 *((const struct tunable_str_t **) valp) = &cur->val.strval;
421 break;
423 default:
424 __builtin_unreachable ();
427 if (cur->initialized && callback != NULL)
428 callback (&cur->val);
431 rtld_hidden_def (__tunable_get_val)