]> git.sesse.net Git - vlc/blob - modules/control/http/http.c
96f18c8b8e41bcd0ab0ec41a496fed7389ecb960
[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 CERT_TEXT N_( "Certificate file" )
50 #define CERT_LONGTEXT N_( "HTTP interface x509 PEM certificate file " \
51                           "(enables SSL)." )
52 #define KEY_TEXT N_( "Private key file" )
53 #define KEY_LONGTEXT N_( "HTTP interface x509 PEM private key file." )
54 #define CA_TEXT N_( "Root CA file" )
55 #define CA_LONGTEXT N_( "HTTP interface x509 PEM trusted root CA " \
56                         "certificates file." )
57 #define CRL_TEXT N_( "CRL file" )
58 #define CRL_LONGTEXT N_( "HTTP interace Certificates Revocation List file." )
59
60 vlc_module_begin();
61     set_shortname( _("HTTP"));
62     set_description( _("HTTP remote control interface") );
63     set_category( CAT_INTERFACE );
64     set_subcategory( SUBCAT_INTERFACE_MAIN );
65         add_string ( "http-host", NULL, NULL, HOST_TEXT, HOST_LONGTEXT, VLC_TRUE );
66         add_string ( "http-src",  NULL, NULL, SRC_TEXT,  SRC_LONGTEXT,  VLC_TRUE );
67         add_string ( "http-charset", "UTF-8", NULL, CHARSET_TEXT, CHARSET_LONGTEXT, VLC_TRUE );
68 #if defined( HAVE_FORK ) || defined( WIN32 )
69         add_string ( "http-handlers", NULL, NULL, HANDLERS_TEXT, HANDLERS_LONGTEXT, VLC_TRUE );
70 #endif
71         set_section( N_("HTTP SSL" ), 0 );
72         add_string ( "http-intf-cert", NULL, NULL, CERT_TEXT, CERT_LONGTEXT, VLC_TRUE );
73         add_string ( "http-intf-key",  NULL, NULL, KEY_TEXT,  KEY_LONGTEXT,  VLC_TRUE );
74         add_string ( "http-intf-ca",   NULL, NULL, CA_TEXT,   CA_LONGTEXT,   VLC_TRUE );
75         add_string ( "http-intf-crl",  NULL, NULL, CRL_TEXT,  CRL_LONGTEXT,  VLC_TRUE );
76     set_capability( "interface", 0 );
77     set_callbacks( Open, Close );
78 vlc_module_end();
79
80
81 /*****************************************************************************
82  * Local prototypes
83  *****************************************************************************/
84 static void Run          ( intf_thread_t *p_intf );
85
86 /*****************************************************************************
87  * Local functions
88  *****************************************************************************/
89 #if !defined(__APPLE__) && !defined(SYS_BEOS) && !defined(WIN32)
90 static int DirectoryCheck( const char *psz_dir )
91 {
92     DIR           *p_dir;
93
94 #ifdef HAVE_SYS_STAT_H
95     struct stat   stat_info;
96
97     if( ( utf8_stat( psz_dir, &stat_info ) == -1 )
98       || !S_ISDIR( stat_info.st_mode ) )
99     {
100         return VLC_EGENERIC;
101     }
102 #endif
103
104     if( ( p_dir = utf8_opendir( psz_dir ) ) == NULL )
105     {
106         return VLC_EGENERIC;
107     }
108     closedir( p_dir );
109
110     return VLC_SUCCESS;
111 }
112 #endif
113
114
115 /*****************************************************************************
116  * Activate: initialize and create stuff
117  *****************************************************************************/
118 static int Open( vlc_object_t *p_this )
119 {
120     intf_thread_t *p_intf = (intf_thread_t*)p_this;
121     intf_sys_t    *p_sys;
122     char          *psz_address;
123     const char    *psz_cert = NULL, *psz_key = NULL, *psz_ca = NULL,
124                   *psz_crl = NULL;
125     int           i_port       = 0;
126     char          *psz_src;
127     char          psz_tmp[10];
128
129     psz_address = config_GetPsz( p_intf, "http-host" );
130     if( psz_address != NULL )
131     {
132         char *psz_parser = strchr( psz_address, ':' );
133         if( psz_parser )
134         {
135             *psz_parser++ = '\0';
136             i_port = atoi( psz_parser );
137         }
138     }
139     else
140         psz_address = strdup("");
141
142     p_intf->p_sys = p_sys = malloc( sizeof( intf_sys_t ) );
143     if( !p_intf->p_sys )
144     {
145         return( VLC_ENOMEM );
146     }
147     p_sys->p_playlist = NULL;
148     p_sys->p_input    = NULL;
149     p_sys->p_vlm      = NULL;
150     p_sys->psz_address = psz_address;
151     p_sys->i_port     = i_port;
152
153     /* determine Content-Type value for HTML pages */
154     psz_src = config_GetPsz( p_intf, "http-charset" );
155     if( psz_src == NULL || !*psz_src )
156     {
157         if( psz_src != NULL ) free( psz_src );
158         psz_src = strdup("UTF-8");
159     }
160
161     p_sys->psz_html_type = malloc( 20 + strlen( psz_src ) );
162     if( p_sys->psz_html_type == NULL )
163     {
164         free( p_sys->psz_address );
165         free( p_sys );
166         free( psz_src );
167         return VLC_ENOMEM ;
168     }
169     sprintf( p_sys->psz_html_type, "text/html; charset=%s", psz_src );
170     msg_Dbg( p_intf, "using charset=%s", psz_src );
171
172     if( strcmp( psz_src, "UTF-8" ) )
173     {
174         char psz_encoding[strlen( psz_src ) + sizeof( "//translit")];
175         sprintf( psz_encoding, "%s//translit", psz_src);
176
177         p_sys->iconv_from_utf8 = vlc_iconv_open( psz_encoding, "UTF-8" );
178         if( p_sys->iconv_from_utf8 == (vlc_iconv_t)-1 )
179             msg_Warn( p_intf, "unable to perform charset conversion to %s",
180                       psz_encoding );
181         else
182         {
183             p_sys->iconv_to_utf8 = vlc_iconv_open( "UTF-8", psz_src );
184             if( p_sys->iconv_to_utf8 == (vlc_iconv_t)-1 )
185                 msg_Warn( p_intf,
186                           "unable to perform charset conversion from %s",
187                           psz_src );
188         }
189     }
190     else
191     {
192         p_sys->iconv_from_utf8 = p_sys->iconv_to_utf8 = (vlc_iconv_t)-1;
193     }
194
195     p_sys->psz_charset = psz_src;
196     psz_src = NULL;
197
198     /* determine file handler associations */
199     p_sys->i_handlers = 0;
200     p_sys->pp_handlers = NULL;
201 #if defined( HAVE_FORK ) || defined( WIN32 )
202     psz_src = config_GetPsz( p_intf, "http-handlers" );
203     if( psz_src != NULL && *psz_src )
204     {
205         char *p = psz_src;
206         while( p != NULL )
207         {
208             http_association_t *p_handler;
209             char *psz_ext = p;
210             char *psz_program, *psz_options;
211             p = strchr( p, '=' );
212             if( p == NULL ) break;
213             *p++ = '\0';
214             psz_program = p;
215             p = strchr( p, ',' );
216             if( p != NULL )
217                 *p++ = '\0';
218
219             p_handler = malloc( sizeof( http_association_t ) );
220             p_handler->psz_ext = strdup( psz_ext );
221             psz_options = E_(FirstWord)( psz_program, psz_program );
222             p_handler->i_argc = 0;
223             p_handler->ppsz_argv = NULL;
224             TAB_APPEND( p_handler->i_argc, p_handler->ppsz_argv,
225                         strdup( psz_program ) );
226             while( psz_options != NULL && *psz_options )
227             {
228                 char *psz_next = E_(FirstWord)( psz_options, psz_options );
229                 TAB_APPEND( p_handler->i_argc, p_handler->ppsz_argv,
230                             strdup( psz_options ) );
231                 psz_options = psz_next;
232             }
233             /* NULL will be appended later on */
234
235             TAB_APPEND( p_sys->i_handlers, p_sys->pp_handlers, p_handler );
236         }
237     }
238     if( psz_src != NULL )
239         free( psz_src );
240 #endif
241
242     /* determine SSL configuration */
243     psz_cert = config_GetPsz( p_intf, "http-intf-cert" );
244     if ( psz_cert != NULL )
245     {
246         msg_Dbg( p_intf, "enabling TLS for HTTP interface (cert file: %s)",
247                  psz_cert );
248         psz_key = config_GetPsz( p_intf, "http-intf-key" );
249         psz_ca = config_GetPsz( p_intf, "http-intf-ca" );
250         psz_crl = config_GetPsz( p_intf, "http-intf-crl" );
251
252         if( i_port <= 0 )
253             i_port = 8443;
254     }
255     else
256     {
257         if( i_port <= 0 )
258             i_port= 8080;
259     }
260
261     /* Ugly hack to allow to run several HTTP servers on different ports. */
262     sprintf( psz_tmp, ":%d", i_port + 1 );
263     config_PutPsz( p_intf, "http-host", psz_tmp );
264
265     msg_Dbg( p_intf, "base %s:%d", psz_address, i_port );
266
267     p_sys->p_httpd_host = httpd_TLSHostNew( VLC_OBJECT(p_intf), psz_address,
268                                             i_port, psz_cert, psz_key, psz_ca,
269                                             psz_crl );
270     if( p_sys->p_httpd_host == NULL )
271     {
272         msg_Err( p_intf, "cannot listen on %s:%d", psz_address, i_port );
273         free( p_sys->psz_html_type );
274         free( p_sys->psz_address );
275         free( p_sys );
276         return VLC_EGENERIC;
277     }
278
279     p_sys->i_files  = 0;
280     p_sys->pp_files = NULL;
281
282 #if defined(__APPLE__) || defined(SYS_BEOS) || defined(WIN32)
283     if ( ( psz_src = config_GetPsz( p_intf, "http-src" )) == NULL )
284     {
285         char * psz_vlcpath = p_intf->p_libvlc->psz_vlcpath;
286         psz_src = malloc( strlen(psz_vlcpath) + strlen("/share/http" ) + 1 );
287         if( !psz_src ) return VLC_ENOMEM;
288 #if defined(WIN32)
289         sprintf( psz_src, "%s/http", psz_vlcpath );
290 #else
291         sprintf( psz_src, "%s/share/http", psz_vlcpath );
292 #endif
293     }
294 #else
295     psz_src = config_GetPsz( p_intf, "http-src" );
296
297     if( ( psz_src == NULL ) || ( *psz_src == '\0' ) )
298     {
299         static char const* ppsz_paths[] = {
300             "share/http",
301             "../share/http",
302             DATA_PATH"/http",
303             NULL
304         };
305         unsigned i;
306
307         if( psz_src != NULL )
308         {
309             free( psz_src );
310             psz_src = NULL;
311         }
312
313         for( i = 0; ppsz_paths[i] != NULL; i++ )
314             if( !DirectoryCheck( ppsz_paths[i] ) )
315             {
316                 psz_src = strdup( ppsz_paths[i] );
317                 break;
318             }
319     }
320 #endif
321
322     if( !psz_src || *psz_src == '\0' )
323     {
324         msg_Err( p_intf, "invalid web interface source directory" );
325         goto failed;
326     }
327
328     /* remove trainling \ or / */
329     if( psz_src[strlen( psz_src ) - 1] == '\\' ||
330         psz_src[strlen( psz_src ) - 1] == '/' )
331     {
332         psz_src[strlen( psz_src ) - 1] = '\0';
333     }
334
335     E_(ParseDirectory)( p_intf, psz_src, psz_src );
336
337
338     if( p_sys->i_files <= 0 )
339     {
340         msg_Err( p_intf, "cannot find any file in directory %s", psz_src );
341         goto failed;
342     }
343     p_intf->pf_run = Run;
344     free( psz_src );
345
346     return VLC_SUCCESS;
347
348 failed:
349     if( psz_src ) free( psz_src );
350     if( p_sys->pp_files )
351     {
352         free( p_sys->pp_files );
353     }
354     httpd_HostDelete( p_sys->p_httpd_host );
355     free( p_sys->psz_address );
356     free( p_sys->psz_html_type );
357     if( p_sys->iconv_from_utf8 != (vlc_iconv_t)-1 )
358         vlc_iconv_close( p_sys->iconv_from_utf8 );
359     if( p_sys->iconv_to_utf8 != (vlc_iconv_t)-1 )
360         vlc_iconv_close( p_sys->iconv_to_utf8 );
361     free( p_sys );
362     return VLC_EGENERIC;
363 }
364
365 /*****************************************************************************
366  * Close: destroy interface
367  *****************************************************************************/
368 static void Close ( vlc_object_t *p_this )
369 {
370     intf_thread_t *p_intf = (intf_thread_t *)p_this;
371     intf_sys_t    *p_sys = p_intf->p_sys;
372
373     int i;
374
375     if( p_sys->p_vlm )
376     {
377         vlm_Delete( p_sys->p_vlm );
378     }
379     for( i = 0; i < p_sys->i_files; i++ )
380     {
381         if( p_sys->pp_files[i]->b_handler )
382             httpd_HandlerDelete( ((httpd_handler_sys_t *)p_sys->pp_files[i])->p_handler );
383         else
384             httpd_FileDelete( p_sys->pp_files[i]->p_file );
385         if( p_sys->pp_files[i]->p_redir )
386             httpd_RedirectDelete( p_sys->pp_files[i]->p_redir );
387         if( p_sys->pp_files[i]->p_redir2 )
388             httpd_RedirectDelete( p_sys->pp_files[i]->p_redir2 );
389
390         free( p_sys->pp_files[i]->file );
391         free( p_sys->pp_files[i]->name );
392         free( p_sys->pp_files[i] );
393     }
394     if( p_sys->pp_files )
395     {
396         free( p_sys->pp_files );
397     }
398     for( i = 0; i < p_sys->i_handlers; i++ )
399     {
400         http_association_t *p_handler = p_sys->pp_handlers[i];
401         int j;
402         free( p_handler->psz_ext );
403         for( j = 0; j < p_handler->i_argc; j++ )
404             free( p_handler->ppsz_argv[j] );
405         if( p_handler->i_argc )
406             free( p_handler->ppsz_argv );
407         free( p_handler );
408     }
409     if( p_sys->i_handlers )
410         free( p_sys->pp_handlers );
411     httpd_HostDelete( p_sys->p_httpd_host );
412     free( p_sys->psz_address );
413     free( p_sys->psz_html_type );
414
415     if( p_sys->iconv_from_utf8 != (vlc_iconv_t)-1 )
416         vlc_iconv_close( p_sys->iconv_from_utf8 );
417     if( p_sys->iconv_to_utf8 != (vlc_iconv_t)-1 )
418         vlc_iconv_close( p_sys->iconv_to_utf8 );
419     free( p_sys );
420 }
421
422 /*****************************************************************************
423  * Run: http interface thread
424  *****************************************************************************/
425 static void Run( intf_thread_t *p_intf )
426 {
427     intf_sys_t     *p_sys = p_intf->p_sys;
428
429     while( !p_intf->b_die )
430     {
431         /* get the playlist */
432         if( p_sys->p_playlist == NULL )
433         {
434             p_sys->p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
435         }
436
437         /* Manage the input part */
438         if( p_sys->p_input == NULL )
439         {
440             if( p_sys->p_playlist )
441             {
442                 p_sys->p_input = p_sys->p_playlist->p_input;
443             }
444         }
445         else if( p_sys->p_input->b_dead || p_sys->p_input->b_die )
446         {
447             p_sys->p_input = NULL;
448         }
449
450
451         /* Wait a bit */
452         msleep( INTF_IDLE_SLEEP );
453     }
454
455     if( p_sys->p_input )
456     {
457         vlc_object_release( p_sys->p_input );
458         p_sys->p_input = NULL;
459     }
460
461     if( p_sys->p_playlist )
462     {
463         vlc_object_release( p_sys->p_playlist );
464         p_sys->p_playlist = NULL;
465     }
466 }
467
468 /****************************************************************************
469  * HttpCallback:
470  ****************************************************************************
471  * a file with b_html is parsed and all "macro" replaced
472  ****************************************************************************/
473 static void Callback404( httpd_file_sys_t *p_args, char **pp_data,
474                          int *pi_data )
475 {
476     char *p = *pp_data = malloc( 10240 );
477     if( !p )
478     {
479         return;
480     }
481     p += sprintf( p, "Content-Type: text/html\n" );
482     p += sprintf( p, "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n" );
483     p += sprintf( p, "<head>\n" );
484     p += sprintf( p, "<title>Error loading %s</title>\n", p_args->file );
485     p += sprintf( p, "</head>\n" );
486     p += sprintf( p, "<body>\n" );
487     p += sprintf( p, "<h1><center>Error loading %s for %s</center></h1>\n", p_args->file, p_args->name );
488     p += sprintf( p, "<a href=\"http://www.videolan.org/\">VideoLAN</a>\n" );
489     p += sprintf( p, "</body>\n" );
490     p += sprintf( p, "</html>\n" );
491
492     *pi_data = strlen( *pp_data );
493 }
494
495 static void ParseExecute( httpd_file_sys_t *p_args, char *p_buffer,
496                           int i_buffer, char *p_request,
497                           char **pp_data, int *pi_data )
498 {
499     int i_request = p_request != NULL ? strlen( p_request ) : 0;
500     char *dst;
501     vlc_value_t val;
502     char position[4]; /* percentage */
503     char time[12]; /* in seconds */
504     char length[12]; /* in seconds */
505     audio_volume_t i_volume;
506     char volume[5];
507     char state[8];
508     char stats[20];
509
510 #define p_sys p_args->p_intf->p_sys
511     if( p_sys->p_input )
512     {
513         var_Get( p_sys->p_input, "position", &val);
514         sprintf( position, "%d" , (int)((val.f_float) * 100.0));
515         var_Get( p_sys->p_input, "time", &val);
516         sprintf( time, "%d" , (int)(val.i_time / 1000000) );
517         var_Get( p_sys->p_input, "length", &val);
518         sprintf( length, "%d" , (int)(val.i_time / 1000000) );
519
520         var_Get( p_sys->p_input, "state", &val );
521         if( val.i_int == PLAYING_S )
522         {
523             sprintf( state, "playing" );
524         }
525         else if( val.i_int == OPENING_S )
526         {
527             sprintf( state, "opening/connecting" );
528         }
529         else if( val.i_int == BUFFERING_S )
530         {
531             sprintf( state, "buffering" );
532         }
533         else if( val.i_int == PAUSE_S )
534         {
535             sprintf( state, "paused" );
536         }
537         else
538         {
539             sprintf( state, "stop" );
540         }
541     }
542     else
543     {
544         sprintf( position, "%d", 0 );
545         sprintf( time, "%d", 0 );
546         sprintf( length, "%d", 0 );
547         sprintf( state, "stop" );
548     }
549 #undef p_sys
550
551     aout_VolumeGet( p_args->p_intf, &i_volume );
552     sprintf( volume, "%d", (int)i_volume );
553
554     p_args->vars = E_(mvar_New)( "variables", "" );
555     E_(mvar_AppendNewVar)( p_args->vars, "url_param",
556                            i_request > 0 ? "1" : "0" );
557     E_(mvar_AppendNewVar)( p_args->vars, "url_value", p_request );
558     E_(mvar_AppendNewVar)( p_args->vars, "version", VLC_Version() );
559     E_(mvar_AppendNewVar)( p_args->vars, "copyright", COPYRIGHT_MESSAGE );
560     E_(mvar_AppendNewVar)( p_args->vars, "vlc_compile_by", VLC_CompileBy() );
561     E_(mvar_AppendNewVar)( p_args->vars, "vlc_compile_host",
562                            VLC_CompileHost() );
563     E_(mvar_AppendNewVar)( p_args->vars, "vlc_compile_domain",
564                            VLC_CompileDomain() );
565     E_(mvar_AppendNewVar)( p_args->vars, "vlc_compiler", VLC_Compiler() );
566 #ifndef HAVE_SHARED_LIBVLC
567     E_(mvar_AppendNewVar)( p_args->vars, "vlc_changeset", VLC_Changeset() );
568 #endif
569     E_(mvar_AppendNewVar)( p_args->vars, "stream_position", position );
570     E_(mvar_AppendNewVar)( p_args->vars, "stream_time", time );
571     E_(mvar_AppendNewVar)( p_args->vars, "stream_length", length );
572     E_(mvar_AppendNewVar)( p_args->vars, "volume", volume );
573     E_(mvar_AppendNewVar)( p_args->vars, "stream_state", state );
574     E_(mvar_AppendNewVar)( p_args->vars, "charset", ((intf_sys_t *)p_args->p_intf->p_sys)->psz_charset );
575
576     /* Stats */
577 #define p_sys p_args->p_intf->p_sys
578     if( p_sys->p_input )
579     {
580         input_item_t *p_item = p_sys->p_input->input.p_item;
581         if( p_item )
582         {
583             vlc_mutex_lock( &p_item->p_stats->lock );
584 #define STATS_INT( n ) sprintf( stats, "%d", p_item->p_stats->i_ ## n ); \
585                        E_(mvar_AppendNewVar)( p_args->vars, #n, stats );
586 #define STATS_FLOAT( n ) sprintf( stats, "%f", p_item->p_stats->f_ ## n ); \
587                        E_(mvar_AppendNewVar)( p_args->vars, #n, stats );
588             STATS_INT( read_bytes )
589             STATS_FLOAT( input_bitrate )
590             STATS_INT( demux_read_bytes )
591             STATS_FLOAT( demux_bitrate )
592             STATS_INT( decoded_video )
593             STATS_INT( displayed_pictures )
594             STATS_INT( lost_pictures )
595             STATS_INT( decoded_audio )
596             STATS_INT( played_abuffers )
597             STATS_INT( lost_abuffers )
598             STATS_INT( sent_packets )
599             STATS_INT( sent_bytes )
600             STATS_FLOAT( send_bitrate )
601 #undef STATS_INT
602 #undef STATS_FLOAT
603             vlc_mutex_unlock( &p_item->p_stats->lock );
604         }
605     }
606 #undef p_sys
607
608     E_(SSInit)( &p_args->stack );
609
610     /* allocate output */
611     *pi_data = i_buffer + 1000;
612     dst = *pp_data = malloc( *pi_data );
613
614     /* we parse executing all  <vlc /> macros */
615     E_(Execute)( p_args, p_request, i_request, pp_data, pi_data, &dst,
616                  &p_buffer[0], &p_buffer[i_buffer] );
617
618     *dst     = '\0';
619     *pi_data = dst - *pp_data;
620
621     E_(SSClean)( &p_args->stack );
622     E_(mvar_Delete)( p_args->vars );
623 }
624
625 int  E_(HttpCallback)( httpd_file_sys_t *p_args,
626                        httpd_file_t *p_file,
627                        uint8_t *_p_request,
628                        uint8_t **_pp_data, int *pi_data )
629 {
630     char *p_request = (char *)_p_request;
631     char **pp_data = (char **)_pp_data;
632     FILE *f;
633
634     /* FIXME: do we need character encoding translation here? */
635     if( ( f = fopen( p_args->file, "r" ) ) == NULL )
636     {
637         Callback404( p_args, pp_data, pi_data );
638         return VLC_SUCCESS;
639     }
640
641     if( !p_args->b_html )
642     {
643         E_(FileLoad)( f, pp_data, pi_data );
644     }
645     else
646     {
647         int  i_buffer;
648         char *p_buffer;
649
650         /* first we load in a temporary buffer */
651         E_(FileLoad)( f, &p_buffer, &i_buffer );
652
653         ParseExecute( p_args, p_buffer, i_buffer, p_request, pp_data, pi_data );
654
655         free( p_buffer );
656     }
657
658     fclose( f );
659
660     return VLC_SUCCESS;
661 }
662
663 /****************************************************************************
664  * HandlerCallback:
665  ****************************************************************************
666  * call the external handler and parse vlc macros if Content-Type is HTML
667  ****************************************************************************/
668 int  E_(HandlerCallback)( httpd_handler_sys_t *p_args,
669                           httpd_handler_t *p_handler, char *_p_url,
670                           uint8_t *_p_request, int i_type,
671                           uint8_t *_p_in, int i_in,
672                           char *psz_remote_addr, char *psz_remote_host,
673                           uint8_t **_pp_data, int *pi_data )
674 {
675     char *p_url = (char *)_p_url;
676     char *p_request = (char *)_p_request;
677     char **pp_data = (char **)_pp_data;
678     char *p_in = (char *)p_in;
679     int i_request = p_request != NULL ? strlen( p_request ) : 0;
680     char *p;
681     int i_env = 0;
682     char **ppsz_env = NULL;
683     char *psz_tmp;
684     char sep;
685     int  i_buffer;
686     char *p_buffer;
687     char *psz_cwd, *psz_file = NULL;
688     int i_ret;
689
690 #ifdef WIN32
691     sep = '\\';
692 #else
693     sep = '/';
694 #endif
695
696     /* Create environment for the CGI */
697     TAB_APPEND( i_env, ppsz_env, strdup("GATEWAY_INTERFACE=CGI/1.1") );
698     TAB_APPEND( i_env, ppsz_env, strdup("SERVER_PROTOCOL=HTTP/1.1") );
699     TAB_APPEND( i_env, ppsz_env, strdup("SERVER_SOFTWARE=" COPYRIGHT_MESSAGE) );
700
701     switch( i_type )
702     {
703     case HTTPD_MSG_GET:
704         TAB_APPEND( i_env, ppsz_env, strdup("REQUEST_METHOD=GET") );
705         break;
706     case HTTPD_MSG_POST:
707         TAB_APPEND( i_env, ppsz_env, strdup("REQUEST_METHOD=POST") );
708         break;
709     case HTTPD_MSG_HEAD:
710         TAB_APPEND( i_env, ppsz_env, strdup("REQUEST_METHOD=HEAD") );
711         break;
712     default:
713         break;
714     }
715
716     if( i_request )
717     {
718         psz_tmp = malloc( sizeof("QUERY_STRING=") + i_request );
719         sprintf( psz_tmp, "QUERY_STRING=%s", p_request );
720         TAB_APPEND( i_env, ppsz_env, psz_tmp );
721
722         psz_tmp = malloc( sizeof("REQUEST_URI=?") + strlen(p_url)
723                            + i_request );
724         sprintf( psz_tmp, "REQUEST_URI=%s?%s", p_url, p_request );
725         TAB_APPEND( i_env, ppsz_env, psz_tmp );
726     }
727     else
728     {
729         psz_tmp = malloc( sizeof("REQUEST_URI=") + strlen(p_url) );
730         sprintf( psz_tmp, "REQUEST_URI=%s", p_url );
731         TAB_APPEND( i_env, ppsz_env, psz_tmp );
732     }
733
734     psz_tmp = malloc( sizeof("SCRIPT_NAME=") + strlen(p_url) );
735     sprintf( psz_tmp, "SCRIPT_NAME=%s", p_url );
736     TAB_APPEND( i_env, ppsz_env, psz_tmp );
737
738 #define p_sys p_args->file.p_intf->p_sys
739     psz_tmp = malloc( sizeof("SERVER_NAME=") + strlen(p_sys->psz_address) );
740     sprintf( psz_tmp, "SERVER_NAME=%s", p_sys->psz_address );
741     TAB_APPEND( i_env, ppsz_env, psz_tmp );
742
743     psz_tmp = malloc( sizeof("SERVER_PORT=") + 5 );
744     sprintf( psz_tmp, "SERVER_PORT=%u", p_sys->i_port );
745     TAB_APPEND( i_env, ppsz_env, psz_tmp );
746 #undef p_sys
747
748     p = getenv( "PATH" );
749     if( p != NULL )
750     {
751         psz_tmp = malloc( sizeof("PATH=") + strlen(p) );
752         sprintf( psz_tmp, "PATH=%s", p );
753         TAB_APPEND( i_env, ppsz_env, psz_tmp );
754     }
755
756 #ifdef WIN32
757     p = getenv( "windir" );
758     if( p != NULL )
759     {
760         psz_tmp = malloc( sizeof("SYSTEMROOT=") + strlen(p) );
761         sprintf( psz_tmp, "SYSTEMROOT=%s", p );
762         TAB_APPEND( i_env, ppsz_env, psz_tmp );
763     }
764 #endif
765
766     if( psz_remote_addr != NULL && *psz_remote_addr )
767     {
768         psz_tmp = malloc( sizeof("REMOTE_ADDR=") + strlen(psz_remote_addr) );
769         sprintf( psz_tmp, "REMOTE_ADDR=%s", psz_remote_addr );
770         TAB_APPEND( i_env, ppsz_env, psz_tmp );
771     }
772
773     if( psz_remote_host != NULL && *psz_remote_host )
774     {
775         psz_tmp = malloc( sizeof("REMOTE_HOST=") + strlen(psz_remote_host) );
776         sprintf( psz_tmp, "REMOTE_HOST=%s", psz_remote_host );
777         TAB_APPEND( i_env, ppsz_env, psz_tmp );
778     }
779
780     if( i_in )
781     {
782         p = p_in;
783         for ( ; ; )
784         {
785             if( !strncasecmp( p, "Content-Type: ", strlen("Content-Type: ") ) )
786             {
787                 char *end = strchr( p, '\r' );
788                 if( end == NULL )
789                     break;
790                 *end = '\0';
791                 psz_tmp = malloc( sizeof("CONTENT_TYPE=") + strlen(p) );
792                 sprintf( psz_tmp, "CONTENT_TYPE=%s", p );
793                 TAB_APPEND( i_env, ppsz_env, psz_tmp );
794                 *end = '\r';
795             }
796             if( !strncasecmp( p, "Content-Length: ",
797                               strlen("Content-Length: ") ) )
798             {
799                 char *end = strchr( p, '\r' );
800                 if( end == NULL )
801                     break;
802                 *end = '\0';
803                 psz_tmp = malloc( sizeof("CONTENT_LENGTH=") + strlen(p) );
804                 sprintf( psz_tmp, "CONTENT_LENGTH=%s", p );
805                 TAB_APPEND( i_env, ppsz_env, psz_tmp );
806                 *end = '\r';
807             }
808
809             p = strchr( p, '\n' );
810             if( p == NULL || p[1] == '\r' )
811             {
812                 p = NULL;
813                 break;
814             }
815             p++;
816         }
817     }
818
819     psz_file = strrchr( p_args->file.file, sep );
820     if( psz_file != NULL )
821     {
822         psz_file++;
823         psz_tmp = malloc( sizeof("SCRIPT_FILENAME=") + strlen(psz_file) );
824         sprintf( psz_tmp, "SCRIPT_FILENAME=%s", psz_file );
825         TAB_APPEND( i_env, ppsz_env, psz_tmp );
826
827         TAB_APPEND( p_args->p_association->i_argc,
828                     p_args->p_association->ppsz_argv, psz_file );
829     }
830
831     TAB_APPEND( i_env, ppsz_env, NULL );
832
833     TAB_APPEND( p_args->p_association->i_argc, p_args->p_association->ppsz_argv,
834                 NULL );
835
836     psz_tmp = strdup( p_args->file.file );
837     p = strrchr( psz_tmp, sep );
838     if( p != NULL )
839     {
840         *p = '\0';
841         psz_cwd = psz_tmp;
842     }
843     else
844     {
845         free( psz_tmp );
846         psz_cwd = NULL;
847     }
848
849     i_ret = vlc_execve( p_args->file.p_intf, p_args->p_association->i_argc,
850                         p_args->p_association->ppsz_argv, ppsz_env, psz_cwd,
851                         (char *)p_in, i_in, &p_buffer, &i_buffer );
852     TAB_REMOVE( p_args->p_association->i_argc, p_args->p_association->ppsz_argv,
853                 NULL );
854     TAB_REMOVE( p_args->p_association->i_argc, p_args->p_association->ppsz_argv,
855                 psz_file );
856     if( psz_cwd != NULL )
857         free( psz_cwd );
858     while( i_env )
859         TAB_REMOVE( i_env, ppsz_env, ppsz_env[0] );
860
861     if( i_ret == -1 )
862     {
863         Callback404( (httpd_file_sys_t *)p_args, pp_data, pi_data );
864         return VLC_SUCCESS;
865     }
866     p = p_buffer;
867     while( strncasecmp( p, "Content-Type: text/html",
868                         strlen("Content-Type: text/html") ) )
869     {
870         p = strchr( p, '\n' );
871         if( p == NULL || p[1] == '\r' )
872         {
873             p = NULL;
874             break;
875         }
876         p++;
877     }
878
879     if( p == NULL )
880     {
881         *pp_data = p_buffer;
882         *pi_data = i_buffer;
883     }
884     else
885     {
886         ParseExecute( (httpd_file_sys_t *)p_args, p_buffer, i_buffer,
887                       p_request, pp_data, pi_data );
888
889         free( p_buffer );
890     }
891
892     return VLC_SUCCESS;
893 }