Merge pull request #4794 from ossman/curlssl
[vuplus_xbmc] / xbmc / filesystem / CurlFile.cpp
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, see
17  *  <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #include "CurlFile.h"
22 #include "utils/URIUtils.h"
23 #include "Util.h"
24 #include "URL.h"
25 #include "settings/AdvancedSettings.h"
26 #include "settings/Settings.h"
27 #include "File.h"
28 #include "threads/SystemClock.h"
29
30 #include <vector>
31 #include <climits>
32
33 #ifdef TARGET_POSIX
34 #include <errno.h>
35 #include <inttypes.h>
36 #include "../linux/XFileUtils.h"
37 #include "../linux/XTimeUtils.h"
38 #include "../linux/ConvUtils.h"
39 #endif
40
41 #include "DllLibCurl.h"
42 #include "ShoutcastFile.h"
43 #include "SpecialProtocol.h"
44 #include "utils/CharsetConverter.h"
45 #include "utils/log.h"
46 #include "utils/StringUtils.h"
47
48 using namespace XFILE;
49 using namespace XCURL;
50
51 #define XMIN(a,b) ((a)<(b)?(a):(b))
52 #define FITS_INT(a) (((a) <= INT_MAX) && ((a) >= INT_MIN))
53
54 curl_proxytype proxyType2CUrlProxyType[] = {
55   CURLPROXY_HTTP,
56   CURLPROXY_SOCKS4,
57   CURLPROXY_SOCKS4A,
58   CURLPROXY_SOCKS5,
59   CURLPROXY_SOCKS5_HOSTNAME,
60 };
61
62 // curl calls this routine to debug
63 extern "C" int debug_callback(CURL_HANDLE *handle, curl_infotype info, char *output, size_t size, void *data)
64 {
65   if (info == CURLINFO_DATA_IN || info == CURLINFO_DATA_OUT)
66     return 0;
67
68   if ((g_advancedSettings.m_extraLogLevels & LOGCURL) == 0)
69     return 0;
70
71   CStdString strLine;
72   strLine.append(output, size);
73   std::vector<std::string> vecLines;
74   StringUtils::Tokenize(strLine, vecLines, "\r\n");
75   std::vector<std::string>::const_iterator it = vecLines.begin();
76
77   char *infotype;
78   switch(info)
79   {
80     case CURLINFO_TEXT         : infotype = (char *) "TEXT: "; break;
81     case CURLINFO_HEADER_IN    : infotype = (char *) "HEADER_IN: "; break;
82     case CURLINFO_HEADER_OUT   : infotype = (char *) "HEADER_OUT: "; break;
83     case CURLINFO_SSL_DATA_IN  : infotype = (char *) "SSL_DATA_IN: "; break;
84     case CURLINFO_SSL_DATA_OUT : infotype = (char *) "SSL_DATA_OUT: "; break;
85     case CURLINFO_END          : infotype = (char *) "END: "; break;
86     default                    : infotype = (char *) ""; break;
87   }
88
89   while (it != vecLines.end())
90   {
91     CLog::Log(LOGDEBUG, "Curl::Debug - %s%s", infotype, (*it).c_str());
92     it++;
93   }
94   return 0;
95 }
96
97 /* curl calls this routine to get more data */
98 extern "C" size_t write_callback(char *buffer,
99                size_t size,
100                size_t nitems,
101                void *userp)
102 {
103   if(userp == NULL) return 0;
104
105   CCurlFile::CReadState *state = (CCurlFile::CReadState *)userp;
106   return state->WriteCallback(buffer, size, nitems);
107 }
108
109 extern "C" size_t read_callback(char *buffer,
110                size_t size,
111                size_t nitems,
112                void *userp)
113 {
114   if(userp == NULL) return 0;
115
116   CCurlFile::CReadState *state = (CCurlFile::CReadState *)userp;
117   return state->ReadCallback(buffer, size, nitems);
118 }
119
120 extern "C" size_t header_callback(void *ptr, size_t size, size_t nmemb, void *stream)
121 {
122   CCurlFile::CReadState *state = (CCurlFile::CReadState *)stream;
123   return state->HeaderCallback(ptr, size, nmemb);
124 }
125
126 /* fix for silly behavior of realloc */
127 static inline void* realloc_simple(void *ptr, size_t size)
128 {
129   void *ptr2 = realloc(ptr, size);
130   if(ptr && !ptr2 && size > 0)
131   {
132     free(ptr);
133     return NULL;
134   }
135   else
136     return ptr2;
137 }
138
139 size_t CCurlFile::CReadState::HeaderCallback(void *ptr, size_t size, size_t nmemb)
140 {
141   std::string inString;
142   // libcurl doc says that this info is not always \0 terminated
143   const char* strBuf = (const char*)ptr;
144   const size_t iSize = size * nmemb;
145   if (strBuf[iSize - 1] == 0)
146     inString.assign(strBuf, iSize - 1); // skip last char if it's zero
147   else
148     inString.append(strBuf, iSize);
149
150   m_httpheader.Parse(inString);
151
152   return iSize;
153 }
154
155 size_t CCurlFile::CReadState::ReadCallback(char *buffer, size_t size, size_t nitems)
156 {
157   if (m_fileSize == 0)
158     return 0;
159
160   if (m_filePos >= m_fileSize)
161   {
162     m_isPaused = true;
163     return CURL_READFUNC_PAUSE;
164   }
165
166   int64_t retSize = XMIN(m_fileSize - m_filePos, int64_t(nitems * size));
167   memcpy(buffer, m_readBuffer + m_filePos, retSize);
168   m_filePos += retSize;
169
170   return retSize;
171 }
172
173 size_t CCurlFile::CReadState::WriteCallback(char *buffer, size_t size, size_t nitems)
174 {
175   unsigned int amount = size * nitems;
176 //  CLog::Log(LOGDEBUG, "CCurlFile::WriteCallback (%p) with %i bytes, readsize = %i, writesize = %i", this, amount, m_buffer.getMaxReadSize(), m_buffer.getMaxWriteSize() - m_overflowSize);
177   if (m_overflowSize)
178   {
179     // we have our overflow buffer - first get rid of as much as we can
180     unsigned int maxWriteable = XMIN((unsigned int)m_buffer.getMaxWriteSize(), m_overflowSize);
181     if (maxWriteable)
182     {
183       if (!m_buffer.WriteData(m_overflowBuffer, maxWriteable))
184         CLog::Log(LOGERROR, "CCurlFile::WriteCallback - Unable to write to buffer - what's up?");
185       if (m_overflowSize > maxWriteable)
186       { // still have some more - copy it down
187         memmove(m_overflowBuffer, m_overflowBuffer + maxWriteable, m_overflowSize - maxWriteable);
188       }
189       m_overflowSize -= maxWriteable;
190     }
191   }
192   // ok, now copy the data into our ring buffer
193   unsigned int maxWriteable = XMIN((unsigned int)m_buffer.getMaxWriteSize(), amount);
194   if (maxWriteable)
195   {
196     if (!m_buffer.WriteData(buffer, maxWriteable))
197     {
198       CLog::Log(LOGERROR, "CCurlFile::WriteCallback - Unable to write to buffer with %i bytes - what's up?", maxWriteable);
199     }
200     else
201     {
202       amount -= maxWriteable;
203       buffer += maxWriteable;
204     }
205   }
206   if (amount)
207   {
208 //    CLog::Log(LOGDEBUG, "CCurlFile::WriteCallback(%p) not enough free space for %i bytes", (void*)this,  amount);
209
210     m_overflowBuffer = (char*)realloc_simple(m_overflowBuffer, amount + m_overflowSize);
211     if(m_overflowBuffer == NULL)
212     {
213       CLog::Log(LOGWARNING, "CCurlFile::WriteCallback - Failed to grow overflow buffer from %i bytes to %i bytes", m_overflowSize, amount + m_overflowSize);
214       return 0;
215     }
216     memcpy(m_overflowBuffer + m_overflowSize, buffer, amount);
217     m_overflowSize += amount;
218   }
219   return size * nitems;
220 }
221
222 CCurlFile::CReadState::CReadState()
223 {
224   m_easyHandle = NULL;
225   m_multiHandle = NULL;
226   m_overflowBuffer = NULL;
227   m_overflowSize = 0;
228   m_filePos = 0;
229   m_fileSize = 0;
230   m_bufferSize = 0;
231   m_cancelled = false;
232   m_bFirstLoop = true;
233   m_sendRange = true;
234   m_readBuffer = 0;
235   m_isPaused = false;
236   m_curlHeaderList = NULL;
237   m_curlAliasList = NULL;
238 }
239
240 CCurlFile::CReadState::~CReadState()
241 {
242   Disconnect();
243
244   if(m_easyHandle)
245     g_curlInterface.easy_release(&m_easyHandle, &m_multiHandle);
246 }
247
248 bool CCurlFile::CReadState::Seek(int64_t pos)
249 {
250   if(pos == m_filePos)
251     return true;
252
253   if(FITS_INT(pos - m_filePos) && m_buffer.SkipBytes((int)(pos - m_filePos)))
254   {
255     m_filePos = pos;
256     return true;
257   }
258
259   if(pos > m_filePos && pos < m_filePos + m_bufferSize)
260   {
261     int len = m_buffer.getMaxReadSize();
262     m_filePos += len;
263     m_buffer.SkipBytes(len);
264     if(!FillBuffer(m_bufferSize))
265     {
266       if(!m_buffer.SkipBytes(-len))
267         CLog::Log(LOGERROR, "%s - Failed to restore position after failed fill", __FUNCTION__);
268       else
269         m_filePos -= len;
270       return false;
271     }
272
273     if(!FITS_INT(pos - m_filePos) || !m_buffer.SkipBytes((int)(pos - m_filePos)))
274     {
275       CLog::Log(LOGERROR, "%s - Failed to skip to position after having filled buffer", __FUNCTION__);
276       if(!m_buffer.SkipBytes(-len))
277         CLog::Log(LOGERROR, "%s - Failed to restore position after failed seek", __FUNCTION__);
278       else
279         m_filePos -= len;
280       return false;
281     }
282     m_filePos = pos;
283     return true;
284   }
285   return false;
286 }
287
288 void CCurlFile::CReadState::SetResume(void)
289 {
290   /*
291    * Explicitly set RANGE header when filepos=0 as some http servers require us to always send the range
292    * request header. If we don't the server may provide different content causing seeking to fail.
293    * This only affects HTTP-like items, for FTP it's a null operation.
294    */
295   if (m_sendRange && m_filePos == 0)
296     g_curlInterface.easy_setopt(m_easyHandle, CURLOPT_RANGE, "0-");
297   else
298   {
299     g_curlInterface.easy_setopt(m_easyHandle, CURLOPT_RANGE, NULL);
300     m_sendRange = false;
301   }
302
303   g_curlInterface.easy_setopt(m_easyHandle, CURLOPT_RESUME_FROM_LARGE, m_filePos);
304 }
305
306 long CCurlFile::CReadState::Connect(unsigned int size)
307 {
308   if (m_filePos != 0)
309     CLog::Log(LOGDEBUG,"CurlFile::CReadState::Connect - Resume from position %"PRId64, m_filePos);
310
311   SetResume();
312   g_curlInterface.multi_add_handle(m_multiHandle, m_easyHandle);
313
314   m_bufferSize = size;
315   m_buffer.Destroy();
316   m_buffer.Create(size * 3);
317   m_httpheader.Clear();
318
319   // read some data in to try and obtain the length
320   // maybe there's a better way to get this info??
321   m_stillRunning = 1;
322   if (!FillBuffer(1))
323   {
324     CLog::Log(LOGERROR, "CCurlFile::CReadState::Connect, didn't get any data from stream.");
325     return -1;
326   }
327
328   double length;
329   if (CURLE_OK == g_curlInterface.easy_getinfo(m_easyHandle, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &length))
330   {
331     if (length < 0)
332       length = 0.0;
333     m_fileSize = m_filePos + (int64_t)length;
334   }
335
336   long response;
337   if (CURLE_OK == g_curlInterface.easy_getinfo(m_easyHandle, CURLINFO_RESPONSE_CODE, &response))
338     return response;
339
340   return -1;
341 }
342
343 void CCurlFile::CReadState::Disconnect()
344 {
345   if(m_multiHandle && m_easyHandle)
346     g_curlInterface.multi_remove_handle(m_multiHandle, m_easyHandle);
347
348   m_buffer.Clear();
349   free(m_overflowBuffer);
350   m_overflowBuffer = NULL;
351   m_overflowSize = 0;
352   m_filePos = 0;
353   m_fileSize = 0;
354   m_bufferSize = 0;
355   m_readBuffer = 0;
356
357   /* cleanup */
358   if( m_curlHeaderList )
359     g_curlInterface.slist_free_all(m_curlHeaderList);
360   m_curlHeaderList = NULL;
361
362   if( m_curlAliasList )
363     g_curlInterface.slist_free_all(m_curlAliasList);
364   m_curlAliasList = NULL;
365 }
366
367
368 CCurlFile::~CCurlFile()
369 {
370   Close();
371   delete m_state;
372   delete m_oldState;
373   g_curlInterface.Unload();
374 }
375
376 CCurlFile::CCurlFile()
377 {
378   g_curlInterface.Load(); // loads the curl dll and resolves exports etc.
379   m_opened = false;
380   m_forWrite = false;
381   m_inError = false;
382   m_multisession  = true;
383   m_seekable = true;
384   m_useOldHttpVersion = false;
385   m_connecttimeout = 0;
386   m_lowspeedtime = 0;
387   m_ftpauth = "";
388   m_ftpport = "";
389   m_ftppasvip = false;
390   m_bufferSize = 32768;
391   m_binary = true;
392   m_postdata = "";
393   m_postdataset = false;
394   m_username = "";
395   m_password = "";
396   m_httpauth = "";
397   m_cipherlist = "";
398   m_proxytype = PROXY_HTTP;
399   m_state = new CReadState();
400   m_oldState = NULL;
401   m_skipshout = false;
402   m_httpresponse = -1;
403   m_acceptCharset = "UTF-8,*;q=0.8"; /* prefer UTF-8 if available */
404 }
405
406 //Has to be called before Open()
407 void CCurlFile::SetBufferSize(unsigned int size)
408 {
409   m_bufferSize = size;
410 }
411
412 void CCurlFile::Close()
413 {
414   if (m_opened && m_forWrite && !m_inError)
415       Write(NULL, 0);
416
417   m_state->Disconnect();
418   delete m_oldState;
419   m_oldState = NULL;
420
421   m_url.clear();
422   m_referer.clear();
423   m_cookie.clear();
424
425   m_opened = false;
426   m_forWrite = false;
427   m_inError = false;
428 }
429
430 void CCurlFile::SetCommonOptions(CReadState* state)
431 {
432   CURL_HANDLE* h = state->m_easyHandle;
433
434   g_curlInterface.easy_reset(h);
435
436   g_curlInterface.easy_setopt(h, CURLOPT_DEBUGFUNCTION, debug_callback);
437
438   if( g_advancedSettings.m_logLevel >= LOG_LEVEL_DEBUG )
439     g_curlInterface.easy_setopt(h, CURLOPT_VERBOSE, TRUE);
440   else
441     g_curlInterface.easy_setopt(h, CURLOPT_VERBOSE, FALSE);
442
443   g_curlInterface.easy_setopt(h, CURLOPT_WRITEDATA, state);
444   g_curlInterface.easy_setopt(h, CURLOPT_WRITEFUNCTION, write_callback);
445
446   g_curlInterface.easy_setopt(h, CURLOPT_READDATA, state);
447   g_curlInterface.easy_setopt(h, CURLOPT_READFUNCTION, read_callback);
448
449   // set username and password for current handle
450   if (m_username.length() > 0 && m_password.length() > 0)
451   {
452     CStdString userpwd = m_username + ":" + m_password;
453     g_curlInterface.easy_setopt(h, CURLOPT_USERPWD, userpwd.c_str());
454   }
455
456   // make sure headers are seperated from the data stream
457   g_curlInterface.easy_setopt(h, CURLOPT_WRITEHEADER, state);
458   g_curlInterface.easy_setopt(h, CURLOPT_HEADERFUNCTION, header_callback);
459   g_curlInterface.easy_setopt(h, CURLOPT_HEADER, FALSE);
460
461   g_curlInterface.easy_setopt(h, CURLOPT_FTP_USE_EPSV, 0); // turn off epsv
462
463   // Allow us to follow two redirects
464   g_curlInterface.easy_setopt(h, CURLOPT_FOLLOWLOCATION, TRUE);
465   g_curlInterface.easy_setopt(h, CURLOPT_MAXREDIRS, 5);
466
467   // Enable cookie engine for current handle to re-use them in future requests
468   CStdString strCookieFile;
469   CStdString strTempPath = CSpecialProtocol::TranslatePath(g_advancedSettings.m_cachePath);
470   strCookieFile = URIUtils::AddFileToFolder(strTempPath, "cookies.dat");
471
472   g_curlInterface.easy_setopt(h, CURLOPT_COOKIEFILE, strCookieFile.c_str());
473   g_curlInterface.easy_setopt(h, CURLOPT_COOKIEJAR, strCookieFile.c_str());
474
475   // Set custom cookie if requested
476   if (!m_cookie.empty())
477     g_curlInterface.easy_setopt(h, CURLOPT_COOKIE, m_cookie.c_str());
478
479   g_curlInterface.easy_setopt(h, CURLOPT_COOKIELIST, "FLUSH");
480
481   // When using multiple threads you should set the CURLOPT_NOSIGNAL option to
482   // TRUE for all handles. Everything will work fine except that timeouts are not
483   // honored during the DNS lookup - which you can work around by building libcurl
484   // with c-ares support. c-ares is a library that provides asynchronous name
485   // resolves. Unfortunately, c-ares does not yet support IPv6.
486   g_curlInterface.easy_setopt(h, CURLOPT_NOSIGNAL, TRUE);
487
488   // not interested in failed requests
489   g_curlInterface.easy_setopt(h, CURLOPT_FAILONERROR, 1);
490
491   // enable support for icecast / shoutcast streams
492   if ( NULL == state->m_curlAliasList )
493     // m_curlAliasList is used only by this one place, but SetCommonOptions can
494     // be called multiple times, only append to list if it's empty.
495     state->m_curlAliasList = g_curlInterface.slist_append(state->m_curlAliasList, "ICY 200 OK");
496   g_curlInterface.easy_setopt(h, CURLOPT_HTTP200ALIASES, state->m_curlAliasList);
497
498   // never verify peer, we don't have any certificates to do this
499   g_curlInterface.easy_setopt(h, CURLOPT_SSL_VERIFYPEER, 0);
500   g_curlInterface.easy_setopt(h, CURLOPT_SSL_VERIFYHOST, 0);
501
502   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_URL, m_url.c_str());
503   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_TRANSFERTEXT, FALSE);
504
505   // setup POST data if it is set (and it may be empty)
506   if (m_postdataset)
507   {
508     g_curlInterface.easy_setopt(h, CURLOPT_POST, 1 );
509     g_curlInterface.easy_setopt(h, CURLOPT_POSTFIELDSIZE, m_postdata.length());
510     g_curlInterface.easy_setopt(h, CURLOPT_POSTFIELDS, m_postdata.c_str());
511   }
512
513   // setup Referer header if needed
514   if (!m_referer.empty())
515     g_curlInterface.easy_setopt(h, CURLOPT_REFERER, m_referer.c_str());
516   else
517   {
518     g_curlInterface.easy_setopt(h, CURLOPT_REFERER, NULL);
519     g_curlInterface.easy_setopt(h, CURLOPT_AUTOREFERER, TRUE);
520   }
521
522   // setup any requested authentication
523   if( m_ftpauth.length() > 0 )
524   {
525     g_curlInterface.easy_setopt(h, CURLOPT_FTP_SSL, CURLFTPSSL_TRY);
526     if( m_ftpauth.Equals("any") )
527       g_curlInterface.easy_setopt(h, CURLOPT_FTPSSLAUTH, CURLFTPAUTH_DEFAULT);
528     else if( m_ftpauth.Equals("ssl") )
529       g_curlInterface.easy_setopt(h, CURLOPT_FTPSSLAUTH, CURLFTPAUTH_SSL);
530     else if( m_ftpauth.Equals("tls") )
531       g_curlInterface.easy_setopt(h, CURLOPT_FTPSSLAUTH, CURLFTPAUTH_TLS);
532   }
533
534   // setup requested http authentication method
535   if(m_httpauth.length() > 0)
536   {
537     if( m_httpauth.Equals("any") )
538       g_curlInterface.easy_setopt(h, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
539     else if( m_httpauth.Equals("anysafe") )
540       g_curlInterface.easy_setopt(h, CURLOPT_HTTPAUTH, CURLAUTH_ANYSAFE);
541     else if( m_httpauth.Equals("digest") )
542       g_curlInterface.easy_setopt(h, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
543     else if( m_httpauth.Equals("ntlm") )
544       g_curlInterface.easy_setopt(h, CURLOPT_HTTPAUTH, CURLAUTH_NTLM);
545   }
546
547   // allow passive mode for ftp
548   if( m_ftpport.length() > 0 )
549     g_curlInterface.easy_setopt(h, CURLOPT_FTPPORT, m_ftpport.c_str());
550   else
551     g_curlInterface.easy_setopt(h, CURLOPT_FTPPORT, NULL);
552
553   // allow curl to not use the ip address in the returned pasv response
554   if( m_ftppasvip )
555     g_curlInterface.easy_setopt(h, CURLOPT_FTP_SKIP_PASV_IP, 0);
556   else
557     g_curlInterface.easy_setopt(h, CURLOPT_FTP_SKIP_PASV_IP, 1);
558
559   // setup Content-Encoding if requested
560   if( m_contentencoding.length() > 0 )
561     g_curlInterface.easy_setopt(h, CURLOPT_ENCODING, m_contentencoding.c_str());
562
563   if (!m_useOldHttpVersion && !m_acceptCharset.empty())
564     SetRequestHeader("Accept-Charset", m_acceptCharset);
565
566   if (m_userAgent.length() > 0)
567     g_curlInterface.easy_setopt(h, CURLOPT_USERAGENT, m_userAgent.c_str());
568   else /* set some default agent as shoutcast doesn't return proper stuff otherwise */
569     g_curlInterface.easy_setopt(h, CURLOPT_USERAGENT, g_advancedSettings.m_userAgent.c_str());
570
571   if (m_useOldHttpVersion)
572     g_curlInterface.easy_setopt(h, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
573
574   if (g_advancedSettings.m_curlDisableIPV6)
575     g_curlInterface.easy_setopt(h, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
576
577   if (m_proxy.length() > 0)
578   {
579     g_curlInterface.easy_setopt(h, CURLOPT_PROXY, m_proxy.c_str());
580     g_curlInterface.easy_setopt(h, CURLOPT_PROXYTYPE, proxyType2CUrlProxyType[m_proxytype]);
581     if (m_proxyuserpass.length() > 0)
582       g_curlInterface.easy_setopt(h, CURLOPT_PROXYUSERPWD, m_proxyuserpass.c_str());
583
584   }
585   if (m_customrequest.length() > 0)
586     g_curlInterface.easy_setopt(h, CURLOPT_CUSTOMREQUEST, m_customrequest.c_str());
587
588   if (m_connecttimeout == 0)
589     m_connecttimeout = g_advancedSettings.m_curlconnecttimeout;
590
591   // set our timeouts, we abort connection after m_timeout, and reads after no data for m_timeout seconds
592   g_curlInterface.easy_setopt(h, CURLOPT_CONNECTTIMEOUT, m_connecttimeout);
593
594   // We abort in case we transfer less than 1byte/second
595   g_curlInterface.easy_setopt(h, CURLOPT_LOW_SPEED_LIMIT, 1);
596
597   if (m_lowspeedtime == 0)
598     m_lowspeedtime = g_advancedSettings.m_curllowspeedtime;
599
600   // Set the lowspeed time very low as it seems Curl takes much longer to detect a lowspeed condition
601   g_curlInterface.easy_setopt(h, CURLOPT_LOW_SPEED_TIME, m_lowspeedtime);
602
603   if (m_skipshout)
604     // For shoutcast file, content-length should not be set, and in libcurl there is a bug, if the
605     // cast file was 302 redirected then getinfo of CURLINFO_CONTENT_LENGTH_DOWNLOAD will return
606     // the 302 response's body length, which cause the next read request failed, so we ignore
607     // content-length for shoutcast file to workaround this.
608     g_curlInterface.easy_setopt(h, CURLOPT_IGNORE_CONTENT_LENGTH, 1);
609
610   // Setup allowed TLS/SSL ciphers. New versions of cURL may deprecate things that are still in use.
611   if (!m_cipherlist.empty())
612     g_curlInterface.easy_setopt(h, CURLOPT_SSL_CIPHER_LIST, m_cipherlist.c_str());
613 }
614
615 void CCurlFile::SetRequestHeaders(CReadState* state)
616 {
617   if(state->m_curlHeaderList)
618   {
619     g_curlInterface.slist_free_all(state->m_curlHeaderList);
620     state->m_curlHeaderList = NULL;
621   }
622
623   MAPHTTPHEADERS::iterator it;
624   for(it = m_requestheaders.begin(); it != m_requestheaders.end(); it++)
625   {
626     CStdString buffer = it->first + ": " + it->second;
627     state->m_curlHeaderList = g_curlInterface.slist_append(state->m_curlHeaderList, buffer.c_str());
628   }
629
630   // add user defined headers
631   if (state->m_easyHandle)
632     g_curlInterface.easy_setopt(state->m_easyHandle, CURLOPT_HTTPHEADER, state->m_curlHeaderList);
633 }
634
635 void CCurlFile::SetCorrectHeaders(CReadState* state)
636 {
637   CHttpHeader& h = state->m_httpheader;
638   /* workaround for shoutcast server wich doesn't set content type on standard mp3 */
639   if( h.GetMimeType().empty() )
640   {
641     if( !h.GetValue("icy-notice1").empty()
642     || !h.GetValue("icy-name").empty()
643     || !h.GetValue("icy-br").empty() )
644       h.AddParam("Content-Type", "audio/mpeg");
645   }
646
647   /* hack for google video */
648   if (StringUtils::EqualsNoCase(h.GetMimeType(),"text/html")
649   &&  !h.GetValue("Content-Disposition").empty() )
650   {
651     CStdString strValue = h.GetValue("Content-Disposition");
652     if (strValue.find("filename=") != std::string::npos &&
653         strValue.find(".flv") != std::string::npos)
654       h.AddParam("Content-Type", "video/flv");
655   }
656 }
657
658 void CCurlFile::ParseAndCorrectUrl(CURL &url2)
659 {
660   CStdString strProtocol = url2.GetTranslatedProtocol();
661   url2.SetProtocol(strProtocol);
662
663   if( strProtocol.Equals("ftp")
664   ||  strProtocol.Equals("ftps") )
665   {
666     // we was using url optons for urls, keep the old code work and warning
667     if (!url2.GetOptions().empty())
668     {
669       CLog::Log(LOGWARNING, "%s: ftp url option is deprecated, please switch to use protocol option (change '?' to '|'), url: [%s]", __FUNCTION__, url2.GetRedacted().c_str());
670       url2.SetProtocolOptions(url2.GetOptions().substr(1));
671       /* ftp has no options */
672       url2.SetOptions("");
673     }
674
675     /* this is uggly, depending on from where   */
676     /* we get the link it may or may not be     */
677     /* url encoded. if handed from ftpdirectory */
678     /* it won't be so let's handle that case    */
679
680     CStdString filename(url2.GetFileName());
681     std::vector<std::string> array;
682
683     // if server sent us the filename in non-utf8, we need send back with same encoding.
684     if (url2.GetProtocolOption("utf8") == "0")
685       g_charsetConverter.utf8ToStringCharset(filename);
686
687     /* TODO: create a tokenizer that doesn't skip empty's */
688     StringUtils::Tokenize(filename, array, "/");
689     filename.clear();
690     for(std::vector<std::string>::iterator it = array.begin(); it != array.end(); it++)
691     {
692       if(it != array.begin())
693         filename += "/";
694
695       filename += CURL::Encode(*it);
696     }
697
698     /* make sure we keep slashes */
699     if(StringUtils::EndsWith(url2.GetFileName(), "/"))
700       filename += "/";
701
702     url2.SetFileName(filename);
703
704     m_ftpauth = "";
705     if (url2.HasProtocolOption("auth"))
706     {
707       m_ftpauth = url2.GetProtocolOption("auth");
708       if(m_ftpauth.empty())
709         m_ftpauth = "any";
710     }
711     m_ftpport = "";
712     if (url2.HasProtocolOption("active"))
713     {
714       m_ftpport = url2.GetProtocolOption("active");
715       if(m_ftpport.empty())
716         m_ftpport = "-";
717     }
718     m_ftppasvip = url2.HasProtocolOption("pasvip") && url2.GetProtocolOption("pasvip") != "0";
719   }
720   else if( strProtocol.Equals("http")
721        ||  strProtocol.Equals("https"))
722   {
723     if (CSettings::Get().GetBool("network.usehttpproxy")
724         && !CSettings::Get().GetString("network.httpproxyserver").empty()
725         && CSettings::Get().GetInt("network.httpproxyport") > 0
726         && m_proxy.empty())
727     {
728       m_proxy = CSettings::Get().GetString("network.httpproxyserver");
729       m_proxy += StringUtils::Format(":%d", CSettings::Get().GetInt("network.httpproxyport"));
730       if (CSettings::Get().GetString("network.httpproxyusername").length() > 0 && m_proxyuserpass.empty())
731       {
732         m_proxyuserpass = CSettings::Get().GetString("network.httpproxyusername");
733         m_proxyuserpass += ":" + CSettings::Get().GetString("network.httpproxypassword");
734       }
735       m_proxytype = (ProxyType)CSettings::Get().GetInt("network.httpproxytype");
736       CLog::Log(LOGDEBUG, "Using proxy %s, type %d", m_proxy.c_str(), proxyType2CUrlProxyType[m_proxytype]);
737     }
738
739     // get username and password
740     m_username = url2.GetUserName();
741     m_password = url2.GetPassWord();
742
743     // handle any protocol options
744     std::map<CStdString, CStdString> options;
745     url2.GetProtocolOptions(options);
746     if (options.size() > 0)
747     {
748       // clear protocol options
749       url2.SetProtocolOptions("");
750       // set xbmc headers
751       for(std::map<CStdString, CStdString>::const_iterator it = options.begin(); it != options.end(); ++it)
752       {
753         const CStdString &name = it->first;
754         const CStdString &value = it->second;
755
756         if(name.Equals("auth"))
757         {
758           m_httpauth = value;
759           if(m_httpauth.empty())
760             m_httpauth = "any";
761         }
762         else if (name.Equals("Referer"))
763           SetReferer(value);
764         else if (name.Equals("User-Agent"))
765           SetUserAgent(value);
766         else if (name.Equals("Cookie"))
767           SetCookie(value);
768         else if (name.Equals("Encoding"))
769           SetContentEncoding(value);
770         else if (name.Equals("noshout") && value.Equals("true"))
771           m_skipshout = true;
772         else if (name.Equals("seekable") && value.Equals("0"))
773           m_seekable = false;
774         else if (name.Equals("Accept-Charset"))
775           SetAcceptCharset(value);
776         else if (name.Equals("HttpProxy"))
777           SetStreamProxy(value, PROXY_HTTP);
778         else if (name.Equals("SSLCipherList"))
779           m_cipherlist = value;
780         else
781           SetRequestHeader(name, value);
782       }
783     }
784   }
785
786   if (m_username.length() > 0 && m_password.length() > 0)
787     m_url = url2.GetWithoutUserDetails();
788   else
789     m_url = url2.Get();
790 }
791
792 void CCurlFile::SetStreamProxy(const CStdString &proxy, ProxyType type)
793 {
794   CURL url(proxy);
795   m_proxy = url.GetWithoutUserDetails();
796   m_proxyuserpass = url.GetUserName();
797   if (!url.GetPassWord().empty())
798     m_proxyuserpass += ":" + url.GetPassWord();
799   m_proxytype = type;
800   CLog::Log(LOGDEBUG, "Overriding proxy from URL parameter: %s, type %d", m_proxy.c_str(), proxyType2CUrlProxyType[m_proxytype]);
801 }
802
803 bool CCurlFile::Post(const CStdString& strURL, const CStdString& strPostData, CStdString& strHTML)
804 {
805   m_postdata = strPostData;
806   m_postdataset = true;
807   return Service(strURL, strHTML);
808 }
809
810 bool CCurlFile::Get(const CStdString& strURL, CStdString& strHTML)
811 {
812   m_postdata = "";
813   m_postdataset = false;
814   return Service(strURL, strHTML);
815 }
816
817 bool CCurlFile::Service(const CStdString& strURL, CStdString& strHTML)
818 {
819   if (Open(strURL))
820   {
821     if (ReadData(strHTML))
822     {
823       Close();
824       return true;
825     }
826   }
827   Close();
828   return false;
829 }
830
831 bool CCurlFile::ReadData(CStdString& strHTML)
832 {
833   int size_read = 0;
834   int data_size = 0;
835   strHTML = "";
836   char buffer[16384];
837   while( (size_read = Read(buffer, sizeof(buffer)-1) ) > 0 )
838   {
839     buffer[size_read] = 0;
840     strHTML.append(buffer, size_read);
841     data_size += size_read;
842   }
843   if (m_state->m_cancelled)
844     return false;
845   return true;
846 }
847
848 bool CCurlFile::Download(const CStdString& strURL, const CStdString& strFileName, LPDWORD pdwSize)
849 {
850   CLog::Log(LOGINFO, "CCurlFile::Download - %s->%s", strURL.c_str(), strFileName.c_str());
851
852   CStdString strData;
853   if (!Get(strURL, strData))
854     return false;
855
856   XFILE::CFile file;
857   if (!file.OpenForWrite(strFileName, true))
858   {
859     CLog::Log(LOGERROR, "CCurlFile::Download - Unable to open file %s: %u",
860     strFileName.c_str(), GetLastError());
861     return false;
862   }
863   if (strData.size())
864     file.Write(strData.c_str(), strData.size());
865   file.Close();
866
867   if (pdwSize != NULL)
868   {
869     *pdwSize = strData.size();
870   }
871
872   return true;
873 }
874
875 // Detect whether we are "online" or not! Very simple and dirty!
876 bool CCurlFile::IsInternet()
877 {
878   CStdString strURL = "http://www.google.com";
879   bool found = Exists(strURL);
880   Close();
881
882   return found;
883 }
884
885 void CCurlFile::Cancel()
886 {
887   m_state->m_cancelled = true;
888   while (m_opened)
889     Sleep(1);
890 }
891
892 void CCurlFile::Reset()
893 {
894   m_state->m_cancelled = false;
895 }
896
897 bool CCurlFile::Open(const CURL& url)
898 {
899   m_opened = true;
900   m_seekable = true;
901
902   CURL url2(url);
903   ParseAndCorrectUrl(url2);
904
905   std::string redactPath = CURL::GetRedacted(m_url);
906   CLog::Log(LOGDEBUG, "CurlFile::Open(%p) %s", (void*)this, redactPath.c_str());
907
908   ASSERT(!(!m_state->m_easyHandle ^ !m_state->m_multiHandle));
909   if( m_state->m_easyHandle == NULL )
910     g_curlInterface.easy_aquire(url2.GetProtocol(), url2.GetHostName(), &m_state->m_easyHandle, &m_state->m_multiHandle );
911
912   // setup common curl options
913   SetCommonOptions(m_state);
914   SetRequestHeaders(m_state);
915   m_state->m_sendRange = m_seekable;
916
917   m_httpresponse = m_state->Connect(m_bufferSize);
918   if( m_httpresponse < 0 || m_httpresponse >= 400)
919     return false;
920
921   SetCorrectHeaders(m_state);
922
923   // since we can't know the stream size up front if we're gzipped/deflated
924   // flag the stream with an unknown file size rather than the compressed
925   // file size.
926   if (m_contentencoding.size() > 0)
927     m_state->m_fileSize = 0;
928
929   // check if this stream is a shoutcast stream. sometimes checking the protocol line is not enough so examine other headers as well.
930   // shoutcast streams should be handled by FileShoutcast.
931   if ((m_state->m_httpheader.GetProtoLine().substr(0, 3) == "ICY" || !m_state->m_httpheader.GetValue("icy-notice1").empty()
932      || !m_state->m_httpheader.GetValue("icy-name").empty()
933      || !m_state->m_httpheader.GetValue("icy-br").empty()) && !m_skipshout)
934   {
935     CLog::Log(LOGDEBUG,"CCurlFile::Open - File <%s> is a shoutcast stream. Re-opening", redactPath.c_str());
936     throw new CRedirectException(new CShoutcastFile);
937   }
938
939   m_multisession = false;
940   if(url2.GetProtocol().Equals("http") || url2.GetProtocol().Equals("https"))
941   {
942     m_multisession = true;
943     if(m_state->m_httpheader.GetValue("Server").find("Portable SDK for UPnP devices") != std::string::npos)
944     {
945       CLog::Log(LOGWARNING, "CCurlFile::Open - Disabling multi session due to broken libupnp server");
946       m_multisession = false;
947     }
948   }
949
950   if(StringUtils::EqualsNoCase(m_state->m_httpheader.GetValue("Transfer-Encoding"), "chunked"))
951     m_state->m_fileSize = 0;
952
953   if(m_state->m_fileSize <= 0)
954     m_seekable = false;
955   if (m_seekable)
956   {
957     if(url2.GetProtocol().Equals("http")
958     || url2.GetProtocol().Equals("https"))
959     {
960       // if server says explicitly it can't seek, respect that
961       if(StringUtils::EqualsNoCase(m_state->m_httpheader.GetValue("Accept-Ranges"),"none"))
962         m_seekable = false;
963     }
964   }
965
966   char* efurl;
967   if (CURLE_OK == g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_EFFECTIVE_URL,&efurl) && efurl)
968     m_url = efurl;
969
970   return true;
971 }
972
973 bool CCurlFile::OpenForWrite(const CURL& url, bool bOverWrite)
974 {
975   if(m_opened)
976     return false;
977
978   if (Exists(url) && !bOverWrite)
979     return false;
980
981   CURL url2(url);
982   ParseAndCorrectUrl(url2);
983
984   CLog::Log(LOGDEBUG, "CCurlFile::OpenForWrite(%p) %s", (void*)this, CURL::GetRedacted(m_url).c_str());
985
986   ASSERT(m_state->m_easyHandle == NULL);
987   g_curlInterface.easy_aquire(url2.GetProtocol(), url2.GetHostName(), &m_state->m_easyHandle, &m_state->m_multiHandle);
988
989     // setup common curl options
990   SetCommonOptions(m_state);
991   SetRequestHeaders(m_state);
992
993   char* efurl;
994   if (CURLE_OK == g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_EFFECTIVE_URL,&efurl) && efurl)
995     m_url = efurl;
996
997   m_opened = true;
998   m_forWrite = true;
999   m_inError = false;
1000   m_writeOffset = 0;
1001
1002   ASSERT(m_state->m_multiHandle);
1003
1004   SetCommonOptions(m_state); 
1005   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_UPLOAD, 1);
1006
1007   g_curlInterface.multi_add_handle(m_state->m_multiHandle, m_state->m_easyHandle);
1008
1009   m_state->SetReadBuffer(NULL, 0);
1010
1011   return true;
1012 }
1013
1014 int CCurlFile::Write(const void* lpBuf, int64_t uiBufSize)
1015 {
1016   if (!(m_opened && m_forWrite) || m_inError)
1017     return -1;
1018
1019   ASSERT(m_state->m_multiHandle);
1020
1021   m_state->SetReadBuffer(lpBuf, uiBufSize);
1022   m_state->m_isPaused = false;
1023   g_curlInterface.easy_pause(m_state->m_easyHandle, CURLPAUSE_CONT);
1024
1025   CURLMcode result = CURLM_OK;
1026
1027   m_stillRunning = 1;
1028   while (m_stillRunning && !m_state->m_isPaused)
1029   {
1030     while ((result = g_curlInterface.multi_perform(m_state->m_multiHandle, &m_stillRunning)) == CURLM_CALL_MULTI_PERFORM);
1031
1032     if (!m_stillRunning)
1033       break;
1034
1035     if (result != CURLM_OK)
1036     {
1037       long code;
1038       if(g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_RESPONSE_CODE, &code) == CURLE_OK )
1039         CLog::Log(LOGERROR, "%s - Unable to write curl resource (%s) - %ld", __FUNCTION__, CURL::GetRedacted(m_url).c_str(), code);
1040       m_inError = true;
1041       return -1;
1042     }
1043   }
1044
1045   m_writeOffset += m_state->m_filePos;
1046   return m_state->m_filePos;
1047 }
1048
1049 bool CCurlFile::CReadState::ReadString(char *szLine, int iLineLength)
1050 {
1051   unsigned int want = (unsigned int)iLineLength;
1052
1053   if((m_fileSize == 0 || m_filePos < m_fileSize) && !FillBuffer(want))
1054     return false;
1055
1056   // ensure only available data is considered
1057   want = XMIN((unsigned int)m_buffer.getMaxReadSize(), want);
1058
1059   /* check if we finished prematurely */
1060   if (!m_stillRunning && (m_fileSize == 0 || m_filePos != m_fileSize) && !want)
1061   {
1062     if (m_fileSize != 0)
1063       CLog::Log(LOGWARNING, "%s - Transfer ended before entire file was retrieved pos %"PRId64", size %"PRId64, __FUNCTION__, m_filePos, m_fileSize);
1064
1065     return false;
1066   }
1067
1068   char* pLine = szLine;
1069   do
1070   {
1071     if (!m_buffer.ReadData(pLine, 1))
1072       break;
1073
1074     pLine++;
1075   } while (((pLine - 1)[0] != '\n') && ((unsigned int)(pLine - szLine) < want));
1076   pLine[0] = 0;
1077   m_filePos += (pLine - szLine);
1078   return (bool)((pLine - szLine) > 0);
1079 }
1080
1081 bool CCurlFile::Exists(const CURL& url)
1082 {
1083   // if file is already running, get info from it
1084   if( m_opened )
1085   {
1086     CLog::Log(LOGWARNING, "CCurlFile::Exists - Exist called on open file %s", url.GetRedacted().c_str());
1087     return true;
1088   }
1089
1090   CURL url2(url);
1091   ParseAndCorrectUrl(url2);
1092
1093   ASSERT(m_state->m_easyHandle == NULL);
1094   g_curlInterface.easy_aquire(url2.GetProtocol(), url2.GetHostName(), &m_state->m_easyHandle, NULL);
1095
1096   SetCommonOptions(m_state);
1097   SetRequestHeaders(m_state);
1098   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_TIMEOUT, 5);
1099   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_NOBODY, 1);
1100   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_WRITEDATA, NULL); /* will cause write failure*/
1101
1102   if(url2.GetProtocol() == "ftp")
1103   {
1104     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FILETIME, 1);
1105     // nocwd is less standard, will return empty list for non-existed remote dir on some ftp server, avoid it.
1106     if (StringUtils::EndsWith(url2.GetFileName(), "/"))
1107       g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_SINGLECWD);
1108     else
1109       g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_NOCWD);
1110   }
1111
1112   CURLcode result = g_curlInterface.easy_perform(m_state->m_easyHandle);
1113   g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
1114
1115   if (result == CURLE_WRITE_ERROR || result == CURLE_OK)
1116     return true;
1117
1118   if (result == CURLE_HTTP_RETURNED_ERROR)
1119   {
1120     long code;
1121     if(g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_RESPONSE_CODE, &code) == CURLE_OK && code != 404 )
1122       CLog::Log(LOGERROR, "CCurlFile::Exists - Failed: HTTP returned error %ld for %s", code, url.GetRedacted().c_str());
1123   }
1124   else if (result != CURLE_REMOTE_FILE_NOT_FOUND && result != CURLE_FTP_COULDNT_RETR_FILE)
1125   {
1126     CLog::Log(LOGERROR, "CCurlFile::Exists - Failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
1127   }
1128
1129   errno = ENOENT;
1130   return false;
1131 }
1132
1133 int64_t CCurlFile::Seek(int64_t iFilePosition, int iWhence)
1134 {
1135   int64_t nextPos = m_state->m_filePos;
1136   
1137   if(!m_seekable)
1138     return -1;
1139
1140   switch(iWhence)
1141   {
1142     case SEEK_SET:
1143       nextPos = iFilePosition;
1144       break;
1145     case SEEK_CUR:
1146       nextPos += iFilePosition;
1147       break;
1148     case SEEK_END:
1149       if (m_state->m_fileSize)
1150         nextPos = m_state->m_fileSize + iFilePosition;
1151       else
1152         return -1;
1153       break;
1154     default:
1155       return -1;
1156   }
1157
1158   // We can't seek beyond EOF
1159   if (m_state->m_fileSize && nextPos > m_state->m_fileSize) return -1;
1160
1161   if(m_state->Seek(nextPos))
1162     return nextPos;
1163
1164   if (m_multisession)
1165   {
1166     if (!m_oldState)
1167     {
1168       CURL url(m_url);
1169       m_oldState          = m_state;
1170       m_state             = new CReadState();
1171       m_state->m_fileSize = m_oldState->m_fileSize;
1172       g_curlInterface.easy_aquire(url.GetProtocol(),
1173                                   url.GetHostName(),
1174                                   &m_state->m_easyHandle,
1175                                   &m_state->m_multiHandle );
1176     }
1177     else
1178     {
1179       CReadState *tmp;
1180       tmp         = m_state;
1181       m_state     = m_oldState;
1182       m_oldState  = tmp;
1183
1184       if (m_state->Seek(nextPos))
1185         return nextPos;
1186       
1187       m_state->Disconnect();
1188     }
1189   }
1190   else
1191     m_state->Disconnect();
1192
1193   // re-setup common curl options
1194   SetCommonOptions(m_state);
1195
1196   /* caller might have changed some headers (needed for daap)*/
1197   SetRequestHeaders(m_state);
1198
1199   m_state->m_filePos = nextPos;
1200   m_state->m_sendRange = true;
1201
1202   long response = m_state->Connect(m_bufferSize);
1203   if(response < 0 && (m_state->m_fileSize == 0 || m_state->m_fileSize != m_state->m_filePos))
1204   {
1205     if(m_multisession)
1206     {
1207       if (m_oldState)
1208       {
1209         delete m_state;
1210         m_state     = m_oldState;
1211         m_oldState  = NULL;
1212       }
1213       // Retry without mutlisession
1214       m_multisession = false;
1215       return Seek(iFilePosition, iWhence);
1216     }
1217     else
1218     {
1219       m_seekable = false;
1220       return -1;
1221     } 
1222   }
1223
1224   SetCorrectHeaders(m_state);
1225
1226   return m_state->m_filePos;
1227 }
1228
1229 int64_t CCurlFile::GetLength()
1230 {
1231   if (!m_opened) return 0;
1232   return m_state->m_fileSize;
1233 }
1234
1235 int64_t CCurlFile::GetPosition()
1236 {
1237   if (!m_opened) return 0;
1238   return m_state->m_filePos;
1239 }
1240
1241 int CCurlFile::Stat(const CURL& url, struct __stat64* buffer)
1242 {
1243   // if file is already running, get info from it
1244   if( m_opened )
1245   {
1246     CLog::Log(LOGWARNING, "CCurlFile::Stat - Stat called on open file %s", url.GetRedacted().c_str());
1247     if (buffer)
1248     {
1249       memset(buffer, 0, sizeof(struct __stat64));
1250       buffer->st_size = GetLength();
1251       buffer->st_mode = _S_IFREG;
1252     }
1253     return 0;
1254   }
1255
1256   CURL url2(url);
1257   ParseAndCorrectUrl(url2);
1258
1259   ASSERT(m_state->m_easyHandle == NULL);
1260   g_curlInterface.easy_aquire(url2.GetProtocol(), url2.GetHostName(), &m_state->m_easyHandle, NULL);
1261
1262   SetCommonOptions(m_state);
1263   SetRequestHeaders(m_state);
1264   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_TIMEOUT, g_advancedSettings.m_curlconnecttimeout);
1265   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_NOBODY, 1);
1266   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_WRITEDATA, NULL); /* will cause write failure*/
1267   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FILETIME , 1); 
1268
1269   if(url2.GetProtocol() == "ftp")
1270   {
1271     // nocwd is less standard, will return empty list for non-existed remote dir on some ftp server, avoid it.
1272     if (StringUtils::EndsWith(url2.GetFileName(), "/"))
1273       g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_SINGLECWD);
1274     else
1275       g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_NOCWD);
1276   }
1277
1278   CURLcode result = g_curlInterface.easy_perform(m_state->m_easyHandle);
1279
1280   if(result == CURLE_HTTP_RETURNED_ERROR)
1281   {
1282     long code;
1283     if(g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_RESPONSE_CODE, &code) == CURLE_OK && code == 404 )
1284       return -1;
1285   }
1286
1287   if(result == CURLE_GOT_NOTHING 
1288   || result == CURLE_HTTP_RETURNED_ERROR 
1289   || result == CURLE_RECV_ERROR /* some silly shoutcast servers */ )
1290   {
1291     /* some http servers and shoutcast servers don't give us any data on a head request */
1292     /* request normal and just fail out, it's their loss */
1293     /* somehow curl doesn't reset CURLOPT_NOBODY properly so reset everything */
1294     SetCommonOptions(m_state);
1295     SetRequestHeaders(m_state);
1296     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_TIMEOUT, g_advancedSettings.m_curlconnecttimeout);
1297     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_RANGE, "0-0");
1298     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_WRITEDATA, NULL); /* will cause write failure*/
1299     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FILETIME, 1); 
1300     result = g_curlInterface.easy_perform(m_state->m_easyHandle);
1301   }
1302
1303   if( result == CURLE_HTTP_RANGE_ERROR )
1304   {
1305     /* crap can't use the range option, disable it and try again */
1306     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_RANGE, NULL);
1307     result = g_curlInterface.easy_perform(m_state->m_easyHandle);
1308   }
1309
1310   if( result != CURLE_WRITE_ERROR && result != CURLE_OK )
1311   {
1312     g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
1313     errno = ENOENT;
1314     CLog::Log(LOGERROR, "CCurlFile::Stat - Failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
1315     return -1;
1316   }
1317
1318   double length;
1319   result = g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &length);
1320   if (result != CURLE_OK || length < 0.0)
1321   {
1322     if (url.GetProtocol() == "ftp")
1323     {
1324       g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
1325       CLog::Log(LOGNOTICE, "CCurlFile::Stat - Content length failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
1326       errno = ENOENT;
1327       return -1;
1328     }
1329     else
1330       length = 0.0;
1331   }
1332
1333   SetCorrectHeaders(m_state);
1334
1335   if(buffer)
1336   {
1337     char *content;
1338     result = g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_CONTENT_TYPE, &content);
1339     if (result != CURLE_OK)
1340     {
1341       CLog::Log(LOGNOTICE, "CCurlFile::Stat - Content type failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
1342       g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
1343       errno = ENOENT;
1344       return -1;
1345     }
1346     else
1347     {
1348       memset(buffer, 0, sizeof(struct __stat64));
1349       buffer->st_size = (int64_t)length;
1350       if(content && strstr(content, "text/html")) //consider html files directories
1351         buffer->st_mode = _S_IFDIR;
1352       else
1353         buffer->st_mode = _S_IFREG;
1354     }
1355     long filetime;
1356     result = g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_FILETIME, &filetime);
1357     if (result != CURLE_OK)
1358     {
1359       CLog::Log(LOGNOTICE, "CCurlFile::Stat - Filetime failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
1360     }
1361     else
1362     {
1363       if (filetime != -1)
1364         buffer->st_mtime = filetime;
1365     }
1366   }
1367   g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
1368   return 0;
1369 }
1370
1371 unsigned int CCurlFile::CReadState::Read(void* lpBuf, int64_t uiBufSize)
1372 {
1373   /* only request 1 byte, for truncated reads (only if not eof) */
1374   if((m_fileSize == 0 || m_filePos < m_fileSize) && !FillBuffer(1))
1375     return 0;
1376
1377   /* ensure only available data is considered */
1378   unsigned int want = (unsigned int)XMIN(m_buffer.getMaxReadSize(), uiBufSize);
1379
1380   /* xfer data to caller */
1381   if (m_buffer.ReadData((char *)lpBuf, want))
1382   {
1383     m_filePos += want;
1384     return want;
1385   }
1386
1387   /* check if we finished prematurely */
1388   if (!m_stillRunning && (m_fileSize == 0 || m_filePos != m_fileSize))
1389   {
1390     CLog::Log(LOGWARNING, "%s - Transfer ended before entire file was retrieved pos %"PRId64", size %"PRId64, __FUNCTION__, m_filePos, m_fileSize);
1391     return 0;
1392   }
1393
1394   return 0;
1395 }
1396
1397 /* use to attempt to fill the read buffer up to requested number of bytes */
1398 bool CCurlFile::CReadState::FillBuffer(unsigned int want)
1399 {
1400   int retry = 0;
1401   fd_set fdread;
1402   fd_set fdwrite;
1403   fd_set fdexcep;
1404
1405   // only attempt to fill buffer if transactions still running and buffer
1406   // doesnt exceed required size already
1407   while ((unsigned int)m_buffer.getMaxReadSize() < want && m_buffer.getMaxWriteSize() > 0 )
1408   {
1409     if (m_cancelled)
1410       return false;
1411
1412     /* if there is data in overflow buffer, try to use that first */
1413     if (m_overflowSize)
1414     {
1415       unsigned amount = XMIN((unsigned int)m_buffer.getMaxWriteSize(), m_overflowSize);
1416       m_buffer.WriteData(m_overflowBuffer, amount);
1417
1418       if (amount < m_overflowSize)
1419         memcpy(m_overflowBuffer, m_overflowBuffer+amount,m_overflowSize-amount);
1420
1421       m_overflowSize -= amount;
1422       m_overflowBuffer = (char*)realloc_simple(m_overflowBuffer, m_overflowSize);
1423       continue;
1424     }
1425
1426     CURLMcode result = g_curlInterface.multi_perform(m_multiHandle, &m_stillRunning);
1427     if (!m_stillRunning)
1428     {
1429       if (result == CURLM_OK)
1430       {
1431         /* if we still have stuff in buffer, we are fine */
1432         if (m_buffer.getMaxReadSize())
1433           return true;
1434
1435         /* verify that we are actually okey */
1436         int msgs;
1437         CURLcode CURLresult = CURLE_OK;
1438         CURLMsg* msg;
1439         while ((msg = g_curlInterface.multi_info_read(m_multiHandle, &msgs)))
1440         {
1441           if (msg->msg == CURLMSG_DONE)
1442           {
1443             if (msg->data.result == CURLE_OK)
1444               return true;
1445
1446             CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Failed: %s(%d)", g_curlInterface.easy_strerror(msg->data.result), msg->data.result);
1447
1448             // We need to check the result here as we don't want to retry on every error
1449             if ( (msg->data.result == CURLE_OPERATION_TIMEDOUT ||
1450                   msg->data.result == CURLE_PARTIAL_FILE       ||
1451                   msg->data.result == CURLE_COULDNT_CONNECT    ||
1452                   msg->data.result == CURLE_RECV_ERROR)        &&
1453                   !m_bFirstLoop)
1454               CURLresult = msg->data.result;
1455             else if ( (msg->data.result == CURLE_HTTP_RANGE_ERROR     ||
1456                        msg->data.result == CURLE_HTTP_RETURNED_ERROR) &&
1457                        m_bFirstLoop                                   &&
1458                        m_filePos == 0                                 &&
1459                        m_sendRange)
1460             {
1461               // If server returns a range or http error, retry with range disabled
1462               CURLresult = msg->data.result;
1463               m_sendRange = false;
1464             }
1465             else
1466               return false;
1467           }
1468         }
1469
1470         // Don't retry when we didn't "see" any error
1471         if (CURLresult == CURLE_OK)
1472           return false;
1473
1474         // Close handle
1475         if (m_multiHandle && m_easyHandle)
1476           g_curlInterface.multi_remove_handle(m_multiHandle, m_easyHandle);
1477
1478         // Reset all the stuff like we would in Disconnect()
1479         m_buffer.Clear();
1480         free(m_overflowBuffer);
1481         m_overflowBuffer = NULL;
1482         m_overflowSize = 0;
1483
1484         // If we got here something is wrong
1485         if (++retry > g_advancedSettings.m_curlretries)
1486         {
1487           CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Reconnect failed!");
1488           // Reset the rest of the variables like we would in Disconnect()
1489           m_filePos = 0;
1490           m_fileSize = 0;
1491           m_bufferSize = 0;
1492
1493           return false;
1494         }
1495
1496         CLog::Log(LOGNOTICE, "CCurlFile::FillBuffer - Reconnect, (re)try %i", retry);
1497
1498         // Connect + seek to current position (again)
1499         SetResume();
1500         g_curlInterface.multi_add_handle(m_multiHandle, m_easyHandle);
1501
1502         // Return to the beginning of the loop:
1503         continue;
1504       }
1505       return false;
1506     }
1507
1508     // We've finished out first loop
1509     if(m_bFirstLoop && m_buffer.getMaxReadSize() > 0)
1510       m_bFirstLoop = false;
1511
1512     switch (result)
1513     {
1514       case CURLM_OK:
1515       {
1516         int maxfd = -1;
1517         FD_ZERO(&fdread);
1518         FD_ZERO(&fdwrite);
1519         FD_ZERO(&fdexcep);
1520
1521         // get file descriptors from the transfers
1522         g_curlInterface.multi_fdset(m_multiHandle, &fdread, &fdwrite, &fdexcep, &maxfd);
1523
1524         long timeout = 0;
1525         if (CURLM_OK != g_curlInterface.multi_timeout(m_multiHandle, &timeout) || timeout == -1)
1526           timeout = 200;
1527
1528         XbmcThreads::EndTime endTime(timeout);
1529         int rc;
1530
1531         do
1532         {
1533           unsigned int time_left = endTime.MillisLeft();
1534           struct timeval t = { time_left / 1000, (time_left % 1000) * 1000 };
1535
1536           // Wait until data is available or a timeout occurs.
1537           rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &t);
1538 #ifdef TARGET_WINDOWS
1539         } while(rc == SOCKET_ERROR && WSAGetLastError() == WSAEINTR);
1540 #else
1541         } while(rc == SOCKET_ERROR && errno == EINTR);
1542 #endif
1543
1544         if(rc == SOCKET_ERROR)
1545         {
1546 #ifdef TARGET_WINDOWS
1547           char buf[256];
1548           strerror_s(buf, 256, WSAGetLastError());
1549           CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Failed with socket error:%s", buf);
1550 #else
1551           char const * str = strerror(errno);
1552           CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Failed with socket error:%s", str);
1553 #endif
1554
1555           return false;
1556         }
1557       }
1558       break;
1559       case CURLM_CALL_MULTI_PERFORM:
1560       {
1561         // we don't keep calling here as that can easily overwrite our buffer which we want to avoid
1562         // docs says we should call it soon after, but aslong as we are reading data somewhere
1563         // this aught to be soon enough. should stay in socket otherwise
1564         continue;
1565       }
1566       break;
1567       default:
1568       {
1569         CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Multi perform failed with code %d, aborting", result);
1570         return false;
1571       }
1572       break;
1573     }
1574   }
1575   return true;
1576 }
1577
1578 void CCurlFile::CReadState::SetReadBuffer(const void* lpBuf, int64_t uiBufSize)
1579 {
1580   m_readBuffer = (char*)lpBuf;
1581   m_fileSize = uiBufSize;
1582   m_filePos = 0;
1583 }
1584
1585 void CCurlFile::ClearRequestHeaders()
1586 {
1587   m_requestheaders.clear();
1588 }
1589
1590 void CCurlFile::SetRequestHeader(CStdString header, CStdString value)
1591 {
1592   m_requestheaders[header] = value;
1593 }
1594
1595 void CCurlFile::SetRequestHeader(CStdString header, long value)
1596 {
1597   m_requestheaders[header] = StringUtils::Format("%ld", value);
1598 }
1599
1600 std::string CCurlFile::GetServerReportedCharset(void)
1601 {
1602   if (!m_state)
1603     return "";
1604
1605   return m_state->m_httpheader.GetCharset();
1606 }
1607
1608 /* STATIC FUNCTIONS */
1609 bool CCurlFile::GetHttpHeader(const CURL &url, CHttpHeader &headers)
1610 {
1611   try
1612   {
1613     CCurlFile file;
1614     if(file.Stat(url, NULL) == 0)
1615     {
1616       headers = file.GetHttpHeader();
1617       return true;
1618     }
1619     return false;
1620   }
1621   catch(...)
1622   {
1623     CLog::Log(LOGERROR, "%s - Exception thrown while trying to retrieve header url: %s", __FUNCTION__, url.GetRedacted().c_str());
1624     return false;
1625   }
1626 }
1627
1628 bool CCurlFile::GetMimeType(const CURL &url, CStdString &content, CStdString useragent)
1629 {
1630   CCurlFile file;
1631   if (!useragent.empty())
1632     file.SetUserAgent(useragent);
1633
1634   struct __stat64 buffer;
1635   std::string redactUrl = url.GetRedacted();
1636   if( file.Stat(url, &buffer) == 0 )
1637   {
1638     if (buffer.st_mode == _S_IFDIR)
1639       content = "x-directory/normal";
1640     else
1641       content = file.GetMimeType();
1642     CLog::Log(LOGDEBUG, "CCurlFile::GetMimeType - %s -> %s", redactUrl.c_str(), content.c_str());
1643     return true;
1644   }
1645   CLog::Log(LOGDEBUG, "CCurlFile::GetMimeType - %s -> failed", redactUrl.c_str());
1646   content = "";
1647   return false;
1648 }
1649
1650 bool CCurlFile::GetCookies(const CURL &url, std::string &cookies)
1651 {
1652   std::string cookiesStr;
1653   struct curl_slist*     curlCookies;
1654   XCURL::CURL_HANDLE*    easyHandle;
1655   XCURL::CURLM*          multiHandle;
1656
1657   // get the cookies list
1658   g_curlInterface.easy_aquire(url.GetProtocol(), url.GetHostName(), &easyHandle, &multiHandle);
1659   if (CURLE_OK == g_curlInterface.easy_getinfo(easyHandle, CURLINFO_COOKIELIST, &curlCookies))
1660   {
1661     // iterate over each cookie and format it into an RFC 2109 formatted Set-Cookie string
1662     struct curl_slist* curlCookieIter = curlCookies;
1663     while(curlCookieIter)
1664     {
1665       // tokenize the CURL cookie string
1666       std::vector<std::string> valuesVec;
1667       StringUtils::Tokenize(curlCookieIter->data, valuesVec, "\t");
1668
1669       // ensure the length is valid
1670       if (valuesVec.size() < 7)
1671       {
1672         CLog::Log(LOGERROR, "CCurlFile::GetCookies - invalid cookie: '%s'", curlCookieIter->data);
1673         curlCookieIter = curlCookieIter->next;
1674         continue;
1675       }
1676
1677       // create a http-header formatted cookie string
1678       std::string cookieStr = valuesVec[5] + "=" + valuesVec[6] +
1679                               "; path=" + valuesVec[2] +
1680                               "; domain=" + valuesVec[0];
1681
1682       // append this cookie to the string containing all cookies
1683       if (!cookiesStr.empty())
1684         cookiesStr += "\n";
1685       cookiesStr += cookieStr;
1686
1687       // move on to the next cookie
1688       curlCookieIter = curlCookieIter->next;
1689     }
1690
1691     // free the curl cookies
1692     g_curlInterface.slist_free_all(curlCookies);
1693
1694     // release our handles
1695     g_curlInterface.easy_release(&easyHandle, &multiHandle);
1696
1697     // if we have a non-empty cookie string, return it
1698     if (!cookiesStr.empty())
1699     {
1700       cookies = cookiesStr;
1701       return true;
1702     }
1703   }
1704
1705   // no cookies to return
1706   return false;
1707 }
1708
1709 int CCurlFile::IoControl(EIoControl request, void* param)
1710 {
1711   if(request == IOCTRL_SEEK_POSSIBLE)
1712     return m_seekable ? 1 : 0;
1713
1714   return -1;
1715 }