]> git.sesse.net Git - vlc/blob - modules/access/http.c
Do not store -1 in access_t::info.i_size in http access.
[vlc] / modules / access / http.c
1 /*****************************************************************************
2  * http.c: HTTP input module
3  *****************************************************************************
4  * Copyright (C) 2001-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *          RĂ©mi Denis-Courmont <rem # videolan.org>
10  *          Antoine Cellerier <dionoea at videolan dot org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include <vlc_common.h>
35 #include <vlc_plugin.h>
36
37
38 #include <vlc_access.h>
39
40 #include <vlc_dialog.h>
41 #include <vlc_meta.h>
42 #include <vlc_network.h>
43 #include <vlc_url.h>
44 #include <vlc_tls.h>
45 #include <vlc_strings.h>
46 #include <vlc_charset.h>
47 #include <vlc_input.h>
48 #include <vlc_md5.h>
49 #include <vlc_http.h>
50
51 #ifdef HAVE_ZLIB_H
52 #   include <zlib.h>
53 #endif
54
55 #include <assert.h>
56
57 #ifdef HAVE_LIBPROXY
58 #    include <proxy.h>
59 #endif
60
61 #ifdef WIN32
62 #   include <windows.h>
63 #endif
64
65 /*****************************************************************************
66  * Module descriptor
67  *****************************************************************************/
68 static int  Open ( vlc_object_t * );
69 static void Close( vlc_object_t * );
70
71 #define PROXY_TEXT N_("HTTP proxy")
72 #define PROXY_LONGTEXT N_( \
73     "HTTP proxy to be used It must be of the form " \
74     "http://[user@]myproxy.mydomain:myport/ ; " \
75     "if empty, the http_proxy environment variable will be tried." )
76
77 #define PROXY_PASS_TEXT N_("HTTP proxy password")
78 #define PROXY_PASS_LONGTEXT N_( \
79     "If your HTTP proxy requires a password, set it here." )
80
81 #define CACHING_TEXT N_("Caching value in ms")
82 #define CACHING_LONGTEXT N_( \
83     "Caching value for HTTP streams. This " \
84     "value should be set in milliseconds." )
85
86 #define AGENT_TEXT N_("HTTP user agent")
87 #define AGENT_LONGTEXT N_("User agent that will be " \
88     "used for the connection.")
89
90 #define RECONNECT_TEXT N_("Auto re-connect")
91 #define RECONNECT_LONGTEXT N_( \
92     "Automatically try to reconnect to the stream in case of a sudden " \
93     "disconnect." )
94
95 #define CONTINUOUS_TEXT N_("Continuous stream")
96 #define CONTINUOUS_LONGTEXT N_("Read a file that is " \
97     "being constantly updated (for example, a JPG file on a server). " \
98     "You should not globally enable this option as it will break all other " \
99     "types of HTTP streams." )
100
101 #define FORWARD_COOKIES_TEXT N_("Forward Cookies")
102 #define FORWARD_COOKIES_LONGTEXT N_("Forward Cookies across http redirections.")
103
104 #define MAX_REDIRECT_TEXT N_("Max number of redirection")
105 #define MAX_REDIRECT_LONGTEXT N_("Limit the number of redirection to follow.")
106
107 #define USE_IE_PROXY_TEXT N_("Use Internet Explorer entered HTTP proxy server")
108 #define USE_IE_PROXY_LONGTEXT N_("Use Internet Explorer entered HTTP proxy " \
109     "server for all URL. Don't take into account bypasses settings and auto " \
110     "configuration scripts.")
111
112 vlc_module_begin ()
113     set_description( N_("HTTP input") )
114     set_capability( "access", 0 )
115     set_shortname( N_( "HTTP(S)" ) )
116     set_category( CAT_INPUT )
117     set_subcategory( SUBCAT_INPUT_ACCESS )
118
119     add_string( "http-proxy", NULL, NULL, PROXY_TEXT, PROXY_LONGTEXT,
120                 false )
121     add_password( "http-proxy-pwd", NULL, NULL,
122                   PROXY_PASS_TEXT, PROXY_PASS_LONGTEXT, false )
123     add_integer( "http-caching", 4 * DEFAULT_PTS_DELAY / 1000, NULL,
124                  CACHING_TEXT, CACHING_LONGTEXT, true )
125         change_safe()
126     add_string( "http-user-agent", COPYRIGHT_MESSAGE , NULL, AGENT_TEXT,
127                 AGENT_LONGTEXT, true )
128         change_safe()
129     add_bool( "http-reconnect", false, NULL, RECONNECT_TEXT,
130               RECONNECT_LONGTEXT, true )
131     add_bool( "http-continuous", false, NULL, CONTINUOUS_TEXT,
132               CONTINUOUS_LONGTEXT, true )
133         change_safe()
134     add_bool( "http-forward-cookies", true, NULL, FORWARD_COOKIES_TEXT,
135               FORWARD_COOKIES_LONGTEXT, true )
136     add_integer( "http-max-redirect", 5, NULL, MAX_REDIRECT_TEXT,
137                  MAX_REDIRECT_LONGTEXT, true )
138 #ifdef WIN32
139     add_bool( "http-use-IE-proxy", false, NULL, USE_IE_PROXY_TEXT,
140               USE_IE_PROXY_LONGTEXT, true )
141 #endif
142     add_obsolete_string("http-user")
143     add_obsolete_string("http-pwd")
144     add_shortcut( "http" )
145     add_shortcut( "https" )
146     add_shortcut( "unsv" )
147     add_shortcut( "itpc" ) /* iTunes Podcast */
148     add_shortcut( "icyx" )
149     set_callbacks( Open, Close )
150 vlc_module_end ()
151
152 /*****************************************************************************
153  * Local prototypes
154  *****************************************************************************/
155
156 struct access_sys_t
157 {
158     int fd;
159     tls_session_t *p_tls;
160     v_socket_t    *p_vs;
161
162     /* From uri */
163     vlc_url_t url;
164     char    *psz_user_agent;
165     http_auth_t auth;
166
167     /* Proxy */
168     bool b_proxy;
169     vlc_url_t  proxy;
170     http_auth_t proxy_auth;
171     char       *psz_proxy_passbuf;
172
173     /* */
174     int        i_code;
175     const char *psz_protocol;
176     int        i_version;
177
178     char       *psz_mime;
179     char       *psz_pragma;
180     char       *psz_location;
181     bool b_mms;
182     bool b_icecast;
183     bool b_ssl;
184 #ifdef HAVE_ZLIB_H
185     bool b_compressed;
186     struct
187     {
188         z_stream   stream;
189         uint8_t   *p_buffer;
190     } inflate;
191 #endif
192
193     bool b_chunked;
194     int64_t    i_chunk;
195
196     int        i_icy_meta;
197     int64_t    i_icy_offset;
198     char       *psz_icy_name;
199     char       *psz_icy_genre;
200     char       *psz_icy_title;
201
202     int64_t i_remaining;
203
204     bool b_seekable;
205     bool b_reconnect;
206     bool b_continuous;
207     bool b_pace_control;
208     bool b_persist;
209     bool b_has_size;
210
211     vlc_array_t * cookies;
212 };
213
214 /* */
215 static int OpenWithCookies( vlc_object_t *p_this, const char *psz_access,
216                             int i_nb_redirect, int i_max_redirect,
217                             vlc_array_t *cookies );
218
219 /* */
220 static ssize_t Read( access_t *, uint8_t *, size_t );
221 static ssize_t ReadCompressed( access_t *, uint8_t *, size_t );
222 static int Seek( access_t *, int64_t );
223 static int Control( access_t *, int, va_list );
224
225 /* */
226 static int Connect( access_t *, int64_t );
227 static int Request( access_t *p_access, int64_t i_tell );
228 static void Disconnect( access_t * );
229
230 /* Small Cookie utilities. Cookies support is partial. */
231 static char * cookie_get_content( const char * cookie );
232 static char * cookie_get_domain( const char * cookie );
233 static char * cookie_get_name( const char * cookie );
234 static void cookie_append( vlc_array_t * cookies, char * cookie );
235
236
237 static void AuthReply( access_t *p_acces, const char *psz_prefix,
238                        vlc_url_t *p_url, http_auth_t *p_auth );
239 static int AuthCheckReply( access_t *p_access, const char *psz_header,
240                            vlc_url_t *p_url, http_auth_t *p_auth );
241
242 /*****************************************************************************
243  * Open:
244  *****************************************************************************/
245 static int Open( vlc_object_t *p_this )
246 {
247     access_t *p_access = (access_t*)p_this;
248     return OpenWithCookies( p_this, p_access->psz_access, 0,
249                 var_CreateGetInteger( p_access, "http-max-redirect" ), NULL );
250 }
251
252 /**
253  * Open the given url using the given cookies
254  * @param p_this: the vlc object
255  * @psz_access: the acces to use (http, https, ...) (this value must be used
256  *              instead of p_access->psz_access)
257  * @i_nb_redirect: the number of redirection already done
258  * @i_max_redirect: limit to the number of redirection to follow
259  * @cookies: the available cookies
260  * @return vlc error codes
261  */
262 static int OpenWithCookies( vlc_object_t *p_this, const char *psz_access,
263                             int i_nb_redirect, int i_max_redirect,
264                             vlc_array_t *cookies )
265 {
266     access_t     *p_access = (access_t*)p_this;
267     access_sys_t *p_sys;
268     char         *psz, *p;
269
270     /* Only forward an store cookies if the corresponding option is activated */
271     bool   b_forward_cookies = var_CreateGetBool( p_access, "http-forward-cookies" );
272     vlc_array_t * saved_cookies = b_forward_cookies ? (cookies ? cookies : vlc_array_new()) : NULL;
273
274     /* Set up p_access */
275     STANDARD_READ_ACCESS_INIT;
276 #ifdef HAVE_ZLIB_H
277     p_access->pf_read = ReadCompressed;
278 #endif
279     p_sys->fd = -1;
280     p_sys->b_proxy = false;
281     p_sys->psz_proxy_passbuf = NULL;
282     p_sys->i_version = 1;
283     p_sys->b_seekable = true;
284     p_sys->psz_mime = NULL;
285     p_sys->psz_pragma = NULL;
286     p_sys->b_mms = false;
287     p_sys->b_icecast = false;
288     p_sys->psz_location = NULL;
289     p_sys->psz_user_agent = NULL;
290     p_sys->b_pace_control = true;
291     p_sys->b_ssl = false;
292 #ifdef HAVE_ZLIB_H
293     p_sys->b_compressed = false;
294     /* 15 is the max windowBits, +32 to enable optional gzip decoding */
295     if( inflateInit2( &p_sys->inflate.stream, 32+15 ) != Z_OK )
296         msg_Warn( p_access, "Error during zlib initialisation: %s",
297                   p_sys->inflate.stream.msg );
298     if( zlibCompileFlags() & (1<<17) )
299         msg_Warn( p_access, "Your zlib was compiled without gzip support." );
300     p_sys->inflate.p_buffer = NULL;
301 #endif
302     p_sys->p_tls = NULL;
303     p_sys->p_vs = NULL;
304     p_sys->i_icy_meta = 0;
305     p_sys->i_icy_offset = 0;
306     p_sys->psz_icy_name = NULL;
307     p_sys->psz_icy_genre = NULL;
308     p_sys->psz_icy_title = NULL;
309     p_sys->i_remaining = 0;
310     p_sys->b_persist = false;
311     p_sys->b_has_size = false;
312     p_access->info.i_size = 0;
313     p_access->info.i_pos  = 0;
314     p_access->info.b_eof  = false;
315
316     p_sys->cookies = saved_cookies;
317
318     http_auth_Init( &p_sys->auth );
319     http_auth_Init( &p_sys->proxy_auth );
320
321     /* Parse URI - remove spaces */
322     p = psz = strdup( p_access->psz_path );
323     while( (p = strchr( p, ' ' )) != NULL )
324         *p = '+';
325     vlc_UrlParse( &p_sys->url, psz, 0 );
326     free( psz );
327
328     if( p_sys->url.psz_host == NULL || *p_sys->url.psz_host == '\0' )
329     {
330         msg_Warn( p_access, "invalid host" );
331         goto error;
332     }
333     if( !strncmp( psz_access, "https", 5 ) )
334     {
335         /* HTTP over SSL */
336         p_sys->b_ssl = true;
337         if( p_sys->url.i_port <= 0 )
338             p_sys->url.i_port = 443;
339     }
340     else
341     {
342         if( p_sys->url.i_port <= 0 )
343             p_sys->url.i_port = 80;
344     }
345
346     /* Do user agent */
347     p_sys->psz_user_agent = var_CreateGetString( p_access, "http-user-agent" );
348
349     /* Check proxy */
350     psz = var_CreateGetNonEmptyString( p_access, "http-proxy" );
351     if( psz )
352     {
353         p_sys->b_proxy = true;
354         vlc_UrlParse( &p_sys->proxy, psz, 0 );
355         free( psz );
356     }
357 #ifdef HAVE_LIBPROXY
358     else
359     {
360         pxProxyFactory *pf = px_proxy_factory_new();
361         if (pf)
362         {
363             char *buf;
364             int i;
365             i=asprintf(&buf, "%s://%s", psz_access, p_access->psz_path);
366             if (i >= 0)
367             {
368                 msg_Dbg(p_access, "asking libproxy about url '%s'", buf);
369                 char **proxies = px_proxy_factory_get_proxies(pf, buf);
370                 if (proxies[0])
371                 {
372                     msg_Dbg(p_access, "libproxy suggest to use '%s'", proxies[0]);
373                     if(strcmp(proxies[0],"direct://") != 0)
374                     {
375                         p_sys->b_proxy = true;
376                         vlc_UrlParse( &p_sys->proxy, proxies[0], 0);
377                     }
378                 }
379                 for(i=0;proxies[i];i++) free(proxies[i]);
380                 free(proxies);
381                 free(buf);
382             }
383             px_proxy_factory_free(pf);
384         }
385         else
386         {
387             msg_Err(p_access, "Allocating memory for libproxy failed");
388         }
389     }
390 #elif defined( WIN32 )
391     else
392     {
393         if( var_CreateGetBool( p_access, "http-use-IE-proxy" ) )
394         {
395             /* Try to get the proxy server address from Windows internet settings using registry. */
396             HKEY h_key;
397             /* Open the key */
398             if( RegOpenKeyEx( HKEY_CURRENT_USER, "Software\\Microsoft" \
399                               "\\Windows\\CurrentVersion\\Internet Settings",
400                               0, KEY_READ, &h_key ) == ERROR_SUCCESS )
401             {
402                 DWORD i_dataReadSize = 4; /* sizeof( DWORD ); */
403                 DWORD proxyEnable = 0;
404                 /* Get the proxy enable value */
405                 if( RegQueryValueEx( h_key, "ProxyEnable", NULL, NULL,
406                                      (char *)&proxyEnable, &i_dataReadSize )
407                                      == ERROR_SUCCESS )
408                 {
409                     if( proxyEnable )
410                     {
411                         /* Proxy is enable */
412                         char psz_key[256];
413                         i_dataReadSize = 256;
414                         if( RegQueryValueEx( h_key, "ProxyServer",
415                                              NULL, NULL, psz_key,
416                                              &i_dataReadSize )
417                                              == ERROR_SUCCESS )
418                         {
419                             /* Get the proxy URL :
420                             Proxy server value in the registry can be something like "address:port"
421                             or "ftp=adress1:port1;http=adress2:port2 ..." depending of the
422                             confirguration. */
423                             char *psz_proxy;
424                             psz_proxy = strstr( psz_key, "http=" );
425                             if( psz_proxy != NULL )
426                             {
427                                 psz_proxy += strlen( "http=" );
428                                 char *psz_endUrl = strchr( psz_proxy, ';' );
429                                 if( psz_endUrl != NULL )
430                                     *psz_endUrl = '\0';
431                             }
432                             else
433                                 psz_proxy = psz_key;
434                             /* Set proxy enable for this connection. */
435                             p_sys->b_proxy = true;
436                             vlc_UrlParse( &p_sys->proxy, psz_proxy, 0 );
437                         }
438                         msg_Warn( p_access, "Couldn't read in registry " \
439                                   "the proxy server address." );
440                     }
441                 }
442                 else
443                     msg_Warn( p_access, "Couldn't read in registry if the " \
444                               "proxy is enable or not." );
445             }
446             else
447                 msg_Warn( p_access, "Couldn't open internet settings key " \
448                           "in registry." );
449         }
450     }
451 #elif HAVE_GETENV
452     else
453     {
454         psz = getenv( "http_proxy" );
455         if( psz )
456         {
457             p_sys->b_proxy = true;
458             vlc_UrlParse( &p_sys->proxy, psz, 0 );
459         }
460     }
461 #endif
462
463     if( psz ) /* No, this is NOT a use-after-free error */
464     {
465         psz = var_CreateGetNonEmptyString( p_access, "http-proxy-pwd" );
466         if( psz )
467             p_sys->proxy.psz_password = p_sys->psz_proxy_passbuf = psz;
468     }
469
470     if( p_sys->b_proxy )
471     {
472         if( p_sys->proxy.psz_host == NULL || *p_sys->proxy.psz_host == '\0' )
473         {
474             msg_Warn( p_access, "invalid proxy host" );
475             goto error;
476         }
477         if( p_sys->proxy.i_port <= 0 )
478         {
479             p_sys->proxy.i_port = 80;
480         }
481     }
482
483     msg_Dbg( p_access, "http: server='%s' port=%d file='%s",
484              p_sys->url.psz_host, p_sys->url.i_port, p_sys->url.psz_path );
485     if( p_sys->b_proxy )
486     {
487         msg_Dbg( p_access, "      proxy %s:%d", p_sys->proxy.psz_host,
488                  p_sys->proxy.i_port );
489     }
490     if( p_sys->url.psz_username && *p_sys->url.psz_username )
491     {
492         msg_Dbg( p_access, "      user='%s'", p_sys->url.psz_username );
493     }
494
495     p_sys->b_reconnect = var_CreateGetBool( p_access, "http-reconnect" );
496     p_sys->b_continuous = var_CreateGetBool( p_access, "http-continuous" );
497
498 connect:
499     /* Connect */
500     switch( Connect( p_access, 0 ) )
501     {
502         case -1:
503             goto error;
504
505         case -2:
506             /* Retry with http 1.0 */
507             msg_Dbg( p_access, "switching to HTTP version 1.0" );
508             p_sys->i_version = 0;
509             p_sys->b_seekable = false;
510
511             if( !vlc_object_alive (p_access) || Connect( p_access, 0 ) )
512                 goto error;
513
514 #ifndef NDEBUG
515         case 0:
516             break;
517
518         default:
519             msg_Err( p_access, "You should not be here" );
520             abort();
521 #endif
522     }
523
524     if( p_sys->i_code == 401 )
525     {
526         char *psz_login, *psz_password;
527         /* FIXME ? */
528         if( p_sys->url.psz_username && p_sys->url.psz_password &&
529             p_sys->auth.psz_nonce && p_sys->auth.i_nonce == 0 )
530         {
531             Disconnect( p_access );
532             goto connect;
533         }
534         msg_Dbg( p_access, "authentication failed for realm %s",
535                  p_sys->auth.psz_realm );
536         dialog_Login( p_access, &psz_login, &psz_password,
537                       _("HTTP authentication"),
538              _("Please enter a valid login name and a password for realm %s."),
539                       p_sys->auth.psz_realm );
540         if( psz_login != NULL && psz_password != NULL )
541         {
542             msg_Dbg( p_access, "retrying with user=%s", psz_login );
543             p_sys->url.psz_username = psz_login;
544             p_sys->url.psz_password = psz_password;
545             Disconnect( p_access );
546             goto connect;
547         }
548         else
549         {
550             free( psz_login );
551             free( psz_password );
552             goto error;
553         }
554     }
555
556     if( ( p_sys->i_code == 301 || p_sys->i_code == 302 ||
557           p_sys->i_code == 303 || p_sys->i_code == 307 ) &&
558         p_sys->psz_location && *p_sys->psz_location )
559     {
560         msg_Dbg( p_access, "redirection to %s", p_sys->psz_location );
561
562         /* Check the number of redirection already done */
563         if( i_nb_redirect >= i_max_redirect )
564         {
565             msg_Err( p_access, "Too many redirection: break potential infinite"
566                      "loop" );
567             goto error;
568         }
569
570
571         /* Do not accept redirection outside of HTTP works */
572         const char *psz_protocol;
573         if( !strncmp( p_sys->psz_location, "http:", 5 ) )
574             psz_protocol = "http";
575         else if( !strncmp( p_sys->psz_location, "https:", 6 ) )
576             psz_protocol = "https";
577         else
578         {
579             msg_Err( p_access, "insecure redirection ignored" );
580             goto error;
581         }
582         free( p_access->psz_path );
583         p_access->psz_path = strdup( p_sys->psz_location );
584         /* Clean up current Open() run */
585         vlc_UrlClean( &p_sys->url );
586         http_auth_Reset( &p_sys->auth );
587         vlc_UrlClean( &p_sys->proxy );
588         free( p_sys->psz_proxy_passbuf );
589         http_auth_Reset( &p_sys->proxy_auth );
590         free( p_sys->psz_mime );
591         free( p_sys->psz_pragma );
592         free( p_sys->psz_location );
593         free( p_sys->psz_user_agent );
594
595         Disconnect( p_access );
596         cookies = p_sys->cookies;
597 #ifdef HAVE_ZLIB_H
598         inflateEnd( &p_sys->inflate.stream );
599 #endif
600         free( p_sys );
601
602         /* Do new Open() run with new data */
603         return OpenWithCookies( p_this, psz_protocol, i_nb_redirect + 1,
604                                 i_max_redirect, cookies );
605     }
606
607     if( p_sys->b_mms )
608     {
609         msg_Dbg( p_access, "this is actually a live mms server, BAIL" );
610         goto error;
611     }
612
613     if( !strcmp( p_sys->psz_protocol, "ICY" ) || p_sys->b_icecast )
614     {
615         if( p_sys->psz_mime && strcasecmp( p_sys->psz_mime, "application/ogg" ) )
616         {
617             if( !strcasecmp( p_sys->psz_mime, "video/nsv" ) ||
618                 !strcasecmp( p_sys->psz_mime, "video/nsa" ) )
619             {
620                 free( p_access->psz_demux );
621                 p_access->psz_demux = strdup( "nsv" );
622             }
623             else if( !strcasecmp( p_sys->psz_mime, "audio/aac" ) ||
624                      !strcasecmp( p_sys->psz_mime, "audio/aacp" ) )
625             {
626                 free( p_access->psz_demux );
627                 p_access->psz_demux = strdup( "m4a" );
628             }
629             else if( !strcasecmp( p_sys->psz_mime, "audio/mpeg" ) )
630             {
631                 free( p_access->psz_demux );
632                 p_access->psz_demux = strdup( "mp3" );
633             }
634
635             msg_Info( p_access, "Raw-audio server found, %s demuxer selected",
636                       p_access->psz_demux );
637
638 #if 0       /* Doesn't work really well because of the pre-buffering in
639              * shoutcast servers (the buffer content will be sent as fast as
640              * possible). */
641             p_sys->b_pace_control = false;
642 #endif
643         }
644         else if( !p_sys->psz_mime )
645         {
646             free( p_access->psz_demux );
647             /* Shoutcast */
648             p_access->psz_demux = strdup( "mp3" );
649         }
650         /* else probably Ogg Vorbis */
651     }
652     else if( !strcasecmp( psz_access, "unsv" ) &&
653              p_sys->psz_mime &&
654              !strcasecmp( p_sys->psz_mime, "misc/ultravox" ) )
655     {
656         free( p_access->psz_demux );
657         /* Grrrr! detect ultravox server and force NSV demuxer */
658         p_access->psz_demux = strdup( "nsv" );
659     }
660     else if( !strcmp( psz_access, "itpc" ) )
661     {
662         free( p_access->psz_demux );
663         p_access->psz_demux = strdup( "podcast" );
664     }
665     else if( p_sys->psz_mime &&
666              !strncasecmp( p_sys->psz_mime, "application/xspf+xml", 20 ) &&
667              ( memchr( " ;\t", p_sys->psz_mime[20], 4 ) != NULL ) )
668     {
669         free( p_access->psz_demux );
670         p_access->psz_demux = strdup( "xspf-open" );
671     }
672
673     if( p_sys->b_reconnect ) msg_Dbg( p_access, "auto re-connect enabled" );
674
675     /* PTS delay */
676     var_Create( p_access, "http-caching", VLC_VAR_INTEGER |VLC_VAR_DOINHERIT );
677
678     return VLC_SUCCESS;
679
680 error:
681     vlc_UrlClean( &p_sys->url );
682     vlc_UrlClean( &p_sys->proxy );
683     free( p_sys->psz_proxy_passbuf );
684     free( p_sys->psz_mime );
685     free( p_sys->psz_pragma );
686     free( p_sys->psz_location );
687     free( p_sys->psz_user_agent );
688
689     Disconnect( p_access );
690
691     if( p_sys->cookies )
692     {
693         int i;
694         for( i = 0; i < vlc_array_count( p_sys->cookies ); i++ )
695             free(vlc_array_item_at_index( p_sys->cookies, i ));
696         vlc_array_destroy( p_sys->cookies );
697     }
698
699 #ifdef HAVE_ZLIB_H
700     inflateEnd( &p_sys->inflate.stream );
701 #endif
702     free( p_sys );
703     return VLC_EGENERIC;
704 }
705
706 /*****************************************************************************
707  * Close:
708  *****************************************************************************/
709 static void Close( vlc_object_t *p_this )
710 {
711     access_t     *p_access = (access_t*)p_this;
712     access_sys_t *p_sys = p_access->p_sys;
713
714     vlc_UrlClean( &p_sys->url );
715     http_auth_Reset( &p_sys->auth );
716     vlc_UrlClean( &p_sys->proxy );
717     http_auth_Reset( &p_sys->proxy_auth );
718
719     free( p_sys->psz_mime );
720     free( p_sys->psz_pragma );
721     free( p_sys->psz_location );
722
723     free( p_sys->psz_icy_name );
724     free( p_sys->psz_icy_genre );
725     free( p_sys->psz_icy_title );
726
727     free( p_sys->psz_user_agent );
728
729     Disconnect( p_access );
730
731     if( p_sys->cookies )
732     {
733         int i;
734         for( i = 0; i < vlc_array_count( p_sys->cookies ); i++ )
735             free(vlc_array_item_at_index( p_sys->cookies, i ));
736         vlc_array_destroy( p_sys->cookies );
737     }
738
739 #ifdef HAVE_ZLIB_H
740     inflateEnd( &p_sys->inflate.stream );
741     free( p_sys->inflate.p_buffer );
742 #endif
743
744     free( p_sys );
745 }
746
747 /*****************************************************************************
748  * Read: Read up to i_len bytes from the http connection and place in
749  * p_buffer. Return the actual number of bytes read
750  *****************************************************************************/
751 static int ReadICYMeta( access_t *p_access );
752 static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
753 {
754     access_sys_t *p_sys = p_access->p_sys;
755     int i_read;
756
757     if( p_sys->fd == -1 )
758     {
759         p_access->info.b_eof = true;
760         return 0;
761     }
762
763     if( p_sys->b_has_size &&
764         i_len + p_access->info.i_pos > p_access->info.i_size )
765     {
766         if( ( i_len = p_access->info.i_size - p_access->info.i_pos ) == 0 )
767         {
768             p_access->info.b_eof = true;
769             return 0;
770         }
771     }
772
773     if( p_sys->b_chunked )
774     {
775         if( p_sys->i_chunk < 0 )
776         {
777             p_access->info.b_eof = true;
778             return 0;
779         }
780
781         if( p_sys->i_chunk <= 0 )
782         {
783             char *psz = net_Gets( p_access, p_sys->fd, p_sys->p_vs );
784             /* read the chunk header */
785             if( psz == NULL )
786             {
787                 /* fatal error - end of file */
788                 msg_Dbg( p_access, "failed reading chunk-header line" );
789                 return 0;
790             }
791             p_sys->i_chunk = strtoll( psz, NULL, 16 );
792             free( psz );
793
794             if( p_sys->i_chunk <= 0 )   /* eof */
795             {
796                 p_sys->i_chunk = -1;
797                 p_access->info.b_eof = true;
798                 return 0;
799             }
800         }
801
802         if( i_len > p_sys->i_chunk )
803         {
804             i_len = p_sys->i_chunk;
805         }
806     }
807     else if( p_sys->b_has_size && (int64_t)i_len > p_sys->i_remaining) {
808         /* Only ask for the remaining length */
809         i_len = (size_t)p_sys->i_remaining;
810         if(i_len == 0) {
811             p_access->info.b_eof = true;
812             return 0;
813         }
814     }
815
816
817     if( p_sys->i_icy_meta > 0 && p_access->info.i_pos-p_sys->i_icy_offset > 0 )
818     {
819         int64_t i_next = p_sys->i_icy_meta -
820                                     (p_access->info.i_pos - p_sys->i_icy_offset ) % p_sys->i_icy_meta;
821
822         if( i_next == p_sys->i_icy_meta )
823         {
824             if( ReadICYMeta( p_access ) )
825             {
826                 p_access->info.b_eof = true;
827                 return -1;
828             }
829         }
830         if( i_len > i_next )
831             i_len = i_next;
832     }
833
834     i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs, p_buffer, i_len, false );
835
836     if( i_read > 0 )
837     {
838         p_access->info.i_pos += i_read;
839
840         if( p_sys->b_chunked )
841         {
842             p_sys->i_chunk -= i_read;
843             if( p_sys->i_chunk <= 0 )
844             {
845                 /* read the empty line */
846                 char *psz = net_Gets( p_access, p_sys->fd, p_sys->p_vs );
847                 free( psz );
848             }
849         }
850     }
851     else if( i_read <= 0 )
852     {
853         /*
854          * I very much doubt that this will work.
855          * If i_read == 0, the connection *IS* dead, so the only
856          * sensible thing to do is Disconnect() and then retry.
857          * Otherwise, I got recv() completely wrong. -- Courmisch
858          */
859         if( p_sys->b_continuous )
860         {
861             Request( p_access, 0 );
862             p_sys->b_continuous = false;
863             i_read = Read( p_access, p_buffer, i_len );
864             p_sys->b_continuous = true;
865         }
866         Disconnect( p_access );
867         if( p_sys->b_reconnect && vlc_object_alive( p_access ) )
868         {
869             msg_Dbg( p_access, "got disconnected, trying to reconnect" );
870             if( Connect( p_access, p_access->info.i_pos ) )
871             {
872                 msg_Dbg( p_access, "reconnection failed" );
873             }
874             else
875             {
876                 p_sys->b_reconnect = false;
877                 i_read = Read( p_access, p_buffer, i_len );
878                 p_sys->b_reconnect = true;
879             }
880         }
881
882         if( i_read == 0 )
883             p_access->info.b_eof = true;
884         else if( i_read < 0 )
885             p_access->b_error = true;
886     }
887
888     if( p_sys->b_has_size )
889     {
890         p_sys->i_remaining -= i_read;
891     }
892
893     return i_read;
894 }
895
896 static int ReadICYMeta( access_t *p_access )
897 {
898     access_sys_t *p_sys = p_access->p_sys;
899
900     uint8_t buffer;
901     char *p, *psz_meta;
902     int i_read;
903
904     /* Read meta data length */
905     i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs, &buffer, 1,
906                        true );
907     if( i_read <= 0 )
908         return VLC_EGENERIC;
909     if( buffer == 0 )
910         return VLC_SUCCESS;
911
912     i_read = buffer << 4;
913     /* msg_Dbg( p_access, "ICY meta size=%u", i_read); */
914
915     psz_meta = malloc( i_read + 1 );
916     if( net_Read( p_access, p_sys->fd, p_sys->p_vs,
917                   (uint8_t *)psz_meta, i_read, true ) != i_read )
918     {
919         free( psz_meta );
920         return VLC_EGENERIC;
921     }
922
923     psz_meta[i_read] = '\0'; /* Just in case */
924
925     /* msg_Dbg( p_access, "icy-meta=%s", psz_meta ); */
926
927     /* Now parse the meta */
928     /* Look for StreamTitle= */
929     p = strcasestr( (char *)psz_meta, "StreamTitle=" );
930     if( p )
931     {
932         p += strlen( "StreamTitle=" );
933         if( *p == '\'' || *p == '"' )
934         {
935             char closing[] = { p[0], ';', '\0' };
936             char *psz = strstr( &p[1], closing );
937             if( !psz )
938                 psz = strchr( &p[1], ';' );
939
940             if( psz ) *psz = '\0';
941         }
942         else
943         {
944             char *psz = strchr( &p[1], ';' );
945             if( psz ) *psz = '\0';
946         }
947
948         if( !p_sys->psz_icy_title ||
949             strcmp( p_sys->psz_icy_title, &p[1] ) )
950         {
951             free( p_sys->psz_icy_title );
952             char *psz_tmp = strdup( &p[1] );
953             p_sys->psz_icy_title = EnsureUTF8( psz_tmp );
954             if( !p_sys->psz_icy_title )
955                 free( psz_tmp );
956             p_access->info.i_update |= INPUT_UPDATE_META;
957
958             msg_Dbg( p_access, "New Title=%s", p_sys->psz_icy_title );
959         }
960     }
961     free( psz_meta );
962
963     return VLC_SUCCESS;
964 }
965
966 #ifdef HAVE_ZLIB_H
967 static ssize_t ReadCompressed( access_t *p_access, uint8_t *p_buffer,
968                                size_t i_len )
969 {
970     access_sys_t *p_sys = p_access->p_sys;
971
972     if( p_sys->b_compressed )
973     {
974         int i_ret;
975
976         if( !p_sys->inflate.p_buffer )
977             p_sys->inflate.p_buffer = malloc( 256 * 1024 );
978
979         if( p_sys->inflate.stream.avail_in == 0 )
980         {
981             ssize_t i_read = Read( p_access, p_sys->inflate.p_buffer + p_sys->inflate.stream.avail_in, 256 * 1024 );
982             if( i_read <= 0 ) return i_read;
983             p_sys->inflate.stream.next_in = p_sys->inflate.p_buffer;
984             p_sys->inflate.stream.avail_in = i_read;
985         }
986
987         p_sys->inflate.stream.avail_out = i_len;
988         p_sys->inflate.stream.next_out = p_buffer;
989
990         i_ret = inflate( &p_sys->inflate.stream, Z_SYNC_FLUSH );
991         msg_Warn( p_access, "inflate return value: %d, %s", i_ret, p_sys->inflate.stream.msg );
992
993         return i_len - p_sys->inflate.stream.avail_out;
994     }
995     else
996     {
997         return Read( p_access, p_buffer, i_len );
998     }
999 }
1000 #endif
1001
1002 /*****************************************************************************
1003  * Seek: close and re-open a connection at the right place
1004  *****************************************************************************/
1005 static int Seek( access_t *p_access, int64_t i_pos )
1006 {
1007     msg_Dbg( p_access, "trying to seek to %"PRId64, i_pos );
1008
1009     Disconnect( p_access );
1010
1011     if( p_access->info.i_size
1012      && (uint64_t)i_pos >= (uint64_t)p_access->info.i_size ) {
1013         msg_Err( p_access, "seek to far" );
1014         int retval = Seek( p_access, p_access->info.i_size - 1 );
1015         if( retval == VLC_SUCCESS ) {
1016             uint8_t p_buffer[2];
1017             Read( p_access, p_buffer, 1);
1018             p_access->info.b_eof  = false;
1019         }
1020         return retval;
1021     }
1022     if( Connect( p_access, i_pos ) )
1023     {
1024         msg_Err( p_access, "seek failed" );
1025         p_access->info.b_eof = true;
1026         return VLC_EGENERIC;
1027     }
1028     return VLC_SUCCESS;
1029 }
1030
1031 /*****************************************************************************
1032  * Control:
1033  *****************************************************************************/
1034 static int Control( access_t *p_access, int i_query, va_list args )
1035 {
1036     access_sys_t *p_sys = p_access->p_sys;
1037     bool       *pb_bool;
1038     int64_t    *pi_64;
1039     vlc_meta_t *p_meta;
1040
1041     switch( i_query )
1042     {
1043         /* */
1044         case ACCESS_CAN_SEEK:
1045             pb_bool = (bool*)va_arg( args, bool* );
1046             *pb_bool = p_sys->b_seekable;
1047             break;
1048         case ACCESS_CAN_FASTSEEK:
1049             pb_bool = (bool*)va_arg( args, bool* );
1050             *pb_bool = false;
1051             break;
1052         case ACCESS_CAN_PAUSE:
1053         case ACCESS_CAN_CONTROL_PACE:
1054             pb_bool = (bool*)va_arg( args, bool* );
1055
1056 #if 0       /* Disable for now until we have a clock synchro algo
1057              * which works with something else than MPEG over UDP */
1058             *pb_bool = p_sys->b_pace_control;
1059 #endif
1060             *pb_bool = true;
1061             break;
1062
1063         /* */
1064         case ACCESS_GET_PTS_DELAY:
1065             pi_64 = (int64_t*)va_arg( args, int64_t * );
1066             *pi_64 = (int64_t)var_GetInteger( p_access, "http-caching" ) * 1000;
1067             break;
1068
1069         /* */
1070         case ACCESS_SET_PAUSE_STATE:
1071             break;
1072
1073         case ACCESS_GET_META:
1074             p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t* );
1075
1076             if( p_sys->psz_icy_name )
1077                 vlc_meta_Set( p_meta, vlc_meta_Title, p_sys->psz_icy_name );
1078             if( p_sys->psz_icy_genre )
1079                 vlc_meta_Set( p_meta, vlc_meta_Genre, p_sys->psz_icy_genre );
1080             if( p_sys->psz_icy_title )
1081                 vlc_meta_Set( p_meta, vlc_meta_NowPlaying, p_sys->psz_icy_title );
1082             break;
1083
1084         case ACCESS_GET_CONTENT_TYPE:
1085             *va_arg( args, char ** ) =
1086                 p_sys->psz_mime ? strdup( p_sys->psz_mime ) : NULL;
1087             break;
1088
1089         case ACCESS_GET_TITLE_INFO:
1090         case ACCESS_SET_TITLE:
1091         case ACCESS_SET_SEEKPOINT:
1092         case ACCESS_SET_PRIVATE_ID_STATE:
1093             return VLC_EGENERIC;
1094
1095         default:
1096             msg_Warn( p_access, "unimplemented query in control" );
1097             return VLC_EGENERIC;
1098
1099     }
1100     return VLC_SUCCESS;
1101 }
1102
1103 /*****************************************************************************
1104  * Connect:
1105  *****************************************************************************/
1106 static int Connect( access_t *p_access, int64_t i_tell )
1107 {
1108     access_sys_t   *p_sys = p_access->p_sys;
1109     vlc_url_t      srv = p_sys->b_proxy ? p_sys->proxy : p_sys->url;
1110
1111     /* Clean info */
1112     free( p_sys->psz_location );
1113     free( p_sys->psz_mime );
1114     free( p_sys->psz_pragma );
1115
1116     free( p_sys->psz_icy_genre );
1117     free( p_sys->psz_icy_name );
1118     free( p_sys->psz_icy_title );
1119
1120
1121     p_sys->psz_location = NULL;
1122     p_sys->psz_mime = NULL;
1123     p_sys->psz_pragma = NULL;
1124     p_sys->b_mms = false;
1125     p_sys->b_chunked = false;
1126     p_sys->i_chunk = 0;
1127     p_sys->i_icy_meta = 0;
1128     p_sys->i_icy_offset = i_tell;
1129     p_sys->psz_icy_name = NULL;
1130     p_sys->psz_icy_genre = NULL;
1131     p_sys->psz_icy_title = NULL;
1132     p_sys->i_remaining = 0;
1133     p_sys->b_persist = false;
1134     p_sys->b_has_size = false;
1135     p_access->info.i_size = 0;
1136     p_access->info.i_pos  = i_tell;
1137     p_access->info.b_eof  = false;
1138
1139     /* Open connection */
1140     assert( p_sys->fd == -1 ); /* No open sockets (leaking fds is BAD) */
1141     p_sys->fd = net_ConnectTCP( p_access, srv.psz_host, srv.i_port );
1142     if( p_sys->fd == -1 )
1143     {
1144         msg_Err( p_access, "cannot connect to %s:%d", srv.psz_host, srv.i_port );
1145         return -1;
1146     }
1147     setsockopt (p_sys->fd, SOL_SOCKET, SO_KEEPALIVE, &(int){ 1 }, sizeof (int));
1148
1149     /* Initialize TLS/SSL session */
1150     if( p_sys->b_ssl == true )
1151     {
1152         /* CONNECT to establish TLS tunnel through HTTP proxy */
1153         if( p_sys->b_proxy )
1154         {
1155             char *psz;
1156             unsigned i_status = 0;
1157
1158             if( p_sys->i_version == 0 )
1159             {
1160                 /* CONNECT is not in HTTP/1.0 */
1161                 Disconnect( p_access );
1162                 return -1;
1163             }
1164
1165             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
1166                         "CONNECT %s:%d HTTP/1.%d\r\nHost: %s:%d\r\n\r\n",
1167                         p_sys->url.psz_host, p_sys->url.i_port,
1168                         p_sys->i_version,
1169                         p_sys->url.psz_host, p_sys->url.i_port);
1170
1171             psz = net_Gets( p_access, p_sys->fd, NULL );
1172             if( psz == NULL )
1173             {
1174                 msg_Err( p_access, "cannot establish HTTP/TLS tunnel" );
1175                 Disconnect( p_access );
1176                 return -1;
1177             }
1178
1179             sscanf( psz, "HTTP/%*u.%*u %3u", &i_status );
1180             free( psz );
1181
1182             if( ( i_status / 100 ) != 2 )
1183             {
1184                 msg_Err( p_access, "HTTP/TLS tunnel through proxy denied" );
1185                 Disconnect( p_access );
1186                 return -1;
1187             }
1188
1189             do
1190             {
1191                 psz = net_Gets( p_access, p_sys->fd, NULL );
1192                 if( psz == NULL )
1193                 {
1194                     msg_Err( p_access, "HTTP proxy connection failed" );
1195                     Disconnect( p_access );
1196                     return -1;
1197                 }
1198
1199                 if( *psz == '\0' )
1200                     i_status = 0;
1201
1202                 free( psz );
1203
1204                 if( !vlc_object_alive (p_access) || p_access->b_error )
1205                 {
1206                     Disconnect( p_access );
1207                     return -1;
1208                 }
1209             }
1210             while( i_status );
1211         }
1212
1213         /* TLS/SSL handshake */
1214         p_sys->p_tls = tls_ClientCreate( VLC_OBJECT(p_access), p_sys->fd,
1215                                          p_sys->url.psz_host );
1216         if( p_sys->p_tls == NULL )
1217         {
1218             msg_Err( p_access, "cannot establish HTTP/TLS session" );
1219             Disconnect( p_access );
1220             return -1;
1221         }
1222         p_sys->p_vs = &p_sys->p_tls->sock;
1223     }
1224
1225     return Request( p_access, i_tell ) ? -2 : 0;
1226 }
1227
1228
1229 static int Request( access_t *p_access, int64_t i_tell )
1230 {
1231     access_sys_t   *p_sys = p_access->p_sys;
1232     char           *psz ;
1233     v_socket_t     *pvs = p_sys->p_vs;
1234     p_sys->b_persist = false;
1235
1236     p_sys->i_remaining = 0;
1237     if( p_sys->b_proxy )
1238     {
1239         if( p_sys->url.psz_path )
1240         {
1241             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
1242                         "GET http://%s:%d%s HTTP/1.%d\r\n",
1243                         p_sys->url.psz_host, p_sys->url.i_port,
1244                         p_sys->url.psz_path, p_sys->i_version );
1245         }
1246         else
1247         {
1248             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
1249                         "GET http://%s:%d/ HTTP/1.%d\r\n",
1250                         p_sys->url.psz_host, p_sys->url.i_port,
1251                         p_sys->i_version );
1252         }
1253     }
1254     else
1255     {
1256         const char *psz_path = p_sys->url.psz_path;
1257         if( !psz_path || !*psz_path )
1258         {
1259             psz_path = "/";
1260         }
1261         if( p_sys->url.i_port != (pvs ? 443 : 80) )
1262         {
1263             net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
1264                         "GET %s HTTP/1.%d\r\nHost: %s:%d\r\n",
1265                         psz_path, p_sys->i_version, p_sys->url.psz_host,
1266                         p_sys->url.i_port );
1267         }
1268         else
1269         {
1270             net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
1271                         "GET %s HTTP/1.%d\r\nHost: %s\r\n",
1272                         psz_path, p_sys->i_version, p_sys->url.psz_host );
1273         }
1274     }
1275     /* User Agent */
1276     net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "User-Agent: %s\r\n",
1277                 p_sys->psz_user_agent );
1278     /* Offset */
1279     if( p_sys->i_version == 1 && ! p_sys->b_continuous )
1280     {
1281         p_sys->b_persist = true;
1282         net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
1283                     "Range: bytes=%"PRIu64"-\r\n", i_tell );
1284     }
1285
1286     /* Cookies */
1287     if( p_sys->cookies )
1288     {
1289         int i;
1290         for( i = 0; i < vlc_array_count( p_sys->cookies ); i++ )
1291         {
1292             const char * cookie = vlc_array_item_at_index( p_sys->cookies, i );
1293             char * psz_cookie_content = cookie_get_content( cookie );
1294             char * psz_cookie_domain = cookie_get_domain( cookie );
1295
1296             assert( psz_cookie_content );
1297
1298             /* FIXME: This is clearly not conforming to the rfc */
1299             bool is_in_right_domain = (!psz_cookie_domain || strstr( p_sys->url.psz_host, psz_cookie_domain ));
1300
1301             if( is_in_right_domain )
1302             {
1303                 msg_Dbg( p_access, "Sending Cookie %s", psz_cookie_content );
1304                 if( net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "Cookie: %s\r\n", psz_cookie_content ) < 0 )
1305                     msg_Err( p_access, "failed to send Cookie" );
1306             }
1307             free( psz_cookie_content );
1308             free( psz_cookie_domain );
1309         }
1310     }
1311
1312     /* Authentication */
1313     if( p_sys->url.psz_username || p_sys->url.psz_password )
1314         AuthReply( p_access, "", &p_sys->url, &p_sys->auth );
1315
1316     /* Proxy Authentication */
1317     if( p_sys->proxy.psz_username || p_sys->proxy.psz_password )
1318         AuthReply( p_access, "Proxy-", &p_sys->proxy, &p_sys->proxy_auth );
1319
1320     /* ICY meta data request */
1321     net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "Icy-MetaData: 1\r\n" );
1322
1323
1324     if( net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "\r\n" ) < 0 )
1325     {
1326         msg_Err( p_access, "failed to send request" );
1327         Disconnect( p_access );
1328         return VLC_EGENERIC;
1329     }
1330
1331     /* Read Answer */
1332     if( ( psz = net_Gets( p_access, p_sys->fd, pvs ) ) == NULL )
1333     {
1334         msg_Err( p_access, "failed to read answer" );
1335         goto error;
1336     }
1337     if( !strncmp( psz, "HTTP/1.", 7 ) )
1338     {
1339         p_sys->psz_protocol = "HTTP";
1340         p_sys->i_code = atoi( &psz[9] );
1341     }
1342     else if( !strncmp( psz, "ICY", 3 ) )
1343     {
1344         p_sys->psz_protocol = "ICY";
1345         p_sys->i_code = atoi( &psz[4] );
1346         p_sys->b_reconnect = true;
1347     }
1348     else
1349     {
1350         msg_Err( p_access, "invalid HTTP reply '%s'", psz );
1351         free( psz );
1352         goto error;
1353     }
1354     msg_Dbg( p_access, "protocol '%s' answer code %d",
1355              p_sys->psz_protocol, p_sys->i_code );
1356     if( !strcmp( p_sys->psz_protocol, "ICY" ) )
1357     {
1358         p_sys->b_seekable = false;
1359     }
1360     if( p_sys->i_code != 206 && p_sys->i_code != 401 )
1361     {
1362         p_sys->b_seekable = false;
1363     }
1364     /* Authentication error - We'll have to display the dialog */
1365     if( p_sys->i_code == 401 )
1366     {
1367
1368     }
1369     /* Other fatal error */
1370     else if( p_sys->i_code >= 400 )
1371     {
1372         msg_Err( p_access, "error: %s", psz );
1373         free( psz );
1374         goto error;
1375     }
1376     free( psz );
1377
1378     for( ;; )
1379     {
1380         char *psz = net_Gets( p_access, p_sys->fd, pvs );
1381         char *p;
1382
1383         if( psz == NULL )
1384         {
1385             msg_Err( p_access, "failed to read answer" );
1386             goto error;
1387         }
1388
1389         if( !vlc_object_alive (p_access) || p_access->b_error )
1390         {
1391             free( psz );
1392             goto error;
1393         }
1394
1395         /* msg_Dbg( p_input, "Line=%s", psz ); */
1396         if( *psz == '\0' )
1397         {
1398             free( psz );
1399             break;
1400         }
1401
1402         if( ( p = strchr( psz, ':' ) ) == NULL )
1403         {
1404             msg_Err( p_access, "malformed header line: %s", psz );
1405             free( psz );
1406             goto error;
1407         }
1408         *p++ = '\0';
1409         while( *p == ' ' ) p++;
1410
1411         if( !strcasecmp( psz, "Content-Length" ) )
1412         {
1413             int64_t i_size = i_tell + (p_sys->i_remaining = atoll( p ));
1414             if(i_size > p_access->info.i_size) {
1415                 p_sys->b_has_size = true;
1416                 p_access->info.i_size = i_size;
1417             }
1418             msg_Dbg( p_access, "this frame size=%"PRId64, p_sys->i_remaining );
1419         }
1420         else if( !strcasecmp( psz, "Content-Range" ) ) {
1421             int64_t i_ntell = i_tell;
1422             int64_t i_nend = (p_access->info.i_size > 0)?(p_access->info.i_size - 1):i_tell;
1423             int64_t i_nsize = p_access->info.i_size;
1424             sscanf(p,"bytes %"SCNd64"-%"SCNd64"/%"SCNd64,&i_ntell,&i_nend,&i_nsize);
1425             if(i_nend > i_ntell ) {
1426                 p_access->info.i_pos = i_ntell;
1427                 p_sys->i_remaining = i_nend+1-i_ntell;
1428                 int64_t i_size = (i_nsize > i_nend) ? i_nsize : (i_nend + 1);
1429                 if(i_size > p_access->info.i_size) {
1430                     p_sys->b_has_size = true;
1431                     p_access->info.i_size = i_size;
1432                 }
1433                 msg_Dbg( p_access, "stream size=%"PRId64",pos=%"PRId64",remaining=%"PRId64,i_nsize,i_ntell,p_sys->i_remaining);
1434             }
1435         }
1436         else if( !strcasecmp( psz, "Connection" ) ) {
1437             msg_Dbg( p_access, "Connection: %s",p );
1438             int i = -1;
1439             sscanf(p, "close%n",&i);
1440             if( i >= 0 ) {
1441                 p_sys->b_persist = false;
1442             }
1443         }
1444         else if( !strcasecmp( psz, "Location" ) )
1445         {
1446             char * psz_new_loc;
1447
1448             /* This does not follow RFC 2068, but yet if the url is not absolute,
1449              * handle it as everyone does. */
1450             if( p[0] == '/' )
1451             {
1452                 const char *psz_http_ext = p_sys->b_ssl ? "s" : "" ;
1453
1454                 if( p_sys->url.i_port == ( p_sys->b_ssl ? 443 : 80 ) )
1455                 {
1456                     if( asprintf(&psz_new_loc, "http%s://%s%s", psz_http_ext,
1457                                  p_sys->url.psz_host, p) < 0 )
1458                         goto error;
1459                 }
1460                 else
1461                 {
1462                     if( asprintf(&psz_new_loc, "http%s://%s:%d%s", psz_http_ext,
1463                                  p_sys->url.psz_host, p_sys->url.i_port, p) < 0 )
1464                         goto error;
1465                 }
1466             }
1467             else
1468             {
1469                 psz_new_loc = strdup( p );
1470             }
1471
1472             free( p_sys->psz_location );
1473             p_sys->psz_location = psz_new_loc;
1474         }
1475         else if( !strcasecmp( psz, "Content-Type" ) )
1476         {
1477             free( p_sys->psz_mime );
1478             p_sys->psz_mime = strdup( p );
1479             msg_Dbg( p_access, "Content-Type: %s", p_sys->psz_mime );
1480         }
1481         else if( !strcasecmp( psz, "Content-Encoding" ) )
1482         {
1483             msg_Dbg( p_access, "Content-Encoding: %s", p );
1484             if( !strcasecmp( p, "identity" ) )
1485                 ;
1486 #ifdef HAVE_ZLIB_H
1487             else if( !strcasecmp( p, "gzip" ) || !strcasecmp( p, "deflate" ) )
1488                 p_sys->b_compressed = true;
1489 #endif
1490             else
1491                 msg_Warn( p_access, "Unknown content coding: %s", p );
1492         }
1493         else if( !strcasecmp( psz, "Pragma" ) )
1494         {
1495             if( !strcasecmp( psz, "Pragma: features" ) )
1496                 p_sys->b_mms = true;
1497             free( p_sys->psz_pragma );
1498             p_sys->psz_pragma = strdup( p );
1499             msg_Dbg( p_access, "Pragma: %s", p_sys->psz_pragma );
1500         }
1501         else if( !strcasecmp( psz, "Server" ) )
1502         {
1503             msg_Dbg( p_access, "Server: %s", p );
1504             if( !strncasecmp( p, "Icecast", 7 ) ||
1505                 !strncasecmp( p, "Nanocaster", 10 ) )
1506             {
1507                 /* Remember if this is Icecast
1508                  * we need to force demux in this case without breaking
1509                  *  autodetection */
1510
1511                 /* Let live 365 streams (nanocaster) piggyback on the icecast
1512                  * routine. They look very similar */
1513
1514                 p_sys->b_reconnect = true;
1515                 p_sys->b_pace_control = false;
1516                 p_sys->b_icecast = true;
1517             }
1518         }
1519         else if( !strcasecmp( psz, "Transfer-Encoding" ) )
1520         {
1521             msg_Dbg( p_access, "Transfer-Encoding: %s", p );
1522             if( !strncasecmp( p, "chunked", 7 ) )
1523             {
1524                 p_sys->b_chunked = true;
1525             }
1526         }
1527         else if( !strcasecmp( psz, "Icy-MetaInt" ) )
1528         {
1529             msg_Dbg( p_access, "Icy-MetaInt: %s", p );
1530             p_sys->i_icy_meta = atoi( p );
1531             if( p_sys->i_icy_meta < 0 )
1532                 p_sys->i_icy_meta = 0;
1533             if( p_sys->i_icy_meta > 0 )
1534                 p_sys->b_icecast = true;
1535
1536             msg_Warn( p_access, "ICY metaint=%d", p_sys->i_icy_meta );
1537         }
1538         else if( !strcasecmp( psz, "Icy-Name" ) )
1539         {
1540             free( p_sys->psz_icy_name );
1541             char *psz_tmp = strdup( p );
1542             p_sys->psz_icy_name = EnsureUTF8( psz_tmp );
1543             if( !p_sys->psz_icy_name )
1544                 free( psz_tmp );
1545             msg_Dbg( p_access, "Icy-Name: %s", p_sys->psz_icy_name );
1546
1547             p_sys->b_icecast = true; /* be on the safeside. set it here as well. */
1548             p_sys->b_reconnect = true;
1549             p_sys->b_pace_control = false;
1550         }
1551         else if( !strcasecmp( psz, "Icy-Genre" ) )
1552         {
1553             free( p_sys->psz_icy_genre );
1554             char *psz_tmp = strdup( p );
1555             p_sys->psz_icy_genre = EnsureUTF8( psz_tmp );
1556             if( !p_sys->psz_icy_genre )
1557                 free( psz_tmp );
1558             msg_Dbg( p_access, "Icy-Genre: %s", p_sys->psz_icy_genre );
1559         }
1560         else if( !strncasecmp( psz, "Icy-Notice", 10 ) )
1561         {
1562             msg_Dbg( p_access, "Icy-Notice: %s", p );
1563         }
1564         else if( !strncasecmp( psz, "icy-", 4 ) ||
1565                  !strncasecmp( psz, "ice-", 4 ) ||
1566                  !strncasecmp( psz, "x-audiocast", 11 ) )
1567         {
1568             msg_Dbg( p_access, "Meta-Info: %s: %s", psz, p );
1569         }
1570         else if( !strcasecmp( psz, "Set-Cookie" ) )
1571         {
1572             if( p_sys->cookies )
1573             {
1574                 msg_Dbg( p_access, "Accepting Cookie: %s", p );
1575                 cookie_append( p_sys->cookies, strdup(p) );
1576             }
1577             else
1578                 msg_Dbg( p_access, "We have a Cookie we won't remember: %s", p );
1579         }
1580         else if( !strcasecmp( psz, "www-authenticate" ) )
1581         {
1582             msg_Dbg( p_access, "Authentication header: %s", p );
1583             http_auth_ParseWwwAuthenticateHeader( VLC_OBJECT(p_access),
1584                                                   &p_sys->auth, p );
1585         }
1586         else if( !strcasecmp( psz, "proxy-authenticate" ) )
1587         {
1588             msg_Dbg( p_access, "Proxy authentication header: %s", p );
1589             http_auth_ParseWwwAuthenticateHeader( VLC_OBJECT(p_access),
1590                                                   &p_sys->proxy_auth, p );
1591         }
1592         else if( !strcasecmp( psz, "authentication-info" ) )
1593         {
1594             msg_Dbg( p_access, "Authentication Info header: %s", p );
1595             if( AuthCheckReply( p_access, p, &p_sys->url, &p_sys->auth ) )
1596                 goto error;
1597         }
1598         else if( !strcasecmp( psz, "proxy-authentication-info" ) )
1599         {
1600             msg_Dbg( p_access, "Proxy Authentication Info header: %s", p );
1601             if( AuthCheckReply( p_access, p, &p_sys->proxy, &p_sys->proxy_auth ) )
1602                 goto error;
1603         }
1604
1605         free( psz );
1606     }
1607     /* We close the stream for zero length data, unless of course the
1608      * server has already promised to do this for us.
1609      */
1610     if( p_sys->b_has_size && p_sys->i_remaining == 0 && p_sys->b_persist ) {
1611         Disconnect( p_access );
1612     }
1613     return VLC_SUCCESS;
1614
1615 error:
1616     Disconnect( p_access );
1617     return VLC_EGENERIC;
1618 }
1619
1620 /*****************************************************************************
1621  * Disconnect:
1622  *****************************************************************************/
1623 static void Disconnect( access_t *p_access )
1624 {
1625     access_sys_t *p_sys = p_access->p_sys;
1626
1627     if( p_sys->p_tls != NULL)
1628     {
1629         tls_ClientDelete( p_sys->p_tls );
1630         p_sys->p_tls = NULL;
1631         p_sys->p_vs = NULL;
1632     }
1633     if( p_sys->fd != -1)
1634     {
1635         net_Close(p_sys->fd);
1636         p_sys->fd = -1;
1637     }
1638
1639 }
1640
1641 /*****************************************************************************
1642  * Cookies (FIXME: we may want to rewrite that using a nice structure to hold
1643  * them) (FIXME: only support the "domain=" param)
1644  *****************************************************************************/
1645
1646 /* Get the NAME=VALUE part of the Cookie */
1647 static char * cookie_get_content( const char * cookie )
1648 {
1649     char * ret = strdup( cookie );
1650     if( !ret ) return NULL;
1651     char * str = ret;
1652     /* Look for a ';' */
1653     while( *str && *str != ';' ) str++;
1654     /* Replace it by a end-char */
1655     if( *str == ';' ) *str = 0;
1656     return ret;
1657 }
1658
1659 /* Get the domain where the cookie is stored */
1660 static char * cookie_get_domain( const char * cookie )
1661 {
1662     const char * str = cookie;
1663     static const char domain[] = "domain=";
1664     if( !str )
1665         return NULL;
1666     /* Look for a ';' */
1667     while( *str )
1668     {
1669         if( !strncmp( str, domain, sizeof(domain) - 1 /* minus \0 */ ) )
1670         {
1671             str += sizeof(domain) - 1 /* minus \0 */;
1672             char * ret = strdup( str );
1673             /* Now remove the next ';' if present */
1674             char * ret_iter = ret;
1675             while( *ret_iter && *ret_iter != ';' ) ret_iter++;
1676             if( *ret_iter == ';' )
1677                 *ret_iter = 0;
1678             return ret;
1679         }
1680         /* Go to next ';' field */
1681         while( *str && *str != ';' ) str++;
1682         if( *str == ';' ) str++;
1683         /* skip blank */
1684         while( *str && *str == ' ' ) str++;
1685     }
1686     return NULL;
1687 }
1688
1689 /* Get NAME in the NAME=VALUE field */
1690 static char * cookie_get_name( const char * cookie )
1691 {
1692     char * ret = cookie_get_content( cookie ); /* NAME=VALUE */
1693     if( !ret ) return NULL;
1694     char * str = ret;
1695     while( *str && *str != '=' ) str++;
1696     *str = 0;
1697     return ret;
1698 }
1699
1700 /* Add a cookie in cookies, checking to see how it should be added */
1701 static void cookie_append( vlc_array_t * cookies, char * cookie )
1702 {
1703     int i;
1704
1705     if( !cookie )
1706         return;
1707
1708     char * cookie_name = cookie_get_name( cookie );
1709
1710     /* Don't send invalid cookies */
1711     if( !cookie_name )
1712         return;
1713
1714     char * cookie_domain = cookie_get_domain( cookie );
1715     for( i = 0; i < vlc_array_count( cookies ); i++ )
1716     {
1717         char * current_cookie = vlc_array_item_at_index( cookies, i );
1718         char * current_cookie_name = cookie_get_name( current_cookie );
1719         char * current_cookie_domain = cookie_get_domain( current_cookie );
1720
1721         assert( current_cookie_name );
1722
1723         bool is_domain_matching = ( cookie_domain && current_cookie_domain &&
1724                                          !strcmp( cookie_domain, current_cookie_domain ) );
1725
1726         if( is_domain_matching && !strcmp( cookie_name, current_cookie_name )  )
1727         {
1728             /* Remove previous value for this cookie */
1729             free( current_cookie );
1730             vlc_array_remove( cookies, i );
1731
1732             /* Clean */
1733             free( current_cookie_name );
1734             free( current_cookie_domain );
1735             break;
1736         }
1737         free( current_cookie_name );
1738         free( current_cookie_domain );
1739     }
1740     free( cookie_name );
1741     free( cookie_domain );
1742     vlc_array_append( cookies, cookie );
1743 }
1744
1745
1746 /*****************************************************************************
1747  * HTTP authentication
1748  *****************************************************************************/
1749
1750 static void AuthReply( access_t *p_access, const char *psz_prefix,
1751                        vlc_url_t *p_url, http_auth_t *p_auth )
1752 {
1753     access_sys_t *p_sys = p_access->p_sys;
1754     char *psz_value;
1755
1756     psz_value =
1757         http_auth_FormatAuthorizationHeader( VLC_OBJECT(p_access), p_auth,
1758                                              "GET", p_url->psz_path,
1759                                              p_url->psz_username,
1760                                              p_url->psz_password );
1761     if ( psz_value == NULL )
1762         return;
1763
1764     net_Printf( VLC_OBJECT(p_access), p_sys->fd, p_sys->p_vs,
1765                 "%sAuthorization: %s\r\n", psz_prefix, psz_value );
1766     free( psz_value );
1767 }
1768
1769 static int AuthCheckReply( access_t *p_access, const char *psz_header,
1770                            vlc_url_t *p_url, http_auth_t *p_auth )
1771 {
1772     return
1773         http_auth_ParseAuthenticationInfoHeader( VLC_OBJECT(p_access), p_auth,
1774                                                  psz_header, "",
1775                                                  p_url->psz_path,
1776                                                  p_url->psz_username,
1777                                                  p_url->psz_password );
1778 }