]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-manager.h
resolved: add a simple trust anchor database as additional RR source
[thirdparty/systemd.git] / src / resolve / resolved-manager.h
CommitLineData
091a364c
TG
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
74b2466e
LP
3#pragma once
4
091a364c
TG
5/***
6 This file is part of systemd.
7
4e945a6f 8 Copyright 2014 Tom Gundersen <teg@jklm.no>
091a364c
TG
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
091a364c 24#include "sd-event.h"
1c4baffc 25#include "sd-netlink.h"
71d35b6b
TA
26#include "sd-network.h"
27
74b2466e 28#include "hashmap.h"
71d35b6b 29#include "list.h"
9176a57c 30#include "ordered-set.h"
091a364c 31
091a364c 32typedef struct Manager Manager;
19b50b5b 33typedef enum Support Support;
091a364c 34
19b50b5b 35enum Support {
4e945a6f
LP
36 SUPPORT_NO,
37 SUPPORT_YES,
38 SUPPORT_RESOLVE,
39 _SUPPORT_MAX,
40 _SUPPORT_INVALID = -1
19b50b5b
LP
41};
42
43#include "resolved-dns-query.h"
a51c1048
LP
44#include "resolved-dns-search-domain.h"
45#include "resolved-dns-server.h"
19b50b5b 46#include "resolved-dns-stream.h"
0d2cd476 47#include "resolved-dns-trust-anchor.h"
19b50b5b 48#include "resolved-link.h"
4e945a6f 49
eed857b7
LP
50#define MANAGER_SEARCH_DOMAINS_MAX 32
51#define MANAGER_DNS_SERVERS_MAX 32
52
091a364c
TG
53struct Manager {
54 sd_event *event;
55
4e945a6f 56 Support llmnr_support;
1716f6dc
LP
57
58 /* Network */
74b2466e
LP
59 Hashmap *links;
60
1c4baffc 61 sd_netlink *rtnl;
74b2466e
LP
62 sd_event_source *rtnl_event_source;
63
091a364c 64 sd_network_monitor *network_monitor;
74b2466e
LP
65 sd_event_source *network_event_source;
66
1716f6dc 67 /* DNS query management */
ec2c5e43 68 Hashmap *dns_transactions;
1716f6dc
LP
69 LIST_HEAD(DnsQuery, dns_queries);
70 unsigned n_dns_queries;
71
623a4c97
LP
72 LIST_HEAD(DnsStream, dns_streams);
73 unsigned n_dns_streams;
74
1716f6dc 75 /* Unicast dns */
74b2466e 76 LIST_HEAD(DnsServer, dns_servers);
4e945a6f 77 LIST_HEAD(DnsServer, fallback_dns_servers);
eed857b7 78 unsigned n_dns_servers; /* counts both main and fallback */
74b2466e
LP
79 DnsServer *current_dns_server;
80
a51c1048 81 LIST_HEAD(DnsSearchDomain, search_domains);
eed857b7 82 unsigned n_search_domains;
a51c1048 83
00fa60ae 84 bool need_builtin_fallbacks:1;
a51c1048 85
00fa60ae 86 bool read_resolv_conf:1;
5cb36f41
LP
87 usec_t resolv_conf_mtime;
88
0d2cd476
LP
89 DnsTrustAnchor trust_anchor;
90
74b2466e
LP
91 LIST_HEAD(DnsScope, dns_scopes);
92 DnsScope *unicast_scope;
93
1716f6dc
LP
94 /* LLMNR */
95 int llmnr_ipv4_udp_fd;
96 int llmnr_ipv6_udp_fd;
623a4c97
LP
97 int llmnr_ipv4_tcp_fd;
98 int llmnr_ipv6_tcp_fd;
1716f6dc
LP
99
100 sd_event_source *llmnr_ipv4_udp_event_source;
101 sd_event_source *llmnr_ipv6_udp_event_source;
623a4c97
LP
102 sd_event_source *llmnr_ipv4_tcp_event_source;
103 sd_event_source *llmnr_ipv6_tcp_event_source;
1716f6dc 104
74b2466e
LP
105 /* dbus */
106 sd_bus *bus;
107 sd_event_source *bus_retry_event_source;
623a4c97
LP
108
109 /* The hostname we publish on LLMNR and mDNS */
78c6a153
LP
110 char *llmnr_hostname;
111 char *mdns_hostname;
112 DnsResourceKey *llmnr_host_ipv4_key;
113 DnsResourceKey *llmnr_host_ipv6_key;
eb60f9cd
LP
114
115 /* Watch the system hostname */
116 int hostname_fd;
117 sd_event_source *hostname_event_source;
902bb5d8
LP
118
119 /* Watch for system suspends */
120 sd_bus_slot *prepare_for_sleep_slot;
4d506d6b
LP
121
122 sd_event_source *sigusr1_event_source;
091a364c
TG
123};
124
125/* Manager */
126
127int manager_new(Manager **ret);
74b2466e
LP
128Manager* manager_free(Manager *m);
129
edc501d4 130int manager_start(Manager *m);
74b2466e 131
e1c95994 132uint32_t manager_find_mtu(Manager *m);
091a364c 133
72290734 134int manager_write(Manager *m, int fd, DnsPacket *p);
623a4c97 135int manager_send(Manager *m, int fd, int ifindex, int family, const union in_addr_union *addr, uint16_t port, DnsPacket *p);
1716f6dc 136int manager_recv(Manager *m, int fd, DnsProtocol protocol, DnsPacket **ret);
74b2466e 137
623a4c97 138int manager_find_ifindex(Manager *m, int family, const union in_addr_union *in_addr);
4e945a6f 139LinkAddress* manager_find_link_address(Manager *m, int family, const union in_addr_union *in_addr);
ec2c5e43 140
eb60f9cd 141void manager_refresh_rrs(Manager *m);
ec2c5e43 142int manager_next_hostname(Manager *m);
74b2466e 143
a4076574
LP
144bool manager_our_packet(Manager *m, DnsPacket *p);
145DnsScope* manager_find_scope(Manager *m, DnsPacket *p);
091a364c 146
902bb5d8
LP
147void manager_verify_all(Manager *m);
148
091a364c 149DEFINE_TRIVIAL_CLEANUP_FUNC(Manager*, manager_free);
091a364c 150
623a4c97 151#define EXTRA_CMSG_SPACE 1024
4e945a6f 152
78c6a153
LP
153int manager_is_own_hostname(Manager *m, const char *name);
154
9176a57c
LP
155int manager_compile_dns_servers(Manager *m, OrderedSet **servers);
156int manager_compile_search_domains(Manager *m, OrderedSet **domains);
157
4e945a6f
LP
158const char* support_to_string(Support p) _const_;
159int support_from_string(const char *s) _pure_;