]> git.proxmox.com Git - systemd.git/blame - src/resolve/resolved-dns-stream.h
New upstream version 242
[systemd.git] / src / resolve / resolved-dns-stream.h
CommitLineData
52ad194e 1/* SPDX-License-Identifier: LGPL-2.1+ */
5eef597e
MP
2#pragma once
3
5eef597e
MP
4#include "socket-util.h"
5
6typedef struct DnsStream DnsStream;
7
bb4f798a
MB
8typedef enum DnsStreamType {
9 DNS_STREAM_LOOKUP, /* Outgoing connection to a classic DNS server */
10 DNS_STREAM_LLMNR_SEND, /* Outgoing LLMNR TCP lookup */
11 DNS_STREAM_LLMNR_RECV, /* Incoming LLMNR TCP lookup */
12 DNS_STREAM_STUB, /* Incoming DNS stub connection */
13 _DNS_STREAM_TYPE_MAX,
14 _DNS_STREAM_TYPE_INVALID = -1,
15} DnsStreamType;
16
5eef597e
MP
17#include "resolved-dns-packet.h"
18#include "resolved-dns-transaction.h"
8a584da2 19#include "resolved-manager.h"
b012e921 20#if ENABLE_DNS_OVER_TLS
6e866b33 21#include "resolved-dnstls.h"
b012e921
MB
22#endif
23
6e866b33
MB
24#define DNS_STREAM_WRITE_TLS_DATA 1
25
5a920b42
MP
26/* Streams are used by three subsystems:
27 *
28 * 1. The normal transaction logic when doing a DNS or LLMNR lookup via TCP
29 * 2. The LLMNR logic when accepting a TCP-based lookup
30 * 3. The DNS stub logic when accepting a TCP-based lookup
31 */
32
5eef597e
MP
33struct DnsStream {
34 Manager *manager;
6e866b33 35 unsigned n_ref;
5eef597e 36
bb4f798a 37 DnsStreamType type;
5eef597e
MP
38 DnsProtocol protocol;
39
40 int fd;
41 union sockaddr_union peer;
42 socklen_t peer_salen;
43 union sockaddr_union local;
44 socklen_t local_salen;
45 int ifindex;
46 uint32_t ttl;
47 bool identified;
48
b012e921
MB
49 /* only when using TCP fast open */
50 union sockaddr_union tfo_address;
51 socklen_t tfo_salen;
52
53#if ENABLE_DNS_OVER_TLS
6e866b33
MB
54 DnsTlsStreamData dnstls_data;
55 int dnstls_events;
b012e921
MB
56#endif
57
5eef597e
MP
58 sd_event_source *io_event_source;
59 sd_event_source *timeout_event_source;
60
61 be16_t write_size, read_size;
62 DnsPacket *write_packet, *read_packet;
63 size_t n_written, n_read;
b012e921 64 OrderedSet *write_queue;
5eef597e
MP
65
66 int (*on_packet)(DnsStream *s);
67 int (*complete)(DnsStream *s, int error);
68
b012e921
MB
69 LIST_HEAD(DnsTransaction, transactions); /* when used by the transaction logic */
70 DnsServer *server; /* when used by the transaction logic */
bb4f798a 71 Set *queries; /* when used by the DNS stub logic */
5eef597e 72
b012e921
MB
73 /* used when DNS-over-TLS is enabled */
74 bool encrypted:1;
75
5eef597e
MP
76 LIST_FIELDS(DnsStream, streams);
77};
78
bb4f798a 79int dns_stream_new(Manager *m, DnsStream **s, DnsStreamType type, DnsProtocol protocol, int fd, const union sockaddr_union *tfo_address);
b012e921 80#if ENABLE_DNS_OVER_TLS
6e866b33 81int dns_stream_connect_tls(DnsStream *s, void *tls_session);
b012e921 82#endif
5a920b42
MP
83DnsStream *dns_stream_unref(DnsStream *s);
84DnsStream *dns_stream_ref(DnsStream *s);
5eef597e 85
b012e921
MB
86DEFINE_TRIVIAL_CLEANUP_FUNC(DnsStream*, dns_stream_unref);
87
5eef597e 88int dns_stream_write_packet(DnsStream *s, DnsPacket *p);
6e866b33 89ssize_t dns_stream_writev(DnsStream *s, const struct iovec *iov, size_t iovcnt, int flags);
5a920b42
MP
90
91static inline bool DNS_STREAM_QUEUED(DnsStream *s) {
92 assert(s);
93
94 if (s->fd < 0) /* already stopped? */
95 return false;
96
97 return !!s->write_packet;
98}
6e866b33
MB
99
100DnsPacket *dns_stream_take_read_packet(DnsStream *s);
101
102void dns_stream_detach(DnsStream *s);