]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-dns-scope.h
resolved: set multicast membership for mDNS sockets
[thirdparty/systemd.git] / src / resolve / resolved-dns-scope.h
CommitLineData
74b2466e
LP
1#pragma once
2
3/***
4 This file is part of systemd.
5
6 Copyright 2014 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
22#include "list.h"
23
24typedef struct DnsScope DnsScope;
25
322345fd 26#include "resolved-dns-cache.h"
24710c48 27#include "resolved-dns-dnssec.h"
71d35b6b 28#include "resolved-dns-packet.h"
07f264e4
DM
29#include "resolved-dns-query.h"
30#include "resolved-dns-search-domain.h"
71d35b6b 31#include "resolved-dns-server.h"
07f264e4 32#include "resolved-dns-stream.h"
623a4c97 33#include "resolved-dns-zone.h"
39d8db04 34#include "resolved-link.h"
74b2466e 35
74b2466e
LP
36typedef enum DnsScopeMatch {
37 DNS_SCOPE_NO,
38 DNS_SCOPE_MAYBE,
39 DNS_SCOPE_YES,
40 _DNS_SCOPE_MATCH_MAX,
41 _DNS_SCOPE_INVALID = -1
42} DnsScopeMatch;
43
44struct DnsScope {
45 Manager *manager;
46
1716f6dc 47 DnsProtocol protocol;
0dd25fb9 48 int family;
24710c48 49 DnssecMode dnssec_mode;
74b2466e
LP
50
51 Link *link;
52
322345fd 53 DnsCache cache;
623a4c97 54 DnsZone zone;
322345fd 55
1e43061b 56 OrderedHashmap *conflict_queue;
a4076574
LP
57 sd_event_source *conflict_event_source;
58
aea2429d
LP
59 RateLimit ratelimit;
60
9df3ba6c
TG
61 usec_t resend_timeout;
62 usec_t max_rtt;
63
801ad6a6 64 LIST_HEAD(DnsQueryCandidate, query_candidates);
74b2466e 65
f9ebb22a
LP
66 /* Note that we keep track of ongoing transactions in two
67 * ways: once in a hashmap, indexed by the rr key, and once in
68 * a linked list. We use the hashmap to quickly find
69 * transactions we can reuse for a key. But note that there
70 * might be multiple transactions for the same key (because
71 * the zone probing can't reuse a transaction answered from
72 * the zone or the cache), and the hashmap only tracks the
73 * most recent entry. */
74 Hashmap *transactions_by_key;
75 LIST_HEAD(DnsTransaction, transactions);
76
74b2466e
LP
77 LIST_FIELDS(DnsScope, scopes);
78};
79
0dd25fb9 80int dns_scope_new(Manager *m, DnsScope **ret, Link *l, DnsProtocol p, int family);
74b2466e
LP
81DnsScope* dns_scope_free(DnsScope *s);
82
9df3ba6c
TG
83void dns_scope_packet_received(DnsScope *s, usec_t rtt);
84void dns_scope_packet_lost(DnsScope *s, usec_t usec);
85
519ef046
LP
86int dns_scope_emit_udp(DnsScope *s, int fd, DnsPacket *p);
87int dns_scope_socket_tcp(DnsScope *s, int family, const union in_addr_union *address, DnsServer *server, uint16_t port);
88int dns_scope_socket_udp(DnsScope *s, DnsServer *server, uint16_t port);
ad867662 89
51323288 90DnsScopeMatch dns_scope_good_domain(DnsScope *s, int ifindex, uint64_t flags, const char *domain);
011696f7 91bool dns_scope_good_key(DnsScope *s, const DnsResourceKey *key);
74b2466e 92
2c27fbca 93DnsServer *dns_scope_get_dns_server(DnsScope *s);
74b2466e 94void dns_scope_next_dns_server(DnsScope *s);
1716f6dc
LP
95
96int dns_scope_llmnr_membership(DnsScope *s, bool b);
0db4c90a 97int dns_scope_mdns_membership(DnsScope *s, bool b);
623a4c97
LP
98
99void dns_scope_process_query(DnsScope *s, DnsStream *stream, DnsPacket *p);
ec2c5e43 100
f52e61da 101DnsTransaction *dns_scope_find_transaction(DnsScope *scope, DnsResourceKey *key, bool cache_ok);
a4076574
LP
102
103int dns_scope_notify_conflict(DnsScope *scope, DnsResourceRecord *rr);
104void dns_scope_check_conflicts(DnsScope *scope, DnsPacket *p);
4d506d6b
LP
105
106void dns_scope_dump(DnsScope *s, FILE *f);
a51c1048
LP
107
108DnsSearchDomain *dns_scope_get_search_domains(DnsScope *s);
801ad6a6 109
dc477e73 110bool dns_scope_name_needs_search_domain(DnsScope *s, const char *name);
edbcc1fd
LP
111
112bool dns_scope_network_good(DnsScope *s);
97ebebbc
LP
113
114int dns_scope_ifindex(DnsScope *s);