]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/sysctl/sysctl.c
mkosi: Add explicit --bootable=no openSUSE dependencies
[thirdparty/systemd.git] / src / sysctl / sysctl.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <errno.h>
4 #include <getopt.h>
5 #include <limits.h>
6 #include <stdbool.h>
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <sys/stat.h>
10 #include <sys/types.h>
11
12 #include "conf-files.h"
13 #include "def.h"
14 #include "errno-util.h"
15 #include "fd-util.h"
16 #include "fileio.h"
17 #include "glob-util.h"
18 #include "hashmap.h"
19 #include "log.h"
20 #include "main-func.h"
21 #include "pager.h"
22 #include "path-util.h"
23 #include "pretty-print.h"
24 #include "string-util.h"
25 #include "strv.h"
26 #include "sysctl-util.h"
27
28 static char **arg_prefixes = NULL;
29 static bool arg_cat_config = false;
30 static PagerFlags arg_pager_flags = 0;
31
32 STATIC_DESTRUCTOR_REGISTER(arg_prefixes, strv_freep);
33
34 typedef struct Option {
35 char *key;
36 char *value;
37 bool ignore_failure;
38 } Option;
39
40 static Option *option_free(Option *o) {
41 if (!o)
42 return NULL;
43
44 free(o->key);
45 free(o->value);
46
47 return mfree(o);
48 }
49
50 DEFINE_TRIVIAL_CLEANUP_FUNC(Option*, option_free);
51 DEFINE_HASH_OPS_WITH_VALUE_DESTRUCTOR(option_hash_ops, char, string_hash_func, string_compare_func, Option, option_free);
52
53 static bool test_prefix(const char *p) {
54 char **i;
55
56 if (strv_isempty(arg_prefixes))
57 return true;
58
59 STRV_FOREACH(i, arg_prefixes) {
60 const char *t;
61
62 t = path_startswith(*i, "/proc/sys/");
63 if (!t)
64 t = *i;
65
66 if (path_startswith(p, t))
67 return true;
68 }
69
70 return false;
71 }
72
73 static Option *option_new(
74 const char *key,
75 const char *value,
76 bool ignore_failure) {
77
78 _cleanup_(option_freep) Option *o = NULL;
79
80 assert(key);
81
82 o = new(Option, 1);
83 if (!o)
84 return NULL;
85
86 *o = (Option) {
87 .key = strdup(key),
88 .value = value ? strdup(value) : NULL,
89 .ignore_failure = ignore_failure,
90 };
91
92 if (!o->key)
93 return NULL;
94 if (value && !o->value)
95 return NULL;
96
97 return TAKE_PTR(o);
98 }
99
100 static int sysctl_write_or_warn(const char *key, const char *value, bool ignore_failure) {
101 int r;
102
103 r = sysctl_write(key, value);
104 if (r < 0) {
105 /* If the sysctl is not available in the kernel or we are running with reduced privileges and
106 * cannot write it, then log about the issue, and proceed without failing. (EROFS is treated
107 * as a permission problem here, since that's how container managers usually protected their
108 * sysctls.) In all other cases log an error and make the tool fail. */
109 if (ignore_failure || r == -EROFS || ERRNO_IS_PRIVILEGE(r))
110 log_debug_errno(r, "Couldn't write '%s' to '%s', ignoring: %m", value, key);
111 else if (r == -ENOENT)
112 log_info_errno(r, "Couldn't write '%s' to '%s', ignoring: %m", value, key);
113 else
114 return log_error_errno(r, "Couldn't write '%s' to '%s': %m", value, key);
115 }
116
117 return 0;
118 }
119
120 static int apply_all(OrderedHashmap *sysctl_options) {
121 Option *option;
122 Iterator i;
123 int r = 0;
124
125 ORDERED_HASHMAP_FOREACH(option, sysctl_options, i) {
126 int k;
127
128 /* Ignore "negative match" options, they are there only to exclude stuff from globs. */
129 if (!option->value)
130 continue;
131
132 if (string_is_glob(option->key)) {
133 _cleanup_strv_free_ char **paths = NULL;
134 _cleanup_free_ char *pattern = NULL;
135 char **s;
136
137 pattern = path_join("/proc/sys", option->key);
138 if (!pattern)
139 return log_oom();
140
141 k = glob_extend(&paths, pattern);
142 if (k < 0) {
143 if (option->ignore_failure || ERRNO_IS_PRIVILEGE(k))
144 log_debug_errno(k, "Failed to resolve glob '%s', ignoring: %m",
145 option->key);
146 else {
147 log_error_errno(k, "Couldn't resolve glob '%s': %m",
148 option->key);
149 if (r == 0)
150 r = k;
151 }
152
153 } else if (strv_isempty(paths))
154 log_debug("No match for glob: %s", option->key);
155
156 STRV_FOREACH(s, paths) {
157 const char *key;
158
159 assert_se(key = path_startswith(*s, "/proc/sys"));
160
161 if (!test_prefix(key))
162 continue;
163
164 if (ordered_hashmap_contains(sysctl_options, key)) {
165 log_info("Not setting %s (explicit setting exists).", key);
166 continue;
167 }
168
169 k = sysctl_write_or_warn(key, option->value, option->ignore_failure);
170 if (r == 0)
171 r = k;
172 }
173
174 } else {
175 k = sysctl_write_or_warn(option->key, option->value, option->ignore_failure);
176 if (r == 0)
177 r = k;
178 }
179 }
180
181 return r;
182 }
183
184 static int parse_file(OrderedHashmap **sysctl_options, const char *path, bool ignore_enoent) {
185 _cleanup_fclose_ FILE *f = NULL;
186 unsigned c = 0;
187 int r;
188
189 assert(path);
190
191 r = search_and_fopen(path, "re", NULL, (const char**) CONF_PATHS_STRV("sysctl.d"), &f);
192 if (r < 0) {
193 if (ignore_enoent && r == -ENOENT)
194 return 0;
195
196 return log_error_errno(r, "Failed to open file '%s', ignoring: %m", path);
197 }
198
199 log_debug("Parsing %s", path);
200 for (;;) {
201 _cleanup_(option_freep) Option *new_option = NULL;
202 _cleanup_free_ char *l = NULL;
203 bool ignore_failure = false;
204 Option *existing;
205 char *p, *value;
206 int k;
207
208 k = read_line(f, LONG_LINE_MAX, &l);
209 if (k == 0)
210 break;
211 if (k < 0)
212 return log_error_errno(k, "Failed to read file '%s', ignoring: %m", path);
213
214 c++;
215
216 p = strstrip(l);
217
218 if (isempty(p))
219 continue;
220 if (strchr(COMMENTS "\n", *p))
221 continue;
222
223 value = strchr(p, '=');
224 if (value) {
225 if (p[0] == '-') {
226 ignore_failure = true;
227 p++;
228 }
229
230 *value = 0;
231 value++;
232 value = strstrip(value);
233
234 } else {
235 if (p[0] == '-')
236 /* We have a "negative match" option. Let's continue with value==NULL. */
237 p++;
238 else {
239 log_syntax(NULL, LOG_WARNING, path, c, 0,
240 "Line is not an assignment, ignoring: %s", p);
241 if (r == 0)
242 r = -EINVAL;
243 continue;
244 }
245 }
246
247 p = strstrip(p);
248 p = sysctl_normalize(p);
249
250 /* We can't filter out globs at this point, we'll need to do that later. */
251 if (!string_is_glob(p) &&
252 !test_prefix(p))
253 continue;
254
255 if (ordered_hashmap_ensure_allocated(sysctl_options, &option_hash_ops) < 0)
256 return log_oom();
257
258 existing = ordered_hashmap_get(*sysctl_options, p);
259 if (existing) {
260 if (streq_ptr(value, existing->value)) {
261 existing->ignore_failure = existing->ignore_failure || ignore_failure;
262 continue;
263 }
264
265 log_debug("Overwriting earlier assignment of %s at '%s:%u'.", p, path, c);
266 option_free(ordered_hashmap_remove(*sysctl_options, p));
267 }
268
269 new_option = option_new(p, value, ignore_failure);
270 if (!new_option)
271 return log_oom();
272
273 k = ordered_hashmap_put(*sysctl_options, new_option->key, new_option);
274 if (k < 0)
275 return log_error_errno(k, "Failed to add sysctl variable %s to hashmap: %m", p);
276
277 TAKE_PTR(new_option);
278 }
279
280 return r;
281 }
282
283 static int help(void) {
284 _cleanup_free_ char *link = NULL;
285 int r;
286
287 r = terminal_urlify_man("systemd-sysctl.service", "8", &link);
288 if (r < 0)
289 return log_oom();
290
291 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
292 "Applies kernel sysctl settings.\n\n"
293 " -h --help Show this help\n"
294 " --version Show package version\n"
295 " --cat-config Show configuration files\n"
296 " --prefix=PATH Only apply rules with the specified prefix\n"
297 " --no-pager Do not pipe output into a pager\n"
298 "\nSee the %s for details.\n"
299 , program_invocation_short_name
300 , link
301 );
302
303 return 0;
304 }
305
306 static int parse_argv(int argc, char *argv[]) {
307
308 enum {
309 ARG_VERSION = 0x100,
310 ARG_CAT_CONFIG,
311 ARG_PREFIX,
312 ARG_NO_PAGER,
313 };
314
315 static const struct option options[] = {
316 { "help", no_argument, NULL, 'h' },
317 { "version", no_argument, NULL, ARG_VERSION },
318 { "cat-config", no_argument, NULL, ARG_CAT_CONFIG },
319 { "prefix", required_argument, NULL, ARG_PREFIX },
320 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
321 {}
322 };
323
324 int c;
325
326 assert(argc >= 0);
327 assert(argv);
328
329 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
330
331 switch (c) {
332
333 case 'h':
334 return help();
335
336 case ARG_VERSION:
337 return version();
338
339 case ARG_CAT_CONFIG:
340 arg_cat_config = true;
341 break;
342
343 case ARG_PREFIX: {
344 char *p;
345
346 /* We used to require people to specify absolute paths
347 * in /proc/sys in the past. This is kinda useless, but
348 * we need to keep compatibility. We now support any
349 * sysctl name available. */
350 sysctl_normalize(optarg);
351
352 if (path_startswith(optarg, "/proc/sys"))
353 p = strdup(optarg);
354 else
355 p = path_join("/proc/sys", optarg);
356 if (!p)
357 return log_oom();
358
359 if (strv_consume(&arg_prefixes, p) < 0)
360 return log_oom();
361
362 break;
363 }
364
365 case ARG_NO_PAGER:
366 arg_pager_flags |= PAGER_DISABLE;
367 break;
368
369 case '?':
370 return -EINVAL;
371
372 default:
373 assert_not_reached("Unhandled option");
374 }
375
376 if (arg_cat_config && argc > optind)
377 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
378 "Positional arguments are not allowed with --cat-config");
379
380 return 1;
381 }
382
383 static int run(int argc, char *argv[]) {
384 _cleanup_(ordered_hashmap_freep) OrderedHashmap *sysctl_options = NULL;
385 int r, k;
386
387 r = parse_argv(argc, argv);
388 if (r <= 0)
389 return r;
390
391 log_setup_service();
392
393 umask(0022);
394
395 if (argc > optind) {
396 int i;
397
398 r = 0;
399
400 for (i = optind; i < argc; i++) {
401 k = parse_file(&sysctl_options, argv[i], false);
402 if (k < 0 && r == 0)
403 r = k;
404 }
405 } else {
406 _cleanup_strv_free_ char **files = NULL;
407 char **f;
408
409 r = conf_files_list_strv(&files, ".conf", NULL, 0, (const char**) CONF_PATHS_STRV("sysctl.d"));
410 if (r < 0)
411 return log_error_errno(r, "Failed to enumerate sysctl.d files: %m");
412
413 if (arg_cat_config) {
414 (void) pager_open(arg_pager_flags);
415
416 return cat_files(NULL, files, 0);
417 }
418
419 STRV_FOREACH(f, files) {
420 k = parse_file(&sysctl_options, *f, true);
421 if (k < 0 && r == 0)
422 r = k;
423 }
424 }
425
426 k = apply_all(sysctl_options);
427 if (k < 0 && r == 0)
428 r = k;
429
430 return r;
431 }
432
433 DEFINE_MAIN_FUNCTION(run);