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