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