]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/udev-util.c
tree-wide: drop license boilerplate
[thirdparty/systemd.git] / src / shared / udev-util.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
b237a168
ZJS
2/***
3 This file is part of systemd.
4
5 Copyright 2017 Zbigniew Jędrzejewski-Szmek
b237a168
ZJS
6***/
7
8#include <string.h>
9
10#include "fileio.h"
11#include "log.h"
12#include "string-util.h"
13#include "udev-util.h"
14
15int udev_parse_config(void) {
16 _cleanup_free_ char *val = NULL;
17 const char *log;
18 size_t n;
19 int r;
20
21 r = parse_env_file("/etc/udev/udev.conf", NEWLINE, "udev_log", &val, NULL);
22 if (r == -ENOENT || !val)
23 return 0;
24 if (r < 0)
25 return r;
26
27 /* unquote */
28 n = strlen(val);
29 if (n >= 2 &&
30 ((val[0] == '"' && val[n-1] == '"') ||
31 (val[0] == '\'' && val[n-1] == '\''))) {
32 val[n - 1] = '\0';
33 log = val + 1;
34 } else
35 log = val;
36
37 /* we set the udev log level here explicitly, this is supposed
38 * to regulate the code in libudev/ and udev/. */
39 r = log_set_max_level_from_string_realm(LOG_REALM_UDEV, log);
40 if (r < 0)
41 log_debug_errno(r, "/etc/udev/udev.conf: failed to set udev log level '%s', ignoring: %m", log);
42
43 return 0;
44}