listen_dnsport.h revision 307729
1/*
2 * services/listen_dnsport.h - listen on port 53 for incoming DNS queries.
3 *
4 * Copyright (c) 2007, NLnet Labs. All rights reserved.
5 *
6 * This software is open source.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 *
15 * Redistributions in binary form must reproduce the above copyright notice,
16 * this list of conditions and the following disclaimer in the documentation
17 * and/or other materials provided with the distribution.
18 *
19 * Neither the name of the NLNET LABS nor the names of its contributors may
20 * be used to endorse or promote products derived from this software without
21 * specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
29 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
30 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */
35
36/**
37 * \file
38 *
39 * This file has functions to get queries from clients.
40 */
41
42#ifndef LISTEN_DNSPORT_H
43#define LISTEN_DNSPORT_H
44
45#include "util/netevent.h"
46struct listen_list;
47struct config_file;
48struct addrinfo;
49struct sldns_buffer;
50
51/**
52 * Listening for queries structure.
53 * Contains list of query-listen sockets.
54 */
55struct listen_dnsport {
56	/** Base for select calls */
57	struct comm_base* base;
58
59	/** buffer shared by UDP connections, since there is only one
60	    datagram at any time. */
61	struct sldns_buffer* udp_buff;
62
63	/** list of comm points used to get incoming events */
64	struct listen_list* cps;
65};
66
67/**
68 * Single linked list to store event points.
69 */
70struct listen_list {
71	/** next in list */
72	struct listen_list* next;
73	/** event info */
74	struct comm_point* com;
75};
76
77/**
78 * type of ports
79 */
80enum listen_type {
81	/** udp type */
82	listen_type_udp,
83	/** tcp type */
84	listen_type_tcp,
85	/** udp ipv6 (v4mapped) for use with ancillary data */
86	listen_type_udpancil,
87	/** ssl over tcp type */
88	listen_type_ssl
89};
90
91/**
92 * Single linked list to store shared ports that have been
93 * opened for use by all threads.
94 */
95struct listen_port {
96	/** next in list */
97	struct listen_port* next;
98	/** file descriptor, open and ready for use */
99	int fd;
100	/** type of file descriptor, udp or tcp */
101	enum listen_type ftype;
102};
103
104/**
105 * Create shared listening ports
106 * Getaddrinfo, create socket, bind and listen to zero or more
107 * interfaces for IP4 and/or IP6, for UDP and/or TCP.
108 * On the given port number. It creates the sockets.
109 * @param cfg: settings on what ports to open.
110 * @param reuseport: set to true if you want reuseport, or NULL to not have it,
111 *   set to false on exit if reuseport failed to apply (because of no
112 *   kernel support).
113 * @return: linked list of ports or NULL on error.
114 */
115struct listen_port* listening_ports_open(struct config_file* cfg,
116	int* reuseport);
117
118/**
119 * Close and delete the (list of) listening ports.
120 */
121void listening_ports_free(struct listen_port* list);
122
123/**
124 * Create commpoints with for this thread for the shared ports.
125 * @param base: the comm_base that provides event functionality.
126 *	for default all ifs.
127 * @param ports: the list of shared ports.
128 * @param bufsize: size of datagram buffer.
129 * @param tcp_accept_count: max number of simultaneous TCP connections
130 * 	from clients.
131 * @param sslctx: nonNULL if ssl context.
132 * @param dtenv: nonNULL if dnstap enabled.
133 * @param cb: callback function when a request arrives. It is passed
134 *	  the packet and user argument. Return true to send a reply.
135 * @param cb_arg: user data argument for callback function.
136 * @return: the malloced listening structure, ready for use. NULL on error.
137 */
138struct listen_dnsport* listen_create(struct comm_base* base,
139	struct listen_port* ports, size_t bufsize, int tcp_accept_count,
140	void* sslctx, struct dt_env *dtenv, comm_point_callback_t* cb,
141	void* cb_arg);
142
143/**
144 * delete the listening structure
145 * @param listen: listening structure.
146 */
147void listen_delete(struct listen_dnsport* listen);
148
149/**
150 * delete listen_list of commpoints. Calls commpointdelete() on items.
151 * This may close the fds or not depending on flags.
152 * @param list: to delete.
153 */
154void listen_list_delete(struct listen_list* list);
155
156/**
157 * get memory size used by the listening structs
158 * @param listen: listening structure.
159 * @return: size in bytes.
160 */
161size_t listen_get_mem(struct listen_dnsport* listen);
162
163/**
164 * stop accept handlers for TCP (until enabled again)
165 * @param listen: listening structure.
166 */
167void listen_stop_accept(struct listen_dnsport* listen);
168
169/**
170 * start accept handlers for TCP (was stopped before)
171 * @param listen: listening structure.
172 */
173void listen_start_accept(struct listen_dnsport* listen);
174
175/**
176 * Create and bind nonblocking UDP socket
177 * @param family: for socket call.
178 * @param socktype: for socket call.
179 * @param addr: for bind call.
180 * @param addrlen: for bind call.
181 * @param v6only: if enabled, IP6 sockets get IP6ONLY option set.
182 * 	if enabled with value 2 IP6ONLY option is disabled.
183 * @param inuse: on error, this is set true if the port was in use.
184 * @param noproto: on error, this is set true if cause is that the
185	IPv6 proto (family) is not available.
186 * @param rcv: set size on rcvbuf with socket option, if 0 it is not set.
187 * @param snd: set size on sndbuf with socket option, if 0 it is not set.
188 * @param listen: if true, this is a listening UDP port, eg port 53, and
189 * 	set SO_REUSEADDR on it.
190 * @param reuseport: if nonNULL and true, try to set SO_REUSEPORT on
191 * 	listening UDP port.  Set to false on return if it failed to do so.
192 * @param transparent: set IP_TRANSPARENT socket option.
193 * @param freebind: set IP_FREEBIND socket option.
194 * @return: the socket. -1 on error.
195 */
196int create_udp_sock(int family, int socktype, struct sockaddr* addr,
197	socklen_t addrlen, int v6only, int* inuse, int* noproto, int rcv,
198	int snd, int listen, int* reuseport, int transparent, int freebind);
199
200/**
201 * Create and bind TCP listening socket
202 * @param addr: address info ready to make socket.
203 * @param v6only: enable ip6 only flag on ip6 sockets.
204 * @param noproto: if error caused by lack of protocol support.
205 * @param reuseport: if nonNULL and true, try to set SO_REUSEPORT on
206 * 	listening UDP port.  Set to false on return if it failed to do so.
207 * @param transparent: set IP_TRANSPARENT socket option.
208 * @param mss: maximum segment size of the socket. if zero, leaves the default.
209 * @param freebind: set IP_FREEBIND socket option.
210 * @return: the socket. -1 on error.
211 */
212int create_tcp_accept_sock(struct addrinfo *addr, int v6only, int* noproto,
213	int* reuseport, int transparent, int mss, int freebind);
214
215/**
216 * Create and bind local listening socket
217 * @param path: path to the socket.
218 * @param noproto: on error, this is set true if cause is that local sockets
219 *	are not supported.
220 * @return: the socket. -1 on error.
221 */
222int create_local_accept_sock(const char* path, int* noproto);
223
224#endif /* LISTEN_DNSPORT_H */
225