]> git.sesse.net Git - vlc/blob - modules/access/http.c
e2194c32a97fefdf2bb2ef17ba0fd72cf05f3f59
[vlc] / modules / access / http.c
1 /*****************************************************************************
2  * http.c: HTTP input module
3  *****************************************************************************
4  * Copyright (C) 2001-2005 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     if( vlc_UrlIsNotEncoded( p_access->psz_path ) )
231     {
232         psz = vlc_UrlEncode( p_access->psz_path );
233         if( psz == NULL )
234         {
235             free( p_sys );
236             return VLC_ENOMEM;
237         }
238
239         ParseURL( p_sys, psz );
240         free( psz );
241     }
242     else
243         ParseURL( p_sys, p_access->psz_path );
244
245     if( p_sys->url.psz_host == NULL || *p_sys->url.psz_host == '\0' )
246     {
247         msg_Warn( p_access, "invalid host" );
248         goto error;
249     }
250     if( !strncmp( p_access->psz_access, "https", 5 ) )
251     {
252         /* SSL over HTTP */
253         p_sys->b_ssl = VLC_TRUE;
254         if( p_sys->url.i_port <= 0 )
255             p_sys->url.i_port = 443;
256     }
257     else
258     {
259         if( p_sys->url.i_port <= 0 )
260             p_sys->url.i_port = 80;
261     }
262     if( !p_sys->psz_user || *p_sys->psz_user == '\0' )
263     {
264         p_sys->psz_user = var_CreateGetString( p_access, "http-user" );
265         p_sys->psz_passwd = var_CreateGetString( p_access, "http-pwd" );
266     }
267
268     /* Do user agent */
269     p_sys->psz_user_agent = var_CreateGetString( p_access, "http-user-agent" );
270
271     /* Check proxy */
272     psz = var_CreateGetString( p_access, "http-proxy" );
273     if( *psz )
274     {
275         p_sys->b_proxy = VLC_TRUE;
276         vlc_UrlParse( &p_sys->proxy, psz, 0 );
277     }
278     else
279     {
280         char *psz_proxy = getenv( "http_proxy" );
281         if( psz_proxy && *psz_proxy )
282         {
283             p_sys->b_proxy = VLC_TRUE;
284             vlc_UrlParse( &p_sys->proxy, psz_proxy, 0 );
285         }
286         if( psz_proxy )
287             free( psz_proxy );
288     }
289     free( psz );
290
291     if( p_sys->b_proxy )
292     {
293         if( p_sys->proxy.psz_host == NULL || *p_sys->proxy.psz_host == '\0' )
294         {
295             msg_Warn( p_access, "invalid proxy host" );
296             goto error;
297         }
298         if( p_sys->proxy.i_port <= 0 )
299         {
300             p_sys->proxy.i_port = 80;
301         }
302     }
303
304     msg_Dbg( p_access, "http: server='%s' port=%d file='%s",
305              p_sys->url.psz_host, p_sys->url.i_port, p_sys->url.psz_path );
306     if( p_sys->b_proxy )
307     {
308         msg_Dbg( p_access, "      proxy %s:%d", p_sys->proxy.psz_host,
309                  p_sys->proxy.i_port );
310     }
311     if( p_sys->psz_user && *p_sys->psz_user )
312     {
313         msg_Dbg( p_access, "      user='%s', pwd='%s'",
314                  p_sys->psz_user, p_sys->psz_passwd );
315     }
316
317     p_sys->b_reconnect = var_CreateGetBool( p_access, "http-reconnect" );
318     p_sys->b_continuous = var_CreateGetBool( p_access, "http-continuous" );
319
320     /* Connect */
321     if( Connect( p_access, 0 ) )
322     {
323         /* Retry with http 1.0 */
324         p_sys->i_version = 0;
325
326         if( p_access->b_die ||
327             Connect( p_access, 0 ) )
328         {
329             goto error;
330         }
331     }
332
333     if( ( p_sys->i_code == 301 || p_sys->i_code == 302 ||
334           p_sys->i_code == 303 || p_sys->i_code == 307 ) &&
335         p_sys->psz_location && *p_sys->psz_location )
336     {
337         playlist_t * p_playlist;
338         input_item_t *p_input_item;
339
340         msg_Dbg( p_access, "redirection to %s", p_sys->psz_location );
341
342         p_playlist = vlc_object_find( p_access, VLC_OBJECT_PLAYLIST,
343                                       FIND_ANYWHERE );
344         if( !p_playlist )
345         {
346             msg_Err( p_access, "redirection failed: can't find playlist" );
347             goto error;
348         }
349
350         /* Change the uri */
351         vlc_mutex_lock( &p_playlist->object_lock );
352         p_input_item = &p_playlist->status.p_item->input;
353         vlc_mutex_lock( &p_input_item->lock );
354         free( p_input_item->psz_uri );
355         free( p_access->psz_path );
356         p_input_item->psz_uri = strdup( p_sys->psz_location );
357         p_access->psz_path = strdup( p_sys->psz_location );
358         vlc_mutex_unlock( &p_input_item->lock );
359         vlc_mutex_unlock( &p_playlist->object_lock );
360         vlc_object_release( p_playlist );
361
362         /* Clean up current Open() run */
363         vlc_UrlClean( &p_sys->url );
364         vlc_UrlClean( &p_sys->proxy );
365         if( p_sys->psz_mime ) free( p_sys->psz_mime );
366         if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
367         if( p_sys->psz_location ) free( p_sys->psz_location );
368         if( p_sys->psz_user_agent ) free( p_sys->psz_user_agent );
369         if( p_sys->psz_user ) free( p_sys->psz_user );
370         if( p_sys->psz_passwd ) free( p_sys->psz_passwd );
371
372         Disconnect( p_access );
373         free( p_sys );
374
375         /* Do new Open() run with new data */
376         return Open( p_this );
377     }
378
379     if( p_sys->b_mms )
380     {
381         msg_Dbg( p_access, "This is actually a live mms server, BAIL" );
382         goto error;
383     }
384
385     if( !strcmp( p_sys->psz_protocol, "ICY" ) || p_sys->b_icecast )
386     {
387         if( p_sys->psz_mime && strcasecmp( p_sys->psz_mime, "application/ogg" ) )
388         { 
389             if( !strcasecmp( p_sys->psz_mime, "video/nsv" ) ||
390                    !strcasecmp( p_sys->psz_mime, "video/nsa") )
391                 p_access->psz_demux = strdup( "nsv" );
392             else if( !strcasecmp( p_sys->psz_mime, "audio/aac" ) ||
393                      !strcasecmp( p_sys->psz_mime, "audio/aacp" ) )
394                 p_access->psz_demux = strdup( "m4a" );
395             else if( !strcasecmp( p_sys->psz_mime, "audio/mpeg" ) )
396                 p_access->psz_demux = strdup( "mp3" );
397
398             msg_Info( p_access, "Raw-audio server found, %s demuxer selected",
399                       p_access->psz_demux );
400
401 #if 0       /* Doesn't work really well because of the pre-buffering in
402              * shoutcast servers (the buffer content will be sent as fast as
403              * possible). */
404             p_sys->b_pace_control = VLC_FALSE;
405 #endif
406         }
407         else if( !p_sys->psz_mime )
408         {
409              /* Shoutcast */
410              p_access->psz_demux = strdup( "mp3" );
411         }
412         /* else probably Ogg Vorbis */
413     }
414
415     if( p_sys->b_reconnect ) msg_Dbg( p_access, "auto re-connect enabled" );
416
417     /* PTS delay */
418     var_Create( p_access, "http-caching", VLC_VAR_INTEGER |VLC_VAR_DOINHERIT );
419
420     return VLC_SUCCESS;
421
422 error:
423     vlc_UrlClean( &p_sys->url );
424     vlc_UrlClean( &p_sys->proxy );
425     if( p_sys->psz_mime ) free( p_sys->psz_mime );
426     if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
427     if( p_sys->psz_location ) free( p_sys->psz_location );
428     if( p_sys->psz_user_agent ) free( p_sys->psz_user_agent );
429     if( p_sys->psz_user ) free( p_sys->psz_user );
430     if( p_sys->psz_passwd ) free( p_sys->psz_passwd );
431
432     Disconnect( p_access );
433     free( p_sys );
434     return VLC_EGENERIC;
435 }
436
437 /*****************************************************************************
438  * Close:
439  *****************************************************************************/
440 static void Close( vlc_object_t *p_this )
441 {
442     access_t     *p_access = (access_t*)p_this;
443     access_sys_t *p_sys = p_access->p_sys;
444
445     vlc_UrlClean( &p_sys->url );
446     vlc_UrlClean( &p_sys->proxy );
447
448     if( p_sys->psz_user ) free( p_sys->psz_user );
449     if( p_sys->psz_passwd ) free( p_sys->psz_passwd );
450
451     if( p_sys->psz_mime ) free( p_sys->psz_mime );
452     if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
453     if( p_sys->psz_location ) free( p_sys->psz_location );
454
455     if( p_sys->psz_icy_name ) free( p_sys->psz_icy_name );
456     if( p_sys->psz_icy_genre ) free( p_sys->psz_icy_genre );
457     if( p_sys->psz_icy_title ) free( p_sys->psz_icy_title );
458
459     if( p_sys->psz_user_agent ) free( p_sys->psz_user_agent );
460
461     Disconnect( p_access );
462     free( p_sys );
463 }
464
465 /*****************************************************************************
466  * Read: Read up to i_len bytes from the http connection and place in
467  * p_buffer. Return the actual number of bytes read
468  *****************************************************************************/
469 static int ReadICYMeta( access_t *p_access );
470 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
471 {
472     access_sys_t *p_sys = p_access->p_sys;
473     int i_read;
474
475     if( p_sys->fd < 0 )
476     {
477         p_access->info.b_eof = VLC_TRUE;
478         return 0;
479     }
480
481     if( p_access->info.i_size > 0 &&
482         i_len + p_access->info.i_pos > p_access->info.i_size )
483     {
484         if( ( i_len = p_access->info.i_size - p_access->info.i_pos ) == 0 )
485         {
486             p_access->info.b_eof = VLC_TRUE;
487             return 0;
488         }
489     }
490
491     if( p_sys->b_chunked )
492     {
493         if( p_sys->i_chunk < 0 )
494         {
495             p_access->info.b_eof = VLC_TRUE;
496             return 0;
497         }
498
499         if( p_sys->i_chunk <= 0 )
500         {
501             char *psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, p_sys->p_vs );
502             /* read the chunk header */
503             if( psz == NULL )
504             {
505                 msg_Dbg( p_access, "failed reading chunk-header line" );
506                 return -1;
507             }
508             p_sys->i_chunk = strtoll( psz, NULL, 16 );
509             free( psz );
510
511             if( p_sys->i_chunk <= 0 )   /* eof */
512             {
513                 p_sys->i_chunk = -1;
514                 p_access->info.b_eof = VLC_TRUE;
515                 return 0;
516             }
517         }
518
519         if( i_len > p_sys->i_chunk )
520         {
521             i_len = p_sys->i_chunk;
522         }
523     }
524
525     if( p_sys->b_continuous && i_len > p_sys->i_remaining )
526     {
527         /* Only ask for the remaining length */
528         int i_new_len = p_sys->i_remaining;
529         if( i_new_len == 0 )
530         {
531             Request( p_access, 0 );
532             i_read = Read( p_access, p_buffer, i_len );
533             return i_read;
534         }
535         i_len = i_new_len;
536     }
537
538     if( p_sys->i_icy_meta > 0 && p_access->info.i_pos > 0 )
539     {
540         int64_t i_next = p_sys->i_icy_meta -
541                                     p_access->info.i_pos % p_sys->i_icy_meta;
542
543         if( i_next == p_sys->i_icy_meta )
544         {
545             if( ReadICYMeta( p_access ) )
546             {
547                 p_access->info.b_eof = VLC_TRUE;
548                 return -1;
549             }
550         }
551         if( i_len > i_next )
552             i_len = i_next;
553     }
554
555     i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs, p_buffer, i_len, VLC_FALSE );
556
557     if( i_read > 0 )
558     {
559         p_access->info.i_pos += i_read;
560
561         if( p_sys->b_chunked )
562         {
563             p_sys->i_chunk -= i_read;
564             if( p_sys->i_chunk <= 0 )
565             {
566                 /* read the empty line */
567                 char *psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, p_sys->p_vs );
568                 if( psz ) free( psz );
569             }
570         }
571     }
572     else if( i_read == 0 )
573     {
574         /*
575          * I very much doubt that this will work.
576          * If i_read == 0, the connection *IS* dead, so the only
577          * sensible thing to do is Disconnect() and then retry.
578          * Otherwise, I got recv() completely wrong. -- Courmisch
579          */
580         if( p_sys->b_continuous )
581         {
582             Request( p_access, 0 );
583             p_sys->b_continuous = VLC_FALSE;
584             i_read = Read( p_access, p_buffer, i_len );
585             p_sys->b_continuous = VLC_TRUE;
586         }
587         Disconnect( p_access );
588         if( p_sys->b_reconnect )
589         {
590             msg_Dbg( p_access, "got disconnected, trying to reconnect" );
591             if( Connect( p_access, p_access->info.i_pos ) )
592             {
593                 msg_Dbg( p_access, "reconnection failed" );
594             }
595             else
596             {
597                 p_sys->b_reconnect = VLC_FALSE;
598                 i_read = Read( p_access, p_buffer, i_len );
599                 p_sys->b_reconnect = VLC_TRUE;
600             }
601         }
602
603         if( i_read == 0 ) p_access->info.b_eof = VLC_TRUE;
604     }
605
606     if( p_sys->b_continuous )
607     {
608         p_sys->i_remaining -= i_read;
609     }
610
611     return i_read;
612 }
613
614 static int ReadICYMeta( access_t *p_access )
615 {
616     access_sys_t *p_sys = p_access->p_sys;
617
618     uint8_t buffer[1];
619     char *psz_meta;
620     int i_read;
621     char *p;
622
623     /* Read meta data length */
624     i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs, buffer, 1,
625                        VLC_TRUE );
626     if( i_read <= 0 )
627         return VLC_EGENERIC;
628
629
630     if( buffer[0] <= 0 )
631         return VLC_SUCCESS;
632
633     msg_Dbg( p_access, "ICY meta size=%d", buffer[0] * 16);
634
635     psz_meta = malloc( buffer[0] * 16 + 1 );
636     i_read = net_Read( p_access, p_sys->fd, p_sys->p_vs,
637                        psz_meta, buffer[0] * 16, VLC_TRUE );
638
639     if( i_read != buffer[0] * 16 )
640         return VLC_EGENERIC;
641
642     psz_meta[buffer[0]*16 + 1] = '\0'; /* Just in case */
643
644     msg_Dbg( p_access, "icy-meta=%s", psz_meta );
645
646     /* Now parse the meta */
647     /* Look for StreamTitle= */
648     p = strcasestr( psz_meta, "StreamTitle=" );
649     if( p )
650     {
651         p += strlen( "StreamTitle=" );
652         if( *p == '\'' || *p == '"' )
653         {
654             char *psz = strchr( &p[1], p[0] );
655             if( !psz )
656                 psz = strchr( &p[1], ';' );
657
658             if( psz ) *psz = '\0';
659         }
660         else
661         {
662             char *psz = strchr( &p[1], ';' );
663             if( psz ) *psz = '\0';
664         }
665
666         if( p_sys->psz_icy_title ) free( p_sys->psz_icy_title );
667
668         p_sys->psz_icy_title = strdup( &p[1] );
669
670         p_access->info.i_update |= INPUT_UPDATE_META;
671     }
672
673     free( psz_meta );
674
675     msg_Dbg( p_access, "New Title=%s", p_sys->psz_icy_title );
676
677     return VLC_SUCCESS;
678 }
679
680 /*****************************************************************************
681  * Seek: close and re-open a connection at the right place
682  *****************************************************************************/
683 static int Seek( access_t *p_access, int64_t i_pos )
684 {
685     msg_Dbg( p_access, "trying to seek to "I64Fd, i_pos );
686
687     Disconnect( p_access );
688
689     if( Connect( p_access, i_pos ) )
690     {
691         msg_Err( p_access, "seek failed" );
692         p_access->info.b_eof = VLC_TRUE;
693         return VLC_EGENERIC;
694     }
695     return VLC_SUCCESS;
696 }
697
698 /*****************************************************************************
699  * Control:
700  *****************************************************************************/
701 static int Control( access_t *p_access, int i_query, va_list args )
702 {
703     access_sys_t *p_sys = p_access->p_sys;
704     vlc_bool_t   *pb_bool;
705     int          *pi_int;
706     int64_t      *pi_64;
707     vlc_meta_t **pp_meta;
708
709     switch( i_query )
710     {
711         /* */
712         case ACCESS_CAN_SEEK:
713             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
714             *pb_bool = p_sys->b_seekable;
715             break;
716         case ACCESS_CAN_FASTSEEK:
717             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
718             *pb_bool = VLC_FALSE;
719             break;
720         case ACCESS_CAN_PAUSE:
721         case ACCESS_CAN_CONTROL_PACE:
722             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
723
724 #if 0       /* Disable for now until we have a clock synchro algo
725              * which works with something else than MPEG over UDP */
726             *pb_bool = p_sys->b_pace_control;
727 #endif
728             *pb_bool = VLC_TRUE;
729             break;
730
731         /* */
732         case ACCESS_GET_MTU:
733             pi_int = (int*)va_arg( args, int * );
734             *pi_int = 0;
735             break;
736
737         case ACCESS_GET_PTS_DELAY:
738             pi_64 = (int64_t*)va_arg( args, int64_t * );
739             *pi_64 = (int64_t)var_GetInteger( p_access, "http-caching" ) * 1000;
740             break;
741
742         /* */
743         case ACCESS_SET_PAUSE_STATE:
744             break;
745
746         case ACCESS_GET_META:
747             pp_meta = (vlc_meta_t**)va_arg( args, vlc_meta_t** );
748             *pp_meta = vlc_meta_New();
749             msg_Dbg( p_access, "GET META %s %s %s",
750                      p_sys->psz_icy_name, p_sys->psz_icy_genre, p_sys->psz_icy_title );
751             if( p_sys->psz_icy_name )
752                 vlc_meta_Add( *pp_meta, VLC_META_DESCRIPTION,
753                               p_sys->psz_icy_name );
754             if( p_sys->psz_icy_genre )
755                 vlc_meta_Add( *pp_meta, VLC_META_GENRE,
756                               p_sys->psz_icy_genre );
757             if( p_sys->psz_icy_title )
758                 vlc_meta_Add( *pp_meta, VLC_META_TITLE,
759                               p_sys->psz_icy_title );
760             break;
761
762         case ACCESS_GET_TITLE_INFO:
763         case ACCESS_SET_TITLE:
764         case ACCESS_SET_SEEKPOINT:
765         case ACCESS_SET_PRIVATE_ID_STATE:
766             return VLC_EGENERIC;
767
768         default:
769             msg_Warn( p_access, "unimplemented query in control" );
770             return VLC_EGENERIC;
771
772     }
773     return VLC_SUCCESS;
774 }
775
776 /*****************************************************************************
777  * ParseURL: extract user:password
778  *****************************************************************************/
779 static void ParseURL( access_sys_t *p_sys, char *psz_url )
780 {
781     char *psz_dup = strdup( psz_url );
782     char *p = psz_dup;
783     char *psz;
784
785     /* Syntax //[user:password]@<hostname>[:<port>][/<path>] */
786     while( *p == '/' )
787     {
788         p++;
789     }
790     psz = p;
791
792     /* Parse auth */
793     if( ( p = strchr( psz, '@' ) ) )
794     {
795         char *comma;
796
797         *p++ = '\0';
798         comma = strchr( psz, ':' );
799
800         /* Retreive user:password */
801         if( comma )
802         {
803             *comma++ = '\0';
804
805             p_sys->psz_user = strdup( psz );
806             p_sys->psz_passwd = strdup( comma );
807         }
808         else
809         {
810             p_sys->psz_user = strdup( psz );
811         }
812     }
813     else
814     {
815         p = psz;
816     }
817
818     /* Parse uri */
819     vlc_UrlParse( &p_sys->url, p, 0 );
820
821     free( psz_dup );
822 }
823
824 /*****************************************************************************
825  * Connect:
826  *****************************************************************************/
827 static int Connect( access_t *p_access, int64_t i_tell )
828 {
829     access_sys_t   *p_sys = p_access->p_sys;
830     vlc_url_t      srv = p_sys->b_proxy ? p_sys->proxy : p_sys->url;
831
832     /* Clean info */
833     if( p_sys->psz_location ) free( p_sys->psz_location );
834     if( p_sys->psz_mime ) free( p_sys->psz_mime );
835     if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
836
837     if( p_sys->psz_icy_genre ) free( p_sys->psz_icy_genre );
838     if( p_sys->psz_icy_name ) free( p_sys->psz_icy_name );
839     if( p_sys->psz_icy_title ) free( p_sys->psz_icy_title );
840
841
842     p_sys->psz_location = NULL;
843     p_sys->psz_mime = NULL;
844     p_sys->psz_pragma = NULL;
845     p_sys->b_mms = VLC_FALSE;
846     p_sys->b_chunked = VLC_FALSE;
847     p_sys->i_chunk = 0;
848     p_sys->i_icy_meta = 0;
849     p_sys->psz_icy_name = NULL;
850     p_sys->psz_icy_genre = NULL;
851     p_sys->psz_icy_title = NULL;
852
853     p_access->info.i_size = 0;
854     p_access->info.i_pos  = i_tell;
855     p_access->info.b_eof  = VLC_FALSE;
856
857
858     /* Open connection */
859     p_sys->fd = net_OpenTCP( p_access, srv.psz_host, srv.i_port );
860     if( p_sys->fd < 0 )
861     {
862         msg_Err( p_access, "cannot connect to %s:%d", srv.psz_host, srv.i_port );
863         return VLC_EGENERIC;
864     }
865
866     /* Initialize TLS/SSL session */
867     /* FIXME: support proxy CONNECT for HTTP/SSL */
868     if( p_sys->b_ssl == VLC_TRUE )
869     {
870         if( p_sys->b_proxy )
871         {
872             msg_Err( p_access, "HTTP/SSL through HTTP proxy not supported yet" );
873             Disconnect( p_access );
874             return VLC_EGENERIC;
875         }
876
877         p_sys->p_tls = tls_ClientCreate( VLC_OBJECT(p_access), p_sys->fd, NULL );
878         if( p_sys->p_tls == NULL )
879         {
880             msg_Err( p_access, "cannot establish HTTP/SSL session" );
881             Disconnect( p_access );
882             return VLC_EGENERIC;
883         }
884         p_sys->p_vs = &p_sys->p_tls->sock;
885     }
886
887     return Request( p_access,i_tell );
888 }
889
890
891 static int Request( access_t *p_access, int64_t i_tell )
892 {
893     access_sys_t   *p_sys = p_access->p_sys;
894     char           *psz ;
895     v_socket_t     *pvs = p_sys->p_vs;
896
897     if( p_sys->b_proxy )
898     {
899         if( p_sys->url.psz_path )
900         {
901             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
902                         "GET http://%s:%d%s HTTP/1.%d\r\n",
903                         p_sys->url.psz_host, p_sys->url.i_port,
904                         p_sys->url.psz_path, p_sys->i_version );
905         }
906         else
907         {
908             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
909                         "GET http://%s:%d/ HTTP/1.%d\r\n",
910                         p_sys->url.psz_host, p_sys->url.i_port,
911                         p_sys->i_version );
912         }
913     }
914     else
915     {
916         char *psz_path = p_sys->url.psz_path;
917         if( !psz_path || !*psz_path )
918         {
919             psz_path = "/";
920         }
921         if( p_sys->url.i_port != 80)
922         {
923             net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
924                         "GET %s HTTP/1.%d\r\nHost: %s:%d\r\n",
925                         psz_path, p_sys->i_version, p_sys->url.psz_host,
926                         p_sys->url.i_port );
927         }
928         else
929         {
930             net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
931                         "GET %s HTTP/1.%d\r\nHost: %s\r\n",
932                         psz_path, p_sys->i_version, p_sys->url.psz_host );
933         }
934     }
935     /* User Agent */
936     net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "User-Agent: %s\r\n",
937                 p_sys->psz_user_agent );
938     /* Offset */
939     if( p_sys->i_version == 1 )
940     {
941         net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
942                     "Range: bytes="I64Fd"-\r\n", i_tell );
943     }
944
945     /* Authentification */
946     if( p_sys->psz_user && *p_sys->psz_user )
947     {
948         char *buf;
949         char *b64;
950
951         asprintf( &buf, "%s:%s", p_sys->psz_user,
952                    p_sys->psz_passwd ? p_sys->psz_passwd : "" );
953
954         b64 = vlc_b64_encode( buf );
955         free( buf );
956
957         net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
958                     "Authorization: Basic %s\r\n", b64 );
959         free( b64 );
960     }
961
962     /* ICY meta data request */
963     net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "Icy-MetaData: 1\r\n" );
964
965
966     if( p_sys->b_continuous && p_sys->i_version == 1 )
967     {
968         net_Printf( VLC_OBJECT( p_access ), p_sys->fd, pvs,
969                     "Connection: keep-alive\r\n" );
970     }
971     else
972     {
973         net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs,
974                     "Connection: Close\r\n");
975         p_sys->b_continuous = VLC_FALSE;
976     }
977
978     if( net_Printf( VLC_OBJECT(p_access), p_sys->fd, pvs, "\r\n" ) < 0 )
979     {
980         msg_Err( p_access, "failed to send request" );
981         Disconnect( p_access );
982         return VLC_EGENERIC;
983     }
984
985     /* Read Answer */
986     if( ( psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, pvs ) ) == NULL )
987     {
988         msg_Err( p_access, "failed to read answer" );
989         goto error;
990     }
991     if( !strncmp( psz, "HTTP/1.", 7 ) )
992     {
993         p_sys->psz_protocol = "HTTP";
994         p_sys->i_code = atoi( &psz[9] );
995     }
996     else if( !strncmp( psz, "ICY", 3 ) )
997     {
998         p_sys->psz_protocol = "ICY";
999         p_sys->i_code = atoi( &psz[4] );
1000         p_sys->b_reconnect = VLC_TRUE;
1001     }
1002     else
1003     {
1004         msg_Err( p_access, "invalid HTTP reply '%s'", psz );
1005         free( psz );
1006         goto error;
1007     }
1008     msg_Dbg( p_access, "protocol '%s' answer code %d",
1009              p_sys->psz_protocol, p_sys->i_code );
1010     if( !strcmp( p_sys->psz_protocol, "ICY" ) )
1011     {
1012         p_sys->b_seekable = VLC_FALSE;
1013     }
1014     if( p_sys->i_code != 206 )
1015     {
1016         p_sys->b_seekable = VLC_FALSE;
1017     }
1018     if( p_sys->i_code >= 400 )
1019     {
1020         msg_Err( p_access, "error: %s", psz );
1021         free( psz );
1022         goto error;
1023     }
1024     free( psz );
1025
1026     for( ;; )
1027     {
1028         char *psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, pvs );
1029         char *p;
1030
1031         if( psz == NULL )
1032         {
1033             msg_Err( p_access, "failed to read answer" );
1034             goto error;
1035         }
1036
1037         /* msg_Dbg( p_input, "Line=%s", psz ); */
1038         if( *psz == '\0' )
1039         {
1040             free( psz );
1041             break;
1042         }
1043
1044
1045         if( ( p = strchr( psz, ':' ) ) == NULL )
1046         {
1047             msg_Err( p_access, "malformed header line: %s", psz );
1048             free( psz );
1049             goto error;
1050         }
1051         *p++ = '\0';
1052         while( *p == ' ' ) p++;
1053
1054         if( !strcasecmp( psz, "Content-Length" ) )
1055         {
1056             if( p_sys->b_continuous )
1057             {
1058                 p_access->info.i_size = -1;
1059                 msg_Dbg( p_access, "this frame size="I64Fd, atoll(p ) );
1060                 p_sys->i_remaining = atoll( p );
1061             }
1062             else
1063             {
1064                 p_access->info.i_size = i_tell + atoll( p );
1065                 msg_Dbg( p_access, "stream size="I64Fd, p_access->info.i_size );
1066             }
1067         }
1068         else if( !strcasecmp( psz, "Location" ) )
1069         {
1070             if( p_sys->psz_location ) free( p_sys->psz_location );
1071             p_sys->psz_location = strdup( p );
1072         }
1073         else if( !strcasecmp( psz, "Content-Type" ) )
1074         {
1075             if( p_sys->psz_mime ) free( p_sys->psz_mime );
1076             p_sys->psz_mime = strdup( p );
1077             msg_Dbg( p_access, "Content-Type: %s", p_sys->psz_mime );
1078         }
1079         else if( !strcasecmp( psz, "Pragma" ) )
1080         {
1081             if( !strcasecmp( psz, "Pragma: features" ) )
1082                 p_sys->b_mms = VLC_TRUE;
1083             if( p_sys->psz_pragma ) free( p_sys->psz_pragma );
1084             p_sys->psz_pragma = strdup( p );
1085             msg_Dbg( p_access, "Pragma: %s", p_sys->psz_pragma );
1086         }
1087         else if( !strcasecmp( psz, "Server" ) )
1088         {
1089             msg_Dbg( p_access, "Server: %s", p );
1090             if( !strncasecmp( p, "Icecast", 7 ) ||
1091                 !strncasecmp( p, "Nanocaster", 10 ) )
1092             {
1093                 /* Remember if this is Icecast
1094                  * we need to force demux in this case without breaking
1095                  *  autodetection */
1096
1097                 /* Let live 365 streams (nanocaster) piggyback on the icecast
1098                  * routine. They look very similar */
1099
1100                 p_sys->b_reconnect = VLC_TRUE;
1101                 p_sys->b_pace_control = VLC_FALSE;
1102                 p_sys->b_icecast = VLC_TRUE;
1103             }
1104         }
1105         else if( !strcasecmp( psz, "Transfer-Encoding" ) )
1106         {
1107             msg_Dbg( p_access, "Transfer-Encoding: %s", p );
1108             if( !strncasecmp( p, "chunked", 7 ) )
1109             {
1110                 p_sys->b_chunked = VLC_TRUE;
1111             }
1112         }
1113         else if( !strcasecmp( psz, "Icy-MetaInt" ) )
1114         {
1115             msg_Dbg( p_access, "Icy-MetaInt: %s", p );
1116             p_sys->i_icy_meta = atoi( p );
1117             if( p_sys->i_icy_meta < 0 )
1118                 p_sys->i_icy_meta = 0;
1119
1120             msg_Warn( p_access, "ICY metaint=%d", p_sys->i_icy_meta );
1121         }
1122         else if( !strcasecmp( psz, "Icy-Name" ) )
1123         {
1124             if( p_sys->psz_icy_name ) free( p_sys->psz_icy_name );
1125             p_sys->psz_icy_name = strdup( p );
1126             msg_Dbg( p_access, "Icy-Name: %s", p_sys->psz_icy_name );
1127
1128             p_sys->b_icecast = VLC_TRUE; /* be on the safeside. set it here as well. */
1129             p_sys->b_reconnect = VLC_TRUE;
1130             p_sys->b_pace_control = VLC_FALSE;
1131         }
1132         else if( !strcasecmp( psz, "Icy-Genre" ) )
1133         {
1134             if( p_sys->psz_icy_genre ) free( p_sys->psz_icy_genre );
1135             p_sys->psz_icy_genre = strdup( p );
1136             msg_Dbg( p_access, "Icy-Genre: %s", p_sys->psz_icy_genre );
1137         }
1138         else if( !strncasecmp( psz, "Icy-Notice", 10 ) )
1139         {
1140             msg_Dbg( p_access, "Icy-Notice: %s", p );
1141         }
1142         else if( !strncasecmp( psz, "icy-", 4 ) ||
1143                  !strncasecmp( psz, "ice-", 4 ) ||
1144                  !strncasecmp( psz, "x-audiocast", 11 ) )
1145         {
1146             msg_Dbg( p_access, "Meta-Info: %s: %s", psz, p );
1147         }
1148
1149         free( psz );
1150     }
1151     return VLC_SUCCESS;
1152
1153 error:
1154     Disconnect( p_access );
1155     return VLC_EGENERIC;
1156 }
1157
1158 /*****************************************************************************
1159  * Disconnect:
1160  *****************************************************************************/
1161 static void Disconnect( access_t *p_access )
1162 {
1163     access_sys_t *p_sys = p_access->p_sys;
1164
1165     if( p_sys->p_tls != NULL)
1166     {
1167         tls_ClientDelete( p_sys->p_tls );
1168         p_sys->p_tls = NULL;
1169         p_sys->p_vs = NULL;
1170     }
1171     if( p_sys->fd != -1)
1172     {
1173         net_Close(p_sys->fd);
1174         p_sys->fd = -1;
1175     }
1176     
1177 }