elf: Ignore GLIBC_TUNABLES for setuid/setgid binaries
[glibc.git] / elf / dl-tunable-types.h
blob62d6d9e6295d528a096978c4c514fe4930b708df
1 /* Internal representation of tunables.
3 Copyright (C) 2016-2023 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <https://www.gnu.org/licenses/>. */
20 #ifndef _TUNABLE_TYPES_H_
21 #define _TUNABLE_TYPES_H_
23 /* Note: This header is included in the generated dl-tunables-list.h and
24 only used internally in the tunables implementation in dl-tunables.c. */
26 #include <stdbool.h>
27 #include <stddef.h>
28 #include <stdint.h>
30 typedef enum
32 TUNABLE_TYPE_INT_32,
33 TUNABLE_TYPE_UINT_64,
34 TUNABLE_TYPE_SIZE_T,
35 TUNABLE_TYPE_STRING
36 } tunable_type_code_t;
38 typedef struct
40 tunable_type_code_t type_code;
41 tunable_num_t min;
42 tunable_num_t max;
43 } tunable_type_t;
45 /* Security level for tunables. This decides what to do with individual
46 tunables for AT_SECURE binaries. */
47 typedef enum
49 /* Erase the tunable for AT_SECURE binaries so that child processes don't
50 read it. */
51 TUNABLE_SECLEVEL_SXID_ERASE = 0,
52 /* Ignore the tunable for AT_SECURE binaries, but don't erase it, so that
53 child processes can read it. */
54 TUNABLE_SECLEVEL_SXID_IGNORE = 1,
55 /* Read the tunable. */
56 TUNABLE_SECLEVEL_NONE = 2,
57 } tunable_seclevel_t;
59 /* A tunable. */
60 struct _tunable
62 const char name[TUNABLE_NAME_MAX]; /* Internal name of the tunable. */
63 tunable_type_t type; /* Data type of the tunable. */
64 tunable_val_t val; /* The value. */
65 bool initialized; /* Flag to indicate that the tunable is
66 initialized. */
67 /* Compatibility elements. */
68 const char env_alias[TUNABLE_ALIAS_MAX]; /* The compatibility environment
69 variable name. */
72 typedef struct _tunable tunable_t;
74 static __always_inline bool
75 unsigned_tunable_type (tunable_type_code_t t)
77 switch (t)
79 case TUNABLE_TYPE_INT_32:
80 return false;
81 case TUNABLE_TYPE_UINT_64:
82 case TUNABLE_TYPE_SIZE_T:
83 return true;
84 case TUNABLE_TYPE_STRING:
85 default:
86 break;
88 __builtin_unreachable ();
91 #endif