http.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:13k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * http.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2003 VideoLAN
  5.  * $Id: http.c 9280 2004-11-11 12:31:27Z zorglub $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>
  27. #include <vlc/vlc.h>
  28. #include <vlc/sout.h>
  29. #include "vlc_httpd.h"
  30. #include "vlc_tls.h"
  31. #define FREE( p ) if( p ) { free( p); (p) = NULL; }
  32. #define DEFAULT_PORT        8080
  33. #define DEFAULT_SSL_PORT    8443
  34. /*****************************************************************************
  35.  * Module descriptor
  36.  *****************************************************************************/
  37. static int  Open ( vlc_object_t * );
  38. static void Close( vlc_object_t * );
  39. #define SOUT_CFG_PREFIX "sout-http-"
  40. #define USER_TEXT N_("Username")
  41. #define USER_LONGTEXT N_("Allows you to give a user name that will be " 
  42.                          "requested to access the stream." )
  43. #define PASS_TEXT N_("Password")
  44. #define PASS_LONGTEXT N_("Allows you to give a password that will be " 
  45.                          "requested to access the stream." )
  46. #define MIME_TEXT N_("Mime")
  47. #define MIME_LONGTEXT N_("Allows you to give the mime returned by the server." )
  48. #define CERT_TEXT N_( "Certificate file" )
  49. #define CERT_LONGTEXT N_( "Path to the x509 PEM certificate file that will "
  50.                           "be used by the HTTP/SSL stream output" )
  51. #define KEY_TEXT N_( "Private key file" )
  52. #define KEY_LONGTEXT N_( "Path to the x509 PEM private key file that will " 
  53.                          " be used by the HTTP/SSL stream output. Leave " 
  54.                          "empty if you don't have one." )
  55. #define CA_TEXT N_( "Root CA file" )
  56. #define CA_LONGTEXT N_( "Path to the x509 PEM trusted root CA certificates " 
  57.                         "(certificate authority) file that will be used by " 
  58.                         "the HTTP/SSL stream output. Leave empty if you " 
  59.                         "don't have one." )
  60. #define CRL_TEXT N_( "CRL file" )
  61. #define CRL_LONGTEXT N_( "Path to the x509 PEM Certificates Revocation List " 
  62.                          "file that will be HTTP/SSL stream output. Leave " 
  63.                          "empty if you don't have one." )
  64. vlc_module_begin();
  65.     set_description( _("HTTP stream output") );
  66.     set_capability( "sout access", 0 );
  67.     add_shortcut( "http" );
  68.     add_shortcut( "https" );
  69.     add_shortcut( "mmsh" );
  70.     add_string( SOUT_CFG_PREFIX "user", "", NULL,
  71.                 USER_TEXT, USER_LONGTEXT, VLC_TRUE );
  72.     add_string( SOUT_CFG_PREFIX "pwd", "", NULL,
  73.                 PASS_TEXT, PASS_LONGTEXT, VLC_TRUE );
  74.     add_string( SOUT_CFG_PREFIX "mime", "", NULL,
  75.                 MIME_TEXT, MIME_LONGTEXT, VLC_TRUE );
  76.     add_string( SOUT_CFG_PREFIX "cert", "vlc.pem", NULL,
  77.                 CERT_TEXT, CERT_LONGTEXT, VLC_TRUE );
  78.     add_string( SOUT_CFG_PREFIX "key", NULL, NULL,
  79.                 KEY_TEXT, KEY_LONGTEXT, VLC_TRUE );
  80.     add_string( SOUT_CFG_PREFIX "ca", NULL, NULL,
  81.                 CA_TEXT, CA_LONGTEXT, VLC_TRUE );
  82.     add_string( SOUT_CFG_PREFIX "crl", NULL, NULL,
  83.                 CRL_TEXT, CRL_LONGTEXT, VLC_TRUE );
  84.     set_callbacks( Open, Close );
  85. vlc_module_end();
  86. /*****************************************************************************
  87.  * Exported prototypes
  88.  *****************************************************************************/
  89. static const char *ppsz_sout_options[] = {
  90.     "user", "pwd", "mime", NULL
  91. };
  92. static int Write( sout_access_out_t *, block_t * );
  93. static int Seek ( sout_access_out_t *, off_t  );
  94. struct sout_access_out_sys_t
  95. {
  96.     /* host */
  97.     httpd_host_t        *p_httpd_host;
  98.     /* stream */
  99.     httpd_stream_t      *p_httpd_stream;
  100.     /* gather header from stream */
  101.     int                 i_header_allocated;
  102.     int                 i_header_size;
  103.     uint8_t             *p_header;
  104.     vlc_bool_t          b_header_complete;
  105. };
  106. /*****************************************************************************
  107.  * Open: open the file
  108.  *****************************************************************************/
  109. static int Open( vlc_object_t *p_this )
  110. {
  111.     sout_access_out_t       *p_access = (sout_access_out_t*)p_this;
  112.     sout_access_out_sys_t   *p_sys;
  113.     tls_server_t            *p_tls;
  114.     char                *psz_parser, *psz_name;
  115.     char                *psz_bind_addr;
  116.     int                 i_bind_port;
  117.     char                *psz_file_name;
  118.     char                *psz_user = NULL;
  119.     char                *psz_pwd = NULL;
  120.     char                *psz_mime = NULL;
  121.     vlc_value_t         val;
  122.     if( !( p_sys = p_access->p_sys =
  123.                 malloc( sizeof( sout_access_out_sys_t ) ) ) )
  124.     {
  125.         msg_Err( p_access, "Not enough memory" );
  126.         return VLC_ENOMEM ;
  127.     }
  128.     sout_CfgParse( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg );
  129.     /* p_access->psz_name host.name:port/filename */
  130.     psz_name = psz_parser = strdup( p_access->psz_name );
  131.     psz_bind_addr = psz_parser;
  132.     i_bind_port = 0;
  133.     psz_file_name = "";
  134.     while( *psz_parser && *psz_parser != ':' && *psz_parser != '/' )
  135.     {
  136.         psz_parser++;
  137.     }
  138.     if( *psz_parser == ':' )
  139.     {
  140.         *psz_parser = '';
  141.         psz_parser++;
  142.         i_bind_port = atoi( psz_parser );
  143.         while( *psz_parser && *psz_parser != '/' )
  144.         {
  145.             psz_parser++;
  146.         }
  147.     }
  148.     if( *psz_parser == '/' )
  149.     {
  150.         *psz_parser = '';
  151.         psz_parser++;
  152.         psz_file_name = psz_parser;
  153.     }
  154.     if( !*psz_file_name )
  155.     {
  156.         psz_file_name = strdup( "/" );
  157.     }
  158.     else if( *psz_file_name != '/' )
  159.     {
  160.         char *p = psz_file_name;
  161.         psz_file_name = malloc( strlen( p ) + 2 );
  162.         strcpy( psz_file_name, "/" );
  163.         strcat( psz_file_name, p );
  164.     }
  165.     else
  166.     {
  167.         psz_file_name = strdup( psz_file_name );
  168.     }
  169.     /* SSL support */
  170.     if( p_access->psz_access && !strcmp( p_access->psz_access, "https" ) )
  171.     {
  172.         const char *psz_cert, *psz_key;
  173.         psz_cert = config_GetPsz( p_this, SOUT_CFG_PREFIX"cert" );
  174.         psz_key = config_GetPsz( p_this, SOUT_CFG_PREFIX"key" );
  175.         p_tls = tls_ServerCreate( p_this, psz_cert, psz_key );
  176.         if ( p_tls == NULL )
  177.         {
  178.             msg_Err( p_this, "TLS initialization error" );
  179.             free( psz_file_name );
  180.             free( psz_name );
  181.             free( p_sys );
  182.             return VLC_EGENERIC;
  183.         }
  184.         psz_cert = config_GetPsz( p_this, SOUT_CFG_PREFIX"ca" );
  185.         if ( ( psz_cert != NULL) && tls_ServerAddCA( p_tls, psz_cert ) )
  186.         {
  187.             msg_Err( p_this, "TLS CA error" );
  188.             tls_ServerDelete( p_tls );
  189.             free( psz_file_name );
  190.             free( psz_name );
  191.             free( p_sys );
  192.             return VLC_EGENERIC;
  193.         }
  194.         psz_cert = config_GetPsz( p_this, SOUT_CFG_PREFIX"crl" );
  195.         if ( ( psz_cert != NULL) && tls_ServerAddCRL( p_tls, psz_cert ) )
  196.         {
  197.             msg_Err( p_this, "TLS CRL error" );
  198.             tls_ServerDelete( p_tls );
  199.             free( psz_file_name );
  200.             free( psz_name );
  201.             free( p_sys );
  202.             return VLC_EGENERIC;
  203.         }
  204.         if( i_bind_port <= 0 )
  205.             i_bind_port = DEFAULT_SSL_PORT;
  206.     }
  207.     else
  208.     {
  209.         p_tls = NULL;
  210.         if( i_bind_port <= 0 )
  211.             i_bind_port = DEFAULT_PORT;
  212.     }
  213.     p_sys->p_httpd_host = httpd_TLSHostNew( VLC_OBJECT(p_access),
  214.                                             psz_bind_addr, i_bind_port,
  215.                                             p_tls );
  216.     if( p_sys->p_httpd_host == NULL )
  217.     {
  218.         msg_Err( p_access, "cannot listen on %s:%d",
  219.                  psz_bind_addr, i_bind_port );
  220.         if( p_tls != NULL )
  221.             tls_ServerDelete( p_tls );
  222.         free( psz_name );
  223.         free( psz_file_name );
  224.         free( p_sys );
  225.         return VLC_EGENERIC;
  226.     }
  227.     if( p_access->psz_access && !strcmp( p_access->psz_access, "mmsh" ) )
  228.     {
  229.         psz_mime = strdup( "video/x-ms-asf-stream" );
  230.     }
  231.     else
  232.     {
  233.         var_Get( p_access, SOUT_CFG_PREFIX "mime", &val );
  234.         if( *val.psz_string )
  235.             psz_mime = val.psz_string;
  236.         else
  237.             free( val.psz_string );
  238.     }
  239.     var_Get( p_access, SOUT_CFG_PREFIX "user", &val );
  240.     if( *val.psz_string )
  241.         psz_user = val.psz_string;
  242.     else
  243.         free( val.psz_string );
  244.     var_Get( p_access, SOUT_CFG_PREFIX "pwd", &val );
  245.     if( *val.psz_string )
  246.         psz_pwd = val.psz_string;
  247.     else
  248.         free( val.psz_string );
  249.     p_sys->p_httpd_stream =
  250.         httpd_StreamNew( p_sys->p_httpd_host, psz_file_name, psz_mime,
  251.                          psz_user, psz_pwd );
  252.     if( psz_user ) free( psz_user );
  253.     if( psz_pwd ) free( psz_pwd );
  254.     if( psz_mime ) free( psz_mime );
  255.     if( p_sys->p_httpd_stream == NULL )
  256.     {
  257.         msg_Err( p_access, "cannot add stream %s", psz_file_name );
  258.         httpd_HostDelete( p_sys->p_httpd_host );
  259.         free( psz_name );
  260.         free( psz_file_name );
  261.         free( p_sys );
  262.         return VLC_EGENERIC;
  263.     }
  264.     free( psz_file_name );
  265.     free( psz_name );
  266.     p_sys->i_header_allocated = 1024;
  267.     p_sys->i_header_size      = 0;
  268.     p_sys->p_header           = malloc( p_sys->i_header_allocated );
  269.     p_sys->b_header_complete  = VLC_FALSE;
  270.     p_access->pf_write       = Write;
  271.     p_access->pf_seek        = Seek;
  272.     /* update p_sout->i_out_pace_nocontrol */
  273.     p_access->p_sout->i_out_pace_nocontrol++;
  274.     return VLC_SUCCESS;
  275. }
  276. /*****************************************************************************
  277.  * Close: close the target
  278.  *****************************************************************************/
  279. static void Close( vlc_object_t * p_this )
  280. {
  281.     sout_access_out_t       *p_access = (sout_access_out_t*)p_this;
  282.     sout_access_out_sys_t   *p_sys = p_access->p_sys;
  283.     /* update p_sout->i_out_pace_nocontrol */
  284.     p_access->p_sout->i_out_pace_nocontrol--;
  285.     httpd_StreamDelete( p_sys->p_httpd_stream );
  286.     httpd_HostDelete( p_sys->p_httpd_host );
  287.     FREE( p_sys->p_header );
  288.     msg_Dbg( p_access, "Close" );
  289.     free( p_sys );
  290. }
  291. /*****************************************************************************
  292.  * Write:
  293.  *****************************************************************************/
  294. static int Write( sout_access_out_t *p_access, block_t *p_buffer )
  295. {
  296.     sout_access_out_sys_t *p_sys = p_access->p_sys;
  297.     int i_err = 0;
  298.     while( p_buffer )
  299.     {
  300.         block_t *p_next;
  301.         if( p_buffer->i_flags & BLOCK_FLAG_HEADER )
  302.         {
  303.             /* gather header */
  304.             if( p_sys->b_header_complete )
  305.             {
  306.                 /* free previously gathered header */
  307.                 p_sys->i_header_size = 0;
  308.                 p_sys->b_header_complete = VLC_FALSE;
  309.             }
  310.             if( (int)(p_buffer->i_buffer + p_sys->i_header_size) >
  311.                 p_sys->i_header_allocated )
  312.             {
  313.                 p_sys->i_header_allocated =
  314.                     p_buffer->i_buffer + p_sys->i_header_size + 1024;
  315.                 p_sys->p_header =
  316.                     realloc( p_sys->p_header, p_sys->i_header_allocated );
  317.             }
  318.             memcpy( &p_sys->p_header[p_sys->i_header_size],
  319.                     p_buffer->p_buffer,
  320.                     p_buffer->i_buffer );
  321.             p_sys->i_header_size += p_buffer->i_buffer;
  322.         }
  323.         else if( !p_sys->b_header_complete )
  324.         {
  325.             p_sys->b_header_complete = VLC_TRUE;
  326.             httpd_StreamHeader( p_sys->p_httpd_stream, p_sys->p_header,
  327.                                 p_sys->i_header_size );
  328.         }
  329.         /* send data */
  330.         i_err = httpd_StreamSend( p_sys->p_httpd_stream, p_buffer->p_buffer,
  331.                                   p_buffer->i_buffer );
  332.         p_next = p_buffer->p_next;
  333.         block_Release( p_buffer );
  334.         p_buffer = p_next;
  335.         if( i_err < 0 )
  336.         {
  337.             break;
  338.         }
  339.     }
  340.     if( i_err < 0 )
  341.     {
  342.         block_ChainRelease( p_buffer );
  343.     }
  344.     return( i_err < 0 ? VLC_EGENERIC : VLC_SUCCESS );
  345. }
  346. /*****************************************************************************
  347.  * Seek: seek to a specific location in a file
  348.  *****************************************************************************/
  349. static int Seek( sout_access_out_t *p_access, off_t i_pos )
  350. {
  351.     msg_Warn( p_access, "HTTP sout access cannot seek" );
  352.     return VLC_EGENERIC;
  353. }