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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * httpd.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: httpd.c 9284 2004-11-11 18:50:53Z gbazin $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Remi Denis-Courmont <courmisch@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #include <stdlib.h>
  25. #include <vlc/vlc.h>
  26. #ifdef ENABLE_HTTPD
  27. #include "vlc_httpd.h"
  28. #include "network.h"
  29. #include "vlc_tls.h"
  30. #include <string.h>
  31. #include <errno.h>
  32. #ifdef HAVE_UNISTD_H
  33. #   include <unistd.h>
  34. #endif
  35. #ifdef HAVE_FCNTL_H
  36. #   include <fcntl.h>
  37. #endif
  38. #if defined( UNDER_CE )
  39. #   include <winsock.h>
  40. #elif defined( WIN32 )
  41. #   include <winsock2.h>
  42. #   include <ws2tcpip.h>
  43. #else
  44. #   include <netdb.h>                                         /* hostent ... */
  45. #   include <sys/socket.h>
  46. #   include <netinet/in.h>
  47. #   ifdef HAVE_ARPA_INET_H
  48. #       include <arpa/inet.h>                    /* inet_ntoa(), inet_aton() */
  49. #   endif
  50. #endif
  51. #if defined(WIN32)
  52. static const struct in6_addr in6addr_any = {{IN6ADDR_ANY_INIT}};
  53. #endif
  54. #ifndef PF_INET
  55. #    define PF_INET AF_INET                                          /* BeOS */
  56. #endif
  57. #if 0
  58. typedef struct httpd_t          httpd_t;
  59. typedef struct httpd_host_t     httpd_host_t;
  60. typedef struct httpd_url_t      httpd_url_t;
  61. typedef struct httpd_client_t   httpd_client_t;
  62. enum
  63. {
  64.     HTTPD_MSG_NONE,
  65.     /* answer */
  66.     HTTPD_MSG_ANSWER,
  67.     /* channel communication */
  68.     HTTPD_MSG_CHANNEL,
  69.     /* http request */
  70.     HTTPD_MSG_GET,
  71.     HTTPD_MSG_HEAD,
  72.     HTTPD_MSG_POST,
  73.     /* rtsp request */
  74.     HTTPD_MSG_OPTIONS,
  75.     HTTPD_MSG_DESCRIBE,
  76.     HTTPD_MSG_SETUP,
  77.     HTTPD_MSG_PLAY,
  78.     HTTPD_MSG_PAUSE,
  79.     HTTPD_MSG_TEARDOWN,
  80.     /* just to track the count of MSG */
  81.     HTTPD_MSG_MAX
  82. };
  83. enum
  84. {
  85.     HTTPD_PROTO_NONE,
  86.     HTTPD_PROTO_HTTP,
  87.     HTTPD_PROTO_RTSP,
  88. };
  89. typedef struct
  90. {
  91.     httpd_client_t *cl; /* NULL if not throught a connection e vlc internal */
  92.     int     i_type;
  93.     int     i_proto;
  94.     int     i_version;
  95.     /* for an answer */
  96.     int     i_status;
  97.     char    *psz_status;
  98.     /* for a query */
  99.     char    *psz_url;
  100.     char    *psz_args;  /* FIXME find a clean way to handle GET(psz_args) and POST(body) through the same code */
  101.     /* for rtp over rtsp */
  102.     int     i_channel;
  103.     /* options */
  104.     int     i_name;
  105.     char    **name;
  106.     int     i_value;
  107.     char    **value;
  108.     /* body */
  109.     int64_t i_body_offset;
  110.     int     i_body;
  111.     uint8_t *p_body;
  112. } httpd_message_t;
  113. typedef struct httpd_callback_sys_t httpd_callback_sys_t;
  114. /* answer could be null, int this case no answer is requested */
  115. typedef int (*httpd_callback_t)( httpd_callback_sys_t *, httpd_client_t *, httpd_message_t *answer, httpd_message_t *query );
  116. /* create a new host */
  117. httpd_host_t *httpd_HostNew( vlc_object_t *, char *psz_host, int i_port );
  118. /* delete a host */
  119. void          httpd_HostDelete( httpd_host_t * );
  120. /* register a new url */
  121. httpd_url_t *httpd_UrlNew( httpd_host_t *, char *psz_url );
  122. /* register callback on a url */
  123. int          httpd_UrlCatch( httpd_url_t *, int i_msg,
  124.                              httpd_callback_t, httpd_callback_sys_t * );
  125. /* delete an url */
  126. void         httpd_UrlDelete( httpd_url_t * );
  127. void httpd_ClientModeStream( httpd_client_t *cl );
  128. void httpd_ClientModeBidir( httpd_client_t *cl );
  129. static void httpd_ClientClean( httpd_client_t *cl );
  130. /* High level */
  131. typedef struct httpd_file_t     httpd_file_t;
  132. typedef struct httpd_file_sys_t httpd_file_sys_t;
  133. typedef int (*httpd_file_callback_t)( httpd_file_sys_t*, httpd_file_t *, uint8_t *psz_request, uint8_t **pp_data, int *pi_data );
  134. httpd_file_t *httpd_FileNew( httpd_host_t *,
  135.                              char *psz_url, char *psz_mime,
  136.                              char *psz_user, char *psz_password,
  137.                              httpd_file_callback_t pf_fill,
  138.                              httpd_file_sys_t *p_sys );
  139. void         httpd_FileDelete( httpd_file_t * );
  140. typedef struct httpd_redirect_t httpd_redirect_t;
  141. httpd_redirect_t *httpd_RedirectNew( httpd_host_t *, char *psz_url_dst, char *psz_url_src );
  142. void              httpd_RedirectDelete( httpd_redirect_t * );
  143. #if 0
  144. typedef struct httpd_stream_t httpd_stream_t;
  145. httpd_stream_t *httpd_StreamNew( httpd_host_t * );
  146. int             httpd_StreamHeader( httpd_stream_t *, uint8_t *p_data, int i_data );
  147. int             httpd_StreamSend( httpd_stream_t *, uint8_t *p_data, int i_data );
  148. void            httpd_StreamDelete( httpd_stream_t * );
  149. #endif
  150. /* Msg functions facilities */
  151. void         httpd_MsgInit( httpd_message_t * );
  152. void         httpd_MsgAdd( httpd_message_t *, char *psz_name, char *psz_value, ... );
  153. /* return "" if not found. The string is not allocated */
  154. char        *httpd_MsgGet( httpd_message_t *, char *psz_name );
  155. void         httpd_MsgClean( httpd_message_t * );
  156. #endif
  157. #if 0
  158. struct httpd_t
  159. {
  160.     VLC_COMMON_MEMBERS
  161.     /* vlc_mutex_t  lock; */
  162.     int          i_host;
  163.     httpd_host_t **host;
  164. };
  165. #endif
  166. static void httpd_ClientClean( httpd_client_t *cl );
  167. /* each host run in his own thread */
  168. struct httpd_host_t
  169. {
  170.     VLC_COMMON_MEMBERS
  171.     httpd_t     *httpd;
  172.     /* ref count */
  173.     int         i_ref;
  174.     /* address/port and socket for listening at connections */
  175.     struct sockaddr_storage sock;
  176.     int                     i_sock_size;
  177.     int                     fd;
  178.     vlc_mutex_t lock;
  179.     /* all registered url (becarefull that 2 httpd_url_t could point at the same url)
  180.      * This will slow down the url research but make my live easier
  181.      * All url will have their cb trigger, but only the first one can answer
  182.      * */
  183.     int         i_url;
  184.     httpd_url_t **url;
  185.     int            i_client;
  186.     httpd_client_t **client;
  187.     
  188.     /* TLS data */
  189.     tls_server_t *p_tls;
  190. };
  191. struct httpd_url_t
  192. {
  193.     httpd_host_t *host;
  194.     vlc_mutex_t lock;
  195.     char    *psz_url;
  196.     char    *psz_user;
  197.     char    *psz_password;
  198.     struct
  199.     {
  200.         httpd_callback_t     cb;
  201.         httpd_callback_sys_t *p_sys;
  202.     } catch[HTTPD_MSG_MAX];
  203. };
  204. /* status */
  205. enum
  206. {
  207.     HTTPD_CLIENT_RECEIVING,
  208.     HTTPD_CLIENT_RECEIVE_DONE,
  209.     HTTPD_CLIENT_SENDING,
  210.     HTTPD_CLIENT_SEND_DONE,
  211.     HTTPD_CLIENT_WAITING,
  212.     HTTPD_CLIENT_DEAD,
  213. };
  214. /* mode */
  215. enum
  216. {
  217.     HTTPD_CLIENT_FILE,      /* default */
  218.     HTTPD_CLIENT_STREAM,    /* regulary get data from cb */
  219.     HTTPD_CLIENT_BIDIR,     /* check for reading and get data from cb */
  220. };
  221. struct httpd_client_t
  222. {
  223.     httpd_url_t *url;
  224.     int     i_ref;
  225.     struct  sockaddr_storage sock;
  226.     int     i_sock_size;
  227.     int     fd;
  228.     int     i_mode;
  229.     int     i_state;
  230.     int     b_read_waiting; /* stop as soon as possible sending */
  231.     mtime_t i_activity_date;
  232.     mtime_t i_activity_timeout;
  233.     /* buffer for reading header */
  234.     int     i_buffer_size;
  235.     int     i_buffer;
  236.     uint8_t *p_buffer;
  237.     /* */
  238.     httpd_message_t query;  /* client -> httpd */
  239.     httpd_message_t answer; /* httpd -> client */
  240.     
  241.     /* TLS data */
  242.     tls_session_t *p_tls;
  243. };
  244. /*****************************************************************************
  245.  * Various functions
  246.  *****************************************************************************/
  247. /*char b64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";*/
  248. static void b64_decode( char *dest, char *src )
  249. {
  250.     int  i_level;
  251.     int  last = 0;
  252.     int  b64[256] = {
  253.         -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,  /* 00-0F */
  254.         -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,  /* 10-1F */
  255.         -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,62,-1,-1,-1,63,  /* 20-2F */
  256.         52,53,54,55,56,57,58,59,60,61,-1,-1,-1,-1,-1,-1,  /* 30-3F */
  257.         -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,  /* 40-4F */
  258.         15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,  /* 50-5F */
  259.         -1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,  /* 60-6F */
  260.         41,42,43,44,45,46,47,48,49,50,51,-1,-1,-1,-1,-1,  /* 70-7F */
  261.         -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,  /* 80-8F */
  262.         -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,  /* 90-9F */
  263.         -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,  /* A0-AF */
  264.         -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,  /* B0-BF */
  265.         -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,  /* C0-CF */
  266.         -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,  /* D0-DF */
  267.         -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,  /* E0-EF */
  268.         -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1   /* F0-FF */
  269.         };
  270.     for( i_level = 0; *src != ''; src++ )
  271.     {
  272.         int  c;
  273.         c = b64[(unsigned int)*src];
  274.         if( c == -1 )
  275.         {
  276.             continue;
  277.         }
  278.         switch( i_level )
  279.         {
  280.             case 0:
  281.                 i_level++;
  282.                 break;
  283.             case 1:
  284.                 *dest++ = ( last << 2 ) | ( ( c >> 4)&0x03 );
  285.                 i_level++;
  286.                 break;
  287.             case 2:
  288.                 *dest++ = ( ( last << 4 )&0xf0 ) | ( ( c >> 2 )&0x0f );
  289.                 i_level++;
  290.                 break;
  291.             case 3:
  292.                 *dest++ = ( ( last &0x03 ) << 6 ) | c;
  293.                 i_level = 0;
  294.         }
  295.         last = c;
  296.     }
  297.     *dest = '';
  298. }
  299. static struct
  300. {
  301.     char *psz_ext;
  302.     char *psz_mime;
  303. } http_mime[] =
  304. {
  305.     { ".htm",   "text/html" },
  306.     { ".html",  "text/html" },
  307.     { ".txt",   "text/plain" },
  308.     { ".xml",   "text/xml" },
  309.     { ".dtd",   "text/dtd" },
  310.     { ".css",   "text/css" },
  311.     /* image mime */
  312.     { ".gif",   "image/gif" },
  313.     { ".jpe",   "image/jpeg" },
  314.     { ".jpg",   "image/jpeg" },
  315.     { ".jpeg",  "image/jpeg" },
  316.     { ".png",   "image/png" },
  317.     { ".mpjpeg","multipart/x-mixed-replace; boundary=This Random String" },
  318.     /* media mime */
  319.     { ".avi",   "video/avi" },
  320.     { ".asf",   "video/x-ms-asf" },
  321.     { ".m1a",   "audio/mpeg" },
  322.     { ".m2a",   "audio/mpeg" },
  323.     { ".m1v",   "video/mpeg" },
  324.     { ".m2v",   "video/mpeg" },
  325.     { ".mp2",   "audio/mpeg" },
  326.     { ".mp3",   "audio/mpeg" },
  327.     { ".mpa",   "audio/mpeg" },
  328.     { ".mpg",   "video/mpeg" },
  329.     { ".mpeg",  "video/mpeg" },
  330.     { ".mpe",   "video/mpeg" },
  331.     { ".mov",   "video/quicktime" },
  332.     { ".moov",  "video/quicktime" },
  333.     { ".ogg",   "application/ogg" },
  334.     { ".ogm",   "application/ogg" },
  335.     { ".wav",   "audio/wav" },
  336.     { ".wma",   "audio/x-ms-wma" },
  337.     { ".wmv",   "video/x-ms-wmv" },
  338.     /* end */
  339.     { NULL,     NULL }
  340. };
  341. static char *httpd_MimeFromUrl( char *psz_url )
  342. {
  343.     char *psz_ext;
  344.     psz_ext = strrchr( psz_url, '.' );
  345.     if( psz_ext )
  346.     {
  347.         int i;
  348.         for( i = 0; http_mime[i].psz_ext != NULL ; i++ )
  349.         {
  350.             if( !strcasecmp( http_mime[i].psz_ext, psz_ext ) )
  351.             {
  352.                 return http_mime[i].psz_mime;
  353.             }
  354.         }
  355.     }
  356.     return "application/octet-stream";
  357. }
  358. /*****************************************************************************
  359.  * High Level Funtions: httpd_file_t
  360.  *****************************************************************************/
  361. struct httpd_file_t
  362. {
  363.     httpd_url_t *url;
  364.     char *psz_url;
  365.     char *psz_mime;
  366.     httpd_file_callback_t pf_fill;
  367.     httpd_file_sys_t      *p_sys;
  368. };
  369. static int httpd_FileCallBack( httpd_callback_sys_t *p_sys, httpd_client_t *cl, httpd_message_t *answer, httpd_message_t *query )
  370. {
  371.     httpd_file_t *file = (httpd_file_t*)p_sys;
  372.     if( answer == NULL || query == NULL )
  373.     {
  374.         return VLC_SUCCESS;
  375.     }
  376.     answer->i_proto  = HTTPD_PROTO_HTTP;
  377.     answer->i_version= query->i_version;
  378.     answer->i_type   = HTTPD_MSG_ANSWER;
  379.     answer->i_status = 200;
  380.     answer->psz_status = strdup( "OK" );
  381.     httpd_MsgAdd( answer, "Content-type",  "%s", file->psz_mime );
  382.     httpd_MsgAdd( answer, "Cache-Control", "%s", "no-cache" );
  383.     if( query->i_type != HTTPD_MSG_HEAD )
  384.     {
  385.         char *psz_args = query->psz_args;
  386.         if( query->i_type == HTTPD_MSG_POST )
  387.         {
  388.             /* Check that */
  389.             psz_args = query->p_body;
  390.         }
  391.         file->pf_fill( file->p_sys, file, psz_args, &answer->p_body,
  392.                        &answer->i_body );
  393.     }
  394.     /* We respect client request */
  395.     if( strcmp( httpd_MsgGet( &cl->query, "Connection" ), "" ) )
  396.     {
  397.         httpd_MsgAdd( answer, "Connection",
  398.                       httpd_MsgGet( &cl->query, "Connection" ) );
  399.     }
  400.     httpd_MsgAdd( answer, "Content-Length", "%d", answer->i_body );
  401.     return VLC_SUCCESS;
  402. }
  403. httpd_file_t *httpd_FileNew( httpd_host_t *host,
  404.                              char *psz_url, char *psz_mime,
  405.                              char *psz_user, char *psz_password,
  406.                              httpd_file_callback_t pf_fill,
  407.                              httpd_file_sys_t *p_sys )
  408. {
  409.     httpd_file_t *file = malloc( sizeof( httpd_file_t ) );
  410.     if( ( file->url = httpd_UrlNewUnique( host, psz_url, psz_user,
  411.                                           psz_password ) ) == NULL )
  412.     {
  413.         free( file );
  414.         return NULL;
  415.     }
  416.     file->psz_url  = strdup( psz_url );
  417.     if( psz_mime && *psz_mime )
  418.     {
  419.         file->psz_mime = strdup( psz_mime );
  420.     }
  421.     else
  422.     {
  423.         file->psz_mime = strdup( httpd_MimeFromUrl( psz_url ) );
  424.     }
  425.     file->pf_fill = pf_fill;
  426.     file->p_sys   = p_sys;
  427.     httpd_UrlCatch( file->url, HTTPD_MSG_HEAD, httpd_FileCallBack,
  428.                     (httpd_callback_sys_t*)file );
  429.     httpd_UrlCatch( file->url, HTTPD_MSG_GET,  httpd_FileCallBack,
  430.                     (httpd_callback_sys_t*)file );
  431.     httpd_UrlCatch( file->url, HTTPD_MSG_POST, httpd_FileCallBack,
  432.                     (httpd_callback_sys_t*)file );
  433.     return file;
  434. }
  435. void httpd_FileDelete( httpd_file_t *file )
  436. {
  437.     httpd_UrlDelete( file->url );
  438.     free( file->psz_url );
  439.     free( file->psz_mime );
  440.     free( file );
  441. }
  442. /*****************************************************************************
  443.  * High Level Funtions: httpd_redirect_t
  444.  *****************************************************************************/
  445. struct httpd_redirect_t
  446. {
  447.     httpd_url_t *url;
  448.     char        *psz_dst;
  449. };
  450. static int httpd_RedirectCallBack( httpd_callback_sys_t *p_sys,
  451.                                    httpd_client_t *cl, httpd_message_t *answer,
  452.                                    httpd_message_t *query )
  453. {
  454.     httpd_redirect_t *rdir = (httpd_redirect_t*)p_sys;
  455.     uint8_t *p;
  456.     if( answer == NULL || query == NULL )
  457.     {
  458.         return VLC_SUCCESS;
  459.     }
  460.     answer->i_proto  = query->i_proto;
  461.     answer->i_version= query->i_version;
  462.     answer->i_type   = HTTPD_MSG_ANSWER;
  463.     answer->i_status = 301;
  464.     answer->psz_status = strdup( "Moved Permanently" );
  465.     p = answer->p_body = malloc( 1000 + strlen( rdir->psz_dst ) );
  466.     p += sprintf( p, "<html>n" );
  467.     p += sprintf( p, "<head>n" );
  468.     p += sprintf( p, "<title>Redirection</title>n" );
  469.     p += sprintf( p, "</head>n" );
  470.     p += sprintf( p, "<body>n" );
  471.     p += sprintf( p, "<h1><center>You should be <a href="%s">redirected</a></center></h1>n", rdir->psz_dst );
  472.     p += sprintf( p, "<hr />n" );
  473.     p += sprintf( p, "<a href="http://www.videolan.org">VideoLAN</a>n" );
  474.     p += sprintf( p, "</body>n" );
  475.     p += sprintf( p, "</html>n" );
  476.     answer->i_body = p - answer->p_body;
  477.     /* XXX check if it's ok or we need to set an absolute url */
  478.     httpd_MsgAdd( answer, "Location",  "%s", rdir->psz_dst );
  479.     httpd_MsgAdd( answer, "Content-Length", "%d", answer->i_body );
  480.     return VLC_SUCCESS;
  481. }
  482. httpd_redirect_t *httpd_RedirectNew( httpd_host_t *host, char *psz_url_dst,
  483.                                      char *psz_url_src )
  484. {
  485.     httpd_redirect_t *rdir = malloc( sizeof( httpd_redirect_t ) );
  486.     if( !( rdir->url = httpd_UrlNewUnique( host, psz_url_src, NULL, NULL ) ) )
  487.     {
  488.         free( rdir );
  489.         return NULL;
  490.     }
  491.     rdir->psz_dst = strdup( psz_url_dst );
  492.     /* Redirect apply for all HTTP request and RTSP DESCRIBE resquest */
  493.     httpd_UrlCatch( rdir->url, HTTPD_MSG_HEAD, httpd_RedirectCallBack,
  494.                     (httpd_callback_sys_t*)rdir );
  495.     httpd_UrlCatch( rdir->url, HTTPD_MSG_GET, httpd_RedirectCallBack,
  496.                     (httpd_callback_sys_t*)rdir );
  497.     httpd_UrlCatch( rdir->url, HTTPD_MSG_POST, httpd_RedirectCallBack,
  498.                     (httpd_callback_sys_t*)rdir );
  499.     httpd_UrlCatch( rdir->url, HTTPD_MSG_DESCRIBE, httpd_RedirectCallBack,
  500.                     (httpd_callback_sys_t*)rdir );
  501.     return rdir;
  502. }
  503. void httpd_RedirectDelete( httpd_redirect_t *rdir )
  504. {
  505.     httpd_UrlDelete( rdir->url );
  506.     free( rdir->psz_dst );
  507.     free( rdir );
  508. }
  509. /*****************************************************************************
  510.  * High Level Funtions: httpd_stream_t
  511.  *****************************************************************************/
  512. struct httpd_stream_t
  513. {
  514.     vlc_mutex_t lock;
  515.     httpd_url_t *url;
  516.     char    *psz_mime;
  517.     /* Header to send as first packet */
  518.     uint8_t *p_header;
  519.     int     i_header;
  520.     /* circular buffer */
  521.     int         i_buffer_size;      /* buffer size, can't be reallocated smaller */
  522.     uint8_t     *p_buffer;          /* buffer */
  523.     int64_t     i_buffer_pos;       /* absolute position from begining */
  524.     int64_t     i_buffer_last_pos;  /* a new connection will start with that */
  525. };
  526. static int httpd_StreamCallBack( httpd_callback_sys_t *p_sys,
  527.                                  httpd_client_t *cl, httpd_message_t *answer,
  528.                                  httpd_message_t *query )
  529. {
  530.     httpd_stream_t *stream = (httpd_stream_t*)p_sys;
  531.     if( answer == NULL || query == NULL || cl == NULL )
  532.     {
  533.         return VLC_SUCCESS;
  534.     }
  535.     if( answer->i_body_offset > 0 )
  536.     {
  537.         int64_t i_write;
  538.         int     i_pos;
  539. #if 0
  540.         fprintf( stderr, "httpd_StreamCallBack i_body_offset=%lldn",
  541.                  answer->i_body_offset );
  542. #endif
  543.         if( answer->i_body_offset >= stream->i_buffer_pos )
  544.         {
  545.             /* fprintf( stderr, "httpd_StreamCallBack: no datan" ); */
  546.             return VLC_EGENERIC;    /* wait, no data available */
  547.         }
  548.         if( answer->i_body_offset + stream->i_buffer_size <
  549.             stream->i_buffer_pos )
  550.         {
  551.             /* this client isn't fast enough */
  552.             fprintf( stderr, "fixing i_body_offset (old=%lld new=%lld)n",
  553.                      answer->i_body_offset, stream->i_buffer_last_pos );
  554.             answer->i_body_offset = stream->i_buffer_last_pos;
  555.         }
  556.         i_pos   = answer->i_body_offset % stream->i_buffer_size;
  557.         i_write = stream->i_buffer_pos - answer->i_body_offset;
  558.         if( i_write > 10000 )
  559.         {
  560.             i_write = 10000;
  561.         }
  562.         else if( i_write <= 0 )
  563.         {
  564.             return VLC_EGENERIC;    /* wait, no data available */
  565.         }
  566.         /* Don't go past the end of the circular buffer */
  567.         i_write = __MIN( i_write, stream->i_buffer_size - i_pos );
  568.         /* using HTTPD_MSG_ANSWER -> data available */
  569.         answer->i_proto  = HTTPD_PROTO_HTTP;
  570.         answer->i_version= 0;
  571.         answer->i_type   = HTTPD_MSG_ANSWER;
  572.         answer->i_body = i_write;
  573.         answer->p_body = malloc( i_write );
  574.         memcpy( answer->p_body, &stream->p_buffer[i_pos], i_write );
  575.         answer->i_body_offset += i_write;
  576.         return VLC_SUCCESS;
  577.     }
  578.     else
  579.     {
  580.         answer->i_proto  = HTTPD_PROTO_HTTP;
  581.         answer->i_version= 0;
  582.         answer->i_type   = HTTPD_MSG_ANSWER;
  583.         answer->i_status = 200;
  584.         answer->psz_status = strdup( "OK" );
  585.         if( query->i_type != HTTPD_MSG_HEAD )
  586.         {
  587.             httpd_ClientModeStream( cl );
  588.             vlc_mutex_lock( &stream->lock );
  589.             /* Send the header */
  590.             if( stream->i_header > 0 )
  591.             {
  592.                 answer->i_body = stream->i_header;
  593.                 answer->p_body = malloc( stream->i_header );
  594.                 memcpy( answer->p_body, stream->p_header, stream->i_header );
  595.             }
  596.             answer->i_body_offset = stream->i_buffer_last_pos;
  597.             vlc_mutex_unlock( &stream->lock );
  598.         }
  599.         else
  600.         {
  601.             httpd_MsgAdd( answer, "Content-Length", "%d", 0 );
  602.             answer->i_body_offset = 0;
  603.         }
  604.         if( !strcmp( stream->psz_mime, "video/x-ms-asf-stream" ) )
  605.         {
  606.             vlc_bool_t b_xplaystream = VLC_FALSE;
  607.             int i;
  608.             httpd_MsgAdd( answer, "Content-type", "%s",
  609.                           "application/octet-stream" );
  610.             httpd_MsgAdd( answer, "Server", "Cougar 4.1.0.3921" );
  611.             httpd_MsgAdd( answer, "Pragma", "no-cache" );
  612.             httpd_MsgAdd( answer, "Pragma", "client-id=%d", rand()&0x7fff );
  613.             httpd_MsgAdd( answer, "Pragma", "features="broadcast"" );
  614.             /* Check if there is a xPlayStrm=1 */
  615.             for( i = 0; i < query->i_name; i++ )
  616.             {
  617.                 if( !strcasecmp( query->name[i],  "Pragma" ) &&
  618.                     strstr( query->value[i], "xPlayStrm=1" ) )
  619.                 {
  620.                     b_xplaystream = VLC_TRUE;
  621.                 }
  622.             }
  623.             if( !b_xplaystream )
  624.             {
  625.                 answer->i_body_offset = 0;
  626.             }
  627.         }
  628.         else
  629.         {
  630.             httpd_MsgAdd( answer, "Content-type",  "%s", stream->psz_mime );
  631.         }
  632.         httpd_MsgAdd( answer, "Cache-Control", "%s", "no-cache" );
  633.         return VLC_SUCCESS;
  634.     }
  635. }
  636. httpd_stream_t *httpd_StreamNew( httpd_host_t *host,
  637.                                  char *psz_url, char *psz_mime,
  638.                                  char *psz_user, char *psz_password )
  639. {
  640.     httpd_stream_t *stream = malloc( sizeof( httpd_stream_t ) );
  641.     if( ( stream->url = httpd_UrlNewUnique( host, psz_url, psz_user,
  642.                                             psz_password ) ) == NULL )
  643.     {
  644.         free( stream );
  645.         return NULL;
  646.     }
  647.     vlc_mutex_init( host, &stream->lock );
  648.     if( psz_mime && *psz_mime )
  649.     {
  650.         stream->psz_mime = strdup( psz_mime );
  651.     }
  652.     else
  653.     {
  654.         stream->psz_mime = strdup( httpd_MimeFromUrl( psz_url ) );
  655.     }
  656.     stream->i_header = 0;
  657.     stream->p_header = NULL;
  658.     stream->i_buffer_size = 5000000;    /* 5 Mo per stream */
  659.     stream->p_buffer = malloc( stream->i_buffer_size );
  660.     /* We set to 1 to make life simpler
  661.      * (this way i_body_offset can never be 0) */
  662.     stream->i_buffer_pos = 1;
  663.     stream->i_buffer_last_pos = 1;
  664.     httpd_UrlCatch( stream->url, HTTPD_MSG_HEAD, httpd_StreamCallBack,
  665.                     (httpd_callback_sys_t*)stream );
  666.     httpd_UrlCatch( stream->url, HTTPD_MSG_GET, httpd_StreamCallBack,
  667.                     (httpd_callback_sys_t*)stream );
  668.     httpd_UrlCatch( stream->url, HTTPD_MSG_POST, httpd_StreamCallBack,
  669.                     (httpd_callback_sys_t*)stream );
  670.     return stream;
  671. }
  672. int httpd_StreamHeader( httpd_stream_t *stream, uint8_t *p_data, int i_data )
  673. {
  674.     vlc_mutex_lock( &stream->lock );
  675.     if( stream->p_header )
  676.     {
  677.         free( stream->p_header );
  678.         stream->p_header = NULL;
  679.     }
  680.     stream->i_header = i_data;
  681.     if( i_data > 0 )
  682.     {
  683.         stream->p_header = malloc( i_data );
  684.         memcpy( stream->p_header, p_data, i_data );
  685.     }
  686.     vlc_mutex_unlock( &stream->lock );
  687.     return VLC_SUCCESS;
  688. }
  689. int httpd_StreamSend( httpd_stream_t *stream, uint8_t *p_data, int i_data )
  690. {
  691.     int i_count;
  692.     int i_pos;
  693.     if( i_data < 0 || p_data == NULL )
  694.     {
  695.         return VLC_SUCCESS;
  696.     }
  697.     vlc_mutex_lock( &stream->lock );
  698.     /* save this pointer (to be used by new connection) */
  699.     stream->i_buffer_last_pos = stream->i_buffer_pos;
  700.     i_pos = stream->i_buffer_pos % stream->i_buffer_size;
  701.     i_count = i_data;
  702.     while( i_count > 0)
  703.     {
  704.         int i_copy;
  705.         i_copy = __MIN( i_count, stream->i_buffer_size - i_pos );
  706.         /* Ok, we can't go past the end of our buffer */
  707.         memcpy( &stream->p_buffer[i_pos], p_data, i_copy );
  708.         i_pos = ( i_pos + i_copy ) % stream->i_buffer_size;
  709.         i_count -= i_copy;
  710.         p_data  += i_copy;
  711.     }
  712.     stream->i_buffer_pos += i_data;
  713.     vlc_mutex_unlock( &stream->lock );
  714.     return VLC_SUCCESS;
  715. }
  716. void httpd_StreamDelete( httpd_stream_t *stream )
  717. {
  718.     httpd_UrlDelete( stream->url );
  719.     vlc_mutex_destroy( &stream->lock );
  720.     if( stream->psz_mime ) free( stream->psz_mime );
  721.     if( stream->p_header ) free( stream->p_header );
  722.     if( stream->p_buffer ) free( stream->p_buffer );
  723.     free( stream );
  724. }
  725. /*****************************************************************************
  726.  * Low level
  727.  *****************************************************************************/
  728. #define LISTEN_BACKLOG          100
  729. #if defined(HAVE_GETNAMEINFO) && !defined(HAVE_GETADDRINFO)
  730. /* 
  731.  * For now, VLC's configure script does not check for getaddrinfo(),
  732.  * but it should be present if getnameinfo() is (the opposite is untrue, with
  733.  * Debian potato as an example)
  734.  */
  735. # define HAVE_GETADDRINFO 1
  736. #endif
  737. static void httpd_HostThread( httpd_host_t * );
  738. static int GetAddrPort( const struct sockaddr_storage *p_ss );
  739. #ifndef HAVE_GETADDRINFO
  740. struct httpd_addrinfo
  741. {
  742.     int ai_family;
  743.     int ai_socktype;
  744.     int ai_protocol;
  745.     /*int ai_flags;*/
  746.     struct sockaddr *ai_addr;
  747.     int ai_addrlen;
  748.     struct httpd_addrinfo *ai_next;
  749. };
  750. #   define addrinfo httpd_addrinfo
  751. static int BuildAddr( struct sockaddr_in * p_socket,
  752.                       const char * psz_address, int i_port );
  753. #endif
  754. /* create a new host */
  755. httpd_host_t *httpd_HostNew( vlc_object_t *p_this, char *psz_host,
  756.                              int i_port )
  757. {
  758.     return httpd_TLSHostNew( p_this, psz_host, i_port, NULL );
  759. }
  760. httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, char *psz_host,
  761.                                 int i_port, tls_server_t *p_tls )
  762. {
  763.     httpd_t      *httpd;
  764.     httpd_host_t *host = NULL;
  765.     vlc_value_t lockval;
  766.     int fd = -1;
  767.     struct addrinfo *res, *ptr;
  768.     /* resolv */
  769. #ifdef HAVE_GETADDRINFO
  770.     {
  771.         vlc_value_t val;
  772.         char psz_port[6];
  773.         struct addrinfo hints;
  774.         memset( &hints, 0, sizeof( hints ) );
  775. #if 0
  776.         /* 
  777.          * For now, keep IPv4 by default. That said, it should be safe to use
  778.          * IPv6 by default *on the server side*, as, apart from NetBSD, most
  779.          * systems accept IPv4 clients on IPv6 listening sockets.
  780.          */
  781.         hints.ai_family = PF_INET;
  782. #else
  783.         hints.ai_family = 0;
  784.         /* Check if ipv4 or ipv6 were forced */
  785.         var_Create( p_this, "ipv4", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
  786.         var_Get( p_this, "ipv4", &val );
  787.         if( val.b_bool )
  788.             hints.ai_family = PF_INET;
  789. #endif
  790.         var_Create( p_this, "ipv6", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
  791.         var_Get( p_this, "ipv6", &val );
  792.         if( val.b_bool )
  793.             hints.ai_family = PF_INET6;
  794.         hints.ai_socktype = SOCK_STREAM;
  795.         hints.ai_flags = AI_PASSIVE;
  796.         if (*psz_host == '')
  797.             psz_host = NULL;
  798.         snprintf( psz_port, sizeof( psz_port ), "%d", i_port );
  799.         psz_port[sizeof( psz_port ) - 1] = '';
  800.         
  801.         if( getaddrinfo( psz_host, psz_port, &hints, &res ) )
  802.         {
  803.             msg_Err( p_this, "cannot resolve %s:%d", psz_host, i_port );
  804.             return NULL;
  805.         }
  806.     }
  807. #else
  808.     struct sockaddr_in sock;
  809.     struct httpd_addrinfo info;
  810.     
  811.     info.ai_family = PF_INET;
  812.     info.ai_socktype = SOCK_STREAM;
  813.     info.ai_protocol = 0;
  814.     info.ai_addr = (struct sockaddr *)&sock;
  815.     info.ai_addrlen = sizeof( sock );
  816.     info.ai_next = NULL;
  817.     
  818.     res = &info;
  819.     if( BuildAddr( &sock, psz_host, i_port ) )
  820.     {
  821.         msg_Err( p_this, "cannot build address for %s:%d", psz_host, i_port );
  822.         return NULL;
  823.     }
  824. #   define freeaddrinfo( r ) (void)0;
  825. #endif
  826.     /* to be sure to avoid multiple creation */
  827.     var_Create( p_this->p_libvlc, "httpd_mutex", VLC_VAR_MUTEX );
  828.     var_Get( p_this->p_libvlc, "httpd_mutex", &lockval );
  829.     vlc_mutex_lock( lockval.p_address );
  830.     if( !(httpd = vlc_object_find( p_this, VLC_OBJECT_HTTPD, FIND_ANYWHERE )) )
  831.     {
  832.         msg_Info( p_this, "creating httpd" );
  833.         if( ( httpd = vlc_object_create( p_this, VLC_OBJECT_HTTPD ) ) == NULL )
  834.         {
  835.             vlc_mutex_unlock( lockval.p_address );
  836.             freeaddrinfo( res );
  837.             return NULL;
  838.         }
  839.         httpd->i_host = 0;
  840.         httpd->host   = NULL;
  841.         vlc_object_yield( httpd );
  842.         vlc_object_attach( httpd, p_this->p_vlc );
  843.     }
  844.     for( ptr = res; (ptr != NULL) && (fd == -1); ptr = ptr->ai_next )
  845.     {
  846.         int i;
  847.         if( ((unsigned)ptr->ai_addrlen) > sizeof( struct sockaddr_storage ) )
  848.         {
  849.             msg_Dbg( p_this, "socket address too big" );
  850.             continue;
  851.         }
  852.         /* verify if it already exist */
  853.         for( i = 0; i < httpd->i_host; i++ )
  854.         {
  855.             if( GetAddrPort (&httpd->host[i]->sock) != i_port )
  856.                 continue;
  857.             /* Cannot re-use host if it uses TLS/SSL */
  858.             if( &httpd->host[i]->p_tls != NULL )
  859.                 continue;
  860. #ifdef AF_INET6
  861.             if( httpd->host[i]->sock.ss_family == AF_INET6 )
  862.             {
  863.                 const struct sockaddr_in6 *p_hsock, *p_sock;
  864.                 p_hsock = (const struct sockaddr_in6 *)&httpd->host[i]->sock;
  865.                 p_sock = (const struct sockaddr_in6 *)ptr->ai_addr;
  866.                 if( memcmp( &p_hsock->sin6_addr, &in6addr_any,
  867.                             sizeof( struct in6_addr ) ) &&
  868.                             ( p_sock->sin6_family != AF_INET6 ||
  869.                               memcmp( &p_hsock->sin6_addr, &p_sock->sin6_addr,
  870.                                       sizeof( struct in6_addr ) ) ) )
  871.                     continue; /* does not match */
  872.             }
  873.             else if( ptr->ai_family == PF_INET6 )
  874.                 continue;
  875.             else
  876. #endif
  877.             if( httpd->host[i]->sock.ss_family == AF_INET )
  878.             {
  879.                 const struct sockaddr_in *p_hsock, *p_sock;
  880.                 p_hsock = (const struct sockaddr_in *)&httpd->host[i]->sock;
  881.                 p_sock = (const struct sockaddr_in *)ptr->ai_addr;
  882.                 if( p_hsock->sin_addr.s_addr != INADDR_ANY &&
  883.                     ( p_sock->sin_family != AF_INET ||
  884.                       p_hsock->sin_addr.s_addr != p_sock->sin_addr.s_addr ) )
  885.                     continue; /* does not match */
  886.             }
  887.             else if( ptr->ai_family == PF_INET )
  888.                 continue;
  889.             else
  890.             {
  891.                 msg_Dbg( p_this, "host with unknown address family" );
  892.                 continue;
  893.             }
  894.             freeaddrinfo( res );
  895.             /* yep found */
  896.             host = httpd->host[i];
  897.             host->i_ref++;
  898.             vlc_mutex_unlock( lockval.p_address );
  899.             msg_Dbg( p_this, "host already registered" );
  900.             return host;
  901.         }
  902.         /* create the listening socket */
  903.         fd = socket( ptr->ai_family, ptr->ai_socktype, ptr->ai_protocol );
  904.         if( fd == -1 )
  905.             continue;
  906.         /* reuse socket */
  907.         {
  908.             int dummy = 1;
  909.             if( setsockopt( fd, SOL_SOCKET, SO_REUSEADDR,
  910.                             (void *)&dummy, sizeof( dummy ) ) < 0 )
  911.             {
  912.                 msg_Warn( p_this, "cannot configure socket (SO_REUSEADDR)" );
  913.             }
  914.         }
  915.         /* bind it */
  916.         if( bind( fd, ptr->ai_addr, ptr->ai_addrlen ) )
  917.         {
  918.             msg_Err( p_this, "cannot bind socket" );
  919.             goto socket_error;
  920.         }
  921.         /* set to non-blocking */
  922. #if defined( WIN32 ) || defined( UNDER_CE )
  923.         {
  924.             unsigned long i_dummy = 1;
  925.             if( ioctlsocket( fd, FIONBIO, &i_dummy ) != 0 )
  926.             {
  927.                 msg_Err( p_this, "cannot set socket to non-blocking mode" );
  928.                 goto socket_error;
  929.             }
  930.         }
  931. #else
  932.         {
  933.             unsigned int i_flags;
  934.             if( ( i_flags = fcntl( fd, F_GETFL, 0 ) ) < 0 )
  935.             {
  936.                 msg_Err( p_this, "cannot F_GETFL socket" );
  937.                 goto socket_error;
  938.             }
  939.             if( fcntl( fd, F_SETFL, i_flags | O_NONBLOCK ) < 0 )
  940.             {
  941.                 msg_Err( p_this, "cannot F_SETFL O_NONBLOCK" );
  942.                 goto socket_error;
  943.             }
  944.         }
  945. #endif
  946.         /* listen */
  947.         if( listen( fd, LISTEN_BACKLOG ) < 0 )
  948.         {
  949.             msg_Err( p_this, "cannot listen socket" );
  950.             goto socket_error;
  951.         }
  952.         break; // success
  953. socket_error:
  954.         net_Close( fd );
  955.         fd = -1;
  956.     }
  957.     if( fd == -1 )
  958.     {
  959.         freeaddrinfo( res );
  960.         goto error;
  961.     }
  962.     /* create the new host */
  963.     host = vlc_object_create( p_this, sizeof( httpd_host_t ) );
  964.     host->httpd = httpd;
  965.     vlc_mutex_init( httpd, &host->lock );
  966.     host->i_ref = 1;
  967.     host->fd = fd;
  968.     memcpy( &host->sock, ptr->ai_addr, ptr->ai_addrlen );
  969.     host->i_sock_size = ptr->ai_addrlen;
  970.     host->i_url     = 0;
  971.     host->url       = NULL;
  972.     host->i_client  = 0;
  973.     host->client    = NULL;
  974.     freeaddrinfo( res );
  975.     host->p_tls = p_tls;
  976.     /* create the thread */
  977.     if( vlc_thread_create( host, "httpd host thread", httpd_HostThread,
  978.                            VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
  979.     {
  980.         msg_Err( p_this, "cannot spawn http host thread" );
  981.         goto error;
  982.     }
  983.     /* now add it to httpd */
  984.     TAB_APPEND( httpd->i_host, httpd->host, host );
  985.     vlc_mutex_unlock( lockval.p_address );
  986.     return host;
  987. error:
  988.     vlc_mutex_unlock( lockval.p_address );
  989.     if( fd != -1 )
  990.         net_Close( fd );
  991.     if( host != NULL )
  992.     {
  993.         vlc_mutex_destroy( &host->lock );
  994.         vlc_object_destroy( host );
  995.     }
  996.     /* TODO destroy no more used httpd TODO */
  997.     vlc_object_release( httpd );
  998.     return NULL;
  999. }
  1000. /* delete a host */
  1001. void httpd_HostDelete( httpd_host_t *host )
  1002. {
  1003.     httpd_t *httpd = host->httpd;
  1004.     vlc_value_t lockval;
  1005.     int i;
  1006.     msg_Dbg( host, "httpd_HostDelete" );
  1007.     var_Get( httpd->p_libvlc, "httpd_mutex", &lockval );
  1008.     vlc_mutex_lock( lockval.p_address );
  1009.     vlc_object_release( httpd );
  1010.     host->i_ref--;
  1011.     if( host->i_ref > 0 )
  1012.     {
  1013.         /* still used */
  1014.         vlc_mutex_unlock( lockval.p_address );
  1015.         msg_Dbg( host, "httpd_HostDelete: host still used" );
  1016.         return;
  1017.     }
  1018.     TAB_REMOVE( httpd->i_host, httpd->host, host );
  1019.     msg_Dbg( host, "httpd_HostDelete: host removed from http" );
  1020.     host->b_die = 1;
  1021.     vlc_thread_join( host );
  1022.     msg_Dbg( host, "httpd_HostDelete: host thread joined" );
  1023.     for( i = 0; i < host->i_url; i++ )
  1024.     {
  1025.         msg_Err( host, "url still registered:%s", host->url[i]->psz_url );
  1026.     }
  1027.     for( i = 0; i < host->i_client; i++ )
  1028.     {
  1029.         httpd_client_t *cl = host->client[i];
  1030.         msg_Warn( host, "client still connected" );
  1031.         httpd_ClientClean( cl );
  1032.         TAB_REMOVE( host->i_client, host->client, cl );
  1033.         free( cl );
  1034.         i--;
  1035.         /* TODO */
  1036.     }
  1037.     if( host->p_tls != NULL)
  1038.         tls_ServerDelete( host->p_tls );
  1039.     net_Close( host->fd );
  1040.     vlc_mutex_destroy( &host->lock );
  1041.     vlc_object_destroy( host );
  1042.     if( httpd->i_host <= 0 )
  1043.     {
  1044.         msg_Info( httpd, "httpd doesn't reference any host, deleting" );
  1045.         vlc_object_detach( httpd );
  1046.         vlc_object_destroy( httpd );
  1047.     }
  1048.     vlc_mutex_unlock( lockval.p_address );
  1049. }
  1050. /* register a new url */
  1051. static httpd_url_t *httpd_UrlNewPrivate( httpd_host_t *host, char *psz_url,
  1052.                                          char *psz_user, char *psz_password,
  1053.                                          vlc_bool_t b_check )
  1054. {
  1055.     httpd_url_t *url;
  1056.     int         i;
  1057.     vlc_mutex_lock( &host->lock );
  1058.     if( b_check )
  1059.     {
  1060.         for( i = 0; i < host->i_url; i++ )
  1061.         {
  1062.             if( !strcmp( psz_url, host->url[i]->psz_url ) )
  1063.             {
  1064.                 msg_Warn( host->httpd,
  1065.                           "cannot add '%s' (url already defined)", psz_url );
  1066.                 vlc_mutex_unlock( &host->lock );
  1067.                 return NULL;
  1068.             }
  1069.         }
  1070.     }
  1071.     url = malloc( sizeof( httpd_url_t ) );
  1072.     url->host = host;
  1073.     vlc_mutex_init( host->httpd, &url->lock );
  1074.     url->psz_url = strdup( psz_url );
  1075.     url->psz_user = strdup( psz_user ? psz_user : "" );
  1076.     url->psz_password = strdup( psz_password ? psz_password : "" );
  1077.     for( i = 0; i < HTTPD_MSG_MAX; i++ )
  1078.     {
  1079.         url->catch[i].cb = NULL;
  1080.         url->catch[i].p_sys = NULL;
  1081.     }
  1082.     TAB_APPEND( host->i_url, host->url, url );
  1083.     vlc_mutex_unlock( &host->lock );
  1084.     return url;
  1085. }
  1086. httpd_url_t *httpd_UrlNew( httpd_host_t *host, char *psz_url,
  1087.                            char *psz_user, char *psz_password )
  1088. {
  1089.     return httpd_UrlNewPrivate( host, psz_url, psz_user,
  1090.                                 psz_password, VLC_FALSE );
  1091. }
  1092. httpd_url_t *httpd_UrlNewUnique( httpd_host_t *host, char *psz_url,
  1093.                                  char *psz_user, char *psz_password )
  1094. {
  1095.     return httpd_UrlNewPrivate( host, psz_url, psz_user,
  1096.                                 psz_password, VLC_TRUE );
  1097. }
  1098. /* register callback on a url */
  1099. int httpd_UrlCatch( httpd_url_t *url, int i_msg, httpd_callback_t cb,
  1100.                     httpd_callback_sys_t *p_sys )
  1101. {
  1102.     vlc_mutex_lock( &url->lock );
  1103.     url->catch[i_msg].cb   = cb;
  1104.     url->catch[i_msg].p_sys= p_sys;
  1105.     vlc_mutex_unlock( &url->lock );
  1106.     return VLC_SUCCESS;
  1107. }
  1108. /* delete an url */
  1109. void httpd_UrlDelete( httpd_url_t *url )
  1110. {
  1111.     httpd_host_t *host = url->host;
  1112.     int          i;
  1113.     vlc_mutex_lock( &host->lock );
  1114.     TAB_REMOVE( host->i_url, host->url, url );
  1115.     vlc_mutex_destroy( &url->lock );
  1116.     free( url->psz_url );
  1117.     free( url->psz_user );
  1118.     free( url->psz_password );
  1119.     for( i = 0; i < host->i_client; i++ )
  1120.     {
  1121.         httpd_client_t *client = host->client[i];
  1122.         if( client->url == url )
  1123.         {
  1124.             /* TODO complete it */
  1125.             msg_Warn( host, "force closing connections" );
  1126.             httpd_ClientClean( client );
  1127.             TAB_REMOVE( host->i_client, host->client, client );
  1128.             free( client );
  1129.             i--;
  1130.         }
  1131.     }
  1132.     free( url );
  1133.     vlc_mutex_unlock( &host->lock );
  1134. }
  1135. void httpd_MsgInit( httpd_message_t *msg )
  1136. {
  1137.     msg->cl         = NULL;
  1138.     msg->i_type     = HTTPD_MSG_NONE;
  1139.     msg->i_proto    = HTTPD_PROTO_NONE;
  1140.     msg->i_version  = -1;
  1141.     msg->i_status   = 0;
  1142.     msg->psz_status = NULL;
  1143.     msg->psz_url = NULL;
  1144.     msg->psz_args = NULL;
  1145.     msg->i_channel = -1;
  1146.     msg->i_name = 0;
  1147.     msg->name   = NULL;
  1148.     msg->i_value= 0;
  1149.     msg->value  = NULL;
  1150.     msg->i_body_offset = 0;
  1151.     msg->i_body        = 0;
  1152.     msg->p_body        = 0;
  1153. }
  1154. void httpd_MsgClean( httpd_message_t *msg )
  1155. {
  1156.     int i;
  1157.     if( msg->psz_status )
  1158.     {
  1159.         free( msg->psz_status );
  1160.     }
  1161.     if( msg->psz_url )
  1162.     {
  1163.         free( msg->psz_url );
  1164.     }
  1165.     if( msg->psz_args )
  1166.     {
  1167.         free( msg->psz_args );
  1168.     }
  1169.     for( i = 0; i < msg->i_name; i++ )
  1170.     {
  1171.         free( msg->name[i] );
  1172.         free( msg->value[i] );
  1173.     }
  1174.     if( msg->name )
  1175.     {
  1176.         free( msg->name );
  1177.     }
  1178.     if( msg->value )
  1179.     {
  1180.         free( msg->value );
  1181.     }
  1182.     if( msg->p_body )
  1183.     {
  1184.         free( msg->p_body );
  1185.     }
  1186.     httpd_MsgInit( msg );
  1187. }
  1188. char *httpd_MsgGet( httpd_message_t *msg, char *name )
  1189. {
  1190.     int i;
  1191.     for( i = 0; i < msg->i_name; i++ )
  1192.     {
  1193.         if( !strcasecmp( msg->name[i], name ))
  1194.         {
  1195.             return msg->value[i];
  1196.         }
  1197.     }
  1198.     return "";
  1199. }
  1200. void httpd_MsgAdd( httpd_message_t *msg, char *name, char *psz_value, ... )
  1201. {
  1202.     va_list args;
  1203.     char *value = NULL;
  1204.     va_start( args, psz_value );
  1205. #if defined(HAVE_VASPRINTF) && !defined(SYS_DARWIN) && !defined(SYS_BEOS)
  1206.     vasprintf( &value, psz_value, args );
  1207. #else
  1208.     {
  1209.         int i_size = strlen( psz_value ) + 4096;    /* FIXME stupid system */
  1210.         value = calloc( i_size, sizeof( char ) );
  1211.         vsnprintf( value, i_size, psz_value, args );
  1212.         value[i_size - 1] = 0;
  1213.     }
  1214. #endif
  1215.     va_end( args );
  1216.     name = strdup( name );
  1217.     TAB_APPEND( msg->i_name,  msg->name,  name );
  1218.     TAB_APPEND( msg->i_value, msg->value, value );
  1219. }
  1220. static void httpd_ClientInit( httpd_client_t *cl )
  1221. {
  1222.     cl->i_state = HTTPD_CLIENT_RECEIVING;
  1223.     cl->i_activity_date = mdate();
  1224.     cl->i_activity_timeout = I64C(10000000);
  1225.     cl->i_buffer_size = 10000;
  1226.     cl->i_buffer = 0;
  1227.     cl->p_buffer = malloc( cl->i_buffer_size );
  1228.     cl->i_mode   = HTTPD_CLIENT_FILE;
  1229.     cl->b_read_waiting = VLC_FALSE;
  1230.     httpd_MsgInit( &cl->query );
  1231.     httpd_MsgInit( &cl->answer );
  1232. }
  1233. void httpd_ClientModeStream( httpd_client_t *cl )
  1234. {
  1235.     cl->i_mode   = HTTPD_CLIENT_STREAM;
  1236. }
  1237. void httpd_ClientModeBidir( httpd_client_t *cl )
  1238. {
  1239.     cl->i_mode   = HTTPD_CLIENT_BIDIR;
  1240. }
  1241. char* httpd_ClientIP( httpd_client_t *cl )
  1242. {
  1243. #ifdef HAVE_GETNAMEINFO
  1244.     char sz_ip[INET6_ADDRSTRLEN + 2];
  1245.     int i;
  1246.     if( (cl->sock.ss_family == AF_INET6) &&
  1247.         IN6_IS_ADDR_V4MAPPED( &((const struct sockaddr_in6 *)
  1248.                               &cl->sock)->sin6_addr) )
  1249.     {
  1250.         /* If client is using IPv4 but server is using IPv6 */
  1251.         struct sockaddr_in a;
  1252.         
  1253.         memset( &a, 0, sizeof( a ) );
  1254.         a.sin_family = AF_INET;
  1255.         a.sin_port = ((const struct sockaddr_in6 *)&cl->sock)->sin6_port;
  1256.         a.sin_addr.s_addr = ((const uint32_t *)&((const struct sockaddr_in6 *)
  1257.                             &cl->sock)->sin6_addr)[3];
  1258.         i = getnameinfo( (const struct sockaddr *)&a, sizeof( a ),
  1259.                          &sz_ip[1], INET6_ADDRSTRLEN, NULL, 0, NI_NUMERICHOST );
  1260.     }
  1261.     else
  1262.         i = getnameinfo( (const struct sockaddr *)&cl->sock, cl->i_sock_size,
  1263.                          &sz_ip[1], INET6_ADDRSTRLEN, NULL, 0,
  1264.                          NI_NUMERICHOST );
  1265.     if( i != 0 )
  1266.         /* FIXME: msg_Err */
  1267.         return NULL;
  1268.         
  1269.     if( strchr( &sz_ip[1], ':' ) != NULL )
  1270.     {
  1271.         *sz_ip = '[';
  1272.         i = strlen( sz_ip );
  1273.         sz_ip[i++] = ']';
  1274.         sz_ip[i] = '';
  1275.        
  1276.         return strdup( sz_ip );
  1277.     }
  1278.     
  1279.     return strdup( &sz_ip[1] );
  1280. #else
  1281.     /* FIXME not thread safe */
  1282.     return strdup( inet_ntoa( ((const struct sockaddr_in *)&cl->sock)->sin_addr ) );
  1283. #endif
  1284. }
  1285. static void httpd_ClientClean( httpd_client_t *cl )
  1286. {
  1287.     if( cl->fd >= 0 )
  1288.     {
  1289.         if( cl->p_tls != NULL )
  1290.             tls_SessionClose( cl->p_tls );
  1291.         net_Close( cl->fd );
  1292.         cl->fd = -1;
  1293.     }
  1294.     httpd_MsgClean( &cl->answer );
  1295.     httpd_MsgClean( &cl->query );
  1296.     if( cl->p_buffer )
  1297.     {
  1298.         free( cl->p_buffer );
  1299.         cl->p_buffer = NULL;
  1300.     }
  1301. }
  1302. static httpd_client_t *httpd_ClientNew( int fd, struct sockaddr_storage *sock,
  1303.                                         int i_sock_size,
  1304.                                         tls_session_t *p_tls )
  1305. {
  1306.     httpd_client_t *cl = malloc( sizeof( httpd_client_t ) );
  1307.     /* set this new socket non-block */
  1308. #if defined( WIN32 ) || defined( UNDER_CE )
  1309.     {
  1310.         unsigned long i_dummy = 1;
  1311.         ioctlsocket( fd, FIONBIO, &i_dummy );
  1312.     }
  1313. #else
  1314.     fcntl( fd, F_SETFL, O_NONBLOCK );
  1315. #endif
  1316.     cl->i_ref   = 0;
  1317.     cl->fd      = fd;
  1318.     memcpy( &cl->sock, sock, sizeof( cl->sock ) );
  1319.     cl->i_sock_size = i_sock_size;
  1320.     cl->url     = NULL;
  1321.     cl->p_tls = p_tls;
  1322.     httpd_ClientInit( cl );
  1323.     return cl;
  1324. }
  1325. static int httpd_NetRecv( httpd_client_t *cl, char *p, int i_len )
  1326. {
  1327.     tls_session_t *p_tls;
  1328.     
  1329.     p_tls = cl->p_tls;
  1330.     if( p_tls != NULL)
  1331.         return tls_Recv( p_tls, p, i_len );
  1332.     return recv( cl->fd, p, i_len, 0 );
  1333. }
  1334. static int httpd_NetSend( httpd_client_t *cl, const char *p, int i_len )
  1335. {
  1336.     tls_session_t *p_tls;
  1337.     p_tls = cl->p_tls;
  1338.     if( p_tls != NULL)
  1339.         return tls_Send( p_tls, p, i_len );
  1340.     return send( cl->fd, p, i_len, 0 );
  1341. }
  1342. static void httpd_ClientRecv( httpd_client_t *cl )
  1343. {
  1344.     int i_len;
  1345.     if( cl->query.i_proto == HTTPD_PROTO_NONE )
  1346.     {
  1347.         /* enought to see if it's rtp over rtsp or RTSP/HTTP */
  1348.         i_len = httpd_NetRecv( cl, &cl->p_buffer[cl->i_buffer],
  1349.                                4 - cl->i_buffer );
  1350.         if( i_len > 0 )
  1351.         {
  1352.             cl->i_buffer += i_len;
  1353.         }
  1354.         if( cl->i_buffer >= 4 )
  1355.         {
  1356.             fprintf( stderr, "peek=%4.4sn", cl->p_buffer );
  1357.             /* detect type */
  1358.             if( cl->p_buffer[0] == '$' )
  1359.             {
  1360.                 /* RTSP (rtp over rtsp) */
  1361.                 cl->query.i_proto = HTTPD_PROTO_RTSP;
  1362.                 cl->query.i_type  = HTTPD_MSG_CHANNEL;
  1363.                 cl->query.i_channel = cl->p_buffer[1];
  1364.                 cl->query.i_body  = (cl->p_buffer[2] << 8)|cl->p_buffer[3];
  1365.                 cl->query.p_body  = malloc( cl->query.i_body );
  1366.                 cl->i_buffer      = 0;
  1367.             }
  1368.             else if( !strncmp( cl->p_buffer, "HTTP", 4 ) )
  1369.             {
  1370.                 cl->query.i_proto = HTTPD_PROTO_HTTP;
  1371.                 cl->query.i_type  = HTTPD_MSG_ANSWER;
  1372.             }
  1373.             else if( !strncmp( cl->p_buffer, "RTSP", 4 ) )
  1374.             {
  1375.                 cl->query.i_proto = HTTPD_PROTO_RTSP;
  1376.                 cl->query.i_type  = HTTPD_MSG_ANSWER;
  1377.             }
  1378.             else if( !strncmp( cl->p_buffer, "GET", 3 ) ||
  1379.                      !strncmp( cl->p_buffer, "HEAD", 4 ) ||
  1380.                      !strncmp( cl->p_buffer, "POST", 4 ) )
  1381.             {
  1382.                 cl->query.i_proto = HTTPD_PROTO_HTTP;
  1383.                 cl->query.i_type  = HTTPD_MSG_NONE;
  1384.             }
  1385.             else
  1386.             {
  1387.                 cl->query.i_proto = HTTPD_PROTO_RTSP;
  1388.                 cl->query.i_type  = HTTPD_MSG_NONE;
  1389.             }
  1390.         }
  1391.     }
  1392.     else if( cl->query.i_body > 0 )
  1393.     {
  1394.         /* we are reading the body of a request or a channel */
  1395.         i_len = httpd_NetRecv( cl, &cl->query.p_body[cl->i_buffer],
  1396.                                cl->query.i_body - cl->i_buffer );
  1397.         if( i_len > 0 )
  1398.         {
  1399.             cl->i_buffer += i_len;
  1400.         }
  1401.         if( cl->i_buffer >= cl->query.i_body )
  1402.         {
  1403.             cl->i_state = HTTPD_CLIENT_RECEIVE_DONE;
  1404.         }
  1405.     }
  1406.     else
  1407.     {
  1408.         /* we are reading a header -> char by char */
  1409.         for( ;; )
  1410.         {
  1411.             i_len = httpd_NetRecv (cl, &cl->p_buffer[cl->i_buffer], 1 );
  1412.             if( i_len <= 0 )
  1413.             {
  1414.                 break;
  1415.             }
  1416.             cl->i_buffer++;
  1417.             if( cl->i_buffer + 1 >= cl->i_buffer_size )
  1418.             {
  1419.                 cl->i_buffer_size += 1024;
  1420.                 cl->p_buffer = realloc( cl->p_buffer, cl->i_buffer_size );
  1421.             }
  1422.             if( ( cl->i_buffer >= 2 && !strncmp( &cl->p_buffer[cl->i_buffer-2], "nn", 2 ) )||
  1423.                 ( cl->i_buffer >= 4 && !strncmp( &cl->p_buffer[cl->i_buffer-4], "rnrn", 4 ) ) )
  1424.             {
  1425.                 char *p;
  1426.                 /* we have finished the header so parse it and set i_body */
  1427.                 cl->p_buffer[cl->i_buffer] = '';
  1428.                 if( cl->query.i_type == HTTPD_MSG_ANSWER )
  1429.                 {
  1430.                     cl->query.i_status =
  1431.                         strtol( &cl->p_buffer[strlen( "HTTP/1.x" )], &p, 0 );
  1432.                     while( *p == ' ' )
  1433.                     {
  1434.                         p++;
  1435.                     }
  1436.                     cl->query.psz_status = strdup( p );
  1437.                 }
  1438.                 else
  1439.                 {
  1440.                     static const struct
  1441.                     {
  1442.                         char *name;
  1443.                         int  i_type;
  1444.                         int  i_proto;
  1445.                     }
  1446.                     msg_type[] =
  1447.                     {
  1448.                         { "GET",        HTTPD_MSG_GET,  HTTPD_PROTO_HTTP },
  1449.                         { "HEAD",       HTTPD_MSG_HEAD, HTTPD_PROTO_HTTP },
  1450.                         { "POST",       HTTPD_MSG_POST, HTTPD_PROTO_HTTP },
  1451.                         { "OPTIONS",    HTTPD_MSG_OPTIONS,  HTTPD_PROTO_RTSP },
  1452.                         { "DESCRIBE",   HTTPD_MSG_DESCRIBE, HTTPD_PROTO_RTSP },
  1453.                         { "SETUP",      HTTPD_MSG_SETUP,    HTTPD_PROTO_RTSP },
  1454.                         { "PLAY",       HTTPD_MSG_PLAY,     HTTPD_PROTO_RTSP },
  1455.                         { "PAUSE",      HTTPD_MSG_PAUSE,    HTTPD_PROTO_RTSP },
  1456.                         { "TEARDOWN",   HTTPD_MSG_TEARDOWN, HTTPD_PROTO_RTSP },
  1457.                         { NULL,         HTTPD_MSG_NONE,     HTTPD_PROTO_NONE }
  1458.                     };
  1459.                     int  i;
  1460.                     p = NULL;
  1461.                     cl->query.i_type = HTTPD_MSG_NONE;
  1462.                     fprintf( stderr, "received new request=%sn", cl->p_buffer);
  1463.                     for( i = 0; msg_type[i].name != NULL; i++ )
  1464.                     {
  1465.                         if( !strncmp( cl->p_buffer, msg_type[i].name,
  1466.                                       strlen( msg_type[i].name ) ) )
  1467.                         {
  1468.                             p = &cl->p_buffer[strlen(msg_type[i].name) + 1 ];
  1469.                             cl->query.i_type = msg_type[i].i_type;
  1470.                             if( cl->query.i_proto != msg_type[i].i_proto )
  1471.                             {
  1472.                                 p = NULL;
  1473.                                 cl->query.i_proto = HTTPD_PROTO_NONE;
  1474.                                 cl->query.i_type = HTTPD_MSG_NONE;
  1475.                             }
  1476.                             break;
  1477.                         }
  1478.                     }
  1479.                     if( p == NULL )
  1480.                     {
  1481.                         if( strstr( cl->p_buffer, "HTTP/1." ) )
  1482.                         {
  1483.                             cl->query.i_proto = HTTPD_PROTO_HTTP;
  1484.                         }
  1485.                         else if( strstr( cl->p_buffer, "RTSP/1." ) )
  1486.                         {
  1487.                             cl->query.i_proto = HTTPD_PROTO_RTSP;
  1488.                         }
  1489.                     }
  1490.                     else
  1491.                     {
  1492.                         char *p2;
  1493.                         char *p3;
  1494.                         while( *p == ' ' )
  1495.                         {
  1496.                             p++;
  1497.                         }
  1498.                         p2 = strchr( p, ' ' );
  1499.                         if( p2 )
  1500.                         {
  1501.                             *p2++ = '';
  1502.                         }
  1503.                         if( !strncasecmp( p, "rtsp:", 5 ) )
  1504.                         {
  1505.                             /* for rtsp url, you have rtsp://localhost:port/path */
  1506.                             p += 5;
  1507.                             while( *p == '/' ) p++;
  1508.                             while( *p && *p != '/' ) p++;
  1509.                         }
  1510.                         cl->query.psz_url = strdup( p );
  1511.                         if( ( p3 = strchr( cl->query.psz_url, '?' ) )  )
  1512.                         {
  1513.                             *p3++ = '';
  1514.                             cl->query.psz_args = strdup( p3 );
  1515.                         }
  1516.                         if( p2 )
  1517.                         {
  1518.                             while( *p2 == ' ' )
  1519.                             {
  1520.                                 p2++;
  1521.                             }
  1522.                             if( !strncasecmp( p2, "HTTP/1.", 7 ) )
  1523.                             {
  1524.                                 cl->query.i_proto = HTTPD_PROTO_HTTP;
  1525.                                 cl->query.i_version = atoi( p2+7 );
  1526.                             }
  1527.                             else if( !strncasecmp( p2, "RTSP/1.", 7 ) )
  1528.                             {
  1529.                                 cl->query.i_proto = HTTPD_PROTO_RTSP;
  1530.                                 cl->query.i_version = atoi( p2+7 );
  1531.                             }
  1532.                         }
  1533.                         p = p2;
  1534.                     }
  1535.                 }
  1536.                 if( p )
  1537.                 {
  1538.                     p = strchr( p, 'n' );
  1539.                 }
  1540.                 if( p )
  1541.                 {
  1542.                     while( *p == 'n' || *p == 'r' )
  1543.                     {
  1544.                         p++;
  1545.                     }
  1546.                     while( p && *p != '' )
  1547.                     {
  1548.                         char *line = p;
  1549.                         char *eol = p = strchr( p, 'n' );
  1550.                         char *colon;
  1551.                         while( eol && eol >= line && ( *eol == 'n' || *eol == 'r' ) )
  1552.                         {
  1553.                             *eol-- = '';
  1554.                         }
  1555.                         if( ( colon = strchr( line, ':' ) ) )
  1556.                         {
  1557.                             char *name;
  1558.                             char *value;
  1559.                             *colon++ = '';
  1560.                             while( *colon == ' ' )
  1561.                             {
  1562.                                 colon++;
  1563.                             }
  1564.                             name = strdup( line );
  1565.                             value = strdup( colon );
  1566.                             TAB_APPEND( cl->query.i_name, cl->query.name, name );
  1567.                             TAB_APPEND( cl->query.i_value,cl->query.value,value);
  1568.                             if( !strcasecmp( name, "Content-Length" ) )
  1569.                             {
  1570.                                 cl->query.i_body = atol( value );
  1571.                             }
  1572.                         }
  1573.                         if( p )
  1574.                         {
  1575.                             p++;
  1576.                             while( *p == 'n' || *p == 'r' )
  1577.                             {
  1578.                                 p++;
  1579.                             }
  1580.                         }
  1581.                     }
  1582.                 }
  1583.                 if( cl->query.i_body > 0 )
  1584.                 {
  1585.                     /* TODO Mhh, handle the case client will only send a request and close the connection
  1586.                      * to mark and of body (probably only RTSP) */
  1587.                     cl->query.p_body = malloc( cl->query.i_body );
  1588.                     cl->i_buffer = 0;
  1589.                 }
  1590.                 else
  1591.                 {
  1592.                     cl->i_state = HTTPD_CLIENT_RECEIVE_DONE;
  1593.                 }
  1594.             }
  1595.         }
  1596.     }
  1597.     /* check if the client is to be set to dead */
  1598. #if defined( WIN32 ) || defined( UNDER_CE )
  1599.     if( ( i_len < 0 && WSAGetLastError() != WSAEWOULDBLOCK ) || ( i_len == 0 ) )
  1600. #else
  1601.     if( ( i_len < 0 && errno != EAGAIN && errno != EINTR ) || ( i_len == 0 ) )
  1602. #endif
  1603.     {
  1604.         if( cl->query.i_proto != HTTPD_PROTO_NONE && cl->query.i_type != HTTPD_MSG_NONE )
  1605.         {
  1606.             /* connection closed -> end of data */
  1607.             if( cl->query.i_body > 0 )
  1608.             {
  1609.                 cl->query.i_body = cl->i_buffer;
  1610.             }
  1611.             cl->i_state = HTTPD_CLIENT_RECEIVE_DONE;
  1612.         }
  1613.         else
  1614.         {
  1615.             cl->i_state = HTTPD_CLIENT_DEAD;
  1616.         }
  1617.     }
  1618.     cl->i_activity_date = mdate();
  1619.     /* XXX: for QT I have to disable timeout. Try to find why */
  1620.     if( cl->query.i_proto == HTTPD_PROTO_RTSP )
  1621.         cl->i_activity_timeout = 0;
  1622.     /* Debugging only */
  1623.     if( cl->i_state == HTTPD_CLIENT_RECEIVE_DONE )
  1624.     {
  1625.         int i;
  1626.         fprintf( stderr, "received new requestn" );
  1627.         fprintf( stderr, "  - proto=%sn",
  1628.                  cl->query.i_proto == HTTPD_PROTO_HTTP ? "HTTP" : "RTSP" );
  1629.         fprintf( stderr, "  - version=%dn", cl->query.i_version );
  1630.         fprintf( stderr, "  - msg=%dn", cl->query.i_type );
  1631.         if( cl->query.i_type == HTTPD_MSG_ANSWER )
  1632.         {
  1633.             fprintf( stderr, "  - answer=%d '%s'n", cl->query.i_status,
  1634.                      cl->query.psz_status );
  1635.         }
  1636.         else if( cl->query.i_type != HTTPD_MSG_NONE )
  1637.         {
  1638.             fprintf( stderr, "  - url=%sn", cl->query.psz_url );
  1639.         }
  1640.         for( i = 0; i < cl->query.i_name; i++ )
  1641.         {
  1642.             fprintf( stderr, "  - option name='%s' value='%s'n",
  1643.                      cl->query.name[i], cl->query.value[i] );
  1644.         }
  1645.     }
  1646. }
  1647. static void httpd_ClientSend( httpd_client_t *cl )
  1648. {
  1649.     int i;
  1650.     int i_len;
  1651.     if( cl->i_buffer < 0 )
  1652.     {
  1653.         /* We need to create the header */
  1654.         int i_size = 0;
  1655.         char *p;
  1656.         i_size = strlen( "HTTP/1.") + 10 + 10 +
  1657.                  strlen( cl->answer.psz_status ? cl->answer.psz_status : "" ) + 5;
  1658.         for( i = 0; i < cl->answer.i_name; i++ )
  1659.         {
  1660.             i_size += strlen( cl->answer.name[i] ) + 2 +
  1661.                       strlen( cl->answer.value[i] ) + 2;
  1662.         }
  1663.         if( cl->i_buffer_size < i_size )
  1664.         {
  1665.             cl->i_buffer_size = i_size;
  1666.             free( cl->p_buffer );
  1667.             cl->p_buffer = malloc( i_size );
  1668.         }
  1669.         p = cl->p_buffer;
  1670.         p += sprintf( p, "%s/1.%d %d %srn",
  1671.                       cl->answer.i_proto ==  HTTPD_PROTO_HTTP ? "HTTP" : "RTSP",
  1672.                       cl->answer.i_version,
  1673.                       cl->answer.i_status, cl->answer.psz_status );
  1674.         for( i = 0; i < cl->answer.i_name; i++ )
  1675.         {
  1676.             p += sprintf( p, "%s: %srn", cl->answer.name[i],
  1677.                           cl->answer.value[i] );
  1678.         }
  1679.         p += sprintf( p, "rn" );
  1680.         cl->i_buffer = 0;
  1681.         cl->i_buffer_size = (uint8_t*)p - cl->p_buffer;
  1682.         fprintf( stderr, "sending answern" );
  1683.         fprintf( stderr, "%s",  cl->p_buffer );
  1684.     }
  1685.     i_len = httpd_NetSend( cl, &cl->p_buffer[cl->i_buffer],
  1686.                            cl->i_buffer_size - cl->i_buffer );
  1687.     if( i_len > 0 )
  1688.     {
  1689.         cl->i_activity_date = mdate();
  1690.         cl->i_buffer += i_len;
  1691.         if( cl->i_buffer >= cl->i_buffer_size )
  1692.         {
  1693.             if( cl->answer.i_body == 0  && cl->answer.i_body_offset > 0 &&
  1694.                 !cl->b_read_waiting )
  1695.             {
  1696.                 /* catch more body data */
  1697.                 int     i_msg = cl->query.i_type;
  1698.                 int64_t i_offset = cl->answer.i_body_offset;
  1699.                 httpd_MsgClean( &cl->answer );
  1700.                 cl->answer.i_body_offset = i_offset;
  1701.                 cl->url->catch[i_msg].cb( cl->url->catch[i_msg].p_sys, cl,
  1702.                                           &cl->answer, &cl->query );
  1703.             }
  1704.             if( cl->answer.i_body > 0 )
  1705.             {
  1706.                 /* send the body data */
  1707.                 free( cl->p_buffer );
  1708.                 cl->p_buffer = cl->answer.p_body;
  1709.                 cl->i_buffer_size = cl->answer.i_body;
  1710.                 cl->i_buffer = 0;
  1711.                 cl->answer.i_body = 0;
  1712.                 cl->answer.p_body = NULL;
  1713.             }
  1714.             else
  1715.             {
  1716.                 /* send finished */
  1717.                 cl->i_state = HTTPD_CLIENT_SEND_DONE;
  1718.             }
  1719.         }
  1720.     }
  1721.     else
  1722.     {
  1723. #if defined( WIN32 ) || defined( UNDER_CE )
  1724.         if( ( i_len < 0 && WSAGetLastError() != WSAEWOULDBLOCK ) || ( i_len == 0 ) )
  1725. #else
  1726.         if( ( i_len < 0 && errno != EAGAIN && errno != EINTR ) || ( i_len == 0 ) )
  1727. #endif
  1728.         {
  1729.             /* error */
  1730.             cl->i_state = HTTPD_CLIENT_DEAD;
  1731.         }
  1732.     }
  1733. }
  1734. static void httpd_HostThread( httpd_host_t *host )
  1735. {
  1736.     tls_session_t *p_tls = NULL;
  1737.     while( !host->b_die )
  1738.     {
  1739.         struct timeval  timeout;
  1740.         fd_set          fds_read;
  1741.         fd_set          fds_write;
  1742.         int             i_handle_max = 0;
  1743.         int             i_ret;
  1744.         int             i_client;
  1745.         int             b_low_delay = 0;
  1746.         if( host->i_url <= 0 )
  1747.         {
  1748.             /* 0.2s */
  1749.             msleep( 200000 );
  1750.             continue;
  1751.         }
  1752.         /* built a set of handle to select */
  1753.         FD_ZERO( &fds_read );
  1754.         FD_ZERO( &fds_write );
  1755.         FD_SET( host->fd, &fds_read );
  1756.         i_handle_max = host->fd;
  1757.         /* prepare a new TLS session */
  1758.         if( ( p_tls == NULL ) && ( host->p_tls != NULL ) )
  1759.             p_tls = tls_ServerSessionPrepare( host->p_tls );
  1760.         /* add all socket that should be read/write and close dead connection */
  1761.         vlc_mutex_lock( &host->lock );
  1762.         for( i_client = 0; i_client < host->i_client; i_client++ )
  1763.         {
  1764.             httpd_client_t *cl = host->client[i_client];
  1765.             if( cl->i_ref < 0 || ( cl->i_ref == 0 &&
  1766.                 ( cl->i_state == HTTPD_CLIENT_DEAD ||
  1767.                   ( cl->i_activity_timeout > 0 &&
  1768.                     cl->i_activity_date+cl->i_activity_timeout < mdate()) ) ) )
  1769.             {
  1770.                 char *ip;
  1771.                 // FIXME: it sucks to allocate memory on the stack for debug
  1772.                 ip = httpd_ClientIP( cl );
  1773.                 msg_Dbg( host, "connection closed(%s)",
  1774.                          (ip != NULL) ? ip : "unknown" );
  1775.                 free( ip );
  1776.                 httpd_ClientClean( cl );
  1777.                 TAB_REMOVE( host->i_client, host->client, cl );
  1778.                 free( cl );
  1779.                 i_client--;
  1780.                 continue;
  1781.             }
  1782.             else if( cl->i_state == HTTPD_CLIENT_RECEIVING )
  1783.             {
  1784.                 FD_SET( cl->fd, &fds_read );
  1785.                 i_handle_max = __MAX( i_handle_max, cl->fd );
  1786.             }
  1787.             else if( cl->i_state == HTTPD_CLIENT_SENDING )
  1788.             {
  1789.                 FD_SET( cl->fd, &fds_write );
  1790.                 i_handle_max = __MAX( i_handle_max, cl->fd );
  1791.             }
  1792.             else if( cl->i_state == HTTPD_CLIENT_RECEIVE_DONE )
  1793.             {
  1794.                 httpd_message_t *answer = &cl->answer;
  1795.                 httpd_message_t *query  = &cl->query;
  1796.                 int i_msg = query->i_type;
  1797.                 httpd_MsgInit( answer );
  1798.                 /* Handle what we received */
  1799.                 if( cl->i_mode != HTTPD_CLIENT_BIDIR &&
  1800.                     (i_msg == HTTPD_MSG_ANSWER || i_msg == HTTPD_MSG_CHANNEL) )
  1801.                 {
  1802.                     /* we can only receive request from client when not
  1803.                      * in BIDIR mode */
  1804.                     cl->url     = NULL;
  1805.                     cl->i_state = HTTPD_CLIENT_DEAD;
  1806.                 }
  1807.                 else if( i_msg == HTTPD_MSG_ANSWER )
  1808.                 {
  1809.                     /* We are in BIDIR mode, trigger the callback and then
  1810.                      * check for new data */
  1811.                     if( cl->url && cl->url->catch[i_msg].cb )
  1812.                     {
  1813.                         cl->url->catch[i_msg].cb( cl->url->catch[i_msg].p_sys,
  1814.                                                   cl, NULL, query );
  1815.                     }
  1816.                     cl->i_state = HTTPD_CLIENT_WAITING;
  1817.                 }
  1818.                 else if( i_msg == HTTPD_MSG_CHANNEL )
  1819.                 {
  1820.                     /* We are in BIDIR mode, trigger the callback and then
  1821.                      * check for new data */
  1822.                     if( cl->url && cl->url->catch[i_msg].cb )
  1823.                     {
  1824.                         cl->url->catch[i_msg].cb( cl->url->catch[i_msg].p_sys,
  1825.                                                   cl, NULL, query );
  1826.                     }
  1827.                     cl->i_state = HTTPD_CLIENT_WAITING;
  1828.                 }
  1829.                 else if( i_msg == HTTPD_MSG_OPTIONS )
  1830.                 {
  1831.                     int i_cseq;
  1832.                     /* unimplemented */
  1833.                     answer->i_proto  = query->i_proto ;
  1834.                     answer->i_type   = HTTPD_MSG_ANSWER;
  1835.                     answer->i_version= 0;
  1836.                     answer->i_status = 200;
  1837.                     answer->psz_status = strdup( "Ok" );
  1838.                     answer->i_body = 0;
  1839.                     answer->p_body = NULL;
  1840.                     i_cseq = atoi( httpd_MsgGet( query, "Cseq" ) );
  1841.                     httpd_MsgAdd( answer, "Cseq", "%d", i_cseq );
  1842.                     httpd_MsgAdd( answer, "Server", "VLC Server" );
  1843.                     httpd_MsgAdd( answer, "Public", "DESCRIBE, SETUP, "
  1844.                                  "TEARDOWN, PLAY, PAUSE" );
  1845.                     httpd_MsgAdd( answer, "Content-Length", "%d",
  1846.                                   answer->i_body );
  1847.                     cl->i_buffer = -1;  /* Force the creation of the answer in
  1848.                                          * httpd_ClientSend */
  1849.                     cl->i_state = HTTPD_CLIENT_SENDING;
  1850.                 }
  1851.                 else if( i_msg == HTTPD_MSG_NONE )
  1852.                 {
  1853.                     if( query->i_proto == HTTPD_PROTO_NONE )
  1854.                     {
  1855.                         cl->url = NULL;
  1856.                         cl->i_state = HTTPD_CLIENT_DEAD;
  1857.                     }
  1858.                     else
  1859.                     {
  1860.                         uint8_t *p;
  1861.                         /* unimplemented */
  1862.                         answer->i_proto  = query->i_proto ;
  1863.                         answer->i_type   = HTTPD_MSG_ANSWER;
  1864.                         answer->i_version= 0;
  1865.                         answer->i_status = 501;
  1866.                         answer->psz_status = strdup( "Unimplemented" );
  1867.                         p = answer->p_body = malloc( 1000 );
  1868.                         p += sprintf( p, "<html>n" );
  1869.                         p += sprintf( p, "<head>n" );
  1870.                         p += sprintf( p, "<title>Error 501</title>n" );
  1871.                         p += sprintf( p, "</head>n" );
  1872.                         p += sprintf( p, "<body>n" );
  1873.                         p += sprintf( p, "<h1><center> 501 Unimplemented</center></h1>n" );
  1874.                         p += sprintf( p, "<hr />n" );
  1875.                         p += sprintf( p, "<a href="http://www.videolan.org">VideoLAN</a>n" );
  1876.                         p += sprintf( p, "</body>n" );
  1877.                         p += sprintf( p, "</html>n" );
  1878.                         answer->i_body = p - answer->p_body;
  1879.                         httpd_MsgAdd( answer, "Content-Length", "%d", answer->i_body );
  1880.                         cl->i_buffer = -1;  /* Force the creation of the answer in httpd_ClientSend */
  1881.                         cl->i_state = HTTPD_CLIENT_SENDING;
  1882.                     }
  1883.                 }
  1884.                 else
  1885.                 {
  1886.                     vlc_bool_t b_auth_failed = VLC_FALSE;
  1887.                     int i;
  1888.                     /* Search the url and trigger callbacks */
  1889.                     for( i = 0; i < host->i_url; i++ )
  1890.                     {
  1891.                         httpd_url_t *url = host->url[i];
  1892.                         if( !strcmp( url->psz_url, query->psz_url ) )
  1893.                         {
  1894.                             if( url->catch[i_msg].cb )
  1895.                             {
  1896.                                 if( answer && ( *url->psz_user || *url->psz_password ) )
  1897.                                 {
  1898.                                     /* create the headers */
  1899.                                     char *b64 = httpd_MsgGet( query, "Authorization" ); /* BASIC id */
  1900.                                     char *auth;
  1901.                                     char *id;
  1902.                                     asprintf( &id, "%s:%s", url->psz_user, url->psz_password );
  1903.                                     auth = malloc( strlen(b64) + 1 );
  1904.                                     if( !strncasecmp( b64, "BASIC", 5 ) )
  1905.                                     {
  1906.                                         b64 += 5;
  1907.                                         while( *b64 == ' ' )
  1908.                                         {
  1909.                                             b64++;
  1910.                                         }
  1911.                                         b64_decode( auth, b64 );
  1912.                                     }
  1913.                                     else
  1914.                                     {
  1915.                                         strcpy( auth, "" );
  1916.                                     }
  1917.                                     if( strcmp( id, auth ) )
  1918.                                     {
  1919.                                         httpd_MsgAdd( answer, "WWW-Authenticate", "Basic realm="%s"", url->psz_user );
  1920.                                         /* We fail for all url */
  1921.                                         b_auth_failed = VLC_TRUE;
  1922.                                         free( id );
  1923.                                         free( auth );
  1924.                                         break;
  1925.                                     }
  1926.                                     free( id );
  1927.                                     free( auth );
  1928.                                 }
  1929.                                 if( !url->catch[i_msg].cb( url->catch[i_msg].p_sys, cl, answer, query ) )
  1930.                                 {
  1931.                                     /* only one url can answer */
  1932.                                     answer = NULL;
  1933.                                     if( cl->url == NULL )
  1934.                                     {
  1935.                                         cl->url = url;
  1936.                                     }
  1937.                                 }
  1938.                             }
  1939.                         }
  1940.                     }
  1941.                     if( answer )
  1942.                     {
  1943.                         uint8_t *p;
  1944.                         answer->i_proto  = query->i_proto;
  1945.                         answer->i_type   = HTTPD_MSG_ANSWER;
  1946.                         answer->i_version= 0;
  1947.                         p = answer->p_body = malloc( 1000 + strlen(query->psz_url) );
  1948.                         if( b_auth_failed )
  1949.                         {
  1950.                             answer->i_status = 401;
  1951.                             answer->psz_status = strdup( "Authorization Required" );
  1952.                             p += sprintf( p, "<html>n" );
  1953.                             p += sprintf( p, "<head>n" );
  1954.                             p += sprintf( p, "<title>Error 401</title>n" );
  1955.                             p += sprintf( p, "</head>n" );
  1956.                             p += sprintf( p, "<body>n" );
  1957.                             p += sprintf( p, "<h1><center> 401 Authorization Required (%s)</center></h1>n", query->psz_url );
  1958.                             p += sprintf( p, "<hr />n" );
  1959.                             p += sprintf( p, "<a href="http://www.videolan.org">VideoLAN</a>n" );
  1960.                             p += sprintf( p, "</body>n" );
  1961.                             p += sprintf( p, "</html>n" );
  1962.                         }
  1963.                         else
  1964.                         {
  1965.                             /* no url registered */
  1966.                             answer->i_status = 404;
  1967.                             answer->psz_status = strdup( "Not found" );
  1968.                             p += sprintf( p, "<html>n" );
  1969.                             p += sprintf( p, "<head>n" );
  1970.                             p += sprintf( p, "<title>Error 404</title>n" );
  1971.                             p += sprintf( p, "</head>n" );
  1972.                             p += sprintf( p, "<body>n" );
  1973.                             p += sprintf( p, "<h1><center> 404 Resource not found(%s)</center></h1>n", query->psz_url );
  1974.                             p += sprintf( p, "<hr />n" );
  1975.                             p += sprintf( p, "<a href="http://www.videolan.org">VideoLAN</a>n" );
  1976.                             p += sprintf( p, "</body>n" );
  1977.                             p += sprintf( p, "</html>n" );
  1978.                         }
  1979.                         answer->i_body = p - answer->p_body;
  1980.                         httpd_MsgAdd( answer, "Content-Length", "%d", answer->i_body );
  1981.                     }
  1982.                     cl->i_buffer = -1;  /* Force the creation of the answer in httpd_ClientSend */
  1983.                     cl->i_state = HTTPD_CLIENT_SENDING;
  1984.                 }
  1985.             }
  1986.             else if( cl->i_state == HTTPD_CLIENT_SEND_DONE )
  1987.             {
  1988.                 if( cl->i_mode == HTTPD_CLIENT_FILE || cl->answer.i_body_offset == 0 )
  1989.                 {
  1990.                     cl->url = NULL;
  1991.                     if( ( cl->query.i_proto == HTTPD_PROTO_HTTP &&
  1992.                           ( ( cl->answer.i_version == 0 && !strcasecmp( httpd_MsgGet( &cl->answer, "Connection" ), "Keep-Alive" ) ) ||
  1993.                             ( cl->answer.i_version == 1 &&  strcasecmp( httpd_MsgGet( &cl->answer, "Connection" ), "Close" ) ) ) ) ||
  1994.                         ( cl->query.i_proto == HTTPD_PROTO_RTSP &&
  1995.                           strcasecmp( httpd_MsgGet( &cl->query, "Connection" ), "Close" ) &&
  1996.                           strcasecmp( httpd_MsgGet( &cl->answer, "Connection" ), "Close" ) ) )
  1997.                     {
  1998.                         httpd_MsgClean( &cl->query );
  1999.                         httpd_MsgInit( &cl->query );
  2000.                         cl->i_buffer = 0;
  2001.                         cl->i_buffer_size = 1000;
  2002.                         free( cl->p_buffer );
  2003.                         cl->p_buffer = malloc( cl->i_buffer_size );
  2004.                         cl->i_state = HTTPD_CLIENT_RECEIVING;
  2005.                     }
  2006.                     else
  2007.                     {
  2008.                         cl->i_state = HTTPD_CLIENT_DEAD;
  2009.                     }
  2010.                     httpd_MsgClean( &cl->answer );
  2011.                 }
  2012.                 else if( cl->b_read_waiting )
  2013.                 {
  2014.                     /* we have a message waiting for us to read it */
  2015.                     httpd_MsgClean( &cl->answer );
  2016.                     httpd_MsgClean( &cl->query );
  2017.                     cl->i_buffer = 0;
  2018.                     cl->i_buffer_size = 1000;
  2019.                     free( cl->p_buffer );
  2020.                     cl->p_buffer = malloc( cl->i_buffer_size );
  2021.                     cl->i_state = HTTPD_CLIENT_RECEIVING;
  2022.                     cl->b_read_waiting = VLC_FALSE;
  2023.                 }
  2024.                 else
  2025.                 {
  2026.                     int64_t i_offset = cl->answer.i_body_offset;
  2027.                     httpd_MsgClean( &cl->answer );
  2028.                     cl->answer.i_body_offset = i_offset;
  2029.                     free( cl->p_buffer );
  2030.                     cl->p_buffer = NULL;
  2031.                     cl->i_buffer = 0;
  2032.                     cl->i_buffer_size = 0;
  2033.                     cl->i_state = HTTPD_CLIENT_WAITING;
  2034.                 }
  2035.             }
  2036.             else if( cl->i_state == HTTPD_CLIENT_WAITING )
  2037.             {
  2038.                 int64_t i_offset = cl->answer.i_body_offset;
  2039.                 int     i_msg = cl->query.i_type;
  2040.                 httpd_MsgInit( &cl->answer );
  2041.                 cl->answer.i_body_offset = i_offset;
  2042.                 cl->url->catch[i_msg].cb( cl->url->catch[i_msg].p_sys, cl,
  2043.                                           &cl->answer, &cl->query );
  2044.                 if( cl->answer.i_type != HTTPD_MSG_NONE )
  2045.                 {
  2046.                     /* we have new data, so reenter send mode */
  2047.                     cl->i_buffer      = 0;
  2048.                     cl->p_buffer      = cl->answer.p_body;
  2049.                     cl->i_buffer_size = cl->answer.i_body;
  2050.                     cl->answer.p_body = NULL;
  2051.                     cl->answer.i_body = 0;
  2052.                     cl->i_state = HTTPD_CLIENT_SENDING;
  2053.                 }
  2054.                 else
  2055.                 {
  2056.                     /* we shouldn't wait too long */
  2057.                     b_low_delay = VLC_TRUE;
  2058.                 }
  2059.             }
  2060.             /* Special for BIDIR mode we also check reading */
  2061.             if( cl->i_mode == HTTPD_CLIENT_BIDIR &&
  2062.                 cl->i_state == HTTPD_CLIENT_SENDING )
  2063.             {
  2064.                 FD_SET( cl->fd, &fds_read );
  2065.                 i_handle_max = __MAX( i_handle_max, cl->fd );
  2066.             }
  2067.         }
  2068.         vlc_mutex_unlock( &host->lock );
  2069.         /* we will wait 100ms or 20ms (not too big 'cause HTTPD_CLIENT_WAITING) */
  2070.         timeout.tv_sec = 0;
  2071.         timeout.tv_usec = b_low_delay ? 20000 : 100000;
  2072.         i_ret = select( i_handle_max + 1,
  2073.                         &fds_read, &fds_write, NULL, &timeout );
  2074.         if( i_ret == -1 && errno != EINTR )
  2075.         {
  2076.             msg_Warn( host, "cannot select sockets" );
  2077.             msleep( 1000 );
  2078.             continue;
  2079.         }
  2080.         else if( i_ret <= 0 )
  2081.         {
  2082.             continue;
  2083.         }
  2084.         /* accept new connections */
  2085.         if( FD_ISSET( host->fd, &fds_read ) )
  2086.         {
  2087.             int     i_sock_size = sizeof( struct sockaddr_storage );
  2088.             struct  sockaddr_storage sock;
  2089.             int     fd;
  2090.             fd = accept( host->fd, (struct sockaddr *)&sock, &i_sock_size );
  2091.             if( fd >= 0 )
  2092.             {
  2093.                 if( p_tls != NULL)
  2094.                 {
  2095.                     p_tls = tls_SessionHandshake( p_tls, fd );
  2096.                     if ( p_tls == NULL )
  2097.                     {
  2098.                         msg_Err( host, "Rejecting TLS connection" );
  2099.                         net_Close( fd );
  2100.                         fd = -1;
  2101.                     }
  2102.                 }
  2103.                 
  2104.                 if( fd >= 0 )
  2105.                 {
  2106.                     char *ip;
  2107.                     httpd_client_t *cl;
  2108.                     cl = httpd_ClientNew( fd, &sock, i_sock_size, p_tls );
  2109.                     p_tls = NULL;
  2110.                     vlc_mutex_lock( &host->lock );
  2111.                     TAB_APPEND( host->i_client, host->client, cl );
  2112.                     vlc_mutex_unlock( &host->lock );
  2113.     
  2114.                     // FIXME: it sucks to allocate memory for debug
  2115.                     ip = httpd_ClientIP( cl );
  2116.                     msg_Dbg( host, "new connection (%s)",
  2117.                              ip != NULL ? ip : "unknown" );
  2118.                     if( ip != NULL)
  2119.                         free( ip );
  2120.                 }
  2121.             }
  2122.         }
  2123.         /* now try all others socket */
  2124.         vlc_mutex_lock( &host->lock );
  2125.         for( i_client = 0; i_client < host->i_client; i_client++ )
  2126.         {
  2127.             httpd_client_t *cl = host->client[i_client];
  2128.             if( cl->i_state == HTTPD_CLIENT_RECEIVING )
  2129.             {
  2130.                 httpd_ClientRecv( cl );
  2131.             }
  2132.             else if( cl->i_state == HTTPD_CLIENT_SENDING )
  2133.             {
  2134.                 httpd_ClientSend( cl );
  2135.             }
  2136.             if( cl->i_mode == HTTPD_CLIENT_BIDIR &&
  2137.                 cl->i_state == HTTPD_CLIENT_SENDING &&
  2138.                 FD_ISSET( cl->fd, &fds_read ) )
  2139.             {
  2140.                 cl->b_read_waiting = VLC_TRUE;
  2141.             }
  2142.         }
  2143.         vlc_mutex_unlock( &host->lock );
  2144.     }
  2145. }
  2146. #ifndef HAVE_GETADDRINFO
  2147. static int BuildAddr( struct sockaddr_in * p_socket,
  2148.                       const char * psz_address, int i_port )
  2149. {
  2150.     /* Reset struct */
  2151.     memset( p_socket, 0, sizeof( struct sockaddr_in ) );
  2152.     p_socket->sin_family = AF_INET;                                /* family */
  2153.     p_socket->sin_port = htons( (uint16_t)i_port );
  2154.     if( !*psz_address )
  2155.     {
  2156.         p_socket->sin_addr.s_addr = INADDR_ANY;
  2157.     }
  2158.     else
  2159.     {
  2160.         struct hostent    * p_hostent;
  2161.         /* Try to convert address directly from in_addr - this will work if
  2162.          * psz_address is dotted decimal. */
  2163. #ifdef HAVE_ARPA_INET_H
  2164.         if( !inet_aton( psz_address, &p_socket->sin_addr ) )
  2165. #else
  2166.         p_socket->sin_addr.s_addr = inet_addr( psz_address );
  2167. /*        if( p_socket->sin_addr.s_addr == INADDR_NONE )*/
  2168.         if( p_socket->sin_addr.s_addr == INADDR_BROADCAST )
  2169. #endif
  2170.         {
  2171.             /* We have a fqdn, try to find its address */
  2172.             if ( (p_hostent = gethostbyname( psz_address )) == NULL )
  2173.             {
  2174.                 return( -1 );
  2175.             }
  2176.             /* Copy the first address of the host in the socket address */
  2177.             memcpy( &((struct sockaddr_in *)p_socket)->sin_addr, p_hostent->h_addr_list[0],
  2178.                      p_hostent->h_length );
  2179.         }
  2180.     }
  2181.     return( 0 );
  2182. }
  2183. #endif
  2184. static int GetAddrPort( const struct sockaddr_storage *p_ss )
  2185. {
  2186.     int i_port = 0;
  2187.     switch (p_ss->ss_family)
  2188.     {
  2189. #ifdef AF_INET6
  2190.         case AF_INET6:
  2191.             i_port = ((const struct sockaddr_in6 *)p_ss)->sin6_port;
  2192.             break;
  2193. #endif
  2194.         case AF_INET:
  2195.             i_port = ((const struct sockaddr_in *)p_ss)->sin_port;
  2196.             break;
  2197.             
  2198.         default:
  2199.             return -1;
  2200.     }
  2201.     
  2202.     return ntohs( i_port );
  2203. }
  2204. #else /* ENABLE_HTTPD */
  2205. /* We just define an empty wrapper */
  2206. httpd_host_t *httpd_TLSHostNew( vlc_object_t *a, char *b, int c,
  2207.                                 tls_server_t *d )
  2208. {
  2209.     msg_Err( a, "HTTP daemon support is disabled" );
  2210.     return 0;
  2211. }
  2212. httpd_host_t *httpd_HostNew( vlc_object_t *a, char *b, int c )
  2213. {
  2214.     msg_Err( a, "HTTP daemon support is disabled" );
  2215.     return 0;
  2216. }
  2217. void httpd_HostDelete( httpd_host_t *a ){}
  2218. httpd_url_t *httpd_UrlNew( httpd_host_t *a, char *b ){ return 0; }
  2219. httpd_url_t *httpd_UrlNewUnique( httpd_host_t *a, char *b, char *c,
  2220.                                  char *d ){ return 0; }
  2221. int httpd_UrlCatch( httpd_url_t *a, int b, httpd_callback_t c,
  2222.                     httpd_callback_sys_t *d ){ return 0; }
  2223. void httpd_UrlDelete( httpd_url_t *a ){}
  2224. char *httpd_ClientIP( httpd_client_t *a ){ return 0; }
  2225. void httpd_ClientModeStream( httpd_client_t *a ){}
  2226. void httpd_ClientModeBidir( httpd_client_t *a ){}
  2227. void httpd_FileDelete( httpd_file_t *a ){}
  2228. httpd_file_t *httpd_FileNew( httpd_host_t *a, char *b, char *c, char *d,
  2229.                              char *e, httpd_file_callback_t f,
  2230.                              httpd_file_sys_t *g ){ return 0; }
  2231. void httpd_RedirectDelete( httpd_redirect_t *a ){}
  2232. httpd_redirect_t *httpd_RedirectNew( httpd_host_t *a,
  2233.                                      char *b, char *c ){ return 0; }
  2234. void httpd_StreamDelete( httpd_stream_t *a ){}
  2235. int  httpd_StreamHeader( httpd_stream_t *a, uint8_t *b, int c ){ return 0; }
  2236. int  httpd_StreamSend  ( httpd_stream_t *a, uint8_t *b, int c ){ return 0; }
  2237. httpd_stream_t *httpd_StreamNew( httpd_host_t *a, char *b, char *c,
  2238.                                  char *d, char *e ){ return 0; }
  2239. void httpd_MsgInit ( httpd_message_t *a ){}
  2240. void httpd_MsgAdd  ( httpd_message_t *a, char *b, char *c, ... ){}
  2241. char *httpd_MsgGet ( httpd_message_t *a, char *b ){ return 0; }
  2242. void httpd_MsgClean( httpd_message_t *a ){}
  2243. #endif /* ENABLE_HTTPD */