]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-dns-scope.h
resolved: expose some properties on the bus
[thirdparty/systemd.git] / src / resolve / resolved-dns-scope.h
CommitLineData
74b2466e
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3#pragma once
4
5/***
6 This file is part of systemd.
7
8 Copyright 2014 Lennart Poettering
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
24#include "list.h"
25
26typedef struct DnsScope DnsScope;
27
322345fd 28#include "resolved-dns-cache.h"
71d35b6b
TA
29#include "resolved-dns-packet.h"
30#include "resolved-dns-server.h"
623a4c97 31#include "resolved-dns-zone.h"
39d8db04 32#include "resolved-link.h"
74b2466e 33
74b2466e
LP
34typedef enum DnsScopeMatch {
35 DNS_SCOPE_NO,
36 DNS_SCOPE_MAYBE,
37 DNS_SCOPE_YES,
38 _DNS_SCOPE_MATCH_MAX,
39 _DNS_SCOPE_INVALID = -1
40} DnsScopeMatch;
41
42struct DnsScope {
43 Manager *manager;
44
1716f6dc 45 DnsProtocol protocol;
0dd25fb9 46 int family;
74b2466e
LP
47
48 Link *link;
49
322345fd 50 DnsCache cache;
623a4c97 51 DnsZone zone;
322345fd 52
1e43061b 53 OrderedHashmap *conflict_queue;
a4076574
LP
54 sd_event_source *conflict_event_source;
55
aea2429d
LP
56 RateLimit ratelimit;
57
9df3ba6c
TG
58 usec_t resend_timeout;
59 usec_t max_rtt;
60
da0c630e 61 Hashmap *transactions;
74b2466e
LP
62
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
471d40d9 72int dns_scope_emit(DnsScope *s, int fd, DnsPacket *p);
8300ba21 73int dns_scope_tcp_socket(DnsScope *s, int family, const union in_addr_union *address, uint16_t port, DnsServer **server);
0db64366 74int dns_scope_udp_dns_socket(DnsScope *s, DnsServer **server);
ad867662 75
51323288 76DnsScopeMatch dns_scope_good_domain(DnsScope *s, int ifindex, uint64_t flags, const char *domain);
1716f6dc 77int dns_scope_good_key(DnsScope *s, DnsResourceKey *key);
74b2466e 78
2c27fbca 79DnsServer *dns_scope_get_dns_server(DnsScope *s);
74b2466e 80void dns_scope_next_dns_server(DnsScope *s);
1716f6dc
LP
81
82int dns_scope_llmnr_membership(DnsScope *s, bool b);
623a4c97
LP
83
84void dns_scope_process_query(DnsScope *s, DnsStream *stream, DnsPacket *p);
ec2c5e43 85
f52e61da 86DnsTransaction *dns_scope_find_transaction(DnsScope *scope, DnsResourceKey *key, bool cache_ok);
a4076574
LP
87
88int dns_scope_notify_conflict(DnsScope *scope, DnsResourceRecord *rr);
89void dns_scope_check_conflicts(DnsScope *scope, DnsPacket *p);
4d506d6b
LP
90
91void dns_scope_dump(DnsScope *s, FILE *f);
a51c1048
LP
92
93DnsSearchDomain *dns_scope_get_search_domains(DnsScope *s);