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 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143
|
/*
* frontend_svr.c: server for remote frontends
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id$
*
*/
#define __STDC_FORMAT_MACROS
#define __STDC_CONSTANT_MACROS
#include <inttypes.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <time.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <netdb.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <netinet/tcp.h>
#include <vdr/config.h>
#include <vdr/tools.h>
#include <vdr/plugin.h>
#include <vdr/device.h>
#include "logdefs.h"
#include "config.h"
#include "xine_input_vdr_net.h" // stream header(s)
#include "tools/osd_command.h" // osd commands
#include "tools/cxsocket.h"
#include "tools/future.h"
#include "tools/backgroundwriter.h"
#include "tools/udp_pes_scheduler.h"
#include "tools/http.h"
#include "tools/vdrdiscovery.h"
#include "tools/sdp.h"
#include "tools/rle.h"
#include "tools/sys_cap.h"
#include "tools/avahi.h"
#include "frontend_svr.h"
#include "device.h"
#include "osd.h"
#define ALLOWED_HOSTS_FILE "xineliboutput/allowed_hosts.conf"
#define MAX_OSD_TIMEOUTS (25*5) /* max. rate 25 updates/s -> at least 5 seconds */
#define LOG_OSD_BANDWIDTH (128*1024) /* log messages if OSD bandwidth > 1 Mbit/s */
#define PLAYFILE_CTRL_TIMEOUT 300 /* ms */
#define PLAYFILE_TIMEOUT 20000 /* ms */
#define REMOTE_FLUSH_TIMEOUT 1000 /* ms */
#define REMOTE_SYNC_TIMEOUT 1000 /* ms */
#define REMOTE_STC_TIMEOUT 300 /* ms */
template<class T> inline T min_(T a, T b) { return a < b ? a : b; }
template<class T> inline T max_(T a, T b) { return a > b ? a : b; }
typedef struct grab_result {
int Size;
uchar *Data;
grab_result() {
Size = 0;
Data = NULL;
}
} grab_result_t;
class cStcFuture : public cFuture<int64_t> {};
class cReplyFuture : public cFuture<int>, public cListObject {};
class cGrabReplyFuture : public cFuture<grab_result_t>, public cListObject {};
class cCmdFutures : public cHash<cReplyFuture> {};
class cAllowedHosts : public cSVDRPhosts {
public:
cAllowedHosts(const cString& AllowedHostsFile)
{
if (!Load(AllowedHostsFile, true, true)) {
LOGMSG("Invalid or missing %s. Adding 127.0.0.1 to list of allowed hosts.", *AllowedHostsFile);
cSVDRPhost *localhost = new cSVDRPhost;
if (localhost->Parse("127.0.0.1"))
Add(localhost);
else
delete localhost;
}
}
};
//----------------------------- cXinelibServer --------------------------------
// (control stream) connection types
enum {
ctDetecting = 0x00,
ctControl = 0x01,
ctHttp = 0x02,
ctRtsp = 0x04, // TCP/RTSP + UDP/RTP
ctRtspMux = 0x08 // TCP: multiplexed RTSP control + RTP/RTCP data/control
};
// (data) connection types
enum {
dtPipe = 0x01,
dtTcp = 0x02,
dtUdp = 0x04,
dtRtp = 0x08,
dtHttp = 0x10,
dtRtspMux = 0x20,
};
// (data) connection properties
#define DATA_STREAM(dt) ((dt) & (dtPipe | dtTcp | dtHttp | dtRtspMux))
#define DATA_DATAGRAM(dt) ((dt) & (dtUdp | dtRtp))
#define DATA_NOPOLL(dt) ((dt) & (dtHttp | dtRtspMux))
#define DATA_NOCONTROL(dt) ((dt) & (dtHttp | dtRtspMux))
cXinelibServer::cXinelibServer(cXinelibDevice *Dev, int listen_port) :
cXinelibThread(Dev, "Remote decoder/display server (cXinelibServer)")
{
int i;
for(i=0; i<MAXCLIENTS; i++) {
fd_data[i] = -1;
m_OsdTimeouts[i] = 0;
m_Writer[i] = NULL;
m_State[i] = NULL;
m_bMulticast[i] = 0;
m_bConfigOk[i] = false;
m_bArgbOSD[i] = false;
m_bRleArgbOSD[i] = false;
m_bOsdConn[i] = false;
m_bUdp[i] = 0;
m_ConnType[i] = ctDetecting;
}
m_Port = listen_port;
m_ServerId = time(NULL) ^ getpid();
m_hAvahi = NULL;
fd_listen = -1;
fd_discovery = -1;
m_iMulticastMask = 0;
m_MasterCli = -1;
m_Scheduler = new cUdpScheduler;
m_StcFuture = new cStcFuture;
m_Futures = new cCmdFutures;
cString Base(cPlugin::ConfigDirectory());
if(*Base) {
m_PipesDir = cString::sprintf("%s/xineliboutput/pipes.%d", *Base, getpid());
m_AllowedHostsFile = cString::sprintf("%s/" ALLOWED_HOSTS_FILE, *Base);
} else {
LOGMSG("cXinelibServer: cPlugin::ConfigDirectory() failed !");
m_PipesDir = cString::sprintf("/tmp/xineliboutput/pipes.%d", getpid());
m_AllowedHostsFile = cString::sprintf("/video/" ALLOWED_HOSTS_FILE);
}
m_Token = 1;
m_Header = NULL;
m_HeaderLength = 0;
m_HeaderSize = 0;
}
cXinelibServer::~cXinelibServer()
{
int i;
Cancel(-1);
CLOSESOCKET(fd_listen);
CLOSESOCKET(fd_discovery);
cHttpStreamer::CloseAll();
for(i=0; i<MAXCLIENTS; i++)
CloseConnection(i);
Cancel(3);
delete m_StcFuture;
delete m_Futures;
delete m_Scheduler;
free(m_Header);
if (m_hAvahi) {
x_avahi_stop(m_hAvahi);
}
}
void cXinelibServer::Clear(void)
{
TRACEF("cXinelibServer::Clear");
LOCK_THREAD;
SetHeader(NULL, 0, true);
for(int i = 0; i < MAXCLIENTS; i++)
if(fd_control[i].open() && m_Writer[i])
m_Writer[i]->Clear();
m_Scheduler->Clear();
cXinelibThread::Clear();
}
void cXinelibServer::CloseDataConnection(int cli)
{
if(m_bUdp[cli] && fd_data[cli]>=0)
m_Scheduler->RemoveHandle(fd_data[cli]);
CLOSESOCKET(fd_data[cli]);
if(m_Writer[cli]) {
delete m_Writer[cli];
m_Writer[cli] = NULL;
}
m_bUdp[cli] = false;
m_bMulticast[cli] = false;
m_bConfigOk[cli] = false;
m_bArgbOSD[cli] = false;
m_bRleArgbOSD[cli] = false;
m_iMulticastMask &= ~(1<<cli);
if(!m_iMulticastMask && !xc.remote_rtp_always_on)
m_Scheduler->RemoveRtp();
if (cli == m_MasterCli)
m_MasterCli = -1;
}
void cXinelibServer::CloseOsdConnection(int cli)
{
fd_osd[cli].close();
// Do not mess with connection state.
// -> allow re-connecting OSD stream
}
void cXinelibServer::CloseConnection(int cli)
{
CloseDataConnection(cli);
CloseOsdConnection(cli);
m_bOsdConn[cli] = false;
if(fd_control[cli].open()) {
LOGMSG("Closing connection %d", cli);
fd_control[cli].close();
if(m_State[cli]) {
delete m_State[cli];
m_State[cli] = NULL;
}
m_Dev->ForcePrimaryDevice(false);
}
}
static int _write_osdcmd(cxSocket& s, osd_command_t *cmd)
{
size_t len = 0;
uint8_t buf[sizeof(osd_command_t)];
#define PACK_FIELD(FIELD) \
do { \
memcpy(buf + len, &cmd->FIELD, sizeof(cmd->FIELD)); \
len += sizeof(cmd->FIELD); \
} while (0)
PACK_FIELD(size);
PACK_FIELD(cmd);
PACK_FIELD(wnd);
PACK_FIELD(layer);
PACK_FIELD(pts);
PACK_FIELD(delay_ms);
PACK_FIELD(x);
PACK_FIELD(y);
PACK_FIELD(w);
PACK_FIELD(h);
PACK_FIELD(datalen);
PACK_FIELD(num_rle);
PACK_FIELD(dummy01);
PACK_FIELD(colors);
PACK_FIELD(dummy02);
PACK_FIELD(dirty_area.x1);
PACK_FIELD(dirty_area.y1);
PACK_FIELD(dirty_area.x2);
PACK_FIELD(dirty_area.y2);
PACK_FIELD(flags);
PACK_FIELD(scaling);
#undef PACK_FIELD
buf[0] = len;
if((ssize_t)len != s.write(buf, len, 100)) {
return -1;
}
return 0;
}
static int write_osd_command(cxSocket& s, osd_command_t *cmd)
{
cxPoller p(s, true);
if(!p.Poll(100)) {
LOGMSG("write_osd_command: poll failed, OSD send skipped");
return 0;
}
ssize_t max = s.tx_buffer_free();
ssize_t size = (ssize_t)8 +
(ssize_t)(sizeof(osd_command_t)) +
(ssize_t)(sizeof(osd_clut_t) * ntohl(cmd->colors)) +
(ssize_t)(ntohl(cmd->datalen));
if(max > 0 && max < min_<ssize_t>(size, 1024)) {
/* #warning TODO: buffer latest failed OSD and retry
-> skipped OSDs can be left out but
latest will be always delivered */
LOGMSG("write_osd_command: socket buffer full, OSD send skipped (got %d ; need %d",
(int)max, (int)size);
return 0;
}
cmd->size = sizeof(osd_command_t);
if(8 != s.write("OSDCMD\r\n", 8, 100)) {
LOGDBG("write_osd_command: write (command) failed");
return -1;
}
if (_write_osdcmd(s, cmd) < 0) {
LOGDBG("write_osd_command: write (data) failed");
return -1;
}
if(cmd->palette && cmd->colors &&
(ssize_t)(sizeof(osd_clut_t)*ntohl(cmd->colors)) !=
s.write(cmd->palette, sizeof(osd_clut_t)*ntohl(cmd->colors), 100)) {
LOGDBG("write_osd_command: write (palette) failed");
return -1;
}
if(cmd->data && cmd->datalen &&
(ssize_t)ntohl(cmd->datalen) != s.write(cmd->data, ntohl(cmd->datalen), 300)) {
LOGDBG("write_osd_command: write (bitmap) failed");
return -1;
}
return 1;
}
void cXinelibServer::OsdCmd(void *cmd_gen)
{
TRACEF("cXinelibServer::OsdCmd");
int i;
LOCK_THREAD;
// check if there are any clients
if(!HasClients())
return;
if(cmd_gen) {
void *compressed_data = NULL;
osd_command_t *cmd = (osd_command_t*)cmd_gen;
osd_command_t cmdnet;
osd_command_t cmdnet_argbrle;
memcpy(&cmdnet, cmd, sizeof(osd_command_t));
memset(&cmdnet_argbrle, 0, sizeof(cmdnet_argbrle));
if (cmd->data) {
// compress data
if (cmd->cmd == OSD_Set_LUT8) {
int num_rle = 0;
cmdnet.datalen = rle_compress_hdmv(&cmdnet.raw_data, cmd->raw_data, cmd->w, cmd->h, &num_rle);
cmdnet.num_rle = num_rle;
cmdnet.cmd = OSD_Set_HDMV;
compressed_data = cmdnet.raw_data; // free it later
} else if (cmd->cmd == OSD_Set_RLE) {
cmdnet.raw_data = (uint8_t *)malloc(cmd->datalen);
cmdnet.datalen = rle_recompress_net(cmdnet.raw_data, cmd->data, cmd->num_rle);
compressed_data = cmdnet.raw_data; // free it later
} else if (cmd->cmd == OSD_Set_ARGB) {
int num_rle = 0;
memcpy(&cmdnet_argbrle, cmd, sizeof(osd_command_t));
cmdnet_argbrle.datalen = rle_compress_argbrle(&cmdnet_argbrle.raw_data,
(const uint32_t *)cmd->raw_data,
cmd->w, cmd->h, &num_rle);
cmdnet_argbrle.num_rle = num_rle;
cmdnet_argbrle.cmd = OSD_Set_ARGBRLE;
compressed_data = cmdnet_argbrle.raw_data; // free it later
hton_osdcmd(cmdnet_argbrle);
}
}
// -> network byte order
hton_osdcmd(cmdnet);
for(i = 0; i < MAXCLIENTS; i++) {
if(fd_control[i].open() && m_bConfigOk[i]) {
int r;
cxSocket& fd = m_bOsdConn[i] ? fd_osd[i] : fd_control[i];
if (!fd.open())
continue;
if (m_bRleArgbOSD[i] && cmdnet_argbrle.data) {
r = write_osd_command(fd, &cmdnet_argbrle);
} else {
r = write_osd_command(fd, &cmdnet);
}
if(r < 0) {
LOGMSG("Send OSD command failed, closing %sconnection",
m_bOsdConn[i] ? "OSD " : "");
if (m_bOsdConn[i]) {
CloseOsdConnection(i);
} else {
CloseConnection(i);
}
} else if(r == 0) {
if(m_OsdTimeouts[i]++ > MAX_OSD_TIMEOUTS) {
LOGMSG("Too many OSD timeouts, dropping client");
if (m_bOsdConn[i]) {
CloseOsdConnection(i);
} else {
CloseConnection(i);
}
}
} else {
m_OsdTimeouts[i] = 0;
}
}
}
free(compressed_data);
#ifdef LOG_OSD_BANDWIDTH
{
static int64_t timer = 0LL;
static int bytes = 0;
int64_t now = cTimeMs::Now();
if(timer + 5000LL < now) {
timer = now;
bytes = 0;
} else if(timer + 1000LL < now) {
bytes = bytes / (((int)(now - timer)) / 1000);
if(bytes > LOG_OSD_BANDWIDTH)
LOGMSG("OSD bandwidth: %d bytes/s (%d kbit/s)", bytes, bytes*8/1024);
timer = now;
bytes = 0;
}
bytes += sizeof(osd_command_t) + ntohl(cmdnet.datalen);
}
#endif
}
}
int64_t cXinelibServer::GetSTC(void)
{
Lock();
// check if there are any clients
if(!HasClients()) {
Unlock();
return INT64_C(-1);
}
// Query client(s)
m_StcFuture->Reset();
Xine_Control("GETSTC");
Unlock();
if (!m_StcFuture->Wait(REMOTE_STC_TIMEOUT)) {
LOGMSG("cXinelibServer::GetSTC timeout");
return INT64_C(-1);
}
//if(delay.Elapsed() > 0 && !is_Paused)
// LOGMSG("GetSTC: compensating network delay by %s ticks (ms)\n",
// delay.Elapsed()*90000/2, delay.Elapsed()/2);
return m_StcFuture->Value() /*+ (delay.Elapsed()*90000/2*/;
}
void cXinelibServer::SetHeader(const uchar *Data, int Length, bool Reset)
{
LOCK_THREAD; // Lock control thread out
if (Reset)
m_HeaderLength = 0;
if (m_HeaderSize < m_HeaderLength + Length) {
if (!m_Header) {
m_HeaderSize = Length;
m_Header = (uchar*)malloc(m_HeaderSize);
} else {
m_HeaderSize = m_HeaderLength + Length;
m_Header = (uchar*)realloc(m_Header, m_HeaderSize);
}
}
if (m_Header && Data) {
memcpy(m_Header + m_HeaderLength, Data, Length);
m_HeaderLength += Length;
}
}
int cXinelibServer::Play(const uchar *data, int len, eStreamId StreamId)
{
int TcpClients = 0, UdpClients = 0, RtpClients = 0;
LOCK_THREAD; // Lock control thread out
for(int i=0; i<MAXCLIENTS; i++) {
if(fd_control[i].open()) {
if((m_bConfigOk[i] && fd_data[i] >= 0) ||
m_ConnType[i] & (ctHttp|ctRtsp)) {
if(m_bUdp[i]) {
UdpClients++;
} else if(m_Writer[i]) {
int result = m_Writer[i]->Put(StreamId, m_StreamPos, data, len);
if(!result) {
LOGMSG("cXinelibServer::Play Write/Queue error (TCP/PIPE)");
CloseConnection(i);
} else if(result<0) {
LOGMSG("cXinelibServer::Play Buffer overflow (TCP/PIPE)");
if(m_ConnType[i] == ctHttp)
m_Writer[i]->Clear();
}
TcpClients++;
}
}
}
}
RtpClients = (m_iMulticastMask || xc.remote_rtp_always_on);
if(UdpClients || RtpClients)
if(! m_Scheduler->Queue(StreamId, m_StreamPos, data, len))
LOGMSG("cXinelibServer::Play Buffer overflow (UDP/RTP)");
if(TcpClients || UdpClients || RtpClients)
cXinelibThread::Play(data, len, StreamId);
return len;
}
void cXinelibServer::SetHDMode(bool On)
{
cXinelibThread::SetHDMode(On);
#if 0
/*#warning TODO*/
LOCK_THREAD;
int i;
for(i=0; i<MAXCLIENTS; i++)
if(m_Writer[i])
m_Writer[i]->SetBuffer(On ? 2048 : 512);
m_Scheduler->SetWindow(On ? 512 : 128);
#endif
}
int cXinelibServer::Poll(cPoller &Poller, int TimeoutMs)
{
// in live mode transponder clock is the master ...
// in replay mode local frontend (if present) is master
if(m_bLiveMode || (*xc.local_frontend && strncmp(xc.local_frontend, "none", 4))) {
if(m_Scheduler->Clients())
return m_Scheduler->Poll(TimeoutMs, false);
return DEFAULT_POLL_SIZE;
}
// replay mode:
do {
Lock();
int Free = 0xfffff, FreeHttp = 0xfffff, FreeUdp = 0;
int Clients = 0, Http = 0, Udp = 0;
for(int i=0; i<MAXCLIENTS; i++) {
if(fd_control[i].open()) {
if(m_bConfigOk[i]) {
if(m_Writer[i])
Free = min_(Free, m_Writer[i]->Free());
else if(m_bUdp[i])
Udp++;
Clients++;
} else if(m_ConnType[i] & (ctHttp|ctRtspMux)) {
if(m_Writer[i]) {
FreeHttp = min_(FreeHttp, m_Writer[i]->Free());
Http++;
}
}
}
}
if(m_iMulticastMask) {
Clients++;
Udp++;
}
/* select master timing source for replay mode */
int master = -1;
if(Clients && !Udp) {
for(int i=0; i<MAXCLIENTS; i++)
if(fd_control[i].open() && m_bConfigOk[i] && m_Writer[i]) {
master = i;
break;
}
}
if(master != m_MasterCli) {
if(m_MasterCli >= 0)
Xine_Control("MASTER 0");
if(master >= 0)
fd_control[master].write_cmd("MASTER 1\r\n");
m_MasterCli = master;
}
Unlock();
if(!Clients && !Http) {
// live mode runs even if there are no clients
if(m_bLiveMode)
return DEFAULT_POLL_SIZE;
// replay is paused when no clients
if(TimeoutMs>0)
cCondWait::SleepMs(TimeoutMs);
return 0;
}
// in replay mode cUdpScheduler is master timing source
if( Free < 8128 ||
((FreeUdp = m_Scheduler->Poll(TimeoutMs, true)) < 1) ||
(!Clients && FreeHttp < 8128)) {
if(TimeoutMs > 0)
cCondWait::SleepMs(min_(TimeoutMs, 5));
TimeoutMs -= 5;
} else {
Free = min_(Free, FreeHttp) / 2070;
Free = min_(Free, FreeUdp);
return max_(0, Free);
}
} while(TimeoutMs > 0);
return 0;
}
bool cXinelibServer::Flush(int TimeoutMs)
{
if (!HasClients())
return true;
int result = true;
result = m_Scheduler->Flush(TimeoutMs) && result;
for(int i=0; i<MAXCLIENTS; i++)
if(fd_control[i].open() && fd_data[i]>=0 && m_Writer[i])
result = m_Writer[i]->Flush(TimeoutMs) && result;
if(TimeoutMs > 50)
TimeoutMs = 50;
if(result) {
cString tmp = cString::sprintf("FLUSH %d %" PRIu64 " %d",
TimeoutMs, m_StreamPos, m_Frames);
result = (Xine_Control_Result(tmp, REMOTE_FLUSH_TIMEOUT)) <= 0;
}
return result;
}
/*
* Xine_Control()
*
* Post control message to client (async RPC)
*/
int cXinelibServer::Xine_Control(const char *cmd)
{
TRACEF("cXinelibServer::Xine_Control");
if(cmd && *cmd) {
char buf[4096];
int len = snprintf(buf, sizeof(buf), "%s\r\n", cmd);
if(len >= (int)sizeof(buf)) {
LOGMSG("Xine_Control: command truncated !");
return 0;
}
LOCK_THREAD;
for(int i=0; i<MAXCLIENTS; i++)
if(fd_control[i].open() && (fd_data[i]>=0 || m_bMulticast[i]) && m_bConfigOk[i])
if(len != fd_control[i].write(buf, len, 100)) {
LOGMSG("Control send failed (%s), dropping client", cmd);
CloseConnection(i);
}
}
return 1;
}
/*
* Xine_Control_Sync()
*
* Post control message to client (message is transported in data stream)
*/
int cXinelibServer::Xine_Control_Sync(const char *cmd)
{
TRACEF("cXinelibServer::Xine_Control_Sync");
if(cmd && *cmd) {
int i, len, UdpClients = 0, RtpClients = 0;
char buf[256];
len = snprintf(buf, sizeof(buf), "%s\r\n", cmd) + 1;
if(len >= (int)sizeof(buf)) {
LOGMSG("Xine_Control_Sync: command truncated ! (%s)", cmd);
len = sizeof(buf);
}
LOCK_THREAD;
for(i=0; i<MAXCLIENTS; i++)
if(fd_control[i].open() && m_bConfigOk[i]) {
if(fd_data[i] >= 0) {
if(m_bUdp[i])
UdpClients++;
else if(m_Writer[i])
m_Writer[i]->Put(sidControl, (-1ULL), (const uchar*)buf, len);
}
}
RtpClients = (m_iMulticastMask || xc.remote_rtp_always_on);
if(UdpClients || RtpClients)
if(! m_Scheduler->Queue(sidControl, (uint64_t)(-1ULL), (const uchar*)buf, len))
LOGMSG("cXinelibServer::Xine_Control_Sync overflow (UDP/RTP)");
}
return 1;
}
/*
* Sync()
*
* Wait until all control messages have been processed by the client
*/
void cXinelibServer::Sync(void)
{
Xine_Control_Result("SYNC", REMOTE_SYNC_TIMEOUT);
}
void cXinelibServer::TrickSpeed(int Speed, bool Backwards)
{
if(Speed == 0) {
m_Scheduler->Pause(true);
} else {
m_Scheduler->Pause(false);
m_Scheduler->TrickSpeed(Speed == -1 ? 1 : Speed);
}
cXinelibThread::TrickSpeed(Speed, Backwards);
}
bool cXinelibServer::EndOfStreamReached(void)
{
LOCK_THREAD;
/* Check if there are any clients */
if(!HasClients())
return true;
return cXinelibThread::EndOfStreamReached();
}
int cXinelibServer::AllocToken(void)
{
LOCK_THREAD;
m_Token = (m_Token+1) & 0xffff;
cXinelibThread::Xine_Control((const char *)"TOKEN", m_Token);
return m_Token;
}
/*
* Xine_Control_Result()
*
* Post control message to client and wait for result (synchronous RPC).
*/
int cXinelibServer::Xine_Control_Result(const char *Cmd, uint TimeoutMs)
{
if(!HasClients()) {
return -1;
}
if (TimeoutMs > 20000) {
LOGMSG("Xine_Control_Result(): very long tomeout (%d sec) !", TimeoutMs/1000);
TimeoutMs = 20000;
}
Lock();
/* Get token, send it to client and set future for it */
int token = AllocToken();
cReplyFuture future;
m_Futures->Add(&future, token);
/* Send actual command */
Xine_Control(Cmd);
Unlock();
/* When server thread get REPLY %d %d (first %d == token, second returned value)
* it sets corresponding future (by token; if found) in list
* and removes it from list.
*/
#ifdef XINELIBOUTPUT_DEBUG
int64_t t = cTimeMs::Now();
#endif
future.Wait(TimeoutMs);
Lock();
m_Futures->Del(&future, token);
Unlock();
if (!future.IsReady()) {
LOGMSG("cXinelibServer::Xine_Control_Result: Timeout (%s, %d ms) %d", Cmd, TimeoutMs, token);
return -1;
}
return future.Value();
}
bool cXinelibServer::HasClients(void)
{
LOCK_THREAD;
int i;
for(i=0; i<MAXCLIENTS; i++)
if(fd_control[i].open() && m_bConfigOk[i])
return true;
return false;
}
int cXinelibServer::SupportsTrueColorOSD(void)
{
LOCK_THREAD;
unsigned i, has_clients = 0;
for (i = 0; i < MAXCLIENTS; i++)
if (fd_control[i].open() && m_bConfigOk[i]) {
if (!m_bArgbOSD[i])
return 0;
else
has_clients++;
}
return has_clients || xc.truecoloreverytime ? 1 : -1;
}
int cXinelibServer::PlayFileCtrl(const char *Cmd, int TimeoutMs)
{
/* Check if there are any clients */
if(!HasClients()) {
cHttpStreamer::CloseAll();
return -1;
}
int result;
bool bPlayfile = !strncmp(Cmd, "PLAYFILE", 8);
if (bPlayfile ||
!strncmp(Cmd, "GET", 3)) { // GETPOS, GETLENGTH, ...
if(TimeoutMs < 0)
TimeoutMs = bPlayfile ? PLAYFILE_TIMEOUT : PLAYFILE_CTRL_TIMEOUT;
result = Xine_Control_Result(Cmd, TimeoutMs);
} else {
result = cXinelibThread::PlayFileCtrl(Cmd);
}
if(!*m_FileName)
cHttpStreamer::CloseAll();
return result;
}
bool cXinelibServer::Listen(int listen_port)
{
LOCK_THREAD;
bool result = false;
TRACEF("cXinelibServer::Listen");
if (m_hAvahi) {
x_avahi_stop(m_hAvahi);
m_hAvahi = NULL;
}
if(listen_port <= 0 || listen_port > 0xffff) {
CLOSESOCKET(fd_listen);
CLOSESOCKET(fd_discovery);
m_Scheduler->RemoveRtp();
cHttpStreamer::CloseAll();
LOGMSG("Not listening for remote connections");
return false;
}
if(fd_listen<0 || listen_port != m_Port) {
m_Port = listen_port;
CLOSESOCKET(fd_listen);
int iReuse = 1;
union {
struct sockaddr sa;
struct sockaddr_in in;
} addr;
memset(&addr, 0, sizeof(addr));
addr.in.sin_family = AF_INET;
addr.in.sin_addr.s_addr = htonl(INADDR_ANY);
addr.in.sin_port = htons(m_Port);
if(xc.remote_local_ip[0]) {
uint32_t ip = inet_addr(xc.remote_local_ip);
if(ip != INADDR_NONE) {
char txt[128];
addr.in.sin_addr.s_addr = ip;
LOGDBG("Binding server to %s", cxSocket::ip2txt(addr.in.sin_addr.s_addr, htons(m_Port), txt));
} else {
LOGERR("Local interface address %s is invalid !", xc.remote_local_ip);
}
}
fd_listen = socket(PF_INET,SOCK_STREAM,0);
if (fd_listen < 0) {
LOGERR("cXinelibServer: error creating listen socket");
} else {
if (setsockopt(fd_listen, SOL_SOCKET, SO_REUSEADDR, &iReuse, sizeof(int)) < 0) {
LOGERR("cXinelibServer: error setting REUSE for listen socket");
}
if (bind(fd_listen, &addr.sa, sizeof(addr)) < 0) {
LOGERR("cXinelibServer: bind error %s port %d: %s",
xc.remote_local_ip[0] ? xc.remote_local_ip : "",
m_Port, strerror(errno));
CLOSESOCKET(fd_listen);
} else if(listen(fd_listen, MAXCLIENTS)) {
LOGERR("cXinelibServer: listen error (port %d): %s",
m_Port, strerror(errno));
CLOSESOCKET(fd_listen);
} else {
LOGMSG("Listening on port %d", m_Port);
result = true;
}
}
} else {
result = true;
}
// set listen for discovery messages
CLOSESOCKET(fd_discovery);
if(xc.remote_usebcast) {
fd_discovery = udp_discovery_init();
if (fd_discovery >= 0) {
if(udp_discovery_broadcast(fd_discovery, m_Port, xc.remote_local_ip) < 0)
CLOSESOCKET(fd_discovery);
else
LOGMSG("Listening for UDP broadcasts on port %d", m_Port);
}
}
// set up multicast sockets
m_Scheduler->RemoveRtp();
if(xc.remote_usertp) {
if(xc.remote_rtp_always_on)
LOGMSG("WARNING: RTP Configuration: transmission is always on !");
if(xc.remote_rtp_always_on || m_iMulticastMask)
m_Scheduler->AddRtp();
}
// AVAHI announces
m_hAvahi = x_avahi_start(listen_port, xc.remote_use_rtsp, xc.remote_use_http);
return result;
}
uchar *cXinelibServer::GrabImage(int &Size, bool Jpeg,
int Quality, int SizeX, int SizeY)
{
cGrabReplyFuture future;
uchar *result = NULL;
cString cmd;
cmd = cString::sprintf("GRAB %s %d %d %d\r\n",
Jpeg ? "JPEG" : "PNM",
Quality, SizeX, SizeY);
Lock();
/* Check if there are any clients */
if(!HasClients()) {
Unlock();
return NULL;
}
int token = AllocToken();
m_Futures->Add(&future, token);
// might be better to request image from one client only (?)
Xine_Control(cmd);
Unlock();
if(future.Wait(5000)) {
grab_result_t r = future.Value();
if((Size = r.Size) > 0) {
LOGDBG("cXinelibServer::GrabImage: image size is %d bytes", Size);
result = r.Data;
} else {
LOGMSG("cXinelibServer::Grab: Grab failed (%d)", Size);
}
} else {
LOGMSG("cXinelibServer::Grab: Timeout (5000 ms)");
}
Lock();
m_Futures->Del(&future, token);
Unlock();
return result;
}
//
// (Client) Control message handling
//
void cXinelibServer::Handle_Control_PIPE(int cli, const char *arg)
{
LOGDBG("Trying PIPE connection ...");
CloseDataConnection(cli);
CloseOsdConnection(cli);
//
// TODO: client should create pipe; waiting here is not good thing ...
//
if(!xc.remote_usepipe) {
LOGMSG("PIPE transport disabled in configuration");
fd_control[cli].write_cmd("PIPE: Pipe transport disabled in config.\r\n");
return;
}
MakeDirs(m_PipesDir, true);
int i;
cString pipeName;
for(i=0; i<10; i++) {
pipeName = cString::sprintf("%s/pipe.%d", *m_PipesDir, i);
if(mknod(pipeName, 0644|S_IFIFO, 0) < 0) {
unlink(pipeName);
continue;
}
else
break;
}
if(i>=10) {
LOGERR("Pipe creation failed (%s)", *pipeName);
RemoveFileOrDir(m_PipesDir, false);
fd_control[cli].write_cmd("PIPE: Pipe creation failed.\r\n");
return;
}
fd_control[cli].printf("PIPE %s\r\n", *pipeName);
cxPoller poller(fd_control[cli]);
poller.Poll(500); /* quite short time ... */
int fd;
if((fd = open(pipeName, O_WRONLY|O_NONBLOCK)) < 0) {
LOGDBG("Pipe not opened by client");
/*write_cmd(fd_control[cli], "PIPE NONE\r\n");*/
unlink(pipeName);
RemoveFileOrDir(m_PipesDir, false);
return;
}
if (fcntl(fd, F_SETFL, fcntl(fd, F_GETFL)|O_NONBLOCK) < 0) {
LOGERR("error setting pipe to non-blocking mode");
}
//LOGDBG("cXinelibServer::Handle_Control: pipe %s open", pipeName);
unlink(pipeName); /* safe to remove now, both ends are open or closed. */
RemoveFileOrDir(m_PipesDir, false);
fd_control[cli].write_cmd("PIPE OK\r\n");
if (m_Writer[cli])
delete m_Writer[cli];
m_Writer[cli] = new cTcpWriter(fd);
if (m_Header && m_HeaderLength)
m_Writer[cli]->Put(sidVdr, 0, m_Header, m_HeaderLength);
fd_data[cli] = fd;
}
int cXinelibServer::Parse_Client_Id(int cli, const char *arg)
{
int clientId = -1;
unsigned int ipc, portc;
/* validate client ID */
if(3 != sscanf(arg, "%d 0x%x:%d", &clientId, &ipc, &portc) ||
clientId < 0 ||
clientId >= MAXCLIENTS ||
!fd_control[clientId].open()) {
fd_control[cli].write_cmd("TCP: Error in request (ClientId).\r\n");
LOGDBG("Invalid data connection (TCP) request");
/* close only new data connection, no control connection */
CloseConnection(cli);
return -1;
}
#if 0
/* check client IP's */
struct sockaddr sinc, sind;
socklen_t lenc = sizeof(sinc);
socklen_t lend = sizeof(sind);
sinc.sin_addr.s_addr = 0;
sind.sin_addr.s_addr = ~0;
fd_control[cli].getpeername(&sind, &lend);
fd_control[clientId].getpeername(&sinc, &lenc);
if(sinc.sin_addr.s_addr != sind.sin_addr.s_addr) {
fd_control[cli].write_cmd("TCP: Error in request (IP does not match).\r\n");
LOGMSG("Invalid data connection (TCP) request: IP does not match: ctrl %x, data %x",
(unsigned int)sinc.sin_addr.s_addr, (unsigned int)sind.sin_addr.s_addr);
CloseConnection(cli);
return;
}
if(htonl(ipc) != sinc.sin_addr.s_addr || htons(portc) != sinc.sin_port) {
fd_control[cli].write_cmd("TCP: Error in request (invalid IP:port).\r\n");
LOGMSG("Invalid data connection (TCP) request: control IP:port does not match"
"control: %x:%d client: %x:%d",
(unsigned int)sinc.sin_addr.s_addr, (unsigned int)sinc.sin_port,
(unsigned int)htonl(ipc), (unsigned int)htons(portc));
CloseConnection(cli);
return;
}
#endif
return clientId;
}
void cXinelibServer::Handle_Control_OSD(int cli, const char *arg)
{
int clientId = -1;
LOGDBG("OSD data connection (TCP) requested");
CloseOsdConnection(cli);
CloseDataConnection(cli);
clientId = Parse_Client_Id(cli, arg);
if (clientId < 0)
return;
/* close old OSD connection */
CloseOsdConnection(clientId);
/* change connection type */
fd_osd[clientId].set_handle( fd_control[cli].handle(true) );
cli = clientId;
fd_osd[cli].set_buffers(KILOBYTE(256), KILOBYTE(32));
fd_osd[cli].write_cmd("OSD\r\n");
m_bOsdConn[cli] = true;
/* not anymore control connection, so dec primary device reference counter */
m_Dev->ForcePrimaryDevice(false);
/* refresh OSD */
Unlock(); /* avoid deadlock if OSD update is already waiting in OsdCmd() */
cXinelibOsdProvider::RefreshOsd();
Lock();
}
void cXinelibServer::Handle_Control_DATA(int cli, const char *arg)
{
int clientId = -1;
LOGDBG("Data connection (TCP) requested");
CloseOsdConnection(cli);
CloseDataConnection(cli);
if(!xc.remote_usetcp) {
LOGMSG("TCP transports disabled in configuration");
fd_control[cli].write_cmd("TCP: TCP transport disabled in config.\r\n");
CloseConnection(cli); /* actually closes the new data connection */
return;
}
clientId = Parse_Client_Id(cli, arg);
if (clientId < 0)
return;
/* close old data connection */
CloseDataConnection(clientId);
/* change connection type */
fd_control[cli].write_cmd("DATA\r\n");
fd_data[clientId] = fd_control[cli].handle(true);
cli = clientId;
if (m_Writer[cli])
delete m_Writer[cli];
m_Writer[cli] = new cTcpWriter(fd_data[cli]);
if (m_Header && m_HeaderLength)
m_Writer[cli]->Put(sidVdr, 0, m_Header, m_HeaderLength);
/* not anymore control connection, so dec primary device reference counter */
m_Dev->ForcePrimaryDevice(false);
}
void cXinelibServer::Handle_Control_RTP(int cli, const char *arg)
{
LOGDBG("Trying RTP connection ...");
CloseDataConnection(cli);
if(!xc.remote_usertp) {
fd_control[cli].write_cmd("RTP: RTP transport disabled in configuration.\r\n");
LOGMSG("RTP transports disabled");
return;
}
fd_control[cli].printf("RTP %s:%d\r\n", xc.remote_rtp_addr, xc.remote_rtp_port);
if(!m_iMulticastMask && !xc.remote_rtp_always_on)
m_Scheduler->AddRtp();
m_bMulticast[cli] = true;
m_iMulticastMask |= (1<<cli);
// Send padding packet before header (PAT/PMT).
// Client uses first received UDP/RTP packet to test connection.
m_Scheduler->QueuePadding();
if (m_Header && m_HeaderLength)
m_Scheduler->Queue(sidVdr, 0, m_Header, m_HeaderLength);
}
void cXinelibServer::Handle_Control_UDP(int cli, const char *arg)
{
LOGDBG("Trying UDP connection ...");
CloseDataConnection(cli);
if(!xc.remote_useudp) {
fd_control[cli].write_cmd("UDP: UDP transport disabled in configuration.\r\n");
LOGMSG("UDP transport disabled in configuration");
return;
}
int fd = sock_connect(fd_control[cli].handle(), atoi(arg), SOCK_DGRAM);
if(fd < 0) {
LOGERR("socket() for UDP failed");
fd_control[cli].write_cmd("UDP: Socked failed.\r\n");
return;
}
fd_control[cli].write_cmd("UDP OK\r\n");
m_bUdp[cli] = true;
fd_data[cli] = fd;
m_Scheduler->AddHandle(fd);
// Send padding packet before header (PAT/PMT).
// Client uses first received UDP/RTP packet to test connection.
m_Scheduler->QueuePadding();
if (m_Header)
m_Scheduler->Queue(sidVdr, 0, m_Header, m_HeaderLength);
}
void cXinelibServer::Handle_Control_KEY(int cli, const char *arg)
{
TRACE("cXinelibServer received KEY " << buf);
if(!xc.remote_keyboard) {
LOGMSG("Handle_Control_KEY(%s): Remote keyboard disabled in config", arg);
return;
}
char buf[256], *pt, *key;
bool repeat = false, release = false;
strn0cpy(buf, arg, sizeof(buf));
size_t n = *buf ? strlen(buf)-1 : 0;
while(n && buf[n]==' ') buf[n--]=0; /* trailing spaces */
if(NULL != (key=strchr(buf, ' '))) {
while(*key == ' ')
*(key++) = 0;
if(NULL != (pt = strchr(key, ' '))) {
*(pt++) = 0;
if(strstr(pt, "Repeat"))
repeat = true;
if(strstr(pt, "Release"))
release = true;
}
cXinelibThread::KeypressHandler(buf, key, repeat, release);
} else {
cXinelibThread::KeypressHandler(NULL, buf, repeat, release);
}
}
void cXinelibServer::Handle_Control_CONFIG(int cli)
{
m_bConfigOk[cli] = true;
fd_control[cli].set_nodelay(true);
fd_control[cli].printf("NOVIDEO %d\r\nLIVE %d\r\n",
m_bNoVideo?1:0, m_bLiveMode?1:0);
fd_control[cli].printf("TRICKSPEED %d%s\r\n",
m_TrickSpeed, m_bTrickSpeedBack ? " Backwards" : "");
SetVolume(m_Volume);
Configure();
fd_control[cli].write_cmd("CLEAR\r\n");
if(m_bPlayingFile && *m_FileName) {
Unlock();
int pos = m_Dev->PlayFileCtrl("GETPOS");
Lock();
if(m_bPlayingFile && *m_FileName) {
fd_control[cli].printf("PLAYFILE %d %s %s\r\n",
(pos>0?pos/1000:0), xc.audio_visualization, *m_FileName);
}
}
Unlock(); /* avoid deadlock if OSD update is already waiting in OsdCmd() */
cXinelibOsdProvider::RefreshOsd();
Lock();
}
void cXinelibServer::Handle_Control_UDP_RESEND(int cli, const char *arg)
{
unsigned int seq1, seq2;
uint64_t pos;
if( (!fd_data[cli] || !m_bUdp[cli]) &&
(!m_bMulticast[cli])) {
LOGMSG("Got invalid re-send request: no udp/rtp in use");
return;
}
if(3 == sscanf(arg, "%d-%d %" PRIu64, &seq1, &seq2, &pos)) {
if(seq1 <= UDP_SEQ_MASK && seq2 <= UDP_SEQ_MASK && pos <= m_StreamPos) {
if(fd_data[cli] >= 0)
m_Scheduler->ReSend(fd_data[cli], pos, seq1, seq2);
else
m_Scheduler->ReSend(-1, pos, seq1, seq2);
} else {
LOGMSG("Invalid re-send request: %s (send pos=%" PRIu64 ")",
arg, m_StreamPos);
}
} else {
LOGMSG("Invalid re-send request: %s (send pos=%" PRIu64 ")",
arg, m_StreamPos);
}
}
void cXinelibServer::Handle_Control_GRAB(int cli, const char *arg)
{
cGrabReplyFuture *f;
int token = -1, size = 0;
if(2 == sscanf(arg, "%d %d", &token, &size)) {
if(size > 0 && size < 20480000) {
uchar *result = (uchar*)malloc(size);
Unlock(); /* may take a while ... */
ssize_t n = fd_control[cli].read(result, size, 2000);
Lock();
if(n == size) {
if(NULL != (f = (cGrabReplyFuture*)m_Futures->Get(token))) {
grab_result_t r;
r.Size = size;
r.Data = result;
m_Futures->Del(f, token);
f->Set(r);
result = NULL;
} else {
LOGMSG("cXinelibServer: Grab image discarded");
}
} else {
LOGMSG("cXinelibServer: Grab result read() failed");
CloseConnection(cli);
}
free(result);
} else if(NULL != (f = (cGrabReplyFuture*)m_Futures->Get(token))) {
grab_result_t r;
r.Size = 0;
r.Data = NULL;
m_Futures->Del(f, token);
f->Set(r);
}
}
}
void cXinelibServer::Handle_Control_CONTROL(int cli, const char *arg)
{
fd_control[cli].printf("VDR-" VDRVERSION " "
"xineliboutput-" XINELIBOUTPUT_VERSION " "
"OSDSTREAM "
"READY\r\nCLIENT-ID %d\r\n", cli);
m_ConnType[cli] = ctControl;
}
static int strcmp_escaped(const char *s1, const char *s2)
{
if(!strncmp(s1, "file:", 5))
s1 += 5;
while(*s1 && *s2) {
int c1 = *s1;
int c2 = *s2;
if(c1 == '%' && s1[1] && s1[2] && 1 == sscanf(s1+1, "%02x", &c1)) s1 += 2;
if(c2 == '%' && s2[1] && s2[2] && 1 == sscanf(s2+1, "%02x", &c2)) s2 += 2;
if(c1 < c2) return -1;
if(c1 > c2) return 1;
s1++; s2++;
}
return *s1 ? -1 : *s2 ? 1 : 0;
}
void cXinelibServer::Handle_Control_HTTP(int cli, const char *arg)
{
// Parse request
if(m_ConnType[cli] == ctDetecting || !m_State[cli]) {
LOGDBG("HTTP request: %s", arg);
DELETENULL(m_Writer[cli]);
DELETENULL(m_State[cli]);
m_State[cli] = new cConnState;
if( !m_State[cli]->SetCommand(arg) ||
strncmp(m_State[cli]->Version(), "HTTP/1.", 7) ||
strcmp(m_State[cli]->Name(), "GET")) {
LOGMSG("invalid HTTP request: %s", arg);
CloseConnection(cli);
return;
}
m_ConnType[cli] = ctHttp;
return;
}
// Handle request
else if(m_ConnType[cli] == ctHttp) {
LOGDBG("HTTP(%d): %s", cli, arg);
// Collect headers
if(*arg) {
m_State[cli]->AddHeader(arg);
return;
}
LOGMSG("HTTP Request complete");
//
// primary device output (PES)
//
if(!strcmp(m_State[cli]->Uri(), "/")) {
if(!xc.remote_use_http) {
LOGMSG("HTTP transport disabled in configuration");
fd_control[cli].write_cmd(HTTP_REPLY_404);
LOGDBG("HTTP Reply: HTTP/1.1 404 Not Found");
CloseConnection(cli);
return;
}
LOGMSG("HTTP streaming primary device feed");
fd_control[cli].write_cmd(HTTP_REPLY_200_PRIMARY);
#if 0
// pack header (scr 0, mux rate 0x6270)
fd_control[cli].write(
"\x00\x00\x01\xba"
"\x44\x00\x04\x00" "\x04\x01\x01\x89" "\xc3\xf8", 14);
// system header (streams C0, E0, BD, BF)
fd_control[cli].write(
"\x00\x00\x01\xbb" "\x00\x12"
"\x80\xc4\xe1" "\x00\xe1" "\x7f"
"\xb9\xe0\xe8" "\xb8\xc0\x20" "\xbd\xe0\x3a" "\xbf\xe0\x02", 24);
#endif
m_Writer[cli] = new cRawWriter(fd_control[cli].handle(), KILOBYTE(1024));
if (m_Header)
m_Writer[cli]->Put(sidVdr, 0, m_Header, m_HeaderLength);
DELETENULL(m_State[cli]);
return;
}
//
// currently playing media file
//
else if(!strncmp(m_State[cli]->Uri(), "/PLAYFILE", 9)) {
if(!xc.remote_http_files) {
LOGMSG("HTTP transport for media files disabled in configuration");
fd_control[cli].write_cmd(HTTP_REPLY_404);
LOGDBG("HTTP Reply: HTTP/1.1 404 Not Found");
CloseConnection(cli);
return;
}
if( *m_FileName && m_bPlayingFile) {
cString file = m_FileName;
const char *pos = strstr(m_FileName, "#subtitle:");
if(pos)
file.Truncate(pos - m_FileName);
bool Allow = ( !strcmp_escaped(file, m_State[cli]->Uri() + 9)
|| !strcmp_escaped(xc.audio_vis_image_mrl, m_State[cli]->Uri() + 9)
|| (pos && !strcmp_escaped(pos + 10, m_State[cli]->Uri() + 9)));
if(Allow) {
LOGMSG("HTTP streaming media file");
// detach socket
new cHttpStreamer(fd_control[cli].handle(true), m_State[cli]->Uri() + 9, m_State[cli]);
m_State[cli] = NULL;
CloseConnection(cli);
return;
}
LOGDBG("HTTP Unauthorized request: %s", *m_State[cli]->Uri());
}
else
LOGDBG("No currently playing file");
}
//
// nothing else will be served ...
//
LOGMSG("Rejected HTTP request for \'%s\'", *m_State[cli]->Uri());
fd_control[cli].write_cmd(HTTP_REPLY_404);
LOGDBG("HTTP Reply: HTTP/1.1 404 Not Found");
CloseConnection(cli);
}
}
#define RTSP_200_OK "RTSP/1.0 200 OK\r\n" \
"CSeq: %d\r\n"
#define RTSP_401 "RTSP/1.0 401 Unauthorized\r\n" \
"CSeq: %d\r\n" RTSP_FIN
#define RTSP_415 "RTSP/1.0 415 Unsupported media type\r\n" \
"CSeq: %d\r\n" RTSP_FIN
#define RTSP_461 "RTSP/1.0 461 Unsupported transport\r\n" \
"CSeq: %d\r\n" RTSP_FIN
#define RTSP_501 "RTSP/1.0 501 Not implemented\r\n" \
"CSeq: %d\r\n" RTSP_FIN
#define RTSP_FIN "\r\n", CSeq
#define RTSPOUT(x...) do { fd_control[cli].printf(x); LOGMSG("RTSP TX:" x); } while(0)
//#define RTSPOUT(x...) fd_control[cli].printf_cmd(x)
void cXinelibServer::Handle_Control_RTSP(int cli, const char *arg)
{
//
// Minimal RTSP (RFC 2326) server implementation
//
//
// collect request and headers
//
if(m_ConnType[cli] == ctDetecting || !m_State[cli]) {
LOGDBG("RTSP request: %s", arg);
DELETENULL(m_State[cli]);
m_State[cli] = new cConnState;
if( !m_State[cli]->SetCommand(arg) ||
strcmp(m_State[cli]->Version(), "RTSP/1.0")) {
LOGMSG("invalid RTSP request: %s", arg);
CloseConnection(cli);
return;
}
m_ConnType[cli] = ctRtsp;
return;
}
//
// Process complete request
//
else if(m_ConnType[cli] == ctRtsp) {
LOGDBG("RTSP(%d): %s", cli, arg);
if(*arg) {
m_State[cli]->AddHeader(arg);
return;
}
cHeader *cseq = m_State[cli]->Header("CSeq");
int CSeq = cseq ? cseq->IntValue() : -1;
LOGMSG("RTSP Request complete (cseq %d)", CSeq);
if(!xc.remote_use_rtsp) {
LOGMSG("RTSP transport disabled in configuration");
RTSPOUT(RTSP_401);
LOGDBG("RTSP Reply: HTTP/1.1 404 Not Found");
CloseConnection(cli);
return;
}
//
// OPTIONS rtsp://127.0.0.1:37890 RTSP/1.0
// CSeq: 1
//
if(!strcmp(m_State[cli]->Name(), "OPTIONS")) {
RTSPOUT(RTSP_200_OK
"Public: DESCRIBE, SETUP, TEARDOWN, PLAY\r\n"
RTSP_FIN);
} // OPTIONS
//
// DESCRIBE rtsp://127.0.0.1:37890 RTSP/1.0
// CSeq: 2
// Accept: application/sdp
//
else if(!strcmp(m_State[cli]->Name(), "DESCRIBE")) {
cHeader *accept = m_State[cli]->Header("Accept");
if(accept && strstr(accept->Value(), SDP_MIME_TYPE)) {
union {
struct sockaddr sa;
struct sockaddr_in in;
} addr;
socklen_t len = sizeof(addr);
char buf[64];
uint32_t payload_type = VDRVERSNUM > 10702 ? SDP_PAYLOAD_MPEG_TS : SDP_PAYLOAD_MPEG_PES;
if (fd_control[cli].getsockname(&addr.sa, &len) < 0) {
LOGERR("Error getting control socket address");
}
cString sdp_descr = vdr_sdp_description(cxSocket::ip2txt(addr.in.sin_addr.s_addr,
addr.in.sin_port, buf),
2001,
xc.listen_port,
xc.remote_rtp_addr,
payload_type,
/*m_ssrc*/0x4df73452,
xc.remote_rtp_port,
xc.remote_rtp_ttl);
size_t sdplen = strlen(sdp_descr);
RTSPOUT(RTSP_200_OK
"Content-Type: application/sdp\r\n"
"Content-Length: %zu\r\n"
"\r\n",
CSeq, sdplen);
fd_control[cli].write_cmd(sdp_descr, sdplen);
} else {
RTSPOUT(RTSP_415 /*UNSUPPORTED_MEDIATYPE*/);
}
} // DESCRIBE
//
// SETUP rtsp://127.0.0.1:37890/ RTSP/1.0
// CSeq: 15
// Transport: RTP/AVP;unicast;client_port=37890-37891
// User-Agent: VLC media player (LIVE555 Streaming Media v2005.11.10)
//
else if(!strcmp(m_State[cli]->Name(), "SETUP")) {
cHeader *transport = m_State[cli]->Header("Transport");
int urtp=0, mrtp=0, tcp=0;
if(transport &&
( (mrtp = !!strstr(transport->Value(), "RTP/AVP;multicast")) ||
(urtp = !!strstr(transport->Value(), "RTP/AVP;unicast")) ||
(tcp = !!strstr(transport->Value(), "RTP/AVP;interleaved")))) {
//if(!mrtp)
// sprintf(buf, "RTSP/1.0 461 Unsupported transport\r\n" RTSP_H_CSEQ RTSP_OK_FIN);
//else
RTSPOUT(RTSP_200_OK
"Session: %u\r\n"
"Transport: RTP/AVP;multicast;destination=224.8.4.9;server_port=37890-37891\r\n"
RTSP_FIN,
cli);
} else {
RTSPOUT(RTSP_461 /*UNSUPPORTED_TRANSPORT*/ );
}
} // SETUP
//
// PLAY rtsp://127.0.0.1:37890 RTSP/1.0
// CSeq: 13
// Session: 0
// Range: npt=0.000-
// User-Agent: VLC media player (LIVE555 Streaming Media v2005.11.10)
//
else if(!strcmp(m_State[cli]->Name(), "PLAY")) {
RTSPOUT(RTSP_200_OK
RTSP_FIN);
if(!m_iMulticastMask && !xc.remote_rtp_always_on)
m_Scheduler->AddRtp();
m_bMulticast[cli] = true;
m_iMulticastMask |= (1<<cli);
#if 0
//udp
int fd = sock_connect(fd_control[cli], atoi(arg), SOCK_DGRAM);
if(fd < 0) {
LOGERR("socket() for UDP failed");
write_cmd(fd_control[cli], "UDP: Socked failed.\r\n");
return;
}
m_bUdp[cli] = true;
fd_data[cli] = fd;
m_Scheduler->AddHandle(fd);
#endif
} // PLAY
//
// TEARDOWN rtsp://127.0.0.1:37890 RTSP/1.0
// CSeq: 39
// Session: 1
// User-Agent: VLC media player (LIVE555 Streaming Media v2005.11.10)
//
else if(!strcmp(m_State[cli]->Name(), "TEARDOWN")) {
RTSPOUT(RTSP_200_OK
RTSP_FIN);
CloseConnection(cli);
} // TEARDOWN
//
// unknown/unsupported request
//
else {
LOGMSG("Unsupported RTSP request: %s", *m_State[cli]->Name());
RTSPOUT(RTSP_501 /*NOT_IMPLEMENTED*/);
} // unsupported request
// dispose buffer
DELETENULL(m_State[cli]);
} // ConnectionType == ctRtsp
}
void cXinelibServer::Handle_Control(int cli, const char *cmd)
{
TRACEF("cXinelibServer::Handle_Control");
LOGVERBOSE("Server received %s", cmd);
/* Order of tests is significant !!!
(example: UDP 2\r\n or UDP FULL 1\r\n) */
if(!strncasecmp(cmd, "OPTIONS ", 8) ||
!strncasecmp(cmd, "SETUP ", 6) ||
!strncasecmp(cmd, "DESCRIBE ", 9) ||
m_ConnType[cli] == ctRtsp) {
Handle_Control_RTSP(cli, cmd);
} else if(!strncasecmp(cmd, "GET ", 4) ||
m_ConnType[cli] == ctHttp) {
Handle_Control_HTTP(cli, cmd);
} else if(!strncasecmp(cmd, "PIPE OPEN", 9)) {
LOGDBG("Pipe open");
} else if(!strncasecmp(cmd, "PIPE", 4)) {
Handle_Control_PIPE(cli, cmd+4);
} else if(!strncasecmp(cmd, "RTP", 3)) {
Handle_Control_RTP(cli, cmd+4);
} else if(!strncasecmp(cmd, "UDP FULL", 8)) {
} else if(!strncasecmp(cmd, "UDP RESEND ", 11)) {
Handle_Control_UDP_RESEND(cli, cmd+11);
} else if(!strncasecmp(cmd, "UDP ", 4)) {
Handle_Control_UDP(cli, cmd+4);
} else if(!strncasecmp(cmd, "DATA ", 5)) {
Handle_Control_DATA(cli, cmd+5);
} else if(!strncasecmp(cmd, "OSD ", 4)) {
Handle_Control_OSD(cli, cmd+4);
} else if(!strncasecmp(cmd, "KEY ", 4)) {
Handle_Control_KEY(cli, cmd+4);
} else if(!strncasecmp(cmd, "CONFIG", 6)) {
Handle_Control_CONFIG(cli);
} else if(!strncasecmp(cmd, "STC ", 4)) {
int64_t pts = -1;
if(1 == sscanf(cmd+4, "%" PRId64, &pts))
m_StcFuture->Set(pts);
} else if(!strncasecmp(cmd, "ENDOFSTREAM", 11)) {
m_bEndOfStreamReached = true;
} else if(!strncasecmp(cmd, "RESULT ", 7)) {
int token = -1, result = -1;
if(2 == sscanf(cmd+7, "%d %d", &token, &result)) {
cReplyFuture *f = m_Futures->Get(token);
if(f) {
m_Futures->Del(f, token);
f->Set(result);
}
}
} else if(!strncmp(cmd, "INFO ", 5)) {
if(!strncmp(cmd, "INFO ARGBOSD", 12))
m_bArgbOSD[cli] = true;
if(!strncmp(cmd, "INFO ARGBOSD RLE", 16))
m_bRleArgbOSD[cli] = true;
if(!*xc.local_frontend || !strncmp(xc.local_frontend, "none", 4))
cXinelibThread::InfoHandler(cmd+5);
} else if(!strncasecmp(cmd, "GRAB ", 5)) {
Handle_Control_GRAB(cli, cmd+5);
} else if(!strncasecmp(cmd, "CLOSE", 5)) {
CloseConnection(cli);
} else if(!strncasecmp(cmd, "CONTROL", 7)) {
Handle_Control_CONTROL(cli, cmd);
}
}
void cXinelibServer::Read_Control(int cli)
{
int n;
while((n = fd_control[cli].recv(&m_CtrlBuf[ cli ][ m_CtrlBufPos[cli] ], 1)) == 1) {
++m_CtrlBufPos[cli];
if( m_CtrlBufPos[cli] > CTRL_BUF_SIZE-2) {
LOGMSG("Received too long control message from client %d (%d bytes)",
cli, m_CtrlBufPos[cli]);
LOGMSG("%81s",m_CtrlBuf[cli]);
CloseConnection(cli);
return;
}
if( m_CtrlBufPos[cli] > 1 &&
m_CtrlBuf[ cli ][ m_CtrlBufPos[cli] - 2 ] == '\r' &&
m_CtrlBuf[ cli ][ m_CtrlBufPos[cli] - 1 ] == '\n') {
m_CtrlBufPos[cli] -= 2;
m_CtrlBuf[ cli ][ m_CtrlBufPos[cli] ] = 0;
Handle_Control(cli, m_CtrlBuf[cli]);
m_CtrlBufPos[cli] = 0;
}
}
if (n == 0) {
LOGMSG("Client connection %d closed", cli);
CloseConnection(cli);
}
}
void cXinelibServer::Handle_ClientConnected(int fd)
{
char buf[64];
union {
struct sockaddr sa;
struct sockaddr_in in;
} addr;
socklen_t len = sizeof(addr);
int cli;
for(cli=0; cli<MAXCLIENTS; cli++)
if(!fd_control[cli].open())
break;
if (getpeername(fd, &addr.sa, &len) < 0) {
LOGERR("getpeername() failed, dropping new incoming connection %d", cli);
CLOSESOCKET(fd);
return;
}
LOGMSG("Client %d connected: %s", cli,
cxSocket::ip2txt(addr.in.sin_addr.s_addr, addr.in.sin_port, buf));
cAllowedHosts AllowedHosts(m_AllowedHostsFile);
if (!AllowedHosts.Acceptable(addr.in.sin_addr.s_addr)) {
const char *msg = "Access denied.\r\n";
ssize_t len = strlen(msg);
LOGMSG("Address not allowed to connect (%s)", *m_AllowedHostsFile);
if(write(fd, msg, len) != len)
LOGERR("Write failed.");
CLOSESOCKET(fd);
return;
}
if(cli>=xc.remote_max_clients || cli>=MAXCLIENTS) {
const char *msg = "Server busy.\r\n";
ssize_t len = strlen(msg);
// too many clients
LOGMSG("Too many clients (%d), connection refused", cli);
if(write(fd, msg, len) != len)
LOGERR("Write failed.");
CLOSESOCKET(fd);
return;
}
if (fcntl (fd, F_SETFL, fcntl (fd, F_GETFL) | O_NONBLOCK) == -1) {
LOGERR("Error setting control socket to nonblocking mode");
CLOSESOCKET(fd);
return;
}
int alive = 1;
if (setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &alive, sizeof(alive)) < 0) {
LOGERR("error setting SO_KEEPALIVE");
}
CloseDataConnection(cli);
m_OsdTimeouts[cli] = 0;
m_CtrlBufPos[cli] = 0;
m_CtrlBuf[cli][0] = 0;
m_ConnType[cli] = ctDetecting;
fd_control[cli].set_handle(fd);
fd_control[cli].set_buffers(KILOBYTE(128), KILOBYTE(128));
if (!m_Dev->ForcePrimaryDevice(true)) {
const char *msg = "Not primary device.\r\n";
ssize_t len = strlen(msg);
LOGMSG("Dropping client: xineliboutput is not the primary device !");
if(write(fd, msg, len) != len)
LOGERR("Write failed.");
CLOSESOCKET(fd);
return;
}
}
void cXinelibServer::Handle_Discovery_Broadcast(void)
{
if(!xc.remote_usebcast) {
LOGDBG("BROADCASTS disabled in configuration");
CLOSESOCKET(fd_discovery);
return;
}
char buf[DISCOVERY_MSG_MAXSIZE] = {0};
union {
struct sockaddr sa;
struct sockaddr_in in;
} from;
socklen_t len = sizeof(from);
if (udp_discovery_recv(fd_discovery, buf, 0, &from.sa, &len) > 0)
if(udp_discovery_is_valid_search(buf)) {
// Reply only if we can accept one more client
int clients = 0;
for(int c=0; c<MAXCLIENTS; c++)
if(fd_control[c].open())
clients++;
if(clients >= xc.remote_max_clients) {
LOGMSG("Not replying to discovery broadcast (too many clients)");
return;
}
udp_discovery_broadcast(fd_discovery, m_Port, xc.remote_local_ip);
}
}
void cXinelibServer::Action(void)
{
TRACEF("cXinelibServer::Action");
pollfd pfd[2*MAXCLIENTS + 2];
/* higher priority */
if (have_cap_sys_nice())
SetPriority(-1);
sched_param temp;
temp.sched_priority = 2;
/* request real-time scheduling */
if (!pthread_setschedparam(pthread_self(), SCHED_RR, &temp)) {
LOGDBG("cXinelibServer priority set successful SCHED_RR %d [%d,%d]",
temp.sched_priority,
sched_get_priority_min(SCHED_RR),
sched_get_priority_max(SCHED_RR));
} else {
LOGDBG("cXinelibServer: Can't set priority to SCHED_RR %d [%d,%d]",
temp.sched_priority,
sched_get_priority_min(SCHED_RR),
sched_get_priority_max(SCHED_RR));
}
errno = 0;
Lock();
Listen(m_Port);
m_bReady=true;
if(fd_listen>=0)
while (Running()) {
int i, fds = 0;
if(fd_listen>=0) {
pfd[fds].fd = fd_listen;
pfd[fds++].events = POLLIN;
}
if(fd_discovery >= 0) {
pfd[fds].fd = fd_discovery;
pfd[fds++].events = POLLIN;
}
for(i=0; i<MAXCLIENTS; i++) {
if(fd_control[i].open()) {
pfd[fds].fd = fd_control[i].handle();
pfd[fds++].events = POLLIN;
}
if(fd_data[i]>=0) {
pfd[fds].fd = fd_data[i];
pfd[fds++].events = 0; /* check for errors only */
}
}
Unlock();
int err = poll(pfd,fds,1000);
if(err < 0) {
LOGERR("cXinelibServer: poll failed");
if(Running())
cCondWait::SleepMs(100);
} else if(err == 0) {
// poll timeout
} else {
Lock();
for(int f=0; f<fds; f++) {
// Check errors (closed connections etc.)
if(pfd[f].revents & (POLLERR|POLLHUP|POLLNVAL)) {
if(pfd[f].fd == fd_listen) {
LOGERR("cXinelibServer: listen socket error");
CLOSESOCKET(fd_listen);
cCondWait::SleepMs(100);
Listen(m_Port);
} /* fd_listen */
else if(pfd[f].fd == fd_discovery) {
LOGERR("cXinelibServer: discovery socket error");
CLOSESOCKET(fd_discovery);
} /* fd_discovery */
else /* fd_data[] / fd_control[] */ {
for(i=0; i<MAXCLIENTS; i++) {
if(pfd[f].fd == fd_data[i] || pfd[f].fd == fd_control[i].handle()) {
LOGMSG("Client %d disconnected", i);
CloseConnection(i);
}
}
} /* fd_data / fd_control */
} /* Check ERRORS */
// Check ready for reading
else if(pfd[f].revents & POLLIN) {
// New connection
if(pfd[f].fd == fd_listen) {
int fd = accept(fd_listen, 0, 0);
if(fd>=0)
Handle_ClientConnected(fd);
} /* fd_listen */
// VDR Discovery
else if(pfd[f].fd == fd_discovery) {
Handle_Discovery_Broadcast();
} /* fd_discovery */
// Control data
else {
for(i=0; i<MAXCLIENTS; i++) {
if(pfd[f].fd == fd_control[i].handle()) {
Read_Control(i);
break;
}
}
} /* fd_control */
} /* Check ready for reading */
} /* for(fds) */
Unlock();
} /* Check poll result */
Lock();
} /* while running */
m_bReady = false;
Unlock();
}
|