Rename access_t.psz_path to psz_location
[vlc/asuraparaju-public.git] / modules / access / http.c
blob9fc2a74b86474784400adcaa76980a04ea651e63
1 /*****************************************************************************
2 * http.c: HTTP input module
3 *****************************************************************************
4 * Copyright (C) 2001-2008 the VideoLAN team
5 * $Id$
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>
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.
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.
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 *****************************************************************************/
27 /*****************************************************************************
28 * Preamble
29 *****************************************************************************/
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
34 #include <vlc_common.h>
35 #include <vlc_plugin.h>
38 #include <vlc_access.h>
40 #include <vlc_dialog.h>
41 #include <vlc_meta.h>
42 #include <vlc_network.h>
43 #include <vlc_url.h>
44 #include <vlc_tls.h>
45 #include <vlc_strings.h>
46 #include <vlc_charset.h>
47 #include <vlc_input.h>
48 #include <vlc_md5.h>
49 #include <vlc_http.h>
51 #ifdef HAVE_ZLIB_H
52 # include <zlib.h>
53 #endif
55 #include <assert.h>
57 #ifdef HAVE_LIBPROXY
58 # include <proxy.h>
59 #endif
61 #ifdef WIN32
62 # include <windows.h>
63 #endif
65 /*****************************************************************************
66 * Module descriptor
67 *****************************************************************************/
68 static int Open ( vlc_object_t * );
69 static void Close( vlc_object_t * );
71 #define PROXY_TEXT N_("HTTP proxy")
72 #define PROXY_LONGTEXT N_( \
73 "HTTP proxy to be used It must be of the form " \
74 "http://[user@]myproxy.mydomain:myport/ ; " \
75 "if empty, the http_proxy environment variable will be tried." )
77 #define PROXY_PASS_TEXT N_("HTTP proxy password")
78 #define PROXY_PASS_LONGTEXT N_( \
79 "If your HTTP proxy requires a password, set it here." )
81 #define CACHING_TEXT N_("Caching value in ms")
82 #define CACHING_LONGTEXT N_( \
83 "Caching value for HTTP streams. This " \
84 "value should be set in milliseconds." )
86 #define AGENT_TEXT N_("HTTP user agent")
87 #define AGENT_LONGTEXT N_("User agent that will be " \
88 "used for the connection.")
90 #define RECONNECT_TEXT N_("Auto re-connect")
91 #define RECONNECT_LONGTEXT N_( \
92 "Automatically try to reconnect to the stream in case of a sudden " \
93 "disconnect." )
95 #define CONTINUOUS_TEXT N_("Continuous stream")
96 #define CONTINUOUS_LONGTEXT N_("Read a file that is " \
97 "being constantly updated (for example, a JPG file on a server). " \
98 "You should not globally enable this option as it will break all other " \
99 "types of HTTP streams." )
101 #define FORWARD_COOKIES_TEXT N_("Forward Cookies")
102 #define FORWARD_COOKIES_LONGTEXT N_("Forward Cookies across http redirections.")
104 #define MAX_REDIRECT_TEXT N_("Max number of redirection")
105 #define MAX_REDIRECT_LONGTEXT N_("Limit the number of redirection to follow.")
107 #define USE_IE_PROXY_TEXT N_("Use Internet Explorer entered HTTP proxy server")
108 #define USE_IE_PROXY_LONGTEXT N_("Use Internet Explorer entered HTTP proxy " \
109 "server for all URL. Don't take into account bypasses settings and auto " \
110 "configuration scripts.")
112 vlc_module_begin ()
113 set_description( N_("HTTP input") )
114 set_capability( "access", 0 )
115 set_shortname( N_( "HTTP(S)" ) )
116 set_category( CAT_INPUT )
117 set_subcategory( SUBCAT_INPUT_ACCESS )
119 add_string( "http-proxy", NULL, NULL, PROXY_TEXT, PROXY_LONGTEXT,
120 false )
121 add_password( "http-proxy-pwd", NULL, NULL,
122 PROXY_PASS_TEXT, PROXY_PASS_LONGTEXT, false )
123 add_integer( "http-caching", 4 * DEFAULT_PTS_DELAY / 1000, NULL,
124 CACHING_TEXT, CACHING_LONGTEXT, true )
125 change_safe()
126 add_string( "http-user-agent", PACKAGE_NAME" "PACKAGE_VERSION, NULL,
127 AGENT_TEXT, AGENT_LONGTEXT, true )
128 change_safe()
129 add_bool( "http-reconnect", false, NULL, RECONNECT_TEXT,
130 RECONNECT_LONGTEXT, true )
131 add_bool( "http-continuous", false, NULL, CONTINUOUS_TEXT,
132 CONTINUOUS_LONGTEXT, true )
133 change_safe()
134 add_bool( "http-forward-cookies", true, NULL, FORWARD_COOKIES_TEXT,
135 FORWARD_COOKIES_LONGTEXT, true )
136 add_integer( "http-max-redirect", 5, NULL, MAX_REDIRECT_TEXT,
137 MAX_REDIRECT_LONGTEXT, true )
138 #ifdef WIN32
139 add_bool( "http-use-IE-proxy", false, NULL, USE_IE_PROXY_TEXT,
140 USE_IE_PROXY_LONGTEXT, true )
141 #endif
142 add_obsolete_string("http-user")
143 add_obsolete_string("http-pwd")
144 add_shortcut( "http" )
145 add_shortcut( "https" )
146 add_shortcut( "unsv" )
147 add_shortcut( "itpc" ) /* iTunes Podcast */
148 add_shortcut( "icyx" )
149 set_callbacks( Open, Close )
150 vlc_module_end ()
152 /*****************************************************************************
153 * Local prototypes
154 *****************************************************************************/
156 struct access_sys_t
158 int fd;
159 bool b_error;
160 tls_session_t *p_tls;
161 v_socket_t *p_vs;
163 /* From uri */
164 vlc_url_t url;
165 char *psz_user_agent;
166 http_auth_t auth;
168 /* Proxy */
169 bool b_proxy;
170 vlc_url_t proxy;
171 http_auth_t proxy_auth;
172 char *psz_proxy_passbuf;
174 /* */
175 int i_code;
176 const char *psz_protocol;
177 int i_version;
179 char *psz_mime;
180 char *psz_pragma;
181 char *psz_location;
182 bool b_mms;
183 bool b_icecast;
184 bool b_ssl;
185 #ifdef HAVE_ZLIB_H
186 bool b_compressed;
187 struct
189 z_stream stream;
190 uint8_t *p_buffer;
191 } inflate;
192 #endif
194 bool b_chunked;
195 int64_t i_chunk;
197 int i_icy_meta;
198 uint64_t i_icy_offset;
199 char *psz_icy_name;
200 char *psz_icy_genre;
201 char *psz_icy_title;
203 uint64_t i_remaining;
205 bool b_seekable;
206 bool b_reconnect;
207 bool b_continuous;
208 bool b_pace_control;
209 bool b_persist;
210 bool b_has_size;
212 vlc_array_t * cookies;
215 /* */
216 static int OpenWithCookies( vlc_object_t *p_this, const char *psz_access,
217 int i_nb_redirect, int i_max_redirect,
218 vlc_array_t *cookies );
220 /* */
221 static ssize_t Read( access_t *, uint8_t *, size_t );
222 static ssize_t ReadCompressed( access_t *, uint8_t *, size_t );
223 static int Seek( access_t *, uint64_t );
224 static int Control( access_t *, int, va_list );
226 /* */
227 static int Connect( access_t *, uint64_t );
228 static int Request( access_t *p_access, uint64_t i_tell );
229 static void Disconnect( access_t * );
231 /* Small Cookie utilities. Cookies support is partial. */
232 static char * cookie_get_content( const char * cookie );
233 static char * cookie_get_domain( const char * cookie );
234 static char * cookie_get_name( const char * cookie );
235 static void cookie_append( vlc_array_t * cookies, char * cookie );
238 static void AuthReply( access_t *p_acces, const char *psz_prefix,
239 vlc_url_t *p_url, http_auth_t *p_auth );
240 static int AuthCheckReply( access_t *p_access, const char *psz_header,
241 vlc_url_t *p_url, http_auth_t *p_auth );
243 /*****************************************************************************
244 * Open:
245 *****************************************************************************/
246 static int Open( vlc_object_t *p_this )
248 access_t *p_access = (access_t*)p_this;
249 return OpenWithCookies( p_this, p_access->psz_access, 0,
250 var_CreateGetInteger( p_access, "http-max-redirect" ), NULL );
254 * Open the given url using the given cookies
255 * @param p_this: the vlc object
256 * @psz_access: the acces to use (http, https, ...) (this value must be used
257 * instead of p_access->psz_access)
258 * @i_nb_redirect: the number of redirection already done
259 * @i_max_redirect: limit to the number of redirection to follow
260 * @cookies: the available cookies
261 * @return vlc error codes
263 static int OpenWithCookies( vlc_object_t *p_this, const char *psz_access,
264 int i_nb_redirect, int i_max_redirect,
265 vlc_array_t *cookies )
267 access_t *p_access = (access_t*)p_this;
268 access_sys_t *p_sys;
269 char *psz, *p;
271 /* Only forward an store cookies if the corresponding option is activated */
272 bool b_forward_cookies = var_CreateGetBool( p_access, "http-forward-cookies" );
273 vlc_array_t * saved_cookies = b_forward_cookies ? (cookies ? cookies : vlc_array_new()) : NULL;
275 /* Set up p_access */
276 STANDARD_READ_ACCESS_INIT;
277 #ifdef HAVE_ZLIB_H
278 p_access->pf_read = ReadCompressed;
279 #endif
280 p_sys->fd = -1;
281 p_sys->b_proxy = false;
282 p_sys->psz_proxy_passbuf = NULL;
283 p_sys->i_version = 1;
284 p_sys->b_seekable = true;
285 p_sys->psz_mime = NULL;
286 p_sys->psz_pragma = NULL;
287 p_sys->b_mms = false;
288 p_sys->b_icecast = false;
289 p_sys->psz_location = NULL;
290 p_sys->psz_user_agent = NULL;
291 p_sys->b_pace_control = true;
292 p_sys->b_ssl = false;
293 #ifdef HAVE_ZLIB_H
294 p_sys->b_compressed = false;
295 /* 15 is the max windowBits, +32 to enable optional gzip decoding */
296 if( inflateInit2( &p_sys->inflate.stream, 32+15 ) != Z_OK )
297 msg_Warn( p_access, "Error during zlib initialisation: %s",
298 p_sys->inflate.stream.msg );
299 if( zlibCompileFlags() & (1<<17) )
300 msg_Warn( p_access, "Your zlib was compiled without gzip support." );
301 p_sys->inflate.p_buffer = NULL;
302 #endif
303 p_sys->p_tls = NULL;
304 p_sys->p_vs = NULL;
305 p_sys->i_icy_meta = 0;
306 p_sys->i_icy_offset = 0;
307 p_sys->psz_icy_name = NULL;
308 p_sys->psz_icy_genre = NULL;
309 p_sys->psz_icy_title = NULL;
310 p_sys->i_remaining = 0;
311 p_sys->b_persist = false;
312 p_sys->b_has_size = false;
313 p_access->info.i_size = 0;
314 p_access->info.i_pos = 0;
315 p_access->info.b_eof = false;
317 p_sys->cookies = saved_cookies;
319 http_auth_Init( &p_sys->auth );
320 http_auth_Init( &p_sys->proxy_auth );
322 /* Parse URI - remove spaces */
323 p = psz = strdup( p_access->psz_location );
324 while( (p = strchr( p, ' ' )) != NULL )
325 *p = '+';
326 vlc_UrlParse( &p_sys->url, psz, 0 );
327 free( psz );
329 if( p_sys->url.psz_host == NULL || *p_sys->url.psz_host == '\0' )
331 msg_Warn( p_access, "invalid host" );
332 goto error;
334 if( !strncmp( psz_access, "https", 5 ) )
336 /* HTTP over SSL */
337 p_sys->b_ssl = true;
338 if( p_sys->url.i_port <= 0 )
339 p_sys->url.i_port = 443;
341 else
343 if( p_sys->url.i_port <= 0 )
344 p_sys->url.i_port = 80;
347 /* Do user agent */
348 p_sys->psz_user_agent = var_CreateGetString( p_access, "http-user-agent" );
350 /* Check proxy */
351 psz = var_CreateGetNonEmptyString( p_access, "http-proxy" );
352 if( psz )
354 p_sys->b_proxy = true;
355 vlc_UrlParse( &p_sys->proxy, psz, 0 );
356 free( psz );
358 #ifdef HAVE_LIBPROXY
359 else
361 pxProxyFactory *pf = px_proxy_factory_new();
362 if (pf)
364 char *buf;
365 int i;
366 i=asprintf(&buf, "%s://%s", psz_access, p_access->psz_location);
367 if (i >= 0)
369 msg_Dbg(p_access, "asking libproxy about url '%s'", buf);
370 char **proxies = px_proxy_factory_get_proxies(pf, buf);
371 if (proxies[0])
373 msg_Dbg(p_access, "libproxy suggest to use '%s'", proxies[0]);
374 if(strcmp(proxies[0],"direct://") != 0)
376 p_sys->b_proxy = true;
377 vlc_UrlParse( &p_sys->proxy, proxies[0], 0);
380 for(i=0;proxies[i];i++) free(proxies[i]);
381 free(proxies);
382 free(buf);
384 px_proxy_factory_free(pf);
386 else
388 msg_Err(p_access, "Allocating memory for libproxy failed");
391 #elif defined( WIN32 )
392 else
394 if( var_CreateGetBool( p_access, "http-use-IE-proxy" ) )
396 /* Try to get the proxy server address from Windows internet settings using registry. */
397 HKEY h_key;
398 /* Open the key */
399 if( RegOpenKeyEx( HKEY_CURRENT_USER, "Software\\Microsoft" \
400 "\\Windows\\CurrentVersion\\Internet Settings",
401 0, KEY_READ, &h_key ) == ERROR_SUCCESS )
403 DWORD i_dataReadSize = 4; /* sizeof( DWORD ); */
404 DWORD proxyEnable = 0;
405 /* Get the proxy enable value */
406 if( RegQueryValueEx( h_key, "ProxyEnable", NULL, NULL,
407 (char *)&proxyEnable, &i_dataReadSize )
408 == ERROR_SUCCESS )
410 if( proxyEnable )
412 /* Proxy is enable */
413 char psz_key[256];
414 i_dataReadSize = 256;
415 if( RegQueryValueEx( h_key, "ProxyServer",
416 NULL, NULL, psz_key,
417 &i_dataReadSize )
418 == ERROR_SUCCESS )
420 /* Get the proxy URL :
421 Proxy server value in the registry can be something like "address:port"
422 or "ftp=adress1:port1;http=adress2:port2 ..." depending of the
423 confirguration. */
424 char *psz_proxy;
425 psz_proxy = strstr( psz_key, "http=" );
426 if( psz_proxy != NULL )
428 psz_proxy += strlen( "http=" );
429 char *psz_endUrl = strchr( psz_proxy, ';' );
430 if( psz_endUrl != NULL )
431 *psz_endUrl = '\0';
433 else
434 psz_proxy = psz_key;
435 /* Set proxy enable for this connection. */
436 p_sys->b_proxy = true;
437 vlc_UrlParse( &p_sys->proxy, psz_proxy, 0 );
439 msg_Warn( p_access, "Couldn't read in registry " \
440 "the proxy server address." );
443 else
444 msg_Warn( p_access, "Couldn't read in registry if the " \
445 "proxy is enable or not." );
447 else
448 msg_Warn( p_access, "Couldn't open internet settings key " \
449 "in registry." );
452 #elif defined( HAVE_GETENV )
453 else
455 psz = getenv( "http_proxy" );
456 if( psz )
458 p_sys->b_proxy = true;
459 vlc_UrlParse( &p_sys->proxy, psz, 0 );
462 #endif
464 if( psz ) /* No, this is NOT a use-after-free error */
466 psz = var_CreateGetNonEmptyString( p_access, "http-proxy-pwd" );
467 if( psz )
468 p_sys->proxy.psz_password = p_sys->psz_proxy_passbuf = psz;
471 if( p_sys->b_proxy )
473 if( p_sys->proxy.psz_host == NULL || *p_sys->proxy.psz_host == '\0' )
475 msg_Warn( p_access, "invalid proxy host" );
476 goto error;
478 if( p_sys->proxy.i_port <= 0 )
480 p_sys->proxy.i_port = 80;
484 msg_Dbg( p_access, "http: server='%s' port=%d file='%s'",
485 p_sys->url.psz_host, p_sys->url.i_port,
486 p_sys->url.psz_path != NULL ? p_sys->url.psz_path : "" );
487 if( p_sys->b_proxy )
489 msg_Dbg( p_access, " proxy %s:%d", p_sys->proxy.psz_host,
490 p_sys->proxy.i_port );
492 if( p_sys->url.psz_username && *p_sys->url.psz_username )
494 msg_Dbg( p_access, " user='%s'", p_sys->url.psz_username );
497 p_sys->b_reconnect = var_CreateGetBool( p_access, "http-reconnect" );
498 p_sys->b_continuous = var_CreateGetBool( p_access, "http-continuous" );
500 connect:
501 /* Connect */
502 switch( Connect( p_access, 0 ) )
504 case -1:
505 goto error;
507 case -2:
508 /* Retry with http 1.0 */
509 msg_Dbg( p_access, "switching to HTTP version 1.0" );
510 p_sys->i_version = 0;
511 p_sys->b_seekable = false;
513 if( !vlc_object_alive (p_access) || Connect( p_access, 0 ) )
514 goto error;
516 #ifndef NDEBUG
517 case 0:
518 break;
520 default:
521 msg_Err( p_access, "You should not be here" );
522 abort();
523 #endif
526 if( p_sys->i_code == 401 )
528 char *psz_login, *psz_password;
529 /* FIXME ? */
530 if( p_sys->url.psz_username && p_sys->url.psz_password &&
531 p_sys->auth.psz_nonce && p_sys->auth.i_nonce == 0 )
533 Disconnect( p_access );
534 goto connect;
536 msg_Dbg( p_access, "authentication failed for realm %s",
537 p_sys->auth.psz_realm );
538 dialog_Login( p_access, &psz_login, &psz_password,
539 _("HTTP authentication"),
540 _("Please enter a valid login name and a password for realm %s."),
541 p_sys->auth.psz_realm );
542 if( psz_login != NULL && psz_password != NULL )
544 msg_Dbg( p_access, "retrying with user=%s", psz_login );
545 p_sys->url.psz_username = psz_login;
546 p_sys->url.psz_password = psz_password;
547 Disconnect( p_access );
548 goto connect;
550 else
552 free( psz_login );
553 free( psz_password );
554 goto error;
558 if( ( p_sys->i_code == 301 || p_sys->i_code == 302 ||
559 p_sys->i_code == 303 || p_sys->i_code == 307 ) &&
560 p_sys->psz_location && *p_sys->psz_location )
562 msg_Dbg( p_access, "redirection to %s", p_sys->psz_location );
564 /* Check the number of redirection already done */
565 if( i_nb_redirect >= i_max_redirect )
567 msg_Err( p_access, "Too many redirection: break potential infinite"
568 "loop" );
569 goto error;
573 /* Do not accept redirection outside of HTTP works */
574 const char *psz_protocol;
575 if( !strncmp( p_sys->psz_location, "http:", 5 ) )
576 psz_protocol = "http";
577 else if( !strncmp( p_sys->psz_location, "https:", 6 ) )
578 psz_protocol = "https";
579 else
581 msg_Err( p_access, "insecure redirection ignored" );
582 goto error;
584 free( p_access->psz_location );
585 p_access->psz_location = strdup( p_sys->psz_location );
586 /* Clean up current Open() run */
587 vlc_UrlClean( &p_sys->url );
588 http_auth_Reset( &p_sys->auth );
589 vlc_UrlClean( &p_sys->proxy );
590 free( p_sys->psz_proxy_passbuf );
591 http_auth_Reset( &p_sys->proxy_auth );
592 free( p_sys->psz_mime );
593 free( p_sys->psz_pragma );
594 free( p_sys->psz_location );
595 free( p_sys->psz_user_agent );
597 Disconnect( p_access );
598 cookies = p_sys->cookies;
599 #ifdef HAVE_ZLIB_H
600 inflateEnd( &p_sys->inflate.stream );
601 #endif
602 free( p_sys );
604 /* Do new Open() run with new data */
605 return OpenWithCookies( p_this, psz_protocol, i_nb_redirect + 1,
606 i_max_redirect, cookies );
609 if( p_sys->b_mms )
611 msg_Dbg( p_access, "this is actually a live mms server, BAIL" );
612 goto error;
615 if( !strcmp( p_sys->psz_protocol, "ICY" ) || p_sys->b_icecast )
617 if( p_sys->psz_mime && strcasecmp( p_sys->psz_mime, "application/ogg" ) )
619 if( !strcasecmp( p_sys->psz_mime, "video/nsv" ) ||
620 !strcasecmp( p_sys->psz_mime, "video/nsa" ) )
622 free( p_access->psz_demux );
623 p_access->psz_demux = strdup( "nsv" );
625 else if( !strcasecmp( p_sys->psz_mime, "audio/aac" ) ||
626 !strcasecmp( p_sys->psz_mime, "audio/aacp" ) )
628 free( p_access->psz_demux );
629 p_access->psz_demux = strdup( "m4a" );
631 else if( !strcasecmp( p_sys->psz_mime, "audio/mpeg" ) )
633 free( p_access->psz_demux );
634 p_access->psz_demux = strdup( "mp3" );
637 msg_Info( p_access, "Raw-audio server found, %s demuxer selected",
638 p_access->psz_demux );
640 #if 0 /* Doesn't work really well because of the pre-buffering in
641 * shoutcast servers (the buffer content will be sent as fast as
642 * possible). */
643 p_sys->b_pace_control = false;
644 #endif
646 else if( !p_sys->psz_mime )
648 free( p_access->psz_demux );
649 /* Shoutcast */
650 p_access->psz_demux = strdup( "mp3" );
652 /* else probably Ogg Vorbis */
654 else if( !strcasecmp( psz_access, "unsv" ) &&
655 p_sys->psz_mime &&
656 !strcasecmp( p_sys->psz_mime, "misc/ultravox" ) )
658 free( p_access->psz_demux );
659 /* Grrrr! detect ultravox server and force NSV demuxer */
660 p_access->psz_demux = strdup( "nsv" );
662 else if( !strcmp( psz_access, "itpc" ) )
664 free( p_access->psz_demux );
665 p_access->psz_demux = strdup( "podcast" );
667 else if( p_sys->psz_mime &&
668 !strncasecmp( p_sys->psz_mime, "application/xspf+xml", 20 ) &&
669 ( memchr( " ;\t", p_sys->psz_mime[20], 4 ) != NULL ) )
671 free( p_access->psz_demux );
672 p_access->psz_demux = strdup( "xspf-open" );
675 if( p_sys->b_reconnect ) msg_Dbg( p_access, "auto re-connect enabled" );
677 /* PTS delay */
678 var_Create( p_access, "http-caching", VLC_VAR_INTEGER |VLC_VAR_DOINHERIT );
680 return VLC_SUCCESS;
682 error:
683 vlc_UrlClean( &p_sys->url );
684 vlc_UrlClean( &p_sys->proxy );
685 free( p_sys->psz_proxy_passbuf );
686 free( p_sys->psz_mime );
687 free( p_sys->psz_pragma );
688 free( p_sys->psz_location );
689 free( p_sys->psz_user_agent );
691 Disconnect( p_access );
693 if( p_sys->cookies )
695 int i;
696 for( i = 0; i < vlc_array_count( p_sys->cookies ); i++ )
697 free(vlc_array_item_at_index( p_sys->cookies, i ));
698 vlc_array_destroy( p_sys->cookies );
701 #ifdef HAVE_ZLIB_H
702 inflateEnd( &p_sys->inflate.stream );
703 #endif
704 free( p_sys );
705 return VLC_EGENERIC;
708 /*****************************************************************************
709 * Close:
710 *****************************************************************************/
711 static void Close( vlc_object_t *p_this )
713 access_t *p_access = (access_t*)p_this;
714 access_sys_t *p_sys = p_access->p_sys;
716 vlc_UrlClean( &p_sys->url );
717 http_auth_Reset( &p_sys->auth );
718 vlc_UrlClean( &p_sys->proxy );
719 http_auth_Reset( &p_sys->proxy_auth );
721 free( p_sys->psz_mime );
722 free( p_sys->psz_pragma );
723 free( p_sys->psz_location );
725 free( p_sys->psz_icy_name );
726 free( p_sys->psz_icy_genre );
727 free( p_sys->psz_icy_title );
729 free( p_sys->psz_user_agent );
731 Disconnect( p_access );
733 if( p_sys->cookies )
735 int i;
736 for( i = 0; i < vlc_array_count( p_sys->cookies ); i++ )
737 free(vlc_array_item_at_index( p_sys->cookies, i ));
738 vlc_array_destroy( p_sys->cookies );
741 #ifdef HAVE_ZLIB_H
742 inflateEnd( &p_sys->inflate.stream );
743 free( p_sys->inflate.p_buffer );
744 #endif
746 free( p_sys );
749 /*****************************************************************************
750 * Read: Read up to i_len bytes from the http connection and place in
751 * p_buffer. Return the actual number of bytes read
752 *****************************************************************************/
753 static int ReadICYMeta( access_t *p_access );
754 static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
756 access_sys_t *p_sys = p_access->p_sys;
757 int i_read;
759 if( p_sys->fd == -1 )
761 p_access->info.b_eof = true;
762 return 0;
765 if( p_sys->b_has_size )
767 /* Remaining bytes in the file */
768 uint64_t remainder = p_access->info.i_size - p_access->info.i_pos;
769 if( remainder < i_len )
770 i_len = remainder;
772 /* Remaining bytes in the response */
773 if( p_sys->i_remaining < i_len )
774 i_len = p_sys->i_remaining;
777 if( p_sys->b_chunked )
779 if( p_sys->i_chunk < 0 )
781 p_access->info.b_eof = true;
782 return 0;
785 if( p_sys->i_chunk <= 0 )
787 char *psz = net_Gets( p_access, p_sys->fd, p_sys->p_vs );
788 /* read the chunk header */
789 if( psz == NULL )
791 /* fatal error - end of file */
792 msg_Dbg( p_access, "failed reading chunk-header line" );
793 return 0;
795 p_sys->i_chunk = strtoll( psz, NULL, 16 );
796 free( psz );
798 if( p_sys->i_chunk <= 0 ) /* eof */
800 p_sys->i_chunk = -1;
801 p_access->info.b_eof = true;
802 return 0;
806 if( i_len > p_sys->i_chunk )
807 i_len = p_sys->i_chunk;
810 if( i_len == 0 )
812 p_access->info.b_eof = true;
813 return 0;
816 if( p_sys->i_icy_meta > 0 && p_access->info.i_pos-p_sys->i_icy_offset > 0 )
818 int64_t i_next = p_sys->i_icy_meta -
819 (p_access->info.i_pos - p_sys->i_icy_offset ) % p_sys->i_icy_meta;
821 if( i_next == p_sys->i_icy_meta )
823 if( ReadICYMeta( p_access ) )
825 p_access->info.b_eof = true;
826 return -1;
829 if( i_len > i_next )
830 i_len = i_next;
833 i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs, p_buffer, i_len, false );
835 if( i_read > 0 )
837 if( p_sys->b_chunked )
839 p_sys->i_chunk -= i_read;
840 if( p_sys->i_chunk <= 0 )
842 /* read the empty line */
843 char *psz = net_Gets( p_access, p_sys->fd, p_sys->p_vs );
844 free( psz );
848 else
851 * I very much doubt that this will work.
852 * If i_read == 0, the connection *IS* dead, so the only
853 * sensible thing to do is Disconnect() and then retry.
854 * Otherwise, I got recv() completely wrong. -- Courmisch
856 if( p_sys->b_continuous )
858 Request( p_access, 0 );
859 p_sys->b_continuous = false;
860 i_read = Read( p_access, p_buffer, i_len );
861 p_sys->b_continuous = true;
863 Disconnect( p_access );
864 if( p_sys->b_reconnect && vlc_object_alive( p_access ) )
866 msg_Dbg( p_access, "got disconnected, trying to reconnect" );
867 if( Connect( p_access, p_access->info.i_pos ) )
869 msg_Dbg( p_access, "reconnection failed" );
871 else
873 p_sys->b_reconnect = false;
874 i_read = Read( p_access, p_buffer, i_len );
875 p_sys->b_reconnect = true;
877 return i_read;
881 if( i_read <= 0 )
883 p_access->info.b_eof = true;
884 if( i_read < 0 )
885 p_sys->b_error = true;
886 return 0;
890 assert( i_read >= 0 );
891 p_access->info.i_pos += i_read;
892 if( p_sys->b_has_size )
894 assert( p_access->info.i_pos <= p_access->info.i_size );
895 assert( (unsigned)i_read <= p_sys->i_remaining );
896 p_sys->i_remaining -= i_read;
899 return i_read;
902 static int ReadICYMeta( access_t *p_access )
904 access_sys_t *p_sys = p_access->p_sys;
906 uint8_t buffer;
907 char *p, *psz_meta;
908 int i_read;
910 /* Read meta data length */
911 i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs, &buffer, 1,
912 true );
913 if( i_read <= 0 )
914 return VLC_EGENERIC;
915 if( buffer == 0 )
916 return VLC_SUCCESS;
918 i_read = buffer << 4;
919 /* msg_Dbg( p_access, "ICY meta size=%u", i_read); */
921 psz_meta = malloc( i_read + 1 );
922 if( net_Read( p_access, p_sys->fd, p_sys->p_vs,
923 (uint8_t *)psz_meta, i_read, true ) != i_read )
925 free( psz_meta );
926 return VLC_EGENERIC;
929 psz_meta[i_read] = '\0'; /* Just in case */
931 /* msg_Dbg( p_access, "icy-meta=%s", psz_meta ); */
933 /* Now parse the meta */
934 /* Look for StreamTitle= */
935 p = strcasestr( (char *)psz_meta, "StreamTitle=" );
936 if( p )
938 p += strlen( "StreamTitle=" );
939 if( *p == '\'' || *p == '"' )
941 char closing[] = { p[0], ';', '\0' };
942 char *psz = strstr( &p[1], closing );
943 if( !psz )
944 psz = strchr( &p[1], ';' );
946 if( psz ) *psz = '\0';
948 else
950 char *psz = strchr( &p[1], ';' );
951 if( psz ) *psz = '\0';
954 if( !p_sys->psz_icy_title ||
955 strcmp( p_sys->psz_icy_title, &p[1] ) )
957 free( p_sys->psz_icy_title );
958 char *psz_tmp = strdup( &p[1] );
959 p_sys->psz_icy_title = EnsureUTF8( psz_tmp );
960 if( !p_sys->psz_icy_title )
961 free( psz_tmp );
962 p_access->info.i_update |= INPUT_UPDATE_META;
964 msg_Dbg( p_access, "New Title=%s", p_sys->psz_icy_title );
967 free( psz_meta );
969 return VLC_SUCCESS;
972 #ifdef HAVE_ZLIB_H
973 static ssize_t ReadCompressed( access_t *p_access, uint8_t *p_buffer,
974 size_t i_len )
976 access_sys_t *p_sys = p_access->p_sys;
978 if( p_sys->b_compressed )
980 int i_ret;
982 if( !p_sys->inflate.p_buffer )
983 p_sys->inflate.p_buffer = malloc( 256 * 1024 );
985 if( p_sys->inflate.stream.avail_in == 0 )
987 ssize_t i_read = Read( p_access, p_sys->inflate.p_buffer + p_sys->inflate.stream.avail_in, 256 * 1024 );
988 if( i_read <= 0 ) return i_read;
989 p_sys->inflate.stream.next_in = p_sys->inflate.p_buffer;
990 p_sys->inflate.stream.avail_in = i_read;
993 p_sys->inflate.stream.avail_out = i_len;
994 p_sys->inflate.stream.next_out = p_buffer;
996 i_ret = inflate( &p_sys->inflate.stream, Z_SYNC_FLUSH );
997 msg_Warn( p_access, "inflate return value: %d, %s", i_ret, p_sys->inflate.stream.msg );
999 return i_len - p_sys->inflate.stream.avail_out;
1001 else
1003 return Read( p_access, p_buffer, i_len );
1006 #endif
1008 /*****************************************************************************
1009 * Seek: close and re-open a connection at the right place
1010 *****************************************************************************/
1011 static int Seek( access_t *p_access, uint64_t i_pos )
1013 msg_Dbg( p_access, "trying to seek to %"PRId64, i_pos );
1015 Disconnect( p_access );
1017 if( p_access->info.i_size
1018 && i_pos >= p_access->info.i_size ) {
1019 msg_Err( p_access, "seek to far" );
1020 int retval = Seek( p_access, p_access->info.i_size - 1 );
1021 if( retval == VLC_SUCCESS ) {
1022 uint8_t p_buffer[2];
1023 Read( p_access, p_buffer, 1);
1024 p_access->info.b_eof = false;
1026 return retval;
1028 if( Connect( p_access, i_pos ) )
1030 msg_Err( p_access, "seek failed" );
1031 p_access->info.b_eof = true;
1032 return VLC_EGENERIC;
1034 return VLC_SUCCESS;
1037 /*****************************************************************************
1038 * Control:
1039 *****************************************************************************/
1040 static int Control( access_t *p_access, int i_query, va_list args )
1042 access_sys_t *p_sys = p_access->p_sys;
1043 bool *pb_bool;
1044 int64_t *pi_64;
1045 vlc_meta_t *p_meta;
1047 switch( i_query )
1049 /* */
1050 case ACCESS_CAN_SEEK:
1051 pb_bool = (bool*)va_arg( args, bool* );
1052 *pb_bool = p_sys->b_seekable;
1053 break;
1054 case ACCESS_CAN_FASTSEEK:
1055 pb_bool = (bool*)va_arg( args, bool* );
1056 *pb_bool = false;
1057 break;
1058 case ACCESS_CAN_PAUSE:
1059 case ACCESS_CAN_CONTROL_PACE:
1060 pb_bool = (bool*)va_arg( args, bool* );
1062 #if 0 /* Disable for now until we have a clock synchro algo
1063 * which works with something else than MPEG over UDP */
1064 *pb_bool = p_sys->b_pace_control;
1065 #endif
1066 *pb_bool = true;
1067 break;
1069 /* */
1070 case ACCESS_GET_PTS_DELAY:
1071 pi_64 = (int64_t*)va_arg( args, int64_t * );
1072 *pi_64 = (int64_t)var_GetInteger( p_access, "http-caching" ) * 1000;
1073 break;
1075 /* */
1076 case ACCESS_SET_PAUSE_STATE:
1077 break;
1079 case ACCESS_GET_META:
1080 p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t* );
1082 if( p_sys->psz_icy_name )
1083 vlc_meta_Set( p_meta, vlc_meta_Title, p_sys->psz_icy_name );
1084 if( p_sys->psz_icy_genre )
1085 vlc_meta_Set( p_meta, vlc_meta_Genre, p_sys->psz_icy_genre );
1086 if( p_sys->psz_icy_title )
1087 vlc_meta_Set( p_meta, vlc_meta_NowPlaying, p_sys->psz_icy_title );
1088 break;
1090 case ACCESS_GET_CONTENT_TYPE:
1091 *va_arg( args, char ** ) =
1092 p_sys->psz_mime ? strdup( p_sys->psz_mime ) : NULL;
1093 break;
1095 case ACCESS_GET_TITLE_INFO:
1096 case ACCESS_SET_TITLE:
1097 case ACCESS_SET_SEEKPOINT:
1098 case ACCESS_SET_PRIVATE_ID_STATE:
1099 return VLC_EGENERIC;
1101 default:
1102 msg_Warn( p_access, "unimplemented query in control" );
1103 return VLC_EGENERIC;
1106 return VLC_SUCCESS;
1109 /*****************************************************************************
1110 * Connect:
1111 *****************************************************************************/
1112 static int Connect( access_t *p_access, uint64_t i_tell )
1114 access_sys_t *p_sys = p_access->p_sys;
1115 vlc_url_t srv = p_sys->b_proxy ? p_sys->proxy : p_sys->url;
1117 /* Clean info */
1118 free( p_sys->psz_location );
1119 free( p_sys->psz_mime );
1120 free( p_sys->psz_pragma );
1122 free( p_sys->psz_icy_genre );
1123 free( p_sys->psz_icy_name );
1124 free( p_sys->psz_icy_title );
1127 p_sys->psz_location = NULL;
1128 p_sys->psz_mime = NULL;
1129 p_sys->psz_pragma = NULL;
1130 p_sys->b_mms = false;
1131 p_sys->b_chunked = false;
1132 p_sys->i_chunk = 0;
1133 p_sys->i_icy_meta = 0;
1134 p_sys->i_icy_offset = i_tell;
1135 p_sys->psz_icy_name = NULL;
1136 p_sys->psz_icy_genre = NULL;
1137 p_sys->psz_icy_title = NULL;
1138 p_sys->i_remaining = 0;
1139 p_sys->b_persist = false;
1140 p_sys->b_has_size = false;
1141 p_access->info.i_size = 0;
1142 p_access->info.i_pos = i_tell;
1143 p_access->info.b_eof = false;
1145 /* Open connection */
1146 assert( p_sys->fd == -1 ); /* No open sockets (leaking fds is BAD) */
1147 p_sys->fd = net_ConnectTCP( p_access, srv.psz_host, srv.i_port );
1148 if( p_sys->fd == -1 )
1150 msg_Err( p_access, "cannot connect to %s:%d", srv.psz_host, srv.i_port );
1151 return -1;
1153 setsockopt (p_sys->fd, SOL_SOCKET, SO_KEEPALIVE, &(int){ 1 }, sizeof (int));
1155 /* Initialize TLS/SSL session */
1156 if( p_sys->b_ssl == true )
1158 /* CONNECT to establish TLS tunnel through HTTP proxy */
1159 if( p_sys->b_proxy )
1161 char *psz;
1162 unsigned i_status = 0;
1164 if( p_sys->i_version == 0 )
1166 /* CONNECT is not in HTTP/1.0 */
1167 Disconnect( p_access );
1168 return -1;
1171 net_Printf( p_access, p_sys->fd, NULL,
1172 "CONNECT %s:%d HTTP/1.%d\r\nHost: %s:%d\r\n\r\n",
1173 p_sys->url.psz_host, p_sys->url.i_port,
1174 p_sys->i_version,
1175 p_sys->url.psz_host, p_sys->url.i_port);
1177 psz = net_Gets( p_access, p_sys->fd, NULL );
1178 if( psz == NULL )
1180 msg_Err( p_access, "cannot establish HTTP/TLS tunnel" );
1181 Disconnect( p_access );
1182 return -1;
1185 sscanf( psz, "HTTP/%*u.%*u %3u", &i_status );
1186 free( psz );
1188 if( ( i_status / 100 ) != 2 )
1190 msg_Err( p_access, "HTTP/TLS tunnel through proxy denied" );
1191 Disconnect( p_access );
1192 return -1;
1197 psz = net_Gets( p_access, p_sys->fd, NULL );
1198 if( psz == NULL )
1200 msg_Err( p_access, "HTTP proxy connection failed" );
1201 Disconnect( p_access );
1202 return -1;
1205 if( *psz == '\0' )
1206 i_status = 0;
1208 free( psz );
1210 if( !vlc_object_alive (p_access) || p_sys->b_error )
1212 Disconnect( p_access );
1213 return -1;
1216 while( i_status );
1219 /* TLS/SSL handshake */
1220 p_sys->p_tls = tls_ClientCreate( VLC_OBJECT(p_access), p_sys->fd,
1221 p_sys->url.psz_host );
1222 if( p_sys->p_tls == NULL )
1224 msg_Err( p_access, "cannot establish HTTP/TLS session" );
1225 Disconnect( p_access );
1226 return -1;
1228 p_sys->p_vs = &p_sys->p_tls->sock;
1231 return Request( p_access, i_tell ) ? -2 : 0;
1235 static int Request( access_t *p_access, uint64_t i_tell )
1237 access_sys_t *p_sys = p_access->p_sys;
1238 char *psz ;
1239 v_socket_t *pvs = p_sys->p_vs;
1240 p_sys->b_persist = false;
1242 p_sys->i_remaining = 0;
1243 if( p_sys->b_proxy )
1245 if( p_sys->url.psz_path )
1247 net_Printf( p_access, p_sys->fd, NULL,
1248 "GET http://%s:%d%s HTTP/1.%d\r\n",
1249 p_sys->url.psz_host, p_sys->url.i_port,
1250 p_sys->url.psz_path, p_sys->i_version );
1252 else
1254 net_Printf( p_access, p_sys->fd, NULL,
1255 "GET http://%s:%d/ HTTP/1.%d\r\n",
1256 p_sys->url.psz_host, p_sys->url.i_port,
1257 p_sys->i_version );
1260 else
1262 const char *psz_path = p_sys->url.psz_path;
1263 if( !psz_path || !*psz_path )
1265 psz_path = "/";
1267 if( p_sys->url.i_port != (pvs ? 443 : 80) )
1269 net_Printf( p_access, p_sys->fd, pvs,
1270 "GET %s HTTP/1.%d\r\nHost: %s:%d\r\n",
1271 psz_path, p_sys->i_version, p_sys->url.psz_host,
1272 p_sys->url.i_port );
1274 else
1276 net_Printf( p_access, p_sys->fd, pvs,
1277 "GET %s HTTP/1.%d\r\nHost: %s\r\n",
1278 psz_path, p_sys->i_version, p_sys->url.psz_host );
1281 /* User Agent */
1282 net_Printf( p_access, p_sys->fd, pvs, "User-Agent: %s\r\n",
1283 p_sys->psz_user_agent );
1284 /* Offset */
1285 if( p_sys->i_version == 1 && ! p_sys->b_continuous )
1287 p_sys->b_persist = true;
1288 net_Printf( p_access, p_sys->fd, pvs,
1289 "Range: bytes=%"PRIu64"-\r\n", i_tell );
1292 /* Cookies */
1293 if( p_sys->cookies )
1295 int i;
1296 for( i = 0; i < vlc_array_count( p_sys->cookies ); i++ )
1298 const char * cookie = vlc_array_item_at_index( p_sys->cookies, i );
1299 char * psz_cookie_content = cookie_get_content( cookie );
1300 char * psz_cookie_domain = cookie_get_domain( cookie );
1302 assert( psz_cookie_content );
1304 /* FIXME: This is clearly not conforming to the rfc */
1305 bool is_in_right_domain = (!psz_cookie_domain || strstr( p_sys->url.psz_host, psz_cookie_domain ));
1307 if( is_in_right_domain )
1309 msg_Dbg( p_access, "Sending Cookie %s", psz_cookie_content );
1310 if( net_Printf( p_access, p_sys->fd, pvs, "Cookie: %s\r\n", psz_cookie_content ) < 0 )
1311 msg_Err( p_access, "failed to send Cookie" );
1313 free( psz_cookie_content );
1314 free( psz_cookie_domain );
1318 /* Authentication */
1319 if( p_sys->url.psz_username || p_sys->url.psz_password )
1320 AuthReply( p_access, "", &p_sys->url, &p_sys->auth );
1322 /* Proxy Authentication */
1323 if( p_sys->proxy.psz_username || p_sys->proxy.psz_password )
1324 AuthReply( p_access, "Proxy-", &p_sys->proxy, &p_sys->proxy_auth );
1326 /* ICY meta data request */
1327 net_Printf( p_access, p_sys->fd, pvs, "Icy-MetaData: 1\r\n" );
1330 if( net_Printf( p_access, p_sys->fd, pvs, "\r\n" ) < 0 )
1332 msg_Err( p_access, "failed to send request" );
1333 Disconnect( p_access );
1334 return VLC_EGENERIC;
1337 /* Read Answer */
1338 if( ( psz = net_Gets( p_access, p_sys->fd, pvs ) ) == NULL )
1340 msg_Err( p_access, "failed to read answer" );
1341 goto error;
1343 if( !strncmp( psz, "HTTP/1.", 7 ) )
1345 p_sys->psz_protocol = "HTTP";
1346 p_sys->i_code = atoi( &psz[9] );
1348 else if( !strncmp( psz, "ICY", 3 ) )
1350 p_sys->psz_protocol = "ICY";
1351 p_sys->i_code = atoi( &psz[4] );
1352 p_sys->b_reconnect = true;
1354 else
1356 msg_Err( p_access, "invalid HTTP reply '%s'", psz );
1357 free( psz );
1358 goto error;
1360 msg_Dbg( p_access, "protocol '%s' answer code %d",
1361 p_sys->psz_protocol, p_sys->i_code );
1362 if( !strcmp( p_sys->psz_protocol, "ICY" ) )
1364 p_sys->b_seekable = false;
1366 if( p_sys->i_code != 206 && p_sys->i_code != 401 )
1368 p_sys->b_seekable = false;
1370 /* Authentication error - We'll have to display the dialog */
1371 if( p_sys->i_code == 401 )
1375 /* Other fatal error */
1376 else if( p_sys->i_code >= 400 )
1378 msg_Err( p_access, "error: %s", psz );
1379 free( psz );
1380 goto error;
1382 free( psz );
1384 for( ;; )
1386 char *psz = net_Gets( p_access, p_sys->fd, pvs );
1387 char *p;
1389 if( psz == NULL )
1391 msg_Err( p_access, "failed to read answer" );
1392 goto error;
1395 if( !vlc_object_alive (p_access) || p_sys->b_error )
1397 free( psz );
1398 goto error;
1401 /* msg_Dbg( p_input, "Line=%s", psz ); */
1402 if( *psz == '\0' )
1404 free( psz );
1405 break;
1408 if( ( p = strchr( psz, ':' ) ) == NULL )
1410 msg_Err( p_access, "malformed header line: %s", psz );
1411 free( psz );
1412 goto error;
1414 *p++ = '\0';
1415 while( *p == ' ' ) p++;
1417 if( !strcasecmp( psz, "Content-Length" ) )
1419 uint64_t i_size = i_tell + (p_sys->i_remaining = (uint64_t)atoll( p ));
1420 if(i_size > p_access->info.i_size) {
1421 p_sys->b_has_size = true;
1422 p_access->info.i_size = i_size;
1424 msg_Dbg( p_access, "this frame size=%"PRIu64, p_sys->i_remaining );
1426 else if( !strcasecmp( psz, "Content-Range" ) ) {
1427 uint64_t i_ntell = i_tell;
1428 uint64_t i_nend = (p_access->info.i_size > 0)?(p_access->info.i_size - 1):i_tell;
1429 uint64_t i_nsize = p_access->info.i_size;
1430 sscanf(p,"bytes %"SCNu64"-%"SCNu64"/%"SCNu64,&i_ntell,&i_nend,&i_nsize);
1431 if(i_nend > i_ntell ) {
1432 p_access->info.i_pos = i_ntell;
1433 p_sys->i_icy_offset = i_ntell;
1434 p_sys->i_remaining = i_nend+1-i_ntell;
1435 int64_t i_size = (i_nsize > i_nend) ? i_nsize : (i_nend + 1);
1436 if(i_size > p_access->info.i_size) {
1437 p_sys->b_has_size = true;
1438 p_access->info.i_size = i_size;
1440 msg_Dbg( p_access, "stream size=%"PRIu64",pos=%"PRIu64",remaining=%"PRIu64,
1441 i_nsize, i_ntell, p_sys->i_remaining);
1444 else if( !strcasecmp( psz, "Connection" ) ) {
1445 msg_Dbg( p_access, "Connection: %s",p );
1446 int i = -1;
1447 sscanf(p, "close%n",&i);
1448 if( i >= 0 ) {
1449 p_sys->b_persist = false;
1452 else if( !strcasecmp( psz, "Location" ) )
1454 char * psz_new_loc;
1456 /* This does not follow RFC 2068, but yet if the url is not absolute,
1457 * handle it as everyone does. */
1458 if( p[0] == '/' )
1460 const char *psz_http_ext = p_sys->b_ssl ? "s" : "" ;
1462 if( p_sys->url.i_port == ( p_sys->b_ssl ? 443 : 80 ) )
1464 if( asprintf(&psz_new_loc, "http%s://%s%s", psz_http_ext,
1465 p_sys->url.psz_host, p) < 0 )
1466 goto error;
1468 else
1470 if( asprintf(&psz_new_loc, "http%s://%s:%d%s", psz_http_ext,
1471 p_sys->url.psz_host, p_sys->url.i_port, p) < 0 )
1472 goto error;
1475 else
1477 psz_new_loc = strdup( p );
1480 free( p_sys->psz_location );
1481 p_sys->psz_location = psz_new_loc;
1483 else if( !strcasecmp( psz, "Content-Type" ) )
1485 free( p_sys->psz_mime );
1486 p_sys->psz_mime = strdup( p );
1487 msg_Dbg( p_access, "Content-Type: %s", p_sys->psz_mime );
1489 else if( !strcasecmp( psz, "Content-Encoding" ) )
1491 msg_Dbg( p_access, "Content-Encoding: %s", p );
1492 if( !strcasecmp( p, "identity" ) )
1494 #ifdef HAVE_ZLIB_H
1495 else if( !strcasecmp( p, "gzip" ) || !strcasecmp( p, "deflate" ) )
1496 p_sys->b_compressed = true;
1497 #endif
1498 else
1499 msg_Warn( p_access, "Unknown content coding: %s", p );
1501 else if( !strcasecmp( psz, "Pragma" ) )
1503 if( !strcasecmp( psz, "Pragma: features" ) )
1504 p_sys->b_mms = true;
1505 free( p_sys->psz_pragma );
1506 p_sys->psz_pragma = strdup( p );
1507 msg_Dbg( p_access, "Pragma: %s", p_sys->psz_pragma );
1509 else if( !strcasecmp( psz, "Server" ) )
1511 msg_Dbg( p_access, "Server: %s", p );
1512 if( !strncasecmp( p, "Icecast", 7 ) ||
1513 !strncasecmp( p, "Nanocaster", 10 ) )
1515 /* Remember if this is Icecast
1516 * we need to force demux in this case without breaking
1517 * autodetection */
1519 /* Let live 365 streams (nanocaster) piggyback on the icecast
1520 * routine. They look very similar */
1522 p_sys->b_reconnect = true;
1523 p_sys->b_pace_control = false;
1524 p_sys->b_icecast = true;
1527 else if( !strcasecmp( psz, "Transfer-Encoding" ) )
1529 msg_Dbg( p_access, "Transfer-Encoding: %s", p );
1530 if( !strncasecmp( p, "chunked", 7 ) )
1532 p_sys->b_chunked = true;
1535 else if( !strcasecmp( psz, "Icy-MetaInt" ) )
1537 msg_Dbg( p_access, "Icy-MetaInt: %s", p );
1538 p_sys->i_icy_meta = atoi( p );
1539 if( p_sys->i_icy_meta < 0 )
1540 p_sys->i_icy_meta = 0;
1541 if( p_sys->i_icy_meta > 0 )
1542 p_sys->b_icecast = true;
1544 msg_Warn( p_access, "ICY metaint=%d", p_sys->i_icy_meta );
1546 else if( !strcasecmp( psz, "Icy-Name" ) )
1548 free( p_sys->psz_icy_name );
1549 char *psz_tmp = strdup( p );
1550 p_sys->psz_icy_name = EnsureUTF8( psz_tmp );
1551 if( !p_sys->psz_icy_name )
1552 free( psz_tmp );
1553 msg_Dbg( p_access, "Icy-Name: %s", p_sys->psz_icy_name );
1555 p_sys->b_icecast = true; /* be on the safeside. set it here as well. */
1556 p_sys->b_reconnect = true;
1557 p_sys->b_pace_control = false;
1559 else if( !strcasecmp( psz, "Icy-Genre" ) )
1561 free( p_sys->psz_icy_genre );
1562 char *psz_tmp = strdup( p );
1563 p_sys->psz_icy_genre = EnsureUTF8( psz_tmp );
1564 if( !p_sys->psz_icy_genre )
1565 free( psz_tmp );
1566 msg_Dbg( p_access, "Icy-Genre: %s", p_sys->psz_icy_genre );
1568 else if( !strncasecmp( psz, "Icy-Notice", 10 ) )
1570 msg_Dbg( p_access, "Icy-Notice: %s", p );
1572 else if( !strncasecmp( psz, "icy-", 4 ) ||
1573 !strncasecmp( psz, "ice-", 4 ) ||
1574 !strncasecmp( psz, "x-audiocast", 11 ) )
1576 msg_Dbg( p_access, "Meta-Info: %s: %s", psz, p );
1578 else if( !strcasecmp( psz, "Set-Cookie" ) )
1580 if( p_sys->cookies )
1582 msg_Dbg( p_access, "Accepting Cookie: %s", p );
1583 cookie_append( p_sys->cookies, strdup(p) );
1585 else
1586 msg_Dbg( p_access, "We have a Cookie we won't remember: %s", p );
1588 else if( !strcasecmp( psz, "www-authenticate" ) )
1590 msg_Dbg( p_access, "Authentication header: %s", p );
1591 http_auth_ParseWwwAuthenticateHeader( VLC_OBJECT(p_access),
1592 &p_sys->auth, p );
1594 else if( !strcasecmp( psz, "proxy-authenticate" ) )
1596 msg_Dbg( p_access, "Proxy authentication header: %s", p );
1597 http_auth_ParseWwwAuthenticateHeader( VLC_OBJECT(p_access),
1598 &p_sys->proxy_auth, p );
1600 else if( !strcasecmp( psz, "authentication-info" ) )
1602 msg_Dbg( p_access, "Authentication Info header: %s", p );
1603 if( AuthCheckReply( p_access, p, &p_sys->url, &p_sys->auth ) )
1604 goto error;
1606 else if( !strcasecmp( psz, "proxy-authentication-info" ) )
1608 msg_Dbg( p_access, "Proxy Authentication Info header: %s", p );
1609 if( AuthCheckReply( p_access, p, &p_sys->proxy, &p_sys->proxy_auth ) )
1610 goto error;
1613 free( psz );
1615 /* We close the stream for zero length data, unless of course the
1616 * server has already promised to do this for us.
1618 if( p_sys->b_has_size && p_sys->i_remaining == 0 && p_sys->b_persist ) {
1619 Disconnect( p_access );
1621 return VLC_SUCCESS;
1623 error:
1624 Disconnect( p_access );
1625 return VLC_EGENERIC;
1628 /*****************************************************************************
1629 * Disconnect:
1630 *****************************************************************************/
1631 static void Disconnect( access_t *p_access )
1633 access_sys_t *p_sys = p_access->p_sys;
1635 if( p_sys->p_tls != NULL)
1637 tls_ClientDelete( p_sys->p_tls );
1638 p_sys->p_tls = NULL;
1639 p_sys->p_vs = NULL;
1641 if( p_sys->fd != -1)
1643 net_Close(p_sys->fd);
1644 p_sys->fd = -1;
1649 /*****************************************************************************
1650 * Cookies (FIXME: we may want to rewrite that using a nice structure to hold
1651 * them) (FIXME: only support the "domain=" param)
1652 *****************************************************************************/
1654 /* Get the NAME=VALUE part of the Cookie */
1655 static char * cookie_get_content( const char * cookie )
1657 char * ret = strdup( cookie );
1658 if( !ret ) return NULL;
1659 char * str = ret;
1660 /* Look for a ';' */
1661 while( *str && *str != ';' ) str++;
1662 /* Replace it by a end-char */
1663 if( *str == ';' ) *str = 0;
1664 return ret;
1667 /* Get the domain where the cookie is stored */
1668 static char * cookie_get_domain( const char * cookie )
1670 const char * str = cookie;
1671 static const char domain[] = "domain=";
1672 if( !str )
1673 return NULL;
1674 /* Look for a ';' */
1675 while( *str )
1677 if( !strncmp( str, domain, sizeof(domain) - 1 /* minus \0 */ ) )
1679 str += sizeof(domain) - 1 /* minus \0 */;
1680 char * ret = strdup( str );
1681 /* Now remove the next ';' if present */
1682 char * ret_iter = ret;
1683 while( *ret_iter && *ret_iter != ';' ) ret_iter++;
1684 if( *ret_iter == ';' )
1685 *ret_iter = 0;
1686 return ret;
1688 /* Go to next ';' field */
1689 while( *str && *str != ';' ) str++;
1690 if( *str == ';' ) str++;
1691 /* skip blank */
1692 while( *str && *str == ' ' ) str++;
1694 return NULL;
1697 /* Get NAME in the NAME=VALUE field */
1698 static char * cookie_get_name( const char * cookie )
1700 char * ret = cookie_get_content( cookie ); /* NAME=VALUE */
1701 if( !ret ) return NULL;
1702 char * str = ret;
1703 while( *str && *str != '=' ) str++;
1704 *str = 0;
1705 return ret;
1708 /* Add a cookie in cookies, checking to see how it should be added */
1709 static void cookie_append( vlc_array_t * cookies, char * cookie )
1711 int i;
1713 if( !cookie )
1714 return;
1716 char * cookie_name = cookie_get_name( cookie );
1718 /* Don't send invalid cookies */
1719 if( !cookie_name )
1720 return;
1722 char * cookie_domain = cookie_get_domain( cookie );
1723 for( i = 0; i < vlc_array_count( cookies ); i++ )
1725 char * current_cookie = vlc_array_item_at_index( cookies, i );
1726 char * current_cookie_name = cookie_get_name( current_cookie );
1727 char * current_cookie_domain = cookie_get_domain( current_cookie );
1729 assert( current_cookie_name );
1731 bool is_domain_matching = ( cookie_domain && current_cookie_domain &&
1732 !strcmp( cookie_domain, current_cookie_domain ) );
1734 if( is_domain_matching && !strcmp( cookie_name, current_cookie_name ) )
1736 /* Remove previous value for this cookie */
1737 free( current_cookie );
1738 vlc_array_remove( cookies, i );
1740 /* Clean */
1741 free( current_cookie_name );
1742 free( current_cookie_domain );
1743 break;
1745 free( current_cookie_name );
1746 free( current_cookie_domain );
1748 free( cookie_name );
1749 free( cookie_domain );
1750 vlc_array_append( cookies, cookie );
1754 /*****************************************************************************
1755 * HTTP authentication
1756 *****************************************************************************/
1758 static void AuthReply( access_t *p_access, const char *psz_prefix,
1759 vlc_url_t *p_url, http_auth_t *p_auth )
1761 access_sys_t *p_sys = p_access->p_sys;
1762 char *psz_value;
1764 psz_value =
1765 http_auth_FormatAuthorizationHeader( VLC_OBJECT(p_access), p_auth,
1766 "GET", p_url->psz_path,
1767 p_url->psz_username,
1768 p_url->psz_password );
1769 if ( psz_value == NULL )
1770 return;
1772 net_Printf( p_access, p_sys->fd, p_sys->p_vs,
1773 "%sAuthorization: %s\r\n", psz_prefix, psz_value );
1774 free( psz_value );
1777 static int AuthCheckReply( access_t *p_access, const char *psz_header,
1778 vlc_url_t *p_url, http_auth_t *p_auth )
1780 return
1781 http_auth_ParseAuthenticationInfoHeader( VLC_OBJECT(p_access), p_auth,
1782 psz_header, "",
1783 p_url->psz_path,
1784 p_url->psz_username,
1785 p_url->psz_password );