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

Adapt the pt sul owner list to be an array, and define two different lists, one that acts like before and is the default for existing users, and another that has the ability to cooperate with systemwide suspend to restrict the interval spent suspended so that it will wake in time for the earliest thing on this wake-suspend sul list. Clean the api a bit and add lws_sul_cancel() that only needs the sul as the argument. Add a flag for client creation info to indicate that this client connection is important enough that, eg, validity checking it to detect silently dead connections should go on the wake-suspend sul list. That flag is exposed in secure streams policy so it can be added to a streamtype with "swake_validity": true Deprecate out the old vhost timer stuff that predates sul. Add a flag LWS_WITH_DEPRECATED_THINGS in cmake so users can get it back temporarily before it will be removed in a v4.2. Adapt all remaining in-tree users of it to use explicit suls.
316 lines
7.6 KiB
C
316 lines
7.6 KiB
C
/*
|
|
* ws protocol handler plugin for "lws-minimal-client-echo"
|
|
*
|
|
* Written in 2010-2019 by Andy Green <andy@warmcat.com>
|
|
*
|
|
* This file is made available under the Creative Commons CC0 1.0
|
|
* Universal Public Domain Dedication.
|
|
*
|
|
* The protocol shows how to send and receive bulk messages over a ws connection
|
|
* that optionally may have the permessage-deflate extension negotiated on it.
|
|
*/
|
|
|
|
#if !defined (LWS_PLUGIN_STATIC)
|
|
#define LWS_DLL
|
|
#define LWS_INTERNAL
|
|
#include <libwebsockets.h>
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
#define RING_DEPTH 1024
|
|
|
|
/* one of these created for each message */
|
|
|
|
struct msg {
|
|
void *payload; /* is malloc'd */
|
|
size_t len;
|
|
char binary;
|
|
char first;
|
|
char final;
|
|
};
|
|
|
|
struct per_session_data__minimal_client_echo {
|
|
struct lws_ring *ring;
|
|
uint32_t tail;
|
|
char flow_controlled;
|
|
uint8_t completed:1;
|
|
uint8_t write_consume_pending:1;
|
|
};
|
|
|
|
struct vhd_minimal_client_echo {
|
|
struct lws_context *context;
|
|
struct lws_vhost *vhost;
|
|
struct lws *client_wsi;
|
|
|
|
lws_sorted_usec_list_t sul;
|
|
|
|
int *interrupted;
|
|
int *options;
|
|
const char **url;
|
|
const char **ads;
|
|
const char **iface;
|
|
int *port;
|
|
};
|
|
|
|
static void
|
|
sul_connect_attempt(struct lws_sorted_usec_list *sul)
|
|
{
|
|
struct vhd_minimal_client_echo *vhd =
|
|
lws_container_of(sul, struct vhd_minimal_client_echo, sul);
|
|
struct lws_client_connect_info i;
|
|
char host[128];
|
|
|
|
lws_snprintf(host, sizeof(host), "%s:%u", *vhd->ads, *vhd->port);
|
|
|
|
memset(&i, 0, sizeof(i));
|
|
|
|
i.context = vhd->context;
|
|
i.port = *vhd->port;
|
|
i.address = *vhd->ads;
|
|
i.path = *vhd->url;
|
|
i.host = host;
|
|
i.origin = host;
|
|
i.ssl_connection = 0;
|
|
if ((*vhd->options) & 2)
|
|
i.ssl_connection |= LCCSCF_USE_SSL;
|
|
i.vhost = vhd->vhost;
|
|
i.iface = *vhd->iface;
|
|
//i.protocol = ;
|
|
i.pwsi = &vhd->client_wsi;
|
|
|
|
lwsl_user("connecting to %s:%d/%s\n", i.address, i.port, i.path);
|
|
|
|
if (!lws_client_connect_via_info(&i))
|
|
lws_sul_schedule(vhd->context, 0, &vhd->sul,
|
|
sul_connect_attempt, 10 * LWS_US_PER_SEC);
|
|
}
|
|
|
|
static void
|
|
__minimal_destroy_message(void *_msg)
|
|
{
|
|
struct msg *msg = _msg;
|
|
|
|
free(msg->payload);
|
|
msg->payload = NULL;
|
|
msg->len = 0;
|
|
}
|
|
|
|
static int
|
|
callback_minimal_client_echo(struct lws *wsi, enum lws_callback_reasons reason,
|
|
void *user, void *in, size_t len)
|
|
{
|
|
struct per_session_data__minimal_client_echo *pss =
|
|
(struct per_session_data__minimal_client_echo *)user;
|
|
struct vhd_minimal_client_echo *vhd = (struct vhd_minimal_client_echo *)
|
|
lws_protocol_vh_priv_get(lws_get_vhost(wsi),
|
|
lws_get_protocol(wsi));
|
|
const struct msg *pmsg;
|
|
struct msg amsg;
|
|
int n, m, flags;
|
|
|
|
switch (reason) {
|
|
|
|
case LWS_CALLBACK_PROTOCOL_INIT:
|
|
vhd = lws_protocol_vh_priv_zalloc(lws_get_vhost(wsi),
|
|
lws_get_protocol(wsi),
|
|
sizeof(struct vhd_minimal_client_echo));
|
|
if (!vhd)
|
|
return -1;
|
|
|
|
vhd->context = lws_get_context(wsi);
|
|
vhd->vhost = lws_get_vhost(wsi);
|
|
|
|
/* get the pointer to "interrupted" we were passed in pvo */
|
|
vhd->interrupted = (int *)lws_pvo_search(
|
|
(const struct lws_protocol_vhost_options *)in,
|
|
"interrupted")->value;
|
|
vhd->port = (int *)lws_pvo_search(
|
|
(const struct lws_protocol_vhost_options *)in,
|
|
"port")->value;
|
|
vhd->options = (int *)lws_pvo_search(
|
|
(const struct lws_protocol_vhost_options *)in,
|
|
"options")->value;
|
|
vhd->ads = (const char **)lws_pvo_search(
|
|
(const struct lws_protocol_vhost_options *)in,
|
|
"ads")->value;
|
|
vhd->url = (const char **)lws_pvo_search(
|
|
(const struct lws_protocol_vhost_options *)in,
|
|
"url")->value;
|
|
vhd->iface = (const char **)lws_pvo_search(
|
|
(const struct lws_protocol_vhost_options *)in,
|
|
"iface")->value;
|
|
|
|
sul_connect_attempt(&vhd->sul);
|
|
break;
|
|
|
|
case LWS_CALLBACK_PROTOCOL_DESTROY:
|
|
lws_sul_cancel(&vhd->sul);
|
|
break;
|
|
|
|
case LWS_CALLBACK_CLIENT_ESTABLISHED:
|
|
lwsl_user("LWS_CALLBACK_CLIENT_ESTABLISHED\n");
|
|
pss->ring = lws_ring_create(sizeof(struct msg), RING_DEPTH,
|
|
__minimal_destroy_message);
|
|
if (!pss->ring)
|
|
return 1;
|
|
pss->tail = 0;
|
|
break;
|
|
|
|
case LWS_CALLBACK_CLIENT_WRITEABLE:
|
|
|
|
lwsl_user("LWS_CALLBACK_CLIENT_WRITEABLE\n");
|
|
|
|
if (pss->write_consume_pending) {
|
|
/* perform the deferred fifo consume */
|
|
lws_ring_consume_single_tail(pss->ring, &pss->tail, 1);
|
|
pss->write_consume_pending = 0;
|
|
}
|
|
pmsg = lws_ring_get_element(pss->ring, &pss->tail);
|
|
if (!pmsg) {
|
|
lwsl_user(" (nothing in ring)\n");
|
|
break;
|
|
}
|
|
|
|
flags = lws_write_ws_flags(
|
|
pmsg->binary ? LWS_WRITE_BINARY : LWS_WRITE_TEXT,
|
|
pmsg->first, pmsg->final);
|
|
|
|
/* notice we allowed for LWS_PRE in the payload already */
|
|
m = lws_write(wsi, ((unsigned char *)pmsg->payload) +
|
|
LWS_PRE, pmsg->len, flags);
|
|
if (m < (int)pmsg->len) {
|
|
lwsl_err("ERROR %d writing to ws socket\n", m);
|
|
return -1;
|
|
}
|
|
|
|
lwsl_user(" wrote %d: flags: 0x%x first: %d final %d\n",
|
|
m, flags, pmsg->first, pmsg->final);
|
|
|
|
if ((*vhd->options & 1) && pmsg && pmsg->final)
|
|
pss->completed = 1;
|
|
|
|
/*
|
|
* Workaround deferred deflate in pmd extension by only
|
|
* consuming the fifo entry when we are certain it has been
|
|
* fully deflated at the next WRITABLE callback. You only need
|
|
* this if you're using pmd.
|
|
*/
|
|
pss->write_consume_pending = 1;
|
|
lws_callback_on_writable(wsi);
|
|
|
|
if (pss->flow_controlled &&
|
|
(int)lws_ring_get_count_free_elements(pss->ring) > RING_DEPTH - 5) {
|
|
lws_rx_flow_control(wsi, 1);
|
|
pss->flow_controlled = 0;
|
|
}
|
|
|
|
break;
|
|
|
|
case LWS_CALLBACK_CLIENT_RECEIVE:
|
|
|
|
lwsl_user("LWS_CALLBACK_CLIENT_RECEIVE: %4d (rpp %5d, first %d, last %d, bin %d)\n",
|
|
(int)len, (int)lws_remaining_packet_payload(wsi),
|
|
lws_is_first_fragment(wsi),
|
|
lws_is_final_fragment(wsi),
|
|
lws_frame_is_binary(wsi));
|
|
|
|
// lwsl_hexdump_notice(in, len);
|
|
|
|
amsg.first = lws_is_first_fragment(wsi);
|
|
amsg.final = lws_is_final_fragment(wsi);
|
|
amsg.binary = lws_frame_is_binary(wsi);
|
|
n = (int)lws_ring_get_count_free_elements(pss->ring);
|
|
if (!n) {
|
|
lwsl_user("dropping!\n");
|
|
break;
|
|
}
|
|
|
|
amsg.len = len;
|
|
/* notice we over-allocate by LWS_PRE */
|
|
amsg.payload = malloc(LWS_PRE + len);
|
|
if (!amsg.payload) {
|
|
lwsl_user("OOM: dropping\n");
|
|
break;
|
|
}
|
|
|
|
memcpy((char *)amsg.payload + LWS_PRE, in, len);
|
|
if (!lws_ring_insert(pss->ring, &amsg, 1)) {
|
|
__minimal_destroy_message(&amsg);
|
|
lwsl_user("dropping!\n");
|
|
break;
|
|
}
|
|
lws_callback_on_writable(wsi);
|
|
|
|
if (!pss->flow_controlled && n < 3) {
|
|
pss->flow_controlled = 1;
|
|
lws_rx_flow_control(wsi, 0);
|
|
}
|
|
break;
|
|
|
|
case LWS_CALLBACK_CLIENT_CONNECTION_ERROR:
|
|
lwsl_err("CLIENT_CONNECTION_ERROR: %s\n",
|
|
in ? (char *)in : "(null)");
|
|
vhd->client_wsi = NULL;
|
|
if (!*vhd->interrupted)
|
|
*vhd->interrupted = 3;
|
|
lws_cancel_service(lws_get_context(wsi));
|
|
break;
|
|
|
|
case LWS_CALLBACK_CLIENT_CLOSED:
|
|
lwsl_user("LWS_CALLBACK_CLIENT_CLOSED\n");
|
|
lws_ring_destroy(pss->ring);
|
|
vhd->client_wsi = NULL;
|
|
if (!*vhd->interrupted)
|
|
*vhd->interrupted = 1 + pss->completed;
|
|
lws_cancel_service(lws_get_context(wsi));
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
#define LWS_PLUGIN_PROTOCOL_MINIMAL_CLIENT_ECHO \
|
|
{ \
|
|
"lws-minimal-client-echo", \
|
|
callback_minimal_client_echo, \
|
|
sizeof(struct per_session_data__minimal_client_echo), \
|
|
1024, \
|
|
0, NULL, 0 \
|
|
}
|
|
|
|
#if !defined (LWS_PLUGIN_STATIC)
|
|
|
|
/* boilerplate needed if we are built as a dynamic plugin */
|
|
|
|
static const struct lws_protocols protocols[] = {
|
|
LWS_PLUGIN_PROTOCOL_MINIMAL_CLIENT_ECHO
|
|
};
|
|
|
|
int
|
|
init_protocol_minimal_client_echo(struct lws_context *context,
|
|
struct lws_plugin_capability *c)
|
|
{
|
|
if (c->api_magic != LWS_PLUGIN_API_MAGIC) {
|
|
lwsl_err("Plugin API %d, library API %d", LWS_PLUGIN_API_MAGIC,
|
|
c->api_magic);
|
|
return 1;
|
|
}
|
|
|
|
c->protocols = protocols;
|
|
c->count_protocols = LWS_ARRAY_SIZE(protocols);
|
|
c->extensions = NULL;
|
|
c->count_extensions = 0;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
destroy_protocol_minimal_client_echo(struct lws_context *context)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|