1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
8 #include "alloc-util.h"
9 #include "dns-domain.h"
13 #include "label-util.h"
14 #include "ordered-set.h"
15 #include "path-util.h"
16 #include "resolved-conf.h"
17 #include "resolved-dns-server.h"
18 #include "resolved-resolv-conf.h"
19 #include "stat-util.h"
20 #include "string-table.h"
21 #include "string-util.h"
23 #include "tmpfile-util-label.h"
25 int manager_check_resolv_conf(const Manager
*m
) {
30 /* This warns only when our stub listener is disabled and /etc/resolv.conf is a symlink to
31 * PRIVATE_STATIC_RESOLV_CONF. */
33 if (m
->dns_stub_listener_mode
!= DNS_STUB_LISTENER_NO
)
36 if (stat("/etc/resolv.conf", &st
) < 0) {
40 return log_warning_errno(errno
, "Failed to stat /etc/resolv.conf: %m");
43 /* Is it symlinked to our own uplink file? */
44 if (stat(PRIVATE_STATIC_RESOLV_CONF
, &own
) >= 0 &&
45 stat_inode_same(&st
, &own
))
46 return log_warning_errno(SYNTHETIC_ERRNO(EOPNOTSUPP
),
47 "DNSStubListener= is disabled, but /etc/resolv.conf is a symlink to "
48 PRIVATE_STATIC_RESOLV_CONF
" which expects DNSStubListener= to be enabled.");
53 static bool file_is_our_own(const struct stat
*st
) {
57 PRIVATE_UPLINK_RESOLV_CONF
,
58 PRIVATE_STUB_RESOLV_CONF
,
59 PRIVATE_STATIC_RESOLV_CONF
) {
63 /* Is it symlinked to our own uplink file? */
64 if (stat(path
, &own
) >= 0 &&
65 stat_inode_same(st
, &own
))
72 int manager_read_resolv_conf(Manager
*m
) {
73 _cleanup_fclose_
FILE *f
= NULL
;
80 /* Reads the system /etc/resolv.conf, if it exists and is not
81 * symlinked to our own resolv.conf instance */
83 if (!m
->read_resolv_conf
)
86 r
= stat("/etc/resolv.conf", &st
);
91 r
= log_warning_errno(errno
, "Failed to stat /etc/resolv.conf: %m");
95 /* Have we already seen the file? */
96 if (stat_inode_unmodified(&st
, &m
->resolv_conf_stat
))
99 if (file_is_our_own(&st
))
102 f
= fopen("/etc/resolv.conf", "re");
107 r
= log_warning_errno(errno
, "Failed to open /etc/resolv.conf: %m");
111 if (fstat(fileno(f
), &st
) < 0) {
112 r
= log_error_errno(errno
, "Failed to stat open file: %m");
116 if (file_is_our_own(&st
))
119 dns_server_mark_all(m
->dns_servers
);
120 dns_search_domain_mark_all(m
->search_domains
);
123 _cleanup_free_
char *line
= NULL
;
126 r
= read_stripped_line(f
, LONG_LINE_MAX
, &line
);
128 log_error_errno(r
, "Failed to read /etc/resolv.conf: %m");
136 if (IN_SET(*line
, '#', ';', 0))
139 a
= first_word(line
, "nameserver");
141 r
= manager_parse_dns_server_string_and_warn(m
, DNS_SERVER_SYSTEM
, a
);
143 log_warning_errno(r
, "Failed to parse DNS server address '%s', ignoring.", a
);
148 a
= first_word(line
, "domain");
149 if (!a
) /* We treat "domain" lines, and "search" lines as equivalent, and add both to our list. */
150 a
= first_word(line
, "search");
152 r
= manager_parse_search_domains_and_warn(m
, a
);
154 log_warning_errno(r
, "Failed to parse search domain string '%s', ignoring.", a
);
159 log_syntax(NULL
, LOG_DEBUG
, "/etc/resolv.conf", n
, 0, "Ignoring resolv.conf line: %s", line
);
162 m
->resolv_conf_stat
= st
;
164 /* Flush out all servers and search domains that are still
165 * marked. Those are then ones that didn't appear in the new
166 * /etc/resolv.conf */
167 dns_server_unlink_marked(m
->dns_servers
);
168 dns_search_domain_unlink_marked(m
->search_domains
);
170 /* Whenever /etc/resolv.conf changes, start using the first
171 * DNS server of it. This is useful to deal with broken
172 * network managing implementations (like NetworkManager),
173 * that when connecting to a VPN place both the VPN DNS
174 * servers and the local ones in /etc/resolv.conf. Without
175 * resetting the DNS server to use back to the first entry we
176 * will continue to use the local one thus being unable to
177 * resolve VPN domains. */
178 manager_set_dns_server(m
, m
->dns_servers
);
180 /* Unconditionally flush the cache when /etc/resolv.conf is
181 * modified, even if the data it contained was completely
182 * identical to the previous version we used. We do this
183 * because altering /etc/resolv.conf is typically done when
184 * the network configuration changes, and that should be
185 * enough to flush the global unicast DNS cache. */
186 if (m
->unicast_scope
)
187 dns_cache_flush(&m
->unicast_scope
->cache
);
189 /* If /etc/resolv.conf changed, make sure to forget everything we learned about the DNS servers. After all we
190 * might now talk to a very different DNS server that just happens to have the same IP address as an old one
191 * (think 192.168.1.1). */
192 dns_server_reset_features_all(m
->dns_servers
);
197 dns_server_unlink_all(m
->dns_servers
);
198 dns_search_domain_unlink_all(m
->search_domains
);
202 static void write_resolv_conf_server(DnsServer
*s
, FILE *f
, unsigned *count
) {
209 if (!dns_server_string(s
)) {
210 log_warning("Out of memory, or invalid DNS address. Ignoring server.");
214 /* resolv.conf simply doesn't support any other ports than 53, hence there's nothing much we can
215 * do — we have to suppress these entries */
216 if (dns_server_port(s
) != 53) {
217 log_debug("DNS server %s with non-standard UDP port number, suppressing from generated resolv.conf.", dns_server_string(s
));
221 /* Check if the scope this DNS server belongs to is suitable as 'default' route for lookups; resolv.conf does
222 * not have a syntax to express that, so it must not appear as a global name server to avoid routing unrelated
223 * domains to it (which is a privacy violation, will most probably fail anyway, and adds unnecessary load) */
224 scope
= dns_server_scope(s
);
225 if (scope
&& !dns_scope_is_default_route(scope
)) {
226 log_debug("Scope of DNS server %s has only route-only domains, not using as global name server", dns_server_string(s
));
231 fputs("# Too many DNS servers configured, the following entries may be ignored.\n", f
);
234 fprintf(f
, "nameserver %s\n", dns_server_string(s
));
237 static void write_resolv_conf_search(
247 ORDERED_SET_FOREACH(domain
, domains
) {
255 static int write_uplink_resolv_conf_contents(FILE *f
, OrderedSet
*dns
, OrderedSet
*domains
) {
257 fputs("# This is "PRIVATE_UPLINK_RESOLV_CONF
" managed by man:systemd-resolved(8).\n"
260 "# This file might be symlinked as /etc/resolv.conf. If you're looking at\n"
261 "# /etc/resolv.conf and seeing this text, you have followed the symlink.\n"
263 "# This is a dynamic resolv.conf file for connecting local clients directly to\n"
264 "# all known uplink DNS servers. This file lists all configured search domains.\n"
266 "# Third party programs should typically not access this file directly, but only\n"
267 "# through the symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a\n"
268 "# different way, replace this symlink by a static file or a different symlink.\n"
270 "# See man:systemd-resolved.service(8) for details about the supported modes of\n"
271 "# operation for /etc/resolv.conf.\n"
274 if (ordered_set_isempty(dns
))
275 fputs("# No DNS servers known.\n", f
);
280 ORDERED_SET_FOREACH(s
, dns
)
281 write_resolv_conf_server(s
, f
, &count
);
284 if (ordered_set_isempty(domains
))
285 fputs("search .\n", f
); /* Make sure that if the local hostname is chosen as fqdn this does not
286 * imply a search domain */
288 write_resolv_conf_search(domains
, f
);
290 return fflush_and_check(f
);
293 static int write_stub_resolv_conf_contents(FILE *f
, OrderedSet
*dns
, OrderedSet
*domains
) {
294 fputs("# This is "PRIVATE_STUB_RESOLV_CONF
" managed by man:systemd-resolved(8).\n"
297 "# This file might be symlinked as /etc/resolv.conf. If you're looking at\n"
298 "# /etc/resolv.conf and seeing this text, you have followed the symlink.\n"
300 "# This is a dynamic resolv.conf file for connecting local clients to the\n"
301 "# internal DNS stub resolver of systemd-resolved. This file lists all\n"
302 "# configured search domains.\n"
304 "# Run \"resolvectl status\" to see details about the uplink DNS servers\n"
305 "# currently in use.\n"
307 "# Third party programs should typically not access this file directly, but only\n"
308 "# through the symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a\n"
309 "# different way, replace this symlink by a static file or a different symlink.\n"
311 "# See man:systemd-resolved.service(8) for details about the supported modes of\n"
312 "# operation for /etc/resolv.conf.\n"
314 "nameserver 127.0.0.53\n"
315 "options edns0 trust-ad\n", f
);
317 if (ordered_set_isempty(domains
))
318 fputs("search .\n", f
); /* Make sure that if the local hostname is chosen as fqdn this does not
319 * imply a search domain */
321 write_resolv_conf_search(domains
, f
);
323 return fflush_and_check(f
);
326 int manager_write_resolv_conf(Manager
*m
) {
327 _cleanup_ordered_set_free_ OrderedSet
*dns
= NULL
, *domains
= NULL
;
328 _cleanup_(unlink_and_freep
) char *temp_path_uplink
= NULL
, *temp_path_stub
= NULL
;
329 _cleanup_fclose_
FILE *f_uplink
= NULL
, *f_stub
= NULL
;
334 /* Read the system /etc/resolv.conf first */
335 (void) manager_read_resolv_conf(m
);
337 /* Add the full list to a set, to filter out duplicates */
338 r
= manager_compile_dns_servers(m
, &dns
);
340 return log_warning_errno(r
, "Failed to compile list of DNS servers, ignoring: %m");
342 r
= manager_compile_search_domains(m
, &domains
, false);
344 return log_warning_errno(r
, "Failed to compile list of search domains, ignoring: %m");
346 r
= fopen_temporary_label(PRIVATE_UPLINK_RESOLV_CONF
, PRIVATE_UPLINK_RESOLV_CONF
, &f_uplink
, &temp_path_uplink
);
348 return log_warning_errno(r
, "Failed to open new %s for writing, ignoring: %m", PRIVATE_UPLINK_RESOLV_CONF
);
350 (void) fchmod(fileno(f_uplink
), 0644);
352 r
= write_uplink_resolv_conf_contents(f_uplink
, dns
, domains
);
354 return log_warning_errno(r
, "Failed to write new %s, ignoring: %m", PRIVATE_UPLINK_RESOLV_CONF
);
356 if (m
->dns_stub_listener_mode
!= DNS_STUB_LISTENER_NO
) {
357 r
= fopen_temporary_label(PRIVATE_STUB_RESOLV_CONF
, PRIVATE_STUB_RESOLV_CONF
, &f_stub
, &temp_path_stub
);
359 return log_warning_errno(r
, "Failed to open new %s for writing, ignoring: %m", PRIVATE_STUB_RESOLV_CONF
);
361 (void) fchmod(fileno(f_stub
), 0644);
363 r
= write_stub_resolv_conf_contents(f_stub
, dns
, domains
);
365 return log_warning_errno(r
, "Failed to write new %s, ignoring: %m", PRIVATE_STUB_RESOLV_CONF
);
367 r
= conservative_rename(temp_path_stub
, PRIVATE_STUB_RESOLV_CONF
);
369 log_warning_errno(r
, "Failed to move new %s into place, ignoring: %m", PRIVATE_STUB_RESOLV_CONF
);
371 temp_path_stub
= mfree(temp_path_stub
); /* free the string explicitly, so that we don't unlink anymore */
373 _cleanup_free_
char *fname
= NULL
;
374 r
= path_extract_filename(PRIVATE_UPLINK_RESOLV_CONF
, &fname
);
376 return log_warning_errno(r
, "Failed to extract filename from path '" PRIVATE_UPLINK_RESOLV_CONF
"', ignoring: %m");
378 r
= symlink_atomic_label(fname
, PRIVATE_STUB_RESOLV_CONF
);
380 log_warning_errno(r
, "Failed to symlink %s, ignoring: %m", PRIVATE_STUB_RESOLV_CONF
);
383 r
= conservative_rename(temp_path_uplink
, PRIVATE_UPLINK_RESOLV_CONF
);
385 log_warning_errno(r
, "Failed to move new %s into place: %m", PRIVATE_UPLINK_RESOLV_CONF
);
387 temp_path_uplink
= mfree(temp_path_uplink
); /* free the string explicitly, so that we don't unlink anymore */
391 int resolv_conf_mode(void) {
392 static const char * const table
[_RESOLV_CONF_MODE_MAX
] = {
393 [RESOLV_CONF_UPLINK
] = PRIVATE_UPLINK_RESOLV_CONF
,
394 [RESOLV_CONF_STUB
] = PRIVATE_STUB_RESOLV_CONF
,
395 [RESOLV_CONF_STATIC
] = PRIVATE_STATIC_RESOLV_CONF
,
398 struct stat system_st
;
400 if (stat("/etc/resolv.conf", &system_st
) < 0) {
402 return RESOLV_CONF_MISSING
;
407 for (ResolvConfMode m
= 0; m
< _RESOLV_CONF_MODE_MAX
; m
++) {
413 if (stat(table
[m
], &our_st
) < 0) {
415 log_debug_errno(errno
, "Failed to stat() %s, ignoring: %m", table
[m
]);
420 if (stat_inode_same(&system_st
, &our_st
))
424 return RESOLV_CONF_FOREIGN
;
427 static const char* const resolv_conf_mode_table
[_RESOLV_CONF_MODE_MAX
] = {
428 [RESOLV_CONF_UPLINK
] = "uplink",
429 [RESOLV_CONF_STUB
] = "stub",
430 [RESOLV_CONF_STATIC
] = "static",
431 [RESOLV_CONF_MISSING
] = "missing",
432 [RESOLV_CONF_FOREIGN
] = "foreign",
434 DEFINE_STRING_TABLE_LOOKUP(resolv_conf_mode
, ResolvConfMode
);