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