]> git.sesse.net Git - vlc/blob - src/network/io.c
HTTPd: use the RFC5334 MIME types for their respective extensions
[vlc] / src / network / io.c
1 /*****************************************************************************
2  * io.c: network I/O functions
3  *****************************************************************************
4  * Copyright (C) 2004-2005, 2007 the VideoLAN team
5  * Copyright © 2005-2006 Rémi Denis-Courmont
6  * $Id$
7  *
8  * Authors: Laurent Aimar <fenrir@videolan.org>
9  *          Rémi Denis-Courmont <rem # videolan.org>
10  *          Christophe Mutricy <xtophe at videolan dot org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <vlc_common.h>
36
37 #include <stdlib.h>
38 #include <stdio.h>
39 #include <limits.h>
40
41 #include <errno.h>
42 #include <assert.h>
43
44 #ifdef HAVE_FCNTL_H
45 #   include <fcntl.h>
46 #endif
47 #ifdef HAVE_SYS_TIME_H
48 #    include <sys/time.h>
49 #endif
50 #ifdef HAVE_UNISTD_H
51 #   include <unistd.h>
52 #endif
53 #ifdef HAVE_POLL
54 #   include <poll.h>
55 #endif
56
57 #include <vlc_network.h>
58
59 #ifndef INADDR_ANY
60 #   define INADDR_ANY  0x00000000
61 #endif
62 #ifndef INADDR_NONE
63 #   define INADDR_NONE 0xFFFFFFFF
64 #endif
65
66 #if defined(WIN32) || defined(UNDER_CE)
67 # undef EAFNOSUPPORT
68 # define EAFNOSUPPORT WSAEAFNOSUPPORT
69 #endif
70
71 #ifdef HAVE_LINUX_DCCP_H
72 /* TODO: use glibc instead of linux-kernel headers */
73 # include <linux/dccp.h>
74 # define SOL_DCCP 269
75 #endif
76
77 #include "libvlc.h" /* vlc_object_waitpipe */
78
79 extern int rootwrap_bind (int family, int socktype, int protocol,
80                           const struct sockaddr *addr, size_t alen);
81
82 int net_SetupSocket (int fd)
83 {
84 #if defined (WIN32) || defined (UNDER_CE)
85     ioctlsocket (fd, FIONBIO, &(unsigned long){ 1 });
86 #else
87     fcntl (fd, F_SETFD, FD_CLOEXEC);
88     fcntl (fd, F_SETFL, fcntl (fd, F_GETFL, 0) | O_NONBLOCK);
89 #endif
90
91     setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof (int));
92     return 0;
93 }
94
95
96 int net_Socket (vlc_object_t *p_this, int family, int socktype,
97                 int protocol)
98 {
99     int fd = socket (family, socktype, protocol);
100     if (fd == -1)
101     {
102         if (net_errno != EAFNOSUPPORT)
103             msg_Err (p_this, "cannot create socket: %m");
104         return -1;
105     }
106
107     net_SetupSocket (fd);
108
109 #ifdef IPV6_V6ONLY
110     /*
111      * Accepts only IPv6 connections on IPv6 sockets.
112      * If possible, we should open two sockets, but it is not always possible.
113      */
114     if (family == AF_INET6)
115         setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 1 }, sizeof (int));
116 #endif
117
118 #if defined (WIN32) || defined (UNDER_CE)
119 # ifndef IPV6_PROTECTION_LEVEL
120 #  warning Please update your C library headers.
121 #  define IPV6_PROTECTION_LEVEL 23
122 #  define PROTECTION_LEVEL_UNRESTRICTED 10
123 # endif
124     if (family == AF_INET6)
125         setsockopt (fd, IPPROTO_IPV6, IPV6_PROTECTION_LEVEL,
126                     &(int){ PROTECTION_LEVEL_UNRESTRICTED }, sizeof (int));
127 #endif
128
129 #ifdef DCCP_SOCKOPT_SERVICE
130     if (socktype == SOL_DCCP)
131     {
132         char *dccps = var_CreateGetNonEmptyString (p_this, "dccp-service");
133         if (dccps != NULL)
134         {
135             setsockopt (fd, SOL_DCCP, DCCP_SOCKOPT_SERVICE, dccps,
136                         (strlen (dccps) + 3) & ~3);
137             free (dccps);
138         }
139     }
140 #endif
141
142     return fd;
143 }
144
145
146 int *net_Listen (vlc_object_t *p_this, const char *psz_host,
147                  int i_port, int protocol)
148 {
149     struct addrinfo hints, *res;
150     int socktype = SOCK_DGRAM;
151
152     switch( protocol )
153     {
154         case IPPROTO_TCP:
155             socktype = SOCK_STREAM;
156             break;
157         case 33: /* DCCP */
158 #ifdef __linux__
159 # ifndef SOCK_DCCP
160 #  define SOCK_DCCP 6
161 # endif
162             socktype = SOCK_DCCP;
163 #endif
164             break;
165     }
166
167     memset (&hints, 0, sizeof( hints ));
168     /* Since we use port numbers rather than service names, the socket type
169      * does not really matter. */
170     hints.ai_socktype = SOCK_DGRAM;
171     hints.ai_flags = AI_PASSIVE;
172
173     msg_Dbg (p_this, "net: listening to %s port %d", psz_host, i_port);
174
175     int i_val = vlc_getaddrinfo (p_this, psz_host, i_port, &hints, &res);
176     if (i_val)
177     {
178         msg_Err (p_this, "Cannot resolve %s port %d : %s", psz_host, i_port,
179                  vlc_gai_strerror (i_val));
180         return NULL;
181     }
182
183     int *sockv = NULL;
184     unsigned sockc = 0;
185
186     for (struct addrinfo *ptr = res; ptr != NULL; ptr = ptr->ai_next)
187     {
188         int fd = net_Socket (p_this, ptr->ai_family, socktype, protocol);
189         if (fd == -1)
190         {
191             msg_Dbg (p_this, "socket error: %m");
192             continue;
193         }
194
195         /* Bind the socket */
196 #if defined (WIN32) || defined (UNDER_CE)
197         /*
198          * Under Win32 and for multicasting, we bind to INADDR_ANY.
199          * This is of course a severe bug, since the socket would logically
200          * receive unicast traffic, and multicast traffic of groups subscribed
201          * to via other sockets.
202          */
203         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen)
204          && (sizeof (struct sockaddr_storage) >= ptr->ai_addrlen))
205         {
206             // This works for IPv4 too - don't worry!
207             struct sockaddr_in6 dumb =
208             {
209                 .sin6_family = ptr->ai_addr->sa_family,
210                 .sin6_port =  ((struct sockaddr_in *)(ptr->ai_addr))->sin_port
211             };
212
213             bind (fd, (struct sockaddr *)&dumb, ptr->ai_addrlen);
214         }
215         else
216 #endif
217         if (bind (fd, ptr->ai_addr, ptr->ai_addrlen))
218         {
219             net_Close (fd);
220 #if !defined(WIN32) && !defined(UNDER_CE)
221             fd = rootwrap_bind (ptr->ai_family, socktype,
222                                 protocol ?: ptr->ai_protocol, ptr->ai_addr,
223                                 ptr->ai_addrlen);
224             if (fd != -1)
225             {
226                 msg_Dbg (p_this, "got socket %d from rootwrap", fd);
227             }
228             else
229 #endif
230             {
231                 msg_Err (p_this, "socket bind error (%m)");
232                 continue;
233             }
234         }
235
236         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen))
237         {
238             if (net_Subscribe (p_this, fd, ptr->ai_addr, ptr->ai_addrlen))
239             {
240                 net_Close (fd);
241                 continue;
242             }
243         }
244
245         /* Listen */
246         switch (socktype)
247         {
248             case SOCK_STREAM:
249             case SOCK_RDM:
250             case SOCK_SEQPACKET:
251 #ifdef SOCK_DCCP
252             case SOCK_DCCP:
253 #endif
254                 if (listen (fd, INT_MAX))
255                 {
256                     msg_Err (p_this, "socket listen error (%m)");
257                     net_Close (fd);
258                     continue;
259                 }
260         }
261
262         int *nsockv = (int *)realloc (sockv, (sockc + 2) * sizeof (int));
263         if (nsockv != NULL)
264         {
265             nsockv[sockc++] = fd;
266             sockv = nsockv;
267         }
268         else
269             net_Close (fd);
270     }
271
272     vlc_freeaddrinfo (res);
273
274     if (sockv != NULL)
275         sockv[sockc] = -1;
276
277     return sockv;
278 }
279
280
281 /*****************************************************************************
282  * __net_Read:
283  *****************************************************************************
284  * Reads from a network socket. Cancellation point.
285  * If waitall is true, then we repeat until we have read the right amount of
286  * data; in that case, a short count means EOF has been reached or the VLC
287  * object has been signaled.
288  *****************************************************************************/
289 ssize_t
290 __net_Read (vlc_object_t *restrict p_this, int fd, const v_socket_t *vs,
291             void *restrict p_buf, size_t i_buflen, bool waitall)
292 {
293     size_t i_total = 0;
294     struct pollfd ufd[2] = {
295         { .fd = fd,                           .events = POLLIN },
296         { .fd = vlc_object_waitpipe (p_this), .events = POLLIN },
297     };
298
299     if (ufd[1].fd == -1)
300         return -1; /* vlc_object_waitpipe() sets errno */
301
302     while (i_buflen > 0)
303     {
304         ufd[0].revents = ufd[1].revents = 0;
305
306         if (poll (ufd, sizeof (ufd) / sizeof (ufd[0]), -1) < 0)
307         {
308             if (errno != EINTR)
309                 goto error;
310             continue;
311         }
312
313 #ifndef POLLRDHUP /* This is nice but non-portable */
314 # define POLLRDHUP 0
315 #endif
316         if (i_total > 0)
317         {
318             /* Errors (-1) and EOF (0) will be returned on next call,
319              * otherwise we'd "hide" the error from the caller, which is a
320              * bad idea™. */
321             if (ufd[0].revents & (POLLERR|POLLNVAL|POLLRDHUP))
322                 break;
323             if (ufd[1].revents)
324                 break;
325         }
326         else
327         {
328             if (ufd[1].revents)
329             {
330                 assert (p_this->b_die);
331                 msg_Dbg (p_this, "socket %d polling interrupted", fd);
332 #if defined(WIN32) || defined(UNDER_CE)
333                 WSASetLastError (WSAEINTR);
334 #else
335                 errno = EINTR;
336 #endif
337                 goto silent;
338             }
339         }
340
341         assert (ufd[0].revents);
342
343         ssize_t n;
344         if (vs != NULL)
345         {
346             int canc = vlc_savecancel ();
347             n = vs->pf_recv (vs->p_sys, p_buf, i_buflen);
348             vlc_restorecancel (canc);
349         }
350         else
351         {
352 #ifdef WIN32
353             n = recv (fd, p_buf, i_buflen, 0);
354 #else
355             n = read (fd, p_buf, i_buflen);
356 #endif
357         }
358
359         if (n == -1)
360         {
361 #if defined(WIN32) || defined(UNDER_CE)
362             switch (WSAGetLastError ())
363             {
364                 case WSAEWOULDBLOCK:
365                 /* only happens with vs != NULL (TLS) - not really an error */
366                     continue;
367
368                 case WSAEMSGSIZE:
369                 /* For UDP only */
370                 /* On Win32, recv() fails if the datagram doesn't fit inside
371                  * the passed buffer, even though the buffer will be filled
372                  * with the first part of the datagram. */
373                     msg_Err (p_this, "Receive error: "
374                                      "Increase the mtu size (--mtu option)");
375                     n = i_buflen;
376                     break;
377             }
378 #else
379             switch (errno)
380             {
381                 case EAGAIN: /* spurious wakeup or no TLS data */
382 #if (EAGAIN != EWOULDBLOCK)
383                 case EWOULDBLOCK:
384 #endif
385                 case EINTR:  /* asynchronous signal */
386                     continue;
387             }
388 #endif
389             goto error;
390         }
391
392         if (n == 0)
393             /* For streams, this means end of file, and there will not be any
394              * further data ever on the stream. For datagram sockets, this
395              * means empty datagram, and there could be more data coming.
396              * However, it makes no sense to set <waitall> with datagrams in the
397              * first place.
398              */
399             break; // EOF
400
401         i_total += n;
402         p_buf = (char *)p_buf + n;
403         i_buflen -= n;
404
405         if (!waitall)
406             break;
407     }
408
409     return i_total;
410
411 error:
412     msg_Err (p_this, "Read error: %m");
413 silent:
414     return -1;
415 }
416
417
418 /* Write exact amount requested */
419 ssize_t __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
420                      const void *restrict p_data, size_t i_data )
421 {
422     size_t i_total = 0;
423     struct pollfd ufd[2] = {
424         { .fd = fd,                           .events = POLLOUT },
425         { .fd = vlc_object_waitpipe (p_this), .events = POLLIN  },
426     };
427
428     if (ufd[1].fd == -1)
429         return -1;
430
431     while( i_data > 0 )
432     {
433         ssize_t val;
434
435         ufd[0].revents = ufd[1].revents = 0;
436
437         if (poll (ufd, sizeof (ufd) / sizeof (ufd[0]), -1) == -1)
438         {
439             if (errno == EINTR)
440                 continue;
441             msg_Err (p_this, "Polling error: %m");
442             return -1;
443         }
444
445         if (i_total > 0)
446         {   /* If POLLHUP resp. POLLERR|POLLNVAL occurs while we have already
447              * read some data, it is important that we first return the number
448              * of bytes read, and then return 0 resp. -1 on the NEXT call. */
449             if (ufd[0].revents & (POLLHUP|POLLERR|POLLNVAL))
450                 break;
451             if (ufd[1].revents) /* VLC object signaled */
452                 break;
453         }
454         else
455         {
456             if (ufd[1].revents)
457             {
458                 assert (p_this->b_die);
459                 errno = EINTR;
460                 goto error;
461             }
462         }
463
464         if (p_vs != NULL)
465             val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
466         else
467 #ifdef WIN32
468             val = send (fd, p_data, i_data, 0);
469 #else
470             val = write (fd, p_data, i_data);
471 #endif
472
473         if (val == -1)
474         {
475             if (errno == EINTR)
476                 continue;
477             msg_Err (p_this, "Write error: %m");
478             break;
479         }
480
481         p_data = (const char *)p_data + val;
482         i_data -= val;
483         i_total += val;
484     }
485
486     if ((i_total > 0) || (i_data == 0))
487         return i_total;
488
489 error:
490     return -1;
491 }
492
493 /**
494  * Reads a line from a file descriptor.
495  * This function is not thread-safe; the same file descriptor cI/O annot be read
496  * by another thread at the same time (although it can be written to).
497  *
498  * @return nul-terminated heap-allocated string, or NULL on I/O error.
499  */
500 char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
501 {
502     char *psz_line = NULL, *ptr = NULL;
503     size_t  i_line = 0, i_max = 0;
504
505
506     for( ;; )
507     {
508         if( i_line == i_max )
509         {
510             i_max += 1024;
511             psz_line = realloc( psz_line, i_max );
512             ptr = psz_line + i_line;
513         }
514
515         if( net_Read( p_this, fd, p_vs, ptr, 1, true ) != 1 )
516         {
517             if( i_line == 0 )
518             {
519                 free( psz_line );
520                 return NULL;
521             }
522             break;
523         }
524
525         if ( *ptr == '\n' )
526             break;
527
528         i_line++;
529         ptr++;
530     }
531
532     *ptr-- = '\0';
533
534     if( ( ptr >= psz_line ) && ( *ptr == '\r' ) )
535         *ptr = '\0';
536
537     return psz_line;
538 }
539
540 ssize_t net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
541                     const char *psz_fmt, ... )
542 {
543     int i_ret;
544     va_list args;
545     va_start( args, psz_fmt );
546     i_ret = net_vaPrintf( p_this, fd, p_vs, psz_fmt, args );
547     va_end( args );
548
549     return i_ret;
550 }
551
552 ssize_t __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
553                         const char *psz_fmt, va_list args )
554 {
555     char    *psz;
556     int      i_ret;
557
558     int i_size = vasprintf( &psz, psz_fmt, args );
559     if( i_size == -1 )
560         return -1;
561     i_ret = __net_Write( p_this, fd, p_vs, psz, i_size ) < i_size
562         ? -1 : i_size;
563     free( psz );
564
565     return i_ret;
566 }
567
568 #ifdef WIN32
569     /* vlc_sendmsg, vlc_recvmsg Defined in winsock.c */
570 #else /* !WIN32 */
571 ssize_t vlc_sendmsg (int s, struct msghdr *hdr, int flags)
572 {
573     return sendmsg (s, hdr, flags);
574 }
575
576 ssize_t vlc_recvmsg (int s, struct msghdr *hdr, int flags)
577 {
578     return recvmsg (s, hdr, flags);
579 }
580 #endif /* WIN32 */
581