mirror of
https://libwebsockets.org/repo/libwebsockets
synced 2024-11-24 17:46:45 +00:00
ea00ad2076
Signed-off-by: stropee <simon@sirocha.fr>
396 lines
9.9 KiB
C
396 lines
9.9 KiB
C
/*
|
|
* libwebsockets - small server side websockets and web server implementation
|
|
*
|
|
* Copyright (C) 2010 - 2020 Andy Green <andy@warmcat.com>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to
|
|
* deal in the Software without restriction, including without limitation the
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "private-lib-core.h"
|
|
|
|
#if !defined(WIN32)
|
|
#include <netdb.h>
|
|
#endif
|
|
|
|
#ifndef AI_V4MAPPED
|
|
#define AI_V4MAPPED 0
|
|
#endif
|
|
|
|
#if !defined(LWS_WITH_SYS_ASYNC_DNS)
|
|
static int
|
|
lws_getaddrinfo46(struct lws *wsi, const char *ads, struct addrinfo **result)
|
|
{
|
|
lws_metrics_caliper_declare(cal, wsi->a.context->mt_conn_dns);
|
|
struct addrinfo hints;
|
|
#if defined(LWS_WITH_SYS_METRICS)
|
|
char buckname[32];
|
|
#endif
|
|
int n;
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
*result = NULL;
|
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
#ifdef LWS_WITH_IPV6
|
|
if (wsi->ipv6) {
|
|
|
|
#if !defined(__ANDROID__)
|
|
hints.ai_family = AF_UNSPEC;
|
|
hints.ai_flags = AI_V4MAPPED;
|
|
#endif
|
|
} else
|
|
#endif
|
|
{
|
|
hints.ai_family = PF_UNSPEC;
|
|
}
|
|
|
|
#if defined(LWS_WITH_CONMON)
|
|
wsi->conmon_datum = lws_now_usecs();
|
|
#endif
|
|
|
|
wsi->dns_reachability = 0;
|
|
if (lws_fi(&wsi->fic, "dnsfail"))
|
|
n = EAI_FAIL;
|
|
else
|
|
n = getaddrinfo(ads, NULL, &hints, result);
|
|
|
|
#if defined(LWS_WITH_CONMON)
|
|
wsi->conmon.ciu_dns = (lws_conmon_interval_us_t)
|
|
(lws_now_usecs() - wsi->conmon_datum);
|
|
#endif
|
|
|
|
/*
|
|
* Which EAI_* are available and the meanings are highly platform-
|
|
* dependent, even different linux distros differ.
|
|
*/
|
|
|
|
if (0
|
|
#if defined(EAI_SYSTEM)
|
|
|| n == EAI_SYSTEM
|
|
#endif
|
|
#if defined(EAI_NODATA)
|
|
|| n == EAI_NODATA
|
|
#endif
|
|
#if defined(EAI_FAIL)
|
|
|| n == EAI_FAIL
|
|
#endif
|
|
#if defined(EAI_AGAIN)
|
|
|| n == EAI_AGAIN
|
|
#endif
|
|
) {
|
|
wsi->dns_reachability = 1;
|
|
lws_metrics_caliper_report(cal, METRES_NOGO);
|
|
#if defined(LWS_WITH_SYS_METRICS)
|
|
lws_snprintf(buckname, sizeof(buckname), "dns=\"unreachable %d\"", n);
|
|
lws_metrics_hist_bump_priv_wsi(wsi, mth_conn_failures, buckname);
|
|
#endif
|
|
|
|
#if defined(LWS_WITH_CONMON)
|
|
wsi->conmon.dns_disposition = LWSCONMON_DNS_SERVER_UNREACHABLE;
|
|
#endif
|
|
|
|
#if 0
|
|
lwsl_wsi_debug(wsi, "asking to recheck CPD in 1s");
|
|
lws_system_cpd_start_defer(wsi->a.context, LWS_US_PER_SEC);
|
|
#endif
|
|
}
|
|
|
|
lwsl_wsi_info(wsi, "getaddrinfo '%s' says %d", ads, n);
|
|
|
|
#if defined(LWS_WITH_SYS_METRICS)
|
|
if (n < 0) {
|
|
lws_snprintf(buckname, sizeof(buckname), "dns=\"nores %d\"", n);
|
|
lws_metrics_hist_bump_priv_wsi(wsi, mth_conn_failures, buckname);
|
|
}
|
|
#endif
|
|
#if defined(LWS_WITH_CONMON)
|
|
wsi->conmon.dns_disposition = n < 0 ? LWSCONMON_DNS_NO_RESULT :
|
|
LWSCONMON_DNS_OK;
|
|
#endif
|
|
|
|
lws_metrics_caliper_report(cal, n >= 0 ? METRES_GO : METRES_NOGO);
|
|
|
|
return n;
|
|
}
|
|
#endif
|
|
|
|
#if !defined(LWS_WITH_SYS_ASYNC_DNS) && defined(EAI_NONAME)
|
|
static const char * const dns_nxdomain = "DNS NXDOMAIN";
|
|
#endif
|
|
|
|
struct lws *
|
|
lws_client_connect_2_dnsreq(struct lws *wsi)
|
|
{
|
|
struct addrinfo *result = NULL;
|
|
const char *meth = NULL;
|
|
#if defined(LWS_WITH_IPV6)
|
|
struct sockaddr_in addr;
|
|
const char *iface;
|
|
#endif
|
|
const char *adsin;
|
|
int n, port = 0;
|
|
struct lws *w;
|
|
|
|
if (lwsi_state(wsi) == LRS_WAITING_DNS ||
|
|
lwsi_state(wsi) == LRS_WAITING_CONNECT) {
|
|
lwsl_wsi_info(wsi, "LRS_WAITING_DNS / CONNECT");
|
|
|
|
return wsi;
|
|
}
|
|
|
|
/*
|
|
* clients who will create their own fresh connection keep a copy of
|
|
* the hostname they originally connected to, in case other connections
|
|
* want to use it too
|
|
*/
|
|
|
|
if (!wsi->cli_hostname_copy) {
|
|
const char *pa = lws_wsi_client_stash_item(wsi, CIS_HOST,
|
|
_WSI_TOKEN_CLIENT_PEER_ADDRESS);
|
|
|
|
if (pa)
|
|
wsi->cli_hostname_copy = lws_strdup(pa);
|
|
}
|
|
|
|
/*
|
|
* The first job is figure out if we want to pipeline on or just join
|
|
* an existing "active connection" to the same place
|
|
*/
|
|
|
|
meth = lws_wsi_client_stash_item(wsi, CIS_METHOD,
|
|
_WSI_TOKEN_CLIENT_METHOD);
|
|
/* consult active connections to find out disposition */
|
|
|
|
adsin = lws_wsi_client_stash_item(wsi, CIS_ADDRESS,
|
|
_WSI_TOKEN_CLIENT_PEER_ADDRESS);
|
|
|
|
/* we only pipeline connections that said it was okay */
|
|
|
|
if (!wsi->client_pipeline) {
|
|
lwsl_wsi_debug(wsi, "new conn on no pipeline flag");
|
|
|
|
goto solo;
|
|
}
|
|
|
|
if (wsi->keepalive_rejected) {
|
|
lwsl_notice("defeating pipelining due to no "
|
|
"keepalive on server\n");
|
|
goto solo;
|
|
}
|
|
|
|
/* only pipeline things we associate with being a stream */
|
|
if (meth && !_lws_is_http_method(meth) && strcmp(meth, "RAW") &&
|
|
strcmp(meth, "UDP") && strcmp(meth, "MQTT"))
|
|
goto solo;
|
|
|
|
if (!adsin)
|
|
/*
|
|
* This cannot happen since user code must provide the client
|
|
* address to get this far, it's here to satisfy Coverity
|
|
*/
|
|
return NULL;
|
|
|
|
switch (lws_vhost_active_conns(wsi, &w, adsin)) {
|
|
case ACTIVE_CONNS_SOLO:
|
|
break;
|
|
case ACTIVE_CONNS_MUXED:
|
|
lwsl_wsi_notice(wsi, "ACTIVE_CONNS_MUXED");
|
|
if (lwsi_role_h2(wsi)) {
|
|
|
|
if (wsi->a.protocol->callback(wsi,
|
|
LWS_CALLBACK_ESTABLISHED_CLIENT_HTTP,
|
|
wsi->user_space, NULL, 0))
|
|
goto failed1;
|
|
|
|
//lwsi_set_state(wsi, LRS_H1C_ISSUE_HANDSHAKE2);
|
|
//lwsi_set_state(w, LRS_ESTABLISHED);
|
|
lws_callback_on_writable(wsi);
|
|
}
|
|
|
|
return wsi;
|
|
case ACTIVE_CONNS_QUEUED:
|
|
lwsl_wsi_debug(wsi, "ACTIVE_CONNS_QUEUED st 0x%x: ",
|
|
lwsi_state(wsi));
|
|
|
|
if (lwsi_state(wsi) == LRS_UNCONNECTED) {
|
|
if (lwsi_role_h2(w))
|
|
lwsi_set_state(wsi,
|
|
LRS_H2_WAITING_TO_SEND_HEADERS);
|
|
else
|
|
lwsi_set_state(wsi, LRS_H1C_ISSUE_HANDSHAKE2);
|
|
}
|
|
|
|
return lws_client_connect_4_established(wsi, w, 0);
|
|
}
|
|
|
|
solo:
|
|
|
|
/*
|
|
* If we made our own connection, and we're doing a method that can
|
|
* take a pipeline, we are an "active client connection".
|
|
*
|
|
* Add ourselves to the vhost list of those so that others can
|
|
* piggyback on our transaction queue
|
|
*/
|
|
|
|
if (meth && (!strcmp(meth, "RAW") || _lws_is_http_method(meth) ||
|
|
!strcmp(meth, "MQTT")) &&
|
|
lws_dll2_is_detached(&wsi->dll2_cli_txn_queue) &&
|
|
lws_dll2_is_detached(&wsi->dll_cli_active_conns)) {
|
|
lws_context_lock(wsi->a.context, __func__);
|
|
lws_vhost_lock(wsi->a.vhost);
|
|
lwsl_wsi_info(wsi, "adding as active conn");
|
|
/* caution... we will have to unpick this on oom4 path */
|
|
lws_dll2_add_head(&wsi->dll_cli_active_conns,
|
|
&wsi->a.vhost->dll_cli_active_conns_owner);
|
|
lws_vhost_unlock(wsi->a.vhost);
|
|
lws_context_unlock(wsi->a.context);
|
|
}
|
|
|
|
/*
|
|
* Since address must be given at client creation, should not be
|
|
* possible, but necessary to satisfy coverity
|
|
*/
|
|
if (!adsin)
|
|
return NULL;
|
|
|
|
#if defined(LWS_WITH_UNIX_SOCK)
|
|
/*
|
|
* unix socket destination?
|
|
*/
|
|
|
|
if (*adsin == '+') {
|
|
wsi->unix_skt = 1;
|
|
n = 0;
|
|
goto next_step;
|
|
}
|
|
#endif
|
|
|
|
/*
|
|
* start off allowing ipv6 on connection if vhost allows it
|
|
*/
|
|
wsi->ipv6 = LWS_IPV6_ENABLED(wsi->a.vhost);
|
|
#ifdef LWS_WITH_IPV6
|
|
if (wsi->stash)
|
|
iface = wsi->stash->cis[CIS_IFACE];
|
|
else
|
|
iface = lws_hdr_simple_ptr(wsi, _WSI_TOKEN_CLIENT_IFACE);
|
|
|
|
if (wsi->ipv6 && iface &&
|
|
inet_pton(AF_INET, iface, &addr.sin_addr) == 1) {
|
|
lwsl_wsi_notice(wsi, "client connection forced to IPv4");
|
|
wsi->ipv6 = 0;
|
|
}
|
|
#endif
|
|
|
|
#if defined(LWS_CLIENT_HTTP_PROXYING) && \
|
|
(defined(LWS_ROLE_H1) || defined(LWS_ROLE_H2))
|
|
|
|
/* Decide what it is we need to connect to:
|
|
*
|
|
* Priority 1: connect to http proxy */
|
|
|
|
if (wsi->a.vhost->http.http_proxy_port) {
|
|
adsin = wsi->a.vhost->http.http_proxy_address;
|
|
port = (int)wsi->a.vhost->http.http_proxy_port;
|
|
#else
|
|
if (0) {
|
|
#endif
|
|
|
|
#if defined(LWS_WITH_SOCKS5)
|
|
|
|
/* Priority 2: Connect to SOCK5 Proxy */
|
|
|
|
} else if (wsi->a.vhost->socks_proxy_port) {
|
|
lwsl_wsi_client(wsi, "Sending SOCKS Greeting");
|
|
adsin = wsi->a.vhost->socks_proxy_address;
|
|
port = (int)wsi->a.vhost->socks_proxy_port;
|
|
#endif
|
|
} else {
|
|
|
|
/* Priority 3: Connect directly */
|
|
|
|
/* ads already set */
|
|
port = wsi->c_port;
|
|
}
|
|
|
|
/*
|
|
* prepare the actual connection
|
|
* to whatever we decided to connect to
|
|
*/
|
|
lwsi_set_state(wsi, LRS_WAITING_DNS);
|
|
|
|
lwsl_wsi_info(wsi, "lookup %s:%u", adsin, port);
|
|
wsi->conn_port = (uint16_t)port;
|
|
|
|
#if !defined(LWS_WITH_SYS_ASYNC_DNS)
|
|
n = 0;
|
|
if (!wsi->dns_sorted_list.count) {
|
|
/*
|
|
* blocking dns resolution
|
|
*/
|
|
n = lws_getaddrinfo46(wsi, adsin, &result);
|
|
#if defined(EAI_NONAME)
|
|
if (n == EAI_NONAME) {
|
|
/*
|
|
* The DNS server responded with NXDOMAIN... even
|
|
* though this is still in the client creation call,
|
|
* we need to make a CCE, otherwise there won't be
|
|
* any user indication of what went wrong
|
|
*/
|
|
wsi->client_suppress_CONNECTION_ERROR = 0;
|
|
lws_inform_client_conn_fail(wsi, (void *)dns_nxdomain,
|
|
strlen(dns_nxdomain));
|
|
goto failed1;
|
|
}
|
|
#endif
|
|
}
|
|
#else
|
|
/* this is either FAILED, CONTINUING, or already called connect_4 */
|
|
|
|
if (lws_fi(&wsi->fic, "dnsfail"))
|
|
return lws_client_connect_3_connect(wsi, NULL, NULL, -4, NULL);
|
|
else
|
|
n = lws_async_dns_query(wsi->a.context, wsi->tsi, adsin,
|
|
LWS_ADNS_RECORD_A, lws_client_connect_3_connect,
|
|
wsi, NULL, NULL);
|
|
|
|
if (n == LADNS_RET_FAILED_WSI_CLOSED)
|
|
return NULL;
|
|
|
|
if (n == LADNS_RET_FAILED)
|
|
goto failed1;
|
|
|
|
return wsi;
|
|
#endif
|
|
|
|
#if defined(LWS_WITH_UNIX_SOCK)
|
|
next_step:
|
|
#endif
|
|
return lws_client_connect_3_connect(wsi, adsin, result, n, NULL);
|
|
|
|
//#if defined(LWS_WITH_SYS_ASYNC_DNS)
|
|
failed1:
|
|
lws_close_free_wsi(wsi, LWS_CLOSE_STATUS_NOSTATUS, "client_connect2");
|
|
|
|
return NULL;
|
|
//#endif
|
|
}
|