]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/resolve/resolved.c
resolved: add a DNS client stub resolver
[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
25 #include "resolved.h"
26
27 #include "mkdir.h"
28 #include "capability.h"
29
30 int main(int argc, char *argv[]) {
31 _cleanup_(manager_freep) Manager *m = NULL;
32 const char *user = "systemd-resolve";
33 uid_t uid;
34 gid_t gid;
35 int r;
36
37 log_set_target(LOG_TARGET_AUTO);
38 log_parse_environment();
39 log_open();
40
41 umask(0022);
42
43 if (argc != 1) {
44 log_error("This program takes no arguments.");
45 r = -EINVAL;
46 goto finish;
47 }
48
49 r = get_user_creds(&user, &uid, &gid, NULL, NULL);
50 if (r < 0) {
51 log_error("Cannot resolve user name %s: %s", user, strerror(-r));
52 goto finish;
53 }
54
55 /* Always create the directory where resolv.conf will live */
56 r = mkdir_safe_label("/run/systemd/resolve", 0755, uid, gid);
57 if (r < 0) {
58 log_error("Could not create runtime directory: %s",
59 strerror(-r));
60 goto finish;
61 }
62
63 r = drop_privileges(uid, gid, 0);
64 if (r < 0)
65 goto finish;
66
67 assert_se(sigprocmask_many(SIG_BLOCK, SIGTERM, SIGINT, -1) == 0);
68
69 r = manager_new(&m);
70 if (r < 0) {
71 log_error("Could not create manager: %s", strerror(-r));
72 goto finish;
73 }
74
75 r = manager_parse_config_file(m);
76 if (r < 0)
77 return r;
78
79 /* write finish default resolv.conf to avoid a dangling
80 * symlink */
81 r = manager_write_resolv_conf(m);
82 if (r < 0) {
83 log_error("Could not create resolv.conf: %s", strerror(-r));
84 goto finish;
85 }
86
87 sd_notify(false,
88 "READY=1\n"
89 "STATUS=Processing requests...");
90
91 r = sd_event_loop(m->event);
92 if (r < 0) {
93 log_error("Event loop failed: %s", strerror(-r));
94 goto finish;
95 }
96
97 finish:
98 sd_notify(false, "STATUS=Shutting down...");
99
100 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
101 }