mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
ss: add support for raw-skt protocol
This commit is contained in:
parent
ee9ab7c1fc
commit
e26f83bd83
7 changed files with 160 additions and 1 deletions
|
@ -1179,6 +1179,7 @@ if (LWS_WITH_NETWORK)
|
|||
lib/secure-streams/secure-streams.c
|
||||
lib/secure-streams/policy-common.c
|
||||
lib/secure-streams/system/captive-portal-detect/captive-portal-detect.c
|
||||
lib/secure-streams/protocols/ss-raw.c
|
||||
)
|
||||
if (NOT LWS_WITH_SECURE_STREAMS_STATIC_POLICY_ONLY)
|
||||
list(APPEND SOURCES
|
||||
|
|
|
@ -85,6 +85,7 @@ const struct lws_protocols *available_secstream_protocols[] = {
|
|||
#if defined(LWS_ROLE_MQTT)
|
||||
&protocol_secstream_mqtt,
|
||||
#endif
|
||||
&protocol_secstream_raw,
|
||||
NULL
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -143,6 +143,14 @@ streamtypes are
|
|||
|h2|http/2|
|
||||
|ws|http/1 Websockets|
|
||||
|mqtt|mqtt 3.1.1|
|
||||
|raw||
|
||||
|
||||
Raw protocol is a bit different than the others in that there is no protocol framing,
|
||||
whatever is received on the connection is passed to the user rx callback and whatever
|
||||
the tx callback provides is issued on to the connection. Because tcp can be
|
||||
arbitrarily fragmented by any intermediary, such streams have to be regarded as an
|
||||
ordered bytestream that may be fragmented at any byte without any meaning in terms
|
||||
of message boundaries, for that reason SOM and EOM are ignored with raw.
|
||||
|
||||
### `plugins`
|
||||
|
||||
|
|
|
@ -174,6 +174,7 @@ static const char *protonames[] = {
|
|||
"h2", /* LWSSSP_H2 */
|
||||
"ws", /* LWSSSP_WS */
|
||||
"mqtt", /* LWSSSP_MQTT */
|
||||
"raw", /* LWSSSP_RAW */
|
||||
};
|
||||
|
||||
static signed char
|
||||
|
|
|
@ -372,9 +372,11 @@ extern const struct ss_pcols ss_pcol_h1;
|
|||
extern const struct ss_pcols ss_pcol_h2;
|
||||
extern const struct ss_pcols ss_pcol_ws;
|
||||
extern const struct ss_pcols ss_pcol_mqtt;
|
||||
extern const struct ss_pcols ss_pcol_raw;
|
||||
|
||||
extern const struct lws_protocols protocol_secstream_h1;
|
||||
extern const struct lws_protocols protocol_secstream_h2;
|
||||
extern const struct lws_protocols protocol_secstream_ws;
|
||||
extern const struct lws_protocols protocol_secstream_mqtt;
|
||||
extern const struct lws_protocols protocol_secstream_raw;
|
||||
|
||||
|
|
143
lib/secure-streams/protocols/ss-raw.c
Normal file
143
lib/secure-streams/protocols/ss-raw.c
Normal file
|
@ -0,0 +1,143 @@
|
|||
/*
|
||||
* libwebsockets - small server side websockets and web server implementation
|
||||
*
|
||||
* Copyright (C) 2019 - 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.
|
||||
*
|
||||
* This is the glue that wires up raw-socket to Secure Streams.
|
||||
*/
|
||||
|
||||
#include <private-lib-core.h>
|
||||
|
||||
int
|
||||
secstream_raw(struct lws *wsi, enum lws_callback_reasons reason, void *user,
|
||||
void *in, size_t len)
|
||||
{
|
||||
lws_ss_handle_t *h = (lws_ss_handle_t *)lws_get_opaque_user_data(wsi);
|
||||
uint8_t buf[LWS_PRE + 1520], *p = &buf[LWS_PRE],
|
||||
*end = &buf[sizeof(buf) - 1];
|
||||
int f = 0;
|
||||
size_t buflen;
|
||||
|
||||
switch (reason) {
|
||||
|
||||
case LWS_CALLBACK_CLIENT_CONNECTION_ERROR:
|
||||
assert(h);
|
||||
assert(h->policy);
|
||||
lwsl_info("%s: h: %p, %s CLIENT_CONNECTION_ERROR: %s\n", __func__,
|
||||
h, h->policy->streamtype, in ? (char *)in : "(null)");
|
||||
lws_ss_event_helper(h, LWSSSCS_UNREACHABLE);
|
||||
h->wsi = NULL;
|
||||
lws_ss_backoff(h);
|
||||
break;
|
||||
|
||||
case LWS_CALLBACK_RAW_CLOSE:
|
||||
if (!h)
|
||||
break;
|
||||
lwsl_info("%s: h: %p, %s LWS_CALLBACK_CLOSED_CLIENT_HTTP\n",
|
||||
__func__, h,
|
||||
h->policy ? h->policy->streamtype : "no policy");
|
||||
h->wsi = NULL;
|
||||
if (h->policy && !(h->policy->flags & LWSSSPOLF_OPPORTUNISTIC) &&
|
||||
!h->txn_ok && !wsi->context->being_destroyed)
|
||||
lws_ss_backoff(h);
|
||||
if (lws_ss_event_helper(h, LWSSSCS_DISCONNECTED))
|
||||
lws_ss_destroy(&h);
|
||||
break;
|
||||
|
||||
case LWS_CALLBACK_RAW_CONNECTED:
|
||||
lwsl_info("%s: RAW_CONNECTED\n", __func__);
|
||||
|
||||
h->retry = 0;
|
||||
h->seqstate = SSSEQ_CONNECTED;
|
||||
lws_ss_set_timeout_us(h, LWS_SET_TIMER_USEC_CANCEL);
|
||||
lws_ss_event_helper(h, LWSSSCS_CONNECTED);
|
||||
|
||||
lws_validity_confirmed(wsi);
|
||||
break;
|
||||
|
||||
/* chunks of chunked content, with header removed */
|
||||
case LWS_CALLBACK_RAW_RX:
|
||||
if (!h)
|
||||
return 0;
|
||||
|
||||
h->info.rx(ss_to_userobj(h), (const uint8_t *)in, len, 0);
|
||||
|
||||
return 0; /* don't passthru */
|
||||
|
||||
case LWS_CALLBACK_RAW_WRITEABLE:
|
||||
lwsl_info("%s: RAW_WRITEABLE\n", __func__);
|
||||
if (!h)
|
||||
return 0;
|
||||
|
||||
buflen = lws_ptr_diff(end, p);
|
||||
if (h->info.tx(ss_to_userobj(h), h->txord++, p, &buflen, &f)) {
|
||||
/* don't want to send anything */
|
||||
lwsl_debug("%s: dont want to write\n", __func__);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* flags are ignored with raw, there are no protocol payload
|
||||
* boundaries, just an arbitrarily-fragmented bytestream
|
||||
*/
|
||||
|
||||
p += buflen;
|
||||
if (lws_write(wsi, buf + LWS_PRE, lws_ptr_diff(p, buf + LWS_PRE),
|
||||
LWS_WRITE_HTTP) != (int)lws_ptr_diff(p, buf + LWS_PRE)) {
|
||||
lwsl_err("%s: write failed\n", __func__);
|
||||
return -1;
|
||||
}
|
||||
|
||||
lws_set_timeout(wsi, 0, 0);
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return lws_callback_http_dummy(wsi, reason, user, in, len);
|
||||
}
|
||||
|
||||
static int
|
||||
secstream_connect_munge_raw(lws_ss_handle_t *h, char *buf, size_t len,
|
||||
struct lws_client_connect_info *i,
|
||||
union lws_ss_contemp *ct)
|
||||
{
|
||||
i->method = "RAW";
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
const struct lws_protocols protocol_secstream_raw = {
|
||||
"lws-secstream-raw",
|
||||
secstream_raw,
|
||||
0,
|
||||
0,
|
||||
};
|
||||
|
||||
const struct ss_pcols ss_pcol_raw = {
|
||||
"raw",
|
||||
"",
|
||||
"lws-secstream-raw",
|
||||
secstream_connect_munge_raw,
|
||||
NULL
|
||||
};
|
|
@ -45,6 +45,8 @@ static const struct ss_pcols *ss_pcols[] = {
|
|||
#else
|
||||
NULL,
|
||||
#endif
|
||||
&ss_pcol_raw, /* LWSSSP_RAW */
|
||||
NULL,
|
||||
};
|
||||
|
||||
static const char *state_names[] = {
|
||||
|
@ -301,7 +303,8 @@ lws_ss_client_connect(lws_ss_handle_t *h)
|
|||
i.protocol = ssp->protocol_name; /* lws protocol name */
|
||||
i.local_protocol_name = i.protocol;
|
||||
|
||||
ssp->munge(h, path, sizeof(path), &i, &ct);
|
||||
if (ssp->munge) /* eg, raw doesn't use; endpoint strexp already done */
|
||||
ssp->munge(h, path, sizeof(path), &i, &ct);
|
||||
|
||||
i.pwsi = &h->wsi;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue