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