chiark / gitweb /
tree-wide: there is no ENOTSUP on linux
[elogind.git] / src / resolve / resolved-dns-scope.h
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
26 typedef struct DnsScope DnsScope;
27
28 #include "resolved-dns-server.h"
29 #include "resolved-dns-packet.h"
30 #include "resolved-dns-cache.h"
31 #include "resolved-dns-zone.h"
32 #include "resolved-link.h"
33
34 typedef 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
42 struct DnsScope {
43         Manager *manager;
44
45         DnsProtocol protocol;
46         int family;
47
48         Link *link;
49
50         char **domains;
51
52         DnsCache cache;
53         DnsZone zone;
54
55         OrderedHashmap *conflict_queue;
56         sd_event_source *conflict_event_source;
57
58         RateLimit ratelimit;
59
60         LIST_HEAD(DnsTransaction, transactions);
61
62         LIST_FIELDS(DnsScope, scopes);
63 };
64
65 int dns_scope_new(Manager *m, DnsScope **ret, Link *l, DnsProtocol p, int family);
66 DnsScope* dns_scope_free(DnsScope *s);
67
68 int dns_scope_emit(DnsScope *s, DnsPacket *p);
69 int dns_scope_tcp_socket(DnsScope *s, int family, const union in_addr_union *address, uint16_t port);
70
71 DnsScopeMatch dns_scope_good_domain(DnsScope *s, int ifindex, uint64_t flags, const char *domain);
72 int dns_scope_good_key(DnsScope *s, DnsResourceKey *key);
73 int dns_scope_good_dns_server(DnsScope *s, int family, const union in_addr_union *address);
74
75 DnsServer *dns_scope_get_dns_server(DnsScope *s);
76 void dns_scope_next_dns_server(DnsScope *s);
77
78 int dns_scope_llmnr_membership(DnsScope *s, bool b);
79
80 void dns_scope_process_query(DnsScope *s, DnsStream *stream, DnsPacket *p);
81
82 DnsTransaction *dns_scope_find_transaction(DnsScope *scope, DnsQuestion *question, bool cache_ok);
83
84 int dns_scope_notify_conflict(DnsScope *scope, DnsResourceRecord *rr);
85 void dns_scope_check_conflicts(DnsScope *scope, DnsPacket *p);