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
|
/*
* SRT - Secure, Reliable, Transport
* Copyright (c) 2018 Haivision Systems Inc.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
/*****************************************************************************
Copyright (c) 2001 - 2011, The Board of Trustees of the University of Illinois.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above
copyright notice, this list of conditions and the
following disclaimer.
* Redistributions in binary form must reproduce the
above copyright notice, this list of conditions
and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Illinois
nor the names of its contributors may be used to
endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************/
/*****************************************************************************
written by
Yunhong Gu, last updated 05/05/2011
modified by
Haivision Systems Inc.
*****************************************************************************/
#include "platform_sys.h"
#include <cstring>
#include "common.h"
#include "api.h"
#include "netinet_any.h"
#include "threadname.h"
#include "logging.h"
#include "queue.h"
using namespace std;
using namespace srt::sync;
using namespace srt_logging;
srt::CUnitQueue::CUnitQueue(int initNumUnits, int mss)
: m_iNumTaken(0)
, m_iMSS(mss)
, m_iBlockSize(initNumUnits)
{
CQEntry* tempq = allocateEntry(m_iBlockSize, m_iMSS);
if (tempq == NULL)
throw CUDTException(MJ_SYSTEMRES, MN_MEMORY);
m_pQEntry = m_pCurrQueue = m_pLastQueue = tempq;
m_pQEntry->m_pNext = m_pQEntry;
m_pAvailUnit = m_pCurrQueue->m_pUnit;
m_iSize = m_iBlockSize;
}
srt::CUnitQueue::~CUnitQueue()
{
CQEntry* p = m_pQEntry;
while (p != NULL)
{
delete[] p->m_pUnit;
delete[] p->m_pBuffer;
CQEntry* q = p;
if (p == m_pLastQueue)
p = NULL;
else
p = p->m_pNext;
delete q;
}
}
srt::CUnitQueue::CQEntry* srt::CUnitQueue::allocateEntry(const int iNumUnits, const int mss)
{
CQEntry* tempq = NULL;
CUnit* tempu = NULL;
char* tempb = NULL;
try
{
tempq = new CQEntry;
tempu = new CUnit[iNumUnits];
tempb = new char[iNumUnits * mss];
}
catch (...)
{
delete tempq;
delete[] tempu;
delete[] tempb;
LOGC(rslog.Error, log << "CUnitQueue: failed to allocate " << iNumUnits << " units.");
return NULL;
}
for (int i = 0; i < iNumUnits; ++i)
{
tempu[i].m_bTaken = false;
tempu[i].m_Packet.m_pcData = tempb + i * mss;
}
tempq->m_pUnit = tempu;
tempq->m_pBuffer = tempb;
tempq->m_iSize = iNumUnits;
return tempq;
}
int srt::CUnitQueue::increase_()
{
const int numUnits = m_iBlockSize;
HLOGC(qrlog.Debug, log << "CUnitQueue::increase: Capacity" << capacity() << " + " << numUnits << " new units, " << m_iNumTaken << " in use.");
CQEntry* tempq = allocateEntry(numUnits, m_iMSS);
if (tempq == NULL)
return -1;
m_pLastQueue->m_pNext = tempq;
m_pLastQueue = tempq;
m_pLastQueue->m_pNext = m_pQEntry;
m_iSize += numUnits;
return 0;
}
srt::CUnit* srt::CUnitQueue::getNextAvailUnit()
{
const int iNumUnitsTotal = capacity();
if (m_iNumTaken * 10 > iNumUnitsTotal * 9) // 90% or more are in use.
increase_();
if (m_iNumTaken >= capacity())
{
LOGC(qrlog.Error, log << "CUnitQueue: No free units to take. Capacity" << capacity() << ".");
return NULL;
}
int units_checked = 0;
do
{
const CUnit* end = m_pCurrQueue->m_pUnit + m_pCurrQueue->m_iSize;
for (; m_pAvailUnit != end; ++m_pAvailUnit, ++units_checked)
{
if (!m_pAvailUnit->m_bTaken)
{
return m_pAvailUnit;
}
}
m_pCurrQueue = m_pCurrQueue->m_pNext;
m_pAvailUnit = m_pCurrQueue->m_pUnit;
} while (units_checked < m_iSize);
return NULL;
}
void srt::CUnitQueue::makeUnitFree(CUnit* unit)
{
SRT_ASSERT(unit != NULL);
SRT_ASSERT(unit->m_bTaken);
unit->m_bTaken.store(false);
--m_iNumTaken;
}
void srt::CUnitQueue::makeUnitTaken(CUnit* unit)
{
++m_iNumTaken;
SRT_ASSERT(unit != NULL);
SRT_ASSERT(!unit->m_bTaken);
unit->m_bTaken.store(true);
}
srt::CSndUList::CSndUList(sync::CTimer* pTimer)
: m_pHeap(NULL)
, m_iArrayLength(512)
, m_iLastEntry(-1)
, m_ListLock()
, m_pTimer(pTimer)
{
setupCond(m_ListCond, "CSndUListCond");
m_pHeap = new CSNode*[m_iArrayLength];
}
srt::CSndUList::~CSndUList()
{
releaseCond(m_ListCond);
delete[] m_pHeap;
}
void srt::CSndUList::update(const CUDT* u, EReschedule reschedule, sync::steady_clock::time_point ts)
{
ScopedLock listguard(m_ListLock);
CSNode* n = u->m_pSNode;
if (n->m_iHeapLoc >= 0)
{
if (reschedule == DONT_RESCHEDULE)
return;
if (n->m_tsTimeStamp <= ts)
return;
if (n->m_iHeapLoc == 0)
{
n->m_tsTimeStamp = ts;
m_pTimer->interrupt();
return;
}
remove_(u);
insert_norealloc_(ts, u);
return;
}
insert_(ts, u);
}
srt::CUDT* srt::CSndUList::pop()
{
ScopedLock listguard(m_ListLock);
if (-1 == m_iLastEntry)
return NULL;
// no pop until the next scheduled time
if (m_pHeap[0]->m_tsTimeStamp > steady_clock::now())
return NULL;
CUDT* u = m_pHeap[0]->m_pUDT;
remove_(u);
return u;
}
void srt::CSndUList::remove(const CUDT* u)
{
ScopedLock listguard(m_ListLock);
remove_(u);
}
steady_clock::time_point srt::CSndUList::getNextProcTime()
{
ScopedLock listguard(m_ListLock);
if (-1 == m_iLastEntry)
return steady_clock::time_point();
return m_pHeap[0]->m_tsTimeStamp;
}
void srt::CSndUList::waitNonEmpty() const
{
UniqueLock listguard(m_ListLock);
if (m_iLastEntry >= 0)
return;
m_ListCond.wait(listguard);
}
void srt::CSndUList::signalInterrupt() const
{
ScopedLock listguard(m_ListLock);
m_ListCond.notify_one();
}
void srt::CSndUList::realloc_()
{
CSNode** temp = NULL;
try
{
temp = new CSNode*[2 * m_iArrayLength];
}
catch (...)
{
throw CUDTException(MJ_SYSTEMRES, MN_MEMORY, 0);
}
memcpy((temp), m_pHeap, sizeof(CSNode*) * m_iArrayLength);
m_iArrayLength *= 2;
delete[] m_pHeap;
m_pHeap = temp;
}
void srt::CSndUList::insert_(const steady_clock::time_point& ts, const CUDT* u)
{
// increase the heap array size if necessary
if (m_iLastEntry == m_iArrayLength - 1)
realloc_();
insert_norealloc_(ts, u);
}
void srt::CSndUList::insert_norealloc_(const steady_clock::time_point& ts, const CUDT* u)
{
CSNode* n = u->m_pSNode;
// do not insert repeated node
if (n->m_iHeapLoc >= 0)
return;
SRT_ASSERT(m_iLastEntry < m_iArrayLength);
m_iLastEntry++;
m_pHeap[m_iLastEntry] = n;
n->m_tsTimeStamp = ts;
int q = m_iLastEntry;
int p = q;
while (p != 0)
{
p = (q - 1) >> 1;
if (m_pHeap[p]->m_tsTimeStamp <= m_pHeap[q]->m_tsTimeStamp)
break;
swap(m_pHeap[p], m_pHeap[q]);
m_pHeap[q]->m_iHeapLoc = q;
q = p;
}
n->m_iHeapLoc = q;
// an earlier event has been inserted, wake up sending worker
if (n->m_iHeapLoc == 0)
m_pTimer->interrupt();
// first entry, activate the sending queue
if (0 == m_iLastEntry)
{
// m_ListLock is assumed to be locked.
m_ListCond.notify_one();
}
}
void srt::CSndUList::remove_(const CUDT* u)
{
CSNode* n = u->m_pSNode;
if (n->m_iHeapLoc >= 0)
{
// remove the node from heap
m_pHeap[n->m_iHeapLoc] = m_pHeap[m_iLastEntry];
m_iLastEntry--;
m_pHeap[n->m_iHeapLoc]->m_iHeapLoc = n->m_iHeapLoc.load();
int q = n->m_iHeapLoc;
int p = q * 2 + 1;
while (p <= m_iLastEntry)
{
if ((p + 1 <= m_iLastEntry) && (m_pHeap[p]->m_tsTimeStamp > m_pHeap[p + 1]->m_tsTimeStamp))
p++;
if (m_pHeap[q]->m_tsTimeStamp > m_pHeap[p]->m_tsTimeStamp)
{
swap(m_pHeap[p], m_pHeap[q]);
m_pHeap[p]->m_iHeapLoc = p;
m_pHeap[q]->m_iHeapLoc = q;
q = p;
p = q * 2 + 1;
}
else
break;
}
n->m_iHeapLoc = -1;
}
// the only event has been deleted, wake up immediately
if (0 == m_iLastEntry)
m_pTimer->interrupt();
}
//
srt::CSndQueue::CSndQueue()
: m_pSndUList(NULL)
, m_pChannel(NULL)
, m_pTimer(NULL)
, m_bClosing(false)
{
}
srt::CSndQueue::~CSndQueue()
{
m_bClosing = true;
if (m_pTimer != NULL)
{
m_pTimer->interrupt();
}
// Unblock CSndQueue worker thread if it is waiting.
m_pSndUList->signalInterrupt();
if (m_WorkerThread.joinable())
{
HLOGC(rslog.Debug, log << "SndQueue: EXIT");
m_WorkerThread.join();
}
delete m_pSndUList;
}
int srt::CSndQueue::ioctlQuery(int type) const
{
return m_pChannel->ioctlQuery(type);
}
int srt::CSndQueue::sockoptQuery(int level, int type) const
{
return m_pChannel->sockoptQuery(level, type);
}
#if ENABLE_LOGGING
srt::sync::atomic<int> srt::CSndQueue::m_counter(0);
#endif
void srt::CSndQueue::init(CChannel* c, CTimer* t)
{
m_pChannel = c;
m_pTimer = t;
m_pSndUList = new CSndUList(t);
#if ENABLE_LOGGING
++m_counter;
const std::string thrname = "SRT:SndQ:w" + Sprint(m_counter);
const char* thname = thrname.c_str();
#else
const char* thname = "SRT:SndQ";
#endif
if (!StartThread(m_WorkerThread, CSndQueue::worker, this, thname))
throw CUDTException(MJ_SYSTEMRES, MN_THREAD);
}
int srt::CSndQueue::getIpTTL() const
{
return m_pChannel ? m_pChannel->getIpTTL() : -1;
}
int srt::CSndQueue::getIpToS() const
{
return m_pChannel ? m_pChannel->getIpToS() : -1;
}
#ifdef SRT_ENABLE_BINDTODEVICE
bool srt::CSndQueue::getBind(char* dst, size_t len) const
{
return m_pChannel ? m_pChannel->getBind(dst, len) : false;
}
#endif
#if defined(SRT_DEBUG_SNDQ_HIGHRATE)
static void CSndQueueDebugHighratePrint(const srt::CSndQueue* self, const steady_clock::time_point currtime)
{
if (self->m_DbgTime <= currtime)
{
fprintf(stdout,
"SndQueue %lu slt:%lu nrp:%lu snt:%lu nrt:%lu ctw:%lu\n",
self->m_WorkerStats.lIteration,
self->m_WorkerStats.lSleepTo,
self->m_WorkerStats.lNotReadyPop,
self->m_WorkerStats.lSendTo,
self->m_WorkerStats.lNotReadyTs,
self->m_WorkerStats.lCondWait);
memset(&self->m_WorkerStats, 0, sizeof(self->m_WorkerStats));
self->m_DbgTime = currtime + self->m_DbgPeriod;
}
}
#endif
void* srt::CSndQueue::worker(void* param)
{
CSndQueue* self = (CSndQueue*)param;
std::string thname;
ThreadName::get(thname);
THREAD_STATE_INIT(thname.c_str());
#if defined(SRT_DEBUG_SNDQ_HIGHRATE)
#define IF_DEBUG_HIGHRATE(statement) statement
self->m_DbgTime = sync::steady_clock::now();
self->m_DbgPeriod = sync::microseconds_from(5000000);
self->m_DbgTime += self->m_DbgPeriod;
#else
#define IF_DEBUG_HIGHRATE(statement) (void)0
#endif /* SRT_DEBUG_SNDQ_HIGHRATE */
while (!self->m_bClosing)
{
const steady_clock::time_point next_time = self->m_pSndUList->getNextProcTime();
INCREMENT_THREAD_ITERATIONS();
IF_DEBUG_HIGHRATE(self->m_WorkerStats.lIteration++);
if (is_zero(next_time))
{
IF_DEBUG_HIGHRATE(self->m_WorkerStats.lNotReadyTs++);
// wait here if there is no sockets with data to be sent
THREAD_PAUSED();
if (!self->m_bClosing)
{
self->m_pSndUList->waitNonEmpty();
IF_DEBUG_HIGHRATE(self->m_WorkerStats.lCondWait++);
}
THREAD_RESUMED();
continue;
}
// wait until next processing time of the first socket on the list
const steady_clock::time_point currtime = steady_clock::now();
IF_DEBUG_HIGHRATE(CSndQueueDebugHighratePrint(self, currtime));
if (currtime < next_time)
{
THREAD_PAUSED();
self->m_pTimer->sleep_until(next_time);
THREAD_RESUMED();
IF_DEBUG_HIGHRATE(self->m_WorkerStats.lSleepTo++);
}
// Get a socket with a send request if any.
CUDT* u = self->m_pSndUList->pop();
if (u == NULL)
{
IF_DEBUG_HIGHRATE(self->m_WorkerStats.lNotReadyPop++);
continue;
}
#define UST(field) ((u->m_b##field) ? "+" : "-") << #field << " "
HLOGC(qslog.Debug,
log << "CSndQueue: requesting packet from @" << u->socketID() << " STATUS: " << UST(Listening)
<< UST(Connecting) << UST(Connected) << UST(Closing) << UST(Shutdown) << UST(Broken) << UST(PeerHealth)
<< UST(Opened));
#undef UST
if (!u->m_bConnected || u->m_bBroken)
{
IF_DEBUG_HIGHRATE(self->m_WorkerStats.lNotReadyPop++);
continue;
}
CUDTUnited::SocketKeeper sk (CUDT::uglobal(), u->id());
if (!sk.socket)
{
HLOGC(qslog.Debug, log << "Socket to be processed was deleted in the meantime, not packing");
continue;
}
// pack a packet from the socket
CPacket pkt;
steady_clock::time_point next_send_time;
sockaddr_any source_addr;
const bool res = u->packData((pkt), (next_send_time), (source_addr));
// Check if extracted anything to send
if (res == false)
{
IF_DEBUG_HIGHRATE(self->m_WorkerStats.lNotReadyPop++);
continue;
}
const sockaddr_any addr = u->m_PeerAddr;
if (!is_zero(next_send_time))
self->m_pSndUList->update(u, CSndUList::DO_RESCHEDULE, next_send_time);
HLOGC(qslog.Debug, log << self->CONID() << "chn:SENDING: " << pkt.Info());
self->m_pChannel->sendto(addr, pkt, source_addr);
IF_DEBUG_HIGHRATE(self->m_WorkerStats.lSendTo++);
}
THREAD_EXIT();
return NULL;
}
int srt::CSndQueue::sendto(const sockaddr_any& addr, CPacket& w_packet, const sockaddr_any& src)
{
// send out the packet immediately (high priority), this is a control packet
// NOTE: w_packet is passed by mutable reference because this function will do
// a modification in place and then it will revert it. After returning this object
// should look unmodified, hence it is here passed without a reference marker.
m_pChannel->sendto(addr, w_packet, src);
return (int)w_packet.getLength();
}
//
srt::CRcvUList::CRcvUList()
: m_pUList(NULL)
, m_pLast(NULL)
{
}
srt::CRcvUList::~CRcvUList() {}
void srt::CRcvUList::insert(const CUDT* u)
{
CRNode* n = u->m_pRNode;
n->m_tsTimeStamp = steady_clock::now();
if (NULL == m_pUList)
{
// empty list, insert as the single node
n->m_pPrev = n->m_pNext = NULL;
m_pLast = m_pUList = n;
return;
}
// always insert at the end for RcvUList
n->m_pPrev = m_pLast;
n->m_pNext = NULL;
m_pLast->m_pNext = n;
m_pLast = n;
}
void srt::CRcvUList::remove(const CUDT* u)
{
CRNode* n = u->m_pRNode;
if (!n->m_bOnList)
return;
if (NULL == n->m_pPrev)
{
// n is the first node
m_pUList = n->m_pNext;
if (NULL == m_pUList)
m_pLast = NULL;
else
m_pUList->m_pPrev = NULL;
}
else
{
n->m_pPrev->m_pNext = n->m_pNext;
if (NULL == n->m_pNext)
{
// n is the last node
m_pLast = n->m_pPrev;
}
else
n->m_pNext->m_pPrev = n->m_pPrev;
}
n->m_pNext = n->m_pPrev = NULL;
}
void srt::CRcvUList::update(const CUDT* u)
{
CRNode* n = u->m_pRNode;
if (!n->m_bOnList)
return;
n->m_tsTimeStamp = steady_clock::now();
// if n is the last node, do not need to change
if (NULL == n->m_pNext)
return;
if (NULL == n->m_pPrev)
{
m_pUList = n->m_pNext;
m_pUList->m_pPrev = NULL;
}
else
{
n->m_pPrev->m_pNext = n->m_pNext;
n->m_pNext->m_pPrev = n->m_pPrev;
}
n->m_pPrev = m_pLast;
n->m_pNext = NULL;
m_pLast->m_pNext = n;
m_pLast = n;
}
//
srt::CHash::CHash()
: m_pBucket(NULL)
, m_iHashSize(0)
{
}
srt::CHash::~CHash()
{
for (int i = 0; i < m_iHashSize; ++i)
{
CBucket* b = m_pBucket[i];
while (NULL != b)
{
CBucket* n = b->m_pNext;
delete b;
b = n;
}
}
delete[] m_pBucket;
}
void srt::CHash::init(int size)
{
m_pBucket = new CBucket*[size];
for (int i = 0; i < size; ++i)
m_pBucket[i] = NULL;
m_iHashSize = size;
}
srt::CUDT* srt::CHash::lookup(int32_t id)
{
// simple hash function (% hash table size); suitable for socket descriptors
CBucket* b = m_pBucket[id % m_iHashSize];
while (NULL != b)
{
if (id == b->m_iID)
return b->m_pUDT;
b = b->m_pNext;
}
return NULL;
}
void srt::CHash::insert(int32_t id, CUDT* u)
{
CBucket* b = m_pBucket[id % m_iHashSize];
CBucket* n = new CBucket;
n->m_iID = id;
n->m_pUDT = u;
n->m_pNext = b;
m_pBucket[id % m_iHashSize] = n;
}
void srt::CHash::remove(int32_t id)
{
CBucket* b = m_pBucket[id % m_iHashSize];
CBucket* p = NULL;
while (NULL != b)
{
if (id == b->m_iID)
{
if (NULL == p)
m_pBucket[id % m_iHashSize] = b->m_pNext;
else
p->m_pNext = b->m_pNext;
delete b;
return;
}
p = b;
b = b->m_pNext;
}
}
//
srt::CRendezvousQueue::CRendezvousQueue()
: m_lRendezvousID()
, m_RIDListLock()
{
}
srt::CRendezvousQueue::~CRendezvousQueue()
{
m_lRendezvousID.clear();
}
void srt::CRendezvousQueue::insert(const SRTSOCKET& id,
CUDT* u,
const sockaddr_any& addr,
const steady_clock::time_point& ttl)
{
ScopedLock vg(m_RIDListLock);
CRL r;
r.m_iID = id;
r.m_pUDT = u;
r.m_PeerAddr = addr;
r.m_tsTTL = ttl;
m_lRendezvousID.push_back(r);
HLOGC(cnlog.Debug,
log << "RID: adding socket @" << id << " for address: " << addr.str() << " expires: " << FormatTime(ttl)
<< " (total connectors: " << m_lRendezvousID.size() << ")");
}
void srt::CRendezvousQueue::remove(const SRTSOCKET& id)
{
ScopedLock lkv(m_RIDListLock);
for (list<CRL>::iterator i = m_lRendezvousID.begin(); i != m_lRendezvousID.end(); ++i)
{
if (i->m_iID == id)
{
m_lRendezvousID.erase(i);
break;
}
}
}
srt::CUDT* srt::CRendezvousQueue::retrieve(const sockaddr_any& addr, SRTSOCKET& w_id) const
{
ScopedLock vg(m_RIDListLock);
IF_HEAVY_LOGGING(const char* const id_type = w_id ? "THIS ID" : "A NEW CONNECTION");
// TODO: optimize search
for (list<CRL>::const_iterator i = m_lRendezvousID.begin(); i != m_lRendezvousID.end(); ++i)
{
if (i->m_PeerAddr == addr && ((w_id == 0) || (w_id == i->m_iID)))
{
// This procedure doesn't exactly respond to the original UDT idea.
// As the "rendezvous queue" is used for both handling rendezvous and
// the caller sockets in the non-blocking mode (for blocking mode the
// entire handshake procedure is handled in a loop-style in CUDT::startConnect),
// the RID list should give up a socket entity in the following cases:
// 1. For THE SAME id as passed in w_id, respond always, as per a caller
// socket that is currently trying to connect and is managed with
// HS roundtrips in an event-style. Same for rendezvous.
// 2. For the "connection request" ID=0 the found socket should be given up
// ONLY IF it is rendezvous. Normally ID=0 is only for listener as a
// connection request. But if there was a listener, then this function
// wouldn't even be called, as this case would be handled before trying
// to call this function.
//
// This means: if an incoming ID is 0, then this search should succeed ONLY
// IF THE FOUND SOCKET WAS RENDEZVOUS.
if (!w_id && !i->m_pUDT->m_config.bRendezvous)
{
HLOGC(cnlog.Debug,
log << "RID: found id @" << i->m_iID << " while looking for "
<< id_type << " FROM " << i->m_PeerAddr.str()
<< ", but it's NOT RENDEZVOUS, skipping");
continue;
}
HLOGC(cnlog.Debug,
log << "RID: found id @" << i->m_iID << " while looking for "
<< id_type << " FROM " << i->m_PeerAddr.str());
w_id = i->m_iID;
return i->m_pUDT;
}
}
#if ENABLE_HEAVY_LOGGING
std::ostringstream spec;
if (w_id == 0)
spec << "A NEW CONNECTION REQUEST";
else
spec << " AGENT @" << w_id;
HLOGC(cnlog.Debug,
log << "RID: NO CONNECTOR FOR ADR:" << addr.str() << " while looking for " << spec.str() << " ("
<< m_lRendezvousID.size() << " connectors total)");
#endif
return NULL;
}
void srt::CRendezvousQueue::updateConnStatus(EReadStatus rst, EConnectStatus cst, CUnit* unit)
{
vector<LinkStatusInfo> toRemove, toProcess;
const CPacket* pkt = unit ? &unit->m_Packet : NULL;
// Need a stub value for a case when there's no unit provided ("storage depleted" case).
// It should be normally NOT IN USE because in case of "storage depleted", rst != RST_OK.
const SRTSOCKET dest_id = pkt ? pkt->id() : 0;
// If no socket were qualified for further handling, finish here.
// Otherwise toRemove and toProcess contain items to handle.
if (!qualifyToHandle(rst, cst, dest_id, (toRemove), (toProcess)))
return;
HLOGC(cnlog.Debug,
log << "updateConnStatus: collected " << toProcess.size() << " for processing, " << toRemove.size()
<< " to close");
// Repeat (resend) connection request.
for (vector<LinkStatusInfo>::iterator i = toProcess.begin(); i != toProcess.end(); ++i)
{
// IMPORTANT INFORMATION concerning changes towards UDT legacy.
// In the UDT code there was no attempt to interpret any incoming data.
// All data from the incoming packet were considered to be already deployed into
// m_ConnRes field, and m_ConnReq field was considered at this time accordingly updated.
// Therefore this procedure did only one thing: craft a new handshake packet and send it.
// In SRT this may also interpret extra data (extensions in case when Agent is Responder)
// and the `pktIn` packet may sometimes contain no data. Therefore the passed `rst`
// must be checked to distinguish the call by periodic update (RST_AGAIN) from a call
// due to have received the packet (RST_OK).
//
// In the below call, only the underlying `processRendezvous` function will be attempting
// to interpret these data (for caller-listener this was already done by `processConnectRequest`
// before calling this function), and it checks for the data presence.
EReadStatus read_st = rst;
EConnectStatus conn_st = cst;
CUDTUnited::SocketKeeper sk (CUDT::uglobal(), i->id);
if (!sk.socket)
{
// Socket deleted already, so stop this and proceed to the next loop.
LOGC(cnlog.Error, log << "updateConnStatus: IPE: socket @" << i->id << " already closed, proceed to only removal from lists");
toRemove.push_back(*i);
continue;
}
if (cst != CONN_RENDEZVOUS && dest_id != 0)
{
if (i->id != dest_id)
{
HLOGC(cnlog.Debug, log << "updateConnStatus: cst=" << ConnectStatusStr(cst) << " but for RID @" << i->id
<< " dest_id=@" << dest_id << " - resetting to AGAIN");
read_st = RST_AGAIN;
conn_st = CONN_AGAIN;
}
else
{
HLOGC(cnlog.Debug, log << "updateConnStatus: cst=" << ConnectStatusStr(cst) << " for @"
<< i->id);
}
}
else
{
HLOGC(cnlog.Debug, log << "updateConnStatus: cst=" << ConnectStatusStr(cst) << " and dest_id=@" << dest_id
<< " - NOT checking against RID @" << i->id);
}
HLOGC(cnlog.Debug,
log << "updateConnStatus: processing async conn for @" << i->id << " FROM " << i->peeraddr.str());
if (!i->u->processAsyncConnectRequest(read_st, conn_st, pkt, i->peeraddr))
{
// cst == CONN_REJECT can only be result of worker_ProcessAddressedPacket and
// its already set in this case.
LinkStatusInfo fi = *i;
fi.errorcode = SRT_ECONNREJ;
toRemove.push_back(fi);
i->u->sendCtrl(UMSG_SHUTDOWN);
}
}
// NOTE: it is "believed" here that all CUDT objects will not be
// deleted in the meantime. This is based on a statement that at worst
// they have been "just" declared failed and it will pass at least 1s until
// they are moved to ClosedSockets and it is believed that this function will
// not be held on mutexes that long.
for (vector<LinkStatusInfo>::iterator i = toRemove.begin(); i != toRemove.end(); ++i)
{
HLOGC(cnlog.Debug, log << "updateConnStatus: COMPLETING dep objects update on failed @" << i->id);
remove(i->id);
CUDTUnited::SocketKeeper sk (CUDT::uglobal(), i->id);
if (!sk.socket)
{
// This actually shall never happen, so it's a kind of paranoid check.
LOGC(cnlog.Error, log << "updateConnStatus: IPE: socket @" << i->id << " already closed, NOT ACCESSING its contents");
continue;
}
// Setting m_bConnecting to false, and need to remove the socket from the rendezvous queue
// because the next CUDT::close will not remove it from the queue when m_bConnecting = false,
// and may crash on next pass.
//
// TODO: maybe lock i->u->m_ConnectionLock?
i->u->m_bConnecting = false;
// DO NOT close the socket here because in this case it might be
// unable to get status from at the right moment. Also only member
// sockets should be taken care of internally - single sockets should
// be normally closed by the application, after it is done with them.
// app can call any UDT API to learn the connection_broken error
CUDT::uglobal().m_EPoll.update_events(
i->u->m_SocketID, i->u->m_sPollID, SRT_EPOLL_IN | SRT_EPOLL_OUT | SRT_EPOLL_ERR, true);
// Make sure that the socket wasn't deleted in the meantime.
// Skip this part if it was. Note also that if the socket was
// decided to be deleted, it's already moved to m_ClosedSockets
// and should have been therefore already processed for deletion.
i->u->completeBrokenConnectionDependencies(i->errorcode);
}
{
// Now, additionally for every failed link reset the TTL so that
// they are set expired right now.
ScopedLock vg(m_RIDListLock);
for (list<CRL>::iterator i = m_lRendezvousID.begin(); i != m_lRendezvousID.end(); ++i)
{
if (find_if(toRemove.begin(), toRemove.end(), LinkStatusInfo::HasID(i->m_iID)) != toRemove.end())
{
LOGC(cnlog.Error,
log << "updateConnStatus: processAsyncConnectRequest FAILED on @" << i->m_iID
<< ". Setting TTL as EXPIRED.");
i->m_tsTTL =
steady_clock::time_point(); // Make it expire right now, will be picked up at the next iteration
}
}
}
}
bool srt::CRendezvousQueue::qualifyToHandle(EReadStatus rst,
EConnectStatus cst SRT_ATR_UNUSED,
int iDstSockID,
vector<LinkStatusInfo>& toRemove,
vector<LinkStatusInfo>& toProcess)
{
ScopedLock vg(m_RIDListLock);
if (m_lRendezvousID.empty())
return false; // nothing to process.
HLOGC(cnlog.Debug,
log << "updateConnStatus: updating after getting pkt with DST socket ID @" << iDstSockID
<< " status: " << ConnectStatusStr(cst));
for (list<CRL>::iterator i = m_lRendezvousID.begin(), i_next = i; i != m_lRendezvousID.end(); i = i_next)
{
// Safe iterator to the next element. If the current element is erased, the iterator is updated again.
++i_next;
const steady_clock::time_point tsNow = steady_clock::now();
if (tsNow >= i->m_tsTTL)
{
HLOGC(cnlog.Debug,
log << "RID: socket @" << i->m_iID
<< " removed - EXPIRED ("
// The "enforced on FAILURE" is below when processAsyncConnectRequest failed.
<< (is_zero(i->m_tsTTL) ? "enforced on FAILURE" : "passed TTL") << "). WILL REMOVE from queue.");
// Set appropriate error information, but do not update yet.
// Exit the lock first. Collect objects to update them later.
int ccerror = SRT_ECONNREJ;
if (i->m_pUDT->m_RejectReason == SRT_REJ_UNKNOWN)
{
if (!is_zero(i->m_tsTTL))
{
// Timer expired, set TIMEOUT forcefully
i->m_pUDT->m_RejectReason = SRT_REJ_TIMEOUT;
ccerror = SRT_ENOSERVER;
}
else
{
// In case of unknown reason, rejection should at least
// suggest error on the peer
i->m_pUDT->m_RejectReason = SRT_REJ_PEER;
}
}
// The call to completeBrokenConnectionDependencies() cannot happen here
// under the lock of m_RIDListLock as it risks a deadlock.
// Collect in 'toRemove' to update later.
LinkStatusInfo fi = {i->m_pUDT, i->m_iID, ccerror, i->m_PeerAddr, -1};
toRemove.push_back(fi);
// i_next was preincremented, but this is guaranteed to point to
// the element next to erased one.
i_next = m_lRendezvousID.erase(i);
continue;
}
else
{
HLOGC(cnlog.Debug,
log << "RID: socket @" << i->m_iID << " still active (remaining " << std::fixed
<< (count_microseconds(i->m_tsTTL - tsNow) / 1000000.0) << "s of TTL)...");
}
const steady_clock::time_point tsLastReq = i->m_pUDT->m_tsLastReqTime;
const steady_clock::time_point tsRepeat =
tsLastReq + milliseconds_from(250); // Repeat connection request (send HS).
// A connection request is repeated every 250 ms if there was no response from the peer:
// - RST_AGAIN means no packet was received over UDP.
// - a packet was received, but not for THIS socket.
if ((rst == RST_AGAIN || i->m_iID != iDstSockID) && tsNow <= tsRepeat)
{
HLOGC(cnlog.Debug,
log << "RID:@" << i->m_iID << " " << FormatDuration<DUNIT_MS>(tsNow - tsLastReq)
<< " passed since last connection request.");
continue;
}
HLOGC(cnlog.Debug,
log << "RID:@" << i->m_iID << " cst=" << ConnectStatusStr(cst) << " -- repeating connection request.");
// This queue is used only in case of Async mode (rendezvous or caller-listener).
// Synchronous connection requests are handled in startConnect() completely.
if (!i->m_pUDT->m_config.bSynRecving)
{
// Collect them so that they can be updated out of m_RIDListLock.
LinkStatusInfo fi = {i->m_pUDT, i->m_iID, SRT_SUCCESS, i->m_PeerAddr, -1};
toProcess.push_back(fi);
}
else
{
HLOGC(cnlog.Debug, log << "RID: socket @" << i->m_iID << " is SYNCHRONOUS, NOT UPDATING");
}
}
return !toRemove.empty() || !toProcess.empty();
}
//
srt::CRcvQueue::CRcvQueue()
: m_WorkerThread()
, m_pUnitQueue(NULL)
, m_pRcvUList(NULL)
, m_pHash(NULL)
, m_pChannel(NULL)
, m_pTimer(NULL)
, m_iIPversion()
, m_szPayloadSize()
, m_bClosing(false)
, m_pRendezvousQueue(NULL)
, m_vNewEntry()
, m_IDLock()
, m_mBuffer()
, m_BufferCond()
{
setupCond(m_BufferCond, "QueueBuffer");
}
srt::CRcvQueue::~CRcvQueue()
{
m_bClosing = true;
if (m_WorkerThread.joinable())
{
HLOGC(rslog.Debug, log << "RcvQueue: EXIT");
m_WorkerThread.join();
}
releaseCond(m_BufferCond);
delete m_pUnitQueue;
delete m_pRcvUList;
delete m_pHash;
delete m_pRendezvousQueue;
// remove all queued messages
for (map<int32_t, std::queue<CPacket*> >::iterator i = m_mBuffer.begin(); i != m_mBuffer.end(); ++i)
{
while (!i->second.empty())
{
CPacket* pkt = i->second.front();
delete pkt;
i->second.pop();
}
}
}
#if ENABLE_LOGGING
srt::sync::atomic<int> srt::CRcvQueue::m_counter(0);
#endif
void srt::CRcvQueue::init(int qsize, size_t payload, int version, int hsize, CChannel* cc, CTimer* t)
{
m_iIPversion = version;
m_szPayloadSize = payload;
SRT_ASSERT(m_pUnitQueue == NULL);
m_pUnitQueue = new CUnitQueue(qsize, (int)payload);
m_pHash = new CHash;
m_pHash->init(hsize);
m_pChannel = cc;
m_pTimer = t;
m_pRcvUList = new CRcvUList;
m_pRendezvousQueue = new CRendezvousQueue;
#if ENABLE_LOGGING
const int cnt = ++m_counter;
const std::string thrname = "SRT:RcvQ:w" + Sprint(cnt);
#else
const std::string thrname = "SRT:RcvQ:w";
#endif
if (!StartThread(m_WorkerThread, CRcvQueue::worker, this, thrname.c_str()))
{
throw CUDTException(MJ_SYSTEMRES, MN_THREAD);
}
}
void* srt::CRcvQueue::worker(void* param)
{
CRcvQueue* self = (CRcvQueue*)param;
sockaddr_any sa(self->getIPversion());
int32_t id = 0;
std::string thname;
ThreadName::get(thname);
THREAD_STATE_INIT(thname.c_str());
CUnit* unit = 0;
EConnectStatus cst = CONN_AGAIN;
while (!self->m_bClosing)
{
bool have_received = false;
EReadStatus rst = self->worker_RetrieveUnit((id), (unit), (sa));
INCREMENT_THREAD_ITERATIONS();
if (rst == RST_OK)
{
if (id < 0)
{
// User error on peer. May log something, but generally can only ignore it.
// XXX Think maybe about sending some "connection rejection response".
HLOGC(qrlog.Debug,
log << self->CONID() << "RECEIVED negative socket id '" << id
<< "', rejecting (POSSIBLE ATTACK)");
continue;
}
// NOTE: cst state is being changed here.
// This state should be maintained through any next failed calls to worker_RetrieveUnit.
// Any error switches this to rejection, just for a case.
// Note to rendezvous connection. This can accept:
// - ID == 0 - take the first waiting rendezvous socket
// - ID > 0 - find the rendezvous socket that has this ID.
if (id == 0)
{
// ID 0 is for connection request, which should be passed to the listening socket or rendezvous sockets
cst = self->worker_ProcessConnectionRequest(unit, sa);
}
else
{
// Otherwise ID is expected to be associated with:
// - an enqueued rendezvous socket
// - a socket connected to a peer
cst = self->worker_ProcessAddressedPacket(id, unit, sa);
// CAN RETURN CONN_REJECT, but m_RejectReason is already set
}
HLOGC(qrlog.Debug, log << self->CONID() << "worker: result for the unit: " << ConnectStatusStr(cst));
if (cst == CONN_AGAIN)
{
HLOGC(qrlog.Debug, log << self->CONID() << "worker: packet not dispatched, continuing reading.");
continue;
}
have_received = true;
}
else if (rst == RST_ERROR)
{
// According to the description by CChannel::recvfrom, this can be either of:
// - IPE: all errors except EBADF
// - socket was closed in the meantime by another thread: EBADF
// If EBADF, then it's expected that the "closing" state is also set.
// Check that just to report possible errors, but interrupt the loop anyway.
if (self->m_bClosing)
{
HLOGC(qrlog.Debug,
log << self->CONID() << "CChannel reported error, but Queue is closing - INTERRUPTING worker.");
}
else
{
LOGC(qrlog.Fatal,
log << self->CONID()
<< "CChannel reported ERROR DURING TRANSMISSION - IPE. INTERRUPTING worker anyway.");
}
cst = CONN_REJECT;
break;
}
// OTHERWISE: this is an "AGAIN" situation. No data was read, but the process should continue.
// take care of the timing event for all UDT sockets
const steady_clock::time_point curtime_minus_syn =
steady_clock::now() - microseconds_from(CUDT::COMM_SYN_INTERVAL_US);
CRNode* ul = self->m_pRcvUList->m_pUList;
while ((NULL != ul) && (ul->m_tsTimeStamp < curtime_minus_syn))
{
CUDT* u = ul->m_pUDT;
if (u->m_bConnected && !u->m_bBroken && !u->m_bClosing)
{
u->checkTimers();
self->m_pRcvUList->update(u);
}
else
{
HLOGC(qrlog.Debug,
log << CUDTUnited::CONID(u->m_SocketID) << " SOCKET broken, REMOVING FROM RCV QUEUE/MAP.");
// the socket must be removed from Hash table first, then RcvUList
self->m_pHash->remove(u->m_SocketID);
self->m_pRcvUList->remove(u);
u->m_pRNode->m_bOnList = false;
}
ul = self->m_pRcvUList->m_pUList;
}
if (have_received)
{
HLOGC(qrlog.Debug,
log << "worker: RECEIVED PACKET --> updateConnStatus. cst=" << ConnectStatusStr(cst) << " id=" << id
<< " pkt-payload-size=" << unit->m_Packet.getLength());
}
// Check connection requests status for all sockets in the RendezvousQueue.
// Pass the connection status from the last call of:
// worker_ProcessAddressedPacket --->
// worker_TryAsyncRend_OrStore --->
// CUDT::processAsyncConnectResponse --->
// CUDT::processConnectResponse
self->m_pRendezvousQueue->updateConnStatus(rst, cst, unit);
// XXX updateConnStatus may have removed the connector from the list,
// however there's still m_mBuffer in CRcvQueue for that socket to care about.
}
HLOGC(qrlog.Debug, log << "worker: EXIT");
THREAD_EXIT();
return NULL;
}
srt::EReadStatus srt::CRcvQueue::worker_RetrieveUnit(int32_t& w_id, CUnit*& w_unit, sockaddr_any& w_addr)
{
#if !USE_BUSY_WAITING
// This might be not really necessary, and probably
// not good for extensive bidirectional communication.
m_pTimer->tick();
#endif
// check waiting list, if new socket, insert it to the list
while (ifNewEntry())
{
CUDT* ne = getNewEntry();
if (ne)
{
HLOGC(qrlog.Debug,
log << CUDTUnited::CONID(ne->m_SocketID)
<< " SOCKET pending for connection - ADDING TO RCV QUEUE/MAP");
m_pRcvUList->insert(ne);
m_pHash->insert(ne->m_SocketID, ne);
}
}
// find next available slot for incoming packet
w_unit = m_pUnitQueue->getNextAvailUnit();
if (!w_unit)
{
// no space, skip this packet
CPacket temp;
temp.allocate(m_szPayloadSize);
THREAD_PAUSED();
EReadStatus rst = m_pChannel->recvfrom((w_addr), (temp));
THREAD_RESUMED();
// Note: this will print nothing about the packet details unless heavy logging is on.
LOGC(qrlog.Error, log << CONID() << "LOCAL STORAGE DEPLETED. Dropping 1 packet: " << temp.Info());
// Be transparent for RST_ERROR, but ignore the correct
// data read and fake that the packet was dropped.
return rst == RST_ERROR ? RST_ERROR : RST_AGAIN;
}
w_unit->m_Packet.setLength(m_szPayloadSize);
// reading next incoming packet, recvfrom returns -1 is nothing has been received
THREAD_PAUSED();
EReadStatus rst = m_pChannel->recvfrom((w_addr), (w_unit->m_Packet));
THREAD_RESUMED();
if (rst == RST_OK)
{
w_id = w_unit->m_Packet.id();
HLOGC(qrlog.Debug,
log << "INCOMING PACKET: FROM=" << w_addr.str() << " BOUND=" << m_pChannel->bindAddressAny().str() << " "
<< w_unit->m_Packet.Info());
}
return rst;
}
srt::EConnectStatus srt::CRcvQueue::worker_ProcessConnectionRequest(CUnit* unit, const sockaddr_any& addr)
{
HLOGC(cnlog.Debug,
log << "Got sockID=0 from " << addr.str() << " - trying to resolve it as a connection request...");
// Introduced protection because it may potentially happen
// that another thread could have closed the socket at
// the same time and inject a bug between checking the
// pointer for NULL and using it.
int listener_ret = SRT_REJ_UNKNOWN;
bool have_listener = false;
{
SharedLock shl(m_pListener);
CUDT* pListener = m_pListener.getPtrNoLock();
if (pListener)
{
LOGC(cnlog.Debug, log << "PASSING request from: " << addr.str() << " to listener:" << pListener->socketID());
listener_ret = pListener->processConnectRequest(addr, unit->m_Packet);
// This function does return a code, but it's hard to say as to whether
// anything can be done about it. In case when it's stated possible, the
// listener will try to send some rejection response to the caller, but
// that's already done inside this function. So it's only used for
// displaying the error in logs.
have_listener = true;
}
}
// NOTE: Rendezvous sockets do bind(), but not listen(). It means that the socket is
// ready to accept connection requests, but they are not being redirected to the listener
// socket, as this is not a listener socket at all. This goes then HERE.
if (have_listener) // That is, the above block with m_pListener->processConnectRequest was executed
{
LOGC(cnlog.Debug,
log << CONID() << "Listener got the connection request from: " << addr.str()
<< " result:" << RequestTypeStr(UDTRequestType(listener_ret)));
return listener_ret == SRT_REJ_UNKNOWN ? CONN_CONTINUE : CONN_REJECT;
}
// If there's no listener waiting for the packet, just store it into the queue.
return worker_TryAsyncRend_OrStore(0, unit, addr); // 0 id because the packet came in with that very ID.
}
srt::EConnectStatus srt::CRcvQueue::worker_ProcessAddressedPacket(int32_t id, CUnit* unit, const sockaddr_any& addr)
{
CUDT* u = m_pHash->lookup(id);
if (!u)
{
// Pass this to either async rendezvous connection,
// or store the packet in the queue.
HLOGC(cnlog.Debug, log << "worker_ProcessAddressedPacket: resending to QUEUED socket @" << id);
return worker_TryAsyncRend_OrStore(id, unit, addr);
}
// Although we don“t have an exclusive passing here,
// we can count on that when the socket was once present in the hash,
// it will not be deleted for at least one GC cycle. But we still need
// to maintain the object existence until it's in use.
// Note that here we are out of any locks, so m_GlobControlLock can be locked.
CUDTUnited::SocketKeeper sk (CUDT::uglobal(), u->m_parent);
// Found associated CUDT - process this as control or data packet
// addressed to an associated socket.
if (addr != u->m_PeerAddr)
{
HLOGC(cnlog.Debug,
log << CONID() << "Packet for SID=" << id << " asoc with " << u->m_PeerAddr.str() << " received from "
<< addr.str() << " (CONSIDERED ATTACK ATTEMPT)");
// This came not from the address that is the peer associated
// with the socket. Ignore it.
return CONN_AGAIN;
}
if (!u->m_bConnected || u->m_bBroken || u->m_bClosing)
{
u->m_RejectReason = SRT_REJ_CLOSE;
// The socket is currently in the process of being disconnected
// or destroyed. Ignore.
// XXX send UMSG_SHUTDOWN in this case?
// XXX May it require mutex protection?
return CONN_REJECT;
}
if (unit->m_Packet.isControl())
u->processCtrl(unit->m_Packet);
else
u->processData(unit);
u->checkTimers();
m_pRcvUList->update(u);
return CONN_RUNNING;
}
// This function responds to the fact that a packet has come
// for a socket that does not expect to receive a normal connection
// request. This can be then:
// - a normal packet of whatever kind, just to be processed by the message loop
// - a rendezvous connection
// This function then tries to manage the packet as a rendezvous connection
// request in ASYNC mode; when this is not applicable, it stores the packet
// in the "receiving queue" so that it will be picked up in the "main" thread.
srt::EConnectStatus srt::CRcvQueue::worker_TryAsyncRend_OrStore(int32_t id, CUnit* unit, const sockaddr_any& addr)
{
// This 'retrieve' requires that 'id' be either one of those
// stored in the rendezvous queue (see CRcvQueue::registerConnector)
// or simply 0, but then at least the address must match one of these.
// If the id was 0, it will be set to the actual socket ID of the returned CUDT.
CUDT* u = m_pRendezvousQueue->retrieve(addr, (id));
if (!u)
{
// this socket is then completely unknown to the system.
// Note that this situation may also happen at a very unfortunate
// coincidence that the socket is already bound, but the registerConnector()
// has not yet started. In case of rendezvous this may mean that the other
// side just started sending its handshake packets, the local side has already
// run the CRcvQueue::worker thread, and this worker thread is trying to dispatch
// the handshake packet too early, before the dispatcher has a chance to see
// this socket registerred in the RendezvousQueue, which causes the packet unable
// to be dispatched. Therefore simply treat every "out of band" packet (with socket
// not belonging to the connection and not registered as rendezvous) as "possible
// attack" and ignore it. This also should better protect the rendezvous socket
// against a rogue connector.
if (id == 0)
{
HLOGC(cnlog.Debug,
log << CONID() << "AsyncOrRND: no sockets expect connection from " << addr.str()
<< " - POSSIBLE ATTACK, ignore packet");
}
else
{
HLOGC(cnlog.Debug,
log << CONID() << "AsyncOrRND: no sockets expect socket " << id << " from " << addr.str()
<< " - POSSIBLE ATTACK, ignore packet");
}
return CONN_AGAIN; // This means that the packet should be ignored.
}
// asynchronous connect: call connect here
// otherwise wait for the UDT socket to retrieve this packet
if (!u->m_config.bSynRecving)
{
HLOGC(cnlog.Debug, log << "AsyncOrRND: packet RESOLVED TO @" << id << " -- continuing as ASYNC CONNECT");
// This is practically same as processConnectResponse, just this applies
// appropriate mutex lock - which can't be done here because it's intentionally private.
// OTOH it can't be applied to processConnectResponse because the synchronous
// call to this method applies the lock by itself, and same-thread-double-locking is nonportable (crashable).
EConnectStatus cst = u->processAsyncConnectResponse(unit->m_Packet);
if (cst == CONN_CONFUSED)
{
LOGC(cnlog.Warn, log << "AsyncOrRND: PACKET NOT HANDSHAKE - re-requesting handshake from peer");
storePktClone(id, unit->m_Packet);
if (!u->processAsyncConnectRequest(RST_AGAIN, CONN_CONTINUE, &unit->m_Packet, u->m_PeerAddr))
{
// Reuse previous behavior to reject a packet
cst = CONN_REJECT;
}
else
{
cst = CONN_CONTINUE;
}
}
// It might be that this is a data packet, which has turned the connection
// into "connected" state, removed the connector (so since now every next packet
// will land directly in the queue), but this data packet shall still be delivered.
if (cst == CONN_ACCEPT && !unit->m_Packet.isControl())
{
// The process as called through processAsyncConnectResponse() should have put the
// socket into the pending queue for pending connection (don't ask me, this is so).
// This pending queue is being purged every time in the beginning of this loop, so
// currently the socket is in the pending queue, but not yet in the connection queue.
// It will be done at the next iteration of the reading loop, but it will be too late,
// we have a pending data packet now and we must either dispatch it to an already connected
// socket or disregard it, and rather prefer the former. So do this transformation now
// that we KNOW (by the cst == CONN_ACCEPT result) that the socket should be inserted
// into the pending anteroom.
CUDT* ne = getNewEntry(); // This function actuall removes the entry and returns it.
// This **should** now always return a non-null value, but check it first
// because if this accidentally isn't true, the call to worker_ProcessAddressedPacket will
// result in redirecting it to here and so on until the call stack overflow. In case of
// this "accident" simply disregard the packet from any further processing, it will be later
// loss-recovered.
// XXX (Probably the old contents of UDT's CRcvQueue::worker should be shaped a little bit
// differently throughout the functions).
if (ne)
{
HLOGC(cnlog.Debug,
log << CUDTUnited::CONID(ne->m_SocketID)
<< " SOCKET pending for connection - ADDING TO RCV QUEUE/MAP");
m_pRcvUList->insert(ne);
m_pHash->insert(ne->m_SocketID, ne);
// The current situation is that this has passed processAsyncConnectResponse, but actually
// this packet *SHOULD HAVE BEEN* handled by worker_ProcessAddressedPacket, however the
// connection state wasn't completed at the moment when dispatching this packet. This has
// been now completed inside the call to processAsyncConnectResponse, but this is still a
// data packet that should have expected the connection to be already established. Therefore
// redirect it once again into worker_ProcessAddressedPacket here.
HLOGC(cnlog.Debug,
log << "AsyncOrRND: packet SWITCHED TO CONNECTED with ID=" << id
<< " -- passing to worker_ProcessAddressedPacket");
// Theoretically we should check if m_pHash->lookup(ne->m_SocketID) returns 'ne', but this
// has been just added to m_pHash, so the check would be extremely paranoid here.
cst = worker_ProcessAddressedPacket(id, unit, addr);
if (cst == CONN_REJECT)
return cst;
return CONN_ACCEPT; // this function usually will return CONN_CONTINUE, which doesn't represent current
// situation.
}
else
{
LOGC(cnlog.Error,
log << "IPE: AsyncOrRND: packet SWITCHED TO CONNECTED, but ID=" << id
<< " is still not present in the socket ID dispatch hash - DISREGARDING");
}
}
return cst;
}
HLOGC(cnlog.Debug,
log << "AsyncOrRND: packet RESOLVED TO ID=" << id << " -- continuing through CENTRAL PACKET QUEUE");
// This is where also the packets for rendezvous connection will be landing,
// in case of a synchronous connection.
storePktClone(id, unit->m_Packet);
return CONN_CONTINUE;
}
void srt::CRcvQueue::stopWorker()
{
// We use the decent way, so we say to the thread "please exit".
m_bClosing = true;
// Sanity check of the function's affinity.
if (srt::sync::this_thread::get_id() == m_WorkerThread.get_id())
{
LOGC(rslog.Error, log << "IPE: RcvQ:WORKER TRIES TO CLOSE ITSELF!");
return; // do nothing else, this would cause a hangup or crash.
}
HLOGC(rslog.Debug, log << "RcvQueue: EXIT (forced)");
// And we trust the thread that it does.
m_WorkerThread.join();
}
int srt::CRcvQueue::recvfrom(int32_t id, CPacket& w_packet)
{
CUniqueSync buffercond(m_BufferLock, m_BufferCond);
map<int32_t, std::queue<CPacket*> >::iterator i = m_mBuffer.find(id);
if (i == m_mBuffer.end())
{
THREAD_PAUSED();
buffercond.wait_for(seconds_from(1));
THREAD_RESUMED();
i = m_mBuffer.find(id);
if (i == m_mBuffer.end())
{
w_packet.setLength(-1);
return -1;
}
}
// retrieve the earliest packet
CPacket* newpkt = i->second.front();
if (w_packet.getLength() < newpkt->getLength())
{
w_packet.setLength(-1);
return -1;
}
// copy packet content
// XXX Check if this wouldn't be better done by providing
// copy constructor for DynamicStruct.
// XXX Another thing: this looks wasteful. This expects an already
// allocated memory on the packet, this thing gets the packet,
// copies it into the passed packet and then the source packet
// gets deleted. Why not simply return the originally stored packet,
// without copying, allocation and deallocation?
memcpy((w_packet.m_nHeader), newpkt->m_nHeader, CPacket::HDR_SIZE);
memcpy((w_packet.m_pcData), newpkt->m_pcData, newpkt->getLength());
w_packet.setLength(newpkt->getLength());
w_packet.m_DestAddr = newpkt->m_DestAddr;
delete newpkt;
// remove this message from queue,
// if no more messages left for this socket, release its data structure
i->second.pop();
if (i->second.empty())
m_mBuffer.erase(i);
return (int)w_packet.getLength();
}
int srt::CRcvQueue::setListener(CUDT* u)
{
if (!m_pListener.set(u))
return -1;
return 0;
}
void srt::CRcvQueue::removeListener(const CUDT* u)
{
m_pListener.clearIf(u);
}
void srt::CRcvQueue::registerConnector(const SRTSOCKET& id,
CUDT* u,
const sockaddr_any& addr,
const steady_clock::time_point& ttl)
{
HLOGC(cnlog.Debug,
log << "registerConnector: adding @" << id << " addr=" << addr.str() << " TTL=" << FormatTime(ttl));
m_pRendezvousQueue->insert(id, u, addr, ttl);
}
void srt::CRcvQueue::removeConnector(const SRTSOCKET& id)
{
HLOGC(cnlog.Debug, log << "removeConnector: removing @" << id);
m_pRendezvousQueue->remove(id);
ScopedLock bufferlock(m_BufferLock);
map<int32_t, std::queue<CPacket*> >::iterator i = m_mBuffer.find(id);
if (i != m_mBuffer.end())
{
HLOGC(cnlog.Debug,
log << "removeConnector: ... and its packet queue with " << i->second.size() << " packets collected");
while (!i->second.empty())
{
delete i->second.front();
i->second.pop();
}
m_mBuffer.erase(i);
}
}
void srt::CRcvQueue::setNewEntry(CUDT* u)
{
HLOGC(cnlog.Debug, log << CUDTUnited::CONID(u->m_SocketID) << "setting socket PENDING FOR CONNECTION");
ScopedLock listguard(m_IDLock);
m_vNewEntry.push_back(u);
}
bool srt::CRcvQueue::ifNewEntry()
{
ScopedLock listguard(m_IDLock);
return !(m_vNewEntry.empty());
}
srt::CUDT* srt::CRcvQueue::getNewEntry()
{
ScopedLock listguard(m_IDLock);
if (m_vNewEntry.empty())
return NULL;
CUDT* u = (CUDT*)*(m_vNewEntry.begin());
m_vNewEntry.erase(m_vNewEntry.begin());
return u;
}
void srt::CRcvQueue::storePktClone(int32_t id, const CPacket& pkt)
{
CUniqueSync passcond(m_BufferLock, m_BufferCond);
map<int32_t, std::queue<CPacket*> >::iterator i = m_mBuffer.find(id);
if (i == m_mBuffer.end())
{
m_mBuffer[id].push(pkt.clone());
passcond.notify_one();
}
else
{
// Avoid storing too many packets, in case of malfunction or attack.
if (i->second.size() > 16)
return;
i->second.push(pkt.clone());
}
}
void srt::CMultiplexer::destroy()
{
// Reverse order of the assigned.
delete m_pRcvQueue;
delete m_pSndQueue;
delete m_pTimer;
if (m_pChannel)
{
m_pChannel->close();
delete m_pChannel;
}
}
|