]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/resolve/resolved.c
treewide: auto-convert the simple cases to log_*_errno()
[thirdparty/systemd.git] / src / resolve / resolved.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2014 Tom Gundersen <teg@jklm.no>
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include "sd-event.h"
23 #include "sd-daemon.h"
24 #include "mkdir.h"
25 #include "label.h"
26 #include "capability.h"
27
28 #include "resolved-manager.h"
29 #include "resolved-conf.h"
30
31 int main(int argc, char *argv[]) {
32 _cleanup_(manager_freep) Manager *m = NULL;
33 const char *user = "systemd-resolve";
34 uid_t uid;
35 gid_t gid;
36 int r;
37
38 log_set_target(LOG_TARGET_AUTO);
39 log_parse_environment();
40 log_open();
41
42 if (argc != 1) {
43 log_error("This program takes no arguments.");
44 r = -EINVAL;
45 goto finish;
46 }
47
48 umask(0022);
49
50 r = mac_selinux_init(NULL);
51 if (r < 0) {
52 log_error_errno(-r, "SELinux setup failed: %m");
53 goto finish;
54 }
55
56 r = get_user_creds(&user, &uid, &gid, NULL, NULL);
57 if (r < 0) {
58 log_error_errno(-r, "Cannot resolve user name %s: %m", user);
59 goto finish;
60 }
61
62 /* Always create the directory where resolv.conf will live */
63 r = mkdir_safe_label("/run/systemd/resolve", 0755, uid, gid);
64 if (r < 0) {
65 log_error_errno(-r, "Could not create runtime directory: %m");
66 goto finish;
67 }
68
69 r = drop_privileges(uid, gid, 0);
70 if (r < 0)
71 goto finish;
72
73 assert_se(sigprocmask_many(SIG_BLOCK, SIGTERM, SIGINT, -1) == 0);
74
75 r = manager_new(&m);
76 if (r < 0) {
77 log_error_errno(-r, "Could not create manager: %m");
78 goto finish;
79 }
80
81 r = manager_parse_config_file(m);
82 if (r < 0)
83 log_warning_errno(-r, "Failed to parse configuration file: %m");
84
85 r = manager_start(m);
86 if (r < 0) {
87 log_error_errno(-r, "Failed to start manager: %m");
88 goto finish;
89 }
90
91 /* Write finish default resolv.conf to avoid a dangling
92 * symlink */
93 r = manager_write_resolv_conf(m);
94 if (r < 0)
95 log_warning_errno(-r, "Could not create resolv.conf: %m");
96
97 sd_notify(false,
98 "READY=1\n"
99 "STATUS=Processing requests...");
100
101 r = sd_event_loop(m->event);
102 if (r < 0) {
103 log_error_errno(-r, "Event loop failed: %m");
104 goto finish;
105 }
106
107 sd_event_get_exit_code(m->event, &r);
108
109 finish:
110 sd_notify(false,
111 "STOPPING=1\n"
112 "STATUS=Shutting down...");
113
114 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
115 }