1 /* The tunable framework. See the README to know how to use the tunable in
4 Copyright (C) 2016-2017 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 <http://www.gnu.org/licenses/>. */
27 __tunables_init (char **unused
__attribute__ ((unused
)))
29 /* This is optimized out if tunables are not enabled. */
34 # include "dl-tunable-types.h"
39 const char *name
; /* Internal name of the tunable. */
40 tunable_type_t type
; /* Data type of the tunable. */
41 tunable_val_t val
; /* The value. */
42 const char *strval
; /* The string containing the value,
44 tunable_seclevel_t security_level
; /* Specify the security level for the
45 tunable with respect to AT_SECURE
46 programs. See description of
47 tunable_seclevel_t to see a
48 description of the values.
50 Note that even if the tunable is
51 read, it may not get used by the
52 target module if the value is
54 /* Compatibility elements. */
55 const char *env_alias
; /* The compatibility environment
59 typedef struct _tunable tunable_t
;
61 /* Full name for a tunable is top_ns.tunable_ns.id. */
62 # define TUNABLE_NAME_S(top,ns,id) #top "." #ns "." #id
64 # define TUNABLE_ENUM_NAME(top,ns,id) TUNABLE_ENUM_NAME1 (top,ns,id)
65 # define TUNABLE_ENUM_NAME1(top,ns,id) top ## _ ## ns ## _ ## id
67 # include "dl-tunable-list.h"
69 extern void __tunables_init (char **);
70 extern void __tunable_set_val (tunable_id_t
, void *, tunable_callback_t
);
72 /* Check if the tunable has been set to a non-default value and if it is, copy
73 it over into __VAL. */
74 # define TUNABLE_SET_VAL(__id,__val) \
77 (TUNABLE_ENUM_NAME (TOP_NAMESPACE, TUNABLE_NAMESPACE, __id), (__val), \
81 /* Same as TUNABLE_SET_VAL, but also call the callback function __CB. */
82 # define TUNABLE_SET_VAL_WITH_CALLBACK(__id,__val,__cb) \
85 (TUNABLE_ENUM_NAME (TOP_NAMESPACE, TUNABLE_NAMESPACE, __id), (__val), \
86 DL_TUNABLE_CALLBACK (__cb)); \
89 /* Namespace sanity for callback functions. Use this macro to keep the
90 namespace of the modules clean. */
91 # define DL_TUNABLE_CALLBACK(__name) _dl_tunable_ ## __name
93 # define TUNABLES_FRONTEND_valstring 1
94 /* The default value for TUNABLES_FRONTEND. */
95 # define TUNABLES_FRONTEND_yes TUNABLES_FRONTEND_valstring