libwebsockets
Lightweight C library for HTML5 websockets
Loading...
Searching...
No Matches
lws-secure-streams-policy.h
Go to the documentation of this file.
1/*
2 * libwebsockets - small server side websockets and web server implementation
3 *
4 * Copyright (C) 2019 - 2021 Andy Green <andy@warmcat.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 * IN THE SOFTWARE.
23 *
24 * included from libwebsockets.h
25 */
26
27typedef int (*plugin_auth_status_cb)(struct lws_ss_handle *ss, int status);
28
53
54/* the public, const metrics policy definition */
55
56typedef struct lws_metric_policy {
57 /* order of first two mandated by JSON policy parsing scope union */
58 const struct lws_metric_policy *next;
59 const char *name;
60
61 const char *report;
62
64 uint64_t us_schedule;
66
72
73typedef struct lws_ss_x509 {
75 const char *vhost_name;
76 const uint8_t *ca_der;
77 size_t ca_der_len;
80
81enum {
90 LWSSSPOLF_TLS = (1 << 4),
118 LWSSSPOLF_SERVER = (1 << 15),
124
133 LWSSSPOLF_PERF = (1 << 22),
141
142};
143
151
152enum {
159
160
165
166 _LWSSS_HBI_COUNT /* always last */
167};
168
169/*
170 * This does for both the static policy metadata entry, and the runtime metadata
171 * handling object.
172 */
173
174typedef struct lws_ss_metadata {
176 const char *name;
178 size_t length;
179
180 uint8_t value_length; /* only valid if set by policy */
181 uint8_t value_is_http_token; /* valid if set by policy */
182#if defined(LWS_WITH_SS_DIRECT_PROTOCOL_STR)
183 uint8_t name_on_lws_heap:1; /* proxy metatadata does this */
184#endif
185 uint8_t value_on_lws_heap:1; /* proxy + rx metadata does this */
186#if defined(LWS_WITH_SECURE_STREAMS_PROXY_API)
187 uint8_t pending_onward:1;
188#endif
190
191typedef struct lws_ss_http_respmap {
192 uint16_t resp; /* the http response code */
193 uint16_t state; /* low 16-bits of associated state */
195
196/*
197 * This is a mapping between an auth streamtype and a name and other information
198 * that can be independently instantiated. Other streamtypes can indicate they
199 * require this authentication on their connection.
200 */
201
202typedef struct lws_ss_auth {
204 const char *name;
205
206 const char *type;
207 const char *streamtype;
210
224typedef struct lws_ss_policy {
226 const char *streamtype;
227
228 const char *endpoint;
232 const char *payload_fmt;
233 const char *socks5_proxy;
234 lws_ss_metadata_t *metadata; /* linked-list of metadata */
235 const lws_metric_policy_t *metrics; /* linked-list of metric policies */
236 const lws_ss_auth_t *auth; /* NULL or auth object we bind to */
237
238#if defined(LWS_WITH_SERVER)
239 const struct lws_protocol_vhost_options *pvo;
240#endif
241
242 /* protocol-specific connection policy details */
243
244 union {
245
246#if defined(LWS_ROLE_H1) || defined(LWS_ROLE_H2) || defined(LWS_ROLE_WS)
247
248 /* details for http-related protocols... */
249
250 struct {
251
252 /* common to all http-related protocols */
253
254 const char *method;
255 const char *url;
256
257 const char *multipart_name;
258 const char *multipart_filename;
259 const char *multipart_content_type;
260
261 const char *blob_header[_LWSSS_HBI_COUNT];
262 const char *auth_preamble;
263
264 const lws_ss_http_respmap_t *respmap;
265
266 union {
267// struct { /* LWSSSP_H1 */
268// } h1;
269// struct { /* LWSSSP_H2 */
270// } h2;
271// struct { /* LWSSSP_H3 */
272// } h3;
273 struct { /* LWSSSP_WS */
274 const char *subprotocol;
275 uint8_t binary;
276 /* false = TEXT, true = BINARY */
277 } ws;
278 } u;
279
280 uint16_t resp_expect;
281 uint8_t count_respmap;
282 uint8_t fail_redirect:1;
283 } http;
284
285#endif
286
287#if defined(LWS_ROLE_MQTT)
288
289 struct {
290 const char *topic; /* stream sends on this topic */
291 const char *subscribe; /* stream subscribes to this topic */
292
293 const char *will_topic;
294 const char *will_message;
295
296 const char *birth_topic;
297 const char *birth_message;
298
299 uint16_t keep_alive;
300 uint8_t qos;
301 uint8_t clean_start;
302 uint8_t will_qos;
303 uint8_t will_retain;
304 uint8_t birth_qos;
305 uint8_t birth_retain;
306 uint8_t aws_iot;
307 uint8_t retain;
308
309 } mqtt;
310
311#endif
312
313 /* details for non-http related protocols... */
314 } u;
315
316#if defined(LWS_WITH_SECURE_STREAMS_AUTH_SIGV4)
317 /* directly point to the metadata name, no need to expand */
318 const char *aws_region;
319 const char *aws_service;
320#endif
321 /*
322 * We're either a client connection policy that wants a trust store,
323 * or we're a server policy that wants a mem cert and key... Hold
324 * these mutually-exclusive things in a union.
325 */
326
327 union {
331 struct {
332 const lws_ss_x509_t *cert;
334 const lws_ss_x509_t *key;
336 } server;
338
340
341 int32_t txc;
342 int32_t txc_peer;
343
347
351
355
357
362 uint8_t priority; /* 0 = normal, 6 = max normal,
363 * 7 = network management */
365
366#if !defined(LWS_WITH_SECURE_STREAMS_STATIC_POLICY_ONLY)
367
368/*
369 * These only exist / have meaning if there's a dynamic JSON policy enabled
370 */
371
373lws_ss_policy_parse_begin(struct lws_context *context, int overlay);
374
376lws_ss_policy_parse_abandon(struct lws_context *context);
377
379lws_ss_policy_parse(struct lws_context *context, const uint8_t *buf, size_t len);
380
382lws_ss_policy_overlay(struct lws_context *context, const char *overlay);
383
384/*
385 * You almost certainly don't want these, they return the first policy or auth
386 * object in a linked-list of objects created by lws_ss_policy_parse above,
387 * they are exported to generate static policy with
388 */
390lws_ss_policy_get(struct lws_context *context);
391
393lws_ss_auth_get(struct lws_context *context);
394
395#endif
unsigned short uint16_t
unsigned int uint32_t
#define LWS_EXTERN
unsigned char uint8_t
#define LWS_VISIBLE
struct lws_retry_bo lws_retry_bo_t
struct lws_ss_x509 * next
struct lws_ss_metadata * next
struct lws_ss_http_respmap lws_ss_http_respmap_t
LWS_VISIBLE LWS_EXTERN int lws_ss_policy_overlay(struct lws_context *context, const char *overlay)
const lws_ss_x509_t * ssx509[6]
struct lws_ss_policy lws_ss_policy_t
const lws_ss_x509_t * key
struct lws_ss_trust_store * next
LWS_VISIBLE LWS_EXTERN int lws_ss_policy_parse_abandon(struct lws_context *context)
struct lws_ss_trust_store lws_ss_trust_store_t
struct lws_ss_x509 lws_ss_x509_t
struct lws_ss_auth * next
LWS_VISIBLE LWS_EXTERN const lws_ss_auth_t * lws_ss_auth_get(struct lws_context *context)
struct lws_ss_auth lws_ss_auth_t
LWS_VISIBLE LWS_EXTERN int lws_ss_policy_parse_begin(struct lws_context *context, int overlay)
@ LWSSSPOLF_HTTP_CACHE_COOKIES
@ LWSSSPOLF_OPPORTUNISTIC
@ LWSSSPOLF_ATTR_HIGH_RELIABILITY
@ LWSSSPOLF_H2_QUIRK_UNCLEAN_HPACK_STATE
@ LWSSSPOLF_WAKE_SUSPEND__VALIDITY
@ LWSSSPOLF_ALLOW_REDIRECTS
@ LWSSSPOLF_ATTR_LOW_LATENCY
@ LWSSSPOLF_AUTH_BEARER
@ LWSSSPOLF_QUIRK_NGHTTP2_END_STREAM
@ LWSSSPOLF_HTTP_MULTIPART_IN
@ LWSSSPOLF_ATTR_LOW_COST
@ LWSSSPOLF_HTTP_X_WWW_FORM_URLENCODED
@ LWSSSPOLF_HTTP_NO_CONTENT_LENGTH
@ LWSSSPOLF_HTTP_MULTIPART
@ LWSSSPOLF_PRIORITIZE_READS
@ LWSSSPOLF_DIRECT_PROTO_STR
@ LWSSSPOLF_H2_QUIRK_OVERFLOWS_TXCR
@ LWSSSPOLF_ATTR_HIGH_THROUGHPUT
int(* plugin_auth_status_cb)(struct lws_ss_handle *ss, int status)
const lws_ss_x509_t * cert
struct lws_ss_metadata lws_ss_metadata_t
LWS_VISIBLE LWS_EXTERN const lws_ss_policy_t * lws_ss_policy_get(struct lws_context *context)
const uint8_t * ca_der
struct lws_metric_policy lws_metric_policy_t
LWS_VISIBLE LWS_EXTERN int lws_ss_policy_parse(struct lws_context *context, const uint8_t *buf, size_t len)
const struct lws_metric_policy * next
union lws_ss_policy::@205263316062375117242051172104141270333353025223 trust
const lws_metric_policy_t * metrics
lws_ss_metadata_t * metadata
const char * rideshare_streamtype
const lws_retry_bo_t * retry_bo
const lws_ss_auth_t * auth
struct lws_ss_policy * next
union lws_ss_policy::@240225143042301163031025331247104245060336112111 u
const lws_ss_trust_store_t * store