]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/resolve/resolved.c
resolved: respond to local resolver requests on 127.0.0.53:53
[thirdparty/systemd.git] / src / resolve / resolved.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2014 Tom Gundersen <teg@jklm.no>
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 "sd-daemon.h"
21 #include "sd-event.h"
22
23 #include "capability-util.h"
24 #include "mkdir.h"
25 #include "resolved-conf.h"
26 #include "resolved-manager.h"
27 #include "resolved-resolv-conf.h"
28 #include "selinux-util.h"
29 #include "signal-util.h"
30 #include "user-util.h"
31
32 int main(int argc, char *argv[]) {
33 _cleanup_(manager_freep) Manager *m = NULL;
34 const char *user = "systemd-resolve";
35 uid_t uid;
36 gid_t gid;
37 int r;
38
39 log_set_target(LOG_TARGET_AUTO);
40 log_parse_environment();
41 log_open();
42
43 if (argc != 1) {
44 log_error("This program takes no arguments.");
45 r = -EINVAL;
46 goto finish;
47 }
48
49 umask(0022);
50
51 r = mac_selinux_init();
52 if (r < 0) {
53 log_error_errno(r, "SELinux setup failed: %m");
54 goto finish;
55 }
56
57 r = get_user_creds(&user, &uid, &gid, NULL, NULL);
58 if (r < 0) {
59 log_error_errno(r, "Cannot resolve user name %s: %m", user);
60 goto finish;
61 }
62
63 /* Always create the directory where resolv.conf will live */
64 r = mkdir_safe_label("/run/systemd/resolve", 0755, uid, gid);
65 if (r < 0) {
66 log_error_errno(r, "Could not create runtime directory: %m");
67 goto finish;
68 }
69
70 /* Drop privileges, but keep three caps. Note that we drop those too, later on (see below) */
71 r = drop_privileges(uid, gid,
72 (UINT64_C(1) << CAP_NET_RAW)| /* needed for SO_BINDTODEVICE */
73 (UINT64_C(1) << CAP_NET_BIND_SERVICE)| /* needed to bind on port 53 */
74 (UINT64_C(1) << CAP_SETPCAP) /* needed in order to drop the caps later */);
75 if (r < 0)
76 goto finish;
77
78 assert_se(sigprocmask_many(SIG_BLOCK, NULL, SIGTERM, SIGINT, SIGUSR1, SIGUSR2, -1) >= 0);
79
80 r = manager_new(&m);
81 if (r < 0) {
82 log_error_errno(r, "Could not create manager: %m");
83 goto finish;
84 }
85
86 r = manager_start(m);
87 if (r < 0) {
88 log_error_errno(r, "Failed to start manager: %m");
89 goto finish;
90 }
91
92 /* Write finish default resolv.conf to avoid a dangling symlink */
93 (void) manager_write_resolv_conf(m);
94
95 /* Let's drop the remaining caps now */
96 r = capability_bounding_set_drop(0, true);
97 if (r < 0) {
98 log_error_errno(r, "Failed to drop remaining caps: %m");
99 goto finish;
100 }
101
102 sd_notify(false,
103 "READY=1\n"
104 "STATUS=Processing requests...");
105
106 r = sd_event_loop(m->event);
107 if (r < 0) {
108 log_error_errno(r, "Event loop failed: %m");
109 goto finish;
110 }
111
112 sd_event_get_exit_code(m->event, &r);
113
114 finish:
115 sd_notify(false,
116 "STOPPING=1\n"
117 "STATUS=Shutting down...");
118
119 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
120 }