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