This commit adds support for setting SNI hostnames in outgoing connections over TLS. Most of the changes are related to either adapting the code to accept and extra argument in *connect() functions and a couple of changes to the TLS Stream to actually make use of the new SNI hostname information.
906 lines
27 KiB
C
906 lines
27 KiB
C
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <sys/socket.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include <isc/mem.h>
|
|
#include <isc/refcount.h>
|
|
#include <isc/region.h>
|
|
#include <isc/result.h>
|
|
#include <isc/sockaddr.h>
|
|
#include <isc/tls.h>
|
|
#include <isc/types.h>
|
|
|
|
/* Add -DISC_NETMGR_TRACE=1 to CFLAGS for detailed reference tracing */
|
|
|
|
#if defined(SO_REUSEPORT_LB) || (defined(SO_REUSEPORT) && defined(__linux__))
|
|
#define HAVE_SO_REUSEPORT_LB 1
|
|
#endif
|
|
|
|
/*
|
|
* Convenience macros to specify on how many threads should socket listen
|
|
*/
|
|
#define ISC_NM_LISTEN_ALL 0
|
|
#define ISC_NM_LISTEN_ONE 1
|
|
|
|
/*
|
|
* Replacement for isc_sockettype_t provided by socket.h.
|
|
*/
|
|
typedef enum {
|
|
isc_socktype_tcp = 1,
|
|
isc_socktype_udp = 2,
|
|
isc_socktype_unix = 3,
|
|
isc_socktype_raw = 4
|
|
} isc_socktype_t;
|
|
|
|
typedef void (*isc_nm_recv_cb_t)(isc_nmhandle_t *handle, isc_result_t eresult,
|
|
isc_region_t *region, void *cbarg);
|
|
/*%<
|
|
* Callback function to be used when receiving a packet.
|
|
*
|
|
* 'handle' the handle that can be used to send back the answer.
|
|
* 'eresult' the result of the event.
|
|
* 'region' contains the received data, if any. It will be freed
|
|
* after return by caller.
|
|
* 'cbarg' the callback argument passed to isc_nm_listenudp(),
|
|
* isc_nm_listenstreamdns(), or isc_nm_read().
|
|
*/
|
|
typedef isc_result_t (*isc_nm_accept_cb_t)(isc_nmhandle_t *handle,
|
|
isc_result_t result, void *cbarg);
|
|
/*%<
|
|
* Callback function to be used when accepting a connection. (This differs
|
|
* from isc_nm_cb_t below in that it returns a result code.)
|
|
*
|
|
* 'handle' the handle that can be used to send back the answer.
|
|
* 'eresult' the result of the event.
|
|
* 'cbarg' the callback argument passed to isc_nm_listentcp() or
|
|
* isc_nm_listenstreamdns().
|
|
*/
|
|
|
|
typedef void (*isc_nm_cb_t)(isc_nmhandle_t *handle, isc_result_t result,
|
|
void *cbarg);
|
|
/*%<
|
|
* Callback function for other network completion events (send, connect).
|
|
*
|
|
* 'handle' the handle on which the event took place.
|
|
* 'eresult' the result of the event.
|
|
* 'cbarg' the callback argument passed to isc_nm_send(),
|
|
* isc_nm_tcp_connect(), or isc_nm_listentcp()
|
|
*/
|
|
|
|
typedef void (*isc_nm_opaquecb_t)(void *arg);
|
|
/*%<
|
|
* Opaque callback function, used for isc_nmhandle 'reset' and 'free'
|
|
* callbacks.
|
|
*/
|
|
|
|
typedef struct isc_nm_proxyheader_info {
|
|
bool complete;
|
|
union {
|
|
isc_region_t complete_header; /* complete header data */
|
|
struct {
|
|
isc_sockaddr_t src_addr;
|
|
isc_sockaddr_t dst_addr;
|
|
isc_region_t tlv_data;
|
|
} proxy_info; /* information to put into the new header */
|
|
};
|
|
} isc_nm_proxyheader_info_t;
|
|
/*%<
|
|
* Information to put into the PROXYv2 header when establishing a connection.
|
|
*/
|
|
|
|
typedef enum isc_nm_proxy_type {
|
|
ISC_NM_PROXY_NONE = 0,
|
|
ISC_NM_PROXY_PLAIN = 1,
|
|
ISC_NM_PROXY_ENCRYPTED = 2
|
|
} isc_nm_proxy_type_t;
|
|
/*%<
|
|
* PROXYv2 support type:
|
|
*
|
|
* - ISC_NM_PROXY_NONE - no PROXY headers are expected;
|
|
* - ISC_NM_PROXY_PLAIN - PROXY headers are sent ahead of any encryption, right
|
|
* after TCP connection establishment;
|
|
* - ISC_NM_PROXY_ENCRYPTED - PROXY headers are sent after TLS handshakes.
|
|
*/
|
|
|
|
void
|
|
isc_netmgr_create(isc_mem_t *mctx, isc_loopmgr_t *loopmgr, isc_nm_t **netgmrp);
|
|
/*%<
|
|
* Creates a new network manager and starts it running when loopmgr is started.
|
|
*/
|
|
|
|
void
|
|
isc_netmgr_destroy(isc_nm_t **netmgrp);
|
|
/*%<
|
|
* Similar to isc_nm_detach(), but requires all other references to be gone.
|
|
*/
|
|
|
|
void
|
|
isc_nm_attach(isc_nm_t *mgr, isc_nm_t **dst);
|
|
void
|
|
isc_nm_detach(isc_nm_t **mgr0);
|
|
/*%<
|
|
* Attach/detach a network manager. When all references have been
|
|
* released, the network manager is shut down, freeing all resources.
|
|
*/
|
|
|
|
void
|
|
isc_nmsocket_close(isc_nmsocket_t **sockp);
|
|
/*%<
|
|
* isc_nmsocket_close() detaches a listening socket that was
|
|
* created by isc_nm_listenudp(), isc_nm_listentcp(), or
|
|
* isc_nm_listentcpdns(). Once there are no remaining child
|
|
* sockets with active handles, the socket will be closed.
|
|
*/
|
|
|
|
void
|
|
isc_nmsocket_set_tlsctx(isc_nmsocket_t *listener, isc_tlsctx_t *tlsctx);
|
|
/*%<
|
|
* Asynchronously replace the TLS context within the listener socket object.
|
|
* The function is intended to be used during reconfiguration.
|
|
*
|
|
* Requires:
|
|
* \li 'listener' is a pointer to a valid network manager listener socket
|
|
object with TLS support;
|
|
* \li 'tlsctx' is a valid pointer to a TLS context object.
|
|
*/
|
|
|
|
void
|
|
isc_nmsocket_set_max_streams(isc_nmsocket_t *listener,
|
|
const uint32_t max_streams);
|
|
/*%<
|
|
* Set the maximum allowed number of concurrent streams for accepted
|
|
* client connections. The implementation might be asynchronous
|
|
* depending on the listener socket type.
|
|
*
|
|
* The call is a no-op for any listener socket type that does not
|
|
* support concept of multiple sessions per a client
|
|
* connection. Currently, it works only for HTTP/2 listeners.
|
|
*
|
|
* Setting 'max_streams' to '0' instructs the listener that there is
|
|
* no limit for concurrent streams.
|
|
*
|
|
* Requires:
|
|
* \li 'listener' is a pointer to a valid network manager listener socket.
|
|
*/
|
|
|
|
#if ISC_NETMGR_TRACE
|
|
#define isc_nmhandle_ref(ptr) \
|
|
isc_nmhandle__ref(ptr, __func__, __FILE__, __LINE__)
|
|
#define isc_nmhandle_unref(ptr) \
|
|
isc_nmhandle__unref(ptr, __func__, __FILE__, __LINE__)
|
|
#define isc_nmhandle_attach(ptr, ptrp) \
|
|
isc_nmhandle__attach(ptr, ptrp, __func__, __FILE__, __LINE__)
|
|
#define isc_nmhandle_detach(ptrp) \
|
|
isc_nmhandle__detach(ptrp, __func__, __FILE__, __LINE__)
|
|
ISC_REFCOUNT_TRACE_DECL(isc_nmhandle);
|
|
#else
|
|
ISC_REFCOUNT_DECL(isc_nmhandle);
|
|
#endif
|
|
/*%<
|
|
* Increment/decrement the reference counter in a netmgr handle.
|
|
*
|
|
* When the detach function is called on a thread other than the one that
|
|
* created the handle, it is scheduled to asynchronously by the handle's
|
|
* event loop. When references go to zero, the associated socket will be
|
|
* closed and deleted.
|
|
*/
|
|
|
|
void *
|
|
isc_nmhandle_getdata(isc_nmhandle_t *handle);
|
|
|
|
bool
|
|
isc_nmhandle_is_stream(isc_nmhandle_t *handle);
|
|
|
|
void
|
|
isc_nmhandle_setdata(isc_nmhandle_t *handle, void *arg,
|
|
isc_nm_opaquecb_t doreset, isc_nm_opaquecb_t dofree);
|
|
/*%<
|
|
* isc_nmhandle_t has a void* opaque field (for example, ns_client_t).
|
|
* We reuse handle and `opaque` can also be reused between calls.
|
|
* This function sets this field and two callbacks:
|
|
* - doreset resets the `opaque` to initial state
|
|
* - dofree frees everything associated with `opaque`
|
|
*/
|
|
|
|
void
|
|
isc_nmhandle_settimeout(isc_nmhandle_t *handle, uint32_t timeout);
|
|
void
|
|
isc_nmhandle_cleartimeout(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Set/clear the read/recv timeout for the socket connected to 'handle'
|
|
* to 'timeout' (in milliseconds), and reset the timer.
|
|
*
|
|
* When this is called on a 'wrapper' socket handle (for example,
|
|
* a TCPDNS socket wrapping a TCP connection), the timer is set for
|
|
* both socket layers.
|
|
*/
|
|
bool
|
|
isc_nmhandle_timer_running(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Return true if the timer for the socket connected to 'handle'
|
|
* is running.
|
|
*/
|
|
|
|
void
|
|
isc_nmhandle_keepalive(isc_nmhandle_t *handle, bool value);
|
|
/*%<
|
|
* Enable/disable keepalive on this connection by setting it to 'value'.
|
|
*
|
|
* When keepalive is active, we switch to using the keepalive timeout
|
|
* to determine when to close a connection, rather than the idle timeout.
|
|
*
|
|
* This applies only to TCP-based DNS connections (i.e., TCPDNS or
|
|
* TLSDNS). On other types of connection it has no effect.
|
|
*/
|
|
|
|
isc_sockaddr_t
|
|
isc_nmhandle_peeraddr(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Return the peer address for the given handle.
|
|
*/
|
|
isc_sockaddr_t
|
|
isc_nmhandle_localaddr(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Return the local address for the given handle.
|
|
*/
|
|
|
|
isc_sockaddr_t
|
|
isc_nmhandle_real_peeraddr(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Return the real (as seen by the OS) peer address for the given
|
|
* handle even when PROXY protocol is used.
|
|
*
|
|
* NOTE: This function is intended mostly for a) implementing PROXYv2
|
|
* access control facilities and b) logging. Using it for anything
|
|
* else WILL break PROXYv2 support. Please consider using
|
|
* 'isc_nmhandle_peeraddr()' instead.
|
|
*/
|
|
isc_sockaddr_t
|
|
isc_nmhandle_real_localaddr(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Return the real (as seen by the OS) local address for the given
|
|
* handle even when PROXY protocol is used.
|
|
*
|
|
* NOTE: This function is intended mostly for a) implementing PROXYv2
|
|
* access control facilities and b) logging. Using it for anything
|
|
* else WILL break PROXYv2 support. Please consider using
|
|
* 'isc_nmhandle_localaddr()' instead.
|
|
*/
|
|
|
|
isc_nm_t *
|
|
isc_nmhandle_netmgr(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Return a pointer to the netmgr object for the given handle.
|
|
*/
|
|
|
|
isc_result_t
|
|
isc_nm_listenudp(isc_nm_t *mgr, uint32_t workers, isc_sockaddr_t *iface,
|
|
isc_nm_recv_cb_t cb, void *cbarg, isc_nmsocket_t **sockp);
|
|
/*%<
|
|
* Start listening for UDP packets on interface 'iface' using net manager
|
|
* 'mgr'.
|
|
*
|
|
* On success, 'sockp' will be updated to contain a new listening UDP socket.
|
|
*
|
|
* When a packet is received on the socket, 'cb' will be called with 'cbarg'
|
|
* as its argument.
|
|
*/
|
|
|
|
void
|
|
isc_nm_udpconnect(isc_nm_t *mgr, isc_sockaddr_t *local, isc_sockaddr_t *peer,
|
|
isc_nm_cb_t cb, void *cbarg, unsigned int timeout);
|
|
/*%<
|
|
* Open a UDP socket, bind to 'local' and connect to 'peer', and
|
|
* immediately call 'cb' with a handle so that the caller can begin
|
|
* sending packets over UDP.
|
|
*
|
|
* 'timeout' specifies the timeout interval in milliseconds.
|
|
*
|
|
* The connected socket can only be accessed via the handle passed to
|
|
* 'cb'.
|
|
*/
|
|
|
|
isc_result_t
|
|
isc_nm_routeconnect(isc_nm_t *mgr, isc_nm_cb_t cb, void *cbarg);
|
|
/*%<
|
|
* Open a route/netlink socket and call 'cb', so the caller can be
|
|
* begin listening for interface changes. This behaves similarly to
|
|
* isc_nm_udpconnect().
|
|
*
|
|
* Returns ISC_R_NOTIMPLEMENTED on systems where route/netlink sockets
|
|
* are not supported.
|
|
*/
|
|
|
|
isc_result_t
|
|
isc_nm_listenproxyudp(isc_nm_t *mgr, uint32_t workers, isc_sockaddr_t *iface,
|
|
isc_nm_recv_cb_t cb, void *cbarg, isc_nmsocket_t **sockp);
|
|
/*%<
|
|
* The same as `isc_nm_listenudp()`, but PROXYv2 headers are
|
|
* expected at the beginning of the received datagrams.
|
|
*/
|
|
|
|
void
|
|
isc_nm_proxyudpconnect(isc_nm_t *mgr, isc_sockaddr_t *local,
|
|
isc_sockaddr_t *peer, isc_nm_cb_t cb, void *cbarg,
|
|
unsigned int timeout,
|
|
isc_nm_proxyheader_info_t *proxy_info);
|
|
/*%<
|
|
* The same as `isc_nm_udpconnect()`, but PROXYv2 headers are added
|
|
* at the beginning of each sent datagram. The PROXYv2 headers are
|
|
* created using the data from the `proxy_info` object. If the
|
|
* object is omitted, then LOCAL PROXYv2 headers are used.
|
|
*/
|
|
|
|
void
|
|
isc_nm_stoplistening(isc_nmsocket_t *sock);
|
|
/*%<
|
|
* Stop listening on socket 'sock'.
|
|
*/
|
|
|
|
void
|
|
isc_nm_read(isc_nmhandle_t *handle, isc_nm_recv_cb_t cb, void *cbarg);
|
|
/*
|
|
* Begin (or continue) reading on the socket associated with 'handle', and
|
|
* update its recv callback to 'cb', which will be called as soon as there
|
|
* is data to process.
|
|
*/
|
|
|
|
void
|
|
isc_nm_read_stop(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Stop reading on this handle's socket.
|
|
*
|
|
* Requires:
|
|
* \li 'handle' is a valid netmgr handle.
|
|
*/
|
|
|
|
void
|
|
isc_nm_cancelread(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Cancel reading on a connected socket. Calls the read/recv callback on
|
|
* active handles with a result code of ISC_R_CANCELED.
|
|
*
|
|
* Requires:
|
|
* \li 'handle' is a valid netmgr handle
|
|
* \li ...for which a read/recv callback has been defined.
|
|
*/
|
|
|
|
void
|
|
isc_nmhandle_close(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Close the active handle - no further read callbacks will happen.
|
|
*
|
|
* Requires:
|
|
* 'li 'handle' is a valid netmgr handle
|
|
*/
|
|
|
|
void
|
|
isc_nm_send(isc_nmhandle_t *handle, isc_region_t *region, isc_nm_cb_t cb,
|
|
void *cbarg);
|
|
/*%<
|
|
* Send the data in 'region' via 'handle'. Afterward, the callback 'cb' is
|
|
* called with the argument 'cbarg'.
|
|
*
|
|
* 'region' is not copied; it has to be allocated beforehand and freed
|
|
* in 'cb'.
|
|
*/
|
|
|
|
isc_result_t
|
|
isc_nm_listentcp(isc_nm_t *mgr, uint32_t workers, isc_sockaddr_t *iface,
|
|
isc_nm_accept_cb_t accept_cb, void *accept_cbarg, int backlog,
|
|
isc_quota_t *quota, isc_nmsocket_t **sockp);
|
|
/*%<
|
|
* Start listening for raw messages over the TCP interface 'iface', using
|
|
* net manager 'mgr'.
|
|
*
|
|
* On success, 'sockp' will be updated to contain a new listening TCP
|
|
* socket.
|
|
*
|
|
* When connection is accepted on the socket, 'accept_cb' will be called with
|
|
* 'accept_cbarg' as its argument. The callback is expected to start a read.
|
|
*
|
|
* If 'quota' is not NULL, then the socket is attached to the specified
|
|
* quota. This allows us to enforce TCP client quota limits.
|
|
*
|
|
*/
|
|
|
|
void
|
|
isc_nm_tcpconnect(isc_nm_t *mgr, isc_sockaddr_t *local, isc_sockaddr_t *peer,
|
|
isc_nm_cb_t connect_cb, void *connect_cbarg,
|
|
unsigned int timeout);
|
|
/*%<
|
|
* Create a socket using netmgr 'mgr', bind it to the address 'local',
|
|
* and connect it to the address 'peer'.
|
|
*
|
|
* When the connection is complete or has timed out, call 'cb' with
|
|
* argument 'cbarg'.
|
|
*
|
|
* 'timeout' specifies the timeout interval in milliseconds.
|
|
*
|
|
* The connected socket can only be accessed via the handle passed to
|
|
* 'cb'.
|
|
*/
|
|
|
|
isc_result_t
|
|
isc_nm_listenstreamdns(isc_nm_t *mgr, uint32_t workers, isc_sockaddr_t *iface,
|
|
isc_nm_recv_cb_t recv_cb, void *recv_cbarg,
|
|
isc_nm_accept_cb_t accept_cb, void *accept_cbarg,
|
|
int backlog, isc_quota_t *quota, isc_tlsctx_t *tlsctx,
|
|
isc_nm_proxy_type_t proxy_type, isc_nmsocket_t **sockp);
|
|
/*%<
|
|
* Start listening for DNS messages over the TCP interface 'iface', using
|
|
* net manager 'mgr'.
|
|
*
|
|
* On success, 'sockp' will be updated to contain a new listening TCPDNS
|
|
* socket. This is a wrapper around a raw TCP socket, which sends and
|
|
* receives DNS messages via that socket. It handles message buffering
|
|
* and pipelining, and automatically prepends messages with a two-byte
|
|
* length field.
|
|
*
|
|
* When a complete DNS message is received on the socket, 'cb' will be
|
|
* called with 'cbarg' as its argument.
|
|
*
|
|
* When a new connection is accepted, 'accept_cb' will be called with
|
|
* 'accept_cbarg' as its argument.
|
|
*
|
|
* Passing a non-NULL value as 'tlsctx' instructs the underlying code
|
|
* to create a DNS over TLS listener.
|
|
*
|
|
* Passing 'proxy == true' instruct the code that a PROXY header is
|
|
* sent before any data after the connection is accepted.
|
|
*
|
|
* 'quota' is passed to isc_nm_listentcp() when opening the raw TCP socket.
|
|
*/
|
|
|
|
isc_result_t
|
|
isc_nm_listenproxystream(isc_nm_t *mgr, uint32_t workers, isc_sockaddr_t *iface,
|
|
isc_nm_accept_cb_t accept_cb, void *accept_cbarg,
|
|
int backlog, isc_quota_t *quota, isc_tlsctx_t *tlsctx,
|
|
isc_nmsocket_t **sockp);
|
|
/*%<
|
|
* Start listening for data preceded by a PROXYv2 header over the
|
|
* TCP or TLS on interface 'iface', using net manager 'mgr'.
|
|
*
|
|
* On success, 'sockp' will be updated to contain a new listening TCP
|
|
* socket.
|
|
*
|
|
* When connection is accepted on the socket, 'accept_cb' will be called with
|
|
* 'accept_cbarg' as its argument. The callback is expected to start a read.
|
|
*
|
|
* If 'quota' is not NULL, then the socket is attached to the specified
|
|
* quota. This allows us to enforce TCP client quota limits.
|
|
*
|
|
* If 'tlsctx' is not NULL, then listen for TLS connections. In that
|
|
* case PROXYv2 headers are expected to be sent encrypted right after
|
|
* the TLS handshake.
|
|
*/
|
|
|
|
void
|
|
isc_nm_proxystreamconnect(isc_nm_t *mgr, isc_sockaddr_t *local,
|
|
isc_sockaddr_t *peer, isc_nm_cb_t cb, void *cbarg,
|
|
unsigned int timeout, isc_tlsctx_t *tlsctx,
|
|
const char *sni_hostname,
|
|
isc_tlsctx_client_session_cache_t *client_sess_cache,
|
|
isc_nm_proxyheader_info_t *proxy_info);
|
|
/*%<
|
|
* Create a TCP socket using netmgr 'mgr', bind it to the address
|
|
* 'local', and connect it to the address 'peer'. Right after the
|
|
* connection has been established, send PROXYv2 header using the
|
|
* information provided via the 'proxy_info' to the remote peer. Then
|
|
* the connection is considered established.
|
|
*
|
|
* If 'proxy_info' is omitted, then a LOCAL PROXYv2 header is sent.
|
|
*
|
|
* When the connection is established or has timed out, call 'cb' with
|
|
* argument 'cbarg'.
|
|
*
|
|
* 'timeout' specifies the timeout interval in milliseconds.
|
|
*
|
|
* The connected socket can only be accessed via the handle passed to
|
|
* 'cb'.
|
|
*/
|
|
|
|
void
|
|
isc_nm_proxyheader_info_init(isc_nm_proxyheader_info_t *restrict info,
|
|
isc_sockaddr_t *restrict src_addr,
|
|
isc_sockaddr_t *restrict dst_addr,
|
|
isc_region_t *restrict tlv_data);
|
|
/*%<
|
|
* Initialize a 'isc_nm_proxyheader_info_t' object with user
|
|
* provided addresses and a TLVs blob, that can be omitted (the rest
|
|
* of the data is REQUIRE()d).
|
|
*/
|
|
|
|
void
|
|
isc_nm_proxyheader_info_init_complete(isc_nm_proxyheader_info_t *restrict info,
|
|
isc_region_t *restrict header_data);
|
|
/*%<
|
|
* Initialize a 'isc_nm_proxyheader_info_t' with user provided data
|
|
* blob (e.g. a pre-rendered PROXYv2 header for forwarding or
|
|
* testing).
|
|
*/
|
|
|
|
void
|
|
isc_nm_settimeouts(isc_nm_t *mgr, uint32_t init, uint32_t idle,
|
|
uint32_t keepalive, uint32_t advertised);
|
|
/*%<
|
|
* Sets the initial, idle, and keepalive timeout values (in milliseconds) to use
|
|
* for TCP connections, and the timeout value to advertise in responses using
|
|
* the EDNS TCP Keepalive option (which should ordinarily be the same
|
|
* as 'keepalive'), in milliseconds.
|
|
*
|
|
* Requires:
|
|
* \li 'mgr' is a valid netmgr.
|
|
*/
|
|
|
|
void
|
|
isc_nm_setnetbuffers(isc_nm_t *mgr, int32_t recv_tcp, int32_t send_tcp,
|
|
int32_t recv_udp, int32_t send_udp);
|
|
/*%<
|
|
* If not 0, sets the SO_RCVBUF and SO_SNDBUF socket options for TCP and UDP
|
|
* respectively.
|
|
*
|
|
* Requires:
|
|
* \li 'mgr' is a valid netmgr.
|
|
*/
|
|
|
|
bool
|
|
isc_nm_getloadbalancesockets(isc_nm_t *mgr);
|
|
void
|
|
isc_nm_setloadbalancesockets(isc_nm_t *mgr, bool enabled);
|
|
/*%<
|
|
* Get and set value of load balancing of the sockets.
|
|
*
|
|
* Requires:
|
|
* \li 'mgr' is a valid netmgr.
|
|
*/
|
|
|
|
void
|
|
isc_nm_gettimeouts(isc_nm_t *mgr, uint32_t *initial, uint32_t *idle,
|
|
uint32_t *keepalive, uint32_t *advertised);
|
|
/*%<
|
|
* Gets the initial, idle, keepalive, or advertised timeout values,
|
|
* in milliseconds.
|
|
*
|
|
* Any integer pointer parameter not set to NULL will be updated to
|
|
* contain the corresponding timeout value.
|
|
*
|
|
* Requires:
|
|
* \li 'mgr' is a valid netmgr.
|
|
*/
|
|
|
|
void
|
|
isc_nm_maxudp(isc_nm_t *mgr, uint32_t maxudp);
|
|
/*%<
|
|
* Simulate a broken firewall that blocks UDP messages larger than a given
|
|
* size.
|
|
*/
|
|
|
|
void
|
|
isc_nm_setstats(isc_nm_t *mgr, isc_stats_t *stats);
|
|
/*%<
|
|
* Set a socket statistics counter set 'stats' for 'mgr'.
|
|
*
|
|
* Requires:
|
|
*\li 'mgr' is valid and doesn't have stats already set.
|
|
*
|
|
*\li stats is a valid set of statistics counters supporting the
|
|
* full range of socket-related stats counter numbers.
|
|
*/
|
|
|
|
isc_result_t
|
|
isc_nm_checkaddr(const isc_sockaddr_t *addr, isc_socktype_t type);
|
|
/*%<
|
|
* Check whether the specified address is available on the local system
|
|
* by opening a socket and immediately closing it.
|
|
*
|
|
* Requires:
|
|
*\li 'addr' is not NULL.
|
|
*/
|
|
|
|
void
|
|
isc_nm_streamdnsconnect(isc_nm_t *mgr, isc_sockaddr_t *local,
|
|
isc_sockaddr_t *peer, isc_nm_cb_t cb, void *cbarg,
|
|
unsigned int timeout, isc_tlsctx_t *tlsctx,
|
|
const char *sni_hostname,
|
|
isc_tlsctx_client_session_cache_t *client_sess_cache,
|
|
isc_nm_proxy_type_t proxy_type,
|
|
isc_nm_proxyheader_info_t *proxy_info);
|
|
/*%<
|
|
* Establish a DNS client connection via a TCP or TLS connection, bound to
|
|
* the address 'local' and connected to the address 'peer'.
|
|
*
|
|
* When the connection is complete or has timed out, call 'cb' with
|
|
* argument 'cbarg'.
|
|
*
|
|
* 'timeout' specifies the timeout interval in milliseconds.
|
|
*
|
|
* The connected socket can only be accessed via the handle passed to
|
|
* 'cb'.
|
|
*/
|
|
|
|
/*%<
|
|
* Returns 'true' iff 'handle' is associated with a socket of type
|
|
* 'isc_nm_tlsdnssocket'.
|
|
*/
|
|
|
|
bool
|
|
isc_nm_is_http_handle(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Returns 'true' iff 'handle' is associated with a socket of type
|
|
* 'isc_nm_httpsocket'.
|
|
*/
|
|
|
|
bool
|
|
isc_nm_is_proxy_unspec(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Returns 'true' iff 'handle' is associated with a peer who send
|
|
* a PROXYv2 header with unsupported address type.
|
|
*/
|
|
|
|
bool
|
|
isc_nm_is_proxy_handle(isc_nmhandle_t *handle);
|
|
/*%< Returns 'true' iff 'handle' is associated is with a PROXYv2
|
|
* connection.
|
|
*/
|
|
|
|
isc_nm_proxy_type_t
|
|
isc_nmhandle_proxy_type(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Returns the PROXYv2 type associated with 'handle'.
|
|
*/
|
|
|
|
isc_result_t
|
|
isc_nm_listentls(isc_nm_t *mgr, uint32_t workers, isc_sockaddr_t *iface,
|
|
isc_nm_accept_cb_t accept_cb, void *accept_cbarg, int backlog,
|
|
isc_quota_t *quota, isc_tlsctx_t *sslctx, bool proxy,
|
|
isc_nmsocket_t **sockp);
|
|
|
|
void
|
|
isc_nm_tlsconnect(isc_nm_t *mgr, isc_sockaddr_t *local, isc_sockaddr_t *peer,
|
|
isc_nm_cb_t connect_cb, void *connect_cbarg,
|
|
isc_tlsctx_t *ctx, const char *sni_hostname,
|
|
isc_tlsctx_client_session_cache_t *client_sess_cache,
|
|
unsigned int timeout, bool proxy,
|
|
isc_nm_proxyheader_info_t *proxy_info);
|
|
|
|
#if HAVE_LIBNGHTTP2
|
|
|
|
#define ISC_NM_HTTP_DEFAULT_PATH "/dns-query"
|
|
|
|
void
|
|
isc_nm_httpconnect(isc_nm_t *mgr, isc_sockaddr_t *local, isc_sockaddr_t *peer,
|
|
const char *uri, bool POST, isc_nm_cb_t cb, void *cbarg,
|
|
isc_tlsctx_t *ctx, const char *sni_hostname,
|
|
isc_tlsctx_client_session_cache_t *client_sess_cache,
|
|
unsigned int timeout, isc_nm_proxy_type_t proxy_type,
|
|
isc_nm_proxyheader_info_t *proxy_info);
|
|
|
|
isc_result_t
|
|
isc_nm_listenhttp(isc_nm_t *mgr, uint32_t workers, isc_sockaddr_t *iface,
|
|
int backlog, isc_quota_t *quota, isc_tlsctx_t *ctx,
|
|
isc_nm_http_endpoints_t *eps, uint32_t max_concurrent_streams,
|
|
isc_nm_proxy_type_t proxy_type, isc_nmsocket_t **sockp);
|
|
|
|
isc_nm_http_endpoints_t *
|
|
isc_nm_http_endpoints_new(isc_mem_t *mctx);
|
|
/*%<
|
|
* Create a new, empty HTTP endpoints set object.
|
|
*
|
|
* Requires:
|
|
* \li 'mctx' a valid memory context object.
|
|
*/
|
|
|
|
isc_result_t
|
|
isc_nm_http_endpoints_add(isc_nm_http_endpoints_t *restrict eps,
|
|
const char *uri, const isc_nm_recv_cb_t cb,
|
|
void *cbarg);
|
|
/*%< Adds a new endpoint to the given HTTP endpoints set object.
|
|
*
|
|
* NOTE: adding an endpoint is allowed only if the endpoint object has
|
|
* not been passed to isc_nm_listenhttp() yet.
|
|
*
|
|
* Requires:
|
|
* \li 'eps' is a valid pointer to a valid isc_nm_http_endpoints_t
|
|
* object;
|
|
* \li 'uri' is a valid pointer to a string of length > 0;
|
|
* \li 'cb' is a valid pointer to a read callback function.
|
|
*/
|
|
|
|
void
|
|
isc_nm_http_endpoints_attach(isc_nm_http_endpoints_t *source,
|
|
isc_nm_http_endpoints_t **targetp);
|
|
/*%<
|
|
* Attaches to an HTTP endpoints set object.
|
|
*
|
|
* Requires:
|
|
* \li 'source' is a non-NULL pointer to a valid
|
|
* isc_nm_http_endpoints_t object;
|
|
* \li 'target' is a pointer to a pointer, containing NULL.
|
|
*/
|
|
|
|
void
|
|
isc_nm_http_endpoints_detach(isc_nm_http_endpoints_t **restrict epsp);
|
|
/*%<
|
|
* Detaches from an HTTP endpoints set object. When reference count
|
|
* reaches 0, the object get deleted.
|
|
*
|
|
* Requires:
|
|
* \li 'epsp' is a pointer to a pointer to a valid
|
|
* isc_nm_http_endpoints_t object.
|
|
*/
|
|
|
|
bool
|
|
isc_nm_http_path_isvalid(const char *path);
|
|
/*%<
|
|
* Returns 'true' if 'path' matches the format requirements for
|
|
* the path component of a URI as defined in RFC 3986 section 3.3.
|
|
*/
|
|
|
|
void
|
|
isc_nm_http_makeuri(const bool https, const isc_sockaddr_t *sa,
|
|
const char *hostname, const uint16_t http_port,
|
|
const char *abs_path, char *outbuf,
|
|
const size_t outbuf_len);
|
|
/*%<
|
|
* Makes a URI connection string out of na isc_sockaddr_t object 'sa'
|
|
* or the specified 'hostname' and 'http_port'.
|
|
*
|
|
* Requires:
|
|
* \li 'abs_path' is a valid absolute HTTP path string;
|
|
* \li 'outbuf' is a valid pointer to a buffer which will get the result;
|
|
* \li 'outbuf_len' is a size of the result buffer and is greater than zero.
|
|
*/
|
|
|
|
void
|
|
isc_nm_http_set_endpoints(isc_nmsocket_t *listener,
|
|
isc_nm_http_endpoints_t *eps);
|
|
/*%<
|
|
* Asynchronously replace the set of HTTP endpoints (paths) within
|
|
* the listener socket object. The function is intended to be used
|
|
* during reconfiguration.
|
|
*
|
|
* Requires:
|
|
* \li 'listener' is a pointer to a valid network manager HTTP listener socket;
|
|
* \li 'eps' is a valid pointer to an HTTP endpoints set.
|
|
*/
|
|
|
|
#endif /* HAVE_LIBNGHTTP2 */
|
|
|
|
void
|
|
isc_nm_bad_request(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Perform a transport protocol specific action on the handle in case of a
|
|
* bad/malformed incoming DNS message.
|
|
*
|
|
* NOTE: The function currently is no-op for any protocol except HTTP/2.
|
|
*
|
|
* Requires:
|
|
* \li 'handle' is a valid netmgr handle object.
|
|
*/
|
|
|
|
isc_result_t
|
|
isc_nm_xfr_checkperm(isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Check if it is permitted to do a zone transfer over the given handle.
|
|
*
|
|
* Returns:
|
|
* \li #ISC_R_SUCCESS Success, permission check passed successfully
|
|
* \li #ISC_R_DOTALPNERROR No permission because of ALPN tag mismatch
|
|
* \li #ISC_R_NOPERM No permission because of other restrictions
|
|
* \li any other result indicates failure (i.e. no permission)
|
|
*
|
|
* Requires:
|
|
* \li 'handle' is a valid connection handle.
|
|
*/
|
|
|
|
void
|
|
isc_nm_set_maxage(isc_nmhandle_t *handle, const uint32_t ttl);
|
|
/*%<
|
|
* Set the minimal time to live from the server's response Answer
|
|
* section as a hint to the underlying transport.
|
|
*
|
|
* NOTE: The function currently is no-op for any protocol except HTTP/2.
|
|
*
|
|
* Requires:
|
|
*
|
|
* \li 'handle' is a valid netmgr handle object associated with an accepted
|
|
* connection.
|
|
*/
|
|
|
|
isc_nmsocket_type
|
|
isc_nm_socket_type(const isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Returns the handle's underlying socket type.
|
|
*
|
|
* Requires:
|
|
* \li 'handle' is a valid netmgr handle object.
|
|
*/
|
|
|
|
bool
|
|
isc_nm_has_encryption(const isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Returns 'true' iff the handle's underlying transport does encryption.
|
|
*
|
|
* Requires:
|
|
* \li 'handle' is a valid netmgr handle object.
|
|
*/
|
|
|
|
const char *
|
|
isc_nm_verify_tls_peer_result_string(const isc_nmhandle_t *handle);
|
|
/*%<
|
|
* Returns user-readable message describing TLS peer's certificate
|
|
* validation result. Returns 'NULL' for the transport handles for
|
|
* which peer verification was not performed.
|
|
*
|
|
* Requires:
|
|
* \li 'handle' is a valid netmgr handle object.
|
|
*/
|
|
|
|
void
|
|
isc__nm_force_tid(int tid);
|
|
/*%<
|
|
* Force the thread ID to 'tid'. This is STRICTLY for use in unit
|
|
* tests and should not be used in any production code.
|
|
*/
|
|
|
|
void
|
|
isc_nmhandle_setwritetimeout(isc_nmhandle_t *handle, uint64_t write_timeout);
|
|
|
|
/*
|
|
* Timer related functions
|
|
*/
|
|
|
|
typedef struct isc_nm_timer isc_nm_timer_t;
|
|
|
|
typedef void (*isc_nm_timer_cb)(void *, isc_result_t);
|
|
|
|
void
|
|
isc_nm_timer_create(isc_nmhandle_t *, isc_nm_timer_cb, void *,
|
|
isc_nm_timer_t **);
|
|
|
|
void
|
|
isc_nm_timer_attach(isc_nm_timer_t *, isc_nm_timer_t **);
|
|
|
|
void
|
|
isc_nm_timer_detach(isc_nm_timer_t **);
|
|
|
|
void
|
|
isc_nm_timer_start(isc_nm_timer_t *, uint64_t);
|
|
|
|
void
|
|
isc_nm_timer_stop(isc_nm_timer_t *);
|
|
|
|
isc_result_t
|
|
isc_nmhandle_set_tcp_nodelay(isc_nmhandle_t *handle, const bool value);
|
|
/*%<
|
|
* Disables/Enables Nagle's algorithm on a TCP socket for a
|
|
* transport backed by TCP (sets TCP_NODELAY if 'value' equals 'true'
|
|
* or vice versa).
|
|
*
|
|
* Requires:
|
|
*
|
|
* \li 'handle' is a valid netmgr handle object.
|
|
*/
|
|
|
|
isc_sockaddr_t
|
|
isc_nmsocket_getaddr(isc_nmsocket_t *sock);
|
|
/*%<
|
|
* Return the local address of 'sock'.
|
|
*/
|