]> git.sesse.net Git - vlc/blob - src/network/io.c
Block SIGCHLD so we don't get polluted by system() in another thread[1]
[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 #include <vlc/vlc.h>
32
33 #include <stdlib.h>
34 #include <stdio.h>
35 #include <limits.h>
36
37 #include <errno.h>
38 #include <assert.h>
39
40 #ifdef HAVE_FCNTL_H
41 #   include <fcntl.h>
42 #endif
43 #ifdef HAVE_SYS_TIME_H
44 #    include <sys/time.h>
45 #endif
46 #ifdef HAVE_UNISTD_H
47 #   include <unistd.h>
48 #endif
49 #ifdef HAVE_POLL
50 #   include <poll.h>
51 #endif
52
53 #include <vlc_network.h>
54
55 #ifndef INADDR_ANY
56 #   define INADDR_ANY  0x00000000
57 #endif
58 #ifndef INADDR_NONE
59 #   define INADDR_NONE 0xFFFFFFFF
60 #endif
61
62 #if defined(WIN32) || defined(UNDER_CE)
63 # undef EAFNOSUPPORT
64 # define EAFNOSUPPORT WSAEAFNOSUPPORT
65 #endif
66
67 extern int rootwrap_bind (int family, int socktype, int protocol,
68                           const struct sockaddr *addr, size_t alen);
69
70 int net_SetupSocket (int fd)
71 {
72 #if defined (WIN32) || defined (UNDER_CE)
73     ioctlsocket (fd, FIONBIO, &(unsigned long){ 1 });
74 #else
75     fcntl (fd, F_SETFD, FD_CLOEXEC);
76     fcntl (fd, F_SETFL, fcntl (fd, F_GETFL, 0) | O_NONBLOCK);
77 #endif
78
79     setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof (int));
80     return 0;
81 }
82
83
84 int net_Socket (vlc_object_t *p_this, int family, int socktype,
85                 int protocol)
86 {
87     int fd = socket (family, socktype, protocol);
88     if (fd == -1)
89     {
90         if (net_errno != EAFNOSUPPORT)
91             msg_Err (p_this, "cannot create socket: %s",
92                      net_strerror (net_errno));
93         return -1;
94     }
95
96     net_SetupSocket (fd);
97
98 #ifdef IPV6_V6ONLY
99     /*
100      * Accepts only IPv6 and IPv4 connections on IPv6 sockets.
101      * If possible, we should open two sockets, but it is not always possible.
102      */
103     if (family == AF_INET6)
104         setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 0 }, sizeof (int));
105 #endif
106
107 #if defined (WIN32) || defined (UNDER_CE)
108 # ifndef IPV6_PROTECTION_LEVEL
109 #  warning Please update your C library headers.
110 #  define IPV6_PROTECTION_LEVEL 23
111 #  define PROTECTION_LEVEL_UNRESTRICTED 10
112 # endif
113     if (family == AF_INET6)
114         setsockopt (fd, IPPROTO_IPV6, IPV6_PROTECTION_LEVEL,
115                     &(int){ PROTECTION_LEVEL_UNRESTRICTED }, sizeof (int));
116 #endif
117
118     return fd;
119 }
120
121
122 int *net_Listen (vlc_object_t *p_this, const char *psz_host,
123                  int i_port, int family, int socktype, int protocol)
124 {
125     struct addrinfo hints, *res;
126
127     memset (&hints, 0, sizeof( hints ));
128     hints.ai_family = family;
129     hints.ai_socktype = socktype;
130     hints.ai_flags = AI_PASSIVE;
131
132     msg_Dbg (p_this, "net: listening to %s port %d", psz_host, i_port);
133
134     int i_val = vlc_getaddrinfo (p_this, psz_host, i_port, &hints, &res);
135     if (i_val)
136     {
137         msg_Err (p_this, "Cannot resolve %s port %d : %s", psz_host, i_port,
138                  vlc_gai_strerror (i_val));
139         return NULL;
140     }
141
142     int *sockv = NULL;
143     unsigned sockc = 0;
144
145     for (struct addrinfo *ptr = res; ptr != NULL; ptr = ptr->ai_next)
146     {
147         int fd = net_Socket (p_this, ptr->ai_family, ptr->ai_socktype,
148                              protocol ?: ptr->ai_protocol);
149         if (fd == -1)
150         {
151             msg_Dbg (p_this, "socket error: %s", net_strerror (net_errno));
152             continue;
153         }
154
155         /* Bind the socket */
156 #if defined (WIN32) || defined (UNDER_CE)
157         /*
158          * Under Win32 and for multicasting, we bind to INADDR_ANY.
159          * This is of course a severe bug, since the socket would logically
160          * receive unicast traffic, and multicast traffic of groups subscribed
161          * to via other sockets.
162          */
163         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen)
164          && (sizeof (struct sockaddr_storage) >= ptr->ai_addrlen))
165         {
166             // This works for IPv4 too - don't worry!
167             struct sockaddr_in6 dumb =
168             {
169                 .sin6_family = ptr->ai_addr->sa_family,
170                 .sin6_port =  ((struct sockaddr_in *)(ptr->ai_addr))->sin_port
171             };
172
173             bind (fd, (struct sockaddr *)&dumb, ptr->ai_addrlen);
174         }
175         else
176 #endif
177         if (bind (fd, ptr->ai_addr, ptr->ai_addrlen))
178         {
179             int saved_errno = net_errno;
180
181             net_Close (fd);
182 #if !defined(WIN32) && !defined(UNDER_CE)
183             fd = rootwrap_bind (ptr->ai_family, ptr->ai_socktype,
184                                 protocol ?: ptr->ai_protocol, ptr->ai_addr,
185                                 ptr->ai_addrlen);
186             if (fd != -1)
187             {
188                 msg_Dbg (p_this, "got socket %d from rootwrap", fd);
189             }
190             else
191 #endif
192             {
193                 msg_Err (p_this, "socket bind error (%s)",
194                          net_strerror( saved_errno ) );
195                 continue;
196             }
197         }
198
199         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen))
200         {
201             if (net_Subscribe (p_this, fd, ptr->ai_addr, ptr->ai_addrlen))
202             {
203                 net_Close (fd);
204                 continue;
205             }
206         }
207
208         /* Listen */
209         switch (ptr->ai_socktype)
210         {
211             case SOCK_STREAM:
212             case SOCK_RDM:
213             case SOCK_SEQPACKET:
214                 if (listen (fd, INT_MAX))
215                 {
216                     msg_Err (p_this, "socket listen error (%s)",
217                             net_strerror (net_errno));
218                     net_Close (fd);
219                     continue;
220                 }
221         }
222
223         int *nsockv = (int *)realloc (sockv, (sockc + 2) * sizeof (int));
224         if (nsockv != NULL)
225         {
226             nsockv[sockc++] = fd;
227             sockv = nsockv;
228         }
229         else
230             net_Close (fd);
231     }
232
233     vlc_freeaddrinfo (res);
234
235     if (sockv != NULL)
236         sockv[sockc] = -1;
237
238     return sockv;
239 }
240
241
242 int net_ListenSingle (vlc_object_t *obj, const char *host, int port,
243                       int family, int socktype, int protocol)
244 {
245     int *fdv = net_Listen (obj, host, port, family, socktype, protocol);
246     if (fdv == NULL)
247         return -1;
248
249     for (unsigned i = 1; fdv[i] != -1; i++)
250     {
251         msg_Warn (obj, "Multiple sockets opened. Dropping extra ones!");
252         net_Close (fdv[i]);
253     }
254
255     int fd = fdv[0];
256     assert (fd != -1);
257
258     free (fdv);
259     return fd;
260 }
261
262
263
264 static ssize_t
265 net_ReadInner (vlc_object_t *restrict p_this, unsigned fdc, const int *fdv,
266                const v_socket_t *const *restrict vsv,
267                uint8_t *restrict p_buf, size_t i_buflen, vlc_bool_t waitall)
268 {
269     size_t i_total = 0;
270
271     while (i_buflen > 0)
272     {
273         if (p_this->b_die)
274         {
275 #if defined(WIN32) || defined(UNDER_CE)
276             WSASetLastError (WSAEINTR);
277 #else
278             errno = EINTR;
279 #endif
280             goto error;
281         }
282
283         struct pollfd ufd[fdc];
284
285         for (unsigned i = 0; i < fdc; i++)
286         {
287             ufd[i].fd = fdv[i];
288             ufd[i].events = POLLIN;
289             ufd[i].revents = 0;
290         }
291
292         switch (poll (ufd, fdc, 500))
293         {
294             case -1:
295                 goto error;
296
297             case 0: // timeout
298                 continue;
299         }
300
301         for (unsigned i = 0;; i++)
302         {
303             assert (i < fdc); /* no events found = bug ! */
304
305             if (ufd[i].revents == 0)
306                 continue;
307
308 #ifndef POLLRDHUP /* This is nice but non-portable */
309 # define POLLRDHUP 0
310 #endif
311             if (i_total > 0)
312             {
313                 // Errors (-1) and EOF (0) will be returned on next run
314                 if (ufd[i].revents & (POLLERR|POLLNVAL|POLLRDHUP))
315                     return i_total;
316             }
317             else
318             {
319                 if (ufd[i].revents & POLLRDHUP)
320                     return 0; // EOF, read() would yield 0
321             }
322
323             fdc = 1;
324             fdv += i;
325             vsv += i;
326
327             break;
328         }
329
330         ssize_t n;
331         if (*vsv != NULL)
332         {
333             n = (*vsv)->pf_recv ((*vsv)->p_sys, p_buf, i_buflen);
334         }
335         else
336         {
337 #ifdef WIN32
338             n = recv (*fdv, p_buf, i_buflen, 0);
339 #else
340             n = read (*fdv, p_buf, i_buflen);
341 #endif
342         }
343
344         if (n == -1)
345         {
346 #if defined(WIN32) || defined(UNDER_CE)
347             switch (WSAGetLastError ())
348             {
349                 case WSAEWOULDBLOCK:
350                 /* only happens with vs != NULL (SSL) - not really an error */
351                     continue;
352
353                 case WSAEMSGSIZE:
354                 /* For UDP only */
355                 /* On Win32, recv() fails if the datagram doesn't fit inside
356                  * the passed buffer, even though the buffer will be filled
357                  * with the first part of the datagram. */
358                     msg_Err (p_this, "Receive error: "
359                                      "Increase the mtu size (--mtu option)");
360                     n = i_buflen;
361                     break;
362
363                 default:
364                     goto error;
365             }
366 #else
367             /* spurious wake-up or TLS did not yield any actual data */
368             if (errno == EAGAIN)
369                 continue;
370             goto error;
371 #endif
372         }
373
374         i_total += n;
375         p_buf += n;
376         i_buflen -= n;
377
378         if ((n == 0) || !waitall)
379             break;
380     }
381     return i_total;
382
383 error:
384     msg_Err (p_this, "Read error: %s", net_strerror (net_errno));
385     return i_total ? (ssize_t)i_total : -1;
386 }
387
388
389 /*****************************************************************************
390  * __net_Read:
391  *****************************************************************************
392  * Read from a network socket
393  * If b_retry is true, then we repeat until we have read the right amount of
394  * data; in that case, a short count means EOF has been reached.
395  *****************************************************************************/
396 ssize_t __net_Read( vlc_object_t *restrict p_this, int fd,
397                     const v_socket_t *restrict p_vs,
398                     uint8_t *restrict buf, size_t len, vlc_bool_t b_retry )
399 {
400     return net_ReadInner( p_this, 1, &(int){ fd },
401                           &(const v_socket_t *){ p_vs },
402                           buf, len, b_retry );
403 }
404
405
406 /*****************************************************************************
407  * __net_Select:
408  *****************************************************************************
409  * Read from several sockets. Takes data from the first socket that has some.
410  *****************************************************************************/
411 ssize_t __net_Select( vlc_object_t *restrict p_this,
412                       const int *restrict fds, int nfd,
413                       uint8_t *restrict buf, size_t len )
414 {
415     const v_socket_t *vsv[nfd];
416     memset( vsv, 0, sizeof (vsv) );
417
418     return net_ReadInner( p_this, nfd, fds, vsv,
419                           buf, len, VLC_FALSE );
420 }
421
422
423 /* Write exact amount requested */
424 ssize_t __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
425                      const uint8_t *p_data, size_t i_data )
426 {
427     size_t i_total = 0;
428
429     while( i_data > 0 )
430     {
431         if( p_this->b_die )
432             break;
433
434         struct pollfd ufd[1];
435         memset (ufd, 0, sizeof (ufd));
436         ufd[0].fd = fd;
437         ufd[0].events = POLLOUT;
438
439         int val = poll (ufd, 1, 500);
440         switch (val)
441         {
442             case -1:
443                msg_Err (p_this, "Write error: %s", net_strerror (net_errno));
444                goto out;
445
446             case 0:
447                 continue;
448         }
449
450         if ((ufd[0].revents & (POLLERR|POLLNVAL|POLLHUP)) && (i_total > 0))
451             return i_total; // error will be dequeued separately on next call
452
453         if (p_vs != NULL)
454             val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
455         else
456 #ifdef WIN32
457             val = send (fd, p_data, i_data, 0);
458 #else
459             val = write (fd, p_data, i_data);
460 #endif
461
462         if (val == -1)
463         {
464             msg_Err (p_this, "Write error: %s", net_strerror (net_errno));
465             break;
466         }
467
468         p_data += val;
469         i_data -= val;
470         i_total += val;
471     }
472
473 out:
474     if ((i_total > 0) || (i_data == 0))
475         return i_total;
476
477     return -1;
478 }
479
480 char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
481 {
482     char *psz_line = NULL, *ptr = NULL;
483     size_t  i_line = 0, i_max = 0;
484
485
486     for( ;; )
487     {
488         if( i_line == i_max )
489         {
490             i_max += 1024;
491             psz_line = realloc( psz_line, i_max );
492             ptr = psz_line + i_line;
493         }
494
495         if( net_Read( p_this, fd, p_vs, (uint8_t *)ptr, 1, VLC_TRUE ) != 1 )
496         {
497             if( i_line == 0 )
498             {
499                 free( psz_line );
500                 return NULL;
501             }
502             break;
503         }
504
505         if ( *ptr == '\n' )
506             break;
507
508         i_line++;
509         ptr++;
510     }
511
512     *ptr-- = '\0';
513
514     if( ( ptr >= psz_line ) && ( *ptr == '\r' ) )
515         *ptr = '\0';
516
517     return psz_line;
518 }
519
520 ssize_t net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
521                     const char *psz_fmt, ... )
522 {
523     int i_ret;
524     va_list args;
525     va_start( args, psz_fmt );
526     i_ret = net_vaPrintf( p_this, fd, p_vs, psz_fmt, args );
527     va_end( args );
528
529     return i_ret;
530 }
531
532 ssize_t __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
533                         const char *psz_fmt, va_list args )
534 {
535     char    *psz;
536     int     i_size, i_ret;
537
538     i_size = vasprintf( &psz, psz_fmt, args );
539     i_ret = __net_Write( p_this, fd, p_vs, (uint8_t *)psz, i_size ) < i_size
540         ? -1 : i_size;
541     free( psz );
542
543     return i_ret;
544 }
545
546
547 /*****************************************************************************
548  * inet_pton replacement for obsolete and/or crap operating systems
549  *****************************************************************************/
550 #ifndef HAVE_INET_PTON
551 int inet_pton(int af, const char *src, void *dst)
552 {
553 # ifdef WIN32
554     /* As we already know, Microsoft always go its own way, so even if they do
555      * provide IPv6, they don't provide the API. */
556     struct sockaddr_storage addr;
557     int len = sizeof( addr );
558
559     /* Damn it, they didn't even put LPCSTR for the firs parameter!!! */
560 #ifdef UNICODE
561     wchar_t *workaround_for_ill_designed_api =
562         malloc( MAX_PATH * sizeof(wchar_t) );
563     mbstowcs( workaround_for_ill_designed_api, src, MAX_PATH );
564     workaround_for_ill_designed_api[MAX_PATH-1] = 0;
565 #else
566     char *workaround_for_ill_designed_api = strdup( src );
567 #endif
568
569     if( !WSAStringToAddress( workaround_for_ill_designed_api, af, NULL,
570                              (LPSOCKADDR)&addr, &len ) )
571     {
572         free( workaround_for_ill_designed_api );
573         return -1;
574     }
575     free( workaround_for_ill_designed_api );
576
577     switch( af )
578     {
579         case AF_INET6:
580             memcpy( dst, &((struct sockaddr_in6 *)&addr)->sin6_addr, 16 );
581             break;
582
583         case AF_INET:
584             memcpy( dst, &((struct sockaddr_in *)&addr)->sin_addr, 4 );
585             break;
586
587         default:
588             WSASetLastError( WSAEAFNOSUPPORT );
589             return -1;
590     }
591 # else
592     /* Assume IPv6 is not supported. */
593     /* Would be safer and more simpler to use inet_aton() but it is most
594      * likely not provided either. */
595     uint32_t ipv4;
596
597     if( af != AF_INET )
598     {
599         errno = EAFNOSUPPORT;
600         return -1;
601     }
602
603     ipv4 = inet_addr( src );
604     if( ipv4 == INADDR_NONE )
605         return -1;
606
607     memcpy( dst, &ipv4, 4 );
608 # endif /* WIN32 */
609     return 0;
610 }
611 #endif /* HAVE_INET_PTON */
612
613 #ifndef HAVE_INET_NTOP
614 #ifdef WIN32
615 const char *inet_ntop(int af, const void * src,
616                                char * dst, socklen_t cnt)
617 {
618     switch( af )
619     {
620 #ifdef AF_INET6
621         case AF_INET6:
622             {
623                 struct sockaddr_in6 addr;
624                 memset(&addr, 0, sizeof(addr));
625                 addr.sin6_family = AF_INET6;
626                 addr.sin6_addr = *((struct in6_addr*)src);
627                 if( 0 == WSAAddressToStringA((LPSOCKADDR)&addr, 
628                                              sizeof(struct sockaddr_in6), 
629                                              NULL, dst, &cnt) )
630                 {
631                     dst[cnt] = '\0';
632                     return dst;
633                 }
634                 errno = WSAGetLastError();
635                 return NULL;
636
637             }
638
639 #endif
640         case AF_INET:
641             {
642                 struct sockaddr_in addr;
643                 memset(&addr, 0, sizeof(addr));
644                 addr.sin_family = AF_INET;
645                 addr.sin_addr = *((struct in_addr*)src);
646                 if( 0 == WSAAddressToStringA((LPSOCKADDR)&addr,
647                                              sizeof(struct sockaddr_in),
648                                              NULL, dst, &cnt) )
649                 {
650                     dst[cnt] = '\0';
651                     return dst;
652                 }
653                 errno = WSAGetLastError();
654                 return NULL;
655
656             }
657     }
658     errno = EAFNOSUPPORT;
659     return NULL;
660 }
661 #endif
662 #endif