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
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* 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, or (at your option)
* any later version.
*
* 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 XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "CurlFile.h"
#include "utils/URIUtils.h"
#include "Util.h"
#include "URL.h"
#include "settings/AdvancedSettings.h"
#include "settings/Settings.h"
#include "File.h"
#include "threads/SystemClock.h"
#include <vector>
#include <climits>
#include <cassert>
#ifdef TARGET_POSIX
#include <errno.h>
#include <inttypes.h>
#include "../linux/XFileUtils.h"
#include "../linux/XTimeUtils.h"
#include "../linux/ConvUtils.h"
#endif
#include "DllLibCurl.h"
#include "ShoutcastFile.h"
#include "SpecialProtocol.h"
#include "utils/CharsetConverter.h"
#include "utils/log.h"
#include "utils/StringUtils.h"
using namespace XFILE;
using namespace XCURL;
#define XMIN(a,b) ((a)<(b)?(a):(b))
#define FITS_INT(a) (((a) <= INT_MAX) && ((a) >= INT_MIN))
curl_proxytype proxyType2CUrlProxyType[] = {
CURLPROXY_HTTP,
CURLPROXY_SOCKS4,
CURLPROXY_SOCKS4A,
CURLPROXY_SOCKS5,
CURLPROXY_SOCKS5_HOSTNAME,
};
// curl calls this routine to debug
extern "C" int debug_callback(CURL_HANDLE *handle, curl_infotype info, char *output, size_t size, void *data)
{
if (info == CURLINFO_DATA_IN || info == CURLINFO_DATA_OUT)
return 0;
if (!g_advancedSettings.CanLogComponent(LOGCURL))
return 0;
std::string strLine;
strLine.append(output, size);
std::vector<std::string> vecLines;
StringUtils::Tokenize(strLine, vecLines, "\r\n");
std::vector<std::string>::const_iterator it = vecLines.begin();
char *infotype;
switch(info)
{
case CURLINFO_TEXT : infotype = (char *) "TEXT: "; break;
case CURLINFO_HEADER_IN : infotype = (char *) "HEADER_IN: "; break;
case CURLINFO_HEADER_OUT : infotype = (char *) "HEADER_OUT: "; break;
case CURLINFO_SSL_DATA_IN : infotype = (char *) "SSL_DATA_IN: "; break;
case CURLINFO_SSL_DATA_OUT : infotype = (char *) "SSL_DATA_OUT: "; break;
case CURLINFO_END : infotype = (char *) "END: "; break;
default : infotype = (char *) ""; break;
}
while (it != vecLines.end())
{
CLog::Log(LOGDEBUG, "Curl::Debug - %s%s", infotype, (*it).c_str());
it++;
}
return 0;
}
/* curl calls this routine to get more data */
extern "C" size_t write_callback(char *buffer,
size_t size,
size_t nitems,
void *userp)
{
if(userp == NULL) return 0;
CCurlFile::CReadState *state = (CCurlFile::CReadState *)userp;
return state->WriteCallback(buffer, size, nitems);
}
extern "C" size_t read_callback(char *buffer,
size_t size,
size_t nitems,
void *userp)
{
if(userp == NULL) return 0;
CCurlFile::CReadState *state = (CCurlFile::CReadState *)userp;
return state->ReadCallback(buffer, size, nitems);
}
extern "C" size_t header_callback(void *ptr, size_t size, size_t nmemb, void *stream)
{
CCurlFile::CReadState *state = (CCurlFile::CReadState *)stream;
return state->HeaderCallback(ptr, size, nmemb);
}
/* used only by CCurlFile::Stat to bail out of unwanted transfers */
extern "C" int transfer_abort_callback(void *clientp,
curl_off_t dltotal,
curl_off_t dlnow,
curl_off_t ultotal,
curl_off_t ulnow)
{
if(dlnow > 0)
return 1;
else
return 0;
}
/* fix for silly behavior of realloc */
static inline void* realloc_simple(void *ptr, size_t size)
{
void *ptr2 = realloc(ptr, size);
if(ptr && !ptr2 && size > 0)
{
free(ptr);
return NULL;
}
else
return ptr2;
}
size_t CCurlFile::CReadState::HeaderCallback(void *ptr, size_t size, size_t nmemb)
{
std::string inString;
// libcurl doc says that this info is not always \0 terminated
const char* strBuf = (const char*)ptr;
const size_t iSize = size * nmemb;
if (strBuf[iSize - 1] == 0)
inString.assign(strBuf, iSize - 1); // skip last char if it's zero
else
inString.append(strBuf, iSize);
m_httpheader.Parse(inString);
return iSize;
}
size_t CCurlFile::CReadState::ReadCallback(char *buffer, size_t size, size_t nitems)
{
if (m_fileSize == 0)
return 0;
if (m_filePos >= m_fileSize)
{
m_isPaused = true;
return CURL_READFUNC_PAUSE;
}
int64_t retSize = XMIN(m_fileSize - m_filePos, int64_t(nitems * size));
memcpy(buffer, m_readBuffer + m_filePos, retSize);
m_filePos += retSize;
return retSize;
}
size_t CCurlFile::CReadState::WriteCallback(char *buffer, size_t size, size_t nitems)
{
unsigned int amount = size * nitems;
// CLog::Log(LOGDEBUG, "CCurlFile::WriteCallback (%p) with %i bytes, readsize = %i, writesize = %i", this, amount, m_buffer.getMaxReadSize(), m_buffer.getMaxWriteSize() - m_overflowSize);
if (m_overflowSize)
{
// we have our overflow buffer - first get rid of as much as we can
unsigned int maxWriteable = XMIN((unsigned int)m_buffer.getMaxWriteSize(), m_overflowSize);
if (maxWriteable)
{
if (!m_buffer.WriteData(m_overflowBuffer, maxWriteable))
{
CLog::Log(LOGERROR, "CCurlFile::WriteCallback - Unable to write to buffer - what's up?");
return 0;
}
if (maxWriteable < m_overflowSize)
{
// still have some more - copy it down
memmove(m_overflowBuffer, m_overflowBuffer + maxWriteable, m_overflowSize - maxWriteable);
}
m_overflowSize -= maxWriteable;
// Shrink memory:
m_overflowBuffer = (char*)realloc_simple(m_overflowBuffer, m_overflowSize);
}
}
// ok, now copy the data into our ring buffer
unsigned int maxWriteable = XMIN((unsigned int)m_buffer.getMaxWriteSize(), amount);
if (maxWriteable)
{
if (!m_buffer.WriteData(buffer, maxWriteable))
{
CLog::Log(LOGERROR, "CCurlFile::WriteCallback - Unable to write to buffer with %i bytes - what's up?", maxWriteable);
return 0;
}
else
{
amount -= maxWriteable;
buffer += maxWriteable;
}
}
if (amount)
{
// CLog::Log(LOGDEBUG, "CCurlFile::WriteCallback(%p) not enough free space for %i bytes", (void*)this, amount);
// TODO: Limit max. amount of the overflowbuffer
m_overflowBuffer = (char*)realloc_simple(m_overflowBuffer, amount + m_overflowSize);
if(m_overflowBuffer == NULL)
{
CLog::Log(LOGWARNING, "CCurlFile::WriteCallback - Failed to grow overflow buffer from %i bytes to %i bytes", m_overflowSize, amount + m_overflowSize);
return 0;
}
memcpy(m_overflowBuffer + m_overflowSize, buffer, amount);
m_overflowSize += amount;
}
return size * nitems;
}
CCurlFile::CReadState::CReadState()
{
m_easyHandle = NULL;
m_multiHandle = NULL;
m_overflowBuffer = NULL;
m_overflowSize = 0;
m_stillRunning = 0;
m_filePos = 0;
m_fileSize = 0;
m_bufferSize = 0;
m_cancelled = false;
m_bFirstLoop = true;
m_sendRange = true;
m_readBuffer = 0;
m_isPaused = false;
m_curlHeaderList = NULL;
m_curlAliasList = NULL;
}
CCurlFile::CReadState::~CReadState()
{
Disconnect();
if(m_easyHandle)
g_curlInterface.easy_release(&m_easyHandle, &m_multiHandle);
}
bool CCurlFile::CReadState::Seek(int64_t pos)
{
if(pos == m_filePos)
return true;
if(FITS_INT(pos - m_filePos) && m_buffer.SkipBytes((int)(pos - m_filePos)))
{
m_filePos = pos;
return true;
}
if(pos > m_filePos && pos < m_filePos + m_bufferSize)
{
int len = m_buffer.getMaxReadSize();
m_filePos += len;
m_buffer.SkipBytes(len);
if(!FillBuffer(m_bufferSize))
{
if(!m_buffer.SkipBytes(-len))
CLog::Log(LOGERROR, "%s - Failed to restore position after failed fill", __FUNCTION__);
else
m_filePos -= len;
return false;
}
if(!FITS_INT(pos - m_filePos) || !m_buffer.SkipBytes((int)(pos - m_filePos)))
{
CLog::Log(LOGERROR, "%s - Failed to skip to position after having filled buffer", __FUNCTION__);
if(!m_buffer.SkipBytes(-len))
CLog::Log(LOGERROR, "%s - Failed to restore position after failed seek", __FUNCTION__);
else
m_filePos -= len;
return false;
}
m_filePos = pos;
return true;
}
return false;
}
void CCurlFile::CReadState::SetResume(void)
{
/*
* Explicitly set RANGE header when filepos=0 as some http servers require us to always send the range
* request header. If we don't the server may provide different content causing seeking to fail.
* This only affects HTTP-like items, for FTP it's a null operation.
*/
if (m_sendRange && m_filePos == 0)
g_curlInterface.easy_setopt(m_easyHandle, CURLOPT_RANGE, "0-");
else
{
g_curlInterface.easy_setopt(m_easyHandle, CURLOPT_RANGE, NULL);
m_sendRange = false;
}
g_curlInterface.easy_setopt(m_easyHandle, CURLOPT_RESUME_FROM_LARGE, m_filePos);
}
long CCurlFile::CReadState::Connect(unsigned int size)
{
if (m_filePos != 0)
CLog::Log(LOGDEBUG,"CurlFile::CReadState::Connect - Resume from position %" PRId64, m_filePos);
SetResume();
g_curlInterface.multi_add_handle(m_multiHandle, m_easyHandle);
m_bufferSize = size;
m_buffer.Destroy();
m_buffer.Create(size * 3);
m_httpheader.Clear();
// read some data in to try and obtain the length
// maybe there's a better way to get this info??
m_stillRunning = 1;
// (Try to) fill buffer
if (!FillBuffer(1))
{
// Check response code
long response;
if (CURLE_OK == g_curlInterface.easy_getinfo(m_easyHandle, CURLINFO_RESPONSE_CODE, &response))
return response;
else
return -1;
}
double length;
if (CURLE_OK == g_curlInterface.easy_getinfo(m_easyHandle, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &length))
{
if (length < 0)
length = 0.0;
m_fileSize = m_filePos + (int64_t)length;
}
long response;
if (CURLE_OK == g_curlInterface.easy_getinfo(m_easyHandle, CURLINFO_RESPONSE_CODE, &response))
return response;
return -1;
}
void CCurlFile::CReadState::Disconnect()
{
if(m_multiHandle && m_easyHandle)
g_curlInterface.multi_remove_handle(m_multiHandle, m_easyHandle);
m_buffer.Clear();
free(m_overflowBuffer);
m_overflowBuffer = NULL;
m_overflowSize = 0;
m_filePos = 0;
m_fileSize = 0;
m_bufferSize = 0;
m_readBuffer = 0;
/* cleanup */
if( m_curlHeaderList )
g_curlInterface.slist_free_all(m_curlHeaderList);
m_curlHeaderList = NULL;
if( m_curlAliasList )
g_curlInterface.slist_free_all(m_curlAliasList);
m_curlAliasList = NULL;
}
CCurlFile::~CCurlFile()
{
Close();
delete m_state;
delete m_oldState;
g_curlInterface.Unload();
}
CCurlFile::CCurlFile()
: m_writeOffset(0)
, m_overflowBuffer(NULL)
, m_overflowSize(0)
{
g_curlInterface.Load(); // loads the curl dll and resolves exports etc.
m_opened = false;
m_forWrite = false;
m_inError = false;
m_multisession = true;
m_seekable = true;
m_useOldHttpVersion = false;
m_connecttimeout = 0;
m_lowspeedtime = 0;
m_ftpauth = "";
m_ftpport = "";
m_ftppasvip = false;
m_bufferSize = 32768;
m_postdata = "";
m_postdataset = false;
m_username = "";
m_password = "";
m_httpauth = "";
m_cipherlist = "";
m_proxytype = PROXY_HTTP;
m_state = new CReadState();
m_oldState = NULL;
m_skipshout = false;
m_httpresponse = -1;
m_acceptCharset = "UTF-8,*;q=0.8"; /* prefer UTF-8 if available */
}
//Has to be called before Open()
void CCurlFile::SetBufferSize(unsigned int size)
{
m_bufferSize = size;
}
void CCurlFile::Close()
{
if (m_opened && m_forWrite && !m_inError)
Write(NULL, 0);
m_state->Disconnect();
delete m_oldState;
m_oldState = NULL;
m_url.clear();
m_referer.clear();
m_cookie.clear();
m_opened = false;
m_forWrite = false;
m_inError = false;
}
void CCurlFile::SetCommonOptions(CReadState* state)
{
CURL_HANDLE* h = state->m_easyHandle;
g_curlInterface.easy_reset(h);
g_curlInterface.easy_setopt(h, CURLOPT_DEBUGFUNCTION, debug_callback);
if( g_advancedSettings.m_logLevel >= LOG_LEVEL_DEBUG )
g_curlInterface.easy_setopt(h, CURLOPT_VERBOSE, TRUE);
else
g_curlInterface.easy_setopt(h, CURLOPT_VERBOSE, FALSE);
g_curlInterface.easy_setopt(h, CURLOPT_WRITEDATA, state);
g_curlInterface.easy_setopt(h, CURLOPT_WRITEFUNCTION, write_callback);
g_curlInterface.easy_setopt(h, CURLOPT_READDATA, state);
g_curlInterface.easy_setopt(h, CURLOPT_READFUNCTION, read_callback);
// set username and password for current handle
if (m_username.length() > 0 && m_password.length() > 0)
{
std::string userpwd = m_username + ':' + m_password;
g_curlInterface.easy_setopt(h, CURLOPT_USERPWD, userpwd.c_str());
}
// make sure headers are seperated from the data stream
g_curlInterface.easy_setopt(h, CURLOPT_WRITEHEADER, state);
g_curlInterface.easy_setopt(h, CURLOPT_HEADERFUNCTION, header_callback);
g_curlInterface.easy_setopt(h, CURLOPT_HEADER, FALSE);
g_curlInterface.easy_setopt(h, CURLOPT_FTP_USE_EPSV, 0); // turn off epsv
// Allow us to follow two redirects
g_curlInterface.easy_setopt(h, CURLOPT_FOLLOWLOCATION, TRUE);
g_curlInterface.easy_setopt(h, CURLOPT_MAXREDIRS, 5);
// Enable cookie engine for current handle to re-use them in future requests
std::string strCookieFile;
std::string strTempPath = CSpecialProtocol::TranslatePath(g_advancedSettings.m_cachePath);
strCookieFile = URIUtils::AddFileToFolder(strTempPath, "cookies.dat");
g_curlInterface.easy_setopt(h, CURLOPT_COOKIEFILE, strCookieFile.c_str());
g_curlInterface.easy_setopt(h, CURLOPT_COOKIEJAR, strCookieFile.c_str());
// Set custom cookie if requested
if (!m_cookie.empty())
g_curlInterface.easy_setopt(h, CURLOPT_COOKIE, m_cookie.c_str());
g_curlInterface.easy_setopt(h, CURLOPT_COOKIELIST, "FLUSH");
// When using multiple threads you should set the CURLOPT_NOSIGNAL option to
// TRUE for all handles. Everything will work fine except that timeouts are not
// honored during the DNS lookup - which you can work around by building libcurl
// with c-ares support. c-ares is a library that provides asynchronous name
// resolves. Unfortunately, c-ares does not yet support IPv6.
g_curlInterface.easy_setopt(h, CURLOPT_NOSIGNAL, TRUE);
// not interested in failed requests
g_curlInterface.easy_setopt(h, CURLOPT_FAILONERROR, 1);
// enable support for icecast / shoutcast streams
if ( NULL == state->m_curlAliasList )
// m_curlAliasList is used only by this one place, but SetCommonOptions can
// be called multiple times, only append to list if it's empty.
state->m_curlAliasList = g_curlInterface.slist_append(state->m_curlAliasList, "ICY 200 OK");
g_curlInterface.easy_setopt(h, CURLOPT_HTTP200ALIASES, state->m_curlAliasList);
// never verify peer, we don't have any certificates to do this
g_curlInterface.easy_setopt(h, CURLOPT_SSL_VERIFYPEER, 0);
g_curlInterface.easy_setopt(h, CURLOPT_SSL_VERIFYHOST, 0);
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_URL, m_url.c_str());
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_TRANSFERTEXT, FALSE);
// setup POST data if it is set (and it may be empty)
if (m_postdataset)
{
g_curlInterface.easy_setopt(h, CURLOPT_POST, 1 );
g_curlInterface.easy_setopt(h, CURLOPT_POSTFIELDSIZE, m_postdata.length());
g_curlInterface.easy_setopt(h, CURLOPT_POSTFIELDS, m_postdata.c_str());
}
// setup Referer header if needed
if (!m_referer.empty())
g_curlInterface.easy_setopt(h, CURLOPT_REFERER, m_referer.c_str());
else
{
g_curlInterface.easy_setopt(h, CURLOPT_REFERER, NULL);
g_curlInterface.easy_setopt(h, CURLOPT_AUTOREFERER, TRUE);
}
// setup any requested authentication
if( !m_ftpauth.empty() )
{
g_curlInterface.easy_setopt(h, CURLOPT_FTP_SSL, CURLFTPSSL_TRY);
if( m_ftpauth == "any" )
g_curlInterface.easy_setopt(h, CURLOPT_FTPSSLAUTH, CURLFTPAUTH_DEFAULT);
else if( m_ftpauth == "ssl" )
g_curlInterface.easy_setopt(h, CURLOPT_FTPSSLAUTH, CURLFTPAUTH_SSL);
else if( m_ftpauth == "tls" )
g_curlInterface.easy_setopt(h, CURLOPT_FTPSSLAUTH, CURLFTPAUTH_TLS);
}
// setup requested http authentication method
if(!m_httpauth.empty())
{
if( m_httpauth == "any" )
g_curlInterface.easy_setopt(h, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
else if( m_httpauth == "anysafe" )
g_curlInterface.easy_setopt(h, CURLOPT_HTTPAUTH, CURLAUTH_ANYSAFE);
else if( m_httpauth == "digest" )
g_curlInterface.easy_setopt(h, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
else if( m_httpauth == "ntlm" )
g_curlInterface.easy_setopt(h, CURLOPT_HTTPAUTH, CURLAUTH_NTLM);
}
// allow passive mode for ftp
if( m_ftpport.length() > 0 )
g_curlInterface.easy_setopt(h, CURLOPT_FTPPORT, m_ftpport.c_str());
else
g_curlInterface.easy_setopt(h, CURLOPT_FTPPORT, NULL);
// allow curl to not use the ip address in the returned pasv response
if( m_ftppasvip )
g_curlInterface.easy_setopt(h, CURLOPT_FTP_SKIP_PASV_IP, 0);
else
g_curlInterface.easy_setopt(h, CURLOPT_FTP_SKIP_PASV_IP, 1);
// setup Content-Encoding if requested
if( m_contentencoding.length() > 0 )
g_curlInterface.easy_setopt(h, CURLOPT_ENCODING, m_contentencoding.c_str());
if (!m_useOldHttpVersion && !m_acceptCharset.empty())
SetRequestHeader("Accept-Charset", m_acceptCharset);
if (m_userAgent.length() > 0)
g_curlInterface.easy_setopt(h, CURLOPT_USERAGENT, m_userAgent.c_str());
else /* set some default agent as shoutcast doesn't return proper stuff otherwise */
g_curlInterface.easy_setopt(h, CURLOPT_USERAGENT, g_advancedSettings.m_userAgent.c_str());
if (m_useOldHttpVersion)
g_curlInterface.easy_setopt(h, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
if (g_advancedSettings.m_curlDisableIPV6)
g_curlInterface.easy_setopt(h, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
if (m_proxy.length() > 0)
{
g_curlInterface.easy_setopt(h, CURLOPT_PROXY, m_proxy.c_str());
g_curlInterface.easy_setopt(h, CURLOPT_PROXYTYPE, proxyType2CUrlProxyType[m_proxytype]);
if (m_proxyuserpass.length() > 0)
g_curlInterface.easy_setopt(h, CURLOPT_PROXYUSERPWD, m_proxyuserpass.c_str());
}
if (m_customrequest.length() > 0)
g_curlInterface.easy_setopt(h, CURLOPT_CUSTOMREQUEST, m_customrequest.c_str());
if (m_connecttimeout == 0)
m_connecttimeout = g_advancedSettings.m_curlconnecttimeout;
// set our timeouts, we abort connection after m_timeout, and reads after no data for m_timeout seconds
g_curlInterface.easy_setopt(h, CURLOPT_CONNECTTIMEOUT, m_connecttimeout);
// We abort in case we transfer less than 1byte/second
g_curlInterface.easy_setopt(h, CURLOPT_LOW_SPEED_LIMIT, 1);
if (m_lowspeedtime == 0)
m_lowspeedtime = g_advancedSettings.m_curllowspeedtime;
// Set the lowspeed time very low as it seems Curl takes much longer to detect a lowspeed condition
g_curlInterface.easy_setopt(h, CURLOPT_LOW_SPEED_TIME, m_lowspeedtime);
if (m_skipshout)
// For shoutcast file, content-length should not be set, and in libcurl there is a bug, if the
// cast file was 302 redirected then getinfo of CURLINFO_CONTENT_LENGTH_DOWNLOAD will return
// the 302 response's body length, which cause the next read request failed, so we ignore
// content-length for shoutcast file to workaround this.
g_curlInterface.easy_setopt(h, CURLOPT_IGNORE_CONTENT_LENGTH, 1);
// Setup allowed TLS/SSL ciphers. New versions of cURL may deprecate things that are still in use.
if (!m_cipherlist.empty())
g_curlInterface.easy_setopt(h, CURLOPT_SSL_CIPHER_LIST, m_cipherlist.c_str());
}
void CCurlFile::SetRequestHeaders(CReadState* state)
{
if(state->m_curlHeaderList)
{
g_curlInterface.slist_free_all(state->m_curlHeaderList);
state->m_curlHeaderList = NULL;
}
MAPHTTPHEADERS::iterator it;
for(it = m_requestheaders.begin(); it != m_requestheaders.end(); it++)
{
std::string buffer = it->first + ": " + it->second;
state->m_curlHeaderList = g_curlInterface.slist_append(state->m_curlHeaderList, buffer.c_str());
}
// add user defined headers
if (state->m_easyHandle)
g_curlInterface.easy_setopt(state->m_easyHandle, CURLOPT_HTTPHEADER, state->m_curlHeaderList);
}
void CCurlFile::SetCorrectHeaders(CReadState* state)
{
CHttpHeader& h = state->m_httpheader;
/* workaround for shoutcast server wich doesn't set content type on standard mp3 */
if( h.GetMimeType().empty() )
{
if( !h.GetValue("icy-notice1").empty()
|| !h.GetValue("icy-name").empty()
|| !h.GetValue("icy-br").empty() )
h.AddParam("Content-Type", "audio/mpeg");
}
/* hack for google video */
if (StringUtils::EqualsNoCase(h.GetMimeType(),"text/html")
&& !h.GetValue("Content-Disposition").empty() )
{
std::string strValue = h.GetValue("Content-Disposition");
if (strValue.find("filename=") != std::string::npos &&
strValue.find(".flv") != std::string::npos)
h.AddParam("Content-Type", "video/flv");
}
}
void CCurlFile::ParseAndCorrectUrl(CURL &url2)
{
std::string strProtocol = url2.GetTranslatedProtocol();
url2.SetProtocol(strProtocol);
if( url2.IsProtocol("ftp")
|| url2.IsProtocol("ftps") )
{
// we was using url optons for urls, keep the old code work and warning
if (!url2.GetOptions().empty())
{
CLog::Log(LOGWARNING, "%s: ftp url option is deprecated, please switch to use protocol option (change '?' to '|'), url: [%s]", __FUNCTION__, url2.GetRedacted().c_str());
url2.SetProtocolOptions(url2.GetOptions().substr(1));
/* ftp has no options */
url2.SetOptions("");
}
/* this is uggly, depending on from where */
/* we get the link it may or may not be */
/* url encoded. if handed from ftpdirectory */
/* it won't be so let's handle that case */
std::string filename(url2.GetFileName());
std::vector<std::string> array;
// if server sent us the filename in non-utf8, we need send back with same encoding.
if (url2.GetProtocolOption("utf8") == "0")
g_charsetConverter.utf8ToStringCharset(filename);
/* TODO: create a tokenizer that doesn't skip empty's */
StringUtils::Tokenize(filename, array, "/");
filename.clear();
for(std::vector<std::string>::iterator it = array.begin(); it != array.end(); it++)
{
if(it != array.begin())
filename += "/";
filename += CURL::Encode(*it);
}
/* make sure we keep slashes */
if(StringUtils::EndsWith(url2.GetFileName(), "/"))
filename += "/";
url2.SetFileName(filename);
m_ftpauth.clear();
if (url2.HasProtocolOption("auth"))
{
m_ftpauth = url2.GetProtocolOption("auth");
StringUtils::ToLower(m_ftpauth);
if(m_ftpauth.empty())
m_ftpauth = "any";
}
m_ftpport = "";
if (url2.HasProtocolOption("active"))
{
m_ftpport = url2.GetProtocolOption("active");
if(m_ftpport.empty())
m_ftpport = "-";
}
m_ftppasvip = url2.HasProtocolOption("pasvip") && url2.GetProtocolOption("pasvip") != "0";
}
else if( url2.IsProtocol("http")
|| url2.IsProtocol("https"))
{
if (CSettings::GetInstance().GetBool(CSettings::SETTING_NETWORK_USEHTTPPROXY)
&& !CSettings::GetInstance().GetString(CSettings::SETTING_NETWORK_HTTPPROXYSERVER).empty()
&& CSettings::GetInstance().GetInt(CSettings::SETTING_NETWORK_HTTPPROXYPORT) > 0
&& m_proxy.empty())
{
m_proxy = CSettings::GetInstance().GetString(CSettings::SETTING_NETWORK_HTTPPROXYSERVER);
m_proxy += StringUtils::Format(":%d", CSettings::GetInstance().GetInt(CSettings::SETTING_NETWORK_HTTPPROXYPORT));
if (CSettings::GetInstance().GetString(CSettings::SETTING_NETWORK_HTTPPROXYUSERNAME).length() > 0 && m_proxyuserpass.empty())
{
m_proxyuserpass = CSettings::GetInstance().GetString(CSettings::SETTING_NETWORK_HTTPPROXYUSERNAME);
m_proxyuserpass += ":" + CSettings::GetInstance().GetString(CSettings::SETTING_NETWORK_HTTPPROXYPASSWORD);
}
m_proxytype = (ProxyType)CSettings::GetInstance().GetInt(CSettings::SETTING_NETWORK_HTTPPROXYTYPE);
CLog::Log(LOGDEBUG, "Using proxy %s, type %d", m_proxy.c_str(), proxyType2CUrlProxyType[m_proxytype]);
}
// get username and password
m_username = url2.GetUserName();
m_password = url2.GetPassWord();
// handle any protocol options
std::map<std::string, std::string> options;
url2.GetProtocolOptions(options);
if (options.size() > 0)
{
// set xbmc headers
for (std::map<std::string,std::string>::const_iterator it = options.begin(); it != options.end(); ++it)
{
std::string name = it->first; StringUtils::ToLower(name);
const std::string &value = it->second;
if (name == "auth")
{
m_httpauth = value;
StringUtils::ToLower(m_httpauth);
if(m_httpauth.empty())
m_httpauth = "any";
}
else if (name == "referer")
SetReferer(value);
else if (name == "user-agent")
SetUserAgent(value);
else if (name == "cookie")
SetCookie(value);
else if (name == "encoding")
SetContentEncoding(value);
else if (name == "noshout" && value == "true")
m_skipshout = true;
else if (name == "seekable" && value == "0")
m_seekable = false;
else if (name == "accept-charset")
SetAcceptCharset(value);
else if (name == "httpproxy")
SetStreamProxy(value, PROXY_HTTP);
else if (name == "sslcipherlist")
m_cipherlist = value;
else if (name == "connection-timeout")
m_connecttimeout = strtol(value.c_str(), NULL, 10);
else
SetRequestHeader(it->first, value);
}
}
}
// Unset the protocol options to have an url without protocol options
url2.SetProtocolOptions("");
if (m_username.length() > 0 && m_password.length() > 0)
m_url = url2.GetWithoutUserDetails();
else
m_url = url2.Get();
}
void CCurlFile::SetStreamProxy(const std::string &proxy, ProxyType type)
{
CURL url(proxy);
m_proxy = url.GetWithoutUserDetails();
m_proxyuserpass = url.GetUserName();
if (!url.GetPassWord().empty())
m_proxyuserpass += ":" + url.GetPassWord();
m_proxytype = type;
CLog::Log(LOGDEBUG, "Overriding proxy from URL parameter: %s, type %d", m_proxy.c_str(), proxyType2CUrlProxyType[m_proxytype]);
}
bool CCurlFile::Post(const std::string& strURL, const std::string& strPostData, std::string& strHTML)
{
m_postdata = strPostData;
m_postdataset = true;
return Service(strURL, strHTML);
}
bool CCurlFile::Get(const std::string& strURL, std::string& strHTML)
{
m_postdata = "";
m_postdataset = false;
return Service(strURL, strHTML);
}
bool CCurlFile::Service(const std::string& strURL, std::string& strHTML)
{
const CURL pathToUrl(strURL);
if (Open(pathToUrl))
{
if (ReadData(strHTML))
{
Close();
return true;
}
}
Close();
return false;
}
bool CCurlFile::ReadData(std::string& strHTML)
{
int size_read = 0;
int data_size = 0;
strHTML = "";
char buffer[16384];
while( (size_read = Read(buffer, sizeof(buffer)-1) ) > 0 )
{
buffer[size_read] = 0;
strHTML.append(buffer, size_read);
data_size += size_read;
}
if (m_state->m_cancelled)
return false;
return true;
}
bool CCurlFile::Download(const std::string& strURL, const std::string& strFileName, LPDWORD pdwSize)
{
CLog::Log(LOGINFO, "CCurlFile::Download - %s->%s", strURL.c_str(), strFileName.c_str());
std::string strData;
if (!Get(strURL, strData))
return false;
XFILE::CFile file;
if (!file.OpenForWrite(strFileName, true))
{
CLog::Log(LOGERROR, "CCurlFile::Download - Unable to open file %s: %u",
strFileName.c_str(), GetLastError());
return false;
}
ssize_t written = 0;
if (strData.size() > 0)
written = file.Write(strData.c_str(), strData.size());
if (pdwSize != NULL)
*pdwSize = written > 0 ? written : 0;
return written == static_cast<ssize_t>(strData.size());
}
// Detect whether we are "online" or not! Very simple and dirty!
bool CCurlFile::IsInternet()
{
CURL url("http://www.msftncsi.com/ncsi.txt");
bool found = Exists(url);
if (!found)
{
// fallback
Close();
url.Parse("http://www.w3.org/");
found = Exists(url);
}
Close();
return found;
}
void CCurlFile::Cancel()
{
m_state->m_cancelled = true;
while (m_opened)
Sleep(1);
}
void CCurlFile::Reset()
{
m_state->m_cancelled = false;
}
bool CCurlFile::Open(const CURL& url)
{
if (!g_curlInterface.IsLoaded())
{
CLog::Log(LOGERROR, "CurlFile::Open: curl interface not loaded");
return false;
}
m_opened = true;
m_seekable = true;
CURL url2(url);
ParseAndCorrectUrl(url2);
std::string redactPath = CURL::GetRedacted(m_url);
CLog::Log(LOGDEBUG, "CurlFile::Open(%p) %s", (void*)this, redactPath.c_str());
assert(!(!m_state->m_easyHandle ^ !m_state->m_multiHandle));
if( m_state->m_easyHandle == NULL )
g_curlInterface.easy_aquire(url2.GetProtocol().c_str(),
url2.GetHostName().c_str(),
&m_state->m_easyHandle,
&m_state->m_multiHandle);
// setup common curl options
SetCommonOptions(m_state);
SetRequestHeaders(m_state);
m_state->m_sendRange = m_seekable;
m_httpresponse = m_state->Connect(m_bufferSize);
if (m_httpresponse <= 0 || m_httpresponse >= 400)
{
CLog::Log(LOGERROR, "CCurlFile::Open failed with code %li for %s", m_httpresponse, url.GetRedacted().c_str());
return false;
}
SetCorrectHeaders(m_state);
// since we can't know the stream size up front if we're gzipped/deflated
// flag the stream with an unknown file size rather than the compressed
// file size.
if (m_contentencoding.size() > 0)
m_state->m_fileSize = 0;
// check if this stream is a shoutcast stream. sometimes checking the protocol line is not enough so examine other headers as well.
// shoutcast streams should be handled by FileShoutcast.
if ((m_state->m_httpheader.GetProtoLine().substr(0, 3) == "ICY" || !m_state->m_httpheader.GetValue("icy-notice1").empty()
|| !m_state->m_httpheader.GetValue("icy-name").empty()
|| !m_state->m_httpheader.GetValue("icy-br").empty()) && !m_skipshout)
{
CLog::Log(LOGDEBUG,"CCurlFile::Open - File <%s> is a shoutcast stream. Re-opening", redactPath.c_str());
throw new CRedirectException(new CShoutcastFile);
}
m_multisession = false;
if(url2.IsProtocol("http") || url2.IsProtocol("https"))
{
m_multisession = true;
if(m_state->m_httpheader.GetValue("Server").find("Portable SDK for UPnP devices") != std::string::npos)
{
CLog::Log(LOGWARNING, "CCurlFile::Open - Disabling multi session due to broken libupnp server");
m_multisession = false;
}
}
if(StringUtils::EqualsNoCase(m_state->m_httpheader.GetValue("Transfer-Encoding"), "chunked"))
m_state->m_fileSize = 0;
if(m_state->m_fileSize <= 0)
m_seekable = false;
if (m_seekable)
{
if(url2.IsProtocol("http")
|| url2.IsProtocol("https"))
{
// if server says explicitly it can't seek, respect that
if(StringUtils::EqualsNoCase(m_state->m_httpheader.GetValue("Accept-Ranges"),"none"))
m_seekable = false;
}
}
char* efurl;
if (CURLE_OK == g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_EFFECTIVE_URL,&efurl) && efurl)
{
if (m_url != efurl)
{
std::string redactEfpath = CURL::GetRedacted(efurl);
CLog::Log(LOGDEBUG,"CCurlFile::Open - effective URL: <%s>", redactEfpath.c_str());
}
m_url = efurl;
}
return true;
}
bool CCurlFile::OpenForWrite(const CURL& url, bool bOverWrite)
{
if(m_opened)
return false;
if (Exists(url) && !bOverWrite)
return false;
CURL url2(url);
ParseAndCorrectUrl(url2);
CLog::Log(LOGDEBUG, "CCurlFile::OpenForWrite(%p) %s", (void*)this, CURL::GetRedacted(m_url).c_str());
assert(m_state->m_easyHandle == NULL);
g_curlInterface.easy_aquire(url2.GetProtocol().c_str(),
url2.GetHostName().c_str(),
&m_state->m_easyHandle,
&m_state->m_multiHandle);
// setup common curl options
SetCommonOptions(m_state);
SetRequestHeaders(m_state);
char* efurl;
if (CURLE_OK == g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_EFFECTIVE_URL,&efurl) && efurl)
m_url = efurl;
m_opened = true;
m_forWrite = true;
m_inError = false;
m_writeOffset = 0;
assert(m_state->m_multiHandle);
SetCommonOptions(m_state);
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_UPLOAD, 1);
g_curlInterface.multi_add_handle(m_state->m_multiHandle, m_state->m_easyHandle);
m_state->SetReadBuffer(NULL, 0);
return true;
}
ssize_t CCurlFile::Write(const void* lpBuf, size_t uiBufSize)
{
if (!(m_opened && m_forWrite) || m_inError)
return -1;
assert(m_state->m_multiHandle);
m_state->SetReadBuffer(lpBuf, uiBufSize);
m_state->m_isPaused = false;
g_curlInterface.easy_pause(m_state->m_easyHandle, CURLPAUSE_CONT);
CURLMcode result = CURLM_OK;
m_stillRunning = 1;
while (m_stillRunning && !m_state->m_isPaused)
{
while ((result = g_curlInterface.multi_perform(m_state->m_multiHandle, &m_stillRunning)) == CURLM_CALL_MULTI_PERFORM);
if (!m_stillRunning)
break;
if (result != CURLM_OK)
{
long code;
if(g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_RESPONSE_CODE, &code) == CURLE_OK )
CLog::Log(LOGERROR, "%s - Unable to write curl resource (%s) - %ld", __FUNCTION__, CURL::GetRedacted(m_url).c_str(), code);
m_inError = true;
return -1;
}
}
m_writeOffset += m_state->m_filePos;
return m_state->m_filePos;
}
bool CCurlFile::CReadState::ReadString(char *szLine, int iLineLength)
{
unsigned int want = (unsigned int)iLineLength;
if((m_fileSize == 0 || m_filePos < m_fileSize) && !FillBuffer(want))
return false;
// ensure only available data is considered
want = XMIN((unsigned int)m_buffer.getMaxReadSize(), want);
/* check if we finished prematurely */
if (!m_stillRunning && (m_fileSize == 0 || m_filePos != m_fileSize) && !want)
{
if (m_fileSize != 0)
CLog::Log(LOGWARNING, "%s - Transfer ended before entire file was retrieved pos %" PRId64", size %" PRId64, __FUNCTION__, m_filePos, m_fileSize);
return false;
}
char* pLine = szLine;
do
{
if (!m_buffer.ReadData(pLine, 1))
break;
pLine++;
} while (((pLine - 1)[0] != '\n') && ((unsigned int)(pLine - szLine) < want));
pLine[0] = 0;
m_filePos += (pLine - szLine);
return (bool)((pLine - szLine) > 0);
}
bool CCurlFile::Exists(const CURL& url)
{
// if file is already running, get info from it
if( m_opened )
{
CLog::Log(LOGWARNING, "CCurlFile::Exists - Exist called on open file %s", url.GetRedacted().c_str());
return true;
}
CURL url2(url);
ParseAndCorrectUrl(url2);
assert(m_state->m_easyHandle == NULL);
g_curlInterface.easy_aquire(url2.GetProtocol().c_str(),
url2.GetHostName().c_str(),
&m_state->m_easyHandle, NULL);
SetCommonOptions(m_state);
SetRequestHeaders(m_state);
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_TIMEOUT, 5);
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_NOBODY, 1);
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_WRITEDATA, NULL); /* will cause write failure*/
if(url2.IsProtocol("ftp") || url2.IsProtocol("ftps"))
{
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FILETIME, 1);
// nocwd is less standard, will return empty list for non-existed remote dir on some ftp server, avoid it.
if (StringUtils::EndsWith(url2.GetFileName(), "/"))
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_SINGLECWD);
else
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_NOCWD);
}
CURLcode result = g_curlInterface.easy_perform(m_state->m_easyHandle);
g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
if (result == CURLE_WRITE_ERROR || result == CURLE_OK)
return true;
if (result == CURLE_HTTP_RETURNED_ERROR)
{
long code;
if(g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_RESPONSE_CODE, &code) == CURLE_OK && code != 404 )
CLog::Log(LOGERROR, "CCurlFile::Exists - Failed: HTTP returned error %ld for %s", code, url.GetRedacted().c_str());
}
else if (result != CURLE_REMOTE_FILE_NOT_FOUND && result != CURLE_FTP_COULDNT_RETR_FILE)
{
CLog::Log(LOGERROR, "CCurlFile::Exists - Failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
}
errno = ENOENT;
return false;
}
int64_t CCurlFile::Seek(int64_t iFilePosition, int iWhence)
{
int64_t nextPos = m_state->m_filePos;
if(!m_seekable)
return -1;
switch(iWhence)
{
case SEEK_SET:
nextPos = iFilePosition;
break;
case SEEK_CUR:
nextPos += iFilePosition;
break;
case SEEK_END:
if (m_state->m_fileSize)
nextPos = m_state->m_fileSize + iFilePosition;
else
return -1;
break;
default:
return -1;
}
// We can't seek beyond EOF
if (m_state->m_fileSize && nextPos > m_state->m_fileSize) return -1;
if(m_state->Seek(nextPos))
return nextPos;
if (m_multisession)
{
if (!m_oldState)
{
CURL url(m_url);
m_oldState = m_state;
m_state = new CReadState();
m_state->m_fileSize = m_oldState->m_fileSize;
g_curlInterface.easy_aquire(url.GetProtocol().c_str(),
url.GetHostName().c_str(),
&m_state->m_easyHandle,
&m_state->m_multiHandle );
}
else
{
CReadState *tmp;
tmp = m_state;
m_state = m_oldState;
m_oldState = tmp;
if (m_state->Seek(nextPos))
return nextPos;
m_state->Disconnect();
}
}
else
m_state->Disconnect();
// re-setup common curl options
SetCommonOptions(m_state);
/* caller might have changed some headers (needed for daap)*/
// TODO: daap is gone. is this needed for something else?
SetRequestHeaders(m_state);
m_state->m_filePos = nextPos;
m_state->m_sendRange = true;
long response = m_state->Connect(m_bufferSize);
if(response < 0 && (m_state->m_fileSize == 0 || m_state->m_fileSize != m_state->m_filePos))
{
if(m_multisession)
{
if (m_oldState)
{
delete m_state;
m_state = m_oldState;
m_oldState = NULL;
}
// Retry without mutlisession
m_multisession = false;
return Seek(iFilePosition, iWhence);
}
else
{
m_seekable = false;
return -1;
}
}
SetCorrectHeaders(m_state);
return m_state->m_filePos;
}
int64_t CCurlFile::GetLength()
{
if (!m_opened) return 0;
return m_state->m_fileSize;
}
int64_t CCurlFile::GetPosition()
{
if (!m_opened) return 0;
return m_state->m_filePos;
}
int CCurlFile::Stat(const CURL& url, struct __stat64* buffer)
{
// if file is already running, get info from it
if( m_opened )
{
CLog::Log(LOGWARNING, "CCurlFile::Stat - Stat called on open file %s", url.GetRedacted().c_str());
if (buffer)
{
memset(buffer, 0, sizeof(struct __stat64));
buffer->st_size = GetLength();
buffer->st_mode = _S_IFREG;
}
return 0;
}
CURL url2(url);
ParseAndCorrectUrl(url2);
assert(m_state->m_easyHandle == NULL);
g_curlInterface.easy_aquire(url2.GetProtocol().c_str(),
url2.GetHostName().c_str(),
&m_state->m_easyHandle, NULL);
SetCommonOptions(m_state);
SetRequestHeaders(m_state);
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_TIMEOUT, g_advancedSettings.m_curlconnecttimeout);
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_NOBODY, 1);
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FILETIME , 1);
if(url2.IsProtocol("ftp"))
{
// nocwd is less standard, will return empty list for non-existed remote dir on some ftp server, avoid it.
if (StringUtils::EndsWith(url2.GetFileName(), "/"))
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_SINGLECWD);
else
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_NOCWD);
}
CURLcode result = g_curlInterface.easy_perform(m_state->m_easyHandle);
if(result == CURLE_HTTP_RETURNED_ERROR)
{
long code;
if(g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_RESPONSE_CODE, &code) == CURLE_OK && code == 404 )
return -1;
}
if(result == CURLE_GOT_NOTHING
|| result == CURLE_HTTP_RETURNED_ERROR
|| result == CURLE_RECV_ERROR /* some silly shoutcast servers */ )
{
/* some http servers and shoutcast servers don't give us any data on a head request */
/* request normal and just bail out via progress meter callback after we received data */
/* somehow curl doesn't reset CURLOPT_NOBODY properly so reset everything */
SetCommonOptions(m_state);
SetRequestHeaders(m_state);
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_TIMEOUT, g_advancedSettings.m_curlconnecttimeout);
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FILETIME, 1);
#if LIBCURL_VERSION_NUM >= 0x072000 // 0.7.32
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_XFERINFOFUNCTION, transfer_abort_callback);
#else
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_PROGRESSFUNCTION, transfer_abort_callback);
#endif
g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_NOPROGRESS, 0);
result = g_curlInterface.easy_perform(m_state->m_easyHandle);
}
if( result != CURLE_ABORTED_BY_CALLBACK && result != CURLE_OK )
{
g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
errno = ENOENT;
CLog::Log(LOGERROR, "CCurlFile::Stat - Failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
return -1;
}
double length;
result = g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &length);
if (result != CURLE_OK || length < 0.0)
{
if (url.IsProtocol("ftp"))
{
g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
CLog::Log(LOGNOTICE, "CCurlFile::Stat - Content length failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
errno = ENOENT;
return -1;
}
else
length = 0.0;
}
SetCorrectHeaders(m_state);
if(buffer)
{
char *content;
result = g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_CONTENT_TYPE, &content);
if (result != CURLE_OK)
{
CLog::Log(LOGNOTICE, "CCurlFile::Stat - Content type failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
errno = ENOENT;
return -1;
}
else
{
memset(buffer, 0, sizeof(struct __stat64));
buffer->st_size = (int64_t)length;
if(content && strstr(content, "text/html")) //consider html files directories
buffer->st_mode = _S_IFDIR;
else
buffer->st_mode = _S_IFREG;
}
long filetime;
result = g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_FILETIME, &filetime);
if (result != CURLE_OK)
{
CLog::Log(LOGNOTICE, "CCurlFile::Stat - Filetime failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
}
else
{
if (filetime != -1)
buffer->st_mtime = filetime;
}
}
g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
return 0;
}
unsigned int CCurlFile::CReadState::Read(void* lpBuf, size_t uiBufSize)
{
/* only request 1 byte, for truncated reads (only if not eof) */
if((m_fileSize == 0 || m_filePos < m_fileSize) && !FillBuffer(1))
return 0;
/* ensure only available data is considered */
unsigned int want = (unsigned int)XMIN(m_buffer.getMaxReadSize(), uiBufSize);
/* xfer data to caller */
if (m_buffer.ReadData((char *)lpBuf, want))
{
m_filePos += want;
return want;
}
/* check if we finished prematurely */
if (!m_stillRunning && (m_fileSize == 0 || m_filePos != m_fileSize))
{
CLog::Log(LOGWARNING, "%s - Transfer ended before entire file was retrieved pos %" PRId64", size %" PRId64, __FUNCTION__, m_filePos, m_fileSize);
return -1;
}
return 0;
}
/* use to attempt to fill the read buffer up to requested number of bytes */
bool CCurlFile::CReadState::FillBuffer(unsigned int want)
{
int retry = 0;
fd_set fdread;
fd_set fdwrite;
fd_set fdexcep;
// only attempt to fill buffer if transactions still running and buffer
// doesnt exceed required size already
while ((unsigned int)m_buffer.getMaxReadSize() < want && m_buffer.getMaxWriteSize() > 0 )
{
if (m_cancelled)
return false;
/* if there is data in overflow buffer, try to use that first */
if (m_overflowSize)
{
unsigned amount = XMIN((unsigned int)m_buffer.getMaxWriteSize(), m_overflowSize);
m_buffer.WriteData(m_overflowBuffer, amount);
if (amount < m_overflowSize)
memmove(m_overflowBuffer, m_overflowBuffer + amount, m_overflowSize - amount);
m_overflowSize -= amount;
// Shrink memory:
m_overflowBuffer = (char*)realloc_simple(m_overflowBuffer, m_overflowSize);
continue;
}
CURLMcode result = g_curlInterface.multi_perform(m_multiHandle, &m_stillRunning);
if (!m_stillRunning)
{
if (result == CURLM_OK)
{
/* if we still have stuff in buffer, we are fine */
if (m_buffer.getMaxReadSize())
return true;
/* verify that we are actually okey */
int msgs;
CURLcode CURLresult = CURLE_OK;
CURLMsg* msg;
while ((msg = g_curlInterface.multi_info_read(m_multiHandle, &msgs)))
{
if (msg->msg == CURLMSG_DONE)
{
if (msg->data.result == CURLE_OK)
return true;
long httpCode = 0;
if (msg->data.result == CURLE_HTTP_RETURNED_ERROR)
{
g_curlInterface.easy_getinfo(msg->easy_handle, CURLINFO_RESPONSE_CODE, &httpCode);
// Don't log 404 not-found errors to prevent log-spam
if (httpCode != 404)
CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Failed: HTTP returned error %ld", httpCode);
}
else
{
CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Failed: %s(%d)", g_curlInterface.easy_strerror(msg->data.result), msg->data.result);
}
// We need to check the result here as we don't want to retry on every error
if ( (msg->data.result == CURLE_OPERATION_TIMEDOUT ||
msg->data.result == CURLE_PARTIAL_FILE ||
msg->data.result == CURLE_COULDNT_CONNECT ||
msg->data.result == CURLE_RECV_ERROR) &&
!m_bFirstLoop)
CURLresult = msg->data.result;
else if ( (msg->data.result == CURLE_HTTP_RANGE_ERROR ||
httpCode == 416 /* = Requested Range Not Satisfiable */ ||
httpCode == 406 /* = Not Acceptable (fixes issues with non compliant HDHomerun servers */) &&
m_bFirstLoop &&
m_filePos == 0 &&
m_sendRange)
{
// If server returns a range or http error, retry with range disabled
CURLresult = msg->data.result;
m_sendRange = false;
}
else
return false;
}
}
// Don't retry when we didn't "see" any error
if (CURLresult == CURLE_OK)
return false;
// Close handle
if (m_multiHandle && m_easyHandle)
g_curlInterface.multi_remove_handle(m_multiHandle, m_easyHandle);
// Reset all the stuff like we would in Disconnect()
m_buffer.Clear();
free(m_overflowBuffer);
m_overflowBuffer = NULL;
m_overflowSize = 0;
// If we got here something is wrong
if (++retry > g_advancedSettings.m_curlretries)
{
CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Reconnect failed!");
// Reset the rest of the variables like we would in Disconnect()
m_filePos = 0;
m_fileSize = 0;
m_bufferSize = 0;
return false;
}
CLog::Log(LOGNOTICE, "CCurlFile::FillBuffer - Reconnect, (re)try %i", retry);
// Progressive sleep. TODO: Find a better optimum for this?
Sleep( (retry - 1) * 1000);
// Connect + seek to current position (again)
SetResume();
g_curlInterface.multi_add_handle(m_multiHandle, m_easyHandle);
// Return to the beginning of the loop:
continue;
}
return false;
}
// We've finished out first loop
if(m_bFirstLoop && m_buffer.getMaxReadSize() > 0)
m_bFirstLoop = false;
switch (result)
{
case CURLM_OK:
{
int maxfd = -1;
FD_ZERO(&fdread);
FD_ZERO(&fdwrite);
FD_ZERO(&fdexcep);
// get file descriptors from the transfers
g_curlInterface.multi_fdset(m_multiHandle, &fdread, &fdwrite, &fdexcep, &maxfd);
long timeout = 0;
if (CURLM_OK != g_curlInterface.multi_timeout(m_multiHandle, &timeout) || timeout == -1 || timeout < 200)
timeout = 200;
XbmcThreads::EndTime endTime(timeout);
int rc;
do
{
/* On success the value of maxfd is guaranteed to be >= -1. We call
* select(maxfd + 1, ...); specially in case of (maxfd == -1) there are
* no fds ready yet so we call select(0, ...) --or Sleep() on Windows--
* to sleep 100ms, which is the minimum suggested value in the
* curl_multi_fdset() doc.
*/
if (maxfd == -1)
{
#ifdef TARGET_WINDOWS
/* Windows does not support using select() for sleeping without a dummy
* socket. Instead use Windows' Sleep() and sleep for 100ms which is the
* minimum suggested value in the curl_multi_fdset() doc.
*/
Sleep(100);
rc = 0;
#else
/* Portable sleep for platforms other than Windows. */
struct timeval wait = { 0, 100 * 1000 }; /* 100ms */
rc = select(0, NULL, NULL, NULL, &wait);
#endif
}
else
{
unsigned int time_left = endTime.MillisLeft();
struct timeval wait = { (int)time_left / 1000, ((int)time_left % 1000) * 1000 };
rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &wait);
}
#ifdef TARGET_WINDOWS
} while(rc == SOCKET_ERROR && WSAGetLastError() == WSAEINTR);
#else
} while(rc == SOCKET_ERROR && errno == EINTR);
#endif
if(rc == SOCKET_ERROR)
{
#ifdef TARGET_WINDOWS
char buf[256];
strerror_s(buf, 256, WSAGetLastError());
CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Failed with socket error:%s", buf);
#else
char const * str = strerror(errno);
CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Failed with socket error:%s", str);
#endif
return false;
}
}
break;
case CURLM_CALL_MULTI_PERFORM:
{
// we don't keep calling here as that can easily overwrite our buffer which we want to avoid
// docs says we should call it soon after, but aslong as we are reading data somewhere
// this aught to be soon enough. should stay in socket otherwise
continue;
}
break;
default:
{
CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Multi perform failed with code %d, aborting", result);
return false;
}
break;
}
}
return true;
}
void CCurlFile::CReadState::SetReadBuffer(const void* lpBuf, int64_t uiBufSize)
{
m_readBuffer = (char*)lpBuf;
m_fileSize = uiBufSize;
m_filePos = 0;
}
void CCurlFile::ClearRequestHeaders()
{
m_requestheaders.clear();
}
void CCurlFile::SetRequestHeader(const std::string& header, const std::string& value)
{
m_requestheaders[header] = value;
}
void CCurlFile::SetRequestHeader(const std::string& header, long value)
{
m_requestheaders[header] = StringUtils::Format("%ld", value);
}
std::string CCurlFile::GetServerReportedCharset(void)
{
if (!m_state)
return "";
return m_state->m_httpheader.GetCharset();
}
/* STATIC FUNCTIONS */
bool CCurlFile::GetHttpHeader(const CURL &url, CHttpHeader &headers)
{
try
{
CCurlFile file;
if(file.Stat(url, NULL) == 0)
{
headers = file.GetHttpHeader();
return true;
}
return false;
}
catch(...)
{
CLog::Log(LOGERROR, "%s - Exception thrown while trying to retrieve header url: %s", __FUNCTION__, url.GetRedacted().c_str());
return false;
}
}
bool CCurlFile::GetMimeType(const CURL &url, std::string &content, const std::string &useragent)
{
CCurlFile file;
if (!useragent.empty())
file.SetUserAgent(useragent);
struct __stat64 buffer;
std::string redactUrl = url.GetRedacted();
if( file.Stat(url, &buffer) == 0 )
{
if (buffer.st_mode == _S_IFDIR)
content = "x-directory/normal";
else
content = file.GetMimeType();
CLog::Log(LOGDEBUG, "CCurlFile::GetMimeType - %s -> %s", redactUrl.c_str(), content.c_str());
return true;
}
CLog::Log(LOGDEBUG, "CCurlFile::GetMimeType - %s -> failed", redactUrl.c_str());
content.clear();
return false;
}
bool CCurlFile::GetContentType(const CURL &url, std::string &content, const std::string &useragent)
{
CCurlFile file;
if (!useragent.empty())
file.SetUserAgent(useragent);
struct __stat64 buffer;
std::string redactUrl = url.GetRedacted();
if (file.Stat(url, &buffer) == 0)
{
if (buffer.st_mode == _S_IFDIR)
content = "x-directory/normal";
else
content = file.GetContent();
CLog::Log(LOGDEBUG, "CCurlFile::GetConentType - %s -> %s", redactUrl.c_str(), content.c_str());
return true;
}
CLog::Log(LOGDEBUG, "CCurlFile::GetConentType - %s -> failed", redactUrl.c_str());
content.clear();
return false;
}
bool CCurlFile::GetCookies(const CURL &url, std::string &cookies)
{
std::string cookiesStr;
struct curl_slist* curlCookies;
XCURL::CURL_HANDLE* easyHandle;
XCURL::CURLM* multiHandle;
// get the cookies list
g_curlInterface.easy_aquire(url.GetProtocol().c_str(),
url.GetHostName().c_str(),
&easyHandle, &multiHandle);
if (CURLE_OK == g_curlInterface.easy_getinfo(easyHandle, CURLINFO_COOKIELIST, &curlCookies))
{
// iterate over each cookie and format it into an RFC 2109 formatted Set-Cookie string
struct curl_slist* curlCookieIter = curlCookies;
while(curlCookieIter)
{
// tokenize the CURL cookie string
std::vector<std::string> valuesVec;
StringUtils::Tokenize(curlCookieIter->data, valuesVec, "\t");
// ensure the length is valid
if (valuesVec.size() < 7)
{
CLog::Log(LOGERROR, "CCurlFile::GetCookies - invalid cookie: '%s'", curlCookieIter->data);
curlCookieIter = curlCookieIter->next;
continue;
}
// create a http-header formatted cookie string
std::string cookieStr = valuesVec[5] + "=" + valuesVec[6] +
"; path=" + valuesVec[2] +
"; domain=" + valuesVec[0];
// append this cookie to the string containing all cookies
if (!cookiesStr.empty())
cookiesStr += "\n";
cookiesStr += cookieStr;
// move on to the next cookie
curlCookieIter = curlCookieIter->next;
}
// free the curl cookies
g_curlInterface.slist_free_all(curlCookies);
// release our handles
g_curlInterface.easy_release(&easyHandle, &multiHandle);
// if we have a non-empty cookie string, return it
if (!cookiesStr.empty())
{
cookies = cookiesStr;
return true;
}
}
// no cookies to return
return false;
}
int CCurlFile::IoControl(EIoControl request, void* param)
{
if(request == IOCTRL_SEEK_POSSIBLE)
return m_seekable ? 1 : 0;
return -1;
}
|