]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-dns-transaction.h
resolved: when matching up DNSKEY and DS RRs, it's fine if we don't support the DNSKE...
[thirdparty/systemd.git] / src / resolve / resolved-dns-transaction.h
CommitLineData
ec2c5e43
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
24typedef struct DnsTransaction DnsTransaction;
25typedef enum DnsTransactionState DnsTransactionState;
c3bc53e6 26typedef enum DnsTransactionSource DnsTransactionSource;
ec2c5e43
LP
27
28enum DnsTransactionState {
29 DNS_TRANSACTION_NULL,
30 DNS_TRANSACTION_PENDING,
31 DNS_TRANSACTION_FAILURE,
32 DNS_TRANSACTION_SUCCESS,
33 DNS_TRANSACTION_NO_SERVERS,
34 DNS_TRANSACTION_TIMEOUT,
35 DNS_TRANSACTION_ATTEMPTS_MAX_REACHED,
36 DNS_TRANSACTION_INVALID_REPLY,
37 DNS_TRANSACTION_RESOURCES,
38 DNS_TRANSACTION_ABORTED,
39 _DNS_TRANSACTION_STATE_MAX,
40 _DNS_TRANSACTION_STATE_INVALID = -1
41};
42
c3bc53e6
LP
43enum DnsTransactionSource {
44 DNS_TRANSACTION_NETWORK,
45 DNS_TRANSACTION_CACHE,
46 DNS_TRANSACTION_ZONE,
0d2cd476 47 DNS_TRANSACTION_TRUST_ANCHOR,
c3bc53e6
LP
48 _DNS_TRANSACTION_SOURCE_MAX,
49 _DNS_TRANSACTION_SOURCE_INVALID = -1
50};
51
71d35b6b 52#include "resolved-dns-answer.h"
ec2c5e43
LP
53#include "resolved-dns-packet.h"
54#include "resolved-dns-question.h"
71d35b6b 55#include "resolved-dns-scope.h"
ec2c5e43
LP
56
57struct DnsTransaction {
58 DnsScope *scope;
59
f52e61da 60 DnsResourceKey *key;
ec2c5e43
LP
61
62 DnsTransactionState state;
63 uint16_t id;
64
ef7ce6df
DM
65 bool initial_jitter_scheduled;
66 bool initial_jitter_elapsed;
6e068472 67
ec2c5e43 68 DnsPacket *sent, *received;
ae6a4bbf
LP
69
70 DnsAnswer *answer;
71 int answer_rcode;
c3bc53e6 72 DnsTransactionSource answer_source;
931851e8 73 bool answer_authenticated;
ec2c5e43 74
9df3ba6c 75 usec_t start_usec;
a9da14e1 76 usec_t next_attempt_after;
ec2c5e43
LP
77 sd_event_source *timeout_event_source;
78 unsigned n_attempts;
79
4667e00a
LP
80 int dns_udp_fd;
81 sd_event_source *dns_udp_event_source;
d20b1667 82
4667e00a 83 /* The active server */
8300ba21
TG
84 DnsServer *server;
85
be808ea0
TG
86 /* the features of the DNS server at time of transaction start */
87 DnsServerFeatureLevel current_features;
88
ec2c5e43
LP
89 /* TCP connection logic, if we need it */
90 DnsStream *stream;
91
801ad6a6
LP
92 /* Query candidates this transaction is referenced by and that
93 * shall be notified about this specific transaction
94 * completing. */
95 Set *query_candidates;
ec2c5e43
LP
96
97 /* Zone items this transaction is referenced by and that shall
98 * be notified about completion. */
99 Set *zone_items;
100
101 unsigned block_gc;
102
103 LIST_FIELDS(DnsTransaction, transactions_by_scope);
104};
105
f52e61da 106int dns_transaction_new(DnsTransaction **ret, DnsScope *s, DnsResourceKey *key);
ec2c5e43
LP
107DnsTransaction* dns_transaction_free(DnsTransaction *t);
108
109void dns_transaction_gc(DnsTransaction *t);
110int dns_transaction_go(DnsTransaction *t);
111
112void dns_transaction_process_reply(DnsTransaction *t, DnsPacket *p);
113void dns_transaction_complete(DnsTransaction *t, DnsTransactionState state);
114
115const char* dns_transaction_state_to_string(DnsTransactionState p) _const_;
116DnsTransactionState dns_transaction_state_from_string(const char *s) _pure_;
117
c3bc53e6
LP
118const char* dns_transaction_source_to_string(DnsTransactionSource p) _const_;
119DnsTransactionSource dns_transaction_source_from_string(const char *s) _pure_;
120
ec2c5e43 121/* LLMNR Jitter interval, see RFC 4795 Section 7 */
6e068472 122#define LLMNR_JITTER_INTERVAL_USEC (100 * USEC_PER_MSEC)
ec2c5e43 123
ea12bcc7
DM
124/* mDNS Jitter interval, see RFC 6762 Section 5.2 */
125#define MDNS_JITTER_MIN_USEC (20 * USEC_PER_MSEC)
126#define MDNS_JITTER_RANGE_USEC (100 * USEC_PER_MSEC)
127
ec2c5e43 128/* Maximum attempts to send DNS requests, across all DNS servers */
3b31df83 129#define DNS_TRANSACTION_ATTEMPTS_MAX 16
ec2c5e43
LP
130
131/* Maximum attempts to send LLMNR requests, see RFC 4795 Section 2.7 */
132#define LLMNR_TRANSACTION_ATTEMPTS_MAX 3
133
c3bc53e6 134#define TRANSACTION_ATTEMPTS_MAX(p) ((p) == DNS_PROTOCOL_LLMNR ? LLMNR_TRANSACTION_ATTEMPTS_MAX : DNS_TRANSACTION_ATTEMPTS_MAX)