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
|
/*****************************************************************
|
| Platinum - Control Point
|
| Copyright (c) 2004-2010, Plutinosoft, LLC.
| All rights reserved.
| http://www.plutinosoft.com
|
| This program is free software; you can redistribute it and/or
| modify it under the terms of the GNU General Public License
| as published by the Free Software Foundation; either version 2
| of the License, or (at your option) any later version.
|
| OEMs, ISVs, VARs and other distributors that combine and
| distribute commercially licensed software with Platinum software
| and do not wish to distribute the source code for the commercially
| licensed software under version 2, or (at your option) any later
| version, of the GNU General Public License (the "GPL") must enter
| into a commercial license agreement with Plutinosoft, LLC.
| licensing@plutinosoft.com
|
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
|
| You should have received a copy of the GNU General Public License
| along with this program; see the file LICENSE.txt. If not, write to
| the Free Software Foundation, Inc.,
| 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
| http://www.gnu.org/licenses/gpl-2.0.html
|
****************************************************************/
/*----------------------------------------------------------------------
| includes
+---------------------------------------------------------------------*/
#include "PltCtrlPoint.h"
#include "PltUPnP.h"
#include "PltDeviceData.h"
#include "PltUtilities.h"
#include "PltCtrlPointTask.h"
#include "PltSsdp.h"
#include "PltHttpServer.h"
#include "PltConstants.h"
NPT_SET_LOCAL_LOGGER("platinum.core.ctrlpoint")
//#define CONNECT360_SUPPORT
#ifdef CONNECT360_SUPPORT
extern NPT_UInt8 MS_ConnectionManagerSCPD[];
extern NPT_UInt8 MS_ContentDirectorywSearchSCPD[];
extern NPT_UInt8 X_MS_MediaReceiverRegistrarSCPD[];
#endif
/*----------------------------------------------------------------------
| PLT_CtrlPointListenerOnDeviceAddedIterator class
+---------------------------------------------------------------------*/
class PLT_CtrlPointListenerOnDeviceAddedIterator
{
public:
PLT_CtrlPointListenerOnDeviceAddedIterator(PLT_DeviceDataReference& device) :
m_Device(device) {}
NPT_Result operator()(PLT_CtrlPointListener*& listener) const {
return listener->OnDeviceAdded(m_Device);
}
private:
PLT_DeviceDataReference& m_Device;
};
/*----------------------------------------------------------------------
| PLT_CtrlPointListenerOnDeviceRemovedIterator class
+---------------------------------------------------------------------*/
class PLT_CtrlPointListenerOnDeviceRemovedIterator
{
public:
PLT_CtrlPointListenerOnDeviceRemovedIterator(PLT_DeviceDataReference& device) :
m_Device(device) {}
NPT_Result operator()(PLT_CtrlPointListener*& listener) const {
return listener->OnDeviceRemoved(m_Device);
}
private:
PLT_DeviceDataReference& m_Device;
};
/*----------------------------------------------------------------------
| PLT_CtrlPointListenerOnActionResponseIterator class
+---------------------------------------------------------------------*/
class PLT_CtrlPointListenerOnActionResponseIterator
{
public:
PLT_CtrlPointListenerOnActionResponseIterator(NPT_Result res,
PLT_ActionReference& action,
void* userdata) :
m_Res(res), m_Action(action), m_Userdata(userdata) {}
NPT_Result operator()(PLT_CtrlPointListener*& listener) const {
return listener->OnActionResponse(m_Res, m_Action, m_Userdata);
}
private:
NPT_Result m_Res;
PLT_ActionReference& m_Action;
void* m_Userdata;
};
/*----------------------------------------------------------------------
| PLT_CtrlPointListenerOnEventNotifyIterator class
+---------------------------------------------------------------------*/
class PLT_CtrlPointListenerOnEventNotifyIterator
{
public:
PLT_CtrlPointListenerOnEventNotifyIterator(PLT_Service* service,
NPT_List<PLT_StateVariable*>* vars) :
m_Service(service), m_Vars(vars) {}
NPT_Result operator()(PLT_CtrlPointListener*& listener) const {
return listener->OnEventNotify(m_Service, m_Vars);
}
private:
PLT_Service* m_Service;
NPT_List<PLT_StateVariable*>* m_Vars;
};
/*----------------------------------------------------------------------
| PLT_AddGetSCPDRequestIterator class
+---------------------------------------------------------------------*/
class PLT_AddGetSCPDRequestIterator
{
public:
PLT_AddGetSCPDRequestIterator(PLT_CtrlPointGetSCPDsTask& task,
PLT_DeviceDataReference& device) :
m_Task(task), m_Device(device) {}
NPT_Result operator()(PLT_Service*& service) const {
// look for the host and port of the device
NPT_String scpd_url = service->GetSCPDURL(true);
NPT_LOG_FINER_3("Queueing SCPD request for service \"%s\" of device \"%s\" @ %s",
(const char*)service->GetServiceID(),
(const char*)service->GetDevice()->GetFriendlyName(),
(const char*)scpd_url);
// verify url before queuing just in case
NPT_HttpUrl url(scpd_url);
if (!url.IsValid()) {
NPT_LOG_SEVERE_3("Invalid SCPD url \"%s\" for service \"%s\" of device \"%s\"!",
(const char*)scpd_url,
(const char*)service->GetServiceID(),
(const char*)service->GetDevice()->GetFriendlyName());
return NPT_ERROR_INVALID_SYNTAX;
}
// Create request and attach service to it
PLT_CtrlPointGetSCPDRequest* request =
new PLT_CtrlPointGetSCPDRequest((PLT_DeviceDataReference&)m_Device, scpd_url, "GET", NPT_HTTP_PROTOCOL_1_1);
return m_Task.AddSCPDRequest(request);
}
private:
PLT_CtrlPointGetSCPDsTask& m_Task;
PLT_DeviceDataReference m_Device;
};
/*----------------------------------------------------------------------
| PLT_EventSubscriberRemoverIterator class
+---------------------------------------------------------------------*/
// Note: The PLT_CtrlPoint::m_Lock must be acquired prior to using any
// function such as Apply on this iterator
class PLT_EventSubscriberRemoverIterator
{
public:
PLT_EventSubscriberRemoverIterator(PLT_CtrlPoint* ctrl_point) :
m_CtrlPoint(ctrl_point) {}
~PLT_EventSubscriberRemoverIterator() {}
NPT_Result operator()(PLT_Service*& service) const {
PLT_EventSubscriber* sub = NULL;
if (NPT_SUCCEEDED(NPT_ContainerFind(m_CtrlPoint->m_Subscribers,
PLT_EventSubscriberFinderByService(service), sub))) {
NPT_LOG_INFO_1("Removed subscriber \"%s\"", (const char*)sub->GetSID());
m_CtrlPoint->m_Subscribers.Remove(sub);
delete sub;
}
return NPT_SUCCESS;
}
private:
PLT_CtrlPoint* m_CtrlPoint;
};
/*----------------------------------------------------------------------
| PLT_ServiceReadyIterator class
+---------------------------------------------------------------------*/
class PLT_ServiceReadyIterator
{
public:
PLT_ServiceReadyIterator() {}
NPT_Result operator()(PLT_Service*& service) const {
return service->IsValid()?NPT_SUCCESS:NPT_FAILURE;
}
};
/*----------------------------------------------------------------------
| PLT_DeviceReadyIterator class
+---------------------------------------------------------------------*/
class PLT_DeviceReadyIterator
{
public:
PLT_DeviceReadyIterator() {}
NPT_Result operator()(PLT_DeviceDataReference& device) const {
NPT_Result res = device->m_Services.ApplyUntil(
PLT_ServiceReadyIterator(),
NPT_UntilResultNotEquals(NPT_SUCCESS));
if (NPT_FAILED(res)) return res;
res = device->m_EmbeddedDevices.ApplyUntil(
PLT_DeviceReadyIterator(),
NPT_UntilResultNotEquals(NPT_SUCCESS));
if (NPT_FAILED(res)) return res;
// a device must have at least one service or embedded device
// otherwise it's not ready
if (device->m_Services.GetItemCount() == 0 &&
device->m_EmbeddedDevices.GetItemCount() == 0) {
return NPT_FAILURE;
}
return NPT_SUCCESS;
}
};
/*----------------------------------------------------------------------
| PLT_CtrlPoint::PLT_CtrlPoint
+---------------------------------------------------------------------*/
PLT_CtrlPoint::PLT_CtrlPoint(const char* search_criteria /* = "upnp:rootdevice" */) :
m_EventHttpServer(new PLT_HttpServer()),
m_SearchCriteria(search_criteria)
{
m_EventHttpServer->AddRequestHandler(new PLT_HttpRequestHandler(this), "/", true, true);
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::~PLT_CtrlPoint
+---------------------------------------------------------------------*/
PLT_CtrlPoint::~PLT_CtrlPoint()
{
delete m_EventHttpServer;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::IgnoreUUID
+---------------------------------------------------------------------*/
void
PLT_CtrlPoint::IgnoreUUID(const char* uuid)
{
if (!m_UUIDsToIgnore.Find(NPT_StringFinder(uuid))) {
m_UUIDsToIgnore.Add(uuid);
}
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::Start
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::Start(PLT_SsdpListenTask* task)
{
m_EventHttpServer->Start();
// house keeping task
m_TaskManager.StartTask(new PLT_CtrlPointHouseKeepingTask(this));
// add ourselves as an listener to SSDP multicast advertisements
task->AddListener(this);
//
// use next line instead for DLNA testing, faster frequency for M-SEARCH
//return m_SearchCriteria.GetLength()?Search(NPT_HttpUrl("239.255.255.250", 1900, "*"), m_SearchCriteria, 1, 5000):NPT_SUCCESS;
//
return m_SearchCriteria.GetLength()?Search(NPT_HttpUrl("239.255.255.250", 1900, "*"), m_SearchCriteria):NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::Stop
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::Stop(PLT_SsdpListenTask* task)
{
task->RemoveListener(this);
m_TaskManager.StopAllTasks();
m_EventHttpServer->Stop();
// we can safely clear everything without a lock
// as there are no more tasks pending
m_RootDevices.Clear();
m_Subscribers.Apply(NPT_ObjectDeleter<PLT_EventSubscriber>());
m_Subscribers.Clear();
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::AddListener
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::AddListener(PLT_CtrlPointListener* listener)
{
NPT_AutoLock lock(m_ListenerList);
if (!m_ListenerList.Contains(listener)) {
m_ListenerList.Add(listener);
}
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::RemoveListener
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::RemoveListener(PLT_CtrlPointListener* listener)
{
NPT_AutoLock lock(m_ListenerList);
m_ListenerList.Remove(listener);
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::CreateSearchTask
+---------------------------------------------------------------------*/
PLT_SsdpSearchTask*
PLT_CtrlPoint::CreateSearchTask(const NPT_HttpUrl& url,
const char* target,
NPT_Cardinal mx,
NPT_TimeInterval frequency,
const NPT_IpAddress& address)
{
// make sure mx is at least 1
if (mx<1) mx=1;
// create socket
NPT_UdpMulticastSocket* socket = new NPT_UdpMulticastSocket();
socket->SetInterface(address);
socket->SetTimeToLive(4);
// bind to something > 1024 and different than 1900
int retries = 20;
do {
int random = NPT_System::GetRandomInteger();
int port = (unsigned short)(1024 + (random % 15000));
if (port == 1900) continue;
if (NPT_SUCCEEDED(socket->Bind(
NPT_SocketAddress(NPT_IpAddress::Any, port),
false)))
break;
} while (--retries);
if (retries == 0) {
NPT_LOG_SEVERE("Couldn't bind socket for Search Task");
return NULL;
}
// create request
NPT_HttpRequest* request = new NPT_HttpRequest(url, "M-SEARCH", NPT_HTTP_PROTOCOL_1_1);
PLT_UPnPMessageHelper::SetMX(*request, mx);
PLT_UPnPMessageHelper::SetST(*request, target);
PLT_UPnPMessageHelper::SetMAN(*request, "\"ssdp:discover\"");
request->GetHeaders().SetHeader(NPT_HTTP_HEADER_USER_AGENT, *PLT_Constants::GetInstance().GetDefaultUserAgent());
// create task
PLT_SsdpSearchTask* task = new PLT_SsdpSearchTask(
socket,
this,
request,
frequency.ToMillis()<mx*5000?NPT_TimeInterval(mx*5.):frequency);
return task;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::Search
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::Search(const NPT_HttpUrl& url,
const char* target,
NPT_Cardinal mx /* = 5 */,
NPT_TimeInterval frequency /* = NPT_TimeInterval(50.) */,
NPT_TimeInterval initial_delay /* = NPT_TimeInterval(0.) */)
{
NPT_List<NPT_NetworkInterface*> if_list;
NPT_List<NPT_NetworkInterface*>::Iterator net_if;
NPT_List<NPT_NetworkInterfaceAddress>::Iterator net_if_addr;
NPT_CHECK_SEVERE(PLT_UPnPMessageHelper::GetNetworkInterfaces(if_list, true));
for (net_if = if_list.GetFirstItem();
net_if;
net_if++) {
// make sure the interface is at least broadcast or multicast
if (!((*net_if)->GetFlags() & NPT_NETWORK_INTERFACE_FLAG_MULTICAST) &&
!((*net_if)->GetFlags() & NPT_NETWORK_INTERFACE_FLAG_BROADCAST)) {
continue;
}
for (net_if_addr = (*net_if)->GetAddresses().GetFirstItem();
net_if_addr;
net_if_addr++) {
// create task
PLT_SsdpSearchTask* task = CreateSearchTask(url,
target,
mx,
frequency,
(*net_if_addr).GetPrimaryAddress());
m_TaskManager.StartTask(task, &initial_delay);
}
}
if_list.Apply(NPT_ObjectDeleter<NPT_NetworkInterface>());
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::Discover
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::Discover(const NPT_HttpUrl& url,
const char* target,
NPT_Cardinal mx, /* = 5 */
NPT_TimeInterval frequency /* = NPT_TimeInterval(50.) */)
{
// make sure mx is at least 1
if (mx<1) mx = 1;
// create socket
NPT_UdpSocket* socket = new NPT_UdpSocket();
// create request
NPT_HttpRequest* request = new NPT_HttpRequest(url, "M-SEARCH", NPT_HTTP_PROTOCOL_1_1);
PLT_UPnPMessageHelper::SetMX(*request, mx);
PLT_UPnPMessageHelper::SetST(*request, target);
PLT_UPnPMessageHelper::SetMAN(*request, "\"ssdp:discover\"");
request->GetHeaders().SetHeader(NPT_HTTP_HEADER_USER_AGENT, *PLT_Constants::GetInstance().GetDefaultUserAgent());
// force HOST to be the regular multicast address:port
// Some servers do care (like WMC) otherwise they won't respond to us
request->GetHeaders().SetHeader(NPT_HTTP_HEADER_HOST, "239.255.255.250:1900");
// create task
PLT_ThreadTask* task = new PLT_SsdpSearchTask(
socket,
this,
request,
frequency.ToMillis()<mx*5000?NPT_TimeInterval(mx*5.):frequency); /* repeat no less than every 5 secs */
return m_TaskManager.StartTask(task);
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::DoHouseKeeping
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::DoHouseKeeping()
{
NPT_List<PLT_DeviceDataReference> devices_to_remove;
// remove expired devices
{
NPT_AutoLock lock(m_Lock);
PLT_DeviceDataReference head, device;
while (NPT_SUCCEEDED(m_RootDevices.PopHead(device))) {
NPT_TimeStamp last_update = device->GetLeaseTimeLastUpdate();
NPT_TimeInterval lease_time = device->GetLeaseTime();
// check if device lease time has expired or if failed to renew subscribers
// TODO: UDA 1.1 says that root device and all embedded devices must have expired
// before we can assume they're all no longer unavailable (we may have missed the root device renew)
NPT_TimeStamp now;
NPT_System::GetCurrentTimeStamp(now);
if (now > last_update + NPT_TimeInterval((double)lease_time*2)) {
devices_to_remove.Add(device);
} else {
// add the device back to our list since it is still alive
m_RootDevices.Add(device);
// keep track of first device added back to list
// to know we checked all devices in initial list
if (head.IsNull()) head = device;
}
// have we exhausted initial list?
if (!head.IsNull() && head == *m_RootDevices.GetFirstItem())
break;
};
}
// remove old devices
{
for (NPT_List<PLT_DeviceDataReference>::Iterator device =
devices_to_remove.GetFirstItem();
device;
device++) {
RemoveDevice(*device);
}
}
// renew subscribers of subscribed device services
{
NPT_AutoLock lock(m_Lock);
NPT_List<PLT_EventSubscriber*>::Iterator sub = m_Subscribers.GetFirstItem();
while (sub) {
NPT_TimeStamp now;
NPT_System::GetCurrentTimeStamp(now);
// time to renew if within 10 secs of expiration
if (now > (*sub)->GetExpirationTime() - NPT_TimeStamp(10.)) {
RenewSubscriber(*(*sub));
}
sub++;
}
}
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::FindDevice
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::FindDevice(const char* uuid,
PLT_DeviceDataReference& device,
bool return_root /* = false */)
{
NPT_List<PLT_DeviceDataReference>::Iterator iter = m_RootDevices.GetFirstItem();
while (iter) {
// device uuid found immediately as root device
if ((*iter)->GetUUID().Compare(uuid) == 0) {
device = *iter;
return NPT_SUCCESS;
} else if (NPT_SUCCEEDED((*iter)->FindEmbeddedDevice(uuid, device))) {
// we found the uuid as an embedded device of this root
// return root if told, otherwise return found embedded device
if (return_root) device = (*iter);
return NPT_SUCCESS;
}
++iter;
}
return NPT_ERROR_NO_SUCH_ITEM;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::FindActionDesc
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::FindActionDesc(PLT_DeviceDataReference& device,
const char* service_type,
const char* action_name,
PLT_ActionDesc*& action_desc)
{
// look for the service
PLT_Service* service;
if (NPT_FAILED(device->FindServiceByType(service_type, service))) {
NPT_LOG_FINE_1("Service %s not found", (const char*)service_type);
return NPT_FAILURE;
}
action_desc = service->FindActionDesc(action_name);
if (action_desc == NULL) {
NPT_LOG_FINE_1("Action %s not found in service", action_name);
return NPT_FAILURE;
}
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::CreateAction
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::CreateAction(PLT_DeviceDataReference& device,
const char* service_type,
const char* action_name,
PLT_ActionReference& action)
{
PLT_ActionDesc* action_desc;
NPT_CHECK_SEVERE(FindActionDesc(device,
service_type,
action_name,
action_desc));
PLT_DeviceDataReference root_device;
{
NPT_AutoLock lock(m_Lock);
NPT_CHECK_SEVERE(FindDevice(device->GetUUID(), root_device, true));
}
action = new PLT_Action(*action_desc, root_device);
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::SetupResponse
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::SetupResponse(NPT_HttpRequest& request,
const NPT_HttpRequestContext& context,
NPT_HttpResponse& response)
{
NPT_COMPILER_UNUSED(context);
if (!request.GetMethod().Compare("NOTIFY")) {
return ProcessHttpNotify(request, context, response);
}
NPT_LOG_SEVERE("CtrlPoint received bad http request\r\n");
response.SetStatus(412, "Precondition Failed");
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::DecomposeLastChangeVar
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::DecomposeLastChangeVar(NPT_List<PLT_StateVariable*>& vars)
{
// parse LastChange var into smaller vars
PLT_StateVariable* lastChangeVar = NULL;
if (NPT_SUCCEEDED(NPT_ContainerFind(vars,
PLT_StateVariableNameFinder("LastChange"),
lastChangeVar))) {
vars.Remove(lastChangeVar);
PLT_Service* var_service = lastChangeVar->GetService();
NPT_String text = lastChangeVar->GetValue();
NPT_XmlNode* xml = NULL;
NPT_XmlParser parser;
if (NPT_FAILED(parser.Parse(text, xml)) || !xml || !xml->AsElementNode()) {
delete xml;
return NPT_ERROR_INVALID_FORMAT;
}
NPT_XmlElementNode* node = xml->AsElementNode();
if (!node->GetTag().Compare("Event", true)) {
// look for the instance with attribute id = 0
NPT_XmlElementNode* instance = NULL;
for (NPT_Cardinal i=0; i<node->GetChildren().GetItemCount(); i++) {
NPT_XmlElementNode* child;
if (NPT_FAILED(PLT_XmlHelper::GetChild(node, child, i)))
continue;
if (!child->GetTag().Compare("InstanceID", true)) {
// extract the "val" attribute value
NPT_String value;
if (NPT_SUCCEEDED(PLT_XmlHelper::GetAttribute(child, "val", value)) &&
!value.Compare("0")) {
instance = child;
break;
}
}
}
// did we find an instance with id = 0 ?
if (instance != NULL) {
// all the children of the Instance node are state variables
for (NPT_Cardinal j=0; j<instance->GetChildren().GetItemCount(); j++) {
NPT_XmlElementNode* var_node;
if (NPT_FAILED(PLT_XmlHelper::GetChild(instance, var_node, j)))
continue;
// look for the state variable in this service
const NPT_String* value = var_node->GetAttribute("val");
PLT_StateVariable* var = var_service->FindStateVariable(var_node->GetTag());
if (value != NULL && var != NULL) {
// get the value and set the state variable
// if it succeeded, add it to the list of vars we'll event
if (NPT_SUCCEEDED(var->SetValue(*value))) {
vars.Add(var);
NPT_LOG_FINE_2("LastChange var change for (%s): %s",
(const char*)var->GetName(),
(const char*)var->GetValue());
}
}
}
}
}
delete xml;
}
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::ProcessHttpNotify
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::ProcessHttpNotify(const NPT_HttpRequest& request,
const NPT_HttpRequestContext& context,
NPT_HttpResponse& response)
{
NPT_COMPILER_UNUSED(context);
NPT_List<PLT_StateVariable*> vars;
PLT_EventSubscriber* sub = NULL;
NPT_String str;
NPT_XmlElementNode* xml = NULL;
NPT_String callback_uri;
NPT_String uuid;
NPT_String service_id;
NPT_UInt32 seq = 0;
PLT_Service* service = NULL;
PLT_DeviceData* device = NULL;
NPT_String content_type;
NPT_String method = request.GetMethod();
NPT_String uri = request.GetUrl().GetPath(true);
PLT_LOG_HTTP_MESSAGE(NPT_LOG_LEVEL_FINER, "PLT_CtrlPoint::ProcessHttpNotify:", request);
const NPT_String* sid = PLT_UPnPMessageHelper::GetSID(request);
const NPT_String* nt = PLT_UPnPMessageHelper::GetNT(request);
const NPT_String* nts = PLT_UPnPMessageHelper::GetNTS(request);
PLT_HttpHelper::GetContentType(request, content_type);
if (!sid || sid->GetLength() == 0) {
NPT_CHECK_LABEL_WARNING(NPT_FAILURE, bad_request);
}
if (!nt || nt->GetLength() == 0 ||
!nts || nts->GetLength() == 0) {
response.SetStatus(400, "Bad request");
NPT_CHECK_LABEL_WARNING(NPT_FAILURE, bad_request);
}
{
NPT_AutoLock lock(m_Lock);
// look for the subscriber with that subscription url
if (NPT_FAILED(NPT_ContainerFind(m_Subscribers,
PLT_EventSubscriberFinderBySID(*sid),
sub))) {
NPT_LOG_FINE_1("Subscriber %s not found\n", (const char*)*sid);
NPT_CHECK_LABEL_WARNING(NPT_FAILURE, bad_request);
}
// verify the request is syntactically correct
service = sub->GetService();
device = service->GetDevice();
uuid = device->GetUUID();
service_id = service->GetServiceID();
// callback uri for this sub
callback_uri = "/" + uuid + "/" + service_id;
if (uri.Compare(callback_uri, true) ||
nt->Compare("upnp:event", true) ||
nts->Compare("upnp:propchange", true)) {
NPT_CHECK_LABEL_WARNING(NPT_FAILURE, bad_request);
}
// if the sequence number is less than our current one, we got it out of order
// so we disregard it
PLT_UPnPMessageHelper::GetSeq(request, seq);
if (sub->GetEventKey() && seq < sub->GetEventKey()) {
NPT_CHECK_LABEL_WARNING(NPT_FAILURE, bad_request);
}
// parse body
if (NPT_FAILED(PLT_HttpHelper::ParseBody(request, xml))) {
NPT_CHECK_LABEL_WARNING(NPT_FAILURE, bad_request);
}
// check envelope
if (xml->GetTag().Compare("propertyset", true)) {
NPT_CHECK_LABEL_WARNING(NPT_FAILURE, bad_request);
}
// check property set
// keep a vector of the state variables that changed
NPT_XmlElementNode* property;
PLT_StateVariable* var;
for (NPT_List<NPT_XmlNode*>::Iterator children = xml->GetChildren().GetFirstItem();
children;
children++) {
NPT_XmlElementNode* child = (*children)->AsElementNode();
if (!child) continue;
// check property
if (child->GetTag().Compare("property", true)) continue;
if (NPT_FAILED(PLT_XmlHelper::GetChild(child, property))) {
NPT_CHECK_LABEL_WARNING(NPT_FAILURE, bad_request);
}
var = service->FindStateVariable(property->GetTag());
if (var == NULL) continue;
if (NPT_FAILED(var->SetValue(property->GetText()?*property->GetText():""))) {
NPT_CHECK_LABEL_WARNING(NPT_FAILURE, bad_request);
}
vars.Add(var);
}
// update sequence
sub->SetEventKey(seq);
}
// Look if a state variable LastChange was received and decompose it into
// independent state variable updates
DecomposeLastChangeVar(vars);
// notify listener we got an update
if (vars.GetItemCount()) {
NPT_AutoLock lock(m_ListenerList);
m_ListenerList.Apply(PLT_CtrlPointListenerOnEventNotifyIterator(service, &vars));
}
delete xml;
return NPT_SUCCESS;
bad_request:
NPT_LOG_SEVERE("CtrlPoint received bad request\r\n");
if (response.GetStatusCode() == 200) {
response.SetStatus(412, "Precondition Failed");
}
delete xml;
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::ProcessSsdpSearchResponse
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::ProcessSsdpSearchResponse(NPT_Result res,
const NPT_HttpRequestContext& context,
NPT_HttpResponse* response)
{
NPT_CHECK_SEVERE(res);
NPT_CHECK_POINTER_SEVERE(response);
NPT_String ip_address = context.GetRemoteAddress().GetIpAddress().ToString();
NPT_String protocol = response->GetProtocol();
NPT_String prefix = NPT_String::Format("PLT_CtrlPoint::ProcessSsdpSearchResponse from %s:%d",
(const char*)context.GetRemoteAddress().GetIpAddress().ToString() ,
context.GetRemoteAddress().GetPort());
PLT_LOG_HTTP_MESSAGE(NPT_LOG_LEVEL_FINER, prefix, response);
// any 2xx responses are ok
if (response->GetStatusCode()/100 == 2) {
const NPT_String* st = response->GetHeaders().GetHeaderValue("st");
const NPT_String* usn = response->GetHeaders().GetHeaderValue("usn");
const NPT_String* ext = response->GetHeaders().GetHeaderValue("ext");
NPT_CHECK_POINTER_SEVERE(st);
NPT_CHECK_POINTER_SEVERE(usn);
NPT_CHECK_POINTER_SEVERE(ext);
NPT_String uuid;
// if we get an advertisement other than uuid
// verify it's formatted properly
if (usn != st) {
char tmp_uuid[200];
char tmp_st[200];
int ret;
// FIXME: We can't use sscanf directly!
ret = sscanf(((const char*)*usn)+5, "%199[^::]::%199s",
tmp_uuid,
tmp_st);
if (ret != 2)
return NPT_FAILURE;
if (st->Compare(tmp_st, true))
return NPT_FAILURE;
uuid = tmp_uuid;
} else {
uuid = ((const char*)*usn)+5;
}
if (m_UUIDsToIgnore.Find(NPT_StringFinder(uuid))) {
NPT_LOG_FINE_1("CtrlPoint received a search response from ourselves (%s)\n", (const char*)uuid);
return NPT_SUCCESS;
}
return ProcessSsdpMessage(*response, context, uuid);
}
return NPT_FAILURE;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::OnSsdpPacket
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::OnSsdpPacket(const NPT_HttpRequest& request,
const NPT_HttpRequestContext& context)
{
return ProcessSsdpNotify(request, context);
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::ProcessSsdpNotify
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::ProcessSsdpNotify(const NPT_HttpRequest& request,
const NPT_HttpRequestContext& context)
{
// get the address of who sent us some data back
NPT_String ip_address = context.GetRemoteAddress().GetIpAddress().ToString();
NPT_String method = request.GetMethod();
NPT_String uri = request.GetUrl().GetPath(true);
NPT_String protocol = request.GetProtocol();
if (method.Compare("NOTIFY") == 0) {
const NPT_String* nts = PLT_UPnPMessageHelper::GetNTS(request);
const NPT_String* nt = PLT_UPnPMessageHelper::GetNT(request);
const NPT_String* usn = PLT_UPnPMessageHelper::GetUSN(request);
NPT_String prefix = NPT_String::Format("PLT_CtrlPoint::ProcessSsdpNotify from %s:%d (%s)",
context.GetRemoteAddress().GetIpAddress().ToString().GetChars(),
context.GetRemoteAddress().GetPort(),
usn?usn->GetChars():"unknown");
PLT_LOG_HTTP_MESSAGE(NPT_LOG_LEVEL_FINER, prefix, request);
if ((uri.Compare("*") != 0) || (protocol.Compare("HTTP/1.1") != 0))
return NPT_FAILURE;
NPT_CHECK_POINTER_SEVERE(nts);
NPT_CHECK_POINTER_SEVERE(nt);
NPT_CHECK_POINTER_SEVERE(usn);
NPT_String uuid;
// if we get an advertisement other than uuid
// verify it's formatted properly
if (*usn != *nt) {
char tmp_uuid[200];
char tmp_nt[200];
int ret;
//FIXME: no sscanf!
ret = sscanf(((const char*)*usn)+5, "%199[^::]::%199s",
tmp_uuid,
tmp_nt);
if (ret != 2)
return NPT_FAILURE;
if (nt->Compare(tmp_nt, true))
return NPT_FAILURE;
uuid = tmp_uuid;
} else {
uuid = ((const char*)*usn)+5;
}
if (m_UUIDsToIgnore.Find(NPT_StringFinder(uuid))) {
NPT_LOG_FINE_1("Received a NOTIFY request from ourselves (%s)\n", (const char*)uuid);
return NPT_SUCCESS;
}
// if it's a byebye, remove the device and return right away
if (nts->Compare("ssdp:byebye", true) == 0) {
NPT_LOG_INFO_1("Received a byebye NOTIFY request from %s\n", (const char*)uuid);
PLT_DeviceDataReference root_device;
{
// look for root device
NPT_AutoLock lock(m_Lock);
FindDevice(uuid, root_device, true);
}
if (!root_device.IsNull()) RemoveDevice(root_device);
return NPT_SUCCESS;
}
return ProcessSsdpMessage(request, context, uuid);
}
return NPT_FAILURE;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::AddDevice
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::AddDevice(PLT_DeviceDataReference& data)
{
NPT_AutoLock lock(m_ListenerList);
return NotifyDeviceReady(data);
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::NotifyDeviceReady
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::NotifyDeviceReady(PLT_DeviceDataReference& data)
{
m_ListenerList.Apply(PLT_CtrlPointListenerOnDeviceAddedIterator(data));
/* recursively add embedded devices */
NPT_Array<PLT_DeviceDataReference> embedded_devices =
data->GetEmbeddedDevices();
for (NPT_Cardinal i=0;i<embedded_devices.GetItemCount();i++) {
NotifyDeviceReady(embedded_devices[i]);
}
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::RemoveDevice
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::RemoveDevice(PLT_DeviceDataReference& data)
{
{
NPT_AutoLock lock(m_ListenerList);
NotifyDeviceRemoved(data);
}
{
NPT_AutoLock lock(m_Lock);
CleanupDevice(data);
}
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::NotifyDeviceRemoved
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::NotifyDeviceRemoved(PLT_DeviceDataReference& data)
{
m_ListenerList.Apply(PLT_CtrlPointListenerOnDeviceRemovedIterator(data));
/* recursively add embedded devices */
NPT_Array<PLT_DeviceDataReference> embedded_devices =
data->GetEmbeddedDevices();
for (NPT_Cardinal i=0;i<embedded_devices.GetItemCount();i++) {
NotifyDeviceRemoved(embedded_devices[i]);
}
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::CleanupDevice
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::CleanupDevice(PLT_DeviceDataReference& data)
{
NPT_LOG_INFO_1("Removing %s from device list\n", (const char*)data->GetUUID());
// Note: This must take the lock prior to being called
// we can't take the lock here because this function
// will be recursively called if device contains embedded devices
/* recursively remove embedded devices */
NPT_Array<PLT_DeviceDataReference> embedded_devices =
data->GetEmbeddedDevices();
for (NPT_Cardinal i=0;i<embedded_devices.GetItemCount();i++) {
CleanupDevice(embedded_devices[i]);
}
/* remove from list */
m_RootDevices.Remove(data);
/* unsubscribe from services */
data->m_Services.Apply(PLT_EventSubscriberRemoverIterator(this));
/* remove from parent */
PLT_DeviceDataReference parent;
if (!data->GetParentUUID().IsEmpty() &&
NPT_SUCCEEDED(FindDevice(data->GetParentUUID(), parent))) {
parent->RemoveEmbeddedDevice(data);
}
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::ProcessSsdpMessage
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::ProcessSsdpMessage(const NPT_HttpMessage& message,
const NPT_HttpRequestContext& context,
NPT_String& uuid)
{
NPT_COMPILER_UNUSED(context);
if (m_UUIDsToIgnore.Find(NPT_StringFinder(uuid))) return NPT_SUCCESS;
const NPT_String* url = PLT_UPnPMessageHelper::GetLocation(message);
NPT_CHECK_POINTER_SEVERE(url);
// Fix for Connect360 which uses localhost in device description url
NPT_HttpUrl location(*url);
if (location.GetHost().ToLowercase() == "localhost" ||
location.GetHost().ToLowercase() == "127.0.0.1") {
location.SetHost(context.GetRemoteAddress().GetIpAddress().ToString());
}
// be nice and assume a default lease time if not found
NPT_TimeInterval leasetime;
if (NPT_FAILED(PLT_UPnPMessageHelper::GetLeaseTime(message, leasetime))) {
leasetime = *PLT_Constants::GetInstance().GetDefaultSubscribeLease();
}
{
NPT_AutoLock lock(m_Lock);
// look if device (or embedded device) is already known
PLT_DeviceDataReference data;
if (NPT_SUCCEEDED(FindDevice(uuid, data))) {
// in case we missed the byebye and the device description has changed (ip or port)
// reset base and assumes device is the same (same number of services and embedded devices)
// FIXME: The right way is to remove the device and rescan it though but how do we know it changed?
PLT_DeviceReadyIterator device_tester;
if (NPT_SUCCEEDED(device_tester(data)) && data->GetDescriptionUrl().Compare(location.ToString(), true)) {
NPT_LOG_INFO_2("Old device \"%s\" detected @ new location %s",
(const char*)data->GetFriendlyName(),
(const char*)location.ToString());
data->SetURLBase(location);
}
// renew expiration time
data->SetLeaseTime(leasetime);
NPT_LOG_FINE_1("Device \"%s\" expiration time renewed..",
(const char*)data->GetFriendlyName());
return NPT_SUCCESS;
}
// device not known, inspect it
return InspectDevice(location, uuid, leasetime);
}
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::InspectDevice
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::InspectDevice(const NPT_HttpUrl& location,
const char* uuid,
NPT_TimeInterval leasetime)
{
NPT_LOG_INFO_2("Inspecting device \"%s\" detected @ %s",
uuid,
(const char*)location.ToString());
if (!location.IsValid()) {
NPT_LOG_INFO_1("Invalid device description url: %s",
(const char*) location.ToString());
return NPT_FAILURE;
}
// Start a task to retrieve the description
PLT_CtrlPointGetDescriptionTask* task = new PLT_CtrlPointGetDescriptionTask(
location,
this,
leasetime);
// Add a delay to make sure that we received late NOTIFY bye-bye
NPT_TimeInterval delay(.5f);
m_TaskManager.StartTask(task, &delay);
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::FetchDeviceSCPDs
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::FetchDeviceSCPDs(PLT_CtrlPointGetSCPDsTask* task,
PLT_DeviceDataReference& device,
NPT_Cardinal level)
{
if (level == 5 && device->m_EmbeddedDevices.GetItemCount()) {
NPT_LOG_FATAL("Too many embedded devices depth! ");
return NPT_FAILURE;
}
++level;
// fetch embedded devices services scpds first
for (NPT_Cardinal i = 0;
i<device->m_EmbeddedDevices.GetItemCount();
i++) {
NPT_CHECK_SEVERE(FetchDeviceSCPDs(task, device->m_EmbeddedDevices[i], level));
}
// Get SCPD of device services now and bail right away if one fails
return device->m_Services.ApplyUntil(
PLT_AddGetSCPDRequestIterator(*task, device),
NPT_UntilResultNotEquals(NPT_SUCCESS));
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::ProcessGetDescriptionResponse
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::ProcessGetDescriptionResponse(NPT_Result res,
const NPT_HttpRequest& request,
const NPT_HttpRequestContext& context,
NPT_HttpResponse* response,
NPT_TimeInterval leasetime)
{
NPT_COMPILER_UNUSED(request);
PLT_CtrlPointGetSCPDsTask* task = NULL;
NPT_String desc;
PLT_DeviceDataReference root_device;
NPT_String prefix = NPT_String::Format("PLT_CtrlPoint::ProcessGetDescriptionResponse @ %s (result = %d, status = %d)",
(const char*)request.GetUrl().ToString(),
res,
response?response->GetStatusCode():0);
// verify response was ok
NPT_CHECK_LABEL_FATAL(res, bad_response);
NPT_CHECK_POINTER_LABEL_FATAL(response, bad_response);
PLT_LOG_HTTP_MESSAGE(NPT_LOG_LEVEL_FINER, prefix, response);
// get response body
res = PLT_HttpHelper::GetBody(*response, desc);
NPT_CHECK_LABEL_SEVERE(res, bad_response);
// create new root device
NPT_CHECK_FATAL(PLT_DeviceData::SetDescription(root_device, leasetime, request.GetUrl(), desc, context));
{
NPT_AutoLock lock(m_Lock);
// make sure root device was not previously queried
PLT_DeviceDataReference device;
if (NPT_FAILED(FindDevice(root_device->GetUUID(), device))) {
m_RootDevices.Add(root_device);
NPT_LOG_INFO_2("Device \"%s\" is now known as \"%s\"",
(const char*)root_device->GetUUID(),
(const char*)root_device->GetFriendlyName());
// create one single task to fetch all scpds one after the other
task = new PLT_CtrlPointGetSCPDsTask(this, root_device);
NPT_CHECK_LABEL_SEVERE(FetchDeviceSCPDs(task, root_device, 0),
bad_response);
// Add a delay, some devices need it (aka Rhapsody)
NPT_TimeInterval delay(0.1f);
// if device has embedded devices, we want to delay fetching scpds
// just in case there's a chance all the initial NOTIFY bye-bye have
// not all been received yet which would cause to remove the devices
// as we're adding them
if (root_device->m_EmbeddedDevices.GetItemCount() > 0) delay = 1.f;
m_TaskManager.StartTask(task, &delay);
}
}
return NPT_SUCCESS;
bad_response:
NPT_LOG_SEVERE_2("Bad Description response @ %s: %s",
(const char*)request.GetUrl().ToString(),
(const char*)desc);
if (task) delete task;
return res;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::ProcessGetSCPDResponse
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::ProcessGetSCPDResponse(NPT_Result res,
const NPT_HttpRequest& request,
const NPT_HttpRequestContext& context,
NPT_HttpResponse* response,
PLT_DeviceDataReference& device)
{
NPT_COMPILER_UNUSED(context);
PLT_DeviceReadyIterator device_tester;
NPT_String scpd;
PLT_DeviceDataReference root_device;
PLT_Service* service;
NPT_String prefix = NPT_String::Format("PLT_CtrlPoint::ProcessGetSCPDResponse for a service of device \"%s\" @ %s (result = %d, status = %d)",
(const char*)device->GetFriendlyName(),
(const char*)request.GetUrl().ToString(),
res,
response?response->GetStatusCode():0);
// verify response was ok
NPT_CHECK_LABEL_FATAL(res, bad_response);
NPT_CHECK_POINTER_LABEL_FATAL(response, bad_response);
PLT_LOG_HTTP_MESSAGE(NPT_LOG_LEVEL_FINER, prefix, response);
// make sure root device hasn't disappeared
{
NPT_AutoLock lock(m_Lock);
NPT_CHECK_LABEL_WARNING(FindDevice(device->GetUUID(), root_device, true),
bad_response);
}
res = device->FindServiceBySCPDURL(request.GetUrl().ToRequestString(), service);
NPT_CHECK_LABEL_SEVERE(res, bad_response);
// get response body
res = PLT_HttpHelper::GetBody(*response, scpd);
NPT_CHECK_LABEL_FATAL(res, bad_response);
#ifdef CONNECT360_SUPPORT
// override scpd response since Connect360 doesn't return the scpds
if (response->GetStatusCode() == 404) {
if (service->GetServiceType() == "urn:schemas-upnp-org:service:ConnectionManager:1") {
scpd = (const char*)MS_ConnectionManagerSCPD;
} else if (service->GetServiceType() == "urn:schemas-upnp-org:service:ContentDirectory:1") {
scpd = (const char*)MS_ContentDirectorywSearchSCPD;
} else if (service->GetServiceType() == "urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1") {
scpd = (const char*)X_MS_MediaReceiverRegistrarSCPD;
}
}
#endif
// set the service scpd
res = service->SetSCPDXML(scpd);
NPT_CHECK_LABEL_SEVERE(res, bad_response);
// if root device is ready, notify listeners about it and embedded devices
if (NPT_SUCCEEDED(device_tester(root_device))) {
AddDevice(root_device);
}
return NPT_SUCCESS;
bad_response:
NPT_LOG_SEVERE_2("Bad SCPD response for device \"%s\":%s",
(const char*)device->GetFriendlyName(),
(const char*)scpd);
if (!root_device.IsNull()) RemoveDevice(root_device);
return res;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::RenewSubscriber
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::RenewSubscriber(PLT_EventSubscriber& subscriber)
{
// look for the corresponding root device
// Note: we don't lock here to avoid a recursive deadlock
// we expect the caller to have taken m_Lock already
PLT_DeviceDataReference root_device;
NPT_CHECK_WARNING(FindDevice(
subscriber.GetService()->GetDevice()->GetUUID(),
root_device,
true));
NPT_LOG_FINE_3("Renewing subscriber \"%s\" for service \"%s\" of device \"%s\"",
(const char*)subscriber.GetSID(),
(const char*)subscriber.GetService()->GetServiceID(),
(const char*)subscriber.GetService()->GetDevice()->GetFriendlyName());
// create the request
NPT_HttpRequest* request = new NPT_HttpRequest(
subscriber.GetService()->GetEventSubURL(true),
"SUBSCRIBE",
NPT_HTTP_PROTOCOL_1_1);
PLT_UPnPMessageHelper::SetSID(*request, subscriber.GetSID());
PLT_UPnPMessageHelper::SetTimeOut(*request,
(NPT_Int32)PLT_Constants::GetInstance().GetDefaultSubscribeLease()->ToSeconds());
// Prepare the request
// create a task to post the request
PLT_ThreadTask* task = new PLT_CtrlPointSubscribeEventTask(
request,
this,
root_device,
subscriber.GetService());
return m_TaskManager.StartTask(task);
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::Subscribe
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::Subscribe(PLT_Service* service,
bool cancel,
void* userdata)
{
NPT_HttpRequest* request = NULL;
// make sure service is subscribable
if (!service->IsSubscribable()) return NPT_FAILURE;
// event url
NPT_HttpUrl url(service->GetEventSubURL(true));
// look for the corresponding root device
PLT_DeviceDataReference root_device;
{
NPT_AutoLock lock(m_Lock);
NPT_CHECK_WARNING(FindDevice(service->GetDevice()->GetUUID(),
root_device,
true));
// look for the subscriber with that service to decide if it's a renewal or not
PLT_EventSubscriber* sub = NULL;
NPT_ContainerFind(m_Subscribers,
PLT_EventSubscriberFinderByService(service),
sub);
if (cancel == false) {
// renewal?
if (sub) return RenewSubscriber(*sub);
NPT_LOG_INFO_2("Subscribing to service \"%s\" of device \"%s\"",
(const char*)service->GetServiceID(),
(const char*)service->GetDevice()->GetFriendlyName());
// prepare the callback url
NPT_String uuid = service->GetDevice()->GetUUID();
NPT_String service_id = service->GetServiceID();
NPT_String callback_uri = "/" + uuid + "/" + service_id;
// create the request
request = new NPT_HttpRequest(url, "SUBSCRIBE", NPT_HTTP_PROTOCOL_1_1);
// specify callback url using ip of interface used when
// retrieving device description
NPT_HttpUrl callbackUrl(
service->GetDevice()->m_LocalIfaceIp.ToString(),
m_EventHttpServer->GetPort(),
callback_uri);
// set the required headers for a new subscription
PLT_UPnPMessageHelper::SetNT(*request, "upnp:event");
PLT_UPnPMessageHelper::SetCallbacks(*request,
"<" + callbackUrl.ToString() + ">");
PLT_UPnPMessageHelper::SetTimeOut(*request,
(NPT_Int32)PLT_Constants::GetInstance().GetDefaultSubscribeLease()->ToSeconds());
} else {
NPT_LOG_INFO_3("Unsubscribing subscriber \"%s\" for service \"%s\" of device \"%s\"",
(const char*)(sub?sub->GetSID().GetChars():"unknown"),
(const char*)service->GetServiceID(),
(const char*)service->GetDevice()->GetFriendlyName());
// cancellation
if (!sub) return NPT_FAILURE;
// create the request
request = new NPT_HttpRequest(url, "UNSUBSCRIBE", NPT_HTTP_PROTOCOL_1_1);
PLT_UPnPMessageHelper::SetSID(*request, sub->GetSID());
// remove from list now
m_Subscribers.Remove(sub, true);
delete sub;
}
}
// verify we have request to send just in case
NPT_CHECK_POINTER_FATAL(request);
// Prepare the request
// create a task to post the request
PLT_ThreadTask* task = new PLT_CtrlPointSubscribeEventTask(
request,
this,
root_device,
service,
userdata);
m_TaskManager.StartTask(task);
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::ProcessSubscribeResponse
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::ProcessSubscribeResponse(NPT_Result res,
const NPT_HttpRequest& request,
const NPT_HttpRequestContext& context,
NPT_HttpResponse* response,
PLT_Service* service,
void* /* userdata */)
{
NPT_COMPILER_UNUSED(context);
const NPT_String* sid = NULL;
NPT_Int32 seconds;
PLT_EventSubscriber* sub = NULL;
bool subscription = (request.GetMethod().ToUppercase() == "SUBSCRIBE");
NPT_AutoLock lock(m_Lock);
NPT_String prefix = NPT_String::Format("PLT_CtrlPoint::ProcessSubscribeResponse for service \"%s\" (result = %d, status code = %d)",
(const char*)subscription?"S":"Uns",
(const char*)service->GetServiceID(),
res,
response?response->GetStatusCode():0);
PLT_LOG_HTTP_MESSAGE(NPT_LOG_LEVEL_FINER, prefix, response);
// if there's a failure or it's a response to a cancellation
// we get out (any 2xx status code ok)
if (NPT_FAILED(res) || response == NULL || response->GetStatusCode()/100 != 2) {
goto failure;
}
if (subscription) {
if (!(sid = PLT_UPnPMessageHelper::GetSID(*response)) ||
NPT_FAILED(PLT_UPnPMessageHelper::GetTimeOut(*response, seconds))) {
NPT_CHECK_LABEL_SEVERE(res = NPT_ERROR_INVALID_SYNTAX, failure);
}
NPT_ContainerFind(m_Subscribers,
PLT_EventSubscriberFinderBySID(*sid),
sub);
NPT_LOG_INFO_5("%s subscriber \"%s\" for service \"%s\" of device \"%s\" (timeout = %d)",
sub?"Updating timeout for":"Creating new",
(const char*)*sid,
(const char*)service->GetServiceID(),
(const char*)service->GetDevice()->GetFriendlyName(),
seconds);
// create new subscriber if sid never seen before
if (!sub) {
sub = new PLT_EventSubscriber(&m_TaskManager, service, *sid, seconds);
m_Subscribers.Add(sub);
} else {
// simply update subscriber expiration
sub->SetTimeout(seconds);
}
return NPT_SUCCESS;
}
goto remove_sub;
failure:
NPT_LOG_SEVERE_4("%subscription failed of sub \"%s\" for service \"%s\" of device \"%s\"",
(const char*)subscription?"S":"Uns",
(const char*)(sid?*sid:"Unknown"),
(const char*)service->GetServiceID(),
(const char*)service->GetDevice()->GetFriendlyName());
res = NPT_FAILED(res)?res:NPT_FAILURE;
remove_sub:
// in case it was a renewal look for the subscriber with that service and remove it from the list
if (NPT_SUCCEEDED(NPT_ContainerFind(m_Subscribers,
PLT_EventSubscriberFinderByService(service),
sub))) {
m_Subscribers.Remove(sub);
delete sub;
}
return res;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::InvokeAction
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::InvokeAction(PLT_ActionReference& action,
void* userdata)
{
PLT_Service* service = action->GetActionDesc().GetService();
// create the request
NPT_HttpUrl url(service->GetControlURL(true));
NPT_HttpRequest* request = new NPT_HttpRequest(url, "POST", NPT_HTTP_PROTOCOL_1_1);
// create a memory stream for our request body
NPT_MemoryStreamReference stream(new NPT_MemoryStream);
action->FormatSoapRequest(*stream);
// set the request body
NPT_HttpEntity* entity = NULL;
PLT_HttpHelper::SetBody(*request, (NPT_InputStreamReference)stream, &entity);
entity->SetContentType("text/xml; charset=\"utf-8\"");
NPT_String service_type = service->GetServiceType();
NPT_String action_name = action->GetActionDesc().GetName();
request->GetHeaders().SetHeader("SOAPAction", "\"" + service_type + "#" + action_name + "\"");
// create a task to post the request
PLT_CtrlPointInvokeActionTask* task = new PLT_CtrlPointInvokeActionTask(
request,
this,
action,
userdata);
// queue the request
m_TaskManager.StartTask(task);
return NPT_SUCCESS;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::ProcessActionResponse
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::ProcessActionResponse(NPT_Result res,
NPT_HttpResponse* response,
PLT_ActionReference& action,
void* userdata)
{
NPT_String service_type;
NPT_String str;
NPT_XmlElementNode* xml = NULL;
NPT_String name;
NPT_String soap_action_name;
NPT_XmlElementNode* soap_action_response;
NPT_XmlElementNode* soap_body;
NPT_XmlElementNode* fault;
const NPT_String* attr = NULL;
PLT_ActionDesc& action_desc = action->GetActionDesc();
// reset the error code and desc
action->SetError(0, "");
// check context validity
if (NPT_FAILED(res) || response == NULL) {
goto failure;
}
PLT_LOG_HTTP_MESSAGE(NPT_LOG_LEVEL_FINER, "PLT_CtrlPoint::ProcessActionResponse:", response);
NPT_LOG_FINER("Reading/Parsing Action Response Body...");
if (NPT_FAILED(PLT_HttpHelper::ParseBody(*response, xml))) {
goto failure;
}
NPT_LOG_FINER("Analyzing Action Response Body...");
// read envelope
if (xml->GetTag().Compare("Envelope", true))
goto failure;
// check namespace
if (!xml->GetNamespace() || xml->GetNamespace()->Compare("http://schemas.xmlsoap.org/soap/envelope/"))
goto failure;
// check encoding
attr = xml->GetAttribute("encodingStyle", "http://schemas.xmlsoap.org/soap/envelope/");
if (!attr || attr->Compare("http://schemas.xmlsoap.org/soap/encoding/"))
goto failure;
// read action
soap_body = PLT_XmlHelper::GetChild(xml, "Body");
if (soap_body == NULL)
goto failure;
// check if an error occurred
fault = PLT_XmlHelper::GetChild(soap_body, "Fault");
if (fault != NULL) {
// we have an error
ParseFault(action, fault);
goto failure;
}
if (NPT_FAILED(PLT_XmlHelper::GetChild(soap_body, soap_action_response)))
goto failure;
// verify action name is identical to SOAPACTION header
if (soap_action_response->GetTag().Compare(action_desc.GetName() + "Response", true))
goto failure;
// verify namespace
if (!soap_action_response->GetNamespace() ||
soap_action_response->GetNamespace()->Compare(action_desc.GetService()->GetServiceType()))
goto failure;
// read all the arguments if any
for (NPT_List<NPT_XmlNode*>::Iterator args = soap_action_response->GetChildren().GetFirstItem();
args;
args++) {
NPT_XmlElementNode* child = (*args)->AsElementNode();
if (!child) continue;
action->SetArgumentValue(child->GetTag(), child->GetText()?*child->GetText():"");
if (NPT_FAILED(res)) goto failure;
}
// create a buffer for our response body and call the service
res = action->VerifyArguments(false);
if (NPT_FAILED(res)) goto failure;
goto cleanup;
failure:
// override res with failure if necessary
if (NPT_SUCCEEDED(res)) res = NPT_FAILURE;
// fallthrough
cleanup:
{
NPT_AutoLock lock(m_ListenerList);
m_ListenerList.Apply(PLT_CtrlPointListenerOnActionResponseIterator(res, action, userdata));
}
delete xml;
return res;
}
/*----------------------------------------------------------------------
| PLT_CtrlPoint::ParseFault
+---------------------------------------------------------------------*/
NPT_Result
PLT_CtrlPoint::ParseFault(PLT_ActionReference& action,
NPT_XmlElementNode* fault)
{
NPT_XmlElementNode* detail = fault->GetChild("detail");
if (detail == NULL) return NPT_FAILURE;
NPT_XmlElementNode *upnp_error, *error_code, *error_desc;
upnp_error = detail->GetChild("upnp_error");
// WMP12 Hack
if (upnp_error == NULL) {
upnp_error = detail->GetChild("UPnPError", NPT_XML_ANY_NAMESPACE);
if (upnp_error == NULL) return NPT_FAILURE;
}
error_code = upnp_error->GetChild("errorCode", NPT_XML_ANY_NAMESPACE);
error_desc = upnp_error->GetChild("errorDescription", NPT_XML_ANY_NAMESPACE);
NPT_Int32 code = 501;
NPT_String desc;
if (error_code && error_code->GetText()) {
NPT_String value = *error_code->GetText();
value.ToInteger(code);
}
if (error_desc && error_desc->GetText()) {
desc = *error_desc->GetText();
}
action->SetError(code, desc);
return NPT_SUCCESS;
}
|