mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
ss: split out blob into own minimal example
The --blob option requires GENCRYPTO that's not on by default, to handle the hash checks... that's going to cause a lot of confusion because it means the simplest ss example won't build by default then. Let's remove the blob support (and GENCRYPTO dependency) from the simplest example and make a new minimal-secure-streams-blob example that has --blob support and the GENCRYPTO dependency as well.
This commit is contained in:
parent
5b1a260881
commit
0517a2a629
5 changed files with 841 additions and 69 deletions
|
@ -0,0 +1,134 @@
|
|||
project(lws-minimal-secure-streams-blob C)
|
||||
cmake_minimum_required(VERSION 2.8.12)
|
||||
find_package(libwebsockets CONFIG REQUIRED)
|
||||
list(APPEND CMAKE_MODULE_PATH ${LWS_CMAKE_DIR})
|
||||
include(CheckCSourceCompiles)
|
||||
include(LwsCheckRequirements)
|
||||
|
||||
set(SAMP lws-minimal-secure-streams-blob)
|
||||
|
||||
set(requirements 1)
|
||||
require_lws_config(LWS_ROLE_H1 1 requirements)
|
||||
require_lws_config(LWS_WITHOUT_CLIENT 0 requirements)
|
||||
require_lws_config(LWS_WITH_SECURE_STREAMS 1 requirements)
|
||||
require_lws_config(LWS_WITH_SECURE_STREAMS_STATIC_POLICY_ONLY 0 requirements)
|
||||
require_lws_config(LWS_WITH_SYS_STATE 1 requirements)
|
||||
require_lws_config(LWS_WITH_GENCRYPTO 1 requirements)
|
||||
|
||||
if (requirements)
|
||||
add_executable(${SAMP} minimal-secure-streams.c)
|
||||
|
||||
find_program(VALGRIND "valgrind")
|
||||
|
||||
if (LWS_CTEST_INTERNET_AVAILABLE AND NOT WIN32)
|
||||
|
||||
#
|
||||
# When running in CI, wait for a lease on the resources
|
||||
# before starting this test, so the server does not get
|
||||
# thousands of simultaneous tls connection attempts
|
||||
#
|
||||
# sai-resource holds the lease on the resources until
|
||||
# the time given in seconds or the sai-resource instance
|
||||
# exits, whichever happens first
|
||||
#
|
||||
# If running under Sai, creates a lock test called "res_sspcmin"
|
||||
#
|
||||
|
||||
sai_resource(warmcat_conns 1 40 sspcminblob)
|
||||
|
||||
#
|
||||
# simple test not via proxy
|
||||
#
|
||||
|
||||
if (VALGRIND)
|
||||
message("testing via valgrind")
|
||||
add_test(NAME ssblob-warmcat COMMAND
|
||||
${VALGRIND} --tool=memcheck --leak-check=yes --num-callers=20
|
||||
$<TARGET_FILE:lws-minimal-secure-streams>)
|
||||
else()
|
||||
add_test(NAME ssblob-warmcat COMMAND lws-minimal-secure-streams)
|
||||
endif()
|
||||
|
||||
set_tests_properties(ssblob-warmcat
|
||||
PROPERTIES
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/minimal-examples/secure-streams/minimal-secure-streams
|
||||
TIMEOUT 20)
|
||||
if (DEFINED ENV{SAI_OVN})
|
||||
set_tests_properties(ssblob-warmcat PROPERTIES FIXTURES_REQUIRED "res_sspcmin")
|
||||
endif()
|
||||
|
||||
if (HAS_LWS_WITH_SECURE_STREAMS_PROXY_API OR LWS_WITH_SECURE_STREAMS_PROXY_API)
|
||||
|
||||
#
|
||||
# Define test dep to bring up and take down the test
|
||||
# proxy
|
||||
#
|
||||
|
||||
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
||||
# uds abstract namespace for linux
|
||||
set(CTEST_SOCKET_PATH "@ctest-ssp-$ENV{SAI_PROJECT}-$ENV{SAI_OVN}")
|
||||
else()
|
||||
# filesystem socket for others
|
||||
set(CTEST_SOCKET_PATH "/tmp/ctest-ssp-$ENV{SAI_PROJECT}-$ENV{SAI_OVN}")
|
||||
endif()
|
||||
add_test(NAME st_ssblobproxy COMMAND
|
||||
${CMAKE_SOURCE_DIR}/scripts/ctest-background.sh
|
||||
ssblobproxy $<TARGET_FILE:lws-minimal-secure-streams-proxy>
|
||||
-i ${CTEST_SOCKET_PATH} )
|
||||
set_tests_properties(st_ssblobproxy PROPERTIES WORKING_DIRECTORY . FIXTURES_SETUP ssblobproxy TIMEOUT 800)
|
||||
|
||||
add_test(NAME ki_ssblobproxy COMMAND
|
||||
${CMAKE_SOURCE_DIR}/scripts/ctest-background-kill.sh
|
||||
ssblobproxy $<TARGET_FILE:lws-minimal-secure-streams-proxy>
|
||||
-i ${CTEST_SOCKET_PATH})
|
||||
set_tests_properties(ki_ssblobproxy PROPERTIES FIXTURES_CLEANUP ssblobproxy)
|
||||
|
||||
#
|
||||
# the client part that will connect to the proxy
|
||||
#
|
||||
|
||||
if (VALGRIND)
|
||||
message("testing via valgrind")
|
||||
add_test(NAME sspcblob-minimal COMMAND
|
||||
${VALGRIND} --tool=memcheck --leak-check=yes --num-callers=20
|
||||
$<TARGET_FILE:lws-minimal-secure-streams-client> -i +${CTEST_SOCKET_PATH})
|
||||
else()
|
||||
add_test(NAME sspcblob-minimal COMMAND lws-minimal-secure-streams-client -i +${CTEST_SOCKET_PATH})
|
||||
endif()
|
||||
|
||||
set(fixlist "ssblobproxy")
|
||||
if (DEFINED ENV{SAI_OVN})
|
||||
list(APPEND fixlist "res_ssblobproxy")
|
||||
endif()
|
||||
|
||||
set_tests_properties(sspcblob-minimal PROPERTIES
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/minimal-examples/secure-streams/minimal-secure-streams
|
||||
FIXTURES_REQUIRED "${fixlist}"
|
||||
TIMEOUT 40)
|
||||
|
||||
endif()
|
||||
|
||||
endif()
|
||||
|
||||
if (websockets_shared)
|
||||
target_link_libraries(${SAMP} websockets_shared ${LIBWEBSOCKETS_DEP_LIBS})
|
||||
add_dependencies(${SAMP} websockets_shared)
|
||||
else()
|
||||
target_link_libraries(${SAMP} websockets ${LIBWEBSOCKETS_DEP_LIBS})
|
||||
endif()
|
||||
|
||||
CHECK_C_SOURCE_COMPILES("#include <libwebsockets.h>\nint main(void) {\ni#if defined(LWS_WITH_SECURE_STREAMS_PROXY_API)\n return 0;\n #else\n fail\n #endif\n return 0;\n}\n" HAS_LWS_WITH_SECURE_STREAMS_PROXY_API)
|
||||
|
||||
if (HAS_LWS_WITH_SECURE_STREAMS_PROXY_API OR LWS_WITH_SECURE_STREAMS_PROXY_API)
|
||||
add_compile_options(-DLWS_SS_USE_SSPC)
|
||||
|
||||
add_executable(${SAMP}-client minimal-secure-streams.c)
|
||||
if (websockets_shared)
|
||||
target_link_libraries(${SAMP}-client websockets_shared ${LIBWEBSOCKETS_DEP_LIBS})
|
||||
add_dependencies(${SAMP}-client websockets_shared)
|
||||
else()
|
||||
target_link_libraries(${SAMP}-client websockets ${LIBWEBSOCKETS_DEP_LIBS})
|
||||
endif()
|
||||
endif()
|
||||
|
||||
endif()
|
|
@ -0,0 +1,67 @@
|
|||
# lws minimal secure streams
|
||||
|
||||
The application goes to https://warmcat.com and reads index.html there.
|
||||
|
||||
It does it using Secure Streams... the main code in minimal-secure-streams.c
|
||||
just sets up the context and opens a secure stream of type "mintest".
|
||||
|
||||
The handler for state changes and payloads for "mintest" is in ss-myss.c
|
||||
|
||||
The information about how a "mintest" stream should connect and the
|
||||
protocol it uses is kept separated in policy-database.c
|
||||
|
||||
## build
|
||||
|
||||
```
|
||||
$ cmake . && make
|
||||
```
|
||||
|
||||
## usage
|
||||
|
||||
Commandline option|Meaning
|
||||
---|---
|
||||
-d <loglevel>|Debug verbosity in decimal, eg, -d15
|
||||
-f| Force connecting to the wrong endpoint to check backoff retry flow
|
||||
-p| Run as proxy server for clients to connect to over unix domain socket
|
||||
--force-portal|Force the SS Captive Portal Detection to feel it's behind a portal
|
||||
--force-no-internet|Force the SS Captive Portal Detection to feel it can't reach the internet
|
||||
--blob|Download a 50MiB blob from warmact.com, using flow control at the proxy
|
||||
|
||||
```
|
||||
[2019/08/12 07:16:11:0045] USR: LWS minimal secure streams [-d<verbosity>] [-f]
|
||||
[2019/08/12 07:16:12:6102] USR: myss_state: LWSSSCS_CREATING, ord 0x0
|
||||
[2019/08/12 07:16:12:6107] USR: myss_state: LWSSSCS_POLL, ord 0x0
|
||||
[2019/08/12 07:16:12:6117] N: lws_ss_client_connect: connecting h1get warmcat.com /
|
||||
[2019/08/12 07:16:12:6118] USR: myss_state: LWSSSCS_CONNECTING, ord 0x0
|
||||
[2019/08/12 07:16:13:4171] USR: myss_state: LWSSSCS_CONNECTED, ord 0x0
|
||||
[2019/08/12 07:16:13:4222] USR: myss_rx: len 1024, flags: 1
|
||||
[2019/08/12 07:16:13:4243] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4244] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4244] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4245] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4246] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4247] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4252] USR: myss_rx: len 1015, flags: 0
|
||||
[2019/08/12 07:16:13:4264] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4265] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4266] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4267] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4268] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4268] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4269] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4270] USR: myss_rx: len 1015, flags: 0
|
||||
[2019/08/12 07:16:13:4278] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4279] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4280] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4281] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4282] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4283] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4283] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4284] USR: myss_rx: len 1015, flags: 0
|
||||
[2019/08/12 07:16:13:4287] USR: myss_rx: len 1024, flags: 0
|
||||
[2019/08/12 07:16:13:4288] USR: myss_rx: len 947, flags: 0
|
||||
[2019/08/12 07:16:13:4293] USR: myss_rx: len 0, flags: 2
|
||||
[2019/08/12 07:16:13:4399] USR: myss_state: LWSSSCS_DISCONNECTED, ord 0x0
|
||||
[2019/08/12 07:16:13:4761] USR: myss_state: LWSSSCS_DESTROYING, ord 0x0
|
||||
[2019/08/12 07:16:13:4781] USR: Completed: OK
|
||||
```
|
|
@ -0,0 +1,632 @@
|
|||
/*
|
||||
* lws-minimal-secure-streams
|
||||
*
|
||||
* Written in 2010-2020 by Andy Green <andy@warmcat.com>
|
||||
*
|
||||
* This file is made available under the Creative Commons CC0 1.0
|
||||
* Universal Public Domain Dedication.
|
||||
*
|
||||
*
|
||||
* This demonstrates a minimal http client using secure streams api.
|
||||
*
|
||||
* It visits https://warmcat.com/ and receives the html page there.
|
||||
*
|
||||
* This example is built two different ways from the same source... one includes
|
||||
* the policy everything needed to fulfil the stream directly. The other -client
|
||||
* variant has no policy itself and some other minor init changes, and connects
|
||||
* to the -proxy example to actually get the connection done.
|
||||
*
|
||||
* In the -client build case, the example does not even init the tls libraries
|
||||
* since the proxy part will take care of all that.
|
||||
*/
|
||||
|
||||
#include <libwebsockets.h>
|
||||
#include <string.h>
|
||||
#include <signal.h>
|
||||
|
||||
// #define FORCE_OS_TRUST_STORE
|
||||
|
||||
/*
|
||||
* uncomment to force network traffic through 127.0.0.1:1080
|
||||
*
|
||||
* On your local machine, you can run a SOCKS5 proxy like this
|
||||
*
|
||||
* $ ssh -N -D 0.0.0.0:1080 localhost -v
|
||||
*
|
||||
* If enabled, this also fetches a remote policy that also
|
||||
* specifies that all traffic should go through the remote
|
||||
* proxy.
|
||||
*/
|
||||
// #define VIA_LOCALHOST_SOCKS
|
||||
|
||||
static int interrupted, bad = 1, force_cpd_fail_portal,
|
||||
force_cpd_fail_no_internet, test_respmap, test_blob, test_ots;
|
||||
static unsigned int timeout_ms = 3000;
|
||||
static lws_state_notify_link_t nl;
|
||||
|
||||
/*
|
||||
* If the -proxy app is fulfilling our connection, then we don't need to have
|
||||
* the policy in the client.
|
||||
*
|
||||
* When we build with LWS_SS_USE_SSPC, the apis hook up to a proxy process over
|
||||
* a Unix Domain Socket. To test that, you need to separately run the
|
||||
* ./lws-minimal-secure-streams-proxy test app on the same machine.
|
||||
*/
|
||||
|
||||
#if !defined(LWS_SS_USE_SSPC)
|
||||
static const char * const default_ss_policy =
|
||||
"{"
|
||||
"\"release\":" "\"01234567\","
|
||||
"\"product\":" "\"myproduct\","
|
||||
"\"schema-version\":" "1,"
|
||||
#if defined(VIA_LOCALHOST_SOCKS)
|
||||
"\"via-socks5\":" "\"127.0.0.1:1080\","
|
||||
#endif
|
||||
|
||||
"\"retry\": [" /* named backoff / retry strategies */
|
||||
"{\"default\": {"
|
||||
"\"backoff\": [" "1000,"
|
||||
"2000,"
|
||||
"3000,"
|
||||
"5000,"
|
||||
"10000"
|
||||
"],"
|
||||
"\"conceal\":" "5,"
|
||||
"\"jitterpc\":" "20,"
|
||||
"\"svalidping\":" "30,"
|
||||
"\"svalidhup\":" "35"
|
||||
"}}"
|
||||
"],"
|
||||
"\"certs\": [" /* named individual certificates in BASE64 DER */
|
||||
/*
|
||||
* Let's Encrypt certs for warmcat.com / libwebsockets.org
|
||||
*
|
||||
* We fetch the real policy from there using SS and switch to
|
||||
* using that.
|
||||
*/
|
||||
#if !defined(FORCE_OS_TRUST_STORE)
|
||||
"{\"dst_root_x3\": \""
|
||||
"MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/"
|
||||
"MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT"
|
||||
"DkRTVCBSb290IENBIFgzMB4XDTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVow"
|
||||
"PzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMRcwFQYDVQQD"
|
||||
"Ew5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB"
|
||||
"AN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmTrE4O"
|
||||
"rz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEq"
|
||||
"OLl5CjH9UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9b"
|
||||
"xiqKqy69cK3FCxolkHRyxXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw"
|
||||
"7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40dutolucbY38EVAjqr2m7xPi71XAicPNaD"
|
||||
"aeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV"
|
||||
"HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQMA0GCSqG"
|
||||
"SIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69"
|
||||
"ikugdB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXr"
|
||||
"AvHRAosZy5Q6XkjEGB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZz"
|
||||
"R8srzJmwN0jP41ZL9c8PDHIyh8bwRLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5"
|
||||
"JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubSfZGL+T0yjWW06XyxV3bqxbYo"
|
||||
"Ob8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ"
|
||||
"\"}"
|
||||
#endif
|
||||
"],"
|
||||
"\"trust_stores\": [" /* named cert chains */
|
||||
#if !defined(FORCE_OS_TRUST_STORE)
|
||||
"{"
|
||||
"\"name\": \"le_via_dst\","
|
||||
"\"stack\": ["
|
||||
"\"dst_root_x3\""
|
||||
"]"
|
||||
"}"
|
||||
#endif
|
||||
"],"
|
||||
"\"s\": ["
|
||||
/*
|
||||
* "fetch_policy" decides from where the real policy
|
||||
* will be fetched, if present. Otherwise the initial
|
||||
* policy is treated as the whole, hardcoded, policy.
|
||||
*/
|
||||
"{\"fetch_policy\": {"
|
||||
"\"endpoint\":" "\"warmcat.com\","
|
||||
"\"port\":" "443,"
|
||||
"\"protocol\":" "\"h1\","
|
||||
"\"http_method\":" "\"GET\","
|
||||
#if defined(VIA_LOCALHOST_SOCKS)
|
||||
"\"http_url\":" "\"policy/minimal-proxy-socks.json\","
|
||||
#else
|
||||
"\"http_url\":" "\"policy/minimal-proxy-v4.2-v2.json\","
|
||||
#endif
|
||||
"\"tls\":" "true,"
|
||||
"\"opportunistic\":" "true,"
|
||||
#if !defined(FORCE_OS_TRUST_STORE)
|
||||
"\"tls_trust_store\":" "\"le_via_dst\","
|
||||
#endif
|
||||
"\"retry\":" "\"default\""
|
||||
"}},{"
|
||||
/*
|
||||
* "captive_portal_detect" describes
|
||||
* what to do in order to check if the path to
|
||||
* the Internet is being interrupted by a
|
||||
* captive portal. If there's a larger policy
|
||||
* fetched from elsewhere, it should also include
|
||||
* this since it needs to be done at least after
|
||||
* every DHCP acquisition
|
||||
*/
|
||||
"\"captive_portal_detect\": {"
|
||||
"\"endpoint\": \"connectivitycheck.android.com\","
|
||||
"\"http_url\": \"generate_204\","
|
||||
"\"port\": 80,"
|
||||
"\"protocol\": \"h1\","
|
||||
"\"http_method\": \"GET\","
|
||||
"\"opportunistic\": true,"
|
||||
"\"http_expect\": 204,"
|
||||
"\"http_fail_redirect\": true"
|
||||
"}}"
|
||||
"]}"
|
||||
;
|
||||
|
||||
#endif
|
||||
|
||||
typedef struct myss {
|
||||
struct lws_ss_handle *ss;
|
||||
void *opaque_data;
|
||||
/* ... application specific state ... */
|
||||
lws_sorted_usec_list_t sul;
|
||||
size_t amt;
|
||||
|
||||
struct lws_genhash_ctx hash_ctx;
|
||||
} myss_t;
|
||||
|
||||
#if !defined(LWS_SS_USE_SSPC)
|
||||
|
||||
static const char *canned_root_token_payload =
|
||||
"grant_type=refresh_token"
|
||||
"&refresh_token=Atzr|IwEBIJedGXjDqsU_vMxykqOMg"
|
||||
"SHfYe3CPcedueWEMWSDMaDnEmiW8RlR1Kns7Cb4B-TOSnqp7ifVsY4BMY2B8tpHfO39XP"
|
||||
"zfu9HapGjTR458IyHX44FE71pWJkGZ79uVBpljP4sazJuk8XS3Oe_yLnm_DIO6fU1nU3Y"
|
||||
"0flYmsOiOAQE_gRk_pdlmEtHnpMA-9rLw3mkY5L89Ty9kUygBsiFaYatouROhbsTn8-jW"
|
||||
"k1zZLUDpT6ICtBXSnrCIg0pUbZevPFhTwdXd6eX-u4rq0W-XaDvPWFO7au-iPb4Zk5eZE"
|
||||
"iX6sissYrtNmuEXc2uHu7MnQO1hHCaTdIO2CANVumf-PHSD8xseamyh04sLV5JgFzY45S"
|
||||
"KvKMajiUZuLkMokOx86rjC2Hdkx5DO7G-dbG1ufBDG-N79pFMSs7Ck5pc283IdLoJkCQc"
|
||||
"AGvTX8o8I29QqkcGou-9TKhOJmpX8As94T61ok0UqqEKPJ7RhfQHHYdCtsdwxgvfVr9qI"
|
||||
"xL_hDCcTho8opCVX-6QhJHl6SQFlTw13"
|
||||
"&client_id="
|
||||
"amzn1.application-oa2-client.4823334c434b4190a2b5a42c07938a2d";
|
||||
|
||||
#endif
|
||||
|
||||
/* secure streams payload interface */
|
||||
|
||||
static const uint8_t expected_blob_hash[] = {
|
||||
0xed, 0x57, 0x20, 0xc1, 0x68, 0x30, 0x81, 0x0e,
|
||||
0x58, 0x29, 0xdf, 0xb9, 0xb6, 0x6c, 0x96, 0xb2,
|
||||
0xe2, 0x4e, 0xfc, 0x4f, 0x93, 0xaa, 0x5e, 0x38,
|
||||
0xc7, 0xff, 0x41, 0x50, 0xd3, 0x1c, 0xfb, 0xbf
|
||||
};
|
||||
|
||||
static lws_ss_state_return_t
|
||||
myss_rx(void *userobj, const uint8_t *buf, size_t len, int flags)
|
||||
{
|
||||
myss_t *m = (myss_t *)userobj;
|
||||
const char *md_srv = "not set", *md_test = "not set";
|
||||
size_t md_srv_len = 7, md_test_len = 7;
|
||||
|
||||
if (flags & LWSSS_FLAG_PERF_JSON)
|
||||
return LWSSSSRET_OK;
|
||||
|
||||
if (test_blob) {
|
||||
|
||||
if (flags & LWSSS_FLAG_SOM) {
|
||||
if (lws_genhash_init(&m->hash_ctx, LWS_GENHASH_TYPE_SHA256))
|
||||
lwsl_err("%s: hash init failed\n", __func__);
|
||||
m->amt = 0;
|
||||
}
|
||||
|
||||
if (lws_genhash_update(&m->hash_ctx, buf, len))
|
||||
lwsl_err("%s: hash failed\n", __func__);
|
||||
|
||||
if ((m->amt + len) / 102400 != (m->amt / 102400)) {
|
||||
|
||||
lwsl_user("%s: blob test: rx %uKiB\n", __func__,
|
||||
(unsigned int)((m->amt + len) / 1024));
|
||||
/*
|
||||
* Let's make it hard for client to keep up with onward
|
||||
* server, delay 50ms after every 100K received, so we
|
||||
* are forcing the flow control action at the proxy
|
||||
*/
|
||||
usleep(50000);
|
||||
}
|
||||
|
||||
m->amt += len;
|
||||
|
||||
if (flags & LWSSS_FLAG_EOM) {
|
||||
uint8_t digest[32];
|
||||
lws_genhash_destroy(&m->hash_ctx, digest);
|
||||
|
||||
if (!memcmp(expected_blob_hash, digest, 32)) {
|
||||
lwsl_user("%s: SHA256 match\n", __func__);
|
||||
bad = 0;
|
||||
}
|
||||
|
||||
interrupted = 1;
|
||||
}
|
||||
|
||||
return LWSSSSRET_OK;
|
||||
}
|
||||
|
||||
lws_ss_get_metadata(m->ss, "srv", (const void **)&md_srv, &md_srv_len);
|
||||
lws_ss_get_metadata(m->ss, "test", (const void **)&md_test, &md_test_len);
|
||||
|
||||
lwsl_user("%s: len %d, flags: %d, srv: %.*s, test: %.*s\n", __func__,
|
||||
(int)len, flags, (int)md_srv_len, md_srv,
|
||||
(int)md_test_len, md_test);
|
||||
lwsl_hexdump_info(buf, len);
|
||||
|
||||
/*
|
||||
* If we received the whole message, for our example it means
|
||||
* we are done.
|
||||
*/
|
||||
if (flags & LWSSS_FLAG_EOM) {
|
||||
bad = 0;
|
||||
interrupted = 1;
|
||||
}
|
||||
|
||||
return LWSSSSRET_OK;
|
||||
}
|
||||
|
||||
static lws_ss_state_return_t
|
||||
myss_tx(void *userobj, lws_ss_tx_ordinal_t ord, uint8_t *buf, size_t *len,
|
||||
int *flags)
|
||||
{
|
||||
//myss_t *m = (myss_t *)userobj;
|
||||
|
||||
/* in this example, we don't send stuff */
|
||||
|
||||
return LWSSSSRET_TX_DONT_SEND;
|
||||
}
|
||||
|
||||
static lws_ss_state_return_t
|
||||
myss_state(void *userobj, void *sh, lws_ss_constate_t state,
|
||||
lws_ss_tx_ordinal_t ack)
|
||||
{
|
||||
myss_t *m = (myss_t *)userobj;
|
||||
|
||||
lwsl_user("%s: %s (%d), ord 0x%x\n", __func__,
|
||||
lws_ss_state_name((int)state), state, (unsigned int)ack);
|
||||
|
||||
switch (state) {
|
||||
case LWSSSCS_CREATING:
|
||||
return lws_ss_client_connect(m->ss);
|
||||
|
||||
case LWSSSCS_CONNECTING:
|
||||
lws_ss_start_timeout(m->ss, timeout_ms);
|
||||
|
||||
if (!test_blob) {
|
||||
if (lws_ss_set_metadata(m->ss, "uptag", "myuptag123", 10))
|
||||
/* can fail, eg due to OOM, retry later if so */
|
||||
return LWSSSSRET_DISCONNECT_ME;
|
||||
|
||||
if (lws_ss_set_metadata(m->ss, "ctype", "myctype", 7))
|
||||
/* can fail, eg due to OOM, retry later if so */
|
||||
return LWSSSSRET_DISCONNECT_ME;
|
||||
}
|
||||
break;
|
||||
|
||||
case LWSSSCS_ALL_RETRIES_FAILED:
|
||||
/* if we're out of retries, we want to close the app and FAIL */
|
||||
interrupted = 1;
|
||||
bad = 2;
|
||||
break;
|
||||
|
||||
case LWSSSCS_QOS_ACK_REMOTE:
|
||||
lwsl_notice("%s: LWSSSCS_QOS_ACK_REMOTE\n", __func__);
|
||||
break;
|
||||
|
||||
case LWSSSCS_TIMEOUT:
|
||||
lwsl_notice("%s: LWSSSCS_TIMEOUT\n", __func__);
|
||||
/* if we're out of time */
|
||||
interrupted = 1;
|
||||
bad = 3;
|
||||
break;
|
||||
|
||||
case LWSSSCS_USER_BASE:
|
||||
lwsl_notice("%s: LWSSSCS_USER_BASE\n", __func__);
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return LWSSSSRET_OK;
|
||||
}
|
||||
|
||||
static int
|
||||
app_system_state_nf(lws_state_manager_t *mgr, lws_state_notify_link_t *link,
|
||||
int current, int target)
|
||||
{
|
||||
struct lws_context *context = lws_system_context_from_system_mgr(mgr);
|
||||
#if !defined(LWS_SS_USE_SSPC)
|
||||
|
||||
lws_system_blob_t *ab = lws_system_get_blob(context,
|
||||
LWS_SYSBLOB_TYPE_AUTH, 1 /* AUTH_IDX_ROOT */);
|
||||
size_t size;
|
||||
#endif
|
||||
|
||||
/*
|
||||
* For the things we care about, let's notice if we are trying to get
|
||||
* past them when we haven't solved them yet, and make the system
|
||||
* state wait while we trigger the dependent action.
|
||||
*/
|
||||
switch (target) {
|
||||
|
||||
#if !defined(LWS_SS_USE_SSPC)
|
||||
|
||||
/*
|
||||
* The proxy takes responsibility for this stuff if we get things
|
||||
* done through that
|
||||
*/
|
||||
|
||||
case LWS_SYSTATE_INITIALIZED: /* overlay on the hardcoded policy */
|
||||
case LWS_SYSTATE_POLICY_VALID: /* overlay on the loaded policy */
|
||||
|
||||
if (target != current)
|
||||
break;
|
||||
|
||||
if (force_cpd_fail_portal)
|
||||
|
||||
/* this makes it look like we're behind a captive portal
|
||||
* because the overriden address does a redirect */
|
||||
|
||||
lws_ss_policy_overlay(context,
|
||||
"{\"s\": [{\"captive_portal_detect\": {"
|
||||
"\"endpoint\": \"google.com\","
|
||||
"\"http_url\": \"/\","
|
||||
"\"port\": 80"
|
||||
"}}]}");
|
||||
|
||||
if (force_cpd_fail_no_internet)
|
||||
|
||||
/* this looks like no internet, because the overridden
|
||||
* port doesn't have anything that will connect to us */
|
||||
|
||||
lws_ss_policy_overlay(context,
|
||||
"{\"s\": [{\"captive_portal_detect\": {"
|
||||
"\"endpoint\": \"warmcat.com\","
|
||||
"\"http_url\": \"/\","
|
||||
"\"port\": 999"
|
||||
"}}]}");
|
||||
break;
|
||||
|
||||
case LWS_SYSTATE_REGISTERED:
|
||||
size = lws_system_blob_get_size(ab);
|
||||
if (size)
|
||||
break;
|
||||
|
||||
/* let's register our canned root token so auth can use it */
|
||||
lws_system_blob_direct_set(ab,
|
||||
(const uint8_t *)canned_root_token_payload,
|
||||
strlen(canned_root_token_payload));
|
||||
break;
|
||||
|
||||
#endif
|
||||
|
||||
case LWS_SYSTATE_OPERATIONAL:
|
||||
if (current == LWS_SYSTATE_OPERATIONAL) {
|
||||
lws_ss_info_t ssi;
|
||||
|
||||
/* We're making an outgoing secure stream ourselves */
|
||||
|
||||
memset(&ssi, 0, sizeof(ssi));
|
||||
ssi.handle_offset = offsetof(myss_t, ss);
|
||||
ssi.opaque_user_data_offset = offsetof(myss_t,
|
||||
opaque_data);
|
||||
ssi.rx = myss_rx;
|
||||
ssi.tx = myss_tx;
|
||||
ssi.state = myss_state;
|
||||
ssi.user_alloc = sizeof(myss_t);
|
||||
ssi.streamtype = test_ots ? "mintest-ots" :
|
||||
(test_blob ? "bulkproxflow" :
|
||||
(test_respmap ? "respmap" : "mintest"));
|
||||
|
||||
if (lws_ss_create(context, 0, &ssi, NULL, NULL,
|
||||
NULL, NULL)) {
|
||||
lwsl_err("%s: failed to create secure stream\n",
|
||||
__func__);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static lws_state_notify_link_t * const app_notifier_list[] = {
|
||||
&nl, NULL
|
||||
};
|
||||
|
||||
#if defined(LWS_WITH_SYS_METRICS)
|
||||
|
||||
static int
|
||||
my_metric_report(lws_metric_pub_t *mp)
|
||||
{
|
||||
lws_metric_bucket_t *sub = mp->u.hist.head;
|
||||
char buf[192];
|
||||
|
||||
do {
|
||||
if (lws_metrics_format(mp, &sub, buf, sizeof(buf)))
|
||||
lwsl_user("%s: %s\n", __func__, buf);
|
||||
} while ((mp->flags & LWSMTFL_REPORT_HIST) && sub);
|
||||
|
||||
/* 0 = leave metric to accumulate, 1 = reset the metric */
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static const lws_system_ops_t system_ops = {
|
||||
.metric_report = my_metric_report,
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
static void
|
||||
sigint_handler(int sig)
|
||||
{
|
||||
interrupted = 1;
|
||||
}
|
||||
|
||||
int main(int argc, const char **argv)
|
||||
{
|
||||
struct lws_context_creation_info info;
|
||||
struct lws_context *context;
|
||||
int n = 0, expected = 0;
|
||||
const char *p;
|
||||
|
||||
signal(SIGINT, sigint_handler);
|
||||
|
||||
memset(&info, 0, sizeof info);
|
||||
lws_cmdline_option_handle_builtin(argc, argv, &info);
|
||||
|
||||
lwsl_user("LWS secure streams test client [-d<verb>]\n");
|
||||
|
||||
/* these options are mutually exclusive if given */
|
||||
|
||||
if (lws_cmdline_option(argc, argv, "--force-portal"))
|
||||
force_cpd_fail_portal = 1;
|
||||
|
||||
if (lws_cmdline_option(argc, argv, "--force-no-internet"))
|
||||
force_cpd_fail_no_internet = 1;
|
||||
|
||||
if (lws_cmdline_option(argc, argv, "--respmap"))
|
||||
test_respmap = 1;
|
||||
|
||||
if (lws_cmdline_option(argc, argv, "--ots"))
|
||||
/*
|
||||
* Use a streamtype that relies on the OS trust store for
|
||||
* validation
|
||||
*/
|
||||
test_ots = 1;
|
||||
|
||||
if ((p = lws_cmdline_option(argc, argv, "--timeout_ms")))
|
||||
timeout_ms = (unsigned int)atoi(p);
|
||||
|
||||
if (lws_cmdline_option(argc, argv, "--blob")) {
|
||||
test_blob = 1;
|
||||
if (timeout_ms == 3000)
|
||||
/*
|
||||
* Don't use default 3s, we're going to be a lot
|
||||
* slower
|
||||
*/
|
||||
timeout_ms = 60000;
|
||||
}
|
||||
|
||||
info.fd_limit_per_thread = 1 + 6 + 1;
|
||||
info.port = CONTEXT_PORT_NO_LISTEN;
|
||||
#if defined(LWS_SS_USE_SSPC)
|
||||
info.protocols = lws_sspc_protocols;
|
||||
{
|
||||
const char *p;
|
||||
|
||||
/* connect to ssproxy via UDS by default, else via
|
||||
* tcp connection to this port */
|
||||
if ((p = lws_cmdline_option(argc, argv, "-p")))
|
||||
info.ss_proxy_port = (uint16_t)atoi(p);
|
||||
|
||||
/* UDS "proxy.ss.lws" in abstract namespace, else this socket
|
||||
* path; when -p given this can specify the network interface
|
||||
* to bind to */
|
||||
if ((p = lws_cmdline_option(argc, argv, "-i")))
|
||||
info.ss_proxy_bind = p;
|
||||
|
||||
/* if -p given, -a specifies the proxy address to connect to */
|
||||
if ((p = lws_cmdline_option(argc, argv, "-a")))
|
||||
info.ss_proxy_address = p;
|
||||
}
|
||||
#else
|
||||
info.pss_policies_json = default_ss_policy;
|
||||
info.options = LWS_SERVER_OPTION_EXPLICIT_VHOSTS |
|
||||
LWS_SERVER_OPTION_H2_JUST_FIX_WINDOW_UPDATE_OVERFLOW |
|
||||
LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT;
|
||||
#endif
|
||||
|
||||
#if defined(LWS_WITH_MBEDTLS)
|
||||
|
||||
/* uncomment to force mbedtls to load a system trust store like
|
||||
* openssl does
|
||||
*
|
||||
* info.mbedtls_client_preload_filepath =
|
||||
* "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem";
|
||||
*/
|
||||
#endif
|
||||
|
||||
/* integrate us with lws system state management when context created */
|
||||
|
||||
nl.name = "app";
|
||||
nl.notify_cb = app_system_state_nf;
|
||||
info.register_notifier_list = app_notifier_list;
|
||||
|
||||
|
||||
#if defined(LWS_WITH_SYS_METRICS)
|
||||
info.system_ops = &system_ops;
|
||||
info.metrics_prefix = "ssmex";
|
||||
#endif
|
||||
|
||||
/* create the context */
|
||||
|
||||
context = lws_create_context(&info);
|
||||
if (!context) {
|
||||
lwsl_err("lws init failed\n");
|
||||
goto bail;
|
||||
}
|
||||
|
||||
#if !defined(LWS_SS_USE_SSPC)
|
||||
/*
|
||||
* If we're being a proxied client, the proxy does all this
|
||||
*/
|
||||
|
||||
/*
|
||||
* Set the related lws_system blobs
|
||||
*
|
||||
* ...direct_set() sets a pointer, so the thing pointed to has to have
|
||||
* a suitable lifetime, eg, something that already exists on the heap or
|
||||
* a const string in .rodata like this
|
||||
*/
|
||||
|
||||
lws_system_blob_direct_set(lws_system_get_blob(context,
|
||||
LWS_SYSBLOB_TYPE_DEVICE_SERIAL, 0),
|
||||
(const uint8_t *)"SN12345678", 10);
|
||||
lws_system_blob_direct_set(lws_system_get_blob(context,
|
||||
LWS_SYSBLOB_TYPE_DEVICE_FW_VERSION, 0),
|
||||
(const uint8_t *)"v0.01", 5);
|
||||
|
||||
/*
|
||||
* ..._heap_append() appends to a buflist kind of arrangement on heap,
|
||||
* just one block is fine, otherwise it will concatenate the fragments
|
||||
* in the order they were appended (and take care of freeing them at
|
||||
* context destroy time). ..._heap_empty() is also available to remove
|
||||
* everything that was already allocated.
|
||||
*
|
||||
* Here we use _heap_append() just so it's tested as well as direct set.
|
||||
*/
|
||||
|
||||
lws_system_blob_heap_append(lws_system_get_blob(context,
|
||||
LWS_SYSBLOB_TYPE_DEVICE_TYPE, 0),
|
||||
(const uint8_t *)"spacerocket", 11);
|
||||
#endif
|
||||
|
||||
/* the event loop */
|
||||
|
||||
while (n >= 0 && !interrupted)
|
||||
n = lws_service(context, 0);
|
||||
|
||||
lws_context_destroy(context);
|
||||
|
||||
bail:
|
||||
if ((p = lws_cmdline_option(argc, argv, "--expected-exit")))
|
||||
expected = atoi(p);
|
||||
|
||||
if (bad == expected) {
|
||||
lwsl_user("Completed: OK (seen expected %d)\n", expected);
|
||||
return 0;
|
||||
} else
|
||||
lwsl_err("Completed: failed: exit %d, expected %d\n", bad, expected);
|
||||
|
||||
return 1;
|
||||
}
|
|
@ -13,7 +13,6 @@ require_lws_config(LWS_WITHOUT_CLIENT 0 requirements)
|
|||
require_lws_config(LWS_WITH_SECURE_STREAMS 1 requirements)
|
||||
require_lws_config(LWS_WITH_SECURE_STREAMS_STATIC_POLICY_ONLY 0 requirements)
|
||||
require_lws_config(LWS_WITH_SYS_STATE 1 requirements)
|
||||
require_lws_config(LWS_WITH_GENCRYPTO 1 requirements)
|
||||
|
||||
if (requirements)
|
||||
add_executable(${SAMP} minimal-secure-streams.c)
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
// #define VIA_LOCALHOST_SOCKS
|
||||
|
||||
static int interrupted, bad = 1, force_cpd_fail_portal,
|
||||
force_cpd_fail_no_internet, test_respmap, test_blob, test_ots;
|
||||
force_cpd_fail_no_internet, test_respmap, test_ots;
|
||||
static unsigned int timeout_ms = 3000;
|
||||
static lws_state_notify_link_t nl;
|
||||
|
||||
|
@ -194,13 +194,6 @@ static const char *canned_root_token_payload =
|
|||
|
||||
/* secure streams payload interface */
|
||||
|
||||
static const uint8_t expected_blob_hash[] = {
|
||||
0xed, 0x57, 0x20, 0xc1, 0x68, 0x30, 0x81, 0x0e,
|
||||
0x58, 0x29, 0xdf, 0xb9, 0xb6, 0x6c, 0x96, 0xb2,
|
||||
0xe2, 0x4e, 0xfc, 0x4f, 0x93, 0xaa, 0x5e, 0x38,
|
||||
0xc7, 0xff, 0x41, 0x50, 0xd3, 0x1c, 0xfb, 0xbf
|
||||
};
|
||||
|
||||
static lws_ss_state_return_t
|
||||
myss_rx(void *userobj, const uint8_t *buf, size_t len, int flags)
|
||||
{
|
||||
|
@ -211,46 +204,6 @@ myss_rx(void *userobj, const uint8_t *buf, size_t len, int flags)
|
|||
if (flags & LWSSS_FLAG_PERF_JSON)
|
||||
return LWSSSSRET_OK;
|
||||
|
||||
if (test_blob) {
|
||||
|
||||
if (flags & LWSSS_FLAG_SOM) {
|
||||
if (lws_genhash_init(&m->hash_ctx, LWS_GENHASH_TYPE_SHA256))
|
||||
lwsl_err("%s: hash init failed\n", __func__);
|
||||
m->amt = 0;
|
||||
}
|
||||
|
||||
if (lws_genhash_update(&m->hash_ctx, buf, len))
|
||||
lwsl_err("%s: hash failed\n", __func__);
|
||||
|
||||
if ((m->amt + len) / 102400 != (m->amt / 102400)) {
|
||||
|
||||
lwsl_user("%s: blob test: rx %uKiB\n", __func__,
|
||||
(unsigned int)((m->amt + len) / 1024));
|
||||
/*
|
||||
* Let's make it hard for client to keep up with onward
|
||||
* server, delay 50ms after every 100K received, so we
|
||||
* are forcing the flow control action at the proxy
|
||||
*/
|
||||
usleep(50000);
|
||||
}
|
||||
|
||||
m->amt += len;
|
||||
|
||||
if (flags & LWSSS_FLAG_EOM) {
|
||||
uint8_t digest[32];
|
||||
lws_genhash_destroy(&m->hash_ctx, digest);
|
||||
|
||||
if (!memcmp(expected_blob_hash, digest, 32)) {
|
||||
lwsl_user("%s: SHA256 match\n", __func__);
|
||||
bad = 0;
|
||||
}
|
||||
|
||||
interrupted = 1;
|
||||
}
|
||||
|
||||
return LWSSSSRET_OK;
|
||||
}
|
||||
|
||||
lws_ss_get_metadata(m->ss, "srv", (const void **)&md_srv, &md_srv_len);
|
||||
lws_ss_get_metadata(m->ss, "test", (const void **)&md_test, &md_test_len);
|
||||
|
||||
|
@ -298,15 +251,13 @@ myss_state(void *userobj, void *sh, lws_ss_constate_t state,
|
|||
case LWSSSCS_CONNECTING:
|
||||
lws_ss_start_timeout(m->ss, timeout_ms);
|
||||
|
||||
if (!test_blob) {
|
||||
if (lws_ss_set_metadata(m->ss, "uptag", "myuptag123", 10))
|
||||
/* can fail, eg due to OOM, retry later if so */
|
||||
return LWSSSSRET_DISCONNECT_ME;
|
||||
if (lws_ss_set_metadata(m->ss, "uptag", "myuptag123", 10))
|
||||
/* can fail, eg due to OOM, retry later if so */
|
||||
return LWSSSSRET_DISCONNECT_ME;
|
||||
|
||||
if (lws_ss_set_metadata(m->ss, "ctype", "myctype", 7))
|
||||
/* can fail, eg due to OOM, retry later if so */
|
||||
return LWSSSSRET_DISCONNECT_ME;
|
||||
}
|
||||
if (lws_ss_set_metadata(m->ss, "ctype", "myctype", 7))
|
||||
/* can fail, eg due to OOM, retry later if so */
|
||||
return LWSSSSRET_DISCONNECT_ME;
|
||||
break;
|
||||
|
||||
case LWSSSCS_ALL_RETRIES_FAILED:
|
||||
|
@ -422,8 +373,7 @@ app_system_state_nf(lws_state_manager_t *mgr, lws_state_notify_link_t *link,
|
|||
ssi.state = myss_state;
|
||||
ssi.user_alloc = sizeof(myss_t);
|
||||
ssi.streamtype = test_ots ? "mintest-ots" :
|
||||
(test_blob ? "bulkproxflow" :
|
||||
(test_respmap ? "respmap" : "mintest"));
|
||||
(test_respmap ? "respmap" : "mintest");
|
||||
|
||||
if (lws_ss_create(context, 0, &ssi, NULL, NULL,
|
||||
NULL, NULL)) {
|
||||
|
@ -507,16 +457,6 @@ int main(int argc, const char **argv)
|
|||
if ((p = lws_cmdline_option(argc, argv, "--timeout_ms")))
|
||||
timeout_ms = (unsigned int)atoi(p);
|
||||
|
||||
if (lws_cmdline_option(argc, argv, "--blob")) {
|
||||
test_blob = 1;
|
||||
if (timeout_ms == 3000)
|
||||
/*
|
||||
* Don't use default 3s, we're going to be a lot
|
||||
* slower
|
||||
*/
|
||||
timeout_ms = 60000;
|
||||
}
|
||||
|
||||
info.fd_limit_per_thread = 1 + 6 + 1;
|
||||
info.port = CONTEXT_PORT_NO_LISTEN;
|
||||
#if defined(LWS_SS_USE_SSPC)
|
||||
|
|
Loading…
Add table
Reference in a new issue