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 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/io/socket.h>
#include <aws/common/clock.h>
#include <aws/common/condition_variable.h>
#include <aws/common/mutex.h>
#include <aws/common/string.h>
#include <aws/common/uuid.h>
#include <aws/io/event_loop.h>
#include <aws/io/logging.h>
#include <arpa/inet.h>
#include <aws/io/io.h>
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <netinet/tcp.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
/*
* On OsX, suppress NoPipe signals via flags to setsockopt()
* On Linux, suppress NoPipe signals via flags to send()
*/
#if defined(__MACH__)
# define NO_SIGNAL_SOCK_OPT SO_NOSIGPIPE
# define NO_SIGNAL_SEND 0
# define TCP_KEEPIDLE TCP_KEEPALIVE
#else
# define NO_SIGNAL_SEND MSG_NOSIGNAL
#endif
/* This isn't defined on ancient linux distros (breaking the builds).
* However, if this is a prebuild, we purposely build on an ancient system, but
* we want the kernel calls to still be the same as a modern build since that's likely the target of the application
* calling this code. Just define this if it isn't there already. GlibC and the kernel don't really care how the flag
* gets passed as long as it does.
*/
#ifndef O_CLOEXEC
# define O_CLOEXEC 02000000
#endif
#ifdef USE_VSOCK
# if defined(__linux__) && defined(AF_VSOCK)
# include <linux/vm_sockets.h>
# else
# error "USE_VSOCK not supported on current platform"
# endif
#endif
/* other than CONNECTED_READ | CONNECTED_WRITE
* a socket is only in one of these states at a time. */
enum socket_state {
INIT = 0x01,
CONNECTING = 0x02,
CONNECTED_READ = 0x04,
CONNECTED_WRITE = 0x08,
BOUND = 0x10,
LISTENING = 0x20,
TIMEDOUT = 0x40,
ERROR = 0x80,
CLOSED,
};
static int s_convert_domain(enum aws_socket_domain domain) {
switch (domain) {
case AWS_SOCKET_IPV4:
return AF_INET;
case AWS_SOCKET_IPV6:
return AF_INET6;
case AWS_SOCKET_LOCAL:
return AF_UNIX;
#ifdef USE_VSOCK
case AWS_SOCKET_VSOCK:
return AF_VSOCK;
#endif
default:
AWS_ASSERT(0);
return AF_INET;
}
}
static int s_convert_type(enum aws_socket_type type) {
switch (type) {
case AWS_SOCKET_STREAM:
return SOCK_STREAM;
case AWS_SOCKET_DGRAM:
return SOCK_DGRAM;
default:
AWS_ASSERT(0);
return SOCK_STREAM;
}
}
static int s_determine_socket_error(int error) {
switch (error) {
case ECONNREFUSED:
return AWS_IO_SOCKET_CONNECTION_REFUSED;
case ECONNRESET:
return AWS_IO_SOCKET_CLOSED;
case ETIMEDOUT:
return AWS_IO_SOCKET_TIMEOUT;
case EHOSTUNREACH:
case ENETUNREACH:
return AWS_IO_SOCKET_NO_ROUTE_TO_HOST;
case EADDRNOTAVAIL:
return AWS_IO_SOCKET_INVALID_ADDRESS;
case ENETDOWN:
return AWS_IO_SOCKET_NETWORK_DOWN;
case ECONNABORTED:
return AWS_IO_SOCKET_CONNECT_ABORTED;
case EADDRINUSE:
return AWS_IO_SOCKET_ADDRESS_IN_USE;
case ENOBUFS:
case ENOMEM:
return AWS_ERROR_OOM;
case EAGAIN:
return AWS_IO_READ_WOULD_BLOCK;
case EMFILE:
case ENFILE:
return AWS_ERROR_MAX_FDS_EXCEEDED;
case ENOENT:
case EINVAL:
return AWS_ERROR_FILE_INVALID_PATH;
case EAFNOSUPPORT:
return AWS_IO_SOCKET_UNSUPPORTED_ADDRESS_FAMILY;
case EACCES:
return AWS_ERROR_NO_PERMISSION;
default:
return AWS_IO_SOCKET_NOT_CONNECTED;
}
}
static int s_create_socket(struct aws_socket *sock, const struct aws_socket_options *options) {
int fd = socket(s_convert_domain(options->domain), s_convert_type(options->type), 0);
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: initializing with domain %d and type %d",
(void *)sock,
fd,
options->domain,
options->type);
if (fd != -1) {
int flags = fcntl(fd, F_GETFL, 0);
flags |= O_NONBLOCK | O_CLOEXEC;
int success = fcntl(fd, F_SETFL, flags);
(void)success;
sock->io_handle.data.fd = fd;
sock->io_handle.additional_data = NULL;
return aws_socket_set_options(sock, options);
}
int aws_error = s_determine_socket_error(errno_value);
return aws_raise_error(aws_error);
}
struct posix_socket_connect_args {
struct aws_task task;
struct aws_allocator *allocator;
struct aws_socket *socket;
};
struct posix_socket {
struct aws_linked_list write_queue;
struct aws_linked_list written_queue;
struct aws_task written_task;
struct posix_socket_connect_args *connect_args;
/* Note that only the posix_socket impl part is refcounted.
* The public aws_socket can be a stack variable and cleaned up synchronously
* (by blocking until the event-loop cleans up the impl part).
* In hindsight, aws_socket should have been heap-allocated and refcounted, but alas */
struct aws_ref_count internal_refcount;
struct aws_allocator *allocator;
bool written_task_scheduled;
bool currently_subscribed;
bool continue_accept;
bool *close_happened;
};
static void s_socket_destroy_impl(void *user_data) {
struct posix_socket *socket_impl = user_data;
aws_mem_release(socket_impl->allocator, socket_impl);
}
static int s_socket_init(
struct aws_socket *socket,
struct aws_allocator *alloc,
const struct aws_socket_options *options,
int existing_socket_fd) {
AWS_ASSERT(options);
AWS_ZERO_STRUCT(*socket);
struct posix_socket *posix_socket = aws_mem_calloc(alloc, 1, sizeof(struct posix_socket));
if (!posix_socket) {
socket->impl = NULL;
return AWS_OP_ERR;
}
socket->allocator = alloc;
socket->io_handle.data.fd = -1;
socket->state = INIT;
socket->options = *options;
if (existing_socket_fd < 0) {
int err = s_create_socket(socket, options);
if (err) {
aws_mem_release(alloc, posix_socket);
socket->impl = NULL;
return AWS_OP_ERR;
}
} else {
socket->io_handle = (struct aws_io_handle){
.data = {.fd = existing_socket_fd},
.additional_data = NULL,
};
aws_socket_set_options(socket, options);
}
aws_linked_list_init(&posix_socket->write_queue);
aws_linked_list_init(&posix_socket->written_queue);
posix_socket->currently_subscribed = false;
posix_socket->continue_accept = false;
aws_ref_count_init(&posix_socket->internal_refcount, posix_socket, s_socket_destroy_impl);
posix_socket->allocator = alloc;
posix_socket->connect_args = NULL;
posix_socket->close_happened = NULL;
socket->impl = posix_socket;
return AWS_OP_SUCCESS;
}
int aws_socket_init(struct aws_socket *socket, struct aws_allocator *alloc, const struct aws_socket_options *options) {
AWS_ASSERT(options);
return s_socket_init(socket, alloc, options, -1);
}
void aws_socket_clean_up(struct aws_socket *socket) {
if (!socket->impl) {
/* protect from double clean */
return;
}
int fd_for_logging = socket->io_handle.data.fd; /* socket's fd gets reset before final log */
(void)fd_for_logging;
if (aws_socket_is_open(socket)) {
AWS_LOGF_DEBUG(AWS_LS_IO_SOCKET, "id=%p fd=%d: is still open, closing...", (void *)socket, fd_for_logging);
aws_socket_close(socket);
}
struct posix_socket *socket_impl = socket->impl;
if (aws_ref_count_release(&socket_impl->internal_refcount) != 0) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: is still pending io letting it dangle and cleaning up later.",
(void *)socket,
fd_for_logging);
}
AWS_ZERO_STRUCT(*socket);
socket->io_handle.data.fd = -1;
}
/* Update socket->local_endpoint based on the results of getsockname() */
static int s_update_local_endpoint(struct aws_socket *socket) {
struct aws_socket_endpoint tmp_endpoint;
AWS_ZERO_STRUCT(tmp_endpoint);
struct sockaddr_storage address;
AWS_ZERO_STRUCT(address);
socklen_t address_size = sizeof(address);
if (getsockname(socket->io_handle.data.fd, (struct sockaddr *)&address, &address_size) != 0) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: getsockname() failed with error %d",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
int aws_error = s_determine_socket_error(errno_value);
return aws_raise_error(aws_error);
}
if (address.ss_family == AF_INET) {
struct sockaddr_in *s = (struct sockaddr_in *)&address;
tmp_endpoint.port = ntohs(s->sin_port);
if (inet_ntop(AF_INET, &s->sin_addr, tmp_endpoint.address, sizeof(tmp_endpoint.address)) == NULL) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: inet_ntop() failed with error %d",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
int aws_error = s_determine_socket_error(errno_value);
return aws_raise_error(aws_error);
}
} else if (address.ss_family == AF_INET6) {
struct sockaddr_in6 *s = (struct sockaddr_in6 *)&address;
tmp_endpoint.port = ntohs(s->sin6_port);
if (inet_ntop(AF_INET6, &s->sin6_addr, tmp_endpoint.address, sizeof(tmp_endpoint.address)) == NULL) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: inet_ntop() failed with error %d",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
int aws_error = s_determine_socket_error(errno_value);
return aws_raise_error(aws_error);
}
} else if (address.ss_family == AF_UNIX) {
struct sockaddr_un *s = (struct sockaddr_un *)&address;
/* Ensure there's a null-terminator.
* On some platforms it may be missing when the path gets very long. See:
* https://man7.org/linux/man-pages/man7/unix.7.html#BUGS
* But let's keep it simple, and not deal with that madness until someone demands it. */
size_t sun_len;
if (aws_secure_strlen(s->sun_path, sizeof(tmp_endpoint.address), &sun_len)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: UNIX domain socket name is too long",
(void *)socket,
socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_SOCKET_INVALID_ADDRESS);
}
memcpy(tmp_endpoint.address, s->sun_path, sun_len);
#if USE_VSOCK
} else if (address.ss_family == AF_VSOCK) {
struct sockaddr_vm *s = (struct sockaddr_vm *)&address;
tmp_endpoint.port = s->svm_port;
snprintf(tmp_endpoint.address, sizeof(tmp_endpoint.address), "%" PRIu32, s->svm_cid);
return AWS_OP_SUCCESS;
#endif /* USE_VSOCK */
} else {
AWS_ASSERT(0);
return aws_raise_error(AWS_IO_SOCKET_UNSUPPORTED_ADDRESS_FAMILY);
}
socket->local_endpoint = tmp_endpoint;
return AWS_OP_SUCCESS;
}
static void s_on_connection_error(struct aws_socket *socket, int error);
static int s_on_connection_success(struct aws_socket *socket) {
struct aws_event_loop *event_loop = socket->event_loop;
struct posix_socket *socket_impl = socket->impl;
if (socket_impl->currently_subscribed) {
aws_event_loop_unsubscribe_from_io_events(socket->event_loop, &socket->io_handle);
socket_impl->currently_subscribed = false;
}
socket->event_loop = NULL;
int connect_result;
socklen_t result_length = sizeof(connect_result);
if (getsockopt(socket->io_handle.data.fd, SOL_SOCKET, SO_ERROR, &connect_result, &result_length) < 0) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: failed to determine connection error %d",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
int aws_error = s_determine_socket_error(errno_value);
aws_raise_error(aws_error);
s_on_connection_error(socket, aws_error);
return AWS_OP_ERR;
}
if (connect_result) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: connection error %d",
(void *)socket,
socket->io_handle.data.fd,
connect_result);
int aws_error = s_determine_socket_error(connect_result);
aws_raise_error(aws_error);
s_on_connection_error(socket, aws_error);
return AWS_OP_ERR;
}
AWS_LOGF_INFO(AWS_LS_IO_SOCKET, "id=%p fd=%d: connection success", (void *)socket, socket->io_handle.data.fd);
if (s_update_local_endpoint(socket)) {
s_on_connection_error(socket, aws_last_error());
return AWS_OP_ERR;
}
socket->state = CONNECTED_WRITE | CONNECTED_READ;
if (aws_socket_assign_to_event_loop(socket, event_loop)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: assignment to event loop %p failed with error %d",
(void *)socket,
socket->io_handle.data.fd,
(void *)event_loop,
aws_last_error());
s_on_connection_error(socket, aws_last_error());
return AWS_OP_ERR;
}
socket->connection_result_fn(socket, AWS_ERROR_SUCCESS, socket->connect_accept_user_data);
return AWS_OP_SUCCESS;
}
static void s_on_connection_error(struct aws_socket *socket, int error) {
socket->state = ERROR;
AWS_LOGF_DEBUG(AWS_LS_IO_SOCKET, "id=%p fd=%d: connection failure", (void *)socket, socket->io_handle.data.fd);
if (socket->connection_result_fn) {
socket->connection_result_fn(socket, error, socket->connect_accept_user_data);
} else if (socket->accept_result_fn) {
socket->accept_result_fn(socket, error, NULL, socket->connect_accept_user_data);
}
}
/* the next two callbacks compete based on which one runs first. if s_socket_connect_event
* comes back first, then we set socket_args->socket = NULL and continue on with the connection.
* if s_handle_socket_timeout() runs first, is sees socket_args->socket is NULL and just cleans up its memory.
* s_handle_socket_timeout() will always run so the memory for socket_connect_args is always cleaned up there. */
static void s_socket_connect_event(
struct aws_event_loop *event_loop,
struct aws_io_handle *handle,
int events,
void *user_data) {
(void)event_loop;
(void)handle;
struct posix_socket_connect_args *socket_args = (struct posix_socket_connect_args *)user_data;
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "fd=%d: connection activity handler triggered ", handle->data.fd);
if (socket_args->socket) {
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: has not timed out yet proceeding with connection.",
(void *)socket_args->socket,
handle->data.fd);
struct posix_socket *socket_impl = socket_args->socket->impl;
if (!(events & AWS_IO_EVENT_TYPE_ERROR || events & AWS_IO_EVENT_TYPE_CLOSED) &&
(events & AWS_IO_EVENT_TYPE_READABLE || events & AWS_IO_EVENT_TYPE_WRITABLE)) {
struct aws_socket *socket = socket_args->socket;
socket_args->socket = NULL;
socket_impl->connect_args = NULL;
s_on_connection_success(socket);
return;
}
int aws_error = aws_socket_get_error(socket_args->socket);
/* we'll get another notification. */
if (aws_error == AWS_IO_READ_WOULD_BLOCK) {
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: spurious event, waiting for another notification.",
(void *)socket_args->socket,
handle->data.fd);
return;
}
struct aws_socket *socket = socket_args->socket;
socket_args->socket = NULL;
socket_impl->connect_args = NULL;
aws_raise_error(aws_error);
s_on_connection_error(socket, aws_error);
}
}
static void s_handle_socket_timeout(struct aws_task *task, void *args, aws_task_status status) {
(void)task;
(void)status;
struct posix_socket_connect_args *socket_args = args;
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "task_id=%p: timeout task triggered, evaluating timeouts.", (void *)task);
/* successful connection will have nulled out connect_args->socket */
if (socket_args->socket) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: timed out, shutting down.",
(void *)socket_args->socket,
socket_args->socket->io_handle.data.fd);
socket_args->socket->state = TIMEDOUT;
int error_code = AWS_IO_SOCKET_TIMEOUT;
if (status == AWS_TASK_STATUS_RUN_READY) {
aws_event_loop_unsubscribe_from_io_events(socket_args->socket->event_loop, &socket_args->socket->io_handle);
} else {
error_code = AWS_IO_EVENT_LOOP_SHUTDOWN;
aws_event_loop_free_io_event_resources(socket_args->socket->event_loop, &socket_args->socket->io_handle);
}
socket_args->socket->event_loop = NULL;
struct posix_socket *socket_impl = socket_args->socket->impl;
socket_impl->currently_subscribed = false;
aws_raise_error(error_code);
struct aws_socket *socket = socket_args->socket;
/*socket close sets socket_args->socket to NULL and
* socket_impl->connect_args to NULL. */
aws_socket_close(socket);
s_on_connection_error(socket, error_code);
}
aws_mem_release(socket_args->allocator, socket_args);
}
/* this is used simply for moving a connect_success callback when the connect finished immediately
* (like for unix domain sockets) into the event loop's thread. Also note, in that case there was no
* timeout task scheduled, so in this case the socket_args are cleaned up. */
static void s_run_connect_success(struct aws_task *task, void *arg, enum aws_task_status status) {
(void)task;
struct posix_socket_connect_args *socket_args = arg;
if (socket_args->socket) {
struct posix_socket *socket_impl = socket_args->socket->impl;
if (status == AWS_TASK_STATUS_RUN_READY) {
s_on_connection_success(socket_args->socket);
} else {
aws_raise_error(AWS_IO_SOCKET_CONNECT_ABORTED);
socket_args->socket->event_loop = NULL;
s_on_connection_error(socket_args->socket, AWS_IO_SOCKET_CONNECT_ABORTED);
}
socket_impl->connect_args = NULL;
}
aws_mem_release(socket_args->allocator, socket_args);
}
static inline int s_convert_pton_error(int pton_code, int errno_value) {
if (pton_code == 0) {
return AWS_IO_SOCKET_INVALID_ADDRESS;
}
return s_determine_socket_error(errno_value);
}
struct socket_address {
union sock_addr_types {
struct sockaddr_in addr_in;
struct sockaddr_in6 addr_in6;
struct sockaddr_un un_addr;
#ifdef USE_VSOCK
struct sockaddr_vm vm_addr;
#endif
} sock_addr_types;
};
#ifdef USE_VSOCK
/** Convert a string to a VSOCK CID. Respects the calling convetion of inet_pton:
* 0 on error, 1 on success. */
static int parse_cid(const char *cid_str, unsigned int *value) {
if (cid_str == NULL || value == NULL) {
errno = EINVAL;
return 0;
}
/* strtoll returns 0 as both error and correct value */
errno = 0;
/* unsigned long long to handle edge cases in convention explicitly */
long long cid = strtoll(cid_str, NULL, 10);
if (errno != 0) {
return 0;
}
/* -1U means any, so it's a valid value, but it needs to be converted to
* unsigned int. */
if (cid == -1) {
*value = VMADDR_CID_ANY;
return 1;
}
if (cid < 0 || cid > UINT_MAX) {
errno = ERANGE;
return 0;
}
/* cast is safe here, edge cases already checked */
*value = (unsigned int)cid;
return 1;
}
#endif
int aws_socket_connect(
struct aws_socket *socket,
const struct aws_socket_endpoint *remote_endpoint,
struct aws_event_loop *event_loop,
aws_socket_on_connection_result_fn *on_connection_result,
void *user_data) {
AWS_ASSERT(event_loop);
AWS_ASSERT(!socket->event_loop);
AWS_LOGF_DEBUG(AWS_LS_IO_SOCKET, "id=%p fd=%d: beginning connect.", (void *)socket, socket->io_handle.data.fd);
if (socket->event_loop) {
return aws_raise_error(AWS_IO_EVENT_LOOP_ALREADY_ASSIGNED);
}
if (socket->options.type != AWS_SOCKET_DGRAM) {
AWS_ASSERT(on_connection_result);
if (socket->state != INIT) {
return aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
}
} else { /* UDP socket */
/* UDP sockets jump to CONNECT_READ if bind is called first */
if (socket->state != CONNECTED_READ && socket->state != INIT) {
return aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
}
}
size_t address_strlen;
if (aws_secure_strlen(remote_endpoint->address, AWS_ADDRESS_MAX_LEN, &address_strlen)) {
return AWS_OP_ERR;
}
if (aws_socket_validate_port_for_connect(remote_endpoint->port, socket->options.domain)) {
return AWS_OP_ERR;
}
struct socket_address address;
AWS_ZERO_STRUCT(address);
socklen_t sock_size = 0;
int pton_err = 1;
if (socket->options.domain == AWS_SOCKET_IPV4) {
pton_err = inet_pton(AF_INET, remote_endpoint->address, &address.sock_addr_types.addr_in.sin_addr);
address.sock_addr_types.addr_in.sin_port = htons((uint16_t)remote_endpoint->port);
address.sock_addr_types.addr_in.sin_family = AF_INET;
sock_size = sizeof(address.sock_addr_types.addr_in);
} else if (socket->options.domain == AWS_SOCKET_IPV6) {
pton_err = inet_pton(AF_INET6, remote_endpoint->address, &address.sock_addr_types.addr_in6.sin6_addr);
address.sock_addr_types.addr_in6.sin6_port = htons((uint16_t)remote_endpoint->port);
address.sock_addr_types.addr_in6.sin6_family = AF_INET6;
sock_size = sizeof(address.sock_addr_types.addr_in6);
} else if (socket->options.domain == AWS_SOCKET_LOCAL) {
address.sock_addr_types.un_addr.sun_family = AF_UNIX;
strncpy(address.sock_addr_types.un_addr.sun_path, remote_endpoint->address, AWS_ADDRESS_MAX_LEN);
sock_size = sizeof(address.sock_addr_types.un_addr);
#ifdef USE_VSOCK
} else if (socket->options.domain == AWS_SOCKET_VSOCK) {
pton_err = parse_cid(remote_endpoint->address, &address.sock_addr_types.vm_addr.svm_cid);
address.sock_addr_types.vm_addr.svm_family = AF_VSOCK;
address.sock_addr_types.vm_addr.svm_port = remote_endpoint->port;
sock_size = sizeof(address.sock_addr_types.vm_addr);
#endif
} else {
AWS_ASSERT(0);
return aws_raise_error(AWS_IO_SOCKET_UNSUPPORTED_ADDRESS_FAMILY);
}
if (pton_err != 1) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: failed to parse address %s:%u.",
(void *)socket,
socket->io_handle.data.fd,
remote_endpoint->address,
remote_endpoint->port);
return aws_raise_error(s_convert_pton_error(pton_err, errno_value));
}
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: connecting to endpoint %s:%u.",
(void *)socket,
socket->io_handle.data.fd,
remote_endpoint->address,
remote_endpoint->port);
socket->state = CONNECTING;
socket->remote_endpoint = *remote_endpoint;
socket->connect_accept_user_data = user_data;
socket->connection_result_fn = on_connection_result;
struct posix_socket *socket_impl = socket->impl;
socket_impl->connect_args = aws_mem_calloc(socket->allocator, 1, sizeof(struct posix_socket_connect_args));
if (!socket_impl->connect_args) {
return AWS_OP_ERR;
}
socket_impl->connect_args->socket = socket;
socket_impl->connect_args->allocator = socket->allocator;
socket_impl->connect_args->task.fn = s_handle_socket_timeout;
socket_impl->connect_args->task.arg = socket_impl->connect_args;
int error_code = connect(socket->io_handle.data.fd, (struct sockaddr *)&address.sock_addr_types, sock_size);
socket->event_loop = event_loop;
if (!error_code) {
AWS_LOGF_INFO(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: connected immediately, not scheduling timeout.",
(void *)socket,
socket->io_handle.data.fd);
socket_impl->connect_args->task.fn = s_run_connect_success;
/* the subscription for IO will happen once we setup the connection in the task. Since we already
* know the connection succeeded, we don't need to register for events yet. */
aws_event_loop_schedule_task_now(event_loop, &socket_impl->connect_args->task);
}
if (error_code) {
int errno_value = errno; /* Always cache errno before potential side-effect */
if (errno_value == EINPROGRESS || errno_value == EALREADY) {
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: connection pending waiting on event-loop notification or timeout.",
(void *)socket,
socket->io_handle.data.fd);
/* cache the timeout task; it is possible for the IO subscription to come back virtually immediately
* and null out the connect args */
struct aws_task *timeout_task = &socket_impl->connect_args->task;
socket_impl->currently_subscribed = true;
/* This event is for when the connection finishes. (the fd will flip writable). */
if (aws_event_loop_subscribe_to_io_events(
event_loop,
&socket->io_handle,
AWS_IO_EVENT_TYPE_WRITABLE,
s_socket_connect_event,
socket_impl->connect_args)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: failed to register with event-loop %p.",
(void *)socket,
socket->io_handle.data.fd,
(void *)event_loop);
socket_impl->currently_subscribed = false;
socket->event_loop = NULL;
goto err_clean_up;
}
/* schedule a task to run at the connect timeout interval, if this task runs before the connect
* happens, we consider that a timeout. */
uint64_t timeout = 0;
aws_event_loop_current_clock_time(event_loop, &timeout);
timeout += aws_timestamp_convert(
socket->options.connect_timeout_ms, AWS_TIMESTAMP_MILLIS, AWS_TIMESTAMP_NANOS, NULL);
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: scheduling timeout task for %llu.",
(void *)socket,
socket->io_handle.data.fd,
(unsigned long long)timeout);
aws_event_loop_schedule_task_future(event_loop, timeout_task, timeout);
} else {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: connect failed with error code %d.",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
int aws_error = s_determine_socket_error(errno_value);
aws_raise_error(aws_error);
socket->event_loop = NULL;
socket_impl->currently_subscribed = false;
goto err_clean_up;
}
}
return AWS_OP_SUCCESS;
err_clean_up:
aws_mem_release(socket->allocator, socket_impl->connect_args);
socket_impl->connect_args = NULL;
return AWS_OP_ERR;
}
int aws_socket_bind(struct aws_socket *socket, const struct aws_socket_endpoint *local_endpoint) {
if (socket->state != INIT) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: invalid state for bind operation.",
(void *)socket,
socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
}
size_t address_strlen;
if (aws_secure_strlen(local_endpoint->address, AWS_ADDRESS_MAX_LEN, &address_strlen)) {
return AWS_OP_ERR;
}
if (aws_socket_validate_port_for_bind(local_endpoint->port, socket->options.domain)) {
return AWS_OP_ERR;
}
AWS_LOGF_INFO(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: binding to %s:%u.",
(void *)socket,
socket->io_handle.data.fd,
local_endpoint->address,
local_endpoint->port);
struct socket_address address;
AWS_ZERO_STRUCT(address);
socklen_t sock_size = 0;
int pton_err = 1;
if (socket->options.domain == AWS_SOCKET_IPV4) {
pton_err = inet_pton(AF_INET, local_endpoint->address, &address.sock_addr_types.addr_in.sin_addr);
address.sock_addr_types.addr_in.sin_port = htons((uint16_t)local_endpoint->port);
address.sock_addr_types.addr_in.sin_family = AF_INET;
sock_size = sizeof(address.sock_addr_types.addr_in);
} else if (socket->options.domain == AWS_SOCKET_IPV6) {
pton_err = inet_pton(AF_INET6, local_endpoint->address, &address.sock_addr_types.addr_in6.sin6_addr);
address.sock_addr_types.addr_in6.sin6_port = htons((uint16_t)local_endpoint->port);
address.sock_addr_types.addr_in6.sin6_family = AF_INET6;
sock_size = sizeof(address.sock_addr_types.addr_in6);
} else if (socket->options.domain == AWS_SOCKET_LOCAL) {
address.sock_addr_types.un_addr.sun_family = AF_UNIX;
strncpy(address.sock_addr_types.un_addr.sun_path, local_endpoint->address, AWS_ADDRESS_MAX_LEN);
sock_size = sizeof(address.sock_addr_types.un_addr);
#ifdef USE_VSOCK
} else if (socket->options.domain == AWS_SOCKET_VSOCK) {
pton_err = parse_cid(local_endpoint->address, &address.sock_addr_types.vm_addr.svm_cid);
address.sock_addr_types.vm_addr.svm_family = AF_VSOCK;
address.sock_addr_types.vm_addr.svm_port = local_endpoint->port;
sock_size = sizeof(address.sock_addr_types.vm_addr);
#endif
} else {
AWS_ASSERT(0);
return aws_raise_error(AWS_IO_SOCKET_UNSUPPORTED_ADDRESS_FAMILY);
}
if (pton_err != 1) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: failed to parse address %s:%u.",
(void *)socket,
socket->io_handle.data.fd,
local_endpoint->address,
local_endpoint->port);
return aws_raise_error(s_convert_pton_error(pton_err, errno_value));
}
if (bind(socket->io_handle.data.fd, (struct sockaddr *)&address.sock_addr_types, sock_size) != 0) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: bind failed with error code %d",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
aws_raise_error(s_determine_socket_error(errno_value));
goto error;
}
if (s_update_local_endpoint(socket)) {
goto error;
}
if (socket->options.type == AWS_SOCKET_STREAM) {
socket->state = BOUND;
} else {
/* e.g. UDP is now readable */
socket->state = CONNECTED_READ;
}
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: successfully bound to %s:%u",
(void *)socket,
socket->io_handle.data.fd,
socket->local_endpoint.address,
socket->local_endpoint.port);
return AWS_OP_SUCCESS;
error:
socket->state = ERROR;
return AWS_OP_ERR;
}
int aws_socket_get_bound_address(const struct aws_socket *socket, struct aws_socket_endpoint *out_address) {
if (socket->local_endpoint.address[0] == 0) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: Socket has no local address. Socket must be bound first.",
(void *)socket,
socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
}
*out_address = socket->local_endpoint;
return AWS_OP_SUCCESS;
}
int aws_socket_listen(struct aws_socket *socket, int backlog_size) {
if (socket->state != BOUND) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: invalid state for listen operation. You must call bind first.",
(void *)socket,
socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
}
int error_code = listen(socket->io_handle.data.fd, backlog_size);
if (!error_code) {
AWS_LOGF_INFO(
AWS_LS_IO_SOCKET, "id=%p fd=%d: successfully listening", (void *)socket, socket->io_handle.data.fd);
socket->state = LISTENING;
return AWS_OP_SUCCESS;
}
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: listen failed with error code %d",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
socket->state = ERROR;
return aws_raise_error(s_determine_socket_error(errno_value));
}
/* this is called by the event loop handler that was installed in start_accept(). It runs once the FD goes readable,
* accepts as many as it can and then returns control to the event loop. */
static void s_socket_accept_event(
struct aws_event_loop *event_loop,
struct aws_io_handle *handle,
int events,
void *user_data) {
(void)event_loop;
struct aws_socket *socket = user_data;
struct posix_socket *socket_impl = socket->impl;
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET, "id=%p fd=%d: listening event received", (void *)socket, socket->io_handle.data.fd);
if (socket_impl->continue_accept && events & AWS_IO_EVENT_TYPE_READABLE) {
int in_fd = 0;
while (socket_impl->continue_accept && in_fd != -1) {
struct sockaddr_storage in_addr;
socklen_t in_len = sizeof(struct sockaddr_storage);
in_fd = accept(handle->data.fd, (struct sockaddr *)&in_addr, &in_len);
if (in_fd == -1) {
int errno_value = errno; /* Always cache errno before potential side-effect */
if (errno_value == EAGAIN || errno_value == EWOULDBLOCK) {
break;
}
int aws_error = aws_socket_get_error(socket);
aws_raise_error(aws_error);
s_on_connection_error(socket, aws_error);
break;
}
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET, "id=%p fd=%d: incoming connection", (void *)socket, socket->io_handle.data.fd);
struct aws_socket *new_sock = aws_mem_acquire(socket->allocator, sizeof(struct aws_socket));
if (!new_sock) {
close(in_fd);
s_on_connection_error(socket, aws_last_error());
continue;
}
if (s_socket_init(new_sock, socket->allocator, &socket->options, in_fd)) {
aws_mem_release(socket->allocator, new_sock);
s_on_connection_error(socket, aws_last_error());
continue;
}
new_sock->local_endpoint = socket->local_endpoint;
new_sock->state = CONNECTED_READ | CONNECTED_WRITE;
uint32_t port = 0;
/* get the info on the incoming socket's address */
if (in_addr.ss_family == AF_INET) {
struct sockaddr_in *s = (struct sockaddr_in *)&in_addr;
port = ntohs(s->sin_port);
/* this came from the kernel, a.) it won't fail. b.) even if it does
* its not fatal. come back and add logging later. */
if (!inet_ntop(
AF_INET,
&s->sin_addr,
new_sock->remote_endpoint.address,
sizeof(new_sock->remote_endpoint.address))) {
AWS_LOGF_WARN(
AWS_LS_IO_SOCKET,
"id=%p fd=%d:. Failed to determine remote address.",
(void *)socket,
socket->io_handle.data.fd);
}
new_sock->options.domain = AWS_SOCKET_IPV4;
} else if (in_addr.ss_family == AF_INET6) {
/* this came from the kernel, a.) it won't fail. b.) even if it does
* its not fatal. come back and add logging later. */
struct sockaddr_in6 *s = (struct sockaddr_in6 *)&in_addr;
port = ntohs(s->sin6_port);
if (!inet_ntop(
AF_INET6,
&s->sin6_addr,
new_sock->remote_endpoint.address,
sizeof(new_sock->remote_endpoint.address))) {
AWS_LOGF_WARN(
AWS_LS_IO_SOCKET,
"id=%p fd=%d:. Failed to determine remote address.",
(void *)socket,
socket->io_handle.data.fd);
}
new_sock->options.domain = AWS_SOCKET_IPV6;
} else if (in_addr.ss_family == AF_UNIX) {
new_sock->remote_endpoint = socket->local_endpoint;
new_sock->options.domain = AWS_SOCKET_LOCAL;
}
new_sock->remote_endpoint.port = port;
AWS_LOGF_INFO(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: connected to %s:%d, incoming fd %d",
(void *)socket,
socket->io_handle.data.fd,
new_sock->remote_endpoint.address,
new_sock->remote_endpoint.port,
in_fd);
int flags = fcntl(in_fd, F_GETFL, 0);
flags |= O_NONBLOCK | O_CLOEXEC;
fcntl(in_fd, F_SETFL, flags);
bool close_occurred = false;
socket_impl->close_happened = &close_occurred;
socket->accept_result_fn(socket, AWS_ERROR_SUCCESS, new_sock, socket->connect_accept_user_data);
if (close_occurred) {
return;
}
socket_impl->close_happened = NULL;
}
}
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: finished processing incoming connections, "
"waiting on event-loop notification",
(void *)socket,
socket->io_handle.data.fd);
}
int aws_socket_start_accept(
struct aws_socket *socket,
struct aws_event_loop *accept_loop,
aws_socket_on_accept_result_fn *on_accept_result,
void *user_data) {
AWS_ASSERT(on_accept_result);
AWS_ASSERT(accept_loop);
if (socket->event_loop) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: is already assigned to event-loop %p.",
(void *)socket,
socket->io_handle.data.fd,
(void *)socket->event_loop);
return aws_raise_error(AWS_IO_EVENT_LOOP_ALREADY_ASSIGNED);
}
if (socket->state != LISTENING) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: invalid state for start_accept operation. You must call listen first.",
(void *)socket,
socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
}
socket->accept_result_fn = on_accept_result;
socket->connect_accept_user_data = user_data;
socket->event_loop = accept_loop;
struct posix_socket *socket_impl = socket->impl;
socket_impl->continue_accept = true;
socket_impl->currently_subscribed = true;
if (aws_event_loop_subscribe_to_io_events(
socket->event_loop, &socket->io_handle, AWS_IO_EVENT_TYPE_READABLE, s_socket_accept_event, socket)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: failed to subscribe to event-loop %p.",
(void *)socket,
socket->io_handle.data.fd,
(void *)socket->event_loop);
socket_impl->continue_accept = false;
socket_impl->currently_subscribed = false;
socket->event_loop = NULL;
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
struct stop_accept_args {
struct aws_task task;
struct aws_mutex mutex;
struct aws_condition_variable condition_variable;
struct aws_socket *socket;
int ret_code;
bool invoked;
};
static bool s_stop_accept_pred(void *arg) {
struct stop_accept_args *stop_accept_args = arg;
return stop_accept_args->invoked;
}
static void s_stop_accept_task(struct aws_task *task, void *arg, enum aws_task_status status) {
(void)task;
(void)status;
struct stop_accept_args *stop_accept_args = arg;
aws_mutex_lock(&stop_accept_args->mutex);
stop_accept_args->ret_code = AWS_OP_SUCCESS;
if (aws_socket_stop_accept(stop_accept_args->socket)) {
stop_accept_args->ret_code = aws_last_error();
}
stop_accept_args->invoked = true;
aws_condition_variable_notify_one(&stop_accept_args->condition_variable);
aws_mutex_unlock(&stop_accept_args->mutex);
}
int aws_socket_stop_accept(struct aws_socket *socket) {
if (socket->state != LISTENING) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: is not in a listening state, can't stop_accept.",
(void *)socket,
socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
}
AWS_LOGF_INFO(
AWS_LS_IO_SOCKET, "id=%p fd=%d: stopping accepting new connections", (void *)socket, socket->io_handle.data.fd);
if (!aws_event_loop_thread_is_callers_thread(socket->event_loop)) {
struct stop_accept_args args = {
.mutex = AWS_MUTEX_INIT,
.condition_variable = AWS_CONDITION_VARIABLE_INIT,
.invoked = false,
.socket = socket,
.ret_code = AWS_OP_SUCCESS,
.task = {.fn = s_stop_accept_task},
};
AWS_LOGF_INFO(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: stopping accepting new connections from a different thread than "
"the socket is running from. Blocking until it shuts down.",
(void *)socket,
socket->io_handle.data.fd);
/* Look.... I know what I'm doing.... trust me, I'm an engineer.
* We wait on the completion before 'args' goes out of scope.
* NOLINTNEXTLINE */
args.task.arg = &args;
aws_mutex_lock(&args.mutex);
aws_event_loop_schedule_task_now(socket->event_loop, &args.task);
aws_condition_variable_wait_pred(&args.condition_variable, &args.mutex, s_stop_accept_pred, &args);
aws_mutex_unlock(&args.mutex);
AWS_LOGF_INFO(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: stop accept task finished running.",
(void *)socket,
socket->io_handle.data.fd);
if (args.ret_code) {
return aws_raise_error(args.ret_code);
}
return AWS_OP_SUCCESS;
}
int ret_val = AWS_OP_SUCCESS;
struct posix_socket *socket_impl = socket->impl;
if (socket_impl->currently_subscribed) {
ret_val = aws_event_loop_unsubscribe_from_io_events(socket->event_loop, &socket->io_handle);
socket_impl->currently_subscribed = false;
socket_impl->continue_accept = false;
socket->event_loop = NULL;
}
return ret_val;
}
int aws_socket_set_options(struct aws_socket *socket, const struct aws_socket_options *options) {
if (socket->options.domain != options->domain || socket->options.type != options->type) {
return aws_raise_error(AWS_IO_SOCKET_INVALID_OPTIONS);
}
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: setting socket options to: keep-alive %d, keep idle %d, keep-alive interval %d, keep-alive probe "
"count %d.",
(void *)socket,
socket->io_handle.data.fd,
(int)options->keepalive,
(int)options->keep_alive_timeout_sec,
(int)options->keep_alive_interval_sec,
(int)options->keep_alive_max_failed_probes);
socket->options = *options;
#ifdef NO_SIGNAL_SOCK_OPT
int option_value = 1;
if (AWS_UNLIKELY(setsockopt(
socket->io_handle.data.fd, SOL_SOCKET, NO_SIGNAL_SOCK_OPT, &option_value, sizeof(option_value)))) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_WARN(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: setsockopt() for NO_SIGNAL_SOCK_OPT failed with errno %d.",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
}
#endif /* NO_SIGNAL_SOCK_OPT */
int reuse = 1;
if (AWS_UNLIKELY(setsockopt(socket->io_handle.data.fd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(int)))) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_WARN(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: setsockopt() for SO_REUSEADDR failed with errno %d.",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
}
if (options->type == AWS_SOCKET_STREAM && options->domain != AWS_SOCKET_LOCAL) {
if (socket->options.keepalive) {
int keep_alive = 1;
if (AWS_UNLIKELY(
setsockopt(socket->io_handle.data.fd, SOL_SOCKET, SO_KEEPALIVE, &keep_alive, sizeof(int)))) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_WARN(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: setsockopt() for enabling SO_KEEPALIVE failed with errno %d.",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
}
}
#if !defined(__OpenBSD__)
if (socket->options.keep_alive_interval_sec && socket->options.keep_alive_timeout_sec) {
int ival_in_secs = socket->options.keep_alive_interval_sec;
if (AWS_UNLIKELY(setsockopt(
socket->io_handle.data.fd, IPPROTO_TCP, TCP_KEEPIDLE, &ival_in_secs, sizeof(ival_in_secs)))) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_WARN(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: setsockopt() for enabling TCP_KEEPIDLE for TCP failed with errno %d.",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
}
ival_in_secs = socket->options.keep_alive_timeout_sec;
if (AWS_UNLIKELY(setsockopt(
socket->io_handle.data.fd, IPPROTO_TCP, TCP_KEEPINTVL, &ival_in_secs, sizeof(ival_in_secs)))) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_WARN(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: setsockopt() for enabling TCP_KEEPINTVL for TCP failed with errno %d.",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
}
}
if (socket->options.keep_alive_max_failed_probes) {
int max_probes = socket->options.keep_alive_max_failed_probes;
if (AWS_UNLIKELY(
setsockopt(socket->io_handle.data.fd, IPPROTO_TCP, TCP_KEEPCNT, &max_probes, sizeof(max_probes)))) {
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_WARN(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: setsockopt() for enabling TCP_KEEPCNT for TCP failed with errno %d.",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
}
}
#endif /* __OpenBSD__ */
}
return AWS_OP_SUCCESS;
}
struct socket_write_request {
struct aws_byte_cursor cursor_cpy;
aws_socket_on_write_completed_fn *written_fn;
void *write_user_data;
struct aws_linked_list_node node;
size_t original_buffer_len;
int error_code;
};
struct posix_socket_close_args {
struct aws_mutex mutex;
struct aws_condition_variable condition_variable;
struct aws_socket *socket;
bool invoked;
int ret_code;
};
static bool s_close_predicate(void *arg) {
struct posix_socket_close_args *close_args = arg;
return close_args->invoked;
}
static void s_close_task(struct aws_task *task, void *arg, enum aws_task_status status) {
(void)task;
(void)status;
struct posix_socket_close_args *close_args = arg;
aws_mutex_lock(&close_args->mutex);
close_args->ret_code = AWS_OP_SUCCESS;
if (aws_socket_close(close_args->socket)) {
close_args->ret_code = aws_last_error();
}
close_args->invoked = true;
aws_condition_variable_notify_one(&close_args->condition_variable);
aws_mutex_unlock(&close_args->mutex);
}
int aws_socket_close(struct aws_socket *socket) {
struct posix_socket *socket_impl = socket->impl;
AWS_LOGF_DEBUG(AWS_LS_IO_SOCKET, "id=%p fd=%d: closing", (void *)socket, socket->io_handle.data.fd);
struct aws_event_loop *event_loop = socket->event_loop;
if (socket->event_loop) {
/* don't freak out on me, this almost never happens, and never occurs inside a channel
* it only gets hit from a listening socket shutting down or from a unit test. */
if (!aws_event_loop_thread_is_callers_thread(socket->event_loop)) {
AWS_LOGF_INFO(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: closing from a different thread than "
"the socket is running from. Blocking until it closes down.",
(void *)socket,
socket->io_handle.data.fd);
/* the only time we allow this kind of thing is when you're a listener.*/
if (socket->state != LISTENING) {
return aws_raise_error(AWS_IO_SOCKET_ILLEGAL_OPERATION_FOR_STATE);
}
struct posix_socket_close_args args = {
.mutex = AWS_MUTEX_INIT,
.condition_variable = AWS_CONDITION_VARIABLE_INIT,
.socket = socket,
.ret_code = AWS_OP_SUCCESS,
.invoked = false,
};
struct aws_task close_task = {
.fn = s_close_task,
.arg = &args,
};
int fd_for_logging = socket->io_handle.data.fd; /* socket's fd gets reset before final log */
(void)fd_for_logging;
aws_mutex_lock(&args.mutex);
aws_event_loop_schedule_task_now(socket->event_loop, &close_task);
aws_condition_variable_wait_pred(&args.condition_variable, &args.mutex, s_close_predicate, &args);
aws_mutex_unlock(&args.mutex);
AWS_LOGF_INFO(AWS_LS_IO_SOCKET, "id=%p fd=%d: close task completed.", (void *)socket, fd_for_logging);
if (args.ret_code) {
return aws_raise_error(args.ret_code);
}
return AWS_OP_SUCCESS;
}
if (socket_impl->currently_subscribed) {
if (socket->state & LISTENING) {
aws_socket_stop_accept(socket);
} else {
int err_code = aws_event_loop_unsubscribe_from_io_events(socket->event_loop, &socket->io_handle);
if (err_code) {
return AWS_OP_ERR;
}
}
socket_impl->currently_subscribed = false;
socket->event_loop = NULL;
}
}
if (socket_impl->close_happened) {
*socket_impl->close_happened = true;
}
if (socket_impl->connect_args) {
socket_impl->connect_args->socket = NULL;
socket_impl->connect_args = NULL;
}
if (aws_socket_is_open(socket)) {
close(socket->io_handle.data.fd);
socket->io_handle.data.fd = -1;
socket->state = CLOSED;
/* ensure callbacks for pending writes fire (in order) before this close function returns */
if (socket_impl->written_task_scheduled) {
aws_event_loop_cancel_task(event_loop, &socket_impl->written_task);
}
while (!aws_linked_list_empty(&socket_impl->written_queue)) {
struct aws_linked_list_node *node = aws_linked_list_pop_front(&socket_impl->written_queue);
struct socket_write_request *write_request = AWS_CONTAINER_OF(node, struct socket_write_request, node);
size_t bytes_written = write_request->original_buffer_len - write_request->cursor_cpy.len;
write_request->written_fn(socket, write_request->error_code, bytes_written, write_request->write_user_data);
aws_mem_release(socket->allocator, write_request);
}
while (!aws_linked_list_empty(&socket_impl->write_queue)) {
struct aws_linked_list_node *node = aws_linked_list_pop_front(&socket_impl->write_queue);
struct socket_write_request *write_request = AWS_CONTAINER_OF(node, struct socket_write_request, node);
size_t bytes_written = write_request->original_buffer_len - write_request->cursor_cpy.len;
write_request->written_fn(socket, AWS_IO_SOCKET_CLOSED, bytes_written, write_request->write_user_data);
aws_mem_release(socket->allocator, write_request);
}
}
return AWS_OP_SUCCESS;
}
int aws_socket_shutdown_dir(struct aws_socket *socket, enum aws_channel_direction dir) {
int how = dir == AWS_CHANNEL_DIR_READ ? 0 : 1;
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET, "id=%p fd=%d: shutting down in direction %d", (void *)socket, socket->io_handle.data.fd, dir);
if (shutdown(socket->io_handle.data.fd, how)) {
int errno_value = errno; /* Always cache errno before potential side-effect */
int aws_error = s_determine_socket_error(errno_value);
return aws_raise_error(aws_error);
}
if (dir == AWS_CHANNEL_DIR_READ) {
socket->state &= ~CONNECTED_READ;
} else {
socket->state &= ~CONNECTED_WRITE;
}
return AWS_OP_SUCCESS;
}
static void s_written_task(struct aws_task *task, void *arg, enum aws_task_status status) {
(void)task;
(void)status;
struct aws_socket *socket = arg;
struct posix_socket *socket_impl = socket->impl;
socket_impl->written_task_scheduled = false;
/* this is to handle a race condition when a callback kicks off a cleanup, or the user decides
* to close the socket based on something they read (SSL validation failed for example).
* if clean_up happens when internal_refcount > 0, socket_impl is kept dangling */
aws_ref_count_acquire(&socket_impl->internal_refcount);
/* Notes about weird loop:
* 1) Only process the initial contents of queue when this task is run,
* ignoring any writes queued during delivery.
* If we simply looped until the queue was empty, we could get into a
* synchronous loop of completing and writing and completing and writing...
* and it would be tough for multiple sockets to share an event-loop fairly.
* 2) Check if queue is empty with each iteration.
* If user calls close() from the callback, close() will process all
* nodes in the written_queue, and the queue will be empty when the
* callstack gets back to here. */
if (!aws_linked_list_empty(&socket_impl->written_queue)) {
struct aws_linked_list_node *stop_after = aws_linked_list_back(&socket_impl->written_queue);
do {
struct aws_linked_list_node *node = aws_linked_list_pop_front(&socket_impl->written_queue);
struct socket_write_request *write_request = AWS_CONTAINER_OF(node, struct socket_write_request, node);
size_t bytes_written = write_request->original_buffer_len - write_request->cursor_cpy.len;
write_request->written_fn(socket, write_request->error_code, bytes_written, write_request->write_user_data);
aws_mem_release(socket_impl->allocator, write_request);
if (node == stop_after) {
break;
}
} while (!aws_linked_list_empty(&socket_impl->written_queue));
}
aws_ref_count_release(&socket_impl->internal_refcount);
}
/* this gets called in two scenarios.
* 1st scenario, someone called aws_socket_write() and we want to try writing now, so an error can be returned
* immediately if something bad has happened to the socket. In this case, `parent_request` is set.
* 2nd scenario, the event loop notified us that the socket went writable. In this case `parent_request` is NULL */
static int s_process_socket_write_requests(struct aws_socket *socket, struct socket_write_request *parent_request) {
struct posix_socket *socket_impl = socket->impl;
if (parent_request) {
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: processing write requests, called from aws_socket_write",
(void *)socket,
socket->io_handle.data.fd);
} else {
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: processing write requests, invoked by the event-loop",
(void *)socket,
socket->io_handle.data.fd);
}
bool purge = false;
int aws_error = AWS_OP_SUCCESS;
bool parent_request_failed = false;
bool pushed_to_written_queue = false;
/* if a close call happens in the middle, this queue will have been cleaned out from under us. */
while (!aws_linked_list_empty(&socket_impl->write_queue)) {
struct aws_linked_list_node *node = aws_linked_list_front(&socket_impl->write_queue);
struct socket_write_request *write_request = AWS_CONTAINER_OF(node, struct socket_write_request, node);
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: dequeued write request of size %llu, remaining to write %llu",
(void *)socket,
socket->io_handle.data.fd,
(unsigned long long)write_request->original_buffer_len,
(unsigned long long)write_request->cursor_cpy.len);
ssize_t written = send(
socket->io_handle.data.fd, write_request->cursor_cpy.ptr, write_request->cursor_cpy.len, NO_SIGNAL_SEND);
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: send written size %d",
(void *)socket,
socket->io_handle.data.fd,
(int)written);
if (written < 0) {
if (errno_value == EAGAIN) {
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET, "id=%p fd=%d: returned would block", (void *)socket, socket->io_handle.data.fd);
break;
}
if (errno_value == EPIPE) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: already closed before write",
(void *)socket,
socket->io_handle.data.fd);
aws_error = AWS_IO_SOCKET_CLOSED;
aws_raise_error(aws_error);
purge = true;
break;
}
purge = true;
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: write error with error code %d",
(void *)socket,
socket->io_handle.data.fd,
errno_value);
aws_error = s_determine_socket_error(errno_value);
aws_raise_error(aws_error);
break;
}
size_t remaining_to_write = write_request->cursor_cpy.len;
aws_byte_cursor_advance(&write_request->cursor_cpy, (size_t)written);
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: remaining write request to write %llu",
(void *)socket,
socket->io_handle.data.fd,
(unsigned long long)write_request->cursor_cpy.len);
if ((size_t)written == remaining_to_write) {
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET, "id=%p fd=%d: write request completed", (void *)socket, socket->io_handle.data.fd);
aws_linked_list_remove(node);
write_request->error_code = AWS_ERROR_SUCCESS;
aws_linked_list_push_back(&socket_impl->written_queue, node);
pushed_to_written_queue = true;
}
}
if (purge) {
while (!aws_linked_list_empty(&socket_impl->write_queue)) {
struct aws_linked_list_node *node = aws_linked_list_pop_front(&socket_impl->write_queue);
struct socket_write_request *write_request = AWS_CONTAINER_OF(node, struct socket_write_request, node);
/* If this fn was invoked directly from aws_socket_write(), don't invoke the error callback
* as the user will be able to rely on the return value from aws_socket_write() */
if (write_request == parent_request) {
parent_request_failed = true;
aws_mem_release(socket->allocator, write_request);
} else {
write_request->error_code = aws_error;
aws_linked_list_push_back(&socket_impl->written_queue, node);
pushed_to_written_queue = true;
}
}
}
if (pushed_to_written_queue && !socket_impl->written_task_scheduled) {
socket_impl->written_task_scheduled = true;
aws_task_init(&socket_impl->written_task, s_written_task, socket, "socket_written_task");
aws_event_loop_schedule_task_now(socket->event_loop, &socket_impl->written_task);
}
/* Only report error if aws_socket_write() invoked this function and its write_request failed */
if (!parent_request_failed) {
return AWS_OP_SUCCESS;
}
aws_raise_error(aws_error);
return AWS_OP_ERR;
}
static void s_on_socket_io_event(
struct aws_event_loop *event_loop,
struct aws_io_handle *handle,
int events,
void *user_data) {
(void)event_loop;
(void)handle;
struct aws_socket *socket = user_data;
struct posix_socket *socket_impl = socket->impl;
/* this is to handle a race condition when an error kicks off a cleanup, or the user decides
* to close the socket based on something they read (SSL validation failed for example).
* if clean_up happens when internal_refcount > 0, socket_impl is kept dangling but currently
* subscribed is set to false. */
aws_ref_count_acquire(&socket_impl->internal_refcount);
if (events & AWS_IO_EVENT_TYPE_REMOTE_HANG_UP || events & AWS_IO_EVENT_TYPE_CLOSED) {
aws_raise_error(AWS_IO_SOCKET_CLOSED);
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "id=%p fd=%d: closed remotely", (void *)socket, socket->io_handle.data.fd);
if (socket->readable_fn) {
socket->readable_fn(socket, AWS_IO_SOCKET_CLOSED, socket->readable_user_data);
}
goto end_check;
}
if (socket_impl->currently_subscribed && events & AWS_IO_EVENT_TYPE_ERROR) {
int aws_error = aws_socket_get_error(socket);
aws_raise_error(aws_error);
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET, "id=%p fd=%d: error event occurred", (void *)socket, socket->io_handle.data.fd);
if (socket->readable_fn) {
socket->readable_fn(socket, aws_error, socket->readable_user_data);
}
goto end_check;
}
if (socket_impl->currently_subscribed && events & AWS_IO_EVENT_TYPE_READABLE) {
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "id=%p fd=%d: is readable", (void *)socket, socket->io_handle.data.fd);
if (socket->readable_fn) {
socket->readable_fn(socket, AWS_OP_SUCCESS, socket->readable_user_data);
}
}
/* if socket closed in between these branches, the currently_subscribed will be false and socket_impl will not
* have been cleaned up, so this next branch is safe. */
if (socket_impl->currently_subscribed && events & AWS_IO_EVENT_TYPE_WRITABLE) {
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "id=%p fd=%d: is writable", (void *)socket, socket->io_handle.data.fd);
s_process_socket_write_requests(socket, NULL);
}
end_check:
aws_ref_count_release(&socket_impl->internal_refcount);
}
int aws_socket_assign_to_event_loop(struct aws_socket *socket, struct aws_event_loop *event_loop) {
if (!socket->event_loop) {
AWS_LOGF_DEBUG(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: assigning to event loop %p",
(void *)socket,
socket->io_handle.data.fd,
(void *)event_loop);
socket->event_loop = event_loop;
struct posix_socket *socket_impl = socket->impl;
socket_impl->currently_subscribed = true;
if (aws_event_loop_subscribe_to_io_events(
event_loop,
&socket->io_handle,
AWS_IO_EVENT_TYPE_WRITABLE | AWS_IO_EVENT_TYPE_READABLE,
s_on_socket_io_event,
socket)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: assigning to event loop %p failed with error %d",
(void *)socket,
socket->io_handle.data.fd,
(void *)event_loop,
aws_last_error());
socket_impl->currently_subscribed = false;
socket->event_loop = NULL;
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
return aws_raise_error(AWS_IO_EVENT_LOOP_ALREADY_ASSIGNED);
}
struct aws_event_loop *aws_socket_get_event_loop(struct aws_socket *socket) {
return socket->event_loop;
}
int aws_socket_subscribe_to_readable_events(
struct aws_socket *socket,
aws_socket_on_readable_fn *on_readable,
void *user_data) {
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET, " id=%p fd=%d: subscribing to readable events", (void *)socket, socket->io_handle.data.fd);
if (!(socket->state & CONNECTED_READ)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: can't subscribe to readable events since the socket is not connected",
(void *)socket,
socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_SOCKET_NOT_CONNECTED);
}
if (socket->readable_fn) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: can't subscribe to readable events since it is already subscribed",
(void *)socket,
socket->io_handle.data.fd);
return aws_raise_error(AWS_ERROR_IO_ALREADY_SUBSCRIBED);
}
AWS_ASSERT(on_readable);
socket->readable_user_data = user_data;
socket->readable_fn = on_readable;
return AWS_OP_SUCCESS;
}
int aws_socket_read(struct aws_socket *socket, struct aws_byte_buf *buffer, size_t *amount_read) {
AWS_ASSERT(amount_read);
if (!aws_event_loop_thread_is_callers_thread(socket->event_loop)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: cannot read from a different thread than event loop %p",
(void *)socket,
socket->io_handle.data.fd,
(void *)socket->event_loop);
return aws_raise_error(AWS_ERROR_IO_EVENT_LOOP_THREAD_ONLY);
}
if (!(socket->state & CONNECTED_READ)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: cannot read because it is not connected",
(void *)socket,
socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_SOCKET_NOT_CONNECTED);
}
ssize_t read_val = read(socket->io_handle.data.fd, buffer->buffer + buffer->len, buffer->capacity - buffer->len);
int errno_value = errno; /* Always cache errno before potential side-effect */
AWS_LOGF_TRACE(
AWS_LS_IO_SOCKET, "id=%p fd=%d: read of %d", (void *)socket, socket->io_handle.data.fd, (int)read_val);
if (read_val > 0) {
*amount_read = (size_t)read_val;
buffer->len += *amount_read;
return AWS_OP_SUCCESS;
}
/* read_val of 0 means EOF which we'll treat as AWS_IO_SOCKET_CLOSED */
if (read_val == 0) {
AWS_LOGF_INFO(
AWS_LS_IO_SOCKET, "id=%p fd=%d: zero read, socket is closed", (void *)socket, socket->io_handle.data.fd);
*amount_read = 0;
if (buffer->capacity - buffer->len > 0) {
return aws_raise_error(AWS_IO_SOCKET_CLOSED);
}
return AWS_OP_SUCCESS;
}
#if defined(EWOULDBLOCK)
if (errno_value == EAGAIN || errno_value == EWOULDBLOCK) {
#else
if (errno_value == EAGAIN) {
#endif
AWS_LOGF_TRACE(AWS_LS_IO_SOCKET, "id=%p fd=%d: read would block", (void *)socket, socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_READ_WOULD_BLOCK);
}
if (errno_value == EPIPE || errno_value == ECONNRESET) {
AWS_LOGF_INFO(AWS_LS_IO_SOCKET, "id=%p fd=%d: socket is closed.", (void *)socket, socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_SOCKET_CLOSED);
}
if (errno_value == ETIMEDOUT) {
AWS_LOGF_ERROR(AWS_LS_IO_SOCKET, "id=%p fd=%d: socket timed out.", (void *)socket, socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_SOCKET_TIMEOUT);
}
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: read failed with error: %s",
(void *)socket,
socket->io_handle.data.fd,
strerror(errno_value));
return aws_raise_error(s_determine_socket_error(errno_value));
}
int aws_socket_write(
struct aws_socket *socket,
const struct aws_byte_cursor *cursor,
aws_socket_on_write_completed_fn *written_fn,
void *user_data) {
if (!aws_event_loop_thread_is_callers_thread(socket->event_loop)) {
return aws_raise_error(AWS_ERROR_IO_EVENT_LOOP_THREAD_ONLY);
}
if (!(socket->state & CONNECTED_WRITE)) {
AWS_LOGF_ERROR(
AWS_LS_IO_SOCKET,
"id=%p fd=%d: cannot write to because it is not connected",
(void *)socket,
socket->io_handle.data.fd);
return aws_raise_error(AWS_IO_SOCKET_NOT_CONNECTED);
}
AWS_ASSERT(written_fn);
struct posix_socket *socket_impl = socket->impl;
struct socket_write_request *write_request =
aws_mem_calloc(socket->allocator, 1, sizeof(struct socket_write_request));
if (!write_request) {
return AWS_OP_ERR;
}
write_request->original_buffer_len = cursor->len;
write_request->written_fn = written_fn;
write_request->write_user_data = user_data;
write_request->cursor_cpy = *cursor;
aws_linked_list_push_back(&socket_impl->write_queue, &write_request->node);
return s_process_socket_write_requests(socket, write_request);
}
int aws_socket_get_error(struct aws_socket *socket) {
int connect_result;
socklen_t result_length = sizeof(connect_result);
if (getsockopt(socket->io_handle.data.fd, SOL_SOCKET, SO_ERROR, &connect_result, &result_length) < 0) {
return s_determine_socket_error(errno);
}
if (connect_result) {
return s_determine_socket_error(connect_result);
}
return AWS_OP_SUCCESS;
}
bool aws_socket_is_open(struct aws_socket *socket) {
return socket->io_handle.data.fd >= 0;
}
void aws_socket_endpoint_init_local_address_for_test(struct aws_socket_endpoint *endpoint) {
struct aws_uuid uuid;
AWS_FATAL_ASSERT(aws_uuid_init(&uuid) == AWS_OP_SUCCESS);
char uuid_str[AWS_UUID_STR_LEN] = {0};
struct aws_byte_buf uuid_buf = aws_byte_buf_from_empty_array(uuid_str, sizeof(uuid_str));
AWS_FATAL_ASSERT(aws_uuid_to_str(&uuid, &uuid_buf) == AWS_OP_SUCCESS);
snprintf(endpoint->address, sizeof(endpoint->address), "testsock" PRInSTR ".sock", AWS_BYTE_BUF_PRI(uuid_buf));
}
|