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