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