libwebsockets
Lightweight C library for HTML5 websockets
lws-secure-streams-policy.h
1 /*
2  * libwebsockets - small server side websockets and web server implementation
3  *
4  * Copyright (C) 2019 - 2020 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 
27 typedef int (*plugin_auth_status_cb)(struct lws_ss_handle *ss, int status);
28 
54 #if defined(LWS_WITH_SSPLUGINS)
55 typedef struct lws_ss_plugin {
56  struct lws_ss_plugin *next;
57  const char *name;
58  size_t alloc;
60  int (*create)(struct lws_ss_handle *ss, void *info,
61  plugin_auth_status_cb status);
67  int (*destroy)(struct lws_ss_handle *ss);
71  int (*munge)(struct lws_ss_handle *ss, char *path,
72  size_t path_len);
77 } lws_ss_plugin_t;
78 #endif
79 
80 /* the public, const metrics policy definition */
81 
82 typedef struct lws_metric_policy {
83  /* order of first two mandated by JSON policy parsing scope union */
84  const struct lws_metric_policy *next;
85  const char *name;
86 
87  const char *report;
88 
90  uint64_t us_schedule;
93  uint32_t us_decay_unit;
98 
99 typedef struct lws_ss_x509 {
100  struct lws_ss_x509 *next;
101  const char *vhost_name;
102  const uint8_t *ca_der;
103  size_t ca_der_len;
104  uint8_t keep:1;
105 } lws_ss_x509_t;
106 
107 enum {
108  LWSSSPOLF_OPPORTUNISTIC = (1 << 0),
110  LWSSSPOLF_NAILED_UP = (1 << 1),
112  LWSSSPOLF_URGENT_TX = (1 << 2),
114  LWSSSPOLF_URGENT_RX = (1 << 3),
116  LWSSSPOLF_TLS = (1 << 4),
118  LWSSSPOLF_LONG_POLL = (1 << 5),
120  LWSSSPOLF_AUTH_BEARER = (1 << 6),
122  LWSSSPOLF_HTTP_NO_CONTENT_LENGTH = (1 << 7),
124  LWSSSPOLF_QUIRK_NGHTTP2_END_STREAM = (1 << 8),
126  LWSSSPOLF_H2_QUIRK_OVERFLOWS_TXCR = (1 << 9),
128  LWSSSPOLF_H2_QUIRK_UNCLEAN_HPACK_STATE = (1 << 10),
130  LWSSSPOLF_HTTP_MULTIPART = (1 << 11),
136  LWSSSPOLF_HTTP_X_WWW_FORM_URLENCODED = (1 << 12),
138  LWSSSPOLF_LOCAL_SINK = (1 << 13),
140  LWSSSPOLF_WAKE_SUSPEND__VALIDITY = (1 << 14),
144  LWSSSPOLF_SERVER = (1 << 15),
146  LWSSSPOLF_ALLOW_REDIRECTS = (1 << 16),
148  LWSSSPOLF_HTTP_MULTIPART_IN = (1 << 17),
151  LWSSSPOLF_ATTR_LOW_LATENCY = (1 << 18),
153  LWSSSPOLF_ATTR_HIGH_THROUGHPUT = (1 << 19),
155  LWSSSPOLF_ATTR_HIGH_RELIABILITY = (1 << 20),
157  LWSSSPOLF_ATTR_LOW_COST = (1 << 21),
159  LWSSSPOLF_PERF = (1 << 22),
161 };
162 
163 typedef struct lws_ss_trust_store {
164  struct lws_ss_trust_store *next;
165  const char *name;
166 
167  const lws_ss_x509_t *ssx509[6];
168  int count;
170 
171 enum {
172  LWSSSP_H1,
173  LWSSSP_H2,
174  LWSSSP_WS,
175  LWSSSP_MQTT,
176  LWSSSP_RAW,
177 
178 
179  LWSSS_HBI_AUTH = 0,
180  LWSSS_HBI_DSN,
181  LWSSS_HBI_FWV,
182  LWSSS_HBI_TYPE,
183 
184  _LWSSS_HBI_COUNT /* always last */
185 };
186 
187 /*
188  * This does for both the static policy metadata entry, and the runtime metadata
189  * handling object.
190  */
191 
192 typedef struct lws_ss_metadata {
193  struct lws_ss_metadata *next;
194  const char *name;
195  void *value__may_own_heap;
196  size_t length;
197 
198  uint8_t value_length; /* only valid if set by policy */
199  uint8_t value_is_http_token; /* valid if set by policy */
200  uint8_t value_on_lws_heap:1; /* proxy + rx metadata does this */
201 #if defined(LWS_WITH_SECURE_STREAMS_PROXY_API)
202  uint8_t pending_onward:1;
203 #endif
205 
206 typedef struct lws_ss_http_respmap {
207  uint16_t resp; /* the http response code */
208  uint16_t state; /* low 16-bits of associated state */
210 
211 /*
212  * This is a mapping between an auth streamtype and a name and other information
213  * that can be independently instantiated. Other streamtypes can indicate they
214  * require this authentication on their connection.
215  */
216 
217 typedef struct lws_ss_auth {
218  struct lws_ss_auth *next;
219  const char *name;
220 
221  const char *type;
222  const char *streamtype;
223  uint8_t blob_index;
224 } lws_ss_auth_t;
225 
239 typedef struct lws_ss_policy {
240  struct lws_ss_policy *next;
241  const char *streamtype;
243  const char *endpoint;
244  const char *rideshare_streamtype;
247  const char *payload_fmt;
248  const char *socks5_proxy;
249  lws_ss_metadata_t *metadata; /* linked-list of metadata */
250  const lws_metric_policy_t *metrics; /* linked-list of metric policies */
251  const lws_ss_auth_t *auth; /* NULL or auth object we bind to */
252 
253  /* protocol-specific connection policy details */
254 
255  union {
256 
257 #if defined(LWS_ROLE_H1) || defined(LWS_ROLE_H2) || defined(LWS_ROLE_WS)
258 
259  /* details for http-related protocols... */
260 
261  struct {
262 
263  /* common to all http-related protocols */
264 
265  const char *method;
266  const char *url;
267 
268  const char *multipart_name;
269  const char *multipart_filename;
270  const char *multipart_content_type;
271 
272  const char *blob_header[_LWSSS_HBI_COUNT];
273  const char *auth_preamble;
274 
275  const lws_ss_http_respmap_t *respmap;
276 
277  union {
278 // struct { /* LWSSSP_H1 */
279 // } h1;
280 // struct { /* LWSSSP_H2 */
281 // } h2;
282  struct { /* LWSSSP_WS */
283  const char *subprotocol;
284  uint8_t binary;
285  /* false = TEXT, true = BINARY */
286  } ws;
287  } u;
288 
289  uint16_t resp_expect;
290  uint8_t count_respmap;
291  uint8_t fail_redirect:1;
292  } http;
293 
294 #endif
295 
296 #if defined(LWS_ROLE_MQTT)
297 
298  struct {
299  const char *topic; /* stream sends on this topic */
300  const char *subscribe; /* stream subscribes to this topic */
301 
302  const char *will_topic;
303  const char *will_message;
304 
305  uint16_t keep_alive;
306  uint8_t qos;
307  uint8_t clean_start;
308  uint8_t will_qos;
309  uint8_t will_retain;
310  uint8_t aws_iot;
311 
312  } mqtt;
313 
314 #endif
315 
316  /* details for non-http related protocols... */
317  } u;
318 
319 #if defined(LWS_WITH_SSPLUGINS)
320  const
321  struct lws_ss_plugin *plugins[2];
322  const void *plugins_info[2];
323 #endif
324 
325 #if defined(LWS_WITH_SECURE_STREAMS_AUTH_SIGV4)
326  /* directly point to the metadata name, no need to expand */
327  const char *aws_region;
328  const char *aws_service;
329 #endif
330  /*
331  * We're either a client connection policy that wants a trust store,
332  * or we're a server policy that wants a mem cert and key... Hold
333  * these mutually-exclusive things in a union.
334  */
335 
336  union {
340  struct {
345  } server;
346  } trust;
347 
350  uint32_t proxy_buflen;
351  uint32_t proxy_buflen_rxflow_on_above;
352  uint32_t proxy_buflen_rxflow_off_below;
353 
354  uint32_t client_buflen;
355  uint32_t client_buflen_rxflow_on_above;
356  uint32_t client_buflen_rxflow_off_below;
357 
358 
359  uint32_t timeout_ms;
361  uint32_t flags;
363  uint16_t port;
365  uint8_t metadata_count;
366  uint8_t protocol;
367  uint8_t client_cert;
369  uint8_t priority; /* 0 = normal, 6 = max normal,
370  * 7 = network management */
372 
373 #if !defined(LWS_WITH_SECURE_STREAMS_STATIC_POLICY_ONLY)
374 
375 /*
376  * These only exist / have meaning if there's a dynamic JSON policy enabled
377  */
378 
379 LWS_VISIBLE LWS_EXTERN int
380 lws_ss_policy_parse_begin(struct lws_context *context, int overlay);
381 
382 LWS_VISIBLE LWS_EXTERN int
383 lws_ss_policy_parse_abandon(struct lws_context *context);
384 
385 LWS_VISIBLE LWS_EXTERN int
386 lws_ss_policy_parse(struct lws_context *context, const uint8_t *buf, size_t len);
387 
388 LWS_VISIBLE LWS_EXTERN int
389 lws_ss_policy_overlay(struct lws_context *context, const char *overlay);
390 
391 /*
392  * You almost certainly don't want these, they return the first policy or auth
393  * object in a linked-list of objects created by lws_ss_policy_parse above,
394  * they are exported to generate static policy with
395  */
396 LWS_VISIBLE LWS_EXTERN const lws_ss_policy_t *
397 lws_ss_policy_get(struct lws_context *context);
398 
399 LWS_VISIBLE LWS_EXTERN const lws_ss_auth_t *
400 lws_ss_auth_get(struct lws_context *context);
401 
402 #endif
Definition: lws-secure-streams-policy.h:82
uint32_t us_decay_unit
Definition: lws-secure-streams-policy.h:93
uint8_t min_contributors
Definition: lws-secure-streams-policy.h:95
uint64_t us_schedule
Definition: lws-secure-streams-policy.h:90
const char * report
Definition: lws-secure-streams-policy.h:87
Definition: lws-retry.h:25
Definition: lws-secure-streams-policy.h:217
Definition: lws-secure-streams-policy.h:206
Definition: lws-secure-streams-policy.h:192
Definition: lws-secure-streams-policy.h:239
uint32_t flags
Definition: lws-secure-streams-policy.h:361
uint8_t metadata_count
Definition: lws-secure-streams-policy.h:365
uint32_t timeout_ms
Definition: lws-secure-streams-policy.h:359
const lws_ss_x509_t * cert
Definition: lws-secure-streams-policy.h:341
const char * streamtype
Definition: lws-secure-streams-policy.h:241
const char * rideshare_streamtype
Definition: lws-secure-streams-policy.h:244
uint8_t client_cert
Definition: lws-secure-streams-policy.h:367
const char * endpoint
Definition: lws-secure-streams-policy.h:243
const lws_ss_trust_store_t * store
Definition: lws-secure-streams-policy.h:337
const lws_retry_bo_t * retry_bo
Definition: lws-secure-streams-policy.h:348
uint16_t port
Definition: lws-secure-streams-policy.h:363
uint8_t protocol
Definition: lws-secure-streams-policy.h:366
uint32_t client_buflen
Definition: lws-secure-streams-policy.h:354
const lws_ss_x509_t * key
Definition: lws-secure-streams-policy.h:343
uint32_t proxy_buflen
Definition: lws-secure-streams-policy.h:350
Definition: lws-secure-streams-policy.h:163
Definition: lws-secure-streams-policy.h:99
uint8_t keep
Definition: lws-secure-streams-policy.h:104
size_t ca_der_len
Definition: lws-secure-streams-policy.h:103
const uint8_t * ca_der
Definition: lws-secure-streams-policy.h:102
const char * vhost_name
Definition: lws-secure-streams-policy.h:101