mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00

role ops are usually only sparsely filled, there are currently 20 function pointers but several roles only fill in two. No single role has more than 14 of the ops. On a 32/64 bit build this part of the ops struct takes a fixed 80 / 160 bytes then. First reduce the type of the callback reason part from uint16_t to uint8_t, this saves 12 bytes unconditionally. Change to a separate function pointer array with a nybble index array, it costs 10 bytes for the index and a pointer to the separate array, for 32-bit the cost is 2 + (4 x ops_used) and for 64-bit 6 + (8 x ops_used) for 2 x ops_used it means 32-bit: 10 vs 80 / 64-bit: 22 vs 160 For a typical system with h1 (9), h2 (14), listen (2), netlink (2), pipe (1), raw_skt (3), ws (12), == 43 ops_used out of 140, it means the .rodata for this reduced from 32-bit: 560 -> 174 (386 byte saving) and 64-bit: 1120 -> 350 (770 byte saving) This doesn't account for the changed function ops calling code, two ways were tried, a preprocessor macro and explicit functions For an x86_64 gcc 10 build with most options, release mode, .text + .rodata before patch: 553282 accessor macro: 552714 (568 byte saving) accessor functions: 553674 (392 bytes worse than without patch) therefore we went with the macros
376 lines
11 KiB
C
376 lines
11 KiB
C
/*
|
|
* libwebsockets - small server side websockets and web server implementation
|
|
*
|
|
* Copyright (C) 2010 - 2019 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"
|
|
|
|
void
|
|
__lws_wsi_remove_from_sul(struct lws *wsi)
|
|
{
|
|
//struct lws_context_per_thread *pt = &wsi->a.context->pt[(int)wsi->tsi];
|
|
|
|
//lwsl_notice("%s: wsi %p, to %p, hr %p\n", __func__, wsi,
|
|
// &wsi->sul_timeout.list, &wsi->sul_hrtimer.list);
|
|
|
|
// lws_dll2_describe(&pt->pt_sul_owner, "pre-remove");
|
|
lws_dll2_remove(&wsi->sul_timeout.list);
|
|
lws_dll2_remove(&wsi->sul_hrtimer.list);
|
|
lws_dll2_remove(&wsi->sul_validity.list);
|
|
// lws_dll2_describe(&pt->pt_sul_owner, "post-remove");
|
|
}
|
|
|
|
/*
|
|
* hrtimer
|
|
*/
|
|
|
|
static void
|
|
lws_sul_hrtimer_cb(lws_sorted_usec_list_t *sul)
|
|
{
|
|
struct lws *wsi = lws_container_of(sul, struct lws, sul_hrtimer);
|
|
|
|
if (wsi->a.protocol &&
|
|
wsi->a.protocol->callback(wsi, LWS_CALLBACK_TIMER,
|
|
wsi->user_space, NULL, 0))
|
|
__lws_close_free_wsi(wsi, LWS_CLOSE_STATUS_NOSTATUS,
|
|
"hrtimer cb errored");
|
|
}
|
|
|
|
void
|
|
__lws_set_timer_usecs(struct lws *wsi, lws_usec_t us)
|
|
{
|
|
struct lws_context_per_thread *pt = &wsi->a.context->pt[(int)wsi->tsi];
|
|
|
|
wsi->sul_hrtimer.cb = lws_sul_hrtimer_cb;
|
|
__lws_sul_insert_us(&pt->pt_sul_owner[LWSSULLI_MISS_IF_SUSPENDED],
|
|
&wsi->sul_hrtimer, us);
|
|
}
|
|
|
|
void
|
|
lws_set_timer_usecs(struct lws *wsi, lws_usec_t usecs)
|
|
{
|
|
__lws_set_timer_usecs(wsi, usecs);
|
|
}
|
|
|
|
/*
|
|
* wsi timeout
|
|
*/
|
|
|
|
static void
|
|
lws_sul_wsitimeout_cb(lws_sorted_usec_list_t *sul)
|
|
{
|
|
struct lws *wsi = lws_container_of(sul, struct lws, sul_timeout);
|
|
struct lws_context_per_thread *pt = &wsi->a.context->pt[(int)wsi->tsi];
|
|
|
|
if (wsi->pending_timeout != PENDING_TIMEOUT_USER_OK)
|
|
lws_stats_bump(pt, LWSSTATS_C_TIMEOUTS, 1);
|
|
|
|
/* no need to log normal idle keepalive timeout */
|
|
// if (wsi->pending_timeout != PENDING_TIMEOUT_HTTP_KEEPALIVE_IDLE)
|
|
#if defined(LWS_ROLE_H1) || defined(LWS_ROLE_H2)
|
|
if (wsi->pending_timeout != PENDING_TIMEOUT_USER_OK)
|
|
lwsl_info("wsi %p: TIMEDOUT WAITING on %d "
|
|
"(did hdr %d, ah %p, wl %d)\n",
|
|
(void *)wsi, wsi->pending_timeout,
|
|
wsi->hdr_parsing_completed, wsi->http.ah,
|
|
pt->http.ah_wait_list_length);
|
|
#if defined(LWS_WITH_CGI)
|
|
if (wsi->http.cgi)
|
|
lwsl_notice("CGI timeout: %s\n", wsi->http.cgi->summary);
|
|
#endif
|
|
#else
|
|
if (wsi->pending_timeout != PENDING_TIMEOUT_USER_OK)
|
|
lwsl_info("wsi %p: TIMEDOUT WAITING on %d ", (void *)wsi,
|
|
wsi->pending_timeout);
|
|
#endif
|
|
/* cgi timeout */
|
|
if (wsi->pending_timeout != PENDING_TIMEOUT_HTTP_KEEPALIVE_IDLE)
|
|
/*
|
|
* Since he failed a timeout, he already had a chance to
|
|
* do something and was unable to... that includes
|
|
* situations like half closed connections. So process
|
|
* this "failed timeout" close as a violent death and
|
|
* don't try to do protocol cleanup like flush partials.
|
|
*/
|
|
wsi->socket_is_permanently_unusable = 1;
|
|
#if defined(LWS_WITH_CLIENT)
|
|
if (lwsi_state(wsi) == LRS_WAITING_SSL)
|
|
lws_inform_client_conn_fail(wsi,
|
|
(void *)"Timed out waiting SSL", 21);
|
|
#endif
|
|
|
|
lws_pt_lock(pt, __func__);
|
|
__lws_close_free_wsi(wsi, LWS_CLOSE_STATUS_NOSTATUS, "timeout");
|
|
lws_pt_unlock(pt);
|
|
}
|
|
|
|
void
|
|
__lws_set_timeout(struct lws *wsi, enum pending_timeout reason, int secs)
|
|
{
|
|
struct lws_context_per_thread *pt = &wsi->a.context->pt[(int)wsi->tsi];
|
|
|
|
wsi->sul_timeout.cb = lws_sul_wsitimeout_cb;
|
|
__lws_sul_insert_us(&pt->pt_sul_owner[LWSSULLI_MISS_IF_SUSPENDED],
|
|
&wsi->sul_timeout,
|
|
((lws_usec_t)secs) * LWS_US_PER_SEC);
|
|
|
|
lwsl_debug("%s: %p: %d secs, reason %d\n", __func__, wsi, secs, reason);
|
|
|
|
wsi->pending_timeout = reason;
|
|
}
|
|
|
|
void
|
|
lws_set_timeout(struct lws *wsi, enum pending_timeout reason, int secs)
|
|
{
|
|
struct lws_context_per_thread *pt = &wsi->a.context->pt[(int)wsi->tsi];
|
|
|
|
lws_context_lock(pt->context, __func__);
|
|
lws_pt_lock(pt, __func__);
|
|
lws_dll2_remove(&wsi->sul_timeout.list);
|
|
lws_pt_unlock(pt);
|
|
|
|
if (!secs)
|
|
goto bail;
|
|
|
|
if (secs == LWS_TO_KILL_SYNC) {
|
|
lwsl_debug("synchronously killing %p\n", wsi);
|
|
lws_context_unlock(pt->context);
|
|
lws_close_free_wsi(wsi, LWS_CLOSE_STATUS_NOSTATUS,
|
|
"to sync kill");
|
|
return;
|
|
}
|
|
|
|
if (secs == LWS_TO_KILL_ASYNC)
|
|
secs = 0;
|
|
|
|
// assert(!secs || !wsi->mux_stream_immortal);
|
|
if (secs && wsi->mux_stream_immortal)
|
|
lwsl_err("%s: on immortal stream %d %d\n", __func__, reason, secs);
|
|
|
|
lws_pt_lock(pt, __func__);
|
|
__lws_set_timeout(wsi, reason, secs);
|
|
lws_pt_unlock(pt);
|
|
|
|
bail:
|
|
lws_context_unlock(pt->context);
|
|
}
|
|
|
|
void
|
|
lws_set_timeout_us(struct lws *wsi, enum pending_timeout reason, lws_usec_t us)
|
|
{
|
|
struct lws_context_per_thread *pt = &wsi->a.context->pt[(int)wsi->tsi];
|
|
|
|
lws_pt_lock(pt, __func__);
|
|
lws_dll2_remove(&wsi->sul_timeout.list);
|
|
lws_pt_unlock(pt);
|
|
|
|
if (!us)
|
|
return;
|
|
|
|
lws_pt_lock(pt, __func__);
|
|
__lws_sul_insert_us(&pt->pt_sul_owner[LWSSULLI_MISS_IF_SUSPENDED],
|
|
&wsi->sul_timeout, us);
|
|
|
|
lwsl_notice("%s: %p: %llu us, reason %d\n", __func__, wsi,
|
|
(unsigned long long)us, reason);
|
|
|
|
wsi->pending_timeout = reason;
|
|
lws_pt_unlock(pt);
|
|
}
|
|
|
|
#if defined(LWS_WITH_DEPRECATED_THINGS)
|
|
|
|
/* requires context + vh lock */
|
|
|
|
int
|
|
__lws_timed_callback_remove(struct lws_vhost *vh, struct lws_timed_vh_protocol *p)
|
|
{
|
|
lws_start_foreach_llp_safe(struct lws_timed_vh_protocol **, pt,
|
|
vh->timed_vh_protocol_list, next) {
|
|
if (*pt == p) {
|
|
*pt = p->next;
|
|
lws_dll2_remove(&p->sul.list);
|
|
lws_free(p);
|
|
|
|
return 0;
|
|
}
|
|
} lws_end_foreach_llp_safe(pt);
|
|
|
|
return 1;
|
|
}
|
|
|
|
void
|
|
lws_sul_timed_callback_vh_protocol_cb(lws_sorted_usec_list_t *sul)
|
|
{
|
|
struct lws_timed_vh_protocol *tvp = lws_container_of(sul,
|
|
struct lws_timed_vh_protocol, sul);
|
|
lws_fakewsi_def_plwsa(&tvp->vhost->context->pt[0]);
|
|
|
|
lws_fakewsi_prep_plwsa_ctx(tvp->vhost->context);
|
|
plwsa->vhost = tvp->vhost; /* not a real bound wsi */
|
|
plwsa->protocol = tvp->protocol;
|
|
|
|
lwsl_debug("%s: timed cb: vh %s, protocol %s, reason %d\n", __func__,
|
|
tvp->vhost->name, tvp->protocol->name, tvp->reason);
|
|
|
|
tvp->protocol->callback((struct lws *)plwsa, tvp->reason, NULL, NULL, 0);
|
|
|
|
__lws_timed_callback_remove(tvp->vhost, tvp);
|
|
}
|
|
|
|
int
|
|
lws_timed_callback_vh_protocol_us(struct lws_vhost *vh,
|
|
const struct lws_protocols *prot, int reason,
|
|
lws_usec_t us)
|
|
{
|
|
struct lws_timed_vh_protocol *p = (struct lws_timed_vh_protocol *)
|
|
lws_malloc(sizeof(*p), "timed_vh");
|
|
|
|
if (!p)
|
|
return 1;
|
|
|
|
memset(p, 0, sizeof(*p));
|
|
|
|
p->tsi_req = lws_pthread_self_to_tsi(vh->context);
|
|
if (p->tsi_req < 0) /* not called from a service thread --> tsi 0 */
|
|
p->tsi_req = 0;
|
|
|
|
lws_context_lock(vh->context, __func__); /* context ----------------- */
|
|
|
|
p->protocol = prot;
|
|
p->reason = reason;
|
|
p->vhost = vh;
|
|
|
|
p->sul.cb = lws_sul_timed_callback_vh_protocol_cb;
|
|
/* list is always at the very top of the sul */
|
|
__lws_sul_insert(&vh->context->pt[p->tsi_req].pt_sul_owner,
|
|
(lws_sorted_usec_list_t *)&p->sul.list, us);
|
|
|
|
// lwsl_notice("%s: %s.%s %d\n", __func__, vh->name, prot->name, secs);
|
|
|
|
lws_vhost_lock(vh); /* vhost ---------------------------------------- */
|
|
p->next = vh->timed_vh_protocol_list;
|
|
vh->timed_vh_protocol_list = p;
|
|
lws_vhost_unlock(vh); /* -------------------------------------- vhost */
|
|
|
|
lws_context_unlock(vh->context); /* ------------------------- context */
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
lws_timed_callback_vh_protocol(struct lws_vhost *vh,
|
|
const struct lws_protocols *prot, int reason,
|
|
int secs)
|
|
{
|
|
return lws_timed_callback_vh_protocol_us(vh, prot, reason,
|
|
((lws_usec_t)secs) * LWS_US_PER_SEC);
|
|
}
|
|
|
|
#endif
|
|
|
|
static void
|
|
lws_validity_cb(lws_sorted_usec_list_t *sul)
|
|
{
|
|
struct lws *wsi = lws_container_of(sul, struct lws, sul_validity);
|
|
struct lws_context_per_thread *pt = &wsi->a.context->pt[(int)wsi->tsi];
|
|
const lws_retry_bo_t *rbo = wsi->retry_policy;
|
|
|
|
/* one of either the ping or hangup validity threshold was crossed */
|
|
|
|
if (wsi->validity_hup) {
|
|
lwsl_info("%s: wsi %p: validity too old\n", __func__, wsi);
|
|
__lws_close_free_wsi(wsi, LWS_CLOSE_STATUS_NOSTATUS,
|
|
"validity timeout");
|
|
return;
|
|
}
|
|
|
|
/* schedule a protocol-dependent ping */
|
|
|
|
lwsl_info("%s: wsi %p: scheduling validity check\n", __func__, wsi);
|
|
|
|
if (lws_rops_fidx(wsi->role_ops, LWS_ROPS_issue_keepalive))
|
|
lws_rops_func_fidx(wsi->role_ops, LWS_ROPS_issue_keepalive).
|
|
issue_keepalive(wsi, 0);
|
|
|
|
/*
|
|
* We arrange to come back here after the additional ping to hangup time
|
|
* and do the hangup, unless we get validated (by, eg, a PONG) and
|
|
* reset the timer
|
|
*/
|
|
|
|
assert(rbo->secs_since_valid_hangup > rbo->secs_since_valid_ping);
|
|
|
|
wsi->validity_hup = 1;
|
|
__lws_sul_insert_us(&pt->pt_sul_owner[!!wsi->conn_validity_wakesuspend],
|
|
&wsi->sul_validity,
|
|
((uint64_t)rbo->secs_since_valid_hangup -
|
|
rbo->secs_since_valid_ping) * LWS_US_PER_SEC);
|
|
}
|
|
|
|
/*
|
|
* The role calls this back to actually confirm validity on a particular wsi
|
|
* (which may not be the original wsi)
|
|
*/
|
|
|
|
void
|
|
_lws_validity_confirmed_role(struct lws *wsi)
|
|
{
|
|
struct lws_context_per_thread *pt = &wsi->a.context->pt[(int)wsi->tsi];
|
|
const lws_retry_bo_t *rbo = wsi->retry_policy;
|
|
|
|
if (!rbo || !rbo->secs_since_valid_hangup)
|
|
return;
|
|
|
|
wsi->validity_hup = 0;
|
|
wsi->sul_validity.cb = lws_validity_cb;
|
|
|
|
wsi->validity_hup = rbo->secs_since_valid_ping >=
|
|
rbo->secs_since_valid_hangup;
|
|
|
|
lwsl_info("%s: wsi %p: setting validity timer %ds (hup %d)\n",
|
|
__func__, wsi,
|
|
wsi->validity_hup ? rbo->secs_since_valid_hangup :
|
|
rbo->secs_since_valid_ping,
|
|
wsi->validity_hup);
|
|
|
|
__lws_sul_insert_us(&pt->pt_sul_owner[!!wsi->conn_validity_wakesuspend],
|
|
&wsi->sul_validity,
|
|
((uint64_t)(wsi->validity_hup ?
|
|
rbo->secs_since_valid_hangup :
|
|
rbo->secs_since_valid_ping)) * LWS_US_PER_SEC);
|
|
}
|
|
|
|
void
|
|
lws_validity_confirmed(struct lws *wsi)
|
|
{
|
|
/*
|
|
* This may be a stream inside a muxed network connection... leave it
|
|
* to the role to figure out who actually needs to understand their
|
|
* validity was confirmed.
|
|
*/
|
|
if (!wsi->h2_stream_carries_ws && /* only if not encapsulated */
|
|
wsi->role_ops &&
|
|
lws_rops_fidx(wsi->role_ops, LWS_ROPS_issue_keepalive))
|
|
lws_rops_func_fidx(wsi->role_ops, LWS_ROPS_issue_keepalive).
|
|
issue_keepalive(wsi, 1);
|
|
}
|