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 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/http/private/websocket_impl.h>
#include <aws/common/atomics.h>
#include <aws/common/device_random.h>
#include <aws/common/encoding.h>
#include <aws/common/mutex.h>
#include <aws/common/ref_count.h>
#include <aws/http/private/websocket_decoder.h>
#include <aws/http/private/websocket_encoder.h>
#include <aws/http/request_response.h>
#include <aws/io/channel.h>
#include <aws/io/logging.h>
#include <inttypes.h>
#ifdef _MSC_VER
# pragma warning(disable : 4204) /* non-constant aggregate initializer */
#endif
/* TODO: If something goes wrong during normal shutdown, do I change the error_code? */
struct outgoing_frame {
struct aws_websocket_send_frame_options def;
struct aws_linked_list_node node;
};
struct aws_websocket {
struct aws_allocator *alloc;
struct aws_ref_count ref_count;
struct aws_channel_handler channel_handler;
struct aws_channel_slot *channel_slot;
size_t initial_window_size;
bool manual_window_update;
void *user_data;
aws_websocket_on_incoming_frame_begin_fn *on_incoming_frame_begin;
aws_websocket_on_incoming_frame_payload_fn *on_incoming_frame_payload;
aws_websocket_on_incoming_frame_complete_fn *on_incoming_frame_complete;
struct aws_channel_task move_synced_data_to_thread_task;
struct aws_channel_task shutdown_channel_from_offthread_task;
struct aws_channel_task increment_read_window_task;
struct aws_channel_task waiting_on_payload_stream_task;
struct aws_channel_task close_timeout_task;
bool is_server;
/* Data that should only be accessed from the websocket's channel thread. */
struct {
struct aws_websocket_encoder encoder;
/* list of outbound frames that have yet to be encoded and sent to the socket */
struct aws_linked_list outgoing_frame_list;
/* current outbound frame being encoded and sent to the socket */
struct outgoing_frame *current_outgoing_frame;
/*
* list of outbound frames that have been completely written to the io message heading to the socket.
* When the socket write completes we can in turn invoke completion callbacks for all of these frames
*/
struct aws_linked_list write_completion_frames;
struct aws_websocket_decoder decoder;
struct aws_websocket_incoming_frame *current_incoming_frame;
struct aws_websocket_incoming_frame incoming_frame_storage;
/* Payload of incoming PING frame.
* The PONG frame we send in response must have an identical payload */
struct aws_byte_buf incoming_ping_payload;
/* If current incoming frame is CONTINUATION, this is the data type it is a continuation of. */
enum aws_websocket_opcode continuation_of_opcode;
/* Amount to increment window after a channel message has been processed. */
size_t incoming_message_window_update;
/* Cached slot to right */
struct aws_channel_slot *last_known_right_slot;
/* True when no more frames will be read, due to:
* - a CLOSE frame was received
* - decoder error
* - channel shutdown in read-dir
* - user calling aws_websocket_close()
* - user dropping the last refcount
*/
bool is_reading_stopped;
/* True when no more frames will be written, due to:
* - a CLOSE frame was sent
* - encoder error
* - channel shutdown in write-dir */
bool is_writing_stopped;
/* During normal shutdown websocket ensures that a CLOSE frame is sent */
bool is_shutting_down_and_waiting_for_close_frame_to_be_written;
int channel_shutdown_error_code;
bool channel_shutdown_free_scarce_resources_immediately;
/* Wait until each aws_io_message is completely written to
* the socket before sending the next aws_io_message */
bool is_waiting_for_write_completion;
/* If, while writing out data from a payload stream, we experience "read would block",
* schedule a task to try again in the near-future. */
bool is_waiting_on_payload_stream_task;
/* True if this websocket is being used as a dumb mid-channel handler.
* The websocket will no longer respond to its public API or invoke callbacks. */
bool is_midchannel_handler;
} thread_data;
/* Data that may be touched from any thread (lock must be held). */
struct {
struct aws_mutex lock;
struct aws_linked_list outgoing_frame_list;
/* If non-zero, then increment_read_window_task is scheduled */
size_t window_increment_size;
/* Error-code returned by aws_websocket_send_frame() when is_writing_stopped is true */
int send_frame_error_code;
/* Use a task to issue a channel shutdown from off-thread. */
int shutdown_channel_from_offthread_task_error_code;
bool is_shutdown_channel_from_offthread_task_scheduled;
bool is_move_synced_data_to_thread_task_scheduled;
/* Mirrors variable from thread_data */
bool is_midchannel_handler;
} synced_data;
};
static int s_handler_process_read_message(
struct aws_channel_handler *handler,
struct aws_channel_slot *slot,
struct aws_io_message *message);
static int s_handler_process_write_message(
struct aws_channel_handler *handler,
struct aws_channel_slot *slot,
struct aws_io_message *message);
static int s_handler_increment_read_window(
struct aws_channel_handler *handler,
struct aws_channel_slot *slot,
size_t size);
static int s_handler_shutdown(
struct aws_channel_handler *handler,
struct aws_channel_slot *slot,
enum aws_channel_direction dir,
int error_code,
bool free_scarce_resources_immediately);
static size_t s_handler_initial_window_size(struct aws_channel_handler *handler);
static size_t s_handler_message_overhead(struct aws_channel_handler *handler);
static void s_handler_destroy(struct aws_channel_handler *handler);
static void s_websocket_on_refcount_zero(void *user_data);
static int s_encoder_stream_outgoing_payload(struct aws_byte_buf *out_buf, void *user_data);
static int s_decoder_on_frame(const struct aws_websocket_frame *frame, void *user_data);
static int s_decoder_on_payload(struct aws_byte_cursor data, void *user_data);
static int s_decoder_on_user_payload(struct aws_websocket *websocket, struct aws_byte_cursor data);
static int s_decoder_on_midchannel_payload(struct aws_websocket *websocket, struct aws_byte_cursor data);
static void s_destroy_outgoing_frame(struct aws_websocket *websocket, struct outgoing_frame *frame, int error_code);
static void s_complete_frame_list(struct aws_websocket *websocket, struct aws_linked_list *frames, int error_code);
static void s_complete_incoming_frame(struct aws_websocket *websocket, int error_code, bool *out_callback_result);
static void s_finish_shutdown(struct aws_websocket *websocket);
static void s_io_message_write_completed(
struct aws_channel *channel,
struct aws_io_message *message,
int err_code,
void *user_data);
static int s_send_frame(
struct aws_websocket *websocket,
const struct aws_websocket_send_frame_options *options,
bool from_public_api);
static bool s_midchannel_send_payload(struct aws_websocket *websocket, struct aws_byte_buf *out_buf, void *user_data);
static void s_midchannel_send_complete(struct aws_websocket *websocket, int error_code, void *user_data);
static void s_move_synced_data_to_thread_task(struct aws_channel_task *task, void *arg, enum aws_task_status status);
static void s_increment_read_window_task(struct aws_channel_task *task, void *arg, enum aws_task_status status);
static void s_shutdown_channel_from_offthread_task(
struct aws_channel_task *task,
void *arg,
enum aws_task_status status);
static void s_waiting_on_payload_stream_task(struct aws_channel_task *task, void *arg, enum aws_task_status status);
static void s_close_timeout_task(struct aws_channel_task *task, void *arg, enum aws_task_status status);
static void s_schedule_channel_shutdown_from_offthread(struct aws_websocket *websocket, int error_code);
static void s_shutdown_due_to_write_err(struct aws_websocket *websocket, int error_code);
static void s_shutdown_due_to_read_err(struct aws_websocket *websocket, int error_code);
static void s_stop_writing(struct aws_websocket *websocket, int send_frame_error_code);
static void s_try_write_outgoing_frames(struct aws_websocket *websocket);
static struct aws_channel_handler_vtable s_channel_handler_vtable = {
.process_read_message = s_handler_process_read_message,
.process_write_message = s_handler_process_write_message,
.increment_read_window = s_handler_increment_read_window,
.shutdown = s_handler_shutdown,
.initial_window_size = s_handler_initial_window_size,
.message_overhead = s_handler_message_overhead,
.destroy = s_handler_destroy,
};
const char *aws_websocket_opcode_str(uint8_t opcode) {
switch (opcode) {
case AWS_WEBSOCKET_OPCODE_CONTINUATION:
return "continuation";
case AWS_WEBSOCKET_OPCODE_TEXT:
return "text";
case AWS_WEBSOCKET_OPCODE_BINARY:
return "binary";
case AWS_WEBSOCKET_OPCODE_CLOSE:
return "close";
case AWS_WEBSOCKET_OPCODE_PING:
return "ping";
case AWS_WEBSOCKET_OPCODE_PONG:
return "pong";
default:
return "";
}
}
bool aws_websocket_is_data_frame(uint8_t opcode) {
/* RFC-6455 Section 5.6: Most significant bit of (4 bit) data frame opcode is 0 */
return !(opcode & 0x08);
}
static void s_lock_synced_data(struct aws_websocket *websocket) {
int err = aws_mutex_lock(&websocket->synced_data.lock);
AWS_ASSERT(!err);
(void)err;
}
static void s_unlock_synced_data(struct aws_websocket *websocket) {
int err = aws_mutex_unlock(&websocket->synced_data.lock);
AWS_ASSERT(!err);
(void)err;
}
struct aws_websocket *aws_websocket_handler_new(const struct aws_websocket_handler_options *options) {
struct aws_channel_slot *slot = NULL;
struct aws_websocket *websocket = NULL;
int err;
slot = aws_channel_slot_new(options->channel);
if (!slot) {
goto error;
}
err = aws_channel_slot_insert_end(options->channel, slot);
if (err) {
goto error;
}
websocket = aws_mem_calloc(options->allocator, 1, sizeof(struct aws_websocket));
if (!websocket) {
goto error;
}
websocket->alloc = options->allocator;
aws_ref_count_init(&websocket->ref_count, websocket, s_websocket_on_refcount_zero);
websocket->channel_handler.vtable = &s_channel_handler_vtable;
websocket->channel_handler.alloc = options->allocator;
websocket->channel_handler.impl = websocket;
websocket->channel_slot = slot;
websocket->initial_window_size = options->initial_window_size;
websocket->manual_window_update = options->manual_window_update;
websocket->user_data = options->user_data;
websocket->on_incoming_frame_begin = options->on_incoming_frame_begin;
websocket->on_incoming_frame_payload = options->on_incoming_frame_payload;
websocket->on_incoming_frame_complete = options->on_incoming_frame_complete;
websocket->is_server = options->is_server;
aws_channel_task_init(
&websocket->move_synced_data_to_thread_task,
s_move_synced_data_to_thread_task,
websocket,
"websocket_move_synced_data_to_thread");
aws_channel_task_init(
&websocket->shutdown_channel_from_offthread_task,
s_shutdown_channel_from_offthread_task,
websocket,
"websocket_shutdown_channel");
aws_channel_task_init(
&websocket->increment_read_window_task,
s_increment_read_window_task,
websocket,
"websocket_increment_read_window");
aws_channel_task_init(
&websocket->waiting_on_payload_stream_task,
s_waiting_on_payload_stream_task,
websocket,
"websocket_waiting_on_payload_stream");
aws_channel_task_init(&websocket->close_timeout_task, s_close_timeout_task, websocket, "websocket_close_timeout");
aws_linked_list_init(&websocket->thread_data.outgoing_frame_list);
aws_linked_list_init(&websocket->thread_data.write_completion_frames);
aws_byte_buf_init(&websocket->thread_data.incoming_ping_payload, websocket->alloc, 0);
aws_websocket_encoder_init(&websocket->thread_data.encoder, s_encoder_stream_outgoing_payload, websocket);
aws_websocket_decoder_init(
&websocket->thread_data.decoder, options->allocator, s_decoder_on_frame, s_decoder_on_payload, websocket);
aws_linked_list_init(&websocket->synced_data.outgoing_frame_list);
err = aws_mutex_init(&websocket->synced_data.lock);
if (err) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"static: Failed to initialize mutex, error %d (%s).",
aws_last_error(),
aws_error_name(aws_last_error()));
goto error;
}
err = aws_channel_slot_set_handler(slot, &websocket->channel_handler);
if (err) {
goto error;
}
/* Ensure websocket (and the rest of the channel) can't be destroyed until aws_websocket_release() is called */
aws_channel_acquire_hold(options->channel);
return websocket;
error:
if (slot) {
if (websocket && !slot->handler) {
websocket->channel_handler.vtable->destroy(&websocket->channel_handler);
}
aws_channel_slot_remove(slot);
}
return NULL;
}
static void s_handler_destroy(struct aws_channel_handler *handler) {
struct aws_websocket *websocket = handler->impl;
AWS_ASSERT(!websocket->thread_data.current_outgoing_frame);
AWS_ASSERT(!websocket->thread_data.current_incoming_frame);
AWS_LOGF_TRACE(AWS_LS_HTTP_WEBSOCKET, "id=%p: Destroying websocket.", (void *)websocket);
aws_websocket_decoder_clean_up(&websocket->thread_data.decoder);
aws_byte_buf_clean_up(&websocket->thread_data.incoming_ping_payload);
aws_mutex_clean_up(&websocket->synced_data.lock);
aws_mem_release(websocket->alloc, websocket);
}
struct aws_websocket *aws_websocket_acquire(struct aws_websocket *websocket) {
AWS_PRECONDITION(websocket);
AWS_LOGF_TRACE(AWS_LS_HTTP_WEBSOCKET, "id=%p: Acquiring websocket ref-count.", (void *)websocket);
aws_ref_count_acquire(&websocket->ref_count);
return websocket;
}
void aws_websocket_release(struct aws_websocket *websocket) {
if (!websocket) {
return;
}
AWS_LOGF_TRACE(AWS_LS_HTTP_WEBSOCKET, "id=%p: Releasing websocket ref-count.", (void *)websocket);
aws_ref_count_release(&websocket->ref_count);
}
static void s_websocket_on_refcount_zero(void *user_data) {
struct aws_websocket *websocket = user_data;
AWS_ASSERT(websocket->channel_slot);
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET, "id=%p: Websocket ref-count is zero, shut down if necessary.", (void *)websocket);
/* Channel might already be shut down, but make sure */
s_schedule_channel_shutdown_from_offthread(websocket, AWS_ERROR_SUCCESS);
/* Channel won't destroy its slots/handlers until its refcount reaches 0 */
aws_channel_release_hold(websocket->channel_slot->channel);
}
struct aws_channel *aws_websocket_get_channel(const struct aws_websocket *websocket) {
return websocket->channel_slot->channel;
}
int aws_websocket_convert_to_midchannel_handler(struct aws_websocket *websocket) {
if (!aws_channel_thread_is_callers_thread(websocket->channel_slot->channel)) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET, "id=%p: Cannot convert to midchannel handler on this thread.", (void *)websocket);
return aws_raise_error(AWS_ERROR_IO_EVENT_LOOP_THREAD_ONLY);
}
if (websocket->thread_data.is_midchannel_handler) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET, "id=%p: Websocket has already converted to midchannel handler.", (void *)websocket);
return aws_raise_error(AWS_ERROR_HTTP_WEBSOCKET_IS_MIDCHANNEL_HANDLER);
}
if (websocket->thread_data.is_reading_stopped || websocket->thread_data.is_writing_stopped) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Cannot convert websocket to midchannel handler because it is closed or closing.",
(void *)websocket);
return aws_raise_error(AWS_ERROR_HTTP_CONNECTION_CLOSED);
}
if (websocket->thread_data.current_incoming_frame) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Cannot convert to midchannel handler in the middle of an incoming frame.",
(void *)websocket);
return aws_raise_error(AWS_ERROR_INVALID_STATE);
}
websocket->thread_data.is_midchannel_handler = true;
return AWS_OP_SUCCESS;
}
static int s_send_frame(
struct aws_websocket *websocket,
const struct aws_websocket_send_frame_options *options,
bool from_public_api) {
AWS_ASSERT(websocket);
AWS_ASSERT(options);
/* Check for bad input. Log about non-obvious errors. */
if (options->payload_length > 0 && !options->stream_outgoing_payload) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Invalid frame options, payload streaming function required when payload length is non-zero.",
(void *)websocket);
return aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
}
struct outgoing_frame *frame = aws_mem_calloc(websocket->alloc, 1, sizeof(struct outgoing_frame));
if (!frame) {
return AWS_OP_ERR;
}
frame->def = *options;
/* Enqueue frame, unless no further sending is allowed. */
int send_error = 0;
bool should_schedule_task = false;
/* BEGIN CRITICAL SECTION */
s_lock_synced_data(websocket);
if (websocket->synced_data.is_midchannel_handler && from_public_api) {
send_error = AWS_ERROR_HTTP_WEBSOCKET_IS_MIDCHANNEL_HANDLER;
} else if (websocket->synced_data.send_frame_error_code) {
send_error = websocket->synced_data.send_frame_error_code;
} else {
aws_linked_list_push_back(&websocket->synced_data.outgoing_frame_list, &frame->node);
if (!websocket->synced_data.is_move_synced_data_to_thread_task_scheduled) {
websocket->synced_data.is_move_synced_data_to_thread_task_scheduled = true;
should_schedule_task = true;
}
}
s_unlock_synced_data(websocket);
/* END CRITICAL SECTION */
if (send_error) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Cannot send frame, error %d (%s).",
(void *)websocket,
send_error,
aws_error_name(send_error));
aws_mem_release(websocket->alloc, frame);
return aws_raise_error(send_error);
}
AWS_LOGF_DEBUG(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Enqueuing outgoing frame with opcode=%" PRIu8 "(%s) length=%" PRIu64 " fin=%s",
(void *)websocket,
options->opcode,
aws_websocket_opcode_str(options->opcode),
options->payload_length,
options->fin ? "T" : "F");
if (should_schedule_task) {
AWS_LOGF_TRACE(AWS_LS_HTTP_WEBSOCKET, "id=%p: Scheduling synced data task.", (void *)websocket);
aws_channel_schedule_task_now(websocket->channel_slot->channel, &websocket->move_synced_data_to_thread_task);
}
return AWS_OP_SUCCESS;
}
int aws_websocket_send_frame(struct aws_websocket *websocket, const struct aws_websocket_send_frame_options *options) {
return s_send_frame(websocket, options, true);
}
static void s_move_synced_data_to_thread_task(struct aws_channel_task *task, void *arg, enum aws_task_status status) {
(void)task;
if (status != AWS_TASK_STATUS_RUN_READY) {
return;
}
struct aws_websocket *websocket = arg;
struct aws_linked_list tmp_list;
aws_linked_list_init(&tmp_list);
/* BEGIN CRITICAL SECTION */
s_lock_synced_data(websocket);
aws_linked_list_swap_contents(&websocket->synced_data.outgoing_frame_list, &tmp_list);
websocket->synced_data.is_move_synced_data_to_thread_task_scheduled = false;
s_unlock_synced_data(websocket);
/* END CRITICAL SECTION */
if (!aws_linked_list_empty(&tmp_list)) {
aws_linked_list_move_all_back(&websocket->thread_data.outgoing_frame_list, &tmp_list);
s_try_write_outgoing_frames(websocket);
}
}
static void s_try_write_outgoing_frames(struct aws_websocket *websocket) {
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
int err;
/* Check whether we should be writing data */
if (!websocket->thread_data.current_outgoing_frame &&
aws_linked_list_empty(&websocket->thread_data.outgoing_frame_list)) {
AWS_LOGF_TRACE(AWS_LS_HTTP_WEBSOCKET, "id=%p: No data to write at this time.", (void *)websocket);
return;
}
if (websocket->thread_data.is_waiting_for_write_completion) {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Waiting until outstanding aws_io_message is written to socket before sending more data.",
(void *)websocket);
return;
}
if (websocket->thread_data.is_writing_stopped) {
AWS_LOGF_TRACE(AWS_LS_HTTP_WEBSOCKET, "id=%p: Websocket is no longer sending data.", (void *)websocket);
return;
}
/* Acquire aws_io_message */
struct aws_io_message *io_msg = aws_channel_slot_acquire_max_message_for_write(websocket->channel_slot);
if (!io_msg) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Failed acquire message from pool, error %d (%s).",
(void *)websocket,
aws_last_error(),
aws_error_name(aws_last_error()));
goto error;
}
io_msg->user_data = websocket;
io_msg->on_completion = s_io_message_write_completed;
/* Loop through frames, writing their data into the io_msg */
bool wrote_close_frame = false;
while (!websocket->thread_data.is_writing_stopped) {
if (websocket->thread_data.current_outgoing_frame) {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Resuming write of frame=%p opcode=%" PRIu8 "(%s) payload-length=%" PRIu64 ".",
(void *)websocket,
(void *)websocket->thread_data.current_outgoing_frame,
websocket->thread_data.current_outgoing_frame->def.opcode,
aws_websocket_opcode_str(websocket->thread_data.current_outgoing_frame->def.opcode),
websocket->thread_data.current_outgoing_frame->def.payload_length);
} else {
/* We're not in the middle of encoding a frame, so pop off the next one to encode. */
if (aws_linked_list_empty(&websocket->thread_data.outgoing_frame_list)) {
AWS_LOGF_TRACE(AWS_LS_HTTP_WEBSOCKET, "id=%p: No more frames to write.", (void *)websocket);
break;
}
struct aws_linked_list_node *node = aws_linked_list_pop_front(&websocket->thread_data.outgoing_frame_list);
websocket->thread_data.current_outgoing_frame = AWS_CONTAINER_OF(node, struct outgoing_frame, node);
struct aws_websocket_frame frame = {
.fin = websocket->thread_data.current_outgoing_frame->def.fin,
.opcode = websocket->thread_data.current_outgoing_frame->def.opcode,
.payload_length = websocket->thread_data.current_outgoing_frame->def.payload_length,
};
/* RFC-6455 Section 5.3 Client-to-Server Masking
* Clients must mask payload with key derived from an unpredictable source of entropy. */
if (!websocket->is_server) {
frame.masked = true;
/* TODO: faster source of random (but still seeded by device_random) */
struct aws_byte_buf masking_key_buf = aws_byte_buf_from_empty_array(frame.masking_key, 4);
err = aws_device_random_buffer(&masking_key_buf);
if (err) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Failed to derive masking key, error %d (%s).",
(void *)websocket,
aws_last_error(),
aws_error_name(aws_last_error()));
goto error;
}
}
err = aws_websocket_encoder_start_frame(&websocket->thread_data.encoder, &frame);
if (err) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Failed to start frame encoding, error %d (%s).",
(void *)websocket,
aws_last_error(),
aws_error_name(aws_last_error()));
goto error;
}
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Start writing frame=%p opcode=%" PRIu8 "(%s) payload-length=%" PRIu64 ".",
(void *)websocket,
(void *)websocket->thread_data.current_outgoing_frame,
websocket->thread_data.current_outgoing_frame->def.opcode,
aws_websocket_opcode_str(websocket->thread_data.current_outgoing_frame->def.opcode),
websocket->thread_data.current_outgoing_frame->def.payload_length);
}
err = aws_websocket_encoder_process(&websocket->thread_data.encoder, &io_msg->message_data);
if (err) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Frame encoding failed with error %d (%s).",
(void *)websocket,
aws_last_error(),
aws_error_name(aws_last_error()));
goto error;
}
if (aws_websocket_encoder_is_frame_in_progress(&websocket->thread_data.encoder)) {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Outgoing frame still in progress, but no more data can be written at this time.",
(void *)websocket);
break;
}
if (websocket->thread_data.current_outgoing_frame->def.opcode == AWS_WEBSOCKET_OPCODE_CLOSE) {
wrote_close_frame = true;
}
/*
* a completely-written frame gets added to the write completion list so that when the socket write completes
* we can complete all of the outbound frames that were finished as part of the io message
*/
aws_linked_list_push_back(
&websocket->thread_data.write_completion_frames, &websocket->thread_data.current_outgoing_frame->node);
websocket->thread_data.current_outgoing_frame = NULL;
if (wrote_close_frame) {
break;
}
}
/* If payload stream didn't have any bytes available to read right now, then the aws_io_message might be empty.
* If this is the case schedule a task to try again in the future. */
if (io_msg->message_data.len == 0) {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Reading from payload stream would block, will try again later.",
(void *)websocket);
if (!websocket->thread_data.is_waiting_on_payload_stream_task) {
websocket->thread_data.is_waiting_on_payload_stream_task = true;
/* Future Optimization Idea: Minimize work while we wait. Use some kind of backoff for the retry timing,
* or have some way for stream to notify when more data is available. */
aws_channel_schedule_task_now(websocket->channel_slot->channel, &websocket->waiting_on_payload_stream_task);
}
aws_mem_release(io_msg->allocator, io_msg);
return;
}
/* Prepare to send aws_io_message up the channel. */
/* If CLOSE frame was written, that's the last data we'll write */
if (wrote_close_frame) {
s_stop_writing(websocket, AWS_ERROR_HTTP_WEBSOCKET_CLOSE_FRAME_SENT);
}
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Sending aws_io_message of size %zu in write direction.",
(void *)websocket,
io_msg->message_data.len);
websocket->thread_data.is_waiting_for_write_completion = true;
err = aws_channel_slot_send_message(websocket->channel_slot, io_msg, AWS_CHANNEL_DIR_WRITE);
if (err) {
websocket->thread_data.is_waiting_for_write_completion = false;
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Failed to send message in write direction, error %d (%s).",
(void *)websocket,
aws_last_error(),
aws_error_name(aws_last_error()));
goto error;
}
/* Finish shutdown if we were waiting for the CLOSE frame to be written */
if (wrote_close_frame && websocket->thread_data.is_shutting_down_and_waiting_for_close_frame_to_be_written) {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET, "id=%p: CLOSE frame sent, finishing handler shutdown sequence.", (void *)websocket);
s_finish_shutdown(websocket);
}
return;
error:
if (io_msg) {
aws_mem_release(io_msg->allocator, io_msg);
}
s_shutdown_due_to_write_err(websocket, aws_last_error());
}
/* Encoder's outgoing_payload callback invokes current frame's callback */
static int s_encoder_stream_outgoing_payload(struct aws_byte_buf *out_buf, void *user_data) {
struct aws_websocket *websocket = user_data;
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
AWS_ASSERT(websocket->thread_data.current_outgoing_frame);
struct outgoing_frame *current_frame = websocket->thread_data.current_outgoing_frame;
AWS_ASSERT(current_frame->def.stream_outgoing_payload);
bool callback_result = current_frame->def.stream_outgoing_payload(websocket, out_buf, current_frame->def.user_data);
if (!callback_result) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET, "id=%p: Outgoing payload callback has reported a failure.", (void *)websocket);
return aws_raise_error(AWS_ERROR_HTTP_CALLBACK_FAILURE);
}
return AWS_OP_SUCCESS;
}
static void s_waiting_on_payload_stream_task(struct aws_channel_task *task, void *arg, enum aws_task_status status) {
(void)task;
if (status != AWS_TASK_STATUS_RUN_READY) {
/* If channel has shut down, don't need to resume sending payload */
return;
}
struct aws_websocket *websocket = arg;
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET, "id=%p: Done waiting for payload stream, sending more data...", (void *)websocket);
websocket->thread_data.is_waiting_on_payload_stream_task = false;
s_try_write_outgoing_frames(websocket);
}
static void s_io_message_write_completed(
struct aws_channel *channel,
struct aws_io_message *message,
int err_code,
void *user_data) {
(void)channel;
(void)message;
struct aws_websocket *websocket = user_data;
AWS_ASSERT(aws_channel_thread_is_callers_thread(channel));
/*
* Invoke the completion callbacks (and then destroy) for all the frames that were completely written as
* part of this message completion at the socket layer
*/
s_complete_frame_list(websocket, &websocket->thread_data.write_completion_frames, err_code);
if (err_code == AWS_ERROR_SUCCESS) {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET, "id=%p: aws_io_message written to socket, sending more data...", (void *)websocket);
websocket->thread_data.is_waiting_for_write_completion = false;
s_try_write_outgoing_frames(websocket);
} else {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: aws_io_message did not finish writing to socket, error %d (%s).",
(void *)websocket,
err_code,
aws_error_name(err_code));
s_shutdown_due_to_write_err(websocket, err_code);
}
}
static int s_handler_process_write_message(
struct aws_channel_handler *handler,
struct aws_channel_slot *slot,
struct aws_io_message *message) {
(void)slot;
struct aws_websocket *websocket = handler->impl;
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
/* For each aws_io_message headed in the write direction, send a BINARY frame,
* where the frame's payload is the data from this aws_io_message. */
struct aws_websocket_send_frame_options options = {
.payload_length = message->message_data.len,
.user_data = message,
.stream_outgoing_payload = s_midchannel_send_payload,
.on_complete = s_midchannel_send_complete,
.opcode = AWS_WEBSOCKET_OPCODE_BINARY,
.fin = true,
};
/* Use copy_mark to track progress as the data is streamed out */
message->copy_mark = 0;
int err = s_send_frame(websocket, &options, false);
if (err) {
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
/* Callback for writing data from downstream aws_io_messages into payload of BINARY frames headed upstream */
static bool s_midchannel_send_payload(struct aws_websocket *websocket, struct aws_byte_buf *out_buf, void *user_data) {
(void)websocket;
struct aws_io_message *io_msg = user_data;
/* copy_mark is used to track progress */
size_t src_available = io_msg->message_data.len - io_msg->copy_mark;
size_t dst_available = out_buf->capacity - out_buf->len;
size_t sending = dst_available < src_available ? dst_available : src_available;
bool success = aws_byte_buf_write(out_buf, io_msg->message_data.buffer + io_msg->copy_mark, sending);
io_msg->copy_mark += sending;
return success;
}
/* Callback when data from downstream aws_io_messages, finishes being sent as a BINARY frame upstream. */
static void s_midchannel_send_complete(struct aws_websocket *websocket, int error_code, void *user_data) {
(void)websocket;
struct aws_io_message *io_msg = user_data;
if (io_msg->on_completion) {
io_msg->on_completion(io_msg->owning_channel, io_msg, error_code, io_msg->user_data);
}
aws_mem_release(io_msg->allocator, io_msg);
}
static void s_destroy_outgoing_frame(struct aws_websocket *websocket, struct outgoing_frame *frame, int error_code) {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Completed outgoing frame=%p opcode=%" PRIu8 "(%s) payload-length=%" PRIu64 " with error_code %d (%s).",
(void *)websocket,
(void *)frame,
frame->def.opcode,
aws_websocket_opcode_str(frame->def.opcode),
frame->def.payload_length,
error_code,
aws_error_name(error_code));
if (frame->def.on_complete) {
frame->def.on_complete(websocket, error_code, frame->def.user_data);
}
aws_mem_release(websocket->alloc, frame);
}
static void s_complete_frame_list(struct aws_websocket *websocket, struct aws_linked_list *frames, int error_code) {
struct aws_linked_list_node *node = aws_linked_list_begin(frames);
while (node != aws_linked_list_end(frames)) {
struct outgoing_frame *frame = AWS_CONTAINER_OF(node, struct outgoing_frame, node);
node = aws_linked_list_next(node);
s_destroy_outgoing_frame(websocket, frame, error_code);
}
/* we've released everything, so reset the list to empty */
aws_linked_list_init(frames);
}
/* Set is_reading_stopped = true, all further read data will be ignored.
* But also increment the read window, so that channel shutdown won't deadlock
* due to pending read-data in an upstream handler or the underlying OS socket. */
static void s_stop_reading_and_dont_block_shutdown(struct aws_websocket *websocket) {
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
if (websocket->thread_data.is_reading_stopped) {
return;
}
AWS_LOGF_TRACE(AWS_LS_HTTP_WEBSOCKET, "id=%p: Websocket will ignore any further read data.", (void *)websocket);
websocket->thread_data.is_reading_stopped = true;
aws_channel_slot_increment_read_window(websocket->channel_slot, SIZE_MAX);
}
static void s_stop_writing(struct aws_websocket *websocket, int send_frame_error_code) {
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
AWS_ASSERT(send_frame_error_code != AWS_ERROR_SUCCESS);
if (websocket->thread_data.is_writing_stopped) {
return;
}
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Websocket will send no more data, future attempts to send will get error %d (%s).",
(void *)websocket,
send_frame_error_code,
aws_error_name(send_frame_error_code));
/* BEGIN CRITICAL SECTION */
s_lock_synced_data(websocket);
websocket->synced_data.send_frame_error_code = send_frame_error_code;
s_unlock_synced_data(websocket);
/* END CRITICAL SECTION */
websocket->thread_data.is_writing_stopped = true;
}
static void s_shutdown_due_to_write_err(struct aws_websocket *websocket, int error_code) {
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
/* No more writing allowed (it's ok to call this redundantly). */
s_stop_writing(websocket, AWS_ERROR_HTTP_CONNECTION_CLOSED);
/* If there's a current outgoing frame, complete it with the specific error code.
* Any other pending frames will complete with the generic CONNECTION_CLOSED error. */
if (websocket->thread_data.current_outgoing_frame) {
s_destroy_outgoing_frame(websocket, websocket->thread_data.current_outgoing_frame, error_code);
websocket->thread_data.current_outgoing_frame = NULL;
}
/* If we're in the final stages of shutdown, ensure shutdown completes.
* Otherwise tell the channel to shutdown (it's ok to shutdown the channel redundantly). */
if (websocket->thread_data.is_shutting_down_and_waiting_for_close_frame_to_be_written) {
s_finish_shutdown(websocket);
} else {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Closing websocket due to failure during write, error %d (%s).",
(void *)websocket,
error_code,
aws_error_name(error_code));
aws_channel_shutdown(websocket->channel_slot->channel, error_code);
}
}
static void s_shutdown_due_to_read_err(struct aws_websocket *websocket, int error_code) {
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Closing websocket due to failure during read, error %d (%s).",
(void *)websocket,
error_code,
aws_error_name(error_code));
s_stop_reading_and_dont_block_shutdown(websocket);
/* If there's a current incoming frame, complete it with the specific error code. */
if (websocket->thread_data.current_incoming_frame) {
s_complete_incoming_frame(websocket, error_code, NULL);
}
/* Tell channel to shutdown (it's ok to call this redundantly) */
aws_channel_shutdown(websocket->channel_slot->channel, error_code);
}
static void s_shutdown_channel_from_offthread_task(
struct aws_channel_task *task,
void *arg,
enum aws_task_status status) {
(void)task;
if (status != AWS_TASK_STATUS_RUN_READY) {
return;
}
struct aws_websocket *websocket = arg;
int error_code;
/* BEGIN CRITICAL SECTION */
s_lock_synced_data(websocket);
error_code = websocket->synced_data.shutdown_channel_from_offthread_task_error_code;
s_unlock_synced_data(websocket);
/* END CRITICAL SECTION */
/* Stop reading, so that shutdown won't be blocked.
* If something off-thread is causing shutdown (aws_websocket_close(), refcount 0, etc),
* the user may never interact with the websocket again. We can't rely on them
* to keep the window open and prevent deadlock during shutdown. */
s_stop_reading_and_dont_block_shutdown(websocket);
aws_channel_shutdown(websocket->channel_slot->channel, error_code);
}
/* Tell the channel to shut down, from off-thread. It is safe to call this multiple times. */
static void s_schedule_channel_shutdown_from_offthread(struct aws_websocket *websocket, int error_code) {
bool schedule_shutdown = false;
/* BEGIN CRITICAL SECTION */
s_lock_synced_data(websocket);
if (!websocket->synced_data.is_shutdown_channel_from_offthread_task_scheduled) {
schedule_shutdown = true;
websocket->synced_data.is_shutdown_channel_from_offthread_task_scheduled = true;
websocket->synced_data.shutdown_channel_from_offthread_task_error_code = error_code;
}
s_unlock_synced_data(websocket);
/* END CRITICAL SECTION */
if (schedule_shutdown) {
aws_channel_schedule_task_now(
websocket->channel_slot->channel, &websocket->shutdown_channel_from_offthread_task);
}
}
void aws_websocket_close(struct aws_websocket *websocket, bool free_scarce_resources_immediately) {
bool is_midchannel_handler;
/* BEGIN CRITICAL SECTION */
s_lock_synced_data(websocket);
is_midchannel_handler = websocket->synced_data.is_midchannel_handler;
s_unlock_synced_data(websocket);
/* END CRITICAL SECTION */
if (is_midchannel_handler) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Ignoring close call, websocket has converted to midchannel handler.",
(void *)websocket);
return;
}
/* TODO: aws_channel_shutdown() should let users specify error_code and "immediate" as separate parameters. */
int error_code = AWS_ERROR_SUCCESS;
if (free_scarce_resources_immediately) {
error_code = AWS_ERROR_HTTP_CONNECTION_CLOSED;
}
s_schedule_channel_shutdown_from_offthread(websocket, error_code);
}
static int s_handler_shutdown(
struct aws_channel_handler *handler,
struct aws_channel_slot *slot,
enum aws_channel_direction dir,
int error_code,
bool free_scarce_resources_immediately) {
AWS_ASSERT(aws_channel_thread_is_callers_thread(slot->channel));
struct aws_websocket *websocket = handler->impl;
int err;
AWS_LOGF_DEBUG(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Websocket handler shutting down dir=%s error_code=%d immediate=%d.",
(void *)websocket,
dir == AWS_CHANNEL_DIR_READ ? "READ" : "WRITE",
error_code,
free_scarce_resources_immediately);
if (dir == AWS_CHANNEL_DIR_READ) {
/* Shutdown in the read direction is immediate and simple. */
websocket->thread_data.is_reading_stopped = true;
aws_channel_slot_on_handler_shutdown_complete(slot, dir, error_code, free_scarce_resources_immediately);
} else {
websocket->thread_data.channel_shutdown_error_code = error_code;
websocket->thread_data.channel_shutdown_free_scarce_resources_immediately = free_scarce_resources_immediately;
websocket->thread_data.is_shutting_down_and_waiting_for_close_frame_to_be_written = true;
if (websocket->thread_data.channel_shutdown_free_scarce_resources_immediately ||
websocket->thread_data.is_writing_stopped) {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Finishing handler shutdown immediately, without ensuring a CLOSE frame was sent.",
(void *)websocket);
s_stop_writing(websocket, AWS_ERROR_HTTP_CONNECTION_CLOSED);
s_finish_shutdown(websocket);
} else {
/* Attempt to queue a CLOSE frame, then wait for it to send before finishing shutdown. */
struct aws_websocket_send_frame_options close_frame = {
.opcode = AWS_WEBSOCKET_OPCODE_CLOSE,
.fin = true,
};
err = s_send_frame(websocket, &close_frame, false);
if (err) {
AWS_LOGF_WARN(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Failed to send CLOSE frame, error %d (%s).",
(void *)websocket,
aws_last_error(),
aws_error_name(aws_last_error()));
s_stop_writing(websocket, AWS_ERROR_HTTP_CONNECTION_CLOSED);
s_finish_shutdown(websocket);
} else {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Outgoing CLOSE frame queued, handler will finish shutdown once it's sent.",
(void *)websocket);
/* schedule a task to run after 1 sec. If the CLOSE still not sent at that time, we should just cancel
* sending it and shutdown the channel. */
uint64_t schedule_time = 0;
aws_channel_current_clock_time(websocket->channel_slot->channel, &schedule_time);
schedule_time += AWS_WEBSOCKET_CLOSE_TIMEOUT;
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: websocket_close_timeout task will be run at timestamp %" PRIu64,
(void *)websocket,
schedule_time);
aws_channel_schedule_task_future(
websocket->channel_slot->channel, &websocket->close_timeout_task, schedule_time);
}
}
}
return AWS_OP_SUCCESS;
}
static void s_close_timeout_task(struct aws_channel_task *task, void *arg, enum aws_task_status status) {
(void)task;
if (status != AWS_TASK_STATUS_RUN_READY) {
/* If channel has shut down, don't need to resume sending payload */
return;
}
struct aws_websocket *websocket = arg;
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
if (!websocket->thread_data.is_shutting_down_and_waiting_for_close_frame_to_be_written) {
/* Not waiting for write to complete, which means the CLOSE frame has sent, just do nothing */
return;
}
AWS_LOGF_WARN(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Failed to send CLOSE frame, timeout happened, shutdown the channel",
(void *)websocket);
s_stop_writing(websocket, AWS_ERROR_HTTP_CONNECTION_CLOSED);
s_finish_shutdown(websocket);
}
static void s_finish_shutdown(struct aws_websocket *websocket) {
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
AWS_ASSERT(websocket->thread_data.is_writing_stopped);
AWS_ASSERT(websocket->thread_data.is_shutting_down_and_waiting_for_close_frame_to_be_written);
AWS_LOGF_TRACE(AWS_LS_HTTP_WEBSOCKET, "id=%p: Finishing websocket handler shutdown.", (void *)websocket);
websocket->thread_data.is_shutting_down_and_waiting_for_close_frame_to_be_written = false;
/* Cancel all incomplete frames */
if (websocket->thread_data.current_incoming_frame) {
s_complete_incoming_frame(websocket, AWS_ERROR_HTTP_CONNECTION_CLOSED, NULL);
}
if (websocket->thread_data.current_outgoing_frame) {
s_destroy_outgoing_frame(
websocket, websocket->thread_data.current_outgoing_frame, AWS_ERROR_HTTP_CONNECTION_CLOSED);
websocket->thread_data.current_outgoing_frame = NULL;
}
/* BEGIN CRITICAL SECTION */
s_lock_synced_data(websocket);
while (!aws_linked_list_empty(&websocket->synced_data.outgoing_frame_list)) {
/* Move frames from synced_data to thread_data, then cancel them together outside critical section */
struct aws_linked_list_node *node = aws_linked_list_pop_front(&websocket->synced_data.outgoing_frame_list);
aws_linked_list_push_back(&websocket->thread_data.outgoing_frame_list, node);
}
s_unlock_synced_data(websocket);
/* END CRITICAL SECTION */
s_complete_frame_list(websocket, &websocket->thread_data.write_completion_frames, AWS_ERROR_HTTP_CONNECTION_CLOSED);
while (!aws_linked_list_empty(&websocket->thread_data.outgoing_frame_list)) {
struct aws_linked_list_node *node = aws_linked_list_pop_front(&websocket->thread_data.outgoing_frame_list);
struct outgoing_frame *frame = AWS_CONTAINER_OF(node, struct outgoing_frame, node);
s_destroy_outgoing_frame(websocket, frame, AWS_ERROR_HTTP_CONNECTION_CLOSED);
}
aws_channel_slot_on_handler_shutdown_complete(
websocket->channel_slot,
AWS_CHANNEL_DIR_WRITE,
websocket->thread_data.channel_shutdown_error_code,
websocket->thread_data.channel_shutdown_free_scarce_resources_immediately);
}
static int s_handler_process_read_message(
struct aws_channel_handler *handler,
struct aws_channel_slot *slot,
struct aws_io_message *message) {
AWS_ASSERT(message);
AWS_ASSERT(aws_channel_thread_is_callers_thread(slot->channel));
struct aws_websocket *websocket = handler->impl;
struct aws_byte_cursor cursor = aws_byte_cursor_from_buf(&message->message_data);
int err;
/* At the end of this function we'll bump the window back up by this amount.
* We start off assuming we'll re-open the window by the whole amount,
* but this number will go down if we process any payload data that ought to shrink the window */
websocket->thread_data.incoming_message_window_update = message->message_data.len;
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Begin processing incoming message of size %zu.",
(void *)websocket,
message->message_data.len);
while (cursor.len) {
if (websocket->thread_data.is_reading_stopped) {
goto clean_up;
}
bool frame_complete;
err = aws_websocket_decoder_process(&websocket->thread_data.decoder, &cursor, &frame_complete);
if (err) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Failed processing incoming message, error %d (%s). Closing connection.",
(void *)websocket,
aws_last_error(),
aws_error_name(aws_last_error()));
goto error;
}
if (frame_complete) {
bool callback_result;
s_complete_incoming_frame(websocket, AWS_ERROR_SUCCESS, &callback_result);
if (!callback_result) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Incoming frame completion callback has reported a failure. Closing connection",
(void *)websocket);
aws_raise_error(AWS_ERROR_HTTP_CALLBACK_FAILURE);
goto error;
}
}
}
if (websocket->thread_data.incoming_message_window_update > 0) {
aws_channel_slot_increment_read_window(slot, websocket->thread_data.incoming_message_window_update);
}
goto clean_up;
error:
s_shutdown_due_to_read_err(websocket, aws_last_error());
clean_up:
if (cursor.len > 0) {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Done processing incoming message, final %zu bytes ignored.",
(void *)websocket,
cursor.len);
} else {
AWS_LOGF_TRACE(AWS_LS_HTTP_WEBSOCKET, "id=%p: Done processing incoming message.", (void *)websocket);
}
aws_mem_release(message->allocator, message);
return AWS_OP_SUCCESS;
}
static int s_decoder_on_frame(const struct aws_websocket_frame *frame, void *user_data) {
struct aws_websocket *websocket = user_data;
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
AWS_ASSERT(!websocket->thread_data.current_incoming_frame);
AWS_ASSERT(!websocket->thread_data.is_reading_stopped);
websocket->thread_data.current_incoming_frame = &websocket->thread_data.incoming_frame_storage;
websocket->thread_data.current_incoming_frame->payload_length = frame->payload_length;
websocket->thread_data.current_incoming_frame->opcode = frame->opcode;
websocket->thread_data.current_incoming_frame->fin = frame->fin;
/* If CONTINUATION frames are expected, remember which type of data is being continued.
* RFC-6455 Section 5.4 Fragmentation */
if (aws_websocket_is_data_frame(frame->opcode)) {
if (frame->opcode != AWS_WEBSOCKET_OPCODE_CONTINUATION) {
if (frame->fin) {
websocket->thread_data.continuation_of_opcode = 0;
} else {
websocket->thread_data.continuation_of_opcode = frame->opcode;
}
}
} else if (frame->opcode == AWS_WEBSOCKET_OPCODE_PING) {
/* Prepare to store payload of PING so we can echo it back in the PONG */
aws_byte_buf_reset(&websocket->thread_data.incoming_ping_payload, false /*zero_contents*/);
/* Note: we are NOT calling aws_byte_buf_reserve().
* This works around an attack where a malicious peer CLAIMS they'll send a huge frame,
* which would case OOM if we did the reserve immediately.
* If a malicious peer wants to run us out of memory, they'll need to do
* it the costly way and actually send a billion bytes.
* Or we could impose our own internal limits, but for now this is simpler */
}
/* Invoke user cb */
bool callback_result = true;
if (websocket->on_incoming_frame_begin && !websocket->thread_data.is_midchannel_handler) {
callback_result = websocket->on_incoming_frame_begin(
websocket, websocket->thread_data.current_incoming_frame, websocket->user_data);
}
if (!callback_result) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET, "id=%p: Incoming frame callback has reported a failure.", (void *)websocket);
return aws_raise_error(AWS_ERROR_HTTP_CALLBACK_FAILURE);
}
return AWS_OP_SUCCESS;
}
static int s_decoder_on_payload(struct aws_byte_cursor data, void *user_data) {
struct aws_websocket *websocket = user_data;
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
AWS_ASSERT(websocket->thread_data.current_incoming_frame);
AWS_ASSERT(!websocket->thread_data.is_reading_stopped);
/* Store payload of PING so we can echo it back in the PONG */
if (websocket->thread_data.current_incoming_frame->opcode == AWS_WEBSOCKET_OPCODE_PING) {
aws_byte_buf_append_dynamic(&websocket->thread_data.incoming_ping_payload, &data);
}
if (websocket->thread_data.is_midchannel_handler) {
return s_decoder_on_midchannel_payload(websocket, data);
}
return s_decoder_on_user_payload(websocket, data);
}
/* Invoke user cb */
static int s_decoder_on_user_payload(struct aws_websocket *websocket, struct aws_byte_cursor data) {
if (websocket->on_incoming_frame_payload) {
if (!websocket->on_incoming_frame_payload(
websocket, websocket->thread_data.current_incoming_frame, data, websocket->user_data)) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET, "id=%p: Incoming payload callback has reported a failure.", (void *)websocket);
return aws_raise_error(AWS_ERROR_HTTP_CALLBACK_FAILURE);
}
}
/* If this is a "data" frame's payload, let the window shrink */
if (aws_websocket_is_data_frame(websocket->thread_data.current_incoming_frame->opcode) &&
websocket->manual_window_update) {
websocket->thread_data.incoming_message_window_update -= data.len;
AWS_LOGF_DEBUG(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: The read window is shrinking by %zu due to incoming payload from 'data' frame.",
(void *)websocket,
data.len);
}
return AWS_OP_SUCCESS;
}
/* Pass data to channel handler on the right */
static int s_decoder_on_midchannel_payload(struct aws_websocket *websocket, struct aws_byte_cursor data) {
struct aws_io_message *io_msg = NULL;
/* Only pass data to next handler if it's from a BINARY frame (or the CONTINUATION of a BINARY frame) */
bool is_binary_data = websocket->thread_data.current_incoming_frame->opcode == AWS_WEBSOCKET_OPCODE_BINARY ||
(websocket->thread_data.current_incoming_frame->opcode == AWS_WEBSOCKET_OPCODE_CONTINUATION &&
websocket->thread_data.continuation_of_opcode == AWS_WEBSOCKET_OPCODE_BINARY);
if (!is_binary_data) {
return AWS_OP_SUCCESS;
}
AWS_ASSERT(websocket->channel_slot->adj_right); /* Expected another slot in the read direction */
/* Note that current implementation of websocket handler does not buffer data travelling in the "read" direction,
* so the downstream read window needs to be large enough to immediately receive incoming data. */
if (aws_channel_slot_downstream_read_window(websocket->channel_slot) < data.len) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Cannot send entire message without exceeding read window.",
(void *)websocket);
aws_raise_error(AWS_IO_CHANNEL_READ_WOULD_EXCEED_WINDOW);
goto error;
}
io_msg = aws_channel_acquire_message_from_pool(
websocket->channel_slot->channel, AWS_IO_MESSAGE_APPLICATION_DATA, data.len);
if (!io_msg) {
AWS_LOGF_ERROR(AWS_LS_HTTP_WEBSOCKET, "id=%p: Failed to acquire message.", (void *)websocket);
goto error;
}
if (io_msg->message_data.capacity < data.len) {
/* Probably can't happen. Data is coming an aws_io_message, should be able to acquire another just as big */
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET, "id=%p: Failed to acquire sufficiently large message.", (void *)websocket);
aws_raise_error(AWS_ERROR_UNKNOWN);
goto error;
}
if (!aws_byte_buf_write_from_whole_cursor(&io_msg->message_data, data)) {
AWS_LOGF_ERROR(AWS_LS_HTTP_WEBSOCKET, "id=%p: Unexpected error while copying data.", (void *)websocket);
aws_raise_error(AWS_ERROR_UNKNOWN);
goto error;
}
int err = aws_channel_slot_send_message(websocket->channel_slot, io_msg, AWS_CHANNEL_DIR_READ);
if (err) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Failed to send read message, error %d (%s).",
(void *)websocket,
aws_last_error(),
aws_error_name(aws_last_error()));
goto error;
}
/* Reduce amount by which websocket will update its read window */
AWS_ASSERT(websocket->thread_data.incoming_message_window_update >= data.len);
websocket->thread_data.incoming_message_window_update -= data.len;
return AWS_OP_SUCCESS;
error:
if (io_msg) {
aws_mem_release(io_msg->allocator, io_msg);
}
return AWS_OP_ERR;
}
/* When the websocket sends a frame automatically (PONG, CLOSE),
* this holds the payload. */
struct aws_websocket_autopayload {
struct aws_allocator *alloc;
struct aws_byte_buf buf;
struct aws_byte_cursor advancing_cursor;
};
static struct aws_websocket_autopayload *s_autopayload_new(
struct aws_allocator *alloc,
const struct aws_byte_buf *src) {
struct aws_websocket_autopayload *autopayload = aws_mem_calloc(alloc, 1, sizeof(struct aws_websocket_autopayload));
autopayload->alloc = alloc;
if (src->len > 0) {
aws_byte_buf_init_copy(&autopayload->buf, alloc, src);
autopayload->advancing_cursor = aws_byte_cursor_from_buf(&autopayload->buf);
}
return autopayload;
}
static void s_autopayload_destroy(struct aws_websocket_autopayload *autopayload) {
aws_byte_buf_clean_up(&autopayload->buf);
aws_mem_release(autopayload->alloc, autopayload);
}
static void s_autopayload_send_complete(struct aws_websocket *websocket, int error_code, void *user_data) {
(void)websocket;
(void)error_code;
struct aws_websocket_autopayload *autopayload = user_data;
s_autopayload_destroy(autopayload);
}
static bool s_autopayload_stream_outgoing_payload(
struct aws_websocket *websocket,
struct aws_byte_buf *out_buf,
void *user_data) {
(void)websocket;
struct aws_websocket_autopayload *autopayload = user_data;
aws_byte_buf_write_to_capacity(out_buf, &autopayload->advancing_cursor);
return true;
}
static void s_complete_incoming_frame(struct aws_websocket *websocket, int error_code, bool *out_callback_result) {
AWS_ASSERT(aws_channel_thread_is_callers_thread(websocket->channel_slot->channel));
AWS_ASSERT(websocket->thread_data.current_incoming_frame);
if (error_code == 0) {
/* If this was a CLOSE frame, don't read any more data. */
if (websocket->thread_data.current_incoming_frame->opcode == AWS_WEBSOCKET_OPCODE_CLOSE) {
AWS_LOGF_DEBUG(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Close frame received, any further data received will be ignored.",
(void *)websocket);
s_stop_reading_and_dont_block_shutdown(websocket);
/* TODO: auto-close if there's a channel-handler to the right */
} else if (websocket->thread_data.current_incoming_frame->opcode == AWS_WEBSOCKET_OPCODE_PING) {
/* Automatically respond to a PING with a PONG */
if (!websocket->thread_data.is_writing_stopped) {
/* Optimization idea: avoid allocations/copies each time we send an auto-PONG.
* Maybe have a small autopayload pool, instead of allocating one each time.
* Maybe encode directly to aws_io_message, instead of copying to a buf, that's copied to a msg later.
* Maybe "std::move()" the aws_byte_bufs around instead of copying them. */
struct aws_websocket_autopayload *autopong =
s_autopayload_new(websocket->alloc, &websocket->thread_data.incoming_ping_payload);
struct aws_websocket_send_frame_options pong_frame = {
.opcode = AWS_WEBSOCKET_OPCODE_PONG,
.fin = true,
.payload_length = autopong->buf.len,
.stream_outgoing_payload = s_autopayload_stream_outgoing_payload,
.on_complete = s_autopayload_send_complete,
.user_data = autopong,
};
int send_err = s_send_frame(websocket, &pong_frame, false /*from_public_api*/);
/* Failure should be impossible. We already checked that writing is not stopped */
AWS_FATAL_ASSERT(!send_err && "Unexpected failure sending websocket PONG");
}
}
}
/* Invoke user cb */
bool callback_result = true;
if (websocket->on_incoming_frame_complete && !websocket->thread_data.is_midchannel_handler) {
callback_result = websocket->on_incoming_frame_complete(
websocket, websocket->thread_data.current_incoming_frame, error_code, websocket->user_data);
}
if (out_callback_result) {
*out_callback_result = callback_result;
}
websocket->thread_data.current_incoming_frame = NULL;
}
static size_t s_handler_initial_window_size(struct aws_channel_handler *handler) {
struct aws_websocket *websocket = handler->impl;
return websocket->initial_window_size;
}
static size_t s_handler_message_overhead(struct aws_channel_handler *handler) {
(void)handler;
return AWS_WEBSOCKET_MAX_FRAME_OVERHEAD;
}
static int s_handler_increment_read_window(
struct aws_channel_handler *handler,
struct aws_channel_slot *slot,
size_t size) {
struct aws_websocket *websocket = handler->impl;
AWS_ASSERT(aws_channel_thread_is_callers_thread(slot->channel));
AWS_ASSERT(websocket->thread_data.is_midchannel_handler);
/* NOTE: This is pretty hacky and should change if it ever causes issues.
*
* Currently, all read messages are processed the moment they're received.
* If the downstream read window is open enough to accept this data, we can send it right along.
* BUT if the downstream window were too small, we'd need to buffer the data and wait until
* the downstream window opened again to finish sending.
*
* To avoid that complexity, we go to pains here to ensure that the websocket's window exactly
* matches the window to the right, allowing us to avoid buffering in the read direction.
*/
size_t increment = size;
if (websocket->thread_data.last_known_right_slot != slot->adj_right) {
if (size < slot->window_size) {
AWS_LOGF_ERROR(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: The websocket does not support downstream handlers with a smaller window.",
(void *)websocket);
aws_raise_error(AWS_IO_CHANNEL_READ_WOULD_EXCEED_WINDOW);
goto error;
}
/* New handler to the right, make sure websocket's window matches its window. */
websocket->thread_data.last_known_right_slot = slot->adj_right;
increment = size - slot->window_size;
}
if (increment != 0) {
aws_channel_slot_increment_read_window(slot, increment);
}
return AWS_OP_SUCCESS;
error:
/* Shutting down channel because I know that no one ever checks these errors */
s_shutdown_due_to_read_err(websocket, aws_last_error());
return AWS_OP_ERR;
}
static void s_increment_read_window_task(struct aws_channel_task *task, void *arg, enum aws_task_status status) {
(void)task;
if (status != AWS_TASK_STATUS_RUN_READY) {
return;
}
struct aws_websocket *websocket = arg;
size_t size;
/* BEGIN CRITICAL SECTION */
s_lock_synced_data(websocket);
size = websocket->synced_data.window_increment_size;
websocket->synced_data.window_increment_size = 0;
s_unlock_synced_data(websocket);
/* END CRITICAL SECTION */
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET, "id=%p: Running task to increment read window by %zu.", (void *)websocket, size);
aws_channel_slot_increment_read_window(websocket->channel_slot, size);
}
void aws_websocket_increment_read_window(struct aws_websocket *websocket, size_t size) {
if (size == 0) {
AWS_LOGF_TRACE(AWS_LS_HTTP_WEBSOCKET, "id=%p: Ignoring window increment of size 0.", (void *)websocket);
return;
}
if (!websocket->manual_window_update) {
AWS_LOGF_DEBUG(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Ignoring window increment. Manual window management (aka read backpressure) is not enabled.",
(void *)websocket);
return;
}
/* Schedule a task to do the increment.
* If task is already scheduled, just increase size to be incremented */
bool is_midchannel_handler = false;
bool should_schedule_task = false;
/* BEGIN CRITICAL SECTION */
s_lock_synced_data(websocket);
if (websocket->synced_data.is_midchannel_handler) {
is_midchannel_handler = true;
} else if (websocket->synced_data.window_increment_size == 0) {
should_schedule_task = true;
websocket->synced_data.window_increment_size = size;
} else {
websocket->synced_data.window_increment_size =
aws_add_size_saturating(websocket->synced_data.window_increment_size, size);
}
s_unlock_synced_data(websocket);
/* END CRITICAL SECTION */
if (is_midchannel_handler) {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Ignoring window increment call, websocket has converted to midchannel handler.",
(void *)websocket);
} else if (should_schedule_task) {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET, "id=%p: Scheduling task to increment read window by %zu.", (void *)websocket, size);
aws_channel_schedule_task_now(websocket->channel_slot->channel, &websocket->increment_read_window_task);
} else {
AWS_LOGF_TRACE(
AWS_LS_HTTP_WEBSOCKET,
"id=%p: Task to increment read window already scheduled, increasing scheduled size by %zu.",
(void *)websocket,
size);
}
}
int aws_websocket_random_handshake_key(struct aws_byte_buf *dst) {
/* RFC-6455 Section 4.1.
* Derive random 16-byte value, base64-encoded, for the Sec-WebSocket-Key header */
uint8_t key_random_storage[16] = {0};
struct aws_byte_buf key_random_buf = aws_byte_buf_from_empty_array(key_random_storage, sizeof(key_random_storage));
int err = aws_device_random_buffer(&key_random_buf);
if (err) {
return AWS_OP_ERR;
}
struct aws_byte_cursor key_random_cur = aws_byte_cursor_from_buf(&key_random_buf);
err = aws_base64_encode(&key_random_cur, dst);
if (err) {
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
struct aws_http_message *aws_http_message_new_websocket_handshake_request(
struct aws_allocator *allocator,
struct aws_byte_cursor path,
struct aws_byte_cursor host) {
AWS_PRECONDITION(allocator);
AWS_PRECONDITION(aws_byte_cursor_is_valid(&path));
AWS_PRECONDITION(aws_byte_cursor_is_valid(&host));
struct aws_http_message *request = aws_http_message_new_request(allocator);
if (!request) {
goto error;
}
int err = aws_http_message_set_request_method(request, aws_http_method_get);
if (err) {
goto error;
}
err = aws_http_message_set_request_path(request, path);
if (err) {
goto error;
}
uint8_t key_storage[AWS_WEBSOCKET_MAX_HANDSHAKE_KEY_LENGTH];
struct aws_byte_buf key_buf = aws_byte_buf_from_empty_array(key_storage, sizeof(key_storage));
err = aws_websocket_random_handshake_key(&key_buf);
if (err) {
goto error;
}
struct aws_http_header required_headers[] = {
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Host"),
.value = host,
},
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Upgrade"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("websocket"),
},
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Connection"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Upgrade"),
},
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Sec-WebSocket-Key"),
.value = aws_byte_cursor_from_buf(&key_buf),
},
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Sec-WebSocket-Version"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("13"),
},
};
for (size_t i = 0; i < AWS_ARRAY_SIZE(required_headers); ++i) {
err = aws_http_message_add_header(request, required_headers[i]);
if (err) {
goto error;
}
}
return request;
error:
aws_http_message_destroy(request);
return NULL;
}
|