]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-dns-scope.h
resolved: Break include cycles
[thirdparty/systemd.git] / src / resolve / resolved-dns-scope.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
74b2466e
LP
2#pragma once
3
74b2466e 4#include "list.h"
be28f72d 5#include "ratelimit.h"
74b2466e 6
be28f72d 7typedef struct DnsQueryCandidate DnsQueryCandidate;
74b2466e
LP
8typedef struct DnsScope DnsScope;
9
322345fd 10#include "resolved-dns-cache.h"
24710c48 11#include "resolved-dns-dnssec.h"
71d35b6b 12#include "resolved-dns-packet.h"
be28f72d 13
07f264e4 14#include "resolved-dns-search-domain.h"
71d35b6b 15#include "resolved-dns-server.h"
07f264e4 16#include "resolved-dns-stream.h"
623a4c97 17#include "resolved-dns-zone.h"
74b2466e 18
74b2466e
LP
19typedef enum DnsScopeMatch {
20 DNS_SCOPE_NO,
21 DNS_SCOPE_MAYBE,
a97a3b25
LP
22 DNS_SCOPE_YES_BASE, /* Add the number of matching labels to this */
23 DNS_SCOPE_YES_END = DNS_SCOPE_YES_BASE + DNS_N_LABELS_MAX,
74b2466e 24 _DNS_SCOPE_MATCH_MAX,
2bfdd6dc 25 _DNS_SCOPE_MATCH_INVALID = -1
74b2466e
LP
26} DnsScopeMatch;
27
28struct DnsScope {
29 Manager *manager;
30
1716f6dc 31 DnsProtocol protocol;
0dd25fb9 32 int family;
89307df3
LP
33
34 /* Copied at scope creation time from the link/manager */
24710c48 35 DnssecMode dnssec_mode;
c9299be2 36 DnsOverTlsMode dns_over_tls_mode;
74b2466e
LP
37
38 Link *link;
39
322345fd 40 DnsCache cache;
623a4c97 41 DnsZone zone;
322345fd 42
1e43061b 43 OrderedHashmap *conflict_queue;
a4076574
LP
44 sd_event_source *conflict_event_source;
45
53fda2bb
DR
46 bool announced:1;
47 sd_event_source *announce_event_source;
48
aea2429d
LP
49 RateLimit ratelimit;
50
9df3ba6c
TG
51 usec_t resend_timeout;
52 usec_t max_rtt;
53
801ad6a6 54 LIST_HEAD(DnsQueryCandidate, query_candidates);
74b2466e 55
f9ebb22a
LP
56 /* Note that we keep track of ongoing transactions in two
57 * ways: once in a hashmap, indexed by the rr key, and once in
58 * a linked list. We use the hashmap to quickly find
59 * transactions we can reuse for a key. But note that there
60 * might be multiple transactions for the same key (because
61 * the zone probing can't reuse a transaction answered from
62 * the zone or the cache), and the hashmap only tracks the
63 * most recent entry. */
64 Hashmap *transactions_by_key;
65 LIST_HEAD(DnsTransaction, transactions);
66
74b2466e
LP
67 LIST_FIELDS(DnsScope, scopes);
68};
69
0dd25fb9 70int dns_scope_new(Manager *m, DnsScope **ret, Link *l, DnsProtocol p, int family);
74b2466e
LP
71DnsScope* dns_scope_free(DnsScope *s);
72
9df3ba6c
TG
73void dns_scope_packet_received(DnsScope *s, usec_t rtt);
74void dns_scope_packet_lost(DnsScope *s, usec_t usec);
75
519ef046 76int dns_scope_emit_udp(DnsScope *s, int fd, DnsPacket *p);
91ccab1e 77int dns_scope_socket_tcp(DnsScope *s, int family, const union in_addr_union *address, DnsServer *server, uint16_t port, union sockaddr_union *ret_socket_address);
519ef046 78int dns_scope_socket_udp(DnsScope *s, DnsServer *server, uint16_t port);
ad867662 79
51323288 80DnsScopeMatch dns_scope_good_domain(DnsScope *s, int ifindex, uint64_t flags, const char *domain);
011696f7 81bool dns_scope_good_key(DnsScope *s, const DnsResourceKey *key);
74b2466e 82
2c27fbca 83DnsServer *dns_scope_get_dns_server(DnsScope *s);
44db02d0 84unsigned dns_scope_get_n_dns_servers(DnsScope *s);
74b2466e 85void dns_scope_next_dns_server(DnsScope *s);
1716f6dc
LP
86
87int dns_scope_llmnr_membership(DnsScope *s, bool b);
0db4c90a 88int dns_scope_mdns_membership(DnsScope *s, bool b);
623a4c97 89
3b991089 90int dns_scope_make_reply_packet(DnsScope *s, uint16_t id, int rcode, DnsQuestion *q, DnsAnswer *answer, DnsAnswer *soa, bool tentative, DnsPacket **ret);
623a4c97 91void dns_scope_process_query(DnsScope *s, DnsStream *stream, DnsPacket *p);
ec2c5e43 92
f52e61da 93DnsTransaction *dns_scope_find_transaction(DnsScope *scope, DnsResourceKey *key, bool cache_ok);
a4076574
LP
94
95int dns_scope_notify_conflict(DnsScope *scope, DnsResourceRecord *rr);
96void dns_scope_check_conflicts(DnsScope *scope, DnsPacket *p);
4d506d6b
LP
97
98void dns_scope_dump(DnsScope *s, FILE *f);
a51c1048
LP
99
100DnsSearchDomain *dns_scope_get_search_domains(DnsScope *s);
801ad6a6 101
dc477e73 102bool dns_scope_name_needs_search_domain(DnsScope *s, const char *name);
edbcc1fd
LP
103
104bool dns_scope_network_good(DnsScope *s);
97ebebbc
LP
105
106int dns_scope_ifindex(DnsScope *s);
53fda2bb 107
1a63fc54 108int dns_scope_announce(DnsScope *scope, bool goodbye);
6db6a464
DR
109
110int dns_scope_add_dnssd_services(DnsScope *scope);
6db6a464 111int dns_scope_remove_dnssd_services(DnsScope *scope);
f76fa088 112
ca5394d2 113bool dns_scope_is_default_route(DnsScope *scope);