]> git.sesse.net Git - vlc/blob - modules/access/http.c
Common disconnection code in Disconnect()
[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, "video/nsv" ) )
374             p_access->psz_demux = strdup( "nsv" );
375         else if( p_sys->psz_mime &&
376                  ( !strcasecmp( p_sys->psz_mime, "audio/aac" ) ||
377                    !strcasecmp( p_sys->psz_mime, "audio/aacp" ) ) )
378             p_access->psz_demux = strdup( "m4a" );
379         else if( p_sys->psz_mime && !strcasecmp( p_sys->psz_mime, "audio/mpeg" ) )
380             p_access->psz_demux = strdup( "mp3" );
381         else /* assume mp3, though this is definetly not certain */
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
393     if( p_sys->b_reconnect ) msg_Dbg( p_access, "auto re-connect enabled" );
394
395     /* PTS delay */
396     var_Create( p_access, "http-caching", VLC_VAR_INTEGER |VLC_VAR_DOINHERIT );
397
398     return VLC_SUCCESS;
399
400 error:
401     vlc_UrlClean( &p_sys->url );
402     vlc_UrlClean( &p_sys->proxy );
403     if( p_sys->psz_mime ) free( p_sys->psz_mime );
404     if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
405     if( p_sys->psz_location ) free( p_sys->psz_location );
406     if( p_sys->psz_user_agent ) free( p_sys->psz_user_agent );
407     if( p_sys->psz_user ) free( p_sys->psz_user );
408     if( p_sys->psz_passwd ) free( p_sys->psz_passwd );
409
410     Disconnect( p_access );
411     free( p_sys );
412     return VLC_EGENERIC;
413 }
414
415 /*****************************************************************************
416  * Close:
417  *****************************************************************************/
418 static void Close( vlc_object_t *p_this )
419 {
420     access_t     *p_access = (access_t*)p_this;
421     access_sys_t *p_sys = p_access->p_sys;
422
423     vlc_UrlClean( &p_sys->url );
424     vlc_UrlClean( &p_sys->proxy );
425
426     if( p_sys->psz_user ) free( p_sys->psz_user );
427     if( p_sys->psz_passwd ) free( p_sys->psz_passwd );
428
429     if( p_sys->psz_mime ) free( p_sys->psz_mime );
430     if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
431     if( p_sys->psz_location ) free( p_sys->psz_location );
432
433     if( p_sys->psz_icy_name ) free( p_sys->psz_icy_name );
434     if( p_sys->psz_icy_genre ) free( p_sys->psz_icy_genre );
435     if( p_sys->psz_icy_title ) free( p_sys->psz_icy_title );
436
437     if( p_sys->psz_user_agent ) free( p_sys->psz_user_agent );
438
439     Disconnect( p_access );
440     free( p_sys );
441 }
442
443 /*****************************************************************************
444  * Read: Read up to i_len bytes from the http connection and place in
445  * p_buffer. Return the actual number of bytes read
446  *****************************************************************************/
447 static int ReadICYMeta( access_t *p_access );
448 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
449 {
450     access_sys_t *p_sys = p_access->p_sys;
451     int i_read;
452
453     if( p_sys->fd < 0 )
454     {
455         p_access->info.b_eof = VLC_TRUE;
456         return 0;
457     }
458
459     if( p_access->info.i_size > 0 &&
460         i_len + p_access->info.i_pos > p_access->info.i_size )
461     {
462         if( ( i_len = p_access->info.i_size - p_access->info.i_pos ) == 0 )
463         {
464             p_access->info.b_eof = VLC_TRUE;
465             return 0;
466         }
467     }
468
469     if( p_sys->b_chunked )
470     {
471         if( p_sys->i_chunk < 0 )
472         {
473             p_access->info.b_eof = VLC_TRUE;
474             return 0;
475         }
476
477         if( p_sys->i_chunk <= 0 )
478         {
479             char *psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, p_sys->p_vs );
480             /* read the chunk header */
481             if( psz == NULL )
482             {
483                 msg_Dbg( p_access, "failed reading chunk-header line" );
484                 return -1;
485             }
486             p_sys->i_chunk = strtoll( psz, NULL, 16 );
487             free( psz );
488
489             if( p_sys->i_chunk <= 0 )   /* eof */
490             {
491                 p_sys->i_chunk = -1;
492                 p_access->info.b_eof = VLC_TRUE;
493                 return 0;
494             }
495         }
496
497         if( i_len > p_sys->i_chunk )
498         {
499             i_len = p_sys->i_chunk;
500         }
501     }
502
503     if( p_sys->b_continuous && i_len > p_sys->i_remaining )
504     {
505         /* Only ask for the remaining length */
506         int i_new_len = p_sys->i_remaining;
507         if( i_new_len == 0 )
508         {
509             Request( p_access, 0 );
510             i_read = Read( p_access, p_buffer, i_len );
511             return i_read;
512         }
513         i_len = i_new_len;
514     }
515
516     if( p_sys->i_icy_meta > 0 && p_access->info.i_pos > 0 )
517     {
518         int64_t i_next = p_sys->i_icy_meta -
519                                     p_access->info.i_pos % p_sys->i_icy_meta;
520
521         if( i_next == p_sys->i_icy_meta )
522         {
523             if( ReadICYMeta( p_access ) )
524             {
525                 p_access->info.b_eof = VLC_TRUE;
526                 return -1;
527             }
528         }
529         if( i_len > i_next )
530             i_len = i_next;
531     }
532
533     i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs, p_buffer, i_len, VLC_FALSE );
534
535     if( i_read > 0 )
536     {
537         p_access->info.i_pos += i_read;
538
539         if( p_sys->b_chunked )
540         {
541             p_sys->i_chunk -= i_read;
542             if( p_sys->i_chunk <= 0 )
543             {
544                 /* read the empty line */
545                 char *psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, p_sys->p_vs );
546                 if( psz ) free( psz );
547             }
548         }
549     }
550     else if( i_read == 0 )
551     {
552         if( p_sys->b_continuous )
553         {
554             Request( p_access, 0 );
555             p_sys->b_continuous = VLC_FALSE;
556             i_read = Read( p_access, p_buffer, i_len );
557             p_sys->b_continuous = VLC_TRUE;
558         }
559         if( p_sys->b_reconnect )
560         {
561             msg_Dbg( p_access, "got disconnected, trying to reconnect" );
562             Disconnect( p_access );
563             if( Connect( p_access, p_access->info.i_pos ) )
564             {
565                 msg_Dbg( p_access, "reconnection failed" );
566             }
567             else
568             {
569                 p_sys->b_reconnect = VLC_FALSE;
570                 i_read = Read( p_access, p_buffer, i_len );
571                 p_sys->b_reconnect = VLC_TRUE;
572             }
573         }
574
575         if( i_read == 0 ) p_access->info.b_eof = VLC_TRUE;
576     }
577
578     if( p_sys->b_continuous )
579     {
580         p_sys->i_remaining -= i_read;
581     }
582
583     return i_read;
584 }
585
586 static int ReadICYMeta( access_t *p_access )
587 {
588     access_sys_t *p_sys = p_access->p_sys;
589
590     uint8_t buffer[1];
591     char *psz_meta;
592     int i_read;
593     char *p;
594
595     /* Read meta data length */
596     i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs, buffer, 1,
597                        VLC_TRUE );
598     if( i_read <= 0 )
599         return VLC_EGENERIC;
600
601
602     if( buffer[0] <= 0 )
603         return VLC_SUCCESS;
604
605     msg_Dbg( p_access, "ICY meta size=%d", buffer[0] * 16);
606
607     psz_meta = malloc( buffer[0] * 16 + 1 );
608     i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs,
609                        psz_meta, buffer[0] * 16, VLC_TRUE );
610
611     if( i_read != buffer[0] * 16 )
612         return VLC_EGENERIC;
613
614     psz_meta[buffer[0]*16 + 1] = '\0'; /* Just in case */
615
616     msg_Dbg( p_access, "icy-meta=%s", psz_meta );
617
618     /* Now parse the meta */
619     /* Look for StreamTitle= */
620     p = strcasestr( psz_meta, "StreamTitle=" );
621     if( p )
622     {
623         p += strlen( "StreamTitle=" );
624         if( *p == '\'' || *p == '"' )
625         {
626             char *psz = strchr( &p[1], p[0] );
627             if( !psz )
628                 psz = strchr( &p[1], ';' );
629
630             if( psz ) *psz = '\0';
631         }
632         else
633         {
634             char *psz = strchr( &p[1], ';' );
635             if( psz ) *psz = '\0';
636         }
637
638         if( p_sys->psz_icy_title ) free( p_sys->psz_icy_title );
639
640         p_sys->psz_icy_title = strdup( &p[1] );
641
642         p_access->info.i_update |= INPUT_UPDATE_META;
643     }
644
645     free( psz_meta );
646
647     msg_Dbg( p_access, "New Title=%s", p_sys->psz_icy_title );
648
649     return VLC_SUCCESS;
650 }
651
652 /*****************************************************************************
653  * Seek: close and re-open a connection at the right place
654  *****************************************************************************/
655 static int Seek( access_t *p_access, int64_t i_pos )
656 {
657     msg_Dbg( p_access, "trying to seek to "I64Fd, i_pos );
658
659     Disconnect( p_access );
660
661     if( Connect( p_access, i_pos ) )
662     {
663         msg_Err( p_access, "seek failed" );
664         p_access->info.b_eof = VLC_TRUE;
665         return VLC_EGENERIC;
666     }
667     return VLC_SUCCESS;
668 }
669
670 /*****************************************************************************
671  * Control:
672  *****************************************************************************/
673 static int Control( access_t *p_access, int i_query, va_list args )
674 {
675     access_sys_t *p_sys = p_access->p_sys;
676     vlc_bool_t   *pb_bool;
677     int          *pi_int;
678     int64_t      *pi_64;
679     vlc_meta_t **pp_meta;
680
681     switch( i_query )
682     {
683         /* */
684         case ACCESS_CAN_SEEK:
685             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
686             *pb_bool = p_sys->b_seekable;
687             break;
688         case ACCESS_CAN_FASTSEEK:
689             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
690             *pb_bool = VLC_FALSE;
691             break;
692         case ACCESS_CAN_PAUSE:
693         case ACCESS_CAN_CONTROL_PACE:
694             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
695             *pb_bool = p_sys->b_pace_control;
696             break;
697
698         /* */
699         case ACCESS_GET_MTU:
700             pi_int = (int*)va_arg( args, int * );
701             *pi_int = 0;
702             break;
703
704         case ACCESS_GET_PTS_DELAY:
705             pi_64 = (int64_t*)va_arg( args, int64_t * );
706             *pi_64 = (int64_t)var_GetInteger( p_access, "http-caching" ) * 1000;
707             break;
708
709         /* */
710         case ACCESS_SET_PAUSE_STATE:
711             break;
712
713         case ACCESS_GET_META:
714             pp_meta = (vlc_meta_t**)va_arg( args, vlc_meta_t** );
715             *pp_meta = vlc_meta_New();
716             msg_Dbg( p_access, "GET META %s %s %s",
717                      p_sys->psz_icy_name, p_sys->psz_icy_genre, p_sys->psz_icy_title );
718             if( p_sys->psz_icy_name )
719                 vlc_meta_Add( *pp_meta, VLC_META_DESCRIPTION,
720                               p_sys->psz_icy_name );
721             if( p_sys->psz_icy_genre )
722                 vlc_meta_Add( *pp_meta, VLC_META_GENRE,
723                               p_sys->psz_icy_genre );
724             if( p_sys->psz_icy_title )
725                 vlc_meta_Add( *pp_meta, VLC_META_TITLE,
726                               p_sys->psz_icy_title );
727             break;
728
729         case ACCESS_GET_TITLE_INFO:
730         case ACCESS_SET_TITLE:
731         case ACCESS_SET_SEEKPOINT:
732         case ACCESS_SET_PRIVATE_ID_STATE:
733             return VLC_EGENERIC;
734
735         default:
736             msg_Warn( p_access, "unimplemented query in control" );
737             return VLC_EGENERIC;
738
739     }
740     return VLC_SUCCESS;
741 }
742
743 /*****************************************************************************
744  * ParseURL: extract user:password
745  *****************************************************************************/
746 static void ParseURL( access_sys_t *p_sys, char *psz_url )
747 {
748     char *psz_dup = strdup( psz_url );
749     char *p = psz_dup;
750     char *psz;
751
752     /* Syntax //[user:password]@<hostname>[:<port>][/<path>] */
753     while( *p == '/' )
754     {
755         p++;
756     }
757     psz = p;
758
759     /* Parse auth */
760     if( ( p = strchr( psz, '@' ) ) )
761     {
762         char *comma;
763
764         *p++ = '\0';
765         comma = strchr( psz, ':' );
766
767         /* Retreive user:password */
768         if( comma )
769         {
770             *comma++ = '\0';
771
772             p_sys->psz_user = strdup( psz );
773             p_sys->psz_passwd = strdup( comma );
774         }
775         else
776         {
777             p_sys->psz_user = strdup( psz );
778         }
779     }
780     else
781     {
782         p = psz;
783     }
784
785     /* Parse uri */
786     vlc_UrlParse( &p_sys->url, p, 0 );
787
788     free( psz_dup );
789 }
790
791 /*****************************************************************************
792  * Connect:
793  *****************************************************************************/
794 static int Connect( access_t *p_access, int64_t i_tell )
795 {
796     access_sys_t   *p_sys = p_access->p_sys;
797     vlc_url_t      srv = p_sys->b_proxy ? p_sys->proxy : p_sys->url;
798
799     /* Clean info */
800     if( p_sys->psz_location ) free( p_sys->psz_location );
801     if( p_sys->psz_mime ) free( p_sys->psz_mime );
802     if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
803
804     if( p_sys->psz_icy_genre ) free( p_sys->psz_icy_genre );
805     if( p_sys->psz_icy_name ) free( p_sys->psz_icy_name );
806     if( p_sys->psz_icy_title ) free( p_sys->psz_icy_title );
807
808
809     p_sys->psz_location = NULL;
810     p_sys->psz_mime = NULL;
811     p_sys->psz_pragma = NULL;
812     p_sys->b_mms = VLC_FALSE;
813     p_sys->b_chunked = VLC_FALSE;
814     p_sys->i_chunk = 0;
815     p_sys->i_icy_meta = 0;
816     p_sys->psz_icy_name = NULL;
817     p_sys->psz_icy_genre = NULL;
818     p_sys->psz_icy_title = NULL;
819
820     p_access->info.i_size = 0;
821     p_access->info.i_pos  = i_tell;
822     p_access->info.b_eof  = VLC_FALSE;
823
824
825     /* Open connection */
826     p_sys->fd = net_OpenTCP( p_access, srv.psz_host, srv.i_port );
827     if( p_sys->fd < 0 )
828     {
829         msg_Err( p_access, "cannot connect to %s:%d", srv.psz_host, srv.i_port );
830         return VLC_EGENERIC;
831     }
832
833     /* Initialize TLS/SSL session */
834     /* FIXME: support proxy CONNECT for HTTP/SSL */
835     if( p_sys->b_ssl == VLC_TRUE )
836     {
837         if( p_sys->b_proxy )
838         {
839             msg_Err( p_access, "HTTP/SSL through HTTP proxy not supported yet" );
840             Disconnect( p_access );
841             return VLC_EGENERIC;
842         }
843
844         p_sys->p_tls = tls_ClientCreate( VLC_OBJECT(p_access), NULL, p_sys->fd );
845         if( p_sys->p_tls == NULL )
846         {
847             msg_Err( p_access, "cannot establish HTTP/SSL session" );
848             Disconnect( p_access );
849             return VLC_EGENERIC;
850         }
851         p_sys->p_vs = &p_sys->p_tls->sock;
852     }
853
854     return Request( p_access,i_tell );
855 }
856
857
858 static int Request( access_t *p_access, int64_t i_tell )
859 {
860     access_sys_t   *p_sys = p_access->p_sys;
861     char           *psz ;
862     v_socket_t     *pvs = p_sys->p_vs;
863
864     if( p_sys->b_proxy )
865     {
866         if( p_sys->url.psz_path )
867         {
868             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
869                         "GET http://%s:%d%s HTTP/1.%d\r\n",
870                         p_sys->url.psz_host, p_sys->url.i_port,
871                         p_sys->url.psz_path, p_sys->i_version );
872         }
873         else
874         {
875             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
876                         "GET http://%s:%d/ HTTP/1.%d\r\n",
877                         p_sys->url.psz_host, p_sys->url.i_port,
878                         p_sys->i_version );
879         }
880     }
881     else
882     {
883         char *psz_path = p_sys->url.psz_path;
884         if( !psz_path || !*psz_path )
885         {
886             psz_path = "/";
887         }
888         if( p_sys->url.i_port != 80)
889         {
890             net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
891                         "GET %s HTTP/1.%d\r\nHost: %s:%d\r\n",
892                         psz_path, p_sys->i_version, p_sys->url.psz_host,
893                         p_sys->url.i_port );
894         }
895         else
896         {
897             net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
898                         "GET %s HTTP/1.%d\r\nHost: %s\r\n",
899                         psz_path, p_sys->i_version, p_sys->url.psz_host );
900         }
901     }
902     /* User Agent */
903     net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "User-Agent: %s\r\n",
904                 p_sys->psz_user_agent );
905     /* Offset */
906     if( p_sys->i_version == 1 )
907     {
908         net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
909                     "Range: bytes="I64Fd"-\r\n", i_tell );
910     }
911
912     /* Authentification */
913     if( p_sys->psz_user && *p_sys->psz_user )
914     {
915         char *buf;
916         char *b64;
917
918         asprintf( &buf, "%s:%s", p_sys->psz_user,
919                    p_sys->psz_passwd ? p_sys->psz_passwd : "" );
920
921         b64 = vlc_b64_encode( buf );
922
923         net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
924                     "Authorization: Basic %s\r\n", b64 );
925         free( b64 );
926     }
927
928     /* ICY meta data request */
929     net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "Icy-MetaData: 1\r\n" );
930
931
932     if( p_sys->b_continuous && p_sys->i_version == 1 )
933     {
934         net_Printf( VLC_OBJECT( p_access ), p_sys->fd, pvs,
935                     "Connection: keep-alive\r\n" );
936     }
937     else
938     {
939         net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
940                     "Connection: Close\r\n");
941         p_sys->b_continuous = VLC_FALSE;
942     }
943
944     if( net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "\r\n" ) < 0 )
945     {
946         msg_Err( p_access, "failed to send request" );
947         Disconnect( p_access );
948         return VLC_EGENERIC;
949     }
950
951     /* Read Answer */
952     if( ( psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, pvs ) ) == NULL )
953     {
954         msg_Err( p_access, "failed to read answer" );
955         goto error;
956     }
957     if( !strncmp( psz, "HTTP/1.", 7 ) )
958     {
959         p_sys->psz_protocol = "HTTP";
960         p_sys->i_code = atoi( &psz[9] );
961     }
962     else if( !strncmp( psz, "ICY", 3 ) )
963     {
964         p_sys->psz_protocol = "ICY";
965         p_sys->i_code = atoi( &psz[4] );
966         p_sys->b_reconnect = VLC_TRUE;
967     }
968     else
969     {
970         msg_Err( p_access, "invalid HTTP reply '%s'", psz );
971         free( psz );
972         goto error;
973     }
974     msg_Dbg( p_access, "protocol '%s' answer code %d",
975              p_sys->psz_protocol, p_sys->i_code );
976     if( !strcmp( p_sys->psz_protocol, "ICY" ) )
977     {
978         p_sys->b_seekable = VLC_FALSE;
979     }
980     if( p_sys->i_code != 206 )
981     {
982         p_sys->b_seekable = VLC_FALSE;
983     }
984     if( p_sys->i_code >= 400 )
985     {
986         msg_Err( p_access, "error: %s", psz );
987         free( psz );
988         goto error;
989     }
990     free( psz );
991
992     for( ;; )
993     {
994         char *psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, pvs );
995         char *p;
996
997         if( psz == NULL )
998         {
999             msg_Err( p_access, "failed to read answer" );
1000             goto error;
1001         }
1002
1003         /* msg_Dbg( p_input, "Line=%s", psz ); */
1004         if( *psz == '\0' )
1005         {
1006             free( psz );
1007             break;
1008         }
1009
1010
1011         if( ( p = strchr( psz, ':' ) ) == NULL )
1012         {
1013             msg_Err( p_access, "malformed header line: %s", psz );
1014             free( psz );
1015             goto error;
1016         }
1017         *p++ = '\0';
1018         while( *p == ' ' ) p++;
1019
1020         if( !strcasecmp( psz, "Content-Length" ) )
1021         {
1022             if( p_sys->b_continuous )
1023             {
1024                 p_access->info.i_size = -1;
1025                 msg_Dbg( p_access, "this frame size="I64Fd, atoll(p ) );
1026                 p_sys->i_remaining = atoll( p );
1027             }
1028             else
1029             {
1030                 p_access->info.i_size = i_tell + atoll( p );
1031                 msg_Dbg( p_access, "stream size="I64Fd, p_access->info.i_size );
1032             }
1033         }
1034         else if( !strcasecmp( psz, "Location" ) )
1035         {
1036             if( p_sys->psz_location ) free( p_sys->psz_location );
1037             p_sys->psz_location = strdup( p );
1038         }
1039         else if( !strcasecmp( psz, "Content-Type" ) )
1040         {
1041             if( p_sys->psz_mime ) free( p_sys->psz_mime );
1042             p_sys->psz_mime = strdup( p );
1043             msg_Dbg( p_access, "Content-Type: %s", p_sys->psz_mime );
1044         }
1045         else if( !strcasecmp( psz, "Pragma" ) )
1046         {
1047             if( !strcasecmp( psz, "Pragma: features" ) )
1048                 p_sys->b_mms = VLC_TRUE;
1049             if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
1050             p_sys->psz_pragma = strdup( p );
1051             msg_Dbg( p_access, "Pragma: %s", p_sys->psz_pragma );
1052         }
1053         else if( !strcasecmp( psz, "Server" ) )
1054         {
1055             msg_Dbg( p_access, "Server: %s", p );
1056             if( !strncasecmp( p, "Icecast", 7 ) ||
1057                 !strncasecmp( p, "Nanocaster", 10 ) )
1058             {
1059                 /* Remember if this is Icecast
1060                  * we need to force demux in this case without breaking
1061                  *  autodetection */
1062
1063                 /* Let live 365 streams (nanocaster) piggyback on the icecast
1064                  * routine. They look very similar */
1065
1066                 p_sys->b_reconnect = VLC_TRUE;
1067                 p_sys->b_pace_control = VLC_FALSE;
1068                 p_sys->b_icecast = VLC_TRUE;
1069             }
1070         }
1071         else if( !strcasecmp( psz, "Transfer-Encoding" ) )
1072         {
1073             msg_Dbg( p_access, "Transfer-Encoding: %s", p );
1074             if( !strncasecmp( p, "chunked", 7 ) )
1075             {
1076                 p_sys->b_chunked = VLC_TRUE;
1077             }
1078         }
1079         else if( !strcasecmp( psz, "Icy-MetaInt" ) )
1080         {
1081             msg_Dbg( p_access, "Icy-MetaInt: %s", p );
1082             p_sys->i_icy_meta = atoi( p );
1083             if( p_sys->i_icy_meta < 0 )
1084                 p_sys->i_icy_meta = 0;
1085
1086             msg_Warn( p_access, "ICY metaint=%d", p_sys->i_icy_meta );
1087         }
1088         else if( !strcasecmp( psz, "Icy-Name" ) )
1089         {
1090             if( p_sys->psz_icy_name ) free( p_sys->psz_icy_name );
1091             p_sys->psz_icy_name = strdup( p );
1092             msg_Dbg( p_access, "Icy-Name: %s", p_sys->psz_icy_name );
1093
1094             p_sys->b_icecast = VLC_TRUE; /* be on the safeside. set it here as well. */
1095             p_sys->b_reconnect = VLC_TRUE;
1096             p_sys->b_pace_control = VLC_FALSE;
1097         }
1098         else if( !strcasecmp( psz, "Icy-Genre" ) )
1099         {
1100             if( p_sys->psz_icy_genre ) free( p_sys->psz_icy_genre );
1101             p_sys->psz_icy_genre = strdup( p );
1102             msg_Dbg( p_access, "Icy-Genre: %s", p_sys->psz_icy_genre );
1103         }
1104         else if( !strncasecmp( psz, "Icy-Notice", 10 ) )
1105         {
1106             msg_Dbg( p_access, "Icy-Notice: %s", p );
1107         }
1108         else if( !strncasecmp( psz, "icy-", 4 ) ||
1109                  !strncasecmp( psz, "ice-", 4 ) ||
1110                  !strncasecmp( psz, "x-audiocast", 11 ) )
1111         {
1112             msg_Dbg( p_access, "Meta-Info: %s: %s", psz, p );
1113         }
1114
1115         free( psz );
1116     }
1117     return VLC_SUCCESS;
1118
1119 error:
1120     Disconnect( p_access );
1121     return VLC_EGENERIC;
1122 }
1123
1124 /*****************************************************************************
1125  * Disconnect:
1126  *****************************************************************************/
1127 static void Disconnect( access_t *p_access )
1128 {
1129     access_sys_t *p_sys = p_access->p_sys;
1130
1131     if( p_sys->p_tls != NULL)
1132     {
1133         tls_ClientDelete( p_sys->p_tls );
1134         p_sys->p_tls = NULL;
1135         p_sys->p_vs = NULL;
1136     }
1137     if( p_sys->fd != -1)
1138     {
1139         net_Close(p_sys->fd);
1140         p_sys->fd = -1;
1141     }
1142     
1143 }