]> git.sesse.net Git - vlc/blob - src/network/io.c
Revert [23768] and [23768]. Fix dead lock whenever reading from the network.
[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: %m");
92         return -1;
93     }
94
95     net_SetupSocket (fd);
96
97 #ifdef IPV6_V6ONLY
98     /*
99      * Accepts only IPv6 connections on IPv6 sockets.
100      * If possible, we should open two sockets, but it is not always possible.
101      */
102     if (family == AF_INET6)
103         setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 1 }, sizeof (int));
104 #endif
105
106 #if defined (WIN32) || defined (UNDER_CE)
107 # ifndef IPV6_PROTECTION_LEVEL
108 #  warning Please update your C library headers.
109 #  define IPV6_PROTECTION_LEVEL 23
110 #  define PROTECTION_LEVEL_UNRESTRICTED 10
111 # endif
112     if (family == AF_INET6)
113         setsockopt (fd, IPPROTO_IPV6, IPV6_PROTECTION_LEVEL,
114                     &(int){ PROTECTION_LEVEL_UNRESTRICTED }, sizeof (int));
115 #endif
116
117     return fd;
118 }
119
120
121 int *net_Listen (vlc_object_t *p_this, const char *psz_host,
122                  int i_port, int protocol)
123 {
124     struct addrinfo hints, *res;
125     int socktype = SOCK_DGRAM;
126
127     switch( protocol )
128     {
129         case IPPROTO_TCP:
130             socktype = SOCK_STREAM;
131             break;
132         case 33: /* DCCP */
133 #ifdef __linux__
134 # ifndef SOCK_DCCP
135 #  define SOCK_DCCP 6
136 # endif
137             socktype = SOCK_DCCP;
138 #endif
139             break;
140     }
141
142     memset (&hints, 0, sizeof( hints ));
143     /* Since we use port numbers rather than service names, the socket type
144      * does not really matter. */
145     hints.ai_socktype = SOCK_DGRAM;
146     hints.ai_flags = AI_PASSIVE;
147
148     msg_Dbg (p_this, "net: listening to %s port %d", psz_host, i_port);
149
150     int i_val = vlc_getaddrinfo (p_this, psz_host, i_port, &hints, &res);
151     if (i_val)
152     {
153         msg_Err (p_this, "Cannot resolve %s port %d : %s", psz_host, i_port,
154                  vlc_gai_strerror (i_val));
155         return NULL;
156     }
157
158     int *sockv = NULL;
159     unsigned sockc = 0;
160
161     for (struct addrinfo *ptr = res; ptr != NULL; ptr = ptr->ai_next)
162     {
163         int fd = net_Socket (p_this, ptr->ai_family, socktype, protocol);
164         if (fd == -1)
165         {
166             msg_Dbg (p_this, "socket error: %m");
167             continue;
168         }
169
170         /* Bind the socket */
171 #if defined (WIN32) || defined (UNDER_CE)
172         /*
173          * Under Win32 and for multicasting, we bind to INADDR_ANY.
174          * This is of course a severe bug, since the socket would logically
175          * receive unicast traffic, and multicast traffic of groups subscribed
176          * to via other sockets.
177          */
178         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen)
179          && (sizeof (struct sockaddr_storage) >= ptr->ai_addrlen))
180         {
181             // This works for IPv4 too - don't worry!
182             struct sockaddr_in6 dumb =
183             {
184                 .sin6_family = ptr->ai_addr->sa_family,
185                 .sin6_port =  ((struct sockaddr_in *)(ptr->ai_addr))->sin_port
186             };
187
188             bind (fd, (struct sockaddr *)&dumb, ptr->ai_addrlen);
189         }
190         else
191 #endif
192         if (bind (fd, ptr->ai_addr, ptr->ai_addrlen))
193         {
194             net_Close (fd);
195 #if !defined(WIN32) && !defined(UNDER_CE)
196             fd = rootwrap_bind (ptr->ai_family, ptr->ai_socktype,
197                                 protocol ?: ptr->ai_protocol, ptr->ai_addr,
198                                 ptr->ai_addrlen);
199             if (fd != -1)
200             {
201                 msg_Dbg (p_this, "got socket %d from rootwrap", fd);
202             }
203             else
204 #endif
205             {
206                 msg_Err (p_this, "socket bind error (%m)");
207                 continue;
208             }
209         }
210
211         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen))
212         {
213             if (net_Subscribe (p_this, fd, ptr->ai_addr, ptr->ai_addrlen))
214             {
215                 net_Close (fd);
216                 continue;
217             }
218         }
219
220         /* Listen */
221         switch (socktype)
222         {
223             case SOCK_STREAM:
224             case SOCK_RDM:
225             case SOCK_SEQPACKET:
226 #ifdef SOCK_DCCP
227             case SOCK_DCCP:
228 #endif
229                 if (listen (fd, INT_MAX))
230                 {
231                     msg_Err (p_this, "socket listen error (%m)");
232                     net_Close (fd);
233                     continue;
234                 }
235         }
236
237         int *nsockv = (int *)realloc (sockv, (sockc + 2) * sizeof (int));
238         if (nsockv != NULL)
239         {
240             nsockv[sockc++] = fd;
241             sockv = nsockv;
242         }
243         else
244             net_Close (fd);
245     }
246
247     vlc_freeaddrinfo (res);
248
249     if (sockv != NULL)
250         sockv[sockc] = -1;
251
252     return sockv;
253 }
254
255
256 static ssize_t
257 net_ReadInner (vlc_object_t *restrict p_this, unsigned fdc, const int *fdv,
258                const v_socket_t *const *restrict vsv,
259                uint8_t *restrict p_buf, size_t i_buflen, vlc_bool_t waitall)
260 {
261     size_t i_total = 0;
262
263     while (i_buflen > 0)
264     {
265         if( ( p_this->b_die ) || ( p_this->p_libvlc->b_die ) )
266         {
267 #if defined(WIN32) || defined(UNDER_CE)
268             WSASetLastError (WSAEINTR);
269 #else
270             errno = EINTR;
271 #endif
272             goto error;
273         }
274
275         struct pollfd ufd[fdc];
276
277         for (unsigned i = 0; i < fdc; i++)
278         {
279             ufd[i].fd = fdv[i];
280             ufd[i].events = POLLIN;
281             ufd[i].revents = 0;
282         }
283
284         switch (poll (ufd, fdc, 500))
285         {
286             case -1:
287                 goto error;
288
289             case 0: // timeout
290                 continue;
291         }
292
293         for (unsigned i = 0;; i++)
294         {
295             assert (i < fdc); /* no events found = bug ! */
296
297             if (ufd[i].revents == 0)
298                 continue;
299
300 #ifndef POLLRDHUP /* This is nice but non-portable */
301 # define POLLRDHUP 0
302 #endif
303             if (i_total > 0)
304             {
305                 // Errors (-1) and EOF (0) will be returned on next run
306                 if (ufd[i].revents & (POLLERR|POLLNVAL|POLLRDHUP))
307                     return i_total;
308             }
309             else
310             {
311                 if (ufd[i].revents & POLLRDHUP)
312                     return 0; // EOF, read() would yield 0
313             }
314
315             fdc = 1;
316             fdv += i;
317             vsv += i;
318
319             break;
320         }
321
322         ssize_t n;
323         if (*vsv != NULL)
324         {
325             n = (*vsv)->pf_recv ((*vsv)->p_sys, p_buf, i_buflen);
326         }
327         else
328         {
329 #ifdef WIN32
330             n = recv (*fdv, p_buf, i_buflen, 0);
331 #else
332             n = read (*fdv, p_buf, i_buflen);
333 #endif
334         }
335
336         if (n == 0)
337             /* For streams, this means end of file, and there will not be any
338              * further data ever on the stream. For datagram sockets, this
339              * means empty datagram, and there could be more data coming.
340              * However, it makes no sense to set <waitall> with datagrams.
341              */
342             break; // EOF
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 (!waitall)
379             break;
380     }
381     return i_total;
382
383 error:
384     msg_Err (p_this, "Read error: %m");
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: %m");
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: %m");
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