chiark / gitweb /
Merge patches from Hleb Valoshka
[elogind.git] / src / shared / udev-util.c
1 /***
2   This file is part of systemd.
3
4   Copyright 2017 Zbigniew JÄ™drzejewski-Szmek
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   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.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <string.h>
21
22 #include "alloc-util.h"
23 #include "fileio.h"
24 #include "log.h"
25 #include "string-util.h"
26 #include "udev-util.h"
27
28 int udev_parse_config(void) {
29         _cleanup_free_ char *val = NULL;
30         const char *log;
31         size_t n;
32         int r;
33
34         r = parse_env_file("/etc/udev/udev.conf", NEWLINE, "udev_log", &val, NULL);
35         if (r == -ENOENT || !val)
36                 return 0;
37         if (r < 0)
38                 return r;
39
40         /* unquote */
41         n = strlen(val);
42         if (n >= 2 &&
43             ((val[0] == '"' && val[n-1] == '"') ||
44              (val[0] == '\'' && val[n-1] == '\''))) {
45                 val[n - 1] = '\0';
46                 log = val + 1;
47         } else
48                 log = val;
49
50         /* we set the udev log level here explicitly, this is supposed
51          * to regulate the code in libudev/ and udev/. */
52         r = log_set_max_level_from_string_realm(LOG_REALM_UDEV, log);
53         if (r < 0)
54                 log_debug_errno(r, "/etc/udev/udev.conf: failed to set udev log level '%s', ignoring: %m", log);
55
56         return 0;
57 }