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