Merge pull request #5039 from CEikermann/patch-1
[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       // set xbmc headers
749       for(std::map<CStdString, CStdString>::const_iterator it = options.begin(); it != options.end(); ++it)
750       {
751         const CStdString &name = it->first;
752         const CStdString &value = it->second;
753
754         if(name.Equals("auth"))
755         {
756           m_httpauth = value;
757           if(m_httpauth.empty())
758             m_httpauth = "any";
759         }
760         else if (name.Equals("Referer"))
761           SetReferer(value);
762         else if (name.Equals("User-Agent"))
763           SetUserAgent(value);
764         else if (name.Equals("Cookie"))
765           SetCookie(value);
766         else if (name.Equals("Encoding"))
767           SetContentEncoding(value);
768         else if (name.Equals("noshout") && value.Equals("true"))
769           m_skipshout = true;
770         else if (name.Equals("seekable") && value.Equals("0"))
771           m_seekable = false;
772         else if (name.Equals("Accept-Charset"))
773           SetAcceptCharset(value);
774         else if (name.Equals("HttpProxy"))
775           SetStreamProxy(value, PROXY_HTTP);
776         else if (name.Equals("SSLCipherList"))
777           m_cipherlist = value;
778         else
779           SetRequestHeader(name, value);
780       }
781     }
782   }
783   
784   // Unset the protocol options to have an url without protocol options
785   url2.SetProtocolOptions("");
786
787   if (m_username.length() > 0 && m_password.length() > 0)
788     m_url = url2.GetWithoutUserDetails();
789   else
790     m_url = url2.Get();
791 }
792
793 void CCurlFile::SetStreamProxy(const CStdString &proxy, ProxyType type)
794 {
795   CURL url(proxy);
796   m_proxy = url.GetWithoutUserDetails();
797   m_proxyuserpass = url.GetUserName();
798   if (!url.GetPassWord().empty())
799     m_proxyuserpass += ":" + url.GetPassWord();
800   m_proxytype = type;
801   CLog::Log(LOGDEBUG, "Overriding proxy from URL parameter: %s, type %d", m_proxy.c_str(), proxyType2CUrlProxyType[m_proxytype]);
802 }
803
804 bool CCurlFile::Post(const CStdString& strURL, const CStdString& strPostData, CStdString& strHTML)
805 {
806   m_postdata = strPostData;
807   m_postdataset = true;
808   return Service(strURL, strHTML);
809 }
810
811 bool CCurlFile::Get(const CStdString& strURL, CStdString& strHTML)
812 {
813   m_postdata = "";
814   m_postdataset = false;
815   return Service(strURL, strHTML);
816 }
817
818 bool CCurlFile::Service(const CStdString& strURL, CStdString& strHTML)
819 {
820   if (Open(strURL))
821   {
822     if (ReadData(strHTML))
823     {
824       Close();
825       return true;
826     }
827   }
828   Close();
829   return false;
830 }
831
832 bool CCurlFile::ReadData(CStdString& strHTML)
833 {
834   int size_read = 0;
835   int data_size = 0;
836   strHTML = "";
837   char buffer[16384];
838   while( (size_read = Read(buffer, sizeof(buffer)-1) ) > 0 )
839   {
840     buffer[size_read] = 0;
841     strHTML.append(buffer, size_read);
842     data_size += size_read;
843   }
844   if (m_state->m_cancelled)
845     return false;
846   return true;
847 }
848
849 bool CCurlFile::Download(const CStdString& strURL, const CStdString& strFileName, LPDWORD pdwSize)
850 {
851   CLog::Log(LOGINFO, "CCurlFile::Download - %s->%s", strURL.c_str(), strFileName.c_str());
852
853   CStdString strData;
854   if (!Get(strURL, strData))
855     return false;
856
857   XFILE::CFile file;
858   if (!file.OpenForWrite(strFileName, true))
859   {
860     CLog::Log(LOGERROR, "CCurlFile::Download - Unable to open file %s: %u",
861     strFileName.c_str(), GetLastError());
862     return false;
863   }
864   if (strData.size())
865     file.Write(strData.c_str(), strData.size());
866   file.Close();
867
868   if (pdwSize != NULL)
869   {
870     *pdwSize = strData.size();
871   }
872
873   return true;
874 }
875
876 // Detect whether we are "online" or not! Very simple and dirty!
877 bool CCurlFile::IsInternet()
878 {
879   CStdString strURL = "http://www.google.com";
880   bool found = Exists(strURL);
881   Close();
882
883   return found;
884 }
885
886 void CCurlFile::Cancel()
887 {
888   m_state->m_cancelled = true;
889   while (m_opened)
890     Sleep(1);
891 }
892
893 void CCurlFile::Reset()
894 {
895   m_state->m_cancelled = false;
896 }
897
898 bool CCurlFile::Open(const CURL& url)
899 {
900   m_opened = true;
901   m_seekable = true;
902
903   CURL url2(url);
904   ParseAndCorrectUrl(url2);
905
906   std::string redactPath = CURL::GetRedacted(m_url);
907   CLog::Log(LOGDEBUG, "CurlFile::Open(%p) %s", (void*)this, redactPath.c_str());
908
909   ASSERT(!(!m_state->m_easyHandle ^ !m_state->m_multiHandle));
910   if( m_state->m_easyHandle == NULL )
911     g_curlInterface.easy_aquire(url2.GetProtocol(), url2.GetHostName(), &m_state->m_easyHandle, &m_state->m_multiHandle );
912
913   // setup common curl options
914   SetCommonOptions(m_state);
915   SetRequestHeaders(m_state);
916   m_state->m_sendRange = m_seekable;
917
918   m_httpresponse = m_state->Connect(m_bufferSize);
919   if( m_httpresponse < 0 || m_httpresponse >= 400)
920     return false;
921
922   SetCorrectHeaders(m_state);
923
924   // since we can't know the stream size up front if we're gzipped/deflated
925   // flag the stream with an unknown file size rather than the compressed
926   // file size.
927   if (m_contentencoding.size() > 0)
928     m_state->m_fileSize = 0;
929
930   // check if this stream is a shoutcast stream. sometimes checking the protocol line is not enough so examine other headers as well.
931   // shoutcast streams should be handled by FileShoutcast.
932   if ((m_state->m_httpheader.GetProtoLine().substr(0, 3) == "ICY" || !m_state->m_httpheader.GetValue("icy-notice1").empty()
933      || !m_state->m_httpheader.GetValue("icy-name").empty()
934      || !m_state->m_httpheader.GetValue("icy-br").empty()) && !m_skipshout)
935   {
936     CLog::Log(LOGDEBUG,"CCurlFile::Open - File <%s> is a shoutcast stream. Re-opening", redactPath.c_str());
937     throw new CRedirectException(new CShoutcastFile);
938   }
939
940   m_multisession = false;
941   if(url2.GetProtocol().Equals("http") || url2.GetProtocol().Equals("https"))
942   {
943     m_multisession = true;
944     if(m_state->m_httpheader.GetValue("Server").find("Portable SDK for UPnP devices") != std::string::npos)
945     {
946       CLog::Log(LOGWARNING, "CCurlFile::Open - Disabling multi session due to broken libupnp server");
947       m_multisession = false;
948     }
949   }
950
951   if(StringUtils::EqualsNoCase(m_state->m_httpheader.GetValue("Transfer-Encoding"), "chunked"))
952     m_state->m_fileSize = 0;
953
954   if(m_state->m_fileSize <= 0)
955     m_seekable = false;
956   if (m_seekable)
957   {
958     if(url2.GetProtocol().Equals("http")
959     || url2.GetProtocol().Equals("https"))
960     {
961       // if server says explicitly it can't seek, respect that
962       if(StringUtils::EqualsNoCase(m_state->m_httpheader.GetValue("Accept-Ranges"),"none"))
963         m_seekable = false;
964     }
965   }
966
967   char* efurl;
968   if (CURLE_OK == g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_EFFECTIVE_URL,&efurl) && efurl)
969     m_url = efurl;
970
971   return true;
972 }
973
974 bool CCurlFile::OpenForWrite(const CURL& url, bool bOverWrite)
975 {
976   if(m_opened)
977     return false;
978
979   if (Exists(url) && !bOverWrite)
980     return false;
981
982   CURL url2(url);
983   ParseAndCorrectUrl(url2);
984
985   CLog::Log(LOGDEBUG, "CCurlFile::OpenForWrite(%p) %s", (void*)this, CURL::GetRedacted(m_url).c_str());
986
987   ASSERT(m_state->m_easyHandle == NULL);
988   g_curlInterface.easy_aquire(url2.GetProtocol(), url2.GetHostName(), &m_state->m_easyHandle, &m_state->m_multiHandle);
989
990     // setup common curl options
991   SetCommonOptions(m_state);
992   SetRequestHeaders(m_state);
993
994   char* efurl;
995   if (CURLE_OK == g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_EFFECTIVE_URL,&efurl) && efurl)
996     m_url = efurl;
997
998   m_opened = true;
999   m_forWrite = true;
1000   m_inError = false;
1001   m_writeOffset = 0;
1002
1003   ASSERT(m_state->m_multiHandle);
1004
1005   SetCommonOptions(m_state); 
1006   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_UPLOAD, 1);
1007
1008   g_curlInterface.multi_add_handle(m_state->m_multiHandle, m_state->m_easyHandle);
1009
1010   m_state->SetReadBuffer(NULL, 0);
1011
1012   return true;
1013 }
1014
1015 int CCurlFile::Write(const void* lpBuf, int64_t uiBufSize)
1016 {
1017   if (!(m_opened && m_forWrite) || m_inError)
1018     return -1;
1019
1020   ASSERT(m_state->m_multiHandle);
1021
1022   m_state->SetReadBuffer(lpBuf, uiBufSize);
1023   m_state->m_isPaused = false;
1024   g_curlInterface.easy_pause(m_state->m_easyHandle, CURLPAUSE_CONT);
1025
1026   CURLMcode result = CURLM_OK;
1027
1028   m_stillRunning = 1;
1029   while (m_stillRunning && !m_state->m_isPaused)
1030   {
1031     while ((result = g_curlInterface.multi_perform(m_state->m_multiHandle, &m_stillRunning)) == CURLM_CALL_MULTI_PERFORM);
1032
1033     if (!m_stillRunning)
1034       break;
1035
1036     if (result != CURLM_OK)
1037     {
1038       long code;
1039       if(g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_RESPONSE_CODE, &code) == CURLE_OK )
1040         CLog::Log(LOGERROR, "%s - Unable to write curl resource (%s) - %ld", __FUNCTION__, CURL::GetRedacted(m_url).c_str(), code);
1041       m_inError = true;
1042       return -1;
1043     }
1044   }
1045
1046   m_writeOffset += m_state->m_filePos;
1047   return m_state->m_filePos;
1048 }
1049
1050 bool CCurlFile::CReadState::ReadString(char *szLine, int iLineLength)
1051 {
1052   unsigned int want = (unsigned int)iLineLength;
1053
1054   if((m_fileSize == 0 || m_filePos < m_fileSize) && !FillBuffer(want))
1055     return false;
1056
1057   // ensure only available data is considered
1058   want = XMIN((unsigned int)m_buffer.getMaxReadSize(), want);
1059
1060   /* check if we finished prematurely */
1061   if (!m_stillRunning && (m_fileSize == 0 || m_filePos != m_fileSize) && !want)
1062   {
1063     if (m_fileSize != 0)
1064       CLog::Log(LOGWARNING, "%s - Transfer ended before entire file was retrieved pos %"PRId64", size %"PRId64, __FUNCTION__, m_filePos, m_fileSize);
1065
1066     return false;
1067   }
1068
1069   char* pLine = szLine;
1070   do
1071   {
1072     if (!m_buffer.ReadData(pLine, 1))
1073       break;
1074
1075     pLine++;
1076   } while (((pLine - 1)[0] != '\n') && ((unsigned int)(pLine - szLine) < want));
1077   pLine[0] = 0;
1078   m_filePos += (pLine - szLine);
1079   return (bool)((pLine - szLine) > 0);
1080 }
1081
1082 bool CCurlFile::Exists(const CURL& url)
1083 {
1084   // if file is already running, get info from it
1085   if( m_opened )
1086   {
1087     CLog::Log(LOGWARNING, "CCurlFile::Exists - Exist called on open file %s", url.GetRedacted().c_str());
1088     return true;
1089   }
1090
1091   CURL url2(url);
1092   ParseAndCorrectUrl(url2);
1093
1094   ASSERT(m_state->m_easyHandle == NULL);
1095   g_curlInterface.easy_aquire(url2.GetProtocol(), url2.GetHostName(), &m_state->m_easyHandle, NULL);
1096
1097   SetCommonOptions(m_state);
1098   SetRequestHeaders(m_state);
1099   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_TIMEOUT, 5);
1100   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_NOBODY, 1);
1101   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_WRITEDATA, NULL); /* will cause write failure*/
1102
1103   if(url2.GetProtocol() == "ftp")
1104   {
1105     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FILETIME, 1);
1106     // nocwd is less standard, will return empty list for non-existed remote dir on some ftp server, avoid it.
1107     if (StringUtils::EndsWith(url2.GetFileName(), "/"))
1108       g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_SINGLECWD);
1109     else
1110       g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_NOCWD);
1111   }
1112
1113   CURLcode result = g_curlInterface.easy_perform(m_state->m_easyHandle);
1114   g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
1115
1116   if (result == CURLE_WRITE_ERROR || result == CURLE_OK)
1117     return true;
1118
1119   if (result == CURLE_HTTP_RETURNED_ERROR)
1120   {
1121     long code;
1122     if(g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_RESPONSE_CODE, &code) == CURLE_OK && code != 404 )
1123       CLog::Log(LOGERROR, "CCurlFile::Exists - Failed: HTTP returned error %ld for %s", code, url.GetRedacted().c_str());
1124   }
1125   else if (result != CURLE_REMOTE_FILE_NOT_FOUND && result != CURLE_FTP_COULDNT_RETR_FILE)
1126   {
1127     CLog::Log(LOGERROR, "CCurlFile::Exists - Failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
1128   }
1129
1130   errno = ENOENT;
1131   return false;
1132 }
1133
1134 int64_t CCurlFile::Seek(int64_t iFilePosition, int iWhence)
1135 {
1136   int64_t nextPos = m_state->m_filePos;
1137   
1138   if(!m_seekable)
1139     return -1;
1140
1141   switch(iWhence)
1142   {
1143     case SEEK_SET:
1144       nextPos = iFilePosition;
1145       break;
1146     case SEEK_CUR:
1147       nextPos += iFilePosition;
1148       break;
1149     case SEEK_END:
1150       if (m_state->m_fileSize)
1151         nextPos = m_state->m_fileSize + iFilePosition;
1152       else
1153         return -1;
1154       break;
1155     default:
1156       return -1;
1157   }
1158
1159   // We can't seek beyond EOF
1160   if (m_state->m_fileSize && nextPos > m_state->m_fileSize) return -1;
1161
1162   if(m_state->Seek(nextPos))
1163     return nextPos;
1164
1165   if (m_multisession)
1166   {
1167     if (!m_oldState)
1168     {
1169       CURL url(m_url);
1170       m_oldState          = m_state;
1171       m_state             = new CReadState();
1172       m_state->m_fileSize = m_oldState->m_fileSize;
1173       g_curlInterface.easy_aquire(url.GetProtocol(),
1174                                   url.GetHostName(),
1175                                   &m_state->m_easyHandle,
1176                                   &m_state->m_multiHandle );
1177     }
1178     else
1179     {
1180       CReadState *tmp;
1181       tmp         = m_state;
1182       m_state     = m_oldState;
1183       m_oldState  = tmp;
1184
1185       if (m_state->Seek(nextPos))
1186         return nextPos;
1187       
1188       m_state->Disconnect();
1189     }
1190   }
1191   else
1192     m_state->Disconnect();
1193
1194   // re-setup common curl options
1195   SetCommonOptions(m_state);
1196
1197   /* caller might have changed some headers (needed for daap)*/
1198   SetRequestHeaders(m_state);
1199
1200   m_state->m_filePos = nextPos;
1201   m_state->m_sendRange = true;
1202
1203   long response = m_state->Connect(m_bufferSize);
1204   if(response < 0 && (m_state->m_fileSize == 0 || m_state->m_fileSize != m_state->m_filePos))
1205   {
1206     if(m_multisession)
1207     {
1208       if (m_oldState)
1209       {
1210         delete m_state;
1211         m_state     = m_oldState;
1212         m_oldState  = NULL;
1213       }
1214       // Retry without mutlisession
1215       m_multisession = false;
1216       return Seek(iFilePosition, iWhence);
1217     }
1218     else
1219     {
1220       m_seekable = false;
1221       return -1;
1222     } 
1223   }
1224
1225   SetCorrectHeaders(m_state);
1226
1227   return m_state->m_filePos;
1228 }
1229
1230 int64_t CCurlFile::GetLength()
1231 {
1232   if (!m_opened) return 0;
1233   return m_state->m_fileSize;
1234 }
1235
1236 int64_t CCurlFile::GetPosition()
1237 {
1238   if (!m_opened) return 0;
1239   return m_state->m_filePos;
1240 }
1241
1242 int CCurlFile::Stat(const CURL& url, struct __stat64* buffer)
1243 {
1244   // if file is already running, get info from it
1245   if( m_opened )
1246   {
1247     CLog::Log(LOGWARNING, "CCurlFile::Stat - Stat called on open file %s", url.GetRedacted().c_str());
1248     if (buffer)
1249     {
1250       memset(buffer, 0, sizeof(struct __stat64));
1251       buffer->st_size = GetLength();
1252       buffer->st_mode = _S_IFREG;
1253     }
1254     return 0;
1255   }
1256
1257   CURL url2(url);
1258   ParseAndCorrectUrl(url2);
1259
1260   ASSERT(m_state->m_easyHandle == NULL);
1261   g_curlInterface.easy_aquire(url2.GetProtocol(), url2.GetHostName(), &m_state->m_easyHandle, NULL);
1262
1263   SetCommonOptions(m_state);
1264   SetRequestHeaders(m_state);
1265   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_TIMEOUT, g_advancedSettings.m_curlconnecttimeout);
1266   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_NOBODY, 1);
1267   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_WRITEDATA, NULL); /* will cause write failure*/
1268   g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FILETIME , 1); 
1269
1270   if(url2.GetProtocol() == "ftp")
1271   {
1272     // nocwd is less standard, will return empty list for non-existed remote dir on some ftp server, avoid it.
1273     if (StringUtils::EndsWith(url2.GetFileName(), "/"))
1274       g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_SINGLECWD);
1275     else
1276       g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FTP_FILEMETHOD, CURLFTPMETHOD_NOCWD);
1277   }
1278
1279   CURLcode result = g_curlInterface.easy_perform(m_state->m_easyHandle);
1280
1281   if(result == CURLE_HTTP_RETURNED_ERROR)
1282   {
1283     long code;
1284     if(g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_RESPONSE_CODE, &code) == CURLE_OK && code == 404 )
1285       return -1;
1286   }
1287
1288   if(result == CURLE_GOT_NOTHING 
1289   || result == CURLE_HTTP_RETURNED_ERROR 
1290   || result == CURLE_RECV_ERROR /* some silly shoutcast servers */ )
1291   {
1292     /* some http servers and shoutcast servers don't give us any data on a head request */
1293     /* request normal and just fail out, it's their loss */
1294     /* somehow curl doesn't reset CURLOPT_NOBODY properly so reset everything */
1295     SetCommonOptions(m_state);
1296     SetRequestHeaders(m_state);
1297     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_TIMEOUT, g_advancedSettings.m_curlconnecttimeout);
1298     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_RANGE, "0-0");
1299     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_WRITEDATA, NULL); /* will cause write failure*/
1300     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_FILETIME, 1); 
1301     result = g_curlInterface.easy_perform(m_state->m_easyHandle);
1302   }
1303
1304   if( result == CURLE_HTTP_RANGE_ERROR )
1305   {
1306     /* crap can't use the range option, disable it and try again */
1307     g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_RANGE, NULL);
1308     result = g_curlInterface.easy_perform(m_state->m_easyHandle);
1309   }
1310
1311   if( result != CURLE_WRITE_ERROR && result != CURLE_OK )
1312   {
1313     g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
1314     errno = ENOENT;
1315     CLog::Log(LOGERROR, "CCurlFile::Stat - Failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
1316     return -1;
1317   }
1318
1319   double length;
1320   result = g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &length);
1321   if (result != CURLE_OK || length < 0.0)
1322   {
1323     if (url.GetProtocol() == "ftp")
1324     {
1325       g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
1326       CLog::Log(LOGNOTICE, "CCurlFile::Stat - Content length failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
1327       errno = ENOENT;
1328       return -1;
1329     }
1330     else
1331       length = 0.0;
1332   }
1333
1334   SetCorrectHeaders(m_state);
1335
1336   if(buffer)
1337   {
1338     char *content;
1339     result = g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_CONTENT_TYPE, &content);
1340     if (result != CURLE_OK)
1341     {
1342       CLog::Log(LOGNOTICE, "CCurlFile::Stat - Content type failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
1343       g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
1344       errno = ENOENT;
1345       return -1;
1346     }
1347     else
1348     {
1349       memset(buffer, 0, sizeof(struct __stat64));
1350       buffer->st_size = (int64_t)length;
1351       if(content && strstr(content, "text/html")) //consider html files directories
1352         buffer->st_mode = _S_IFDIR;
1353       else
1354         buffer->st_mode = _S_IFREG;
1355     }
1356     long filetime;
1357     result = g_curlInterface.easy_getinfo(m_state->m_easyHandle, CURLINFO_FILETIME, &filetime);
1358     if (result != CURLE_OK)
1359     {
1360       CLog::Log(LOGNOTICE, "CCurlFile::Stat - Filetime failed: %s(%d) for %s", g_curlInterface.easy_strerror(result), result, url.GetRedacted().c_str());
1361     }
1362     else
1363     {
1364       if (filetime != -1)
1365         buffer->st_mtime = filetime;
1366     }
1367   }
1368   g_curlInterface.easy_release(&m_state->m_easyHandle, NULL);
1369   return 0;
1370 }
1371
1372 unsigned int CCurlFile::CReadState::Read(void* lpBuf, int64_t uiBufSize)
1373 {
1374   /* only request 1 byte, for truncated reads (only if not eof) */
1375   if((m_fileSize == 0 || m_filePos < m_fileSize) && !FillBuffer(1))
1376     return 0;
1377
1378   /* ensure only available data is considered */
1379   unsigned int want = (unsigned int)XMIN(m_buffer.getMaxReadSize(), uiBufSize);
1380
1381   /* xfer data to caller */
1382   if (m_buffer.ReadData((char *)lpBuf, want))
1383   {
1384     m_filePos += want;
1385     return want;
1386   }
1387
1388   /* check if we finished prematurely */
1389   if (!m_stillRunning && (m_fileSize == 0 || m_filePos != m_fileSize))
1390   {
1391     CLog::Log(LOGWARNING, "%s - Transfer ended before entire file was retrieved pos %"PRId64", size %"PRId64, __FUNCTION__, m_filePos, m_fileSize);
1392     return 0;
1393   }
1394
1395   return 0;
1396 }
1397
1398 /* use to attempt to fill the read buffer up to requested number of bytes */
1399 bool CCurlFile::CReadState::FillBuffer(unsigned int want)
1400 {
1401   int retry = 0;
1402   fd_set fdread;
1403   fd_set fdwrite;
1404   fd_set fdexcep;
1405
1406   // only attempt to fill buffer if transactions still running and buffer
1407   // doesnt exceed required size already
1408   while ((unsigned int)m_buffer.getMaxReadSize() < want && m_buffer.getMaxWriteSize() > 0 )
1409   {
1410     if (m_cancelled)
1411       return false;
1412
1413     /* if there is data in overflow buffer, try to use that first */
1414     if (m_overflowSize)
1415     {
1416       unsigned amount = XMIN((unsigned int)m_buffer.getMaxWriteSize(), m_overflowSize);
1417       m_buffer.WriteData(m_overflowBuffer, amount);
1418
1419       if (amount < m_overflowSize)
1420         memcpy(m_overflowBuffer, m_overflowBuffer+amount,m_overflowSize-amount);
1421
1422       m_overflowSize -= amount;
1423       m_overflowBuffer = (char*)realloc_simple(m_overflowBuffer, m_overflowSize);
1424       continue;
1425     }
1426
1427     CURLMcode result = g_curlInterface.multi_perform(m_multiHandle, &m_stillRunning);
1428     if (!m_stillRunning)
1429     {
1430       if (result == CURLM_OK)
1431       {
1432         /* if we still have stuff in buffer, we are fine */
1433         if (m_buffer.getMaxReadSize())
1434           return true;
1435
1436         /* verify that we are actually okey */
1437         int msgs;
1438         CURLcode CURLresult = CURLE_OK;
1439         CURLMsg* msg;
1440         while ((msg = g_curlInterface.multi_info_read(m_multiHandle, &msgs)))
1441         {
1442           if (msg->msg == CURLMSG_DONE)
1443           {
1444             if (msg->data.result == CURLE_OK)
1445               return true;
1446
1447             CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Failed: %s(%d)", g_curlInterface.easy_strerror(msg->data.result), msg->data.result);
1448
1449             // We need to check the result here as we don't want to retry on every error
1450             if ( (msg->data.result == CURLE_OPERATION_TIMEDOUT ||
1451                   msg->data.result == CURLE_PARTIAL_FILE       ||
1452                   msg->data.result == CURLE_COULDNT_CONNECT    ||
1453                   msg->data.result == CURLE_RECV_ERROR)        &&
1454                   !m_bFirstLoop)
1455               CURLresult = msg->data.result;
1456             else if ( (msg->data.result == CURLE_HTTP_RANGE_ERROR     ||
1457                        msg->data.result == CURLE_HTTP_RETURNED_ERROR) &&
1458                        m_bFirstLoop                                   &&
1459                        m_filePos == 0                                 &&
1460                        m_sendRange)
1461             {
1462               // If server returns a range or http error, retry with range disabled
1463               CURLresult = msg->data.result;
1464               m_sendRange = false;
1465             }
1466             else
1467               return false;
1468           }
1469         }
1470
1471         // Don't retry when we didn't "see" any error
1472         if (CURLresult == CURLE_OK)
1473           return false;
1474
1475         // Close handle
1476         if (m_multiHandle && m_easyHandle)
1477           g_curlInterface.multi_remove_handle(m_multiHandle, m_easyHandle);
1478
1479         // Reset all the stuff like we would in Disconnect()
1480         m_buffer.Clear();
1481         free(m_overflowBuffer);
1482         m_overflowBuffer = NULL;
1483         m_overflowSize = 0;
1484
1485         // If we got here something is wrong
1486         if (++retry > g_advancedSettings.m_curlretries)
1487         {
1488           CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Reconnect failed!");
1489           // Reset the rest of the variables like we would in Disconnect()
1490           m_filePos = 0;
1491           m_fileSize = 0;
1492           m_bufferSize = 0;
1493
1494           return false;
1495         }
1496
1497         CLog::Log(LOGNOTICE, "CCurlFile::FillBuffer - Reconnect, (re)try %i", retry);
1498
1499         // Connect + seek to current position (again)
1500         SetResume();
1501         g_curlInterface.multi_add_handle(m_multiHandle, m_easyHandle);
1502
1503         // Return to the beginning of the loop:
1504         continue;
1505       }
1506       return false;
1507     }
1508
1509     // We've finished out first loop
1510     if(m_bFirstLoop && m_buffer.getMaxReadSize() > 0)
1511       m_bFirstLoop = false;
1512
1513     switch (result)
1514     {
1515       case CURLM_OK:
1516       {
1517         int maxfd = -1;
1518         FD_ZERO(&fdread);
1519         FD_ZERO(&fdwrite);
1520         FD_ZERO(&fdexcep);
1521
1522         // get file descriptors from the transfers
1523         g_curlInterface.multi_fdset(m_multiHandle, &fdread, &fdwrite, &fdexcep, &maxfd);
1524
1525         long timeout = 0;
1526         if (CURLM_OK != g_curlInterface.multi_timeout(m_multiHandle, &timeout) || timeout == -1)
1527           timeout = 200;
1528
1529         XbmcThreads::EndTime endTime(timeout);
1530         int rc;
1531
1532         do
1533         {
1534           unsigned int time_left = endTime.MillisLeft();
1535           struct timeval t = { time_left / 1000, (time_left % 1000) * 1000 };
1536
1537           // Wait until data is available or a timeout occurs.
1538           rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &t);
1539 #ifdef TARGET_WINDOWS
1540         } while(rc == SOCKET_ERROR && WSAGetLastError() == WSAEINTR);
1541 #else
1542         } while(rc == SOCKET_ERROR && errno == EINTR);
1543 #endif
1544
1545         if(rc == SOCKET_ERROR)
1546         {
1547 #ifdef TARGET_WINDOWS
1548           char buf[256];
1549           strerror_s(buf, 256, WSAGetLastError());
1550           CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Failed with socket error:%s", buf);
1551 #else
1552           char const * str = strerror(errno);
1553           CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Failed with socket error:%s", str);
1554 #endif
1555
1556           return false;
1557         }
1558       }
1559       break;
1560       case CURLM_CALL_MULTI_PERFORM:
1561       {
1562         // we don't keep calling here as that can easily overwrite our buffer which we want to avoid
1563         // docs says we should call it soon after, but aslong as we are reading data somewhere
1564         // this aught to be soon enough. should stay in socket otherwise
1565         continue;
1566       }
1567       break;
1568       default:
1569       {
1570         CLog::Log(LOGERROR, "CCurlFile::FillBuffer - Multi perform failed with code %d, aborting", result);
1571         return false;
1572       }
1573       break;
1574     }
1575   }
1576   return true;
1577 }
1578
1579 void CCurlFile::CReadState::SetReadBuffer(const void* lpBuf, int64_t uiBufSize)
1580 {
1581   m_readBuffer = (char*)lpBuf;
1582   m_fileSize = uiBufSize;
1583   m_filePos = 0;
1584 }
1585
1586 void CCurlFile::ClearRequestHeaders()
1587 {
1588   m_requestheaders.clear();
1589 }
1590
1591 void CCurlFile::SetRequestHeader(CStdString header, CStdString value)
1592 {
1593   m_requestheaders[header] = value;
1594 }
1595
1596 void CCurlFile::SetRequestHeader(CStdString header, long value)
1597 {
1598   m_requestheaders[header] = StringUtils::Format("%ld", value);
1599 }
1600
1601 std::string CCurlFile::GetServerReportedCharset(void)
1602 {
1603   if (!m_state)
1604     return "";
1605
1606   return m_state->m_httpheader.GetCharset();
1607 }
1608
1609 /* STATIC FUNCTIONS */
1610 bool CCurlFile::GetHttpHeader(const CURL &url, CHttpHeader &headers)
1611 {
1612   try
1613   {
1614     CCurlFile file;
1615     if(file.Stat(url, NULL) == 0)
1616     {
1617       headers = file.GetHttpHeader();
1618       return true;
1619     }
1620     return false;
1621   }
1622   catch(...)
1623   {
1624     CLog::Log(LOGERROR, "%s - Exception thrown while trying to retrieve header url: %s", __FUNCTION__, url.GetRedacted().c_str());
1625     return false;
1626   }
1627 }
1628
1629 bool CCurlFile::GetMimeType(const CURL &url, CStdString &content, CStdString useragent)
1630 {
1631   CCurlFile file;
1632   if (!useragent.empty())
1633     file.SetUserAgent(useragent);
1634
1635   struct __stat64 buffer;
1636   std::string redactUrl = url.GetRedacted();
1637   if( file.Stat(url, &buffer) == 0 )
1638   {
1639     if (buffer.st_mode == _S_IFDIR)
1640       content = "x-directory/normal";
1641     else
1642       content = file.GetMimeType();
1643     CLog::Log(LOGDEBUG, "CCurlFile::GetMimeType - %s -> %s", redactUrl.c_str(), content.c_str());
1644     return true;
1645   }
1646   CLog::Log(LOGDEBUG, "CCurlFile::GetMimeType - %s -> failed", redactUrl.c_str());
1647   content = "";
1648   return false;
1649 }
1650
1651 bool CCurlFile::GetCookies(const CURL &url, std::string &cookies)
1652 {
1653   std::string cookiesStr;
1654   struct curl_slist*     curlCookies;
1655   XCURL::CURL_HANDLE*    easyHandle;
1656   XCURL::CURLM*          multiHandle;
1657
1658   // get the cookies list
1659   g_curlInterface.easy_aquire(url.GetProtocol(), url.GetHostName(), &easyHandle, &multiHandle);
1660   if (CURLE_OK == g_curlInterface.easy_getinfo(easyHandle, CURLINFO_COOKIELIST, &curlCookies))
1661   {
1662     // iterate over each cookie and format it into an RFC 2109 formatted Set-Cookie string
1663     struct curl_slist* curlCookieIter = curlCookies;
1664     while(curlCookieIter)
1665     {
1666       // tokenize the CURL cookie string
1667       std::vector<std::string> valuesVec;
1668       StringUtils::Tokenize(curlCookieIter->data, valuesVec, "\t");
1669
1670       // ensure the length is valid
1671       if (valuesVec.size() < 7)
1672       {
1673         CLog::Log(LOGERROR, "CCurlFile::GetCookies - invalid cookie: '%s'", curlCookieIter->data);
1674         curlCookieIter = curlCookieIter->next;
1675         continue;
1676       }
1677
1678       // create a http-header formatted cookie string
1679       std::string cookieStr = valuesVec[5] + "=" + valuesVec[6] +
1680                               "; path=" + valuesVec[2] +
1681                               "; domain=" + valuesVec[0];
1682
1683       // append this cookie to the string containing all cookies
1684       if (!cookiesStr.empty())
1685         cookiesStr += "\n";
1686       cookiesStr += cookieStr;
1687
1688       // move on to the next cookie
1689       curlCookieIter = curlCookieIter->next;
1690     }
1691
1692     // free the curl cookies
1693     g_curlInterface.slist_free_all(curlCookies);
1694
1695     // release our handles
1696     g_curlInterface.easy_release(&easyHandle, &multiHandle);
1697
1698     // if we have a non-empty cookie string, return it
1699     if (!cookiesStr.empty())
1700     {
1701       cookies = cookiesStr;
1702       return true;
1703     }
1704   }
1705
1706   // no cookies to return
1707   return false;
1708 }
1709
1710 int CCurlFile::IoControl(EIoControl request, void* param)
1711 {
1712   if(request == IOCTRL_SEEK_POSSIBLE)
1713     return m_seekable ? 1 : 0;
1714
1715   return -1;
1716 }