http.c 27.7 KB
Newer Older
1 2 3
/*****************************************************************************
 * http.c : HTTP/HTTPS Remote control interface
 *****************************************************************************
4
 * Copyright (C) 2001-2006 the VideoLAN team
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * Authors: Gildas Bazin <gbazin@netcourrier.com>
 *          Laurent Aimar <fenrir@via.ecp.fr>
 *          Christophe Massiot <massiot@via.ecp.fr>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
Antoine Cellerier's avatar
Antoine Cellerier committed
22
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23
 *****************************************************************************/
24 25 26
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
27 28

#include "http.h"
29
#include <vlc_plugin.h>
Rafaël Carré's avatar
Rafaël Carré committed
30
#include <vlc_url.h>
31

32 33
#include <assert.h>

34 35 36 37 38 39 40 41
/*****************************************************************************
 * Module descriptor
 *****************************************************************************/
static int  Open ( vlc_object_t * );
static void Close( vlc_object_t * );

#define HOST_TEXT N_( "Host address" )
#define HOST_LONGTEXT N_( \
42 43
    "Address and port the HTTP interface will listen on. It defaults to " \
    "all network interfaces (0.0.0.0)." \
Christophe Mutricy's avatar
Christophe Mutricy committed
44
    " If you want the HTTP interface to be available only on the local " \
45
    "machine, enter 127.0.0.1" )
46 47
#define SRC_TEXT N_( "Source directory" )
#define SRC_LONGTEXT N_( "Source directory" )
48 49
#define HANDLERS_TEXT N_( "Handlers" )
#define HANDLERS_LONGTEXT N_( \
50
        "List of handler extensions and executable paths (for instance: " \
51
        "php=/usr/bin/php,pl=/usr/bin/perl)." )
52 53 54 55
#define ART_TEXT N_( "Export album art as /art." )
#define ART_LONGTEXT N_( \
        "Allow exporting album art for current playlist items at the " \
        "/art and /art?id=<id> URLs." )
56 57
#define CERT_TEXT N_( "Certificate file" )
#define CERT_LONGTEXT N_( "HTTP interface x509 PEM certificate file " \
58
                          "(enables SSL)." )
59
#define KEY_TEXT N_( "Private key file" )
60
#define KEY_LONGTEXT N_( "HTTP interface x509 PEM private key file." )
61 62
#define CA_TEXT N_( "Root CA file" )
#define CA_LONGTEXT N_( "HTTP interface x509 PEM trusted root CA " \
63
                        "certificates file." )
64
#define CRL_TEXT N_( "CRL file" )
65
#define CRL_LONGTEXT N_( "HTTP interace Certificates Revocation List file." )
66

67 68 69 70 71 72 73 74
vlc_module_begin ()
    set_shortname( N_("HTTP"))
    set_description( N_("HTTP remote control interface") )
    set_category( CAT_INTERFACE )
    set_subcategory( SUBCAT_INTERFACE_MAIN )
        add_string ( "http-host", NULL, NULL, HOST_TEXT, HOST_LONGTEXT, true )
        add_string ( "http-src",  NULL, NULL, SRC_TEXT,  SRC_LONGTEXT,  true )
        add_obsolete_string ( "http-charset" )
75
#if defined( HAVE_FORK ) || defined( WIN32 )
76
        add_string ( "http-handlers", NULL, NULL, HANDLERS_TEXT, HANDLERS_LONGTEXT, true )
77
#endif
78 79 80 81 82 83 84 85 86
        add_bool   ( "http-album-art", false, NULL, ART_TEXT, ART_LONGTEXT, true )
        set_section( N_("HTTP SSL" ), 0 )
        add_string ( "http-intf-cert", NULL, NULL, CERT_TEXT, CERT_LONGTEXT, true )
        add_string ( "http-intf-key",  NULL, NULL, KEY_TEXT,  KEY_LONGTEXT,  true )
        add_string ( "http-intf-ca",   NULL, NULL, CA_TEXT,   CA_LONGTEXT,   true )
        add_string ( "http-intf-crl",  NULL, NULL, CRL_TEXT,  CRL_LONGTEXT,  true )
    set_capability( "interface", 0 )
    set_callbacks( Open, Close )
vlc_module_end ()
87 88 89 90 91


/*****************************************************************************
 * Local prototypes
 *****************************************************************************/
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
92
int  ArtCallback( httpd_handler_sys_t *p_args,
93 94 95 96 97
                          httpd_handler_t *p_handler, char *_p_url,
                          uint8_t *_p_request, int i_type,
                          uint8_t *_p_in, int i_in,
                          char *psz_remote_addr, char *psz_remote_host,
                          uint8_t **pp_data, int *pi_data );
98 99 100 101 102 103 104 105

/*****************************************************************************
 * Activate: initialize and create stuff
 *****************************************************************************/
static int Open( vlc_object_t *p_this )
{
    intf_thread_t *p_intf = (intf_thread_t*)p_this;
    intf_sys_t    *p_sys;
106
    char          *psz_address;
Rémi Duraffort's avatar
Rémi Duraffort committed
107
    char          *psz_cert = NULL, *psz_key = NULL, *psz_ca = NULL,
108 109
                  *psz_crl = NULL;
    int           i_port       = 0;
110
    char          *psz_src = NULL;
111

112
    psz_address = var_CreateGetNonEmptyString( p_intf, "http-host" );
113
    if( psz_address != NULL )
114
    {
115
        char *psz_parser = strrchr( psz_address, ':' );
116 117 118 119 120 121
        if( psz_parser )
        {
            *psz_parser++ = '\0';
            i_port = atoi( psz_parser );
        }
    }
122 123
    else
        psz_address = strdup("");
124 125 126 127

    p_intf->p_sys = p_sys = malloc( sizeof( intf_sys_t ) );
    if( !p_intf->p_sys )
    {
Rémi Duraffort's avatar
Rémi Duraffort committed
128
        free( psz_address );
129 130
        return( VLC_ENOMEM );
    }
131

Antoine Cellerier's avatar
Antoine Cellerier committed
132
    p_sys->p_playlist = pl_Hold( p_this );
133 134
    p_sys->p_input    = NULL;
    p_sys->p_vlm      = NULL;
135 136
    p_sys->psz_address = psz_address;
    p_sys->i_port     = i_port;
137
    p_sys->p_art_handler = NULL;
138

139 140 141
    /* determine file handler associations */
    p_sys->i_handlers = 0;
    p_sys->pp_handlers = NULL;
142
#if defined( HAVE_FORK ) || defined( WIN32 )
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
    psz_src = config_GetPsz( p_intf, "http-handlers" );
    if( psz_src != NULL && *psz_src )
    {
        char *p = psz_src;
        while( p != NULL )
        {
            http_association_t *p_handler;
            char *psz_ext = p;
            char *psz_program, *psz_options;
            p = strchr( p, '=' );
            if( p == NULL ) break;
            *p++ = '\0';
            psz_program = p;
            p = strchr( p, ',' );
            if( p != NULL )
                *p++ = '\0';

            p_handler = malloc( sizeof( http_association_t ) );
            p_handler->psz_ext = strdup( psz_ext );
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
162
            psz_options = FirstWord( psz_program, psz_program );
163 164 165 166 167 168
            p_handler->i_argc = 0;
            p_handler->ppsz_argv = NULL;
            TAB_APPEND( p_handler->i_argc, p_handler->ppsz_argv,
                        strdup( psz_program ) );
            while( psz_options != NULL && *psz_options )
            {
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
169
                char *psz_next = FirstWord( psz_options, psz_options );
170 171 172 173 174 175 176 177 178
                TAB_APPEND( p_handler->i_argc, p_handler->ppsz_argv,
                            strdup( psz_options ) );
                psz_options = psz_next;
            }
            /* NULL will be appended later on */

            TAB_APPEND( p_sys->i_handlers, p_sys->pp_handlers, p_handler );
        }
    }
179
    free( psz_src );
180 181
#endif

182 183 184 185 186 187
    /* determine SSL configuration */
    psz_cert = config_GetPsz( p_intf, "http-intf-cert" );
    if ( psz_cert != NULL )
    {
        msg_Dbg( p_intf, "enabling TLS for HTTP interface (cert file: %s)",
                 psz_cert );
188 189 190
        psz_key = var_GetNonEmptyString( p_intf, "http-intf-key" );
        psz_ca = var_GetNonEmptyString( p_intf, "http-intf-ca" );
        psz_crl = var_GetNonEmptyString( p_intf, "http-intf-crl" );
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205

        if( i_port <= 0 )
            i_port = 8443;
    }
    else
    {
        if( i_port <= 0 )
            i_port= 8080;
    }

    msg_Dbg( p_intf, "base %s:%d", psz_address, i_port );

    p_sys->p_httpd_host = httpd_TLSHostNew( VLC_OBJECT(p_intf), psz_address,
                                            i_port, psz_cert, psz_key, psz_ca,
                                            psz_crl );
Rémi Duraffort's avatar
Rémi Duraffort committed
206 207 208 209 210
    free( psz_cert );
    free( psz_key );
    free( psz_ca );
    free( psz_crl );

211 212 213
    if( p_sys->p_httpd_host == NULL )
    {
        msg_Err( p_intf, "cannot listen on %s:%d", psz_address, i_port );
214
        pl_Release( p_this );
215
        free( p_sys->psz_address );
216 217 218
        free( p_sys );
        return VLC_EGENERIC;
    }
219 220 221 222 223 224
    else
    {
        char psz_tmp[NI_MAXHOST + 6];

        /* Ugly hack to run several HTTP servers on different ports */
        snprintf( psz_tmp, sizeof (psz_tmp), "%s:%d", psz_address, i_port + 1 );
225
        var_Create(p_intf->p_libvlc, "http-host", VLC_VAR_STRING );
226
        var_SetString( p_intf->p_libvlc, "http-host", psz_tmp );
227
    }
228 229 230 231 232

    p_sys->i_files  = 0;
    p_sys->pp_files = NULL;

    psz_src = config_GetPsz( p_intf, "http-src" );
233
    if( ( psz_src == NULL ) || ( *psz_src == '\0' ) )
234
    {
235
        char *data_path = config_GetDataDir( p_intf );
236
        if( asprintf( &psz_src, "%s" DIR_SEP "http", data_path ) == -1 )
237
            psz_src = NULL;
238
        free( data_path );
239 240 241 242
    }

    if( !psz_src || *psz_src == '\0' )
    {
243
        msg_Err( p_intf, "invalid web interface source directory" );
244 245 246 247 248 249 250 251 252 253
        goto failed;
    }

    /* remove trainling \ or / */
    if( psz_src[strlen( psz_src ) - 1] == '\\' ||
        psz_src[strlen( psz_src ) - 1] == '/' )
    {
        psz_src[strlen( psz_src ) - 1] = '\0';
    }

Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
254
    ParseDirectory( p_intf, psz_src, psz_src );
255 256 257 258 259 260 261
    if( p_sys->i_files <= 0 )
    {
        msg_Err( p_intf, "cannot find any file in directory %s", psz_src );
        goto failed;
    }

    free( psz_src );
262

263
    if( config_GetInt( p_intf, "http-album-art" ) )
264
    {
265 266 267 268 269 270 271 272 273 274
        /* FIXME: we're leaking h */
        httpd_handler_sys_t *h = malloc( sizeof( httpd_handler_sys_t ) );
        if( !h )
            goto failed;
        h->file.p_intf = p_intf;
        h->file.file = NULL;
        h->file.name = NULL;
        /* TODO: use ACL and login/password stuff here too */
        h->p_handler = httpd_HandlerNew( p_sys->p_httpd_host,
                                         "/art", NULL, NULL, NULL,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
275
                                         ArtCallback, h );
276
        p_sys->p_art_handler = h->p_handler;
277
    }
278 279 280 281

    return VLC_SUCCESS;

failed:
282 283
    free( psz_src );
    free( p_sys->pp_files );
284
    httpd_HostDelete( p_sys->p_httpd_host );
285
    free( p_sys->psz_address );
286
    free( p_sys );
287
    pl_Release( p_this );
288 289 290 291 292 293 294 295 296 297 298 299
    return VLC_EGENERIC;
}

/*****************************************************************************
 * Close: destroy interface
 *****************************************************************************/
static void Close ( vlc_object_t *p_this )
{
    intf_thread_t *p_intf = (intf_thread_t *)p_this;
    intf_sys_t    *p_sys = p_intf->p_sys;
    int i;

300
#ifdef ENABLE_VLM
301 302
    if( p_sys->p_vlm )
        vlm_Delete( p_sys->p_vlm );
303
#endif
304 305
    for( i = 0; i < p_sys->i_files; i++ )
    {
306 307 308 309 310 311 312 313 314 315 316 317
        if( p_sys->pp_files[i]->b_handler )
            httpd_HandlerDelete( ((httpd_handler_sys_t *)p_sys->pp_files[i])->p_handler );
        else
            httpd_FileDelete( p_sys->pp_files[i]->p_file );
        if( p_sys->pp_files[i]->p_redir )
            httpd_RedirectDelete( p_sys->pp_files[i]->p_redir );
        if( p_sys->pp_files[i]->p_redir2 )
            httpd_RedirectDelete( p_sys->pp_files[i]->p_redir2 );

        free( p_sys->pp_files[i]->file );
        free( p_sys->pp_files[i]->name );
        free( p_sys->pp_files[i] );
318
    }
319
    free( p_sys->pp_files );
320 321 322 323 324 325 326 327 328 329 330 331 332
    for( i = 0; i < p_sys->i_handlers; i++ )
    {
        http_association_t *p_handler = p_sys->pp_handlers[i];
        int j;
        free( p_handler->psz_ext );
        for( j = 0; j < p_handler->i_argc; j++ )
            free( p_handler->ppsz_argv[j] );
        if( p_handler->i_argc )
            free( p_handler->ppsz_argv );
        free( p_handler );
    }
    if( p_sys->i_handlers )
        free( p_sys->pp_handlers );
333 334
    if( p_sys->p_art_handler )
        httpd_HandlerDelete( p_sys->p_art_handler );
335
    httpd_HostDelete( p_sys->p_httpd_host );
336
    free( p_sys->psz_address );
337
    free( p_sys );
338
    pl_Release( p_this );
339 340 341 342 343 344 345
}

/****************************************************************************
 * HttpCallback:
 ****************************************************************************
 * a file with b_html is parsed and all "macro" replaced
 ****************************************************************************/
346 347 348 349 350 351 352 353
static void Callback404( httpd_file_sys_t *p_args, char **pp_data,
                         int *pi_data )
{
    char *p = *pp_data = malloc( 10240 );
    if( !p )
    {
        return;
    }
Christophe Mutricy's avatar
Christophe Mutricy committed
354 355
    p += sprintf( p, "Content-Type: text/html\n" );
    p += sprintf( p, "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n" );
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
    p += sprintf( p, "<head>\n" );
    p += sprintf( p, "<title>Error loading %s</title>\n", p_args->file );
    p += sprintf( p, "</head>\n" );
    p += sprintf( p, "<body>\n" );
    p += sprintf( p, "<h1><center>Error loading %s for %s</center></h1>\n", p_args->file, p_args->name );
    p += sprintf( p, "<a href=\"http://www.videolan.org/\">VideoLAN</a>\n" );
    p += sprintf( p, "</body>\n" );
    p += sprintf( p, "</html>\n" );

    *pi_data = strlen( *pp_data );
}

static void ParseExecute( httpd_file_sys_t *p_args, char *p_buffer,
                          int i_buffer, char *p_request,
                          char **pp_data, int *pi_data )
{
372
    intf_sys_t *p_sys = p_args->p_intf->p_sys;
373 374 375 376 377 378 379 380
    int i_request = p_request != NULL ? strlen( p_request ) : 0;
    char *dst;
    vlc_value_t val;
    char position[4]; /* percentage */
    char time[12]; /* in seconds */
    char length[12]; /* in seconds */
    audio_volume_t i_volume;
    char volume[5];
381
    const char *state;
382
    char stats[20];
383

384 385
    assert( p_sys->p_input == NULL );
    /* FIXME: proper locking anyone? */
386
    p_sys->p_input = playlist_CurrentInput( p_sys->p_playlist );
387 388 389 390 391
    if( p_sys->p_input )
    {
        var_Get( p_sys->p_input, "position", &val);
        sprintf( position, "%d" , (int)((val.f_float) * 100.0));
        var_Get( p_sys->p_input, "time", &val);
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
392
        sprintf( time, "%"PRIi64, (int64_t)val.i_time / INT64_C(1000000) );
393
        var_Get( p_sys->p_input, "length", &val);
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
394
        sprintf( length, "%"PRIi64, (int64_t)val.i_time / INT64_C(1000000) );
395 396 397 398

        var_Get( p_sys->p_input, "state", &val );
        if( val.i_int == PLAYING_S )
        {
399
            state = "playing";
400
        }
401 402
        else if( val.i_int == OPENING_S )
        {
403
            state = "opening/connecting";
404
        }
405 406
        else if( val.i_int == PAUSE_S )
        {
407
            state = "paused";
408 409 410
        }
        else
        {
411
            state = "stop";
412 413 414 415 416 417 418
        }
    }
    else
    {
        sprintf( position, "%d", 0 );
        sprintf( time, "%d", 0 );
        sprintf( length, "%d", 0 );
419
        state = "stop";
420 421
    }

422
    aout_VolumeGet( p_sys->p_playlist, &i_volume );
423 424
    sprintf( volume, "%d", (int)i_volume );

Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
425 426
    p_args->vars = mvar_New( "variables", "" );
    mvar_AppendNewVar( p_args->vars, "url_param",
427
                           i_request > 0 ? "1" : "0" );
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
428 429 430 431 432
    mvar_AppendNewVar( p_args->vars, "url_value", p_request );
    mvar_AppendNewVar( p_args->vars, "version", VLC_Version() );
    mvar_AppendNewVar( p_args->vars, "copyright", COPYRIGHT_MESSAGE );
    mvar_AppendNewVar( p_args->vars, "vlc_compile_by", VLC_CompileBy() );
    mvar_AppendNewVar( p_args->vars, "vlc_compile_host",
433
                           VLC_CompileHost() );
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
434
    mvar_AppendNewVar( p_args->vars, "vlc_compile_domain",
435
                           VLC_CompileDomain() );
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
436 437 438 439 440 441 442
    mvar_AppendNewVar( p_args->vars, "vlc_compiler", VLC_Compiler() );
    mvar_AppendNewVar( p_args->vars, "stream_position", position );
    mvar_AppendNewVar( p_args->vars, "stream_time", time );
    mvar_AppendNewVar( p_args->vars, "stream_length", length );
    mvar_AppendNewVar( p_args->vars, "volume", volume );
    mvar_AppendNewVar( p_args->vars, "stream_state", state );
    mvar_AppendNewVar( p_args->vars, "charset", "UTF-8" );
443

444 445 446
    /* Stats */
    if( p_sys->p_input )
    {
447 448 449 450 451
        /* FIXME: Workarround a stupid assert in input_GetItem */
        input_item_t *p_item = p_sys->p_input && p_sys->p_input->p
                               ? input_GetItem( p_sys->p_input )
                               : NULL;

452 453 454 455
        if( p_item )
        {
            vlc_mutex_lock( &p_item->p_stats->lock );
#define STATS_INT( n ) sprintf( stats, "%d", p_item->p_stats->i_ ## n ); \
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
456
                       mvar_AppendNewVar( p_args->vars, #n, stats );
457
#define STATS_FLOAT( n ) sprintf( stats, "%f", p_item->p_stats->f_ ## n ); \
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
458
                       mvar_AppendNewVar( p_args->vars, #n, stats );
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
            STATS_INT( read_bytes )
            STATS_FLOAT( input_bitrate )
            STATS_INT( demux_read_bytes )
            STATS_FLOAT( demux_bitrate )
            STATS_INT( decoded_video )
            STATS_INT( displayed_pictures )
            STATS_INT( lost_pictures )
            STATS_INT( decoded_audio )
            STATS_INT( played_abuffers )
            STATS_INT( lost_abuffers )
            STATS_INT( sent_packets )
            STATS_INT( sent_bytes )
            STATS_FLOAT( send_bitrate )
#undef STATS_INT
#undef STATS_FLOAT
            vlc_mutex_unlock( &p_item->p_stats->lock );
        }
    }

Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
478
    SSInit( &p_args->stack );
479 480 481 482 483 484

    /* allocate output */
    *pi_data = i_buffer + 1000;
    dst = *pp_data = malloc( *pi_data );

    /* we parse executing all  <vlc /> macros */
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
485
    Execute( p_args, p_request, i_request, pp_data, pi_data, &dst,
486 487 488 489 490
                 &p_buffer[0], &p_buffer[i_buffer] );

    *dst     = '\0';
    *pi_data = dst - *pp_data;

491 492 493 494 495
    if( p_sys->p_input != NULL )
    {
        vlc_object_release( p_sys->p_input );
        p_sys->p_input = NULL;
    }
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
496 497
    SSClean( &p_args->stack );
    mvar_Delete( p_args->vars );
498 499
}

Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
500
int  HttpCallback( httpd_file_sys_t *p_args,
501 502 503 504
                       httpd_file_t *p_file,
                       uint8_t *_p_request,
                       uint8_t **_pp_data, int *pi_data )
{
Rafaël Carré's avatar
Rafaël Carré committed
505
    VLC_UNUSED(p_file);
506 507 508 509
    char *p_request = (char *)_p_request;
    char **pp_data = (char **)_pp_data;
    FILE *f;

510
    if( ( f = utf8_fopen( p_args->file, "r" ) ) == NULL )
511
    {
512
        Callback404( p_args, pp_data, pi_data );
513 514 515 516 517
        return VLC_SUCCESS;
    }

    if( !p_args->b_html )
    {
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
518
        FileLoad( f, pp_data, pi_data );
519 520 521 522 523
    }
    else
    {
        int  i_buffer;
        char *p_buffer;
524 525

        /* first we load in a temporary buffer */
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
526
        FileLoad( f, &p_buffer, &i_buffer );
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542

        ParseExecute( p_args, p_buffer, i_buffer, p_request, pp_data, pi_data );

        free( p_buffer );
    }

    fclose( f );

    return VLC_SUCCESS;
}

/****************************************************************************
 * HandlerCallback:
 ****************************************************************************
 * call the external handler and parse vlc macros if Content-Type is HTML
 ****************************************************************************/
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
543
int  HandlerCallback( httpd_handler_sys_t *p_args,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
544
                          httpd_handler_t *p_handler, char *_p_url,
545 546 547 548 549
                          uint8_t *_p_request, int i_type,
                          uint8_t *_p_in, int i_in,
                          char *psz_remote_addr, char *psz_remote_host,
                          uint8_t **_pp_data, int *pi_data )
{
Rafaël Carré's avatar
Rafaël Carré committed
550
    VLC_UNUSED(p_handler); VLC_UNUSED(_p_in);
551 552 553
    char *p_url = (char *)_p_url;
    char *p_request = (char *)_p_request;
    char **pp_data = (char **)_pp_data;
554
    char *p_in = (char *)_p_in;
555 556 557
    int i_request = p_request != NULL ? strlen( p_request ) : 0;
    char *p;
    int i_env = 0;
558
    char **ppsz_env = NULL;
559
    char *psz_tmp;
560
    size_t i_buffer;
561
    char *p_buffer;
562
    char *psz_cwd, *psz_file = NULL;
563
    int i_ret;
564 565

    /* Create environment for the CGI */
566 567 568
    TAB_APPEND( i_env, ppsz_env, strdup("GATEWAY_INTERFACE=CGI/1.1") );
    TAB_APPEND( i_env, ppsz_env, strdup("SERVER_PROTOCOL=HTTP/1.1") );
    TAB_APPEND( i_env, ppsz_env, strdup("SERVER_SOFTWARE=" COPYRIGHT_MESSAGE) );
569 570 571 572

    switch( i_type )
    {
    case HTTPD_MSG_GET:
573
        TAB_APPEND( i_env, ppsz_env, strdup("REQUEST_METHOD=GET") );
574 575
        break;
    case HTTPD_MSG_POST:
576
        TAB_APPEND( i_env, ppsz_env, strdup("REQUEST_METHOD=POST") );
577 578
        break;
    case HTTPD_MSG_HEAD:
579
        TAB_APPEND( i_env, ppsz_env, strdup("REQUEST_METHOD=HEAD") );
580 581 582 583 584 585 586
        break;
    default:
        break;
    }

    if( i_request )
    {
587 588
        if( -1==asprintf( &psz_tmp, "QUERY_STRING=%s", p_request ) )
            psz_tmp = NULL;
589
        TAB_APPEND( i_env, ppsz_env, psz_tmp );
590

591 592
        if( -1==asprintf( &psz_tmp, "REQUEST_URI=%s?%s", p_url, p_request ) )
            psz_tmp = NULL;
593
        TAB_APPEND( i_env, ppsz_env, psz_tmp );
594 595 596
    }
    else
    {
597 598
        if( -1==asprintf( &psz_tmp, "REQUEST_URI=%s", p_url ) )
            psz_tmp = NULL;
599
        TAB_APPEND( i_env, ppsz_env, psz_tmp );
600 601
    }

602 603
    if( -1==asprintf( &psz_tmp, "SCRIPT_NAME=%s", p_url ) )
        psz_tmp = NULL;
604
    TAB_APPEND( i_env, ppsz_env, psz_tmp );
605 606

#define p_sys p_args->file.p_intf->p_sys
607 608
    if( -1==asprintf( &psz_tmp, "SERVER_NAME=%s", p_sys->psz_address ) )
        psz_tmp = NULL;
609
    TAB_APPEND( i_env, ppsz_env, psz_tmp );
610

611 612
    if( -1==asprintf( &psz_tmp, "SERVER_PORT=%u", p_sys->i_port ) )
        psz_tmp = NULL;
613
    TAB_APPEND( i_env, ppsz_env, psz_tmp );
614 615
#undef p_sys

616 617 618
    p = getenv( "PATH" );
    if( p != NULL )
    {
619 620
        if( -1==asprintf( &psz_tmp, "PATH=%s", p ) )
            psz_tmp = NULL;
621 622 623
        TAB_APPEND( i_env, ppsz_env, psz_tmp );
    }

624 625 626 627
#ifdef WIN32
    p = getenv( "windir" );
    if( p != NULL )
    {
628 629
        if( -1==asprintf( &psz_tmp, "SYSTEMROOT=%s", p ) )
            psz_tmp = NULL;
630 631 632 633
        TAB_APPEND( i_env, ppsz_env, psz_tmp );
    }
#endif

634 635
    if( psz_remote_addr != NULL && *psz_remote_addr )
    {
636 637
        if( -1==asprintf( &psz_tmp, "REMOTE_ADDR=%s", psz_remote_addr ) )
            psz_tmp = NULL;
638
        TAB_APPEND( i_env, ppsz_env, psz_tmp );
639 640 641 642
    }

    if( psz_remote_host != NULL && *psz_remote_host )
    {
643 644
        if( -1==asprintf( &psz_tmp, "REMOTE_HOST=%s", psz_remote_host ) )
            psz_tmp = NULL;
645
        TAB_APPEND( i_env, ppsz_env, psz_tmp );
646 647 648 649 650 651
    }

    if( i_in )
    {
        p = p_in;
        for ( ; ; )
652
        {
653
            if( !strncasecmp( p, "Content-Type: ", strlen("Content-Type: ") ) )
654
            {
655 656 657 658
                char *end = strchr( p, '\r' );
                if( end == NULL )
                    break;
                *end = '\0';
659 660
                if( -1==asprintf( &psz_tmp, "CONTENT_TYPE=%s", p ) )
                    psz_tmp = NULL;
661
                TAB_APPEND( i_env, ppsz_env, psz_tmp );
662
                *end = '\r';
663
            }
664 665
            if( !strncasecmp( p, "Content-Length: ",
                              strlen("Content-Length: ") ) )
666
            {
667 668 669 670
                char *end = strchr( p, '\r' );
                if( end == NULL )
                    break;
                *end = '\0';
671 672
                if( -1==asprintf( &psz_tmp, "CONTENT_LENGTH=%s", p ) )
                    psz_tmp = NULL;
673
                TAB_APPEND( i_env, ppsz_env, psz_tmp );
674
                *end = '\r';
675
            }
676 677 678

            p = strchr( p, '\n' );
            if( p == NULL || p[1] == '\r' )
679
            {
680 681
                p = NULL;
                break;
682
            }
683
            p++;
684
        }
685
    }
686

687
    psz_file = strrchr( p_args->file.file, DIR_SEP_CHAR );
688
    if( psz_file != NULL )
689
    {
690
        psz_file++;
691 692
        if( -1==asprintf( &psz_tmp, "SCRIPT_FILENAME=%s", psz_file ) )
            psz_tmp = NULL;
693 694 695
        TAB_APPEND( i_env, ppsz_env, psz_tmp );

        TAB_APPEND( p_args->p_association->i_argc,
696
                    p_args->p_association->ppsz_argv, psz_file );
697 698
    }

699
    TAB_APPEND( i_env, ppsz_env, NULL );
700

701 702
    TAB_APPEND( p_args->p_association->i_argc, p_args->p_association->ppsz_argv,
                NULL );
703

704
    psz_tmp = strdup( p_args->file.file );
705
    p = strrchr( psz_tmp, DIR_SEP_CHAR );
706 707 708 709 710 711 712 713 714 715
    if( p != NULL )
    {
        *p = '\0';
        psz_cwd = psz_tmp;
    }
    else
    {
        free( psz_tmp );
        psz_cwd = NULL;
    }
716

717 718 719
    i_ret = vlc_execve( p_args->file.p_intf, p_args->p_association->i_argc,
                        p_args->p_association->ppsz_argv, ppsz_env, psz_cwd,
                        (char *)p_in, i_in, &p_buffer, &i_buffer );
720 721 722
    TAB_REMOVE( p_args->p_association->i_argc, p_args->p_association->ppsz_argv,
                NULL );
    TAB_REMOVE( p_args->p_association->i_argc, p_args->p_association->ppsz_argv,
723
                psz_file );
724
    free( psz_cwd );
725 726
    while( i_env )
        TAB_REMOVE( i_env, ppsz_env, ppsz_env[0] );
727

728 729 730 731 732
    if( i_ret == -1 )
    {
        Callback404( (httpd_file_sys_t *)p_args, pp_data, pi_data );
        return VLC_SUCCESS;
    }
733
    p = p_buffer;
734 735
    while( strncasecmp( p, "Content-Type: text/html",
                        strlen("Content-Type: text/html") ) )
736 737 738 739 740 741 742 743 744
    {
        p = strchr( p, '\n' );
        if( p == NULL || p[1] == '\r' )
        {
            p = NULL;
            break;
        }
        p++;
    }
745

746 747 748 749 750 751 752 753 754
    if( p == NULL )
    {
        *pp_data = p_buffer;
        *pi_data = i_buffer;
    }
    else
    {
        ParseExecute( (httpd_file_sys_t *)p_args, p_buffer, i_buffer,
                      p_request, pp_data, pi_data );
755 756 757 758 759 760

        free( p_buffer );
    }

    return VLC_SUCCESS;
}
761

Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
762
int  ArtCallback( httpd_handler_sys_t *p_args,
763
                          httpd_handler_t *p_handler, char *_p_url,
764 765
                          uint8_t *p_request, int i_type,
                          uint8_t *p_in, int i_in,
766 767 768
                          char *psz_remote_addr, char *psz_remote_host,
                          uint8_t **pp_data, int *pi_data )
{
Rafaël Carré's avatar
Rafaël Carré committed
769 770 771 772
    VLC_UNUSED(p_handler); VLC_UNUSED(_p_url); VLC_UNUSED(i_type); 
    VLC_UNUSED(p_in); VLC_UNUSED(i_in); VLC_UNUSED(psz_remote_addr); 
    VLC_UNUSED(psz_remote_host); 

773 774 775
    char *psz_art = NULL;
    intf_thread_t *p_intf = p_args->file.p_intf;
    intf_sys_t *p_sys = p_intf->p_sys;
776
    char psz_id[16];
777 778
    input_item_t *p_item = NULL;
    int i_id;
779

780 781
    psz_id[0] = '\0';
    if( p_request )
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
782
        ExtractURIValue( (char *)p_request, "id", psz_id, 15 );
783 784 785
    i_id = atoi( psz_id );
    if( i_id )
    {
786
        playlist_Lock( p_sys->p_playlist );
787
        playlist_item_t *p_pl_item = playlist_ItemGetById( p_sys->p_playlist,
788
                                                           i_id );
789 790
        if( p_pl_item )
            p_item = p_pl_item->p_input;
791
        playlist_Unlock( p_sys->p_playlist );
792 793 794 795 796 797 798 799 800
    }
    else
    {
        /* FIXME: Workarround a stupid assert in input_GetItem */
        if( p_sys->p_input && p_sys->p_input->p )
            p_item = input_GetItem( p_sys->p_input );
    }

    if( p_item )
801
    {
802
        psz_art = input_item_GetArtURL( p_item );
803 804
    }

Rafaël Carré's avatar
Rafaël Carré committed
805 806
    if( psz_art && !strncmp( psz_art, "file://", strlen( "file://" ) ) &&
        decode_URI( psz_art + 7 ) )
807 808 809 810
    {
        FILE *f;
        char *psz_ext;
        char *psz_header;
811 812
        char *p_data = NULL;
        int i_header_size, i_data;
813 814 815 816 817 818 819 820 821 822

        if( ( f = utf8_fopen( psz_art + strlen( "file://" ), "r" ) ) == NULL )
        {
            msg_Dbg( p_intf, "Couldn't open album art file %s",
                     psz_art + strlen( "file://" ) );
            Callback404( &p_args->file, (char**)pp_data, pi_data );
            free( psz_art );
            return VLC_SUCCESS;
        }

Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
823
        FileLoad( f, &p_data, &i_data );
824 825 826 827 828 829 830 831 832 833 834 835

        fclose( f );

        psz_ext = strrchr( psz_art, '.' );
        if( psz_ext ) psz_ext++;

#define HEADER  "Content-Type: image/%s\n" \
                "Content-Length: %d\n" \
                "\n"
        i_header_size = asprintf( &psz_header, HEADER, psz_ext, i_data );
#undef HEADER

836 837
        assert( i_header_size != -1 );

838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854
        *pi_data = i_header_size + i_data;
        *pp_data = (uint8_t*)malloc( *pi_data );
        memcpy( *pp_data, psz_header, i_header_size );
        memcpy( *pp_data+i_header_size, p_data, i_data );
        free( psz_header );
        free( p_data );
    }
    else
    {
        msg_Dbg( p_intf, "No album art found" );
        Callback404( &p_args->file, (char**)pp_data, pi_data );
    }

    free( psz_art );

    return VLC_SUCCESS;
}