]> git.sesse.net Git - vlc/blob - modules/control/http/http.c
Find the playlist once *before* starting.
[vlc] / modules / control / http / http.c
1 /*****************************************************************************
2  * http.c : HTTP/HTTPS Remote control interface
3  *****************************************************************************
4  * Copyright (C) 2001-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@netcourrier.com>
8  *          Laurent Aimar <fenrir@via.ecp.fr>
9  *          Christophe Massiot <massiot@via.ecp.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #include "http.h"
27
28 /*****************************************************************************
29  * Module descriptor
30  *****************************************************************************/
31 static int  Open ( vlc_object_t * );
32 static void Close( vlc_object_t * );
33
34 #define HOST_TEXT N_( "Host address" )
35 #define HOST_LONGTEXT N_( \
36     "Address and port the HTTP interface will listen on. It defaults to " \
37     "all network interfaces (0.0.0.0)." \
38     " If you want the HTTP interface to be available only on the local " \
39     "machine, enter 127.0.0.1" )
40 #define SRC_TEXT N_( "Source directory" )
41 #define SRC_LONGTEXT N_( "Source directory" )
42 #define CHARSET_TEXT N_( "Charset" )
43 #define CHARSET_LONGTEXT N_( \
44         "Charset declared in Content-Type header (default UTF-8)." )
45 #define HANDLERS_TEXT N_( "Handlers" )
46 #define HANDLERS_LONGTEXT N_( \
47         "List of handler extensions and executable paths (for instance: " \
48         "php=/usr/bin/php,pl=/usr/bin/perl)." )
49 #define ART_TEXT N_( "Export album art as /art." )
50 #define ART_LONGTEXT N_( \
51         "Allow exporting album art for current playlist items at the " \
52         "/art and /art?id=<id> URLs." )
53 #define CERT_TEXT N_( "Certificate file" )
54 #define CERT_LONGTEXT N_( "HTTP interface x509 PEM certificate file " \
55                           "(enables SSL)." )
56 #define KEY_TEXT N_( "Private key file" )
57 #define KEY_LONGTEXT N_( "HTTP interface x509 PEM private key file." )
58 #define CA_TEXT N_( "Root CA file" )
59 #define CA_LONGTEXT N_( "HTTP interface x509 PEM trusted root CA " \
60                         "certificates file." )
61 #define CRL_TEXT N_( "CRL file" )
62 #define CRL_LONGTEXT N_( "HTTP interace Certificates Revocation List file." )
63
64 vlc_module_begin();
65     set_shortname( _("HTTP"));
66     set_description( _("HTTP remote control interface") );
67     set_category( CAT_INTERFACE );
68     set_subcategory( SUBCAT_INTERFACE_MAIN );
69         add_string ( "http-host", NULL, NULL, HOST_TEXT, HOST_LONGTEXT, VLC_TRUE );
70         add_string ( "http-src",  NULL, NULL, SRC_TEXT,  SRC_LONGTEXT,  VLC_TRUE );
71         add_string ( "http-charset", "UTF-8", NULL, CHARSET_TEXT, CHARSET_LONGTEXT, VLC_TRUE );
72 #if defined( HAVE_FORK ) || defined( WIN32 )
73         add_string ( "http-handlers", NULL, NULL, HANDLERS_TEXT, HANDLERS_LONGTEXT, VLC_TRUE );
74 #endif
75         add_bool   ( "http-album-art", VLC_FALSE, NULL, ART_TEXT, ART_LONGTEXT, VLC_TRUE );
76         set_section( N_("HTTP SSL" ), 0 );
77         add_string ( "http-intf-cert", NULL, NULL, CERT_TEXT, CERT_LONGTEXT, VLC_TRUE );
78         add_string ( "http-intf-key",  NULL, NULL, KEY_TEXT,  KEY_LONGTEXT,  VLC_TRUE );
79         add_string ( "http-intf-ca",   NULL, NULL, CA_TEXT,   CA_LONGTEXT,   VLC_TRUE );
80         add_string ( "http-intf-crl",  NULL, NULL, CRL_TEXT,  CRL_LONGTEXT,  VLC_TRUE );
81     set_capability( "interface", 0 );
82     set_callbacks( Open, Close );
83 vlc_module_end();
84
85
86 /*****************************************************************************
87  * Local prototypes
88  *****************************************************************************/
89 static void Run          ( intf_thread_t *p_intf );
90 int  E_(ArtCallback)( httpd_handler_sys_t *p_args,
91                           httpd_handler_t *p_handler, char *_p_url,
92                           uint8_t *_p_request, int i_type,
93                           uint8_t *_p_in, int i_in,
94                           char *psz_remote_addr, char *psz_remote_host,
95                           uint8_t **pp_data, int *pi_data );
96
97 /*****************************************************************************
98  * Local functions
99  *****************************************************************************/
100 #if !defined(__APPLE__) && !defined(SYS_BEOS) && !defined(WIN32)
101 static int DirectoryCheck( const char *psz_dir )
102 {
103     DIR           *p_dir;
104
105 #ifdef HAVE_SYS_STAT_H
106     struct stat   stat_info;
107
108     if( ( utf8_stat( psz_dir, &stat_info ) == -1 )
109       || !S_ISDIR( stat_info.st_mode ) )
110     {
111         return VLC_EGENERIC;
112     }
113 #endif
114
115     if( ( p_dir = utf8_opendir( psz_dir ) ) == NULL )
116     {
117         return VLC_EGENERIC;
118     }
119     closedir( p_dir );
120
121     return VLC_SUCCESS;
122 }
123 #endif
124
125
126 /*****************************************************************************
127  * Activate: initialize and create stuff
128  *****************************************************************************/
129 static int Open( vlc_object_t *p_this )
130 {
131     intf_thread_t *p_intf = (intf_thread_t*)p_this;
132     intf_sys_t    *p_sys;
133     char          *psz_address;
134     const char    *psz_cert = NULL, *psz_key = NULL, *psz_ca = NULL,
135                   *psz_crl = NULL;
136     int           i_port       = 0;
137     char          *psz_src;
138
139     psz_address = var_GetNonEmptyString(p_intf->p_libvlc, "http-host");
140     if( psz_address != NULL )
141     {
142         char *psz_parser = strchr( psz_address, ':' );
143         if( psz_parser )
144         {
145             *psz_parser++ = '\0';
146             i_port = atoi( psz_parser );
147         }
148     }
149     else
150         psz_address = strdup("");
151
152     p_intf->p_sys = p_sys = malloc( sizeof( intf_sys_t ) );
153     if( !p_intf->p_sys )
154     {
155         return( VLC_ENOMEM );
156     }
157
158     p_sys->p_playlist = pl_Yield( p_this );
159     p_sys->p_input    = NULL;
160     p_sys->p_vlm      = NULL;
161     p_sys->psz_address = psz_address;
162     p_sys->i_port     = i_port;
163     p_sys->p_art_handler = NULL;
164
165     /* determine Content-Type value for HTML pages */
166     psz_src = config_GetPsz( p_intf, "http-charset" );
167     if( psz_src == NULL || !*psz_src )
168     {
169         if( psz_src != NULL ) free( psz_src );
170         psz_src = strdup("UTF-8");
171     }
172
173     p_sys->psz_html_type = malloc( 20 + strlen( psz_src ) );
174     if( p_sys->psz_html_type == NULL )
175     {
176         pl_Release( p_this );
177         free( p_sys->psz_address );
178         free( p_sys );
179         free( psz_src );
180         return VLC_ENOMEM ;
181     }
182     sprintf( p_sys->psz_html_type, "text/html; charset=%s", psz_src );
183     msg_Dbg( p_intf, "using charset=%s", psz_src );
184
185     if( strcmp( psz_src, "UTF-8" ) )
186     {
187         char psz_encoding[strlen( psz_src ) + sizeof( "//translit")];
188         sprintf( psz_encoding, "%s//translit", psz_src);
189
190         p_sys->iconv_from_utf8 = vlc_iconv_open( psz_encoding, "UTF-8" );
191         if( p_sys->iconv_from_utf8 == (vlc_iconv_t)-1 )
192             msg_Warn( p_intf, "unable to perform charset conversion to %s",
193                       psz_encoding );
194         else
195         {
196             p_sys->iconv_to_utf8 = vlc_iconv_open( "UTF-8", psz_src );
197             if( p_sys->iconv_to_utf8 == (vlc_iconv_t)-1 )
198                 msg_Warn( p_intf,
199                           "unable to perform charset conversion from %s",
200                           psz_src );
201         }
202     }
203     else
204     {
205         p_sys->iconv_from_utf8 = p_sys->iconv_to_utf8 = (vlc_iconv_t)-1;
206     }
207
208     p_sys->psz_charset = psz_src;
209     psz_src = NULL;
210
211     /* determine file handler associations */
212     p_sys->i_handlers = 0;
213     p_sys->pp_handlers = NULL;
214 #if defined( HAVE_FORK ) || defined( WIN32 )
215     psz_src = config_GetPsz( p_intf, "http-handlers" );
216     if( psz_src != NULL && *psz_src )
217     {
218         char *p = psz_src;
219         while( p != NULL )
220         {
221             http_association_t *p_handler;
222             char *psz_ext = p;
223             char *psz_program, *psz_options;
224             p = strchr( p, '=' );
225             if( p == NULL ) break;
226             *p++ = '\0';
227             psz_program = p;
228             p = strchr( p, ',' );
229             if( p != NULL )
230                 *p++ = '\0';
231
232             p_handler = malloc( sizeof( http_association_t ) );
233             p_handler->psz_ext = strdup( psz_ext );
234             psz_options = E_(FirstWord)( psz_program, psz_program );
235             p_handler->i_argc = 0;
236             p_handler->ppsz_argv = NULL;
237             TAB_APPEND( p_handler->i_argc, p_handler->ppsz_argv,
238                         strdup( psz_program ) );
239             while( psz_options != NULL && *psz_options )
240             {
241                 char *psz_next = E_(FirstWord)( psz_options, psz_options );
242                 TAB_APPEND( p_handler->i_argc, p_handler->ppsz_argv,
243                             strdup( psz_options ) );
244                 psz_options = psz_next;
245             }
246             /* NULL will be appended later on */
247
248             TAB_APPEND( p_sys->i_handlers, p_sys->pp_handlers, p_handler );
249         }
250     }
251     if( psz_src != NULL )
252         free( psz_src );
253 #endif
254
255     /* determine SSL configuration */
256     psz_cert = config_GetPsz( p_intf, "http-intf-cert" );
257     if ( psz_cert != NULL )
258     {
259         msg_Dbg( p_intf, "enabling TLS for HTTP interface (cert file: %s)",
260                  psz_cert );
261         psz_key = var_GetNonEmptyString( p_intf, "http-intf-key" );
262         psz_ca = var_GetNonEmptyString( p_intf, "http-intf-ca" );
263         psz_crl = var_GetNonEmptyString( p_intf, "http-intf-crl" );
264
265         if( i_port <= 0 )
266             i_port = 8443;
267     }
268     else
269     {
270         if( i_port <= 0 )
271             i_port= 8080;
272     }
273
274     msg_Dbg( p_intf, "base %s:%d", psz_address, i_port );
275
276     p_sys->p_httpd_host = httpd_TLSHostNew( VLC_OBJECT(p_intf), psz_address,
277                                             i_port, psz_cert, psz_key, psz_ca,
278                                             psz_crl );
279     if( p_sys->p_httpd_host == NULL )
280     {
281         msg_Err( p_intf, "cannot listen on %s:%d", psz_address, i_port );
282         pl_Release( p_this );
283         free( p_sys->psz_html_type );
284         free( p_sys->psz_address );
285         free( p_sys );
286         return VLC_EGENERIC;
287     }
288     else
289     {
290         char psz_tmp[NI_MAXHOST + 6];
291
292         /* Ugly hack to run several HTTP servers on different ports */
293         snprintf( psz_tmp, sizeof (psz_tmp), "%s:%d", psz_address, i_port + 1 );
294         var_Create(p_intf->p_libvlc, "http-host", VLC_VAR_STRING );
295         var_SetString( p_intf->p_libvlc, "http-host", psz_tmp );
296     }
297
298     p_sys->i_files  = 0;
299     p_sys->pp_files = NULL;
300
301 #if defined(__APPLE__) || defined(SYS_BEOS) || defined(WIN32)
302     if ( ( psz_src = config_GetPsz( p_intf, "http-src" )) == NULL )
303     {
304         const char * psz_vlcpath = config_GetDataDir();
305         psz_src = malloc( strlen(psz_vlcpath) + strlen("/http" ) + 1 );
306         if( !psz_src ) return VLC_ENOMEM;
307         sprintf( psz_src, "%s/http", psz_vlcpath );
308     }
309 #else
310     psz_src = config_GetPsz( p_intf, "http-src" );
311
312     if( ( psz_src == NULL ) || ( *psz_src == '\0' ) )
313     {
314         static char const* ppsz_paths[] = {
315             "share/http",
316             "../share/http",
317             DATA_PATH"/http",
318             NULL
319         };
320         unsigned i;
321
322         if( psz_src != NULL )
323         {
324             free( psz_src );
325             psz_src = NULL;
326         }
327
328         for( i = 0; ppsz_paths[i] != NULL; i++ )
329             if( !DirectoryCheck( ppsz_paths[i] ) )
330             {
331                 psz_src = strdup( ppsz_paths[i] );
332                 break;
333             }
334     }
335 #endif
336
337     if( !psz_src || *psz_src == '\0' )
338     {
339         msg_Err( p_intf, "invalid web interface source directory" );
340         goto failed;
341     }
342
343     /* remove trainling \ or / */
344     if( psz_src[strlen( psz_src ) - 1] == '\\' ||
345         psz_src[strlen( psz_src ) - 1] == '/' )
346     {
347         psz_src[strlen( psz_src ) - 1] = '\0';
348     }
349
350     E_(ParseDirectory)( p_intf, psz_src, psz_src );
351     if( p_sys->i_files <= 0 )
352     {
353         msg_Err( p_intf, "cannot find any file in directory %s", psz_src );
354         goto failed;
355     }
356
357     p_intf->pf_run = Run;
358     free( psz_src );
359
360     if( config_GetInt( p_intf, "http-album-art" ) )
361     {
362         /* FIXME: we're leaking h */
363         httpd_handler_sys_t *h = malloc( sizeof( httpd_handler_sys_t ) );
364         if( !h )
365         {
366             msg_Err( p_intf, "not enough memory to allocate album art handler" );
367             goto failed;
368         }
369         h->file.p_intf = p_intf;
370         h->file.file = NULL;
371         h->file.name = NULL;
372         /* TODO: use ACL and login/password stuff here too */
373         h->p_handler = httpd_HandlerNew( p_sys->p_httpd_host,
374                                          "/art", NULL, NULL, NULL,
375                                          E_(ArtCallback), h );
376         p_sys->p_art_handler = h->p_handler;
377     }
378
379     return VLC_SUCCESS;
380
381 failed:
382     free( psz_src );
383     free( p_sys->pp_files );
384     httpd_HostDelete( p_sys->p_httpd_host );
385     free( p_sys->psz_address );
386     free( p_sys->psz_html_type );
387     if( p_sys->iconv_from_utf8 != (vlc_iconv_t)-1 )
388         vlc_iconv_close( p_sys->iconv_from_utf8 );
389     if( p_sys->iconv_to_utf8 != (vlc_iconv_t)-1 )
390         vlc_iconv_close( p_sys->iconv_to_utf8 );
391     free( p_sys );
392     pl_Release( p_this );
393     return VLC_EGENERIC;
394 }
395
396 /*****************************************************************************
397  * Close: destroy interface
398  *****************************************************************************/
399 static void Close ( vlc_object_t *p_this )
400 {
401     intf_thread_t *p_intf = (intf_thread_t *)p_this;
402     intf_sys_t    *p_sys = p_intf->p_sys;
403
404     int i;
405
406     if( p_sys->p_vlm )
407     {
408         vlm_Delete( p_sys->p_vlm );
409     }
410     for( i = 0; i < p_sys->i_files; i++ )
411     {
412         if( p_sys->pp_files[i]->b_handler )
413             httpd_HandlerDelete( ((httpd_handler_sys_t *)p_sys->pp_files[i])->p_handler );
414         else
415             httpd_FileDelete( p_sys->pp_files[i]->p_file );
416         if( p_sys->pp_files[i]->p_redir )
417             httpd_RedirectDelete( p_sys->pp_files[i]->p_redir );
418         if( p_sys->pp_files[i]->p_redir2 )
419             httpd_RedirectDelete( p_sys->pp_files[i]->p_redir2 );
420
421         free( p_sys->pp_files[i]->file );
422         free( p_sys->pp_files[i]->name );
423         free( p_sys->pp_files[i] );
424     }
425     if( p_sys->pp_files )
426     {
427         free( p_sys->pp_files );
428     }
429     for( i = 0; i < p_sys->i_handlers; i++ )
430     {
431         http_association_t *p_handler = p_sys->pp_handlers[i];
432         int j;
433         free( p_handler->psz_ext );
434         for( j = 0; j < p_handler->i_argc; j++ )
435             free( p_handler->ppsz_argv[j] );
436         if( p_handler->i_argc )
437             free( p_handler->ppsz_argv );
438         free( p_handler );
439     }
440     if( p_sys->i_handlers )
441         free( p_sys->pp_handlers );
442     if( p_sys->p_art_handler )
443         httpd_HandlerDelete( p_sys->p_art_handler );
444     httpd_HostDelete( p_sys->p_httpd_host );
445     free( p_sys->psz_address );
446     free( p_sys->psz_html_type );
447
448     if( p_sys->iconv_from_utf8 != (vlc_iconv_t)-1 )
449         vlc_iconv_close( p_sys->iconv_from_utf8 );
450     if( p_sys->iconv_to_utf8 != (vlc_iconv_t)-1 )
451         vlc_iconv_close( p_sys->iconv_to_utf8 );
452     free( p_sys );
453     pl_Release( p_this );
454 }
455
456 /*****************************************************************************
457  * Run: http interface thread
458  *****************************************************************************/
459 static void Run( intf_thread_t *p_intf )
460 {
461     intf_sys_t     *p_sys = p_intf->p_sys;
462
463     while( !intf_ShouldDie( p_intf ) )
464     {
465         /* Manage the input part */
466         if( p_sys->p_input == NULL )
467         {
468             if( p_sys->p_playlist )
469             {
470                 p_sys->p_input = p_sys->p_playlist->p_input;
471             }
472         }
473         else if( p_sys->p_input->b_dead || p_sys->p_input->b_die )
474         {
475             p_sys->p_input = NULL;
476         }
477
478
479         /* Wait a bit */
480         msleep( INTF_IDLE_SLEEP );
481     }
482
483     if( p_sys->p_input )
484     {
485         vlc_object_release( p_sys->p_input );
486         p_sys->p_input = NULL;
487     }
488 }
489
490 /****************************************************************************
491  * HttpCallback:
492  ****************************************************************************
493  * a file with b_html is parsed and all "macro" replaced
494  ****************************************************************************/
495 static void Callback404( httpd_file_sys_t *p_args, char **pp_data,
496                          int *pi_data )
497 {
498     char *p = *pp_data = malloc( 10240 );
499     if( !p )
500     {
501         return;
502     }
503     p += sprintf( p, "Content-Type: text/html\n" );
504     p += sprintf( p, "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n" );
505     p += sprintf( p, "<head>\n" );
506     p += sprintf( p, "<title>Error loading %s</title>\n", p_args->file );
507     p += sprintf( p, "</head>\n" );
508     p += sprintf( p, "<body>\n" );
509     p += sprintf( p, "<h1><center>Error loading %s for %s</center></h1>\n", p_args->file, p_args->name );
510     p += sprintf( p, "<a href=\"http://www.videolan.org/\">VideoLAN</a>\n" );
511     p += sprintf( p, "</body>\n" );
512     p += sprintf( p, "</html>\n" );
513
514     *pi_data = strlen( *pp_data );
515 }
516
517 static void ParseExecute( httpd_file_sys_t *p_args, char *p_buffer,
518                           int i_buffer, char *p_request,
519                           char **pp_data, int *pi_data )
520 {
521     int i_request = p_request != NULL ? strlen( p_request ) : 0;
522     char *dst;
523     vlc_value_t val;
524     char position[4]; /* percentage */
525     char time[12]; /* in seconds */
526     char length[12]; /* in seconds */
527     audio_volume_t i_volume;
528     char volume[5];
529     const char *state;
530     char stats[20];
531
532 #define p_sys p_args->p_intf->p_sys
533     if( p_sys->p_input )
534     {
535         var_Get( p_sys->p_input, "position", &val);
536         sprintf( position, "%d" , (int)((val.f_float) * 100.0));
537         var_Get( p_sys->p_input, "time", &val);
538         sprintf( time, I64Fi, (int64_t)val.i_time / I64C(1000000) );
539         var_Get( p_sys->p_input, "length", &val);
540         sprintf( length, I64Fi, (int64_t)val.i_time / I64C(1000000) );
541
542         var_Get( p_sys->p_input, "state", &val );
543         if( val.i_int == PLAYING_S )
544         {
545             state = "playing";
546         }
547         else if( val.i_int == OPENING_S )
548         {
549             state = "opening/connecting";
550         }
551         else if( val.i_int == BUFFERING_S )
552         {
553             state = "buffering";
554         }
555         else if( val.i_int == PAUSE_S )
556         {
557             state = "paused";
558         }
559         else
560         {
561             state = "stop";
562         }
563     }
564     else
565     {
566         sprintf( position, "%d", 0 );
567         sprintf( time, "%d", 0 );
568         sprintf( length, "%d", 0 );
569         state = "stop";
570     }
571 #undef p_sys
572
573     aout_VolumeGet( p_args->p_intf, &i_volume );
574     sprintf( volume, "%d", (int)i_volume );
575
576     p_args->vars = E_(mvar_New)( "variables", "" );
577     E_(mvar_AppendNewVar)( p_args->vars, "url_param",
578                            i_request > 0 ? "1" : "0" );
579     E_(mvar_AppendNewVar)( p_args->vars, "url_value", p_request );
580     E_(mvar_AppendNewVar)( p_args->vars, "version", VLC_Version() );
581     E_(mvar_AppendNewVar)( p_args->vars, "copyright", COPYRIGHT_MESSAGE );
582     E_(mvar_AppendNewVar)( p_args->vars, "vlc_compile_by", VLC_CompileBy() );
583     E_(mvar_AppendNewVar)( p_args->vars, "vlc_compile_host",
584                            VLC_CompileHost() );
585     E_(mvar_AppendNewVar)( p_args->vars, "vlc_compile_domain",
586                            VLC_CompileDomain() );
587     E_(mvar_AppendNewVar)( p_args->vars, "vlc_compiler", VLC_Compiler() );
588     E_(mvar_AppendNewVar)( p_args->vars, "vlc_changeset", VLC_Changeset() );
589     E_(mvar_AppendNewVar)( p_args->vars, "stream_position", position );
590     E_(mvar_AppendNewVar)( p_args->vars, "stream_time", time );
591     E_(mvar_AppendNewVar)( p_args->vars, "stream_length", length );
592     E_(mvar_AppendNewVar)( p_args->vars, "volume", volume );
593     E_(mvar_AppendNewVar)( p_args->vars, "stream_state", state );
594     E_(mvar_AppendNewVar)( p_args->vars, "charset", ((intf_sys_t *)p_args->p_intf->p_sys)->psz_charset );
595
596     /* Stats */
597 #define p_sys p_args->p_intf->p_sys
598     if( p_sys->p_input )
599     {
600         /* FIXME: Workarround a stupid assert in input_GetItem */
601         input_item_t *p_item = p_sys->p_input && p_sys->p_input->p
602                                ? input_GetItem( p_sys->p_input )
603                                : NULL;
604
605         if( p_item )
606         {
607             vlc_mutex_lock( &p_item->p_stats->lock );
608 #define STATS_INT( n ) sprintf( stats, "%d", p_item->p_stats->i_ ## n ); \
609                        E_(mvar_AppendNewVar)( p_args->vars, #n, stats );
610 #define STATS_FLOAT( n ) sprintf( stats, "%f", p_item->p_stats->f_ ## n ); \
611                        E_(mvar_AppendNewVar)( p_args->vars, #n, stats );
612             STATS_INT( read_bytes )
613             STATS_FLOAT( input_bitrate )
614             STATS_INT( demux_read_bytes )
615             STATS_FLOAT( demux_bitrate )
616             STATS_INT( decoded_video )
617             STATS_INT( displayed_pictures )
618             STATS_INT( lost_pictures )
619             STATS_INT( decoded_audio )
620             STATS_INT( played_abuffers )
621             STATS_INT( lost_abuffers )
622             STATS_INT( sent_packets )
623             STATS_INT( sent_bytes )
624             STATS_FLOAT( send_bitrate )
625 #undef STATS_INT
626 #undef STATS_FLOAT
627             vlc_mutex_unlock( &p_item->p_stats->lock );
628         }
629     }
630 #undef p_sys
631
632     E_(SSInit)( &p_args->stack );
633
634     /* allocate output */
635     *pi_data = i_buffer + 1000;
636     dst = *pp_data = malloc( *pi_data );
637
638     /* we parse executing all  <vlc /> macros */
639     E_(Execute)( p_args, p_request, i_request, pp_data, pi_data, &dst,
640                  &p_buffer[0], &p_buffer[i_buffer] );
641
642     *dst     = '\0';
643     *pi_data = dst - *pp_data;
644
645     E_(SSClean)( &p_args->stack );
646     E_(mvar_Delete)( p_args->vars );
647 }
648
649 int  E_(HttpCallback)( httpd_file_sys_t *p_args,
650                        httpd_file_t *p_file,
651                        uint8_t *_p_request,
652                        uint8_t **_pp_data, int *pi_data )
653 {
654     char *p_request = (char *)_p_request;
655     char **pp_data = (char **)_pp_data;
656     FILE *f;
657
658     if( ( f = utf8_fopen( p_args->file, "r" ) ) == NULL )
659     {
660         Callback404( p_args, pp_data, pi_data );
661         return VLC_SUCCESS;
662     }
663
664     if( !p_args->b_html )
665     {
666         E_(FileLoad)( f, pp_data, pi_data );
667     }
668     else
669     {
670         int  i_buffer;
671         char *p_buffer;
672
673         /* first we load in a temporary buffer */
674         E_(FileLoad)( f, &p_buffer, &i_buffer );
675
676         ParseExecute( p_args, p_buffer, i_buffer, p_request, pp_data, pi_data );
677
678         free( p_buffer );
679     }
680
681     fclose( f );
682
683     return VLC_SUCCESS;
684 }
685
686 /****************************************************************************
687  * HandlerCallback:
688  ****************************************************************************
689  * call the external handler and parse vlc macros if Content-Type is HTML
690  ****************************************************************************/
691 int  E_(HandlerCallback)( httpd_handler_sys_t *p_args,
692                           httpd_handler_t *p_handler, char *_p_url,
693                           uint8_t *_p_request, int i_type,
694                           uint8_t *_p_in, int i_in,
695                           char *psz_remote_addr, char *psz_remote_host,
696                           uint8_t **_pp_data, int *pi_data )
697 {
698     char *p_url = (char *)_p_url;
699     char *p_request = (char *)_p_request;
700     char **pp_data = (char **)_pp_data;
701     char *p_in = (char *)p_in;
702     int i_request = p_request != NULL ? strlen( p_request ) : 0;
703     char *p;
704     int i_env = 0;
705     char **ppsz_env = NULL;
706     char *psz_tmp;
707     char sep;
708     size_t i_buffer;
709     char *p_buffer;
710     char *psz_cwd, *psz_file = NULL;
711     int i_ret;
712
713 #ifdef WIN32
714     sep = '\\';
715 #else
716     sep = '/';
717 #endif
718
719     /* Create environment for the CGI */
720     TAB_APPEND( i_env, ppsz_env, strdup("GATEWAY_INTERFACE=CGI/1.1") );
721     TAB_APPEND( i_env, ppsz_env, strdup("SERVER_PROTOCOL=HTTP/1.1") );
722     TAB_APPEND( i_env, ppsz_env, strdup("SERVER_SOFTWARE=" COPYRIGHT_MESSAGE) );
723
724     switch( i_type )
725     {
726     case HTTPD_MSG_GET:
727         TAB_APPEND( i_env, ppsz_env, strdup("REQUEST_METHOD=GET") );
728         break;
729     case HTTPD_MSG_POST:
730         TAB_APPEND( i_env, ppsz_env, strdup("REQUEST_METHOD=POST") );
731         break;
732     case HTTPD_MSG_HEAD:
733         TAB_APPEND( i_env, ppsz_env, strdup("REQUEST_METHOD=HEAD") );
734         break;
735     default:
736         break;
737     }
738
739     if( i_request )
740     {
741         psz_tmp = malloc( sizeof("QUERY_STRING=") + i_request );
742         sprintf( psz_tmp, "QUERY_STRING=%s", p_request );
743         TAB_APPEND( i_env, ppsz_env, psz_tmp );
744
745         psz_tmp = malloc( sizeof("REQUEST_URI=?") + strlen(p_url)
746                            + i_request );
747         sprintf( psz_tmp, "REQUEST_URI=%s?%s", p_url, p_request );
748         TAB_APPEND( i_env, ppsz_env, psz_tmp );
749     }
750     else
751     {
752         psz_tmp = malloc( sizeof("REQUEST_URI=") + strlen(p_url) );
753         sprintf( psz_tmp, "REQUEST_URI=%s", p_url );
754         TAB_APPEND( i_env, ppsz_env, psz_tmp );
755     }
756
757     psz_tmp = malloc( sizeof("SCRIPT_NAME=") + strlen(p_url) );
758     sprintf( psz_tmp, "SCRIPT_NAME=%s", p_url );
759     TAB_APPEND( i_env, ppsz_env, psz_tmp );
760
761 #define p_sys p_args->file.p_intf->p_sys
762     psz_tmp = malloc( sizeof("SERVER_NAME=") + strlen(p_sys->psz_address) );
763     sprintf( psz_tmp, "SERVER_NAME=%s", p_sys->psz_address );
764     TAB_APPEND( i_env, ppsz_env, psz_tmp );
765
766     psz_tmp = malloc( sizeof("SERVER_PORT=") + 5 );
767     sprintf( psz_tmp, "SERVER_PORT=%u", p_sys->i_port );
768     TAB_APPEND( i_env, ppsz_env, psz_tmp );
769 #undef p_sys
770
771     p = getenv( "PATH" );
772     if( p != NULL )
773     {
774         psz_tmp = malloc( sizeof("PATH=") + strlen(p) );
775         sprintf( psz_tmp, "PATH=%s", p );
776         TAB_APPEND( i_env, ppsz_env, psz_tmp );
777     }
778
779 #ifdef WIN32
780     p = getenv( "windir" );
781     if( p != NULL )
782     {
783         psz_tmp = malloc( sizeof("SYSTEMROOT=") + strlen(p) );
784         sprintf( psz_tmp, "SYSTEMROOT=%s", p );
785         TAB_APPEND( i_env, ppsz_env, psz_tmp );
786     }
787 #endif
788
789     if( psz_remote_addr != NULL && *psz_remote_addr )
790     {
791         psz_tmp = malloc( sizeof("REMOTE_ADDR=") + strlen(psz_remote_addr) );
792         sprintf( psz_tmp, "REMOTE_ADDR=%s", psz_remote_addr );
793         TAB_APPEND( i_env, ppsz_env, psz_tmp );
794     }
795
796     if( psz_remote_host != NULL && *psz_remote_host )
797     {
798         psz_tmp = malloc( sizeof("REMOTE_HOST=") + strlen(psz_remote_host) );
799         sprintf( psz_tmp, "REMOTE_HOST=%s", psz_remote_host );
800         TAB_APPEND( i_env, ppsz_env, psz_tmp );
801     }
802
803     if( i_in )
804     {
805         p = p_in;
806         for ( ; ; )
807         {
808             if( !strncasecmp( p, "Content-Type: ", strlen("Content-Type: ") ) )
809             {
810                 char *end = strchr( p, '\r' );
811                 if( end == NULL )
812                     break;
813                 *end = '\0';
814                 psz_tmp = malloc( sizeof("CONTENT_TYPE=") + strlen(p) );
815                 sprintf( psz_tmp, "CONTENT_TYPE=%s", p );
816                 TAB_APPEND( i_env, ppsz_env, psz_tmp );
817                 *end = '\r';
818             }
819             if( !strncasecmp( p, "Content-Length: ",
820                               strlen("Content-Length: ") ) )
821             {
822                 char *end = strchr( p, '\r' );
823                 if( end == NULL )
824                     break;
825                 *end = '\0';
826                 psz_tmp = malloc( sizeof("CONTENT_LENGTH=") + strlen(p) );
827                 sprintf( psz_tmp, "CONTENT_LENGTH=%s", p );
828                 TAB_APPEND( i_env, ppsz_env, psz_tmp );
829                 *end = '\r';
830             }
831
832             p = strchr( p, '\n' );
833             if( p == NULL || p[1] == '\r' )
834             {
835                 p = NULL;
836                 break;
837             }
838             p++;
839         }
840     }
841
842     psz_file = strrchr( p_args->file.file, sep );
843     if( psz_file != NULL )
844     {
845         psz_file++;
846         psz_tmp = malloc( sizeof("SCRIPT_FILENAME=") + strlen(psz_file) );
847         sprintf( psz_tmp, "SCRIPT_FILENAME=%s", psz_file );
848         TAB_APPEND( i_env, ppsz_env, psz_tmp );
849
850         TAB_APPEND( p_args->p_association->i_argc,
851                     p_args->p_association->ppsz_argv, psz_file );
852     }
853
854     TAB_APPEND( i_env, ppsz_env, NULL );
855
856     TAB_APPEND( p_args->p_association->i_argc, p_args->p_association->ppsz_argv,
857                 NULL );
858
859     psz_tmp = strdup( p_args->file.file );
860     p = strrchr( psz_tmp, sep );
861     if( p != NULL )
862     {
863         *p = '\0';
864         psz_cwd = psz_tmp;
865     }
866     else
867     {
868         free( psz_tmp );
869         psz_cwd = NULL;
870     }
871
872     i_ret = vlc_execve( p_args->file.p_intf, p_args->p_association->i_argc,
873                         p_args->p_association->ppsz_argv, ppsz_env, psz_cwd,
874                         (char *)p_in, i_in, &p_buffer, &i_buffer );
875     TAB_REMOVE( p_args->p_association->i_argc, p_args->p_association->ppsz_argv,
876                 NULL );
877     TAB_REMOVE( p_args->p_association->i_argc, p_args->p_association->ppsz_argv,
878                 psz_file );
879     if( psz_cwd != NULL )
880         free( psz_cwd );
881     while( i_env )
882         TAB_REMOVE( i_env, ppsz_env, ppsz_env[0] );
883
884     if( i_ret == -1 )
885     {
886         Callback404( (httpd_file_sys_t *)p_args, pp_data, pi_data );
887         return VLC_SUCCESS;
888     }
889     p = p_buffer;
890     while( strncasecmp( p, "Content-Type: text/html",
891                         strlen("Content-Type: text/html") ) )
892     {
893         p = strchr( p, '\n' );
894         if( p == NULL || p[1] == '\r' )
895         {
896             p = NULL;
897             break;
898         }
899         p++;
900     }
901
902     if( p == NULL )
903     {
904         *pp_data = p_buffer;
905         *pi_data = i_buffer;
906     }
907     else
908     {
909         ParseExecute( (httpd_file_sys_t *)p_args, p_buffer, i_buffer,
910                       p_request, pp_data, pi_data );
911
912         free( p_buffer );
913     }
914
915     return VLC_SUCCESS;
916 }
917
918 int  E_(ArtCallback)( httpd_handler_sys_t *p_args,
919                           httpd_handler_t *p_handler, char *_p_url,
920                           uint8_t *p_request, int i_type,
921                           uint8_t *p_in, int i_in,
922                           char *psz_remote_addr, char *psz_remote_host,
923                           uint8_t **pp_data, int *pi_data )
924 {
925     char *psz_art = NULL;
926     intf_thread_t *p_intf = p_args->file.p_intf;
927     intf_sys_t *p_sys = p_intf->p_sys;
928     char psz_id[16];
929     input_item_t *p_item = NULL;
930     int i_id;
931
932     psz_id[0] = '\0';
933     if( p_request )
934         E_(ExtractURIValue)( (char *)p_request, "id", psz_id, 15 );
935     i_id = atoi( psz_id );
936     if( i_id )
937     {
938         playlist_item_t *p_pl_item = playlist_ItemGetById( p_sys->p_playlist,
939                                                            i_id, VLC_FALSE );
940         if( p_pl_item )
941             p_item = p_pl_item->p_input;
942     }
943     else
944     {
945         /* FIXME: Workarround a stupid assert in input_GetItem */
946         if( p_sys->p_input && p_sys->p_input->p )
947             p_item = input_GetItem( p_sys->p_input );
948     }
949
950     if( p_item )
951     {
952         psz_art = input_item_GetArtURL( p_item );
953     }
954
955     if( psz_art && !strncmp( psz_art, "file://", strlen( "file://" ) ) )
956     {
957         FILE *f;
958         char *psz_ext;
959         char *psz_header;
960         char *p_data = NULL;
961         int i_header_size, i_data;
962
963         if( ( f = utf8_fopen( psz_art + strlen( "file://" ), "r" ) ) == NULL )
964         {
965             msg_Dbg( p_intf, "Couldn't open album art file %s",
966                      psz_art + strlen( "file://" ) );
967             Callback404( &p_args->file, (char**)pp_data, pi_data );
968             free( psz_art );
969             return VLC_SUCCESS;
970         }
971
972         E_(FileLoad)( f, &p_data, &i_data );
973
974         fclose( f );
975
976         psz_ext = strrchr( psz_art, '.' );
977         if( psz_ext ) psz_ext++;
978
979 #define HEADER  "Content-Type: image/%s\n" \
980                 "Content-Length: %d\n" \
981                 "\n"
982         i_header_size = asprintf( &psz_header, HEADER, psz_ext, i_data );
983 #undef HEADER
984
985         *pi_data = i_header_size + i_data;
986         *pp_data = (uint8_t*)malloc( *pi_data );
987         memcpy( *pp_data, psz_header, i_header_size );
988         memcpy( *pp_data+i_header_size, p_data, i_data );
989         free( psz_header );
990         free( p_data );
991     }
992     else
993     {
994         msg_Dbg( p_intf, "No album art found" );
995         Callback404( &p_args->file, (char**)pp_data, pi_data );
996     }
997
998     free( psz_art );
999
1000     return VLC_SUCCESS;
1001 }