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