]> git.sesse.net Git - vlc/blob - modules/access/http.c
Access/*: Second lecture (refs #438)
[vlc] / modules / access / http.c
1 /*****************************************************************************
2  * http.c: HTTP input module
3  *****************************************************************************
4  * Copyright (C) 2001-2005 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  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <stdlib.h>
30
31 #include <vlc/vlc.h>
32 #include <vlc/input.h>
33
34 #include "vlc_interaction.h"
35 #include "vlc_playlist.h"
36 #include "vlc_meta.h"
37 #include "network.h"
38 #include "vlc_url.h"
39 #include "vlc_tls.h"
40
41 /*****************************************************************************
42  * Module descriptor
43  *****************************************************************************/
44 static int  Open ( vlc_object_t * );
45 static void Close( vlc_object_t * );
46
47 #define PROXY_TEXT N_("HTTP proxy")
48 #define PROXY_LONGTEXT N_( \
49     "HTTP proxy to be usesd It must be of the form " \
50     "http://[user[:pass]@]myproxy.mydomain:myport/ ; " \
51     "if empty, the http_proxy environment variable will be tried." )
52
53 #define CACHING_TEXT N_("Caching value in ms")
54 #define CACHING_LONGTEXT N_( \
55     "Caching value for HTTP streams. This " \
56     "value should be set in milliseconds." )
57
58 #define AGENT_TEXT N_("HTTP user agent")
59 #define AGENT_LONGTEXT N_("User agent that will be " \
60     "used for the connection.")
61
62 #define RECONNECT_TEXT N_("Auto re-connect")
63 #define RECONNECT_LONGTEXT N_( \
64     "Automatically try to reconnect to the stream in case of a sudden " \
65     "disconnect." )
66
67 #define CONTINUOUS_TEXT N_("Continuous stream")
68 #define CONTINUOUS_LONGTEXT N_("Read a file that is " \
69     "being constantly updated (for example, a JPG file on a server)." \
70     "You should not globally enable this option as it will break all other " \
71     "types of HTTP streams." )
72
73 vlc_module_begin();
74     set_description( _("HTTP input") );
75     set_capability( "access2", 0 );
76     set_shortname( _( "HTTP(S)" ) );
77     set_category( CAT_INPUT );
78     set_subcategory( SUBCAT_INPUT_ACCESS );
79
80     add_string( "http-proxy", NULL, NULL, PROXY_TEXT, PROXY_LONGTEXT,
81                 VLC_FALSE );
82     add_integer( "http-caching", 4 * DEFAULT_PTS_DELAY / 1000, NULL,
83                  CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
84     add_string( "http-user-agent", COPYRIGHT_MESSAGE , NULL, AGENT_TEXT,
85                 AGENT_LONGTEXT, VLC_TRUE );
86     add_bool( "http-reconnect", 0, NULL, RECONNECT_TEXT,
87               RECONNECT_LONGTEXT, VLC_TRUE );
88     add_bool( "http-continuous", 0, NULL, CONTINUOUS_TEXT,
89               CONTINUOUS_LONGTEXT, VLC_TRUE );
90     add_suppressed_string("http-user");
91     add_suppressed_string("http-pwd");
92     add_shortcut( "http" );
93     add_shortcut( "https" );
94     add_shortcut( "unsv" );
95     set_callbacks( Open, Close );
96 vlc_module_end();
97
98 /*****************************************************************************
99  * Local prototypes
100  *****************************************************************************/
101 struct access_sys_t
102 {
103     int fd;
104     tls_session_t *p_tls;
105     v_socket_t    *p_vs;
106
107     /* From uri */
108     vlc_url_t url;
109     char    *psz_user_agent;
110
111     /* Proxy */
112     vlc_bool_t b_proxy;
113     vlc_url_t  proxy;
114
115     /* */
116     int        i_code;
117     char       *psz_protocol;
118     int        i_version;
119
120     char       *psz_mime;
121     char       *psz_pragma;
122     char       *psz_location;
123     vlc_bool_t b_mms;
124     vlc_bool_t b_icecast;
125     vlc_bool_t b_ssl;
126
127     vlc_bool_t b_chunked;
128     int64_t    i_chunk;
129
130     int        i_icy_meta;
131     char       *psz_icy_name;
132     char       *psz_icy_genre;
133     char       *psz_icy_title;
134
135     int i_remaining;
136
137     vlc_bool_t b_seekable;
138     vlc_bool_t b_reconnect;
139     vlc_bool_t b_continuous;
140     vlc_bool_t b_pace_control;
141 };
142
143 /* */
144 static int Read( access_t *, uint8_t *, int );
145 static int Seek( access_t *, int64_t );
146 static int Control( access_t *, int, va_list );
147
148 /* */
149 static int Connect( access_t *, int64_t );
150 static int Request( access_t *p_access, int64_t i_tell );
151 static void Disconnect( access_t * );
152
153 /*****************************************************************************
154  * Open:
155  *****************************************************************************/
156 static int Open( vlc_object_t *p_this )
157 {
158     access_t     *p_access = (access_t*)p_this;
159     access_sys_t *p_sys;
160     char         *psz, *p;
161
162     /* Set up p_access */
163     p_access->pf_read = Read;
164     p_access->pf_block = NULL;
165     p_access->pf_control = Control;
166     p_access->pf_seek = Seek;
167     p_access->info.i_update = 0;
168     p_access->info.i_size = 0;
169     p_access->info.i_pos = 0;
170     p_access->info.b_eof = VLC_FALSE;
171     p_access->info.i_title = 0;
172     p_access->info.i_seekpoint = 0;
173     p_access->p_sys = p_sys = malloc( sizeof( access_sys_t ) );
174     memset( p_sys, 0, sizeof( access_sys_t ) );
175     p_sys->fd = -1;
176     p_sys->b_proxy = VLC_FALSE;
177     p_sys->i_version = 1;
178     p_sys->b_seekable = VLC_TRUE;
179     p_sys->psz_mime = NULL;
180     p_sys->psz_pragma = NULL;
181     p_sys->b_mms = VLC_FALSE;
182     p_sys->b_icecast = VLC_FALSE;
183     p_sys->psz_location = NULL;
184     p_sys->psz_user_agent = NULL;
185     p_sys->b_pace_control = VLC_TRUE;
186     p_sys->b_ssl = VLC_FALSE;
187     p_sys->p_tls = NULL;
188     p_sys->p_vs = NULL;
189     p_sys->i_icy_meta = 0;
190     p_sys->psz_icy_name = NULL;
191     p_sys->psz_icy_genre = NULL;
192     p_sys->psz_icy_title = NULL;
193     p_sys->i_remaining = 0;
194
195
196     /* Parse URI - remove spaces */
197     p = psz = strdup( p_access->psz_path );
198     while( (p = strchr( p, ' ' )) != NULL )
199         *p = '+';
200     vlc_UrlParse( &p_sys->url, psz, 0 );
201     free( psz );
202
203     if( p_sys->url.psz_host == NULL || *p_sys->url.psz_host == '\0' )
204     {
205         msg_Warn( p_access, "invalid host" );
206         goto error;
207     }
208     if( !strncmp( p_access->psz_access, "https", 5 ) )
209     {
210         /* HTTP over SSL */
211         p_sys->b_ssl = VLC_TRUE;
212         if( p_sys->url.i_port <= 0 )
213             p_sys->url.i_port = 443;
214     }
215     else
216     {
217         if( p_sys->url.i_port <= 0 )
218             p_sys->url.i_port = 80;
219     }
220
221     /* Do user agent */
222     p_sys->psz_user_agent = var_CreateGetString( p_access, "http-user-agent" );
223
224     /* Check proxy */
225     psz = var_CreateGetString( p_access, "http-proxy" );
226     if( *psz )
227     {
228         p_sys->b_proxy = VLC_TRUE;
229         vlc_UrlParse( &p_sys->proxy, psz, 0 );
230     }
231 #ifdef HAVE_GETENV
232     else
233     {
234         char *psz_proxy = getenv( "http_proxy" );
235         if( psz_proxy && *psz_proxy )
236         {
237             p_sys->b_proxy = VLC_TRUE;
238             vlc_UrlParse( &p_sys->proxy, psz_proxy, 0 );
239         }
240     }
241 #endif
242     free( psz );
243
244     if( p_sys->b_proxy )
245     {
246         if( p_sys->proxy.psz_host == NULL || *p_sys->proxy.psz_host == '\0' )
247         {
248             msg_Warn( p_access, "invalid proxy host" );
249             goto error;
250         }
251         if( p_sys->proxy.i_port <= 0 )
252         {
253             p_sys->proxy.i_port = 80;
254         }
255     }
256
257     msg_Dbg( p_access, "http: server='%s' port=%d file='%s",
258              p_sys->url.psz_host, p_sys->url.i_port, p_sys->url.psz_path );
259     if( p_sys->b_proxy )
260     {
261         msg_Dbg( p_access, "      proxy %s:%d", p_sys->proxy.psz_host,
262                  p_sys->proxy.i_port );
263     }
264     if( p_sys->url.psz_username && *p_sys->url.psz_username )
265     {
266         msg_Dbg( p_access, "      user='%s', pwd='%s'",
267                  p_sys->url.psz_username, p_sys->url.psz_password );
268     }
269
270     p_sys->b_reconnect = var_CreateGetBool( p_access, "http-reconnect" );
271     p_sys->b_continuous = var_CreateGetBool( p_access, "http-continuous" );
272
273 connect:
274     /* Connect */
275     if( Connect( p_access, 0 ) )
276     {
277         /* Retry with http 1.0 */
278         p_sys->i_version = 0;
279
280         if( p_access->b_die ||
281             Connect( p_access, 0 ) )
282         {
283             goto error;
284         }
285     }
286
287     if( p_sys->i_code == 401 )
288     {
289         char *psz_login = NULL; char *psz_password = NULL;
290         int i_ret;
291         msg_Dbg( p_access, "authentication failed" );
292         i_ret = intf_UserLoginPassword( p_access, "HTTP authentication",
293                          "Please enter a valid login and password.", &psz_login, &psz_password );
294         if( i_ret == DIALOG_OK_YES )
295         {
296             msg_Dbg( p_access, "retrying with user=%s, pwd=%s",
297                         psz_login, psz_password );
298             if( psz_login ) p_sys->url.psz_username = strdup( psz_login );
299             if( psz_password ) p_sys->url.psz_password = strdup( psz_password );
300             if( psz_login ) free( psz_login );
301             if( psz_password ) free( psz_password );
302             goto connect;
303         }
304         else
305         {
306             if( psz_login ) free( psz_login );
307             if( psz_password ) free( psz_password );
308             goto error;
309         }
310     }
311
312     if( ( p_sys->i_code == 301 || p_sys->i_code == 302 ||
313           p_sys->i_code == 303 || p_sys->i_code == 307 ) &&
314         p_sys->psz_location && *p_sys->psz_location )
315     {
316         playlist_t * p_playlist;
317         input_item_t *p_input_item;
318
319         msg_Dbg( p_access, "redirection to %s", p_sys->psz_location );
320
321         /* Do not accept redirection outside of HTTP works */
322         if( strncmp( p_sys->psz_location, "http", 4 )
323          || ( ( p_sys->psz_location[4] != ':' ) /* HTTP */
324            && strncmp( p_sys->psz_location + 4, "s:", 2 ) /* HTTP/SSL */ ) )
325         {
326             msg_Err( p_access, "insecure redirection ignored" );
327             goto error;
328         }
329
330         p_playlist = vlc_object_find( p_access, VLC_OBJECT_PLAYLIST,
331                                       FIND_ANYWHERE );
332         if( !p_playlist )
333         {
334             msg_Err( p_access, "redirection failed: can't find playlist" );
335             goto error;
336         }
337
338         /* Change the uri */
339         vlc_mutex_lock( &p_playlist->object_lock );
340         p_input_item = &p_playlist->status.p_item->input;
341         vlc_mutex_lock( &p_input_item->lock );
342         free( p_input_item->psz_uri );
343         free( p_access->psz_path );
344         p_input_item->psz_uri = strdup( p_sys->psz_location );
345         p_access->psz_path = strdup( p_sys->psz_location );
346         vlc_mutex_unlock( &p_input_item->lock );
347         vlc_mutex_unlock( &p_playlist->object_lock );
348         vlc_object_release( p_playlist );
349
350         /* Clean up current Open() run */
351         vlc_UrlClean( &p_sys->url );
352         vlc_UrlClean( &p_sys->proxy );
353         if( p_sys->psz_mime ) free( p_sys->psz_mime );
354         if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
355         if( p_sys->psz_location ) free( p_sys->psz_location );
356         if( p_sys->psz_user_agent ) free( p_sys->psz_user_agent );
357
358         Disconnect( p_access );
359         free( p_sys );
360
361         /* Do new Open() run with new data */
362         return Open( p_this );
363     }
364
365     if( p_sys->b_mms )
366     {
367         msg_Dbg( p_access, "this is actually a live mms server, BAIL" );
368         goto error;
369     }
370
371     if( !strcmp( p_sys->psz_protocol, "ICY" ) || p_sys->b_icecast )
372     {
373         if( p_sys->psz_mime && strcasecmp( p_sys->psz_mime, "application/ogg" ) )
374         {
375             if( !strcasecmp( p_sys->psz_mime, "video/nsv" ) ||
376                 !strcasecmp( p_sys->psz_mime, "video/nsa" ) )
377                 p_access->psz_demux = strdup( "nsv" );
378             else if( !strcasecmp( p_sys->psz_mime, "audio/aac" ) ||
379                      !strcasecmp( p_sys->psz_mime, "audio/aacp" ) )
380                 p_access->psz_demux = strdup( "m4a" );
381             else if( !strcasecmp( p_sys->psz_mime, "audio/mpeg" ) )
382                 p_access->psz_demux = strdup( "mp3" );
383
384             msg_Info( p_access, "Raw-audio server found, %s demuxer selected",
385                       p_access->psz_demux );
386
387 #if 0       /* Doesn't work really well because of the pre-buffering in
388              * shoutcast servers (the buffer content will be sent as fast as
389              * possible). */
390             p_sys->b_pace_control = VLC_FALSE;
391 #endif
392         }
393         else if( !p_sys->psz_mime )
394         {
395              /* Shoutcast */
396              p_access->psz_demux = strdup( "mp3" );
397         }
398         /* else probably Ogg Vorbis */
399     }
400     else if( !strcasecmp( p_access->psz_access, "unsv" ) &&
401              p_sys->psz_mime &&
402              !strcasecmp( p_sys->psz_mime, "misc/ultravox" ) )
403     {
404         /* Grrrr! detect ultravox server and force NSV demuxer */
405         p_access->psz_demux = strdup( "nsv" );
406     }
407     else if( p_sys->psz_mime &&
408              !strcasecmp( p_sys->psz_mime, "application/xspf+xml" ) )
409         p_access->psz_demux = strdup( "xspf-open" );
410
411     if( p_sys->b_reconnect ) msg_Dbg( p_access, "auto re-connect enabled" );
412
413     /* PTS delay */
414     var_Create( p_access, "http-caching", VLC_VAR_INTEGER |VLC_VAR_DOINHERIT );
415
416     return VLC_SUCCESS;
417
418 error:
419     vlc_UrlClean( &p_sys->url );
420     vlc_UrlClean( &p_sys->proxy );
421     if( p_sys->psz_mime ) free( p_sys->psz_mime );
422     if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
423     if( p_sys->psz_location ) free( p_sys->psz_location );
424     if( p_sys->psz_user_agent ) free( p_sys->psz_user_agent );
425
426     Disconnect( p_access );
427     free( p_sys );
428     return VLC_EGENERIC;
429 }
430
431 /*****************************************************************************
432  * Close:
433  *****************************************************************************/
434 static void Close( vlc_object_t *p_this )
435 {
436     access_t     *p_access = (access_t*)p_this;
437     access_sys_t *p_sys = p_access->p_sys;
438
439     vlc_UrlClean( &p_sys->url );
440     vlc_UrlClean( &p_sys->proxy );
441
442     if( p_sys->psz_mime ) free( p_sys->psz_mime );
443     if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
444     if( p_sys->psz_location ) free( p_sys->psz_location );
445
446     if( p_sys->psz_icy_name ) free( p_sys->psz_icy_name );
447     if( p_sys->psz_icy_genre ) free( p_sys->psz_icy_genre );
448     if( p_sys->psz_icy_title ) free( p_sys->psz_icy_title );
449
450     if( p_sys->psz_user_agent ) free( p_sys->psz_user_agent );
451
452     Disconnect( p_access );
453     free( p_sys );
454 }
455
456 /*****************************************************************************
457  * Read: Read up to i_len bytes from the http connection and place in
458  * p_buffer. Return the actual number of bytes read
459  *****************************************************************************/
460 static int ReadICYMeta( access_t *p_access );
461 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
462 {
463     access_sys_t *p_sys = p_access->p_sys;
464     int i_read;
465
466     if( p_sys->fd < 0 )
467     {
468         p_access->info.b_eof = VLC_TRUE;
469         return 0;
470     }
471
472     if( p_access->info.i_size > 0 &&
473         i_len + p_access->info.i_pos > p_access->info.i_size )
474     {
475         if( ( i_len = p_access->info.i_size - p_access->info.i_pos ) == 0 )
476         {
477             p_access->info.b_eof = VLC_TRUE;
478             return 0;
479         }
480     }
481
482     if( p_sys->b_chunked )
483     {
484         if( p_sys->i_chunk < 0 )
485         {
486             p_access->info.b_eof = VLC_TRUE;
487             return 0;
488         }
489
490         if( p_sys->i_chunk <= 0 )
491         {
492             char *psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, p_sys->p_vs );
493             /* read the chunk header */
494             if( psz == NULL )
495             {
496                 msg_Dbg( p_access, "failed reading chunk-header line" );
497                 return -1;
498             }
499             p_sys->i_chunk = strtoll( psz, NULL, 16 );
500             free( psz );
501
502             if( p_sys->i_chunk <= 0 )   /* eof */
503             {
504                 p_sys->i_chunk = -1;
505                 p_access->info.b_eof = VLC_TRUE;
506                 return 0;
507             }
508         }
509
510         if( i_len > p_sys->i_chunk )
511         {
512             i_len = p_sys->i_chunk;
513         }
514     }
515
516     if( p_sys->b_continuous && i_len > p_sys->i_remaining )
517     {
518         /* Only ask for the remaining length */
519         int i_new_len = p_sys->i_remaining;
520         if( i_new_len == 0 )
521         {
522             Request( p_access, 0 );
523             i_read = Read( p_access, p_buffer, i_len );
524             return i_read;
525         }
526         i_len = i_new_len;
527     }
528
529     if( p_sys->i_icy_meta > 0 && p_access->info.i_pos > 0 )
530     {
531         int64_t i_next = p_sys->i_icy_meta -
532                                     p_access->info.i_pos % p_sys->i_icy_meta;
533
534         if( i_next == p_sys->i_icy_meta )
535         {
536             if( ReadICYMeta( p_access ) )
537             {
538                 p_access->info.b_eof = VLC_TRUE;
539                 return -1;
540             }
541         }
542         if( i_len > i_next )
543             i_len = i_next;
544     }
545
546     i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs, p_buffer, i_len, VLC_FALSE );
547
548     if( i_read > 0 )
549     {
550         p_access->info.i_pos += i_read;
551
552         if( p_sys->b_chunked )
553         {
554             p_sys->i_chunk -= i_read;
555             if( p_sys->i_chunk <= 0 )
556             {
557                 /* read the empty line */
558                 char *psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, p_sys->p_vs );
559                 if( psz ) free( psz );
560             }
561         }
562     }
563     else if( i_read == 0 )
564     {
565         /*
566          * I very much doubt that this will work.
567          * If i_read == 0, the connection *IS* dead, so the only
568          * sensible thing to do is Disconnect() and then retry.
569          * Otherwise, I got recv() completely wrong. -- Courmisch
570          */
571         if( p_sys->b_continuous )
572         {
573             Request( p_access, 0 );
574             p_sys->b_continuous = VLC_FALSE;
575             i_read = Read( p_access, p_buffer, i_len );
576             p_sys->b_continuous = VLC_TRUE;
577         }
578         Disconnect( p_access );
579         if( p_sys->b_reconnect )
580         {
581             msg_Dbg( p_access, "got disconnected, trying to reconnect" );
582             if( Connect( p_access, p_access->info.i_pos ) )
583             {
584                 msg_Dbg( p_access, "reconnection failed" );
585             }
586             else
587             {
588                 p_sys->b_reconnect = VLC_FALSE;
589                 i_read = Read( p_access, p_buffer, i_len );
590                 p_sys->b_reconnect = VLC_TRUE;
591             }
592         }
593
594         if( i_read == 0 ) p_access->info.b_eof = VLC_TRUE;
595     }
596
597     if( p_sys->b_continuous )
598     {
599         p_sys->i_remaining -= i_read;
600     }
601
602     return i_read;
603 }
604
605 static int ReadICYMeta( access_t *p_access )
606 {
607     access_sys_t *p_sys = p_access->p_sys;
608
609     uint8_t buffer;
610     char *p, *psz_meta;
611     int i_read;
612
613     /* Read meta data length */
614     i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs, &buffer, 1,
615                        VLC_TRUE );
616     if( i_read <= 0 )
617         return VLC_EGENERIC;
618     if( buffer == 0 )
619         return VLC_SUCCESS;
620
621     i_read = buffer << 4;
622     /* msg_Dbg( p_access, "ICY meta size=%u", i_read); */
623
624     psz_meta = malloc( i_read + 1 );
625     if( net_Read( p_access, p_sys->fd, p_sys->p_vs,
626                   (uint8_t *)psz_meta, i_read, VLC_TRUE ) != i_read )
627         return VLC_EGENERIC;
628
629     psz_meta[i_read] = '\0'; /* Just in case */
630
631     /* msg_Dbg( p_access, "icy-meta=%s", psz_meta ); */
632
633     /* Now parse the meta */
634     /* Look for StreamTitle= */
635     p = strcasestr( (char *)psz_meta, "StreamTitle=" );
636     if( p )
637     {
638         p += strlen( "StreamTitle=" );
639         if( *p == '\'' || *p == '"' )
640         {
641             char *psz = strchr( &p[1], p[0] );
642             if( !psz )
643                 psz = strchr( &p[1], ';' );
644
645             if( psz ) *psz = '\0';
646         }
647         else
648         {
649             char *psz = strchr( &p[1], ';' );
650             if( psz ) *psz = '\0';
651         }
652
653         if( !p_sys->psz_icy_title ||
654             strcmp( p_sys->psz_icy_title, &p[1] ) )
655         {
656             if( p_sys->psz_icy_title )
657                 free( p_sys->psz_icy_title );
658             p_sys->psz_icy_title = strdup( &p[1] );
659             p_access->info.i_update |= INPUT_UPDATE_META;
660
661             msg_Dbg( p_access, "New Title=%s", p_sys->psz_icy_title );
662         }
663     }
664     free( psz_meta );
665
666     return VLC_SUCCESS;
667 }
668
669 /*****************************************************************************
670  * Seek: close and re-open a connection at the right place
671  *****************************************************************************/
672 static int Seek( access_t *p_access, int64_t i_pos )
673 {
674     msg_Dbg( p_access, "trying to seek to "I64Fd, i_pos );
675
676     Disconnect( p_access );
677
678     if( Connect( p_access, i_pos ) )
679     {
680         msg_Err( p_access, "seek failed" );
681         p_access->info.b_eof = VLC_TRUE;
682         return VLC_EGENERIC;
683     }
684     return VLC_SUCCESS;
685 }
686
687 /*****************************************************************************
688  * Control:
689  *****************************************************************************/
690 static int Control( access_t *p_access, int i_query, va_list args )
691 {
692     access_sys_t *p_sys = p_access->p_sys;
693     vlc_bool_t   *pb_bool;
694     int          *pi_int;
695     int64_t      *pi_64;
696     vlc_meta_t **pp_meta;
697
698     switch( i_query )
699     {
700         /* */
701         case ACCESS_CAN_SEEK:
702             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
703             *pb_bool = p_sys->b_seekable;
704             break;
705         case ACCESS_CAN_FASTSEEK:
706             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
707             *pb_bool = VLC_FALSE;
708             break;
709         case ACCESS_CAN_PAUSE:
710         case ACCESS_CAN_CONTROL_PACE:
711             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
712
713 #if 0       /* Disable for now until we have a clock synchro algo
714              * which works with something else than MPEG over UDP */
715             *pb_bool = p_sys->b_pace_control;
716 #endif
717             *pb_bool = VLC_TRUE;
718             break;
719
720         /* */
721         case ACCESS_GET_MTU:
722             pi_int = (int*)va_arg( args, int * );
723             *pi_int = 0;
724             break;
725
726         case ACCESS_GET_PTS_DELAY:
727             pi_64 = (int64_t*)va_arg( args, int64_t * );
728             *pi_64 = (int64_t)var_GetInteger( p_access, "http-caching" ) * 1000;
729             break;
730
731         /* */
732         case ACCESS_SET_PAUSE_STATE:
733             break;
734
735         case ACCESS_GET_META:
736             pp_meta = (vlc_meta_t**)va_arg( args, vlc_meta_t** );
737             *pp_meta = vlc_meta_New();
738
739             if( p_sys->psz_icy_name )
740                 vlc_meta_Add( *pp_meta, VLC_META_TITLE,
741                               p_sys->psz_icy_name );
742             if( p_sys->psz_icy_genre )
743                 vlc_meta_Add( *pp_meta, VLC_META_GENRE,
744                               p_sys->psz_icy_genre );
745             if( p_sys->psz_icy_title )
746                 vlc_meta_Add( *pp_meta, VLC_META_NOW_PLAYING,
747                               p_sys->psz_icy_title );
748             break;
749
750         case ACCESS_GET_TITLE_INFO:
751         case ACCESS_SET_TITLE:
752         case ACCESS_SET_SEEKPOINT:
753         case ACCESS_SET_PRIVATE_ID_STATE:
754             return VLC_EGENERIC;
755
756         default:
757             msg_Warn( p_access, "unimplemented query in control" );
758             return VLC_EGENERIC;
759
760     }
761     return VLC_SUCCESS;
762 }
763
764 /*****************************************************************************
765  * Connect:
766  *****************************************************************************/
767 static int Connect( access_t *p_access, int64_t i_tell )
768 {
769     access_sys_t   *p_sys = p_access->p_sys;
770     vlc_url_t      srv = p_sys->b_proxy ? p_sys->proxy : p_sys->url;
771
772     /* Clean info */
773     if( p_sys->psz_location ) free( p_sys->psz_location );
774     if( p_sys->psz_mime ) free( p_sys->psz_mime );
775     if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
776
777     if( p_sys->psz_icy_genre ) free( p_sys->psz_icy_genre );
778     if( p_sys->psz_icy_name ) free( p_sys->psz_icy_name );
779     if( p_sys->psz_icy_title ) free( p_sys->psz_icy_title );
780
781
782     p_sys->psz_location = NULL;
783     p_sys->psz_mime = NULL;
784     p_sys->psz_pragma = NULL;
785     p_sys->b_mms = VLC_FALSE;
786     p_sys->b_chunked = VLC_FALSE;
787     p_sys->i_chunk = 0;
788     p_sys->i_icy_meta = 0;
789     p_sys->psz_icy_name = NULL;
790     p_sys->psz_icy_genre = NULL;
791     p_sys->psz_icy_title = NULL;
792
793     p_access->info.i_size = 0;
794     p_access->info.i_pos  = i_tell;
795     p_access->info.b_eof  = VLC_FALSE;
796
797
798     /* Open connection */
799     p_sys->fd = net_ConnectTCP( p_access, srv.psz_host, srv.i_port );
800     if( p_sys->fd < 0 )
801     {
802         msg_Err( p_access, "cannot connect to %s:%d", srv.psz_host, srv.i_port );
803         return VLC_EGENERIC;
804     }
805
806     /* Initialize TLS/SSL session */
807     if( p_sys->b_ssl == VLC_TRUE )
808     {
809         /* CONNECT to establish TLS tunnel through HTTP proxy */
810         if( p_sys->b_proxy )
811         {
812             char *psz;
813             unsigned i_status = 0;
814
815             if( p_sys->i_version == 0 )
816             {
817                 /* CONNECT is not in HTTP/1.0 */
818                 Disconnect( p_access );
819                 return VLC_EGENERIC;
820             }
821
822             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
823                         "CONNECT %s:%d HTTP/1.%d\r\nHost: %s:%d\r\n\r\n",
824                         p_sys->url.psz_host, p_sys->url.i_port,
825                         p_sys->i_version,
826                         p_sys->url.psz_host, p_sys->url.i_port);
827
828             psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, NULL );
829             if( psz == NULL )
830             {
831                 msg_Err( p_access, "cannot establish HTTP/TLS tunnel" );
832                 Disconnect( p_access );
833                 return VLC_EGENERIC;
834             }
835
836             sscanf( psz, "HTTP/%*u.%*u %3u", &i_status );
837             free( psz );
838
839             if( ( i_status / 100 ) != 2 )
840             {
841                 msg_Err( p_access, "HTTP/TLS tunnel through proxy denied" );
842                 Disconnect( p_access );
843                 return VLC_EGENERIC;
844             }
845
846             do
847             {
848                 psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, NULL );
849                 if( psz == NULL )
850                 {
851                     msg_Err( p_access, "HTTP proxy connection failed" );
852                     Disconnect( p_access );
853                     return VLC_EGENERIC;
854                 }
855
856                 if( *psz == '\0' )
857                     i_status = 0;
858
859                 free( psz );
860             }
861             while( i_status );
862         }
863
864         /* TLS/SSL handshake */
865         p_sys->p_tls = tls_ClientCreate( VLC_OBJECT(p_access), p_sys->fd,
866                                          srv.psz_host );
867         if( p_sys->p_tls == NULL )
868         {
869             msg_Err( p_access, "cannot establish HTTP/TLS session" );
870             Disconnect( p_access );
871             return VLC_EGENERIC;
872         }
873         p_sys->p_vs = &p_sys->p_tls->sock;
874     }
875
876     return Request( p_access, i_tell );
877 }
878
879
880 static int Request( access_t *p_access, int64_t i_tell )
881 {
882     access_sys_t   *p_sys = p_access->p_sys;
883     char           *psz ;
884     v_socket_t     *pvs = p_sys->p_vs;
885
886     if( p_sys->b_proxy )
887     {
888         if( p_sys->url.psz_path )
889         {
890             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
891                         "GET http://%s:%d%s HTTP/1.%d\r\n",
892                         p_sys->url.psz_host, p_sys->url.i_port,
893                         p_sys->url.psz_path, p_sys->i_version );
894         }
895         else
896         {
897             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
898                         "GET http://%s:%d/ HTTP/1.%d\r\n",
899                         p_sys->url.psz_host, p_sys->url.i_port,
900                         p_sys->i_version );
901         }
902     }
903     else
904     {
905         char *psz_path = p_sys->url.psz_path;
906         if( !psz_path || !*psz_path )
907         {
908             psz_path = "/";
909         }
910         if( p_sys->url.i_port != 80)
911         {
912             net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
913                         "GET %s HTTP/1.%d\r\nHost: %s:%d\r\n",
914                         psz_path, p_sys->i_version, p_sys->url.psz_host,
915                         p_sys->url.i_port );
916         }
917         else
918         {
919             net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
920                         "GET %s HTTP/1.%d\r\nHost: %s\r\n",
921                         psz_path, p_sys->i_version, p_sys->url.psz_host );
922         }
923     }
924     /* User Agent */
925     net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "User-Agent: %s\r\n",
926                 p_sys->psz_user_agent );
927     /* Offset */
928     if( p_sys->i_version == 1 )
929     {
930         net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
931                     "Range: bytes="I64Fd"-\r\n", i_tell );
932     }
933
934     /* Authentication */
935     if( p_sys->url.psz_username && *p_sys->url.psz_username )
936     {
937         char *buf;
938         char *b64;
939
940         asprintf( &buf, "%s:%s", p_sys->url.psz_username,
941                    p_sys->url.psz_password ? p_sys->url.psz_password : "" );
942
943         b64 = vlc_b64_encode( buf );
944         free( buf );
945
946         net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
947                     "Authorization: Basic %s\r\n", b64 );
948         free( b64 );
949     }
950
951     /* Proxy Authentication */
952     if( p_sys->proxy.psz_username && *p_sys->proxy.psz_username )
953     {
954         char *buf;
955         char *b64;
956
957         asprintf( &buf, "%s:%s", p_sys->proxy.psz_username,
958                    p_sys->proxy.psz_password ? p_sys->proxy.psz_password : "" );
959
960         b64 = vlc_b64_encode( buf );
961         free( buf );
962
963         net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
964                     "Proxy-Authorization: Basic %s\r\n", b64 );
965         free( b64 );
966     }
967
968     /* ICY meta data request */
969     net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "Icy-MetaData: 1\r\n" );
970
971
972     if( p_sys->b_continuous && p_sys->i_version == 1 )
973     {
974         net_Printf( VLC_OBJECT( p_access ), p_sys->fd, pvs,
975                     "Connection: keep-alive\r\n" );
976     }
977     else
978     {
979         net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
980                     "Connection: Close\r\n");
981         p_sys->b_continuous = VLC_FALSE;
982     }
983
984     if( net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "\r\n" ) < 0 )
985     {
986         msg_Err( p_access, "failed to send request" );
987         Disconnect( p_access );
988         return VLC_EGENERIC;
989     }
990
991     /* Read Answer */
992     if( ( psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, pvs ) ) == NULL )
993     {
994         msg_Err( p_access, "failed to read answer" );
995         goto error;
996     }
997     if( !strncmp( psz, "HTTP/1.", 7 ) )
998     {
999         p_sys->psz_protocol = "HTTP";
1000         p_sys->i_code = atoi( &psz[9] );
1001     }
1002     else if( !strncmp( psz, "ICY", 3 ) )
1003     {
1004         p_sys->psz_protocol = "ICY";
1005         p_sys->i_code = atoi( &psz[4] );
1006         p_sys->b_reconnect = VLC_TRUE;
1007     }
1008     else
1009     {
1010         msg_Err( p_access, "invalid HTTP reply '%s'", psz );
1011         free( psz );
1012         goto error;
1013     }
1014     msg_Dbg( p_access, "protocol '%s' answer code %d",
1015              p_sys->psz_protocol, p_sys->i_code );
1016     if( !strcmp( p_sys->psz_protocol, "ICY" ) )
1017     {
1018         p_sys->b_seekable = VLC_FALSE;
1019     }
1020     if( p_sys->i_code != 206 )
1021     {
1022         p_sys->b_seekable = VLC_FALSE;
1023     }
1024     /* Authentication error - We'll have to display the dialog */
1025     if( p_sys->i_code == 401 )
1026     {
1027
1028     }
1029     /* Other fatal error */
1030     else if( p_sys->i_code >= 400 )
1031     {
1032         msg_Err( p_access, "error: %s", psz );
1033         free( psz );
1034         goto error;
1035     }
1036     free( psz );
1037
1038     for( ;; )
1039     {
1040         char *psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, pvs );
1041         char *p;
1042
1043         if( psz == NULL )
1044         {
1045             msg_Err( p_access, "failed to read answer" );
1046             goto error;
1047         }
1048
1049         /* msg_Dbg( p_input, "Line=%s", psz ); */
1050         if( *psz == '\0' )
1051         {
1052             free( psz );
1053             break;
1054         }
1055
1056
1057         if( ( p = strchr( psz, ':' ) ) == NULL )
1058         {
1059             msg_Err( p_access, "malformed header line: %s", psz );
1060             free( psz );
1061             goto error;
1062         }
1063         *p++ = '\0';
1064         while( *p == ' ' ) p++;
1065
1066         if( !strcasecmp( psz, "Content-Length" ) )
1067         {
1068             if( p_sys->b_continuous )
1069             {
1070                 p_access->info.i_size = -1;
1071                 msg_Dbg( p_access, "this frame size="I64Fd, atoll(p ) );
1072                 p_sys->i_remaining = atoll( p );
1073             }
1074             else
1075             {
1076                 p_access->info.i_size = i_tell + atoll( p );
1077                 msg_Dbg( p_access, "stream size="I64Fd, p_access->info.i_size );
1078             }
1079         }
1080         else if( !strcasecmp( psz, "Location" ) )
1081         {
1082             if( p_sys->psz_location ) free( p_sys->psz_location );
1083             p_sys->psz_location = strdup( p );
1084         }
1085         else if( !strcasecmp( psz, "Content-Type" ) )
1086         {
1087             if( p_sys->psz_mime ) free( p_sys->psz_mime );
1088             p_sys->psz_mime = strdup( p );
1089             msg_Dbg( p_access, "Content-Type: %s", p_sys->psz_mime );
1090         }
1091         else if( !strcasecmp( psz, "Pragma" ) )
1092         {
1093             if( !strcasecmp( psz, "Pragma: features" ) )
1094                 p_sys->b_mms = VLC_TRUE;
1095             if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
1096             p_sys->psz_pragma = strdup( p );
1097             msg_Dbg( p_access, "Pragma: %s", p_sys->psz_pragma );
1098         }
1099         else if( !strcasecmp( psz, "Server" ) )
1100         {
1101             msg_Dbg( p_access, "Server: %s", p );
1102             if( !strncasecmp( p, "Icecast", 7 ) ||
1103                 !strncasecmp( p, "Nanocaster", 10 ) )
1104             {
1105                 /* Remember if this is Icecast
1106                  * we need to force demux in this case without breaking
1107                  *  autodetection */
1108
1109                 /* Let live 365 streams (nanocaster) piggyback on the icecast
1110                  * routine. They look very similar */
1111
1112                 p_sys->b_reconnect = VLC_TRUE;
1113                 p_sys->b_pace_control = VLC_FALSE;
1114                 p_sys->b_icecast = VLC_TRUE;
1115             }
1116         }
1117         else if( !strcasecmp( psz, "Transfer-Encoding" ) )
1118         {
1119             msg_Dbg( p_access, "Transfer-Encoding: %s", p );
1120             if( !strncasecmp( p, "chunked", 7 ) )
1121             {
1122                 p_sys->b_chunked = VLC_TRUE;
1123             }
1124         }
1125         else if( !strcasecmp( psz, "Icy-MetaInt" ) )
1126         {
1127             msg_Dbg( p_access, "Icy-MetaInt: %s", p );
1128             p_sys->i_icy_meta = atoi( p );
1129             if( p_sys->i_icy_meta < 0 )
1130                 p_sys->i_icy_meta = 0;
1131
1132             msg_Warn( p_access, "ICY metaint=%d", p_sys->i_icy_meta );
1133         }
1134         else if( !strcasecmp( psz, "Icy-Name" ) )
1135         {
1136             if( p_sys->psz_icy_name ) free( p_sys->psz_icy_name );
1137             p_sys->psz_icy_name = strdup( p );
1138             msg_Dbg( p_access, "Icy-Name: %s", p_sys->psz_icy_name );
1139
1140             p_sys->b_icecast = VLC_TRUE; /* be on the safeside. set it here as well. */
1141             p_sys->b_reconnect = VLC_TRUE;
1142             p_sys->b_pace_control = VLC_FALSE;
1143         }
1144         else if( !strcasecmp( psz, "Icy-Genre" ) )
1145         {
1146             if( p_sys->psz_icy_genre ) free( p_sys->psz_icy_genre );
1147             p_sys->psz_icy_genre = strdup( p );
1148             msg_Dbg( p_access, "Icy-Genre: %s", p_sys->psz_icy_genre );
1149         }
1150         else if( !strncasecmp( psz, "Icy-Notice", 10 ) )
1151         {
1152             msg_Dbg( p_access, "Icy-Notice: %s", p );
1153         }
1154         else if( !strncasecmp( psz, "icy-", 4 ) ||
1155                  !strncasecmp( psz, "ice-", 4 ) ||
1156                  !strncasecmp( psz, "x-audiocast", 11 ) )
1157         {
1158             msg_Dbg( p_access, "Meta-Info: %s: %s", psz, p );
1159         }
1160
1161         free( psz );
1162     }
1163     return VLC_SUCCESS;
1164
1165 error:
1166     Disconnect( p_access );
1167     return VLC_EGENERIC;
1168 }
1169
1170 /*****************************************************************************
1171  * Disconnect:
1172  *****************************************************************************/
1173 static void Disconnect( access_t *p_access )
1174 {
1175     access_sys_t *p_sys = p_access->p_sys;
1176
1177     if( p_sys->p_tls != NULL)
1178     {
1179         tls_ClientDelete( p_sys->p_tls );
1180         p_sys->p_tls = NULL;
1181         p_sys->p_vs = NULL;
1182     }
1183     if( p_sys->fd != -1)
1184     {
1185         net_Close(p_sys->fd);
1186         p_sys->fd = -1;
1187     }
1188     
1189 }