]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/resolve/resolved-resolv-conf.c
Merge pull request #11197 from keszybz/various-fixups
[thirdparty/systemd.git] / src / resolve / resolved-resolv-conf.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <resolv.h>
4 #include <stdio_ext.h>
5
6 #include "alloc-util.h"
7 #include "dns-domain.h"
8 #include "fd-util.h"
9 #include "fileio.h"
10 #include "ordered-set.h"
11 #include "resolved-conf.h"
12 #include "resolved-dns-server.h"
13 #include "resolved-resolv-conf.h"
14 #include "string-util.h"
15 #include "strv.h"
16 #include "tmpfile-util-label.h"
17
18 /* A resolv.conf file containing the DNS server and domain data we learnt from uplink, i.e. the full uplink data */
19 #define PRIVATE_UPLINK_RESOLV_CONF "/run/systemd/resolve/resolv.conf"
20
21 /* A resolv.conf file containing the domain data we learnt from uplink, but our own DNS server address. */
22 #define PRIVATE_STUB_RESOLV_CONF "/run/systemd/resolve/stub-resolv.conf"
23
24 /* A static resolv.conf file containing no domains, but only our own DNS server address */
25 #define PRIVATE_STATIC_RESOLV_CONF ROOTLIBEXECDIR "/resolv.conf"
26
27 int manager_check_resolv_conf(const Manager *m) {
28 const char *path;
29 struct stat st;
30 int r;
31
32 assert(m);
33
34 /* This warns only when our stub listener is disabled and /etc/resolv.conf is a symlink to
35 * PRIVATE_STATIC_RESOLV_CONF or PRIVATE_STUB_RESOLV_CONF. */
36
37 if (m->dns_stub_listener_mode != DNS_STUB_LISTENER_NO)
38 return 0;
39
40 r = stat("/etc/resolv.conf", &st);
41 if (r < 0) {
42 if (errno == ENOENT)
43 return 0;
44
45 return log_warning_errno(errno, "Failed to stat /etc/resolv.conf: %m");
46 }
47
48 FOREACH_STRING(path,
49 PRIVATE_STUB_RESOLV_CONF,
50 PRIVATE_STATIC_RESOLV_CONF) {
51
52 struct stat own;
53
54 /* Is it symlinked to our own uplink file? */
55 if (stat(path, &own) >= 0 &&
56 st.st_dev == own.st_dev &&
57 st.st_ino == own.st_ino) {
58 log_warning("DNSStubListener= is disabled, but /etc/resolv.conf is a symlink to %s "
59 "which expects DNSStubListener= to be enabled.", path);
60 return -EOPNOTSUPP;
61 }
62 }
63
64 return 0;
65 }
66
67 static bool file_is_our_own(const struct stat *st) {
68 const char *path;
69
70 assert(st);
71
72 FOREACH_STRING(path,
73 PRIVATE_UPLINK_RESOLV_CONF,
74 PRIVATE_STUB_RESOLV_CONF,
75 PRIVATE_STATIC_RESOLV_CONF) {
76
77 struct stat own;
78
79 /* Is it symlinked to our own uplink file? */
80 if (stat(path, &own) >= 0 &&
81 st->st_dev == own.st_dev &&
82 st->st_ino == own.st_ino)
83 return true;
84 }
85
86 return false;
87 }
88
89 int manager_read_resolv_conf(Manager *m) {
90 _cleanup_fclose_ FILE *f = NULL;
91 struct stat st;
92 unsigned n = 0;
93 int r;
94
95 assert(m);
96
97 /* Reads the system /etc/resolv.conf, if it exists and is not
98 * symlinked to our own resolv.conf instance */
99
100 if (!m->read_resolv_conf)
101 return 0;
102
103 r = stat("/etc/resolv.conf", &st);
104 if (r < 0) {
105 if (errno == ENOENT)
106 return 0;
107
108 r = log_warning_errno(errno, "Failed to stat /etc/resolv.conf: %m");
109 goto clear;
110 }
111
112 /* Have we already seen the file? */
113 if (timespec_load(&st.st_mtim) == m->resolv_conf_mtime)
114 return 0;
115
116 if (file_is_our_own(&st))
117 return 0;
118
119 f = fopen("/etc/resolv.conf", "re");
120 if (!f) {
121 if (errno == ENOENT)
122 return 0;
123
124 r = log_warning_errno(errno, "Failed to open /etc/resolv.conf: %m");
125 goto clear;
126 }
127
128 if (fstat(fileno(f), &st) < 0) {
129 r = log_error_errno(errno, "Failed to stat open file: %m");
130 goto clear;
131 }
132
133 if (file_is_our_own(&st))
134 return 0;
135
136 dns_server_mark_all(m->dns_servers);
137 dns_search_domain_mark_all(m->search_domains);
138
139 for (;;) {
140 _cleanup_free_ char *line = NULL;
141 const char *a;
142 char *l;
143
144 r = read_line(f, LONG_LINE_MAX, &line);
145 if (r < 0) {
146 log_error_errno(r, "Failed to read /etc/resolv.conf: %m");
147 goto clear;
148 }
149 if (r == 0)
150 break;
151
152 n++;
153
154 l = strstrip(line);
155 if (IN_SET(*l, '#', ';', 0))
156 continue;
157
158 a = first_word(l, "nameserver");
159 if (a) {
160 r = manager_parse_dns_server_string_and_warn(m, DNS_SERVER_SYSTEM, a);
161 if (r < 0)
162 log_warning_errno(r, "Failed to parse DNS server address '%s', ignoring.", a);
163
164 continue;
165 }
166
167 a = first_word(l, "domain");
168 if (!a) /* We treat "domain" lines, and "search" lines as equivalent, and add both to our list. */
169 a = first_word(l, "search");
170 if (a) {
171 r = manager_parse_search_domains_and_warn(m, a);
172 if (r < 0)
173 log_warning_errno(r, "Failed to parse search domain string '%s', ignoring.", a);
174 }
175
176 log_syntax(NULL, LOG_DEBUG, "/etc/resolv.conf", n, 0, "Ignoring resolv.conf line: %s", l);
177 }
178
179 m->resolv_conf_mtime = timespec_load(&st.st_mtim);
180
181 /* Flush out all servers and search domains that are still
182 * marked. Those are then ones that didn't appear in the new
183 * /etc/resolv.conf */
184 dns_server_unlink_marked(m->dns_servers);
185 dns_search_domain_unlink_marked(m->search_domains);
186
187 /* Whenever /etc/resolv.conf changes, start using the first
188 * DNS server of it. This is useful to deal with broken
189 * network managing implementations (like NetworkManager),
190 * that when connecting to a VPN place both the VPN DNS
191 * servers and the local ones in /etc/resolv.conf. Without
192 * resetting the DNS server to use back to the first entry we
193 * will continue to use the local one thus being unable to
194 * resolve VPN domains. */
195 manager_set_dns_server(m, m->dns_servers);
196
197 /* Unconditionally flush the cache when /etc/resolv.conf is
198 * modified, even if the data it contained was completely
199 * identical to the previous version we used. We do this
200 * because altering /etc/resolv.conf is typically done when
201 * the network configuration changes, and that should be
202 * enough to flush the global unicast DNS cache. */
203 if (m->unicast_scope)
204 dns_cache_flush(&m->unicast_scope->cache);
205
206 /* If /etc/resolv.conf changed, make sure to forget everything we learned about the DNS servers. After all we
207 * might now talk to a very different DNS server that just happens to have the same IP address as an old one
208 * (think 192.168.1.1). */
209 dns_server_reset_features_all(m->dns_servers);
210
211 return 0;
212
213 clear:
214 dns_server_unlink_all(m->dns_servers);
215 dns_search_domain_unlink_all(m->search_domains);
216 return r;
217 }
218
219 static void write_resolv_conf_server(DnsServer *s, FILE *f, unsigned *count) {
220 assert(s);
221 assert(f);
222 assert(count);
223
224 if (!dns_server_string(s)) {
225 log_warning("Out of memory, or invalid DNS address. Ignoring server.");
226 return;
227 }
228
229 /* Check if the DNS server is limited to particular domains;
230 * resolv.conf does not have a syntax to express that, so it must not
231 * appear as a global name server to avoid routing unrelated domains to
232 * it (which is a privacy violation, will most probably fail anyway,
233 * and adds unnecessary load) */
234 if (dns_server_limited_domains(s)) {
235 log_debug("DNS server %s has route-only domains, not using as global name server", dns_server_string(s));
236 return;
237 }
238
239 if (*count == MAXNS)
240 fputs("# Too many DNS servers configured, the following entries may be ignored.\n", f);
241 (*count)++;
242
243 fprintf(f, "nameserver %s\n", dns_server_string(s));
244 }
245
246 static void write_resolv_conf_search(
247 OrderedSet *domains,
248 FILE *f) {
249 unsigned length = 0, count = 0;
250 Iterator i;
251 char *domain;
252
253 assert(domains);
254 assert(f);
255
256 fputs("search", f);
257
258 ORDERED_SET_FOREACH(domain, domains, i) {
259 if (++count > MAXDNSRCH) {
260 fputs("\n# Too many search domains configured, remaining ones ignored.", f);
261 break;
262 }
263 length += strlen(domain) + 1;
264 if (length > 256) {
265 fputs("\n# Total length of all search domains is too long, remaining ones ignored.", f);
266 break;
267 }
268 fputc(' ', f);
269 fputs(domain, f);
270 }
271
272 fputs("\n", f);
273 }
274
275 static int write_uplink_resolv_conf_contents(FILE *f, OrderedSet *dns, OrderedSet *domains) {
276 Iterator i;
277
278 fputs("# This file is managed by man:systemd-resolved(8). Do not edit.\n"
279 "#\n"
280 "# This is a dynamic resolv.conf file for connecting local clients directly to\n"
281 "# all known uplink DNS servers. This file lists all configured search domains.\n"
282 "#\n"
283 "# Third party programs must not access this file directly, but only through the\n"
284 "# symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a different way,\n"
285 "# replace this symlink by a static file or a different symlink.\n"
286 "#\n"
287 "# See man:systemd-resolved.service(8) for details about the supported modes of\n"
288 "# operation for /etc/resolv.conf.\n"
289 "\n", f);
290
291 if (ordered_set_isempty(dns))
292 fputs("# No DNS servers known.\n", f);
293 else {
294 unsigned count = 0;
295 DnsServer *s;
296
297 ORDERED_SET_FOREACH(s, dns, i)
298 write_resolv_conf_server(s, f, &count);
299 }
300
301 if (!ordered_set_isempty(domains))
302 write_resolv_conf_search(domains, f);
303
304 return fflush_and_check(f);
305 }
306
307 static int write_stub_resolv_conf_contents(FILE *f, OrderedSet *dns, OrderedSet *domains) {
308 fputs_unlocked("# This file is managed by man:systemd-resolved(8). Do not edit.\n"
309 "#\n"
310 "# This is a dynamic resolv.conf file for connecting local clients to the\n"
311 "# internal DNS stub resolver of systemd-resolved. This file lists all\n"
312 "# configured search domains.\n"
313 "#\n"
314 "# Run \"resolvectl status\" to see details about the uplink DNS servers\n"
315 "# currently in use.\n"
316 "#\n"
317 "# Third party programs must not access this file directly, but only through the\n"
318 "# symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a different way,\n"
319 "# replace this symlink by a static file or a different symlink.\n"
320 "#\n"
321 "# See man:systemd-resolved.service(8) for details about the supported modes of\n"
322 "# operation for /etc/resolv.conf.\n"
323 "\n"
324 "nameserver 127.0.0.53\n"
325 "options edns0\n", f);
326
327 if (!ordered_set_isempty(domains))
328 write_resolv_conf_search(domains, f);
329
330 return fflush_and_check(f);
331 }
332
333 int manager_write_resolv_conf(Manager *m) {
334
335 _cleanup_ordered_set_free_ OrderedSet *dns = NULL, *domains = NULL;
336 _cleanup_free_ char *temp_path_uplink = NULL, *temp_path_stub = NULL;
337 _cleanup_fclose_ FILE *f_uplink = NULL, *f_stub = NULL;
338 int r;
339
340 assert(m);
341
342 /* Read the system /etc/resolv.conf first */
343 (void) manager_read_resolv_conf(m);
344
345 /* Add the full list to a set, to filter out duplicates */
346 r = manager_compile_dns_servers(m, &dns);
347 if (r < 0)
348 return log_warning_errno(r, "Failed to compile list of DNS servers: %m");
349
350 r = manager_compile_search_domains(m, &domains, false);
351 if (r < 0)
352 return log_warning_errno(r, "Failed to compile list of search domains: %m");
353
354 r = fopen_temporary_label(PRIVATE_UPLINK_RESOLV_CONF, PRIVATE_UPLINK_RESOLV_CONF, &f_uplink, &temp_path_uplink);
355 if (r < 0)
356 return log_warning_errno(r, "Failed to open private resolv.conf file for writing: %m");
357
358 (void) __fsetlocking(f_uplink, FSETLOCKING_BYCALLER);
359 (void) fchmod(fileno(f_uplink), 0644);
360
361 r = fopen_temporary_label(PRIVATE_STUB_RESOLV_CONF, PRIVATE_STUB_RESOLV_CONF, &f_stub, &temp_path_stub);
362 if (r < 0)
363 return log_warning_errno(r, "Failed to open private stub-resolv.conf file for writing: %m");
364
365 (void) __fsetlocking(f_stub, FSETLOCKING_BYCALLER);
366 (void) fchmod(fileno(f_stub), 0644);
367
368 r = write_uplink_resolv_conf_contents(f_uplink, dns, domains);
369 if (r < 0) {
370 log_error_errno(r, "Failed to write private resolv.conf contents: %m");
371 goto fail;
372 }
373
374 if (rename(temp_path_uplink, PRIVATE_UPLINK_RESOLV_CONF) < 0) {
375 r = log_error_errno(errno, "Failed to move private resolv.conf file into place: %m");
376 goto fail;
377 }
378
379 r = write_stub_resolv_conf_contents(f_stub, dns, domains);
380 if (r < 0) {
381 log_error_errno(r, "Failed to write private stub-resolv.conf contents: %m");
382 goto fail;
383 }
384
385 if (rename(temp_path_stub, PRIVATE_STUB_RESOLV_CONF) < 0) {
386 r = log_error_errno(errno, "Failed to move private stub-resolv.conf file into place: %m");
387 goto fail;
388 }
389
390 return 0;
391
392 fail:
393 (void) unlink(PRIVATE_UPLINK_RESOLV_CONF);
394 (void) unlink(temp_path_uplink);
395 (void) unlink(PRIVATE_STUB_RESOLV_CONF);
396 (void) unlink(temp_path_stub);
397
398 return r;
399 }