Select one of the symbols to view example projects that use it.
 
Outline
#include <stdlib.h>
#include <string.h>
#include <sys/random.h>
#include <esp_log.h>
#include <esp_err.h>
#include <mbedtls/sha1.h>
#include <mbedtls/base64.h>
#include <esp_http_server.h>
#include "esp_httpd_priv.h"
#include "freertos/event_groups.h"
#define WS_SEND_OK
#define WS_SEND_FAILED
async_transfer_t
TAG
#define HTTPD_WS_CONTINUE
#define HTTPD_WS_FIN_BIT
#define HTTPD_WS_OPCODE_BITS
#define HTTPD_WS_MASK_BIT
#define HTTPD_WS_LENGTH_BITS
ws_magic_uuid
httpd_ws_get_response_subprotocol(const char *, char *, size_t)
httpd_ws_respond_server_handshake(httpd_req_t *, const char *)
httpd_ws_check_req(httpd_req_t *)
httpd_ws_unmask_payload(uint8_t *, size_t, const uint8_t *)
httpd_ws_recv_frame(httpd_req_t *, httpd_ws_frame_t *, size_t)
httpd_ws_send_frame(httpd_req_t *, httpd_ws_frame_t *)
httpd_ws_send_frame_async(httpd_handle_t, int, httpd_ws_frame_t *)
httpd_ws_get_frame_type(httpd_req_t *)
httpd_ws_get_fd_info(httpd_handle_t, int)
httpd_ws_send_cb(void *)
httpd_ws_send_data(httpd_handle_t, int, httpd_ws_frame_t *)
httpd_ws_send_data_async(httpd_handle_t, int, httpd_ws_frame_t *, transfer_complete_cb, void *)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_http_server/src/httpd_ws.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include <stdlib.h> #include <string.h> #include <sys/random.h> #include <esp_log.h> #include <esp_err.h> #include <mbedtls/sha1.h> #include <mbedtls/base64.h> #include <esp_http_server.h> #include "esp_httpd_priv.h" #include "freertos/event_groups.h"10 includes #ifdef CONFIG_HTTPD_WS_SUPPORT #define WS_SEND_OK (1 << 0) #define WS_SEND_FAILED (1 << 1) typedef struct { httpd_ws_frame_t frame; httpd_handle_t handle; int socket; transfer_complete_cb callback; void *arg; bool blocking; EventGroupHandle_t transfer_done; }{ ... } async_transfer_t; static const char *TAG="httpd_ws"; /* * Bit masks for WebSocket frames. * Please refer to RFC6455 Section 5.2 for more details. *//* ... */ #define HTTPD_WS_CONTINUE 0x00U #define HTTPD_WS_FIN_BIT 0x80U #define HTTPD_WS_OPCODE_BITS 0x0fU #define HTTPD_WS_MASK_BIT 0x80U #define HTTPD_WS_LENGTH_BITS 0x7fU5 defines /* * The magic GUID string used for handshake * Please refer to RFC6455 Section 1.3 for more details. *//* ... */ static const char ws_magic_uuid[] = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"; /* Checks if any subprotocols from the comma seperated list matches the supported one * * Returns true if the response should contain a protocol field *//* ... */ /** * @brief Checks if any subprotocols from the comma seperated list matches the supported one * * @param supported_subprotocol[in] The subprotocol supported by the URI * @param subprotocol[in], [in]: A comma seperate list of subprotocols requested * @param buf_len Length of the buffer * @return true: found a matching subprotocol * @return false *//* ... */ static bool httpd_ws_get_response_subprotocol(const char *supported_subprotocol, char *subprotocol, size_t buf_len) { /* Request didnt contain any subprotocols */ if (strnlen(subprotocol, buf_len) == 0) { return false; }{...} if (supported_subprotocol == NULL) { ESP_LOGW(TAG, "Sec-WebSocket-Protocol %s not supported, URI do not support any subprotocols", subprotocol); return false; }{...} /* Get first subprotocol from comma seperated list */ char *rest = NULL; char *s = strtok_r(subprotocol, ", ", &rest); do { if (strncmp(s, supported_subprotocol, sizeof(subprotocol)) == 0) { ESP_LOGD(TAG, "Requested subprotocol supported: %s", s); return true; }{...} }{...} while ((s = strtok_r(NULL, ", ", &rest)) != NULL); ESP_LOGW(TAG, "Sec-WebSocket-Protocol %s not supported, supported subprotocol is %s", subprotocol, supported_subprotocol); /* No matches */ return false; }{ ... } esp_err_t httpd_ws_respond_server_handshake(httpd_req_t *req, const char *supported_subprotocol) { /* Probe if input parameters are valid or not */ if (!req || !req->aux) { ESP_LOGW(TAG, LOG_FMT("Argument is invalid")); return ESP_ERR_INVALID_ARG; }{...} /* Detect handshake - reject if handshake was ALREADY performed */ struct httpd_req_aux *req_aux = req->aux; if (req_aux->sd->ws_handshake_done) { ESP_LOGW(TAG, LOG_FMT("State is invalid - Handshake has been performed")); return ESP_ERR_INVALID_STATE; }{...} /* Detect WS version existence */ char version_val[3] = { '\0' }; if (httpd_req_get_hdr_value_str(req, "Sec-WebSocket-Version", version_val, sizeof(version_val)) != ESP_OK) { ESP_LOGW(TAG, LOG_FMT("\"Sec-WebSocket-Version\" is not found")); return ESP_ERR_NOT_FOUND; }{...} /* Detect if WS version is "13" or not. * WS version must be 13 for now. Please refer to RFC6455 Section 4.1, Page 18 for more details. *//* ... */ if (strcasecmp(version_val, "13") != 0) { ESP_LOGW(TAG, LOG_FMT("\"Sec-WebSocket-Version\" is not \"13\", it is: %s"), version_val); return ESP_ERR_INVALID_VERSION; }{...} /* Grab Sec-WebSocket-Key (client key) from the header */ /* Size of base64 coded string is equal '((input_size * 4) / 3) + (input_size / 96) + 6' including Z-term */ char sec_key_encoded[28] = { '\0' }; if (httpd_req_get_hdr_value_str(req, "Sec-WebSocket-Key", sec_key_encoded, sizeof(sec_key_encoded)) != ESP_OK) { ESP_LOGW(TAG, LOG_FMT("Cannot find client key")); return ESP_ERR_NOT_FOUND; }{...} /* Prepare server key (Sec-WebSocket-Accept), concat the string */ char server_key_encoded[33] = { '\0' }; uint8_t server_key_hash[20] = { 0 }; char server_raw_text[sizeof(sec_key_encoded) + sizeof(ws_magic_uuid) + 1] = { '\0' }; strcpy(server_raw_text, sec_key_encoded); strcat(server_raw_text, ws_magic_uuid); ESP_LOGD(TAG, LOG_FMT("Server key before encoding: %s"), server_raw_text); /* Generate SHA-1 first and then encode to Base64 */ size_t key_len = strlen(server_raw_text); mbedtls_sha1((uint8_t *)server_raw_text, key_len, server_key_hash); size_t encoded_len = 0; mbedtls_base64_encode((uint8_t *)server_key_encoded, sizeof(server_key_encoded), &encoded_len, server_key_hash, sizeof(server_key_hash)); ESP_LOGD(TAG, LOG_FMT("Generated server key: %s"), server_key_encoded); char subprotocol[50] = { '\0' }; if (httpd_req_get_hdr_value_str(req, "Sec-WebSocket-Protocol", subprotocol, sizeof(subprotocol) - 1) == ESP_ERR_HTTPD_RESULT_TRUNC) { ESP_LOGW(TAG, "Sec-WebSocket-Protocol length exceeded buffer size of %"NEWLIB_NANO_COMPAT_FORMAT", was trunctated", NEWLIB_NANO_COMPAT_CAST(sizeof(subprotocol))); }{...} /* Prepare the Switching Protocol response */ char tx_buf[192] = { '\0' }; int fmt_len = snprintf(tx_buf, sizeof(tx_buf), "HTTP/1.1 101 Switching Protocols\r\n" "Upgrade: websocket\r\n" "Connection: Upgrade\r\n" "Sec-WebSocket-Accept: %s\r\n", server_key_encoded); if (fmt_len < 0 || fmt_len > sizeof(tx_buf)) { ESP_LOGW(TAG, LOG_FMT("Failed to prepare Tx buffer")); return ESP_FAIL; }{...} if ( httpd_ws_get_response_subprotocol(supported_subprotocol, subprotocol, sizeof(subprotocol))) { ESP_LOGD(TAG, "subprotocol: %s", subprotocol); int r = snprintf(tx_buf + fmt_len, sizeof(tx_buf) - fmt_len, "Sec-WebSocket-Protocol: %s\r\n", supported_subprotocol); if (r <= 0) { ESP_LOGE(TAG, "Error in response generation" "(snprintf of subprotocol returned %d, buffer size: %"NEWLIB_NANO_COMPAT_FORMAT, r, NEWLIB_NANO_COMPAT_CAST(sizeof(tx_buf))); return ESP_FAIL; }{...} fmt_len += r; if (fmt_len >= sizeof(tx_buf)) { ESP_LOGE(TAG, "Error in response generation" "(snprintf of subprotocol returned %d, desired response len: %d, buffer size: %"NEWLIB_NANO_COMPAT_FORMAT, r, fmt_len, NEWLIB_NANO_COMPAT_CAST(sizeof(tx_buf))); return ESP_FAIL; }{...} }{...} int r = snprintf(tx_buf + fmt_len, sizeof(tx_buf) - fmt_len, "\r\n"); if (r <= 0) { ESP_LOGE(TAG, "Error in response generation" "(snprintf of subprotocol returned %d, buffer size: %"NEWLIB_NANO_COMPAT_FORMAT, r, NEWLIB_NANO_COMPAT_CAST(sizeof(tx_buf))); return ESP_FAIL; }{...} fmt_len += r; if (fmt_len >= sizeof(tx_buf)) { ESP_LOGE(TAG, "Error in response generation" "(snprintf of header terminal returned %d, desired response len: %d, buffer size: %"NEWLIB_NANO_COMPAT_FORMAT, r, fmt_len, NEWLIB_NANO_COMPAT_CAST(sizeof(tx_buf))); return ESP_FAIL; }{...} /* Send off the response */ if (httpd_send(req, tx_buf, fmt_len) < 0) { ESP_LOGW(TAG, LOG_FMT("Failed to send the response")); return ESP_FAIL; }{...} return ESP_OK; }{ ... } static esp_err_t httpd_ws_check_req(httpd_req_t *req) { /* Probe if input parameters are valid or not */ if (!req || !req->aux) { ESP_LOGW(TAG, LOG_FMT("Argument is null")); return ESP_ERR_INVALID_ARG; }{...} /* Detect handshake - reject if handshake was NOT YET performed */ struct httpd_req_aux *req_aux = req->aux; if (!req_aux->sd->ws_handshake_done) { ESP_LOGW(TAG, LOG_FMT("State is invalid - No handshake performed")); return ESP_ERR_INVALID_STATE; }{...} return ESP_OK; }{ ... } static esp_err_t httpd_ws_unmask_payload(uint8_t *payload, size_t len, const uint8_t *mask_key) { if (len < 1 || !payload) { ESP_LOGW(TAG, LOG_FMT("Invalid payload provided")); return ESP_ERR_INVALID_ARG; }{...} for (size_t idx = 0; idx < len; idx++) { payload[idx] = (payload[idx] ^ mask_key[idx % 4]); }{...} return ESP_OK; }{ ... } esp_err_t httpd_ws_recv_frame(httpd_req_t *req, httpd_ws_frame_t *frame, size_t max_len) { esp_err_t ret = httpd_ws_check_req(req); if (ret != ESP_OK) { return ret; }{...} struct httpd_req_aux *aux = req->aux; if (aux == NULL) { ESP_LOGW(TAG, LOG_FMT("Invalid Aux pointer")); return ESP_ERR_INVALID_ARG; }{...} if (!frame) { ESP_LOGW(TAG, LOG_FMT("Frame pointer is invalid")); return ESP_ERR_INVALID_ARG; }{...} /* If frame len is 0, will get frame len from req. Otherwise regard frame len already achieved by calling httpd_ws_recv_frame before */ if (frame->len == 0) { /* Assign the frame info from the previous reading */ frame->type = aux->ws_type; frame->final = aux->ws_final; /* Grab the second byte */ uint8_t second_byte = 0; if (httpd_recv_with_opt(req, (char *)&second_byte, sizeof(second_byte), false) <= 0) { ESP_LOGW(TAG, LOG_FMT("Failed to receive the second byte")); return ESP_FAIL; }{...} /* Parse the second byte */ /* Please refer to RFC6455 Section 5.2 for more details */ bool masked = (second_byte & HTTPD_WS_MASK_BIT) != 0; /* Interpret length */ uint8_t init_len = second_byte & HTTPD_WS_LENGTH_BITS; if (init_len < 126) { /* Case 1: If length is 0-125, then this length bit is 7 bits */ frame->len = init_len; }{...} else if (init_len == 126) { /* Case 2: If length byte is 126, then this frame's length bit is 16 bits */ uint8_t length_bytes[2] = { 0 }; if (httpd_recv_with_opt(req, (char *)length_bytes, sizeof(length_bytes), false) <= 0) { ESP_LOGW(TAG, LOG_FMT("Failed to receive 2 bytes length")); return ESP_FAIL; }{...} frame->len = ((uint32_t)(length_bytes[0] << 8U) | (length_bytes[1])); }{...} else if (init_len == 127) { /* Case 3: If length is byte 127, then this frame's length bit is 64 bits */ uint8_t length_bytes[8] = { 0 }; if (httpd_recv_with_opt(req, (char *)length_bytes, sizeof(length_bytes), false) <= 0) { ESP_LOGW(TAG, LOG_FMT("Failed to receive 2 bytes length")); return ESP_FAIL; }{...} frame->len = (((uint64_t)length_bytes[0] << 56U) | ((uint64_t)length_bytes[1] << 48U) | ((uint64_t)length_bytes[2] << 40U) | ((uint64_t)length_bytes[3] << 32U) | ((uint64_t)length_bytes[4] << 24U) | ((uint64_t)length_bytes[5] << 16U) | ((uint64_t)length_bytes[6] << 8U) | ((uint64_t)length_bytes[7])); }{...} /* If this frame is masked, dump the mask as well */ if (masked) { if (httpd_recv_with_opt(req, (char *)aux->mask_key, sizeof(aux->mask_key), false) <= 0) { ESP_LOGW(TAG, LOG_FMT("Failed to receive mask key")); return ESP_FAIL; }{...} }{...} else { /* If the WS frame from client to server is not masked, it should be rejected. * Please refer to RFC6455 Section 5.2 for more details. *//* ... */ ESP_LOGW(TAG, LOG_FMT("WS frame is not properly masked.")); return ESP_ERR_INVALID_STATE; }{...} }{...} /* We only accept the incoming packet length that is smaller than the max_len (or it will overflow the buffer!) */ /* If max_len is 0, regard it OK for userspace to get frame len */ if (frame->len > max_len) { if (max_len == 0) { ESP_LOGD(TAG, "regard max_len == 0 is OK for user to get frame len"); return ESP_OK; }{...} ESP_LOGW(TAG, LOG_FMT("WS Message too long")); return ESP_ERR_INVALID_SIZE; }{...} /* Receive buffer */ /* If there's nothing to receive, return and stop here. */ if (frame->len == 0) { return ESP_OK; }{...} if (frame->payload == NULL) { ESP_LOGW(TAG, LOG_FMT("Payload buffer is null")); return ESP_FAIL; }{...} size_t left_len = frame->len; size_t offset = 0; while (left_len > 0) { int read_len = httpd_recv_with_opt(req, (char *)frame->payload + offset, left_len, false); if (read_len <= 0) { ESP_LOGW(TAG, LOG_FMT("Failed to receive payload")); return ESP_FAIL; }{...} offset += read_len; left_len -= read_len; ESP_LOGD(TAG, "Frame length: %"NEWLIB_NANO_COMPAT_FORMAT", Bytes Read: %"NEWLIB_NANO_COMPAT_FORMAT, NEWLIB_NANO_COMPAT_CAST(frame->len), NEWLIB_NANO_COMPAT_CAST(offset)); }{...} /* Unmask payload */ httpd_ws_unmask_payload(frame->payload, frame->len, aux->mask_key); return ESP_OK; }{ ... } esp_err_t httpd_ws_send_frame(httpd_req_t *req, httpd_ws_frame_t *frame) { esp_err_t ret = httpd_ws_check_req(req); if (ret != ESP_OK) { return ret; }{...} return httpd_ws_send_frame_async(req->handle, httpd_req_to_sockfd(req), frame); }{ ... } esp_err_t httpd_ws_send_frame_async(httpd_handle_t hd, int fd, httpd_ws_frame_t *frame) { if (!frame) { ESP_LOGW(TAG, LOG_FMT("Argument is invalid")); return ESP_ERR_INVALID_ARG; }{...} /* Prepare Tx buffer - maximum length is 14, which includes 2 bytes header, 8 bytes length, 4 bytes mask key */ uint8_t tx_len = 0; uint8_t header_buf[10] = {0 }; /* Set the `FIN` bit by default if message is not fragmented. Else, set it as per the `final` field */ header_buf[0] |= (!frame->fragmented) ? HTTPD_WS_FIN_BIT : (frame->final? HTTPD_WS_FIN_BIT: HTTPD_WS_CONTINUE); header_buf[0] |= frame->type; /* Type (opcode): 4 bits */ if (frame->len <= 125) { header_buf[1] = frame->len & 0x7fU; /* Length for 7 bits */ tx_len = 2; }{...} else if (frame->len > 125 && frame->len < UINT16_MAX) { header_buf[1] = 126; /* Length for 16 bits */ header_buf[2] = (frame->len >> 8U) & 0xffU; header_buf[3] = frame->len & 0xffU; tx_len = 4; }{...} else { header_buf[1] = 127; /* Length for 64 bits */ uint8_t shift_idx = sizeof(uint64_t) - 1; /* Shift index starts at 7 */ uint64_t len64 = frame->len; /* Raise variable size to make sure we won't shift by more bits * than the length has (to avoid undefined behaviour) *//* ... */ for (int8_t idx = 2; idx <= 9; idx++) { /* Now do shifting (be careful of endianness, i.e. when buffer index is 2, frame length shift index is 7) */ header_buf[idx] = (len64 >> (shift_idx * 8)) & 0xffU; shift_idx--; }{...} tx_len = 10; }{...} /* WebSocket server does not required to mask response payload, so leave the MASK bit as 0. */ header_buf[1] &= (~HTTPD_WS_MASK_BIT); struct sock_db *sess = httpd_sess_get(hd, fd); if (!sess) { return ESP_ERR_INVALID_ARG; }{...} /* Send off header */ if (sess->send_fn(hd, fd, (const char *)header_buf, tx_len, 0) < 0) { ESP_LOGW(TAG, LOG_FMT("Failed to send WS header")); return ESP_FAIL; }{...} /* Send off payload */ if(frame->len > 0 && frame->payload != NULL) { if (sess->send_fn(hd, fd, (const char *)frame->payload, frame->len, 0) < 0) { ESP_LOGW(TAG, LOG_FMT("Failed to send WS payload")); return ESP_FAIL; }{...} }{...} return ESP_OK; }{ ... } esp_err_t httpd_ws_get_frame_type(httpd_req_t *req) { esp_err_t ret = httpd_ws_check_req(req); if (ret != ESP_OK) { return ret; }{...} struct httpd_req_aux *aux = req->aux; if (aux == NULL) { ESP_LOGW(TAG, LOG_FMT("Invalid Aux pointer")); return ESP_ERR_INVALID_ARG; }{...} struct sock_db *sd = aux->sd; if (sd == NULL) { ESP_LOGW(TAG, LOG_FMT("Invalid sd pointer")); return ESP_ERR_INVALID_ARG; }{...} /* Read the first byte from the frame to get the FIN flag and Opcode */ /* Please refer to RFC6455 Section 5.2 for more details */ uint8_t first_byte = 0; if (httpd_recv_with_opt(req, (char *)&first_byte, sizeof(first_byte), false) <= 0) { /* If the recv() return code is <= 0, then this socket FD is invalid (i.e. a broken connection) */ /* Here we mark it as a Close message and close it later. */ ESP_LOGW(TAG, LOG_FMT("Failed to read header byte (socket FD invalid), closing socket now")); aux->ws_final = true; aux->ws_type = HTTPD_WS_TYPE_CLOSE; return ESP_OK; }{...} ESP_LOGD(TAG, LOG_FMT("First byte received: 0x%02X"), first_byte); /* Decode the FIN flag and Opcode from the byte */ aux->ws_final = (first_byte & HTTPD_WS_FIN_BIT) != 0; aux->ws_type = (first_byte & HTTPD_WS_OPCODE_BITS); /* If userspace requests control frames, do not deal with the control frames */ if (!sd->ws_control_frames) { ESP_LOGD(TAG, LOG_FMT("Handler not requests control frames")); /* Reply to PING. For PONG and CLOSE, it will be handled elsewhere. */ if (aux->ws_type == HTTPD_WS_TYPE_PING) { ESP_LOGD(TAG, LOG_FMT("Got a WS PING frame, Replying PONG...")); /* Read the rest of the PING frame, for PONG to reply back. */ /* Please refer to RFC6455 Section 5.5.2 for more details */ httpd_ws_frame_t frame; uint8_t frame_buf[128] = { 0 }; memset(&frame, 0, sizeof(httpd_ws_frame_t)); frame.payload = frame_buf; if (httpd_ws_recv_frame(req, &frame, 126) != ESP_OK) { ESP_LOGD(TAG, LOG_FMT("Cannot receive the full PING frame")); return ESP_ERR_INVALID_STATE; }{...} /* Now turn the frame to PONG */ frame.type = HTTPD_WS_TYPE_PONG; return httpd_ws_send_frame(req, &frame); }{...} else if (aux->ws_type == HTTPD_WS_TYPE_CLOSE) { ESP_LOGD(TAG, LOG_FMT("Got a WS CLOSE frame, Replying CLOSE...")); /* Read the rest of the CLOSE frame and response */ /* Please refer to RFC6455 Section 5.5.1 for more details */ httpd_ws_frame_t frame; uint8_t frame_buf[128] = { 0 }; memset(&frame, 0, sizeof(httpd_ws_frame_t)); frame.payload = frame_buf; if (httpd_ws_recv_frame(req, &frame, 126) != ESP_OK) { ESP_LOGD(TAG, LOG_FMT("Cannot receive the full CLOSE frame")); return ESP_ERR_INVALID_STATE; }{...} frame.len = 0; frame.type = HTTPD_WS_TYPE_CLOSE; frame.payload = NULL; return httpd_ws_send_frame(req, &frame); }{...} }{...} return ESP_OK; }{ ... } httpd_ws_client_info_t httpd_ws_get_fd_info(httpd_handle_t hd, int fd) { struct sock_db *sess = httpd_sess_get(hd, fd); if (sess == NULL) { return HTTPD_WS_CLIENT_INVALID; }{...} bool is_active_ws = sess->ws_handshake_done && (!sess->ws_close); return is_active_ws ? HTTPD_WS_CLIENT_WEBSOCKET : HTTPD_WS_CLIENT_HTTP; }{ ... } static void httpd_ws_send_cb(void *arg) { async_transfer_t *trans = arg; esp_err_t err = httpd_ws_send_frame_async(trans->handle, trans->socket, &trans->frame); if (trans->blocking) { xEventGroupSetBits(trans->transfer_done, err ? WS_SEND_FAILED : WS_SEND_OK); }{...} else if (trans->callback) { trans->callback(err, trans->socket, trans->arg); }{...} free(trans); }{ ... } esp_err_t httpd_ws_send_data(httpd_handle_t handle, int socket, httpd_ws_frame_t *frame) { async_transfer_t *transfer = calloc(1, sizeof(async_transfer_t)); if (transfer == NULL) { return ESP_ERR_NO_MEM; }{...} EventGroupHandle_t transfer_done = xEventGroupCreate(); if (!transfer_done) { free(transfer); return ESP_ERR_NO_MEM; }{...} transfer->blocking = true; transfer->handle = handle; transfer->socket = socket; transfer->transfer_done = transfer_done; memcpy(&transfer->frame, frame, sizeof(httpd_ws_frame_t)); esp_err_t err = httpd_queue_work(handle, httpd_ws_send_cb, transfer); if (err != ESP_OK) { vEventGroupDelete(transfer_done); free(transfer); return err; }{...} EventBits_t status = xEventGroupWaitBits(transfer_done, WS_SEND_OK | WS_SEND_FAILED, pdTRUE, pdFALSE, portMAX_DELAY); vEventGroupDelete(transfer_done); return (status & WS_SEND_OK) ? ESP_OK : ESP_FAIL; }{ ... } esp_err_t httpd_ws_send_data_async(httpd_handle_t handle, int socket, httpd_ws_frame_t *frame, transfer_complete_cb callback, void *arg) { async_transfer_t *transfer = calloc(1, sizeof(async_transfer_t)); if (transfer == NULL) { return ESP_ERR_NO_MEM; }{...} transfer->arg = arg; transfer->callback = callback; transfer->handle = handle; transfer->socket = socket; memcpy(&transfer->frame, frame, sizeof(httpd_ws_frame_t)); esp_err_t err = httpd_queue_work(handle, httpd_ws_send_cb, transfer); if (err) { free(transfer); return err; }{...} return ESP_OK; }{ ... } /* ... */#endif /* CONFIG_HTTPD_WS_SUPPORT */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.