]> git.sesse.net Git - vlc/blob - src/misc/httpd.c
3c81ce5c31f5cf7bbeb2a3f7ec2404ab76a1b956
[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         cl->fd = -1;
1297     }
1298
1299     httpd_MsgClean( &cl->answer );
1300     httpd_MsgClean( &cl->query );
1301
1302     if( cl->p_buffer )
1303     {
1304         free( cl->p_buffer );
1305         cl->p_buffer = NULL;
1306     }
1307 }
1308
1309 static httpd_client_t *httpd_ClientNew( int fd, struct sockaddr_in *sock )
1310 {
1311     httpd_client_t *cl = malloc( sizeof( httpd_client_t ) );
1312     /* set this new socket non-block */
1313 #if defined( WIN32 ) || defined( UNDER_CE )
1314     {
1315         unsigned long i_dummy = 1;
1316         ioctlsocket( fd, FIONBIO, &i_dummy );
1317     }
1318 #else
1319     fcntl( fd, F_SETFL, O_NONBLOCK );
1320 #endif
1321     cl->i_ref   = 0;
1322     cl->fd      = fd;
1323     cl->sock    = *sock;
1324     cl->url     = NULL;
1325
1326     httpd_ClientInit( cl );
1327
1328     return cl;
1329 }
1330
1331 static void httpd_ClientRecv( httpd_client_t *cl )
1332 {
1333     int i_len;
1334
1335     if( cl->query.i_proto == HTTPD_PROTO_NONE )
1336     {
1337         /* enought to see if it's rtp over rtsp or RTSP/HTTP */
1338         i_len = recv( cl->fd, &cl->p_buffer[cl->i_buffer], 4 - cl->i_buffer, 0 );
1339
1340         if( i_len > 0 )
1341         {
1342             cl->i_buffer += i_len;
1343         }
1344
1345         if( cl->i_buffer >= 4 )
1346         {
1347             fprintf( stderr, "peek=%4.4s\n", cl->p_buffer );
1348             /* detect type */
1349             if( cl->p_buffer[0] == '$' )
1350             {
1351                 /* RTSP (rtp over rtsp) */
1352                 cl->query.i_proto = HTTPD_PROTO_RTSP;
1353                 cl->query.i_type  = HTTPD_MSG_CHANNEL;
1354                 cl->query.i_channel = cl->p_buffer[1];
1355                 cl->query.i_body  = (cl->p_buffer[2] << 8)|cl->p_buffer[3];
1356                 cl->query.p_body  = malloc( cl->query.i_body );
1357
1358                 cl->i_buffer      = 0;
1359             }
1360             else if( !strncmp( cl->p_buffer, "HTTP", 4 ) )
1361             {
1362                 cl->query.i_proto = HTTPD_PROTO_HTTP;
1363                 cl->query.i_type  = HTTPD_MSG_ANSWER;
1364             }
1365             else if( !strncmp( cl->p_buffer, "RTSP", 4 ) )
1366             {
1367                 cl->query.i_proto = HTTPD_PROTO_RTSP;
1368                 cl->query.i_type  = HTTPD_MSG_ANSWER;
1369             }
1370             else if( !strncmp( cl->p_buffer, "GET", 3 ) ||
1371                      !strncmp( cl->p_buffer, "HEAD", 4 ) ||
1372                      !strncmp( cl->p_buffer, "POST", 4 ) )
1373             {
1374                 cl->query.i_proto = HTTPD_PROTO_HTTP;
1375                 cl->query.i_type  = HTTPD_MSG_NONE;
1376             }
1377             else
1378             {
1379                 cl->query.i_proto = HTTPD_PROTO_RTSP;
1380                 cl->query.i_type  = HTTPD_MSG_NONE;
1381             }
1382         }
1383     }
1384     else if( cl->query.i_body > 0 )
1385     {
1386         /* we are reading the body of a request or a channel */
1387         i_len = recv( cl->fd, &cl->query.p_body[cl->i_buffer],
1388                       cl->query.i_body - cl->i_buffer, 0 );
1389         if( i_len > 0 )
1390         {
1391             cl->i_buffer += i_len;
1392         }
1393         if( cl->i_buffer >= cl->query.i_body )
1394         {
1395             cl->i_state = HTTPD_CLIENT_RECEIVE_DONE;
1396         }
1397     }
1398     else
1399     {
1400         /* we are reading a header -> char by char */
1401         for( ;; )
1402         {
1403             i_len = recv( cl->fd, &cl->p_buffer[cl->i_buffer], 1, 0 );
1404             if( i_len <= 0 )
1405             {
1406                 break;
1407             }
1408             cl->i_buffer++;
1409
1410             if( cl->i_buffer + 1 >= cl->i_buffer_size )
1411             {
1412                 cl->i_buffer_size += 1024;
1413                 cl->p_buffer = realloc( cl->p_buffer, cl->i_buffer_size );
1414             }
1415             if( ( cl->i_buffer >= 2 && !strncmp( &cl->p_buffer[cl->i_buffer-2], "\n\n", 2 ) )||
1416                 ( cl->i_buffer >= 4 && !strncmp( &cl->p_buffer[cl->i_buffer-4], "\r\n\r\n", 4 ) ) )
1417             {
1418                 char *p;
1419
1420                 /* we have finished the header so parse it and set i_body */
1421                 cl->p_buffer[cl->i_buffer] = '\0';
1422
1423                 if( cl->query.i_type == HTTPD_MSG_ANSWER )
1424                 {
1425                     cl->query.i_status =
1426                         strtol( &cl->p_buffer[strlen( "HTTP/1.x" )], &p, 0 );
1427                     while( *p == ' ' )
1428                     {
1429                         p++;
1430                     }
1431                     cl->query.psz_status = strdup( p );
1432                 }
1433                 else
1434                 {
1435                     static const struct
1436                     {
1437                         char *name;
1438                         int  i_type;
1439                         int  i_proto;
1440                     }
1441                     msg_type[] =
1442                     {
1443                         { "GET",        HTTPD_MSG_GET,  HTTPD_PROTO_HTTP },
1444                         { "HEAD",       HTTPD_MSG_HEAD, HTTPD_PROTO_HTTP },
1445                         { "POST",       HTTPD_MSG_POST, HTTPD_PROTO_HTTP },
1446
1447                         { "OPTIONS",    HTTPD_MSG_OPTIONS,  HTTPD_PROTO_RTSP },
1448                         { "DESCRIBE",   HTTPD_MSG_DESCRIBE, HTTPD_PROTO_RTSP },
1449                         { "SETUP",      HTTPD_MSG_SETUP,    HTTPD_PROTO_RTSP },
1450                         { "PLAY",       HTTPD_MSG_PLAY,     HTTPD_PROTO_RTSP },
1451                         { "PAUSE",      HTTPD_MSG_PAUSE,    HTTPD_PROTO_RTSP },
1452                         { "TEARDOWN",   HTTPD_MSG_TEARDOWN, HTTPD_PROTO_RTSP },
1453
1454                         { NULL,         HTTPD_MSG_NONE,     HTTPD_PROTO_NONE }
1455                     };
1456                     int  i;
1457
1458                     p = NULL;
1459                     cl->query.i_type = HTTPD_MSG_NONE;
1460
1461                     fprintf( stderr, "received new request=%s\n", cl->p_buffer);
1462
1463                     for( i = 0; msg_type[i].name != NULL; i++ )
1464                     {
1465                         if( !strncmp( cl->p_buffer, msg_type[i].name,
1466                                       strlen( msg_type[i].name ) ) )
1467                         {
1468                             p = &cl->p_buffer[strlen(msg_type[i].name) + 1 ];
1469                             cl->query.i_type = msg_type[i].i_type;
1470                             if( cl->query.i_proto != msg_type[i].i_proto )
1471                             {
1472                                 p = NULL;
1473                                 cl->query.i_proto = HTTPD_PROTO_NONE;
1474                                 cl->query.i_type = HTTPD_MSG_NONE;
1475                             }
1476                             break;
1477                         }
1478                     }
1479                     if( p == NULL )
1480                     {
1481                         if( strstr( cl->p_buffer, "HTTP/1." ) )
1482                         {
1483                             cl->query.i_proto = HTTPD_PROTO_HTTP;
1484                         }
1485                         else if( strstr( cl->p_buffer, "RTSP/1." ) )
1486                         {
1487                             cl->query.i_proto = HTTPD_PROTO_RTSP;
1488                         }
1489                     }
1490                     else
1491                     {
1492                         char *p2;
1493                         char *p3;
1494
1495                         while( *p == ' ' )
1496                         {
1497                             p++;
1498                         }
1499                         p2 = strchr( p, ' ' );
1500                         if( p2 )
1501                         {
1502                             *p2++ = '\0';
1503                         }
1504                         if( !strncasecmp( p, "rtsp:", 5 ) )
1505                         {
1506                             /* for rtsp url, you have rtsp://localhost:port/path */
1507                             p += 5;
1508                             while( *p == '/' ) p++;
1509                             while( *p && *p != '/' ) p++;
1510                         }
1511                         cl->query.psz_url = strdup( p );
1512                         if( ( p3 = strchr( cl->query.psz_url, '?' ) )  )
1513                         {
1514                             *p3++ = '\0';
1515                             cl->query.psz_args = strdup( p3 );
1516                         }
1517                         if( p2 )
1518                         {
1519                             while( *p2 == ' ' )
1520                             {
1521                                 p2++;
1522                             }
1523                             if( !strncasecmp( p2, "HTTP/1.", 7 ) )
1524                             {
1525                                 cl->query.i_proto = HTTPD_PROTO_HTTP;
1526                                 cl->query.i_version = atoi( p2+7 );
1527                             }
1528                             else if( !strncasecmp( p2, "RTSP/1.", 7 ) )
1529                             {
1530                                 cl->query.i_proto = HTTPD_PROTO_RTSP;
1531                                 cl->query.i_version = atoi( p2+7 );
1532                             }
1533                         }
1534                         p = p2;
1535                     }
1536                 }
1537                 if( p )
1538                 {
1539                     p = strchr( p, '\n' );
1540                 }
1541                 if( p )
1542                 {
1543                     while( *p == '\n' || *p == '\r' )
1544                     {
1545                         p++;
1546                     }
1547                     while( p && *p != '\0' )
1548                     {
1549                         char *line = p;
1550                         char *eol = p = strchr( p, '\n' );
1551                         char *colon;
1552
1553                         while( eol && eol >= line && ( *eol == '\n' || *eol == '\r' ) )
1554                         {
1555                             *eol-- = '\0';
1556                         }
1557
1558                         if( ( colon = strchr( line, ':' ) ) )
1559                         {
1560                             char *name;
1561                             char *value;
1562
1563                             *colon++ = '\0';
1564                             while( *colon == ' ' )
1565                             {
1566                                 colon++;
1567                             }
1568                             name = strdup( line );
1569                             value = strdup( colon );
1570
1571                             TAB_APPEND( cl->query.i_name, cl->query.name, name );
1572                             TAB_APPEND( cl->query.i_value,cl->query.value,value);
1573
1574                             if( !strcasecmp( name, "Content-Length" ) )
1575                             {
1576                                 cl->query.i_body = atol( value );
1577                             }
1578                         }
1579
1580                         if( p )
1581                         {
1582                             p++;
1583                             while( *p == '\n' || *p == '\r' )
1584                             {
1585                                 p++;
1586                             }
1587                         }
1588                     }
1589                 }
1590                 if( cl->query.i_body > 0 )
1591                 {
1592                     /* TODO Mhh, handle the case client will only send a request and close the connection
1593                      * to mark and of body (probably only RTSP) */
1594                     cl->query.p_body = malloc( cl->query.i_body );
1595                     cl->i_buffer = 0;
1596                 }
1597                 else
1598                 {
1599                     cl->i_state = HTTPD_CLIENT_RECEIVE_DONE;
1600                 }
1601             }
1602         }
1603     }
1604
1605     /* check if the client is to be set to dead */
1606 #if defined( WIN32 ) || defined( UNDER_CE )
1607     if( ( i_len < 0 && WSAGetLastError() != WSAEWOULDBLOCK ) || ( i_len == 0 ) )
1608 #else
1609     if( ( i_len < 0 && errno != EAGAIN && errno != EINTR ) || ( i_len == 0 ) )
1610 #endif
1611     {
1612         if( cl->query.i_proto != HTTPD_PROTO_NONE && cl->query.i_type != HTTPD_MSG_NONE )
1613         {
1614             /* connection closed -> end of data */
1615             if( cl->query.i_body > 0 )
1616             {
1617                 cl->query.i_body = cl->i_buffer;
1618             }
1619             cl->i_state = HTTPD_CLIENT_RECEIVE_DONE;
1620         }
1621         else
1622         {
1623             cl->i_state = HTTPD_CLIENT_DEAD;
1624         }
1625     }
1626     cl->i_activity_date = mdate();
1627
1628     /* Debugging only */
1629     if( cl->i_state == HTTPD_CLIENT_RECEIVE_DONE )
1630     {
1631         int i;
1632
1633         fprintf( stderr, "received new request\n" );
1634         fprintf( stderr, "  - proto=%s\n",
1635                  cl->query.i_proto == HTTPD_PROTO_HTTP ? "HTTP" : "RTSP" );
1636         fprintf( stderr, "  - version=%d\n", cl->query.i_version );
1637         fprintf( stderr, "  - msg=%d\n", cl->query.i_type );
1638         if( cl->query.i_type == HTTPD_MSG_ANSWER )
1639         {
1640             fprintf( stderr, "  - answer=%d '%s'\n", cl->query.i_status,
1641                      cl->query.psz_status );
1642         }
1643         else if( cl->query.i_type != HTTPD_MSG_NONE )
1644         {
1645             fprintf( stderr, "  - url=%s\n", cl->query.psz_url );
1646         }
1647         for( i = 0; i < cl->query.i_name; i++ )
1648         {
1649             fprintf( stderr, "  - option name='%s' value='%s'\n",
1650                      cl->query.name[i], cl->query.value[i] );
1651         }
1652     }
1653 }
1654
1655 static void httpd_ClientSend( httpd_client_t *cl )
1656 {
1657     int i;
1658     int i_len;
1659
1660     if( cl->i_buffer < 0 )
1661     {
1662         /* We need to create the header */
1663         int i_size = 0;
1664         char *p;
1665
1666         i_size = strlen( "HTTP/1.") + 10 + 10 +
1667                  strlen( cl->answer.psz_status ? cl->answer.psz_status : "" ) + 5;
1668         for( i = 0; i < cl->answer.i_name; i++ )
1669         {
1670             i_size += strlen( cl->answer.name[i] ) + 2 +
1671                       strlen( cl->answer.value[i] ) + 2;
1672         }
1673
1674         if( cl->i_buffer_size < i_size )
1675         {
1676             cl->i_buffer_size = i_size;
1677             free( cl->p_buffer );
1678             cl->p_buffer = malloc( i_size );
1679         }
1680         p = cl->p_buffer;
1681
1682         p += sprintf( p, "%s/1.%d %d %s\r\n",
1683                       cl->answer.i_proto ==  HTTPD_PROTO_HTTP ? "HTTP" : "RTSP",
1684                       cl->answer.i_version,
1685                       cl->answer.i_status, cl->answer.psz_status );
1686         for( i = 0; i < cl->answer.i_name; i++ )
1687         {
1688             p += sprintf( p, "%s: %s\r\n", cl->answer.name[i],
1689                           cl->answer.value[i] );
1690         }
1691         p += sprintf( p, "\r\n" );
1692
1693         cl->i_buffer = 0;
1694         cl->i_buffer_size = (uint8_t*)p - cl->p_buffer;
1695
1696         fprintf( stderr, "sending answer\n" );
1697         fprintf( stderr, "%s",  cl->p_buffer );
1698     }
1699
1700     i_len = send( cl->fd, &cl->p_buffer[cl->i_buffer],
1701                   cl->i_buffer_size - cl->i_buffer, 0 );
1702     if( i_len > 0 )
1703     {
1704         cl->i_activity_date = mdate();
1705         cl->i_buffer += i_len;
1706
1707         if( cl->i_buffer >= cl->i_buffer_size )
1708         {
1709             if( cl->answer.i_body == 0  && cl->answer.i_body_offset > 0 &&
1710                 !cl->b_read_waiting )
1711             {
1712                 /* catch more body data */
1713                 int     i_msg = cl->query.i_type;
1714                 int64_t i_offset = cl->answer.i_body_offset;
1715
1716                 httpd_MsgClean( &cl->answer );
1717                 cl->answer.i_body_offset = i_offset;
1718
1719                 cl->url->catch[i_msg].cb( cl->url->catch[i_msg].p_sys, cl,
1720                                           &cl->answer, &cl->query );
1721             }
1722
1723             if( cl->answer.i_body > 0 )
1724             {
1725                 /* send the body data */
1726                 free( cl->p_buffer );
1727                 cl->p_buffer = cl->answer.p_body;
1728                 cl->i_buffer_size = cl->answer.i_body;
1729                 cl->i_buffer = 0;
1730
1731                 cl->answer.i_body = 0;
1732                 cl->answer.p_body = NULL;
1733             }
1734             else
1735             {
1736                 /* send finished */
1737                 cl->i_state = HTTPD_CLIENT_SEND_DONE;
1738             }
1739         }
1740     }
1741     else
1742     {
1743 #if defined( WIN32 ) || defined( UNDER_CE )
1744         if( ( i_len < 0 && WSAGetLastError() != WSAEWOULDBLOCK ) || ( i_len == 0 ) )
1745 #else
1746         if( ( i_len < 0 && errno != EAGAIN && errno != EINTR ) || ( i_len == 0 ) )
1747 #endif
1748         {
1749             /* error */
1750             cl->i_state = HTTPD_CLIENT_DEAD;
1751         }
1752     }
1753 }
1754
1755 static void httpd_HostThread( httpd_host_t *host )
1756 {
1757     while( !host->b_die )
1758     {
1759         struct timeval  timeout;
1760         fd_set          fds_read;
1761         fd_set          fds_write;
1762         int             i_handle_max = 0;
1763         int             i_ret;
1764         int             i_client;
1765         int             b_low_delay = 0;
1766
1767         if( host->i_url <= 0 )
1768         {
1769             /* 0.2s */
1770             msleep( 200000 );
1771             continue;
1772         }
1773
1774         /* built a set of handle to select */
1775         FD_ZERO( &fds_read );
1776         FD_ZERO( &fds_write );
1777
1778         FD_SET( host->fd, &fds_read );
1779         i_handle_max = host->fd;
1780
1781         /* add all socket that should be read/write and close dead connection */
1782         vlc_mutex_lock( &host->lock );
1783         for( i_client = 0; i_client < host->i_client; i_client++ )
1784         {
1785             httpd_client_t *cl = host->client[i_client];
1786
1787             if( cl->i_ref < 0 || ( cl->i_ref == 0 &&
1788                 ( cl->i_state == HTTPD_CLIENT_DEAD ||
1789                   cl->i_activity_date + cl->i_activity_timeout < mdate() ) ) )
1790             {
1791                 msg_Dbg( host, "connection closed(%s)",
1792                          inet_ntoa(cl->sock.sin_addr) );
1793                 httpd_ClientClean( cl );
1794                 TAB_REMOVE( host->i_client, host->client, cl );
1795                 free( cl );
1796                 i_client--;
1797                 continue;
1798             }
1799             else if( cl->i_state == HTTPD_CLIENT_RECEIVING )
1800             {
1801                 FD_SET( cl->fd, &fds_read );
1802                 i_handle_max = __MAX( i_handle_max, cl->fd );
1803             }
1804             else if( cl->i_state == HTTPD_CLIENT_SENDING )
1805             {
1806                 FD_SET( cl->fd, &fds_write );
1807                 i_handle_max = __MAX( i_handle_max, cl->fd );
1808             }
1809             else if( cl->i_state == HTTPD_CLIENT_RECEIVE_DONE )
1810             {
1811                 httpd_message_t *answer = &cl->answer;
1812                 httpd_message_t *query  = &cl->query;
1813                 int i_msg = query->i_type;
1814
1815                 httpd_MsgInit( answer );
1816
1817                 /* Handle what we received */
1818                 if( cl->i_mode != HTTPD_CLIENT_BIDIR &&
1819                     (i_msg == HTTPD_MSG_ANSWER || i_msg == HTTPD_MSG_CHANNEL) )
1820                 {
1821                     /* we can only receive request from client when not
1822                      * in BIDIR mode */
1823                     cl->url     = NULL;
1824                     cl->i_state = HTTPD_CLIENT_DEAD;
1825                 }
1826                 else if( i_msg == HTTPD_MSG_ANSWER )
1827                 {
1828                     /* We are in BIDIR mode, trigger the callback and then
1829                      * check for new data */
1830                     if( cl->url && cl->url->catch[i_msg].cb )
1831                     {
1832                         cl->url->catch[i_msg].cb( cl->url->catch[i_msg].p_sys,
1833                                                   cl, NULL, query );
1834                     }
1835                     cl->i_state = HTTPD_CLIENT_WAITING;
1836                 }
1837                 else if( i_msg == HTTPD_MSG_CHANNEL )
1838                 {
1839                     /* We are in BIDIR mode, trigger the callback and then
1840                      * check for new data */
1841                     if( cl->url && cl->url->catch[i_msg].cb )
1842                     {
1843                         cl->url->catch[i_msg].cb( cl->url->catch[i_msg].p_sys,
1844                                                   cl, NULL, query );
1845                     }
1846                     cl->i_state = HTTPD_CLIENT_WAITING;
1847                 }
1848                 else if( i_msg == HTTPD_MSG_OPTIONS )
1849                 {
1850                     int i_cseq;
1851
1852                     /* unimplemented */
1853                     answer->i_proto  = query->i_proto ;
1854                     answer->i_type   = HTTPD_MSG_ANSWER;
1855                     answer->i_version= 0;
1856                     answer->i_status = 200;
1857                     answer->psz_status = strdup( "Ok" );
1858
1859                     answer->i_body = 0;
1860                     answer->p_body = NULL;
1861
1862                     i_cseq = atoi( httpd_MsgGet( query, "Cseq" ) );
1863                     httpd_MsgAdd( answer, "Cseq", "%d", i_cseq );
1864                     httpd_MsgAdd( answer, "Server", "VLC Server" );
1865                     httpd_MsgAdd( answer, "Public", "DESCRIBE, SETUP, "
1866                                  "TEARDOWN, PLAY, PAUSE" );
1867                     httpd_MsgAdd( answer, "Content-Length", "%d",
1868                                   answer->i_body );
1869
1870                     cl->i_buffer = -1;  /* Force the creation of the answer in
1871                                          * httpd_ClientSend */
1872                     cl->i_state = HTTPD_CLIENT_SENDING;
1873                 }
1874                 else if( i_msg == HTTPD_MSG_NONE )
1875                 {
1876                     if( query->i_proto == HTTPD_PROTO_NONE )
1877                     {
1878                         cl->url = NULL;
1879                         cl->i_state = HTTPD_CLIENT_DEAD;
1880                     }
1881                     else
1882                     {
1883                         uint8_t *p;
1884
1885                         /* unimplemented */
1886                         answer->i_proto  = query->i_proto ;
1887                         answer->i_type   = HTTPD_MSG_ANSWER;
1888                         answer->i_version= 0;
1889                         answer->i_status = 501;
1890                         answer->psz_status = strdup( "Unimplemented" );
1891
1892                         p = answer->p_body = malloc( 1000 );
1893
1894                         p += sprintf( p, "<html>\n" );
1895                         p += sprintf( p, "<head>\n" );
1896                         p += sprintf( p, "<title>Error 501</title>\n" );
1897                         p += sprintf( p, "</head>\n" );
1898                         p += sprintf( p, "<body>\n" );
1899                         p += sprintf( p, "<h1><center> 501 Unimplemented</center></h1>\n" );
1900                         p += sprintf( p, "<hr />\n" );
1901                         p += sprintf( p, "<a href=\"http://www.videolan.org\">VideoLAN</a>\n" );
1902                         p += sprintf( p, "</body>\n" );
1903                         p += sprintf( p, "</html>\n" );
1904
1905                         answer->i_body = p - answer->p_body;
1906                         httpd_MsgAdd( answer, "Content-Length", "%d", answer->i_body );
1907
1908                         cl->i_buffer = -1;  /* Force the creation of the answer in httpd_ClientSend */
1909                         cl->i_state = HTTPD_CLIENT_SENDING;
1910                     }
1911                 }
1912                 else
1913                 {
1914                     vlc_bool_t b_auth_failed = VLC_FALSE;
1915                     int i;
1916
1917                     /* Search the url and trigger callbacks */
1918                     for( i = 0; i < host->i_url; i++ )
1919                     {
1920                         httpd_url_t *url = host->url[i];
1921
1922                         if( !strcmp( url->psz_url, query->psz_url ) )
1923                         {
1924                             if( url->catch[i_msg].cb )
1925                             {
1926                                 if( answer && ( *url->psz_user || *url->psz_password ) )
1927                                 {
1928                                     /* create the headers */
1929                                     char id[strlen(url->psz_user)+strlen(url->psz_password) + 2];
1930                                     char *b64 = httpd_MsgGet( query, "Authorization" ); /* BASIC id */
1931                                     char auth[strlen(b64) +1];
1932
1933                                     sprintf( id, "%s:%s", url->psz_user, url->psz_password );
1934                                     if( !strncasecmp( b64, "BASIC", 5 ) )
1935                                     {
1936                                         b64 += 5;
1937                                         while( *b64 == ' ' )
1938                                         {
1939                                             b64++;
1940                                         }
1941                                         b64_decode( auth, b64 );
1942                                     }
1943                                     else
1944                                     {
1945                                         strcpy( auth, "" );
1946                                     }
1947                                     if( strcmp( id, auth ) )
1948                                     {
1949                                         httpd_MsgAdd( answer, "WWW-Authenticate", "Basic realm=\"%s\"", url->psz_user );
1950                                         /* We fail for all url */
1951                                         b_auth_failed = VLC_TRUE;
1952                                         break;
1953                                     }
1954                                 }
1955
1956                                 if( !url->catch[i_msg].cb( url->catch[i_msg].p_sys, cl, answer, query ) )
1957                                 {
1958                                     /* only one url can answer */
1959                                     answer = NULL;
1960                                     if( cl->url == NULL )
1961                                     {
1962                                         cl->url = url;
1963                                     }
1964                                 }
1965                             }
1966                         }
1967                     }
1968                     if( answer )
1969                     {
1970                         uint8_t *p;
1971
1972                         answer->i_proto  = query->i_proto;
1973                         answer->i_type   = HTTPD_MSG_ANSWER;
1974                         answer->i_version= 0;
1975                         p = answer->p_body = malloc( 1000 + strlen(query->psz_url) );
1976
1977                         if( b_auth_failed )
1978                         {
1979                             answer->i_status = 401;
1980                             answer->psz_status = strdup( "Authorization Required" );
1981
1982                             p += sprintf( p, "<html>\n" );
1983                             p += sprintf( p, "<head>\n" );
1984                             p += sprintf( p, "<title>Error 401</title>\n" );
1985                             p += sprintf( p, "</head>\n" );
1986                             p += sprintf( p, "<body>\n" );
1987                             p += sprintf( p, "<h1><center> 401 Authorization Required (%s)</center></h1>\n", query->psz_url );
1988                             p += sprintf( p, "<hr />\n" );
1989                             p += sprintf( p, "<a href=\"http://www.videolan.org\">VideoLAN</a>\n" );
1990                             p += sprintf( p, "</body>\n" );
1991                             p += sprintf( p, "</html>\n" );
1992                         }
1993                         else
1994                         {
1995                             /* no url registered */
1996                             answer->i_status = 404;
1997                             answer->psz_status = strdup( "Not found" );
1998
1999                             p += sprintf( p, "<html>\n" );
2000                             p += sprintf( p, "<head>\n" );
2001                             p += sprintf( p, "<title>Error 404</title>\n" );
2002                             p += sprintf( p, "</head>\n" );
2003                             p += sprintf( p, "<body>\n" );
2004                             p += sprintf( p, "<h1><center> 404 Ressource not found(%s)</center></h1>\n", query->psz_url );
2005                             p += sprintf( p, "<hr />\n" );
2006                             p += sprintf( p, "<a href=\"http://www.videolan.org\">VideoLAN</a>\n" );
2007                             p += sprintf( p, "</body>\n" );
2008                             p += sprintf( p, "</html>\n" );
2009                         }
2010
2011                         answer->i_body = p - answer->p_body;
2012                         httpd_MsgAdd( answer, "Content-Length", "%d", answer->i_body );
2013                     }
2014                     cl->i_buffer = -1;  /* Force the creation of the answer in httpd_ClientSend */
2015                     cl->i_state = HTTPD_CLIENT_SENDING;
2016                 }
2017             }
2018             else if( cl->i_state == HTTPD_CLIENT_SEND_DONE )
2019             {
2020                 if( cl->i_mode == HTTPD_CLIENT_FILE )
2021                 {
2022                     cl->url = NULL;
2023                     if( ( cl->query.i_proto == HTTPD_PROTO_HTTP &&
2024                           ( ( cl->answer.i_version == 0 && !strcasecmp( httpd_MsgGet( &cl->answer, "Connection" ), "Keep-Alive" ) ) ||
2025                             ( cl->answer.i_version == 1 &&  strcasecmp( httpd_MsgGet( &cl->answer, "Connection" ), "Close" ) ) ) ) ||
2026                         ( cl->query.i_proto == HTTPD_PROTO_RTSP &&
2027                           strcasecmp( httpd_MsgGet( &cl->query, "Connection" ), "Close" ) &&
2028                           strcasecmp( httpd_MsgGet( &cl->answer, "Connection" ), "Close" ) ) )
2029                     {
2030                         httpd_MsgClean( &cl->query );
2031                         httpd_MsgInit( &cl->query );
2032
2033                         cl->i_buffer = 0;
2034                         cl->i_buffer_size = 1000;
2035                         free( cl->p_buffer );
2036                         cl->p_buffer = malloc( cl->i_buffer_size );
2037                         cl->i_state = HTTPD_CLIENT_RECEIVING;
2038                     }
2039                     else
2040                     {
2041                         cl->i_state = HTTPD_CLIENT_DEAD;
2042                     }
2043                     httpd_MsgClean( &cl->answer );
2044                 }
2045                 else if( cl->b_read_waiting )
2046                 {
2047                     /* we have a message waiting for us to read it */
2048                     httpd_MsgClean( &cl->answer );
2049                     httpd_MsgClean( &cl->query );
2050
2051                     cl->i_buffer = 0;
2052                     cl->i_buffer_size = 1000;
2053                     free( cl->p_buffer );
2054                     cl->p_buffer = malloc( cl->i_buffer_size );
2055                     cl->i_state = HTTPD_CLIENT_RECEIVING;
2056                     cl->b_read_waiting = VLC_FALSE;
2057                 }
2058                 else
2059                 {
2060                     int64_t i_offset = cl->answer.i_body_offset;
2061                     httpd_MsgClean( &cl->answer );
2062
2063                     cl->answer.i_body_offset = i_offset;
2064                     free( cl->p_buffer );
2065                     cl->p_buffer = NULL;
2066                     cl->i_buffer = 0;
2067                     cl->i_buffer_size = 0;
2068
2069                     cl->i_state = HTTPD_CLIENT_WAITING;
2070                 }
2071             }
2072             else if( cl->i_state == HTTPD_CLIENT_WAITING )
2073             {
2074                 int64_t i_offset = cl->answer.i_body_offset;
2075                 int     i_msg = cl->query.i_type;
2076
2077                 httpd_MsgInit( &cl->answer );
2078                 cl->answer.i_body_offset = i_offset;
2079
2080                 cl->url->catch[i_msg].cb( cl->url->catch[i_msg].p_sys, cl,
2081                                           &cl->answer, &cl->query );
2082                 if( cl->answer.i_type != HTTPD_MSG_NONE )
2083                 {
2084                     /* we have new data, so reenter send mode */
2085                     cl->i_buffer      = 0;
2086                     cl->p_buffer      = cl->answer.p_body;
2087                     cl->i_buffer_size = cl->answer.i_body;
2088                     cl->answer.p_body = NULL;
2089                     cl->answer.i_body = 0;
2090                     cl->i_state = HTTPD_CLIENT_SENDING;
2091                 }
2092                 else
2093                 {
2094                     /* we shouldn't wait too long */
2095                     b_low_delay = VLC_TRUE;
2096                 }
2097             }
2098
2099             /* Special for BIDIR mode we also check reading */
2100             if( cl->i_mode == HTTPD_CLIENT_BIDIR &&
2101                 cl->i_state == HTTPD_CLIENT_SENDING )
2102             {
2103                 FD_SET( cl->fd, &fds_read );
2104                 i_handle_max = __MAX( i_handle_max, cl->fd );
2105             }
2106         }
2107         vlc_mutex_unlock( &host->lock );
2108
2109         /* we will wait 100ms or 20ms (not too big 'cause HTTPD_CLIENT_WAITING) */
2110         timeout.tv_sec = 0;
2111         timeout.tv_usec = b_low_delay ? 20000 : 100000;
2112
2113         i_ret = select( i_handle_max + 1,
2114                         &fds_read, &fds_write, NULL, &timeout );
2115
2116         if( i_ret == -1 && errno != EINTR )
2117         {
2118             msg_Warn( host, "cannot select sockets" );
2119             msleep( 1000 );
2120             continue;
2121         }
2122         else if( i_ret <= 0 )
2123         {
2124             continue;
2125         }
2126
2127         /* accept new connections */
2128         if( FD_ISSET( host->fd, &fds_read ) )
2129         {
2130             int     i_sock_size = sizeof( struct sockaddr_in );
2131             struct  sockaddr_in sock;
2132             int     fd;
2133
2134             fd = accept( host->fd, (struct sockaddr *)&sock, &i_sock_size );
2135             if( fd > 0 )
2136             {
2137                 httpd_client_t *cl = httpd_ClientNew( fd, &sock );
2138
2139                 vlc_mutex_lock( &host->lock );
2140                 TAB_APPEND( host->i_client, host->client, cl );
2141                 vlc_mutex_unlock( &host->lock );
2142
2143                 msg_Dbg( host, "new connection (%s)",
2144                          inet_ntoa(sock.sin_addr) );
2145             }
2146         }
2147         /* now try all others socket */
2148         vlc_mutex_lock( &host->lock );
2149         for( i_client = 0; i_client < host->i_client; i_client++ )
2150         {
2151             httpd_client_t *cl = host->client[i_client];
2152             if( cl->i_state == HTTPD_CLIENT_RECEIVING )
2153             {
2154                 httpd_ClientRecv( cl );
2155             }
2156             else if( cl->i_state == HTTPD_CLIENT_SENDING )
2157             {
2158                 httpd_ClientSend( cl );
2159             }
2160
2161             if( cl->i_mode == HTTPD_CLIENT_BIDIR &&
2162                 cl->i_state == HTTPD_CLIENT_SENDING &&
2163                 FD_ISSET( cl->fd, &fds_read ) )
2164             {
2165                 cl->b_read_waiting = VLC_TRUE;
2166             }
2167         }
2168         vlc_mutex_unlock( &host->lock );
2169     }
2170 }
2171
2172 static int BuildAddr( struct sockaddr_in * p_socket,
2173                       const char * psz_address, int i_port )
2174 {
2175     /* Reset struct */
2176     memset( p_socket, 0, sizeof( struct sockaddr_in ) );
2177     p_socket->sin_family = AF_INET;                                /* family */
2178     p_socket->sin_port = htons( (uint16_t)i_port );
2179     if( !*psz_address )
2180     {
2181         p_socket->sin_addr.s_addr = INADDR_ANY;
2182     }
2183     else
2184     {
2185         struct hostent    * p_hostent;
2186
2187         /* Try to convert address directly from in_addr - this will work if
2188          * psz_address is dotted decimal. */
2189 #ifdef HAVE_ARPA_INET_H
2190         if( !inet_aton( psz_address, &p_socket->sin_addr ) )
2191 #else
2192         p_socket->sin_addr.s_addr = inet_addr( psz_address );
2193         if( p_socket->sin_addr.s_addr == INADDR_NONE )
2194 #endif
2195         {
2196             /* We have a fqdn, try to find its address */
2197             if ( (p_hostent = gethostbyname( psz_address )) == NULL )
2198             {
2199                 return( -1 );
2200             }
2201
2202             /* Copy the first address of the host in the socket address */
2203             memcpy( &p_socket->sin_addr, p_hostent->h_addr_list[0],
2204                      p_hostent->h_length );
2205         }
2206     }
2207     return( 0 );
2208 }