]> git.sesse.net Git - vlc/blob - src/network/io.c
Remove broken V6ONLY logic
[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_protocol = protocol;
127     hints.ai_flags = AI_PASSIVE;
128
129     msg_Dbg (p_this, "net: listening to %s port %d", psz_host, i_port);
130
131     int i_val = vlc_getaddrinfo (p_this, psz_host, i_port, &hints, &res);
132     if (i_val)
133     {
134         msg_Err (p_this, "Cannot resolve %s port %d : %s", psz_host, i_port,
135                  vlc_gai_strerror (i_val));
136         return NULL;
137     }
138
139     int *sockv = NULL;
140     unsigned sockc = 0;
141
142     for (struct addrinfo *ptr = res; ptr != NULL; ptr = ptr->ai_next)
143     {
144         int fd = net_Socket (p_this, ptr->ai_family, ptr->ai_socktype,
145                              ptr->ai_protocol);
146         if (fd == -1)
147         {
148             msg_Dbg (p_this, "socket error: %s", net_strerror (net_errno));
149             continue;
150         }
151
152         /* Bind the socket */
153 #if defined (WIN32) || defined (UNDER_CE)
154         /*
155          * Under Win32 and for multicasting, we bind to INADDR_ANY.
156          * This is of course a severe bug, since the socket would logically
157          * receive unicast traffic, and multicast traffic of groups subscribed
158          * to via other sockets.
159          */
160         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen)
161          && (sizeof (struct sockaddr_storage) >= ptr->ai_addrlen))
162         {
163             // This works for IPv4 too - don't worry!
164             struct sockaddr_in6 dumb =
165             {
166                 .sin6_family = ptr->ai_addr->sa_family,
167                 .sin6_port =  ((struct sockaddr_in *)(ptr->ai_addr))->sin_port
168             };
169
170             bind (fd, (struct sockaddr *)&dumb, ptr->ai_addrlen);
171         }
172         else
173 #endif
174         if (bind (fd, ptr->ai_addr, ptr->ai_addrlen))
175         {
176             int saved_errno = net_errno;
177
178             net_Close (fd);
179 #if !defined(WIN32) && !defined(UNDER_CE)
180             fd = rootwrap_bind (ptr->ai_family, ptr->ai_socktype,
181                                 ptr->ai_protocol, ptr->ai_addr,
182                                 ptr->ai_addrlen);
183             if (fd != -1)
184             {
185                 msg_Dbg (p_this, "got socket %d from rootwrap", fd);
186             }
187             else
188 #endif
189             {
190                 msg_Err (p_this, "socket bind error (%s)",
191                          net_strerror( saved_errno ) );
192                 continue;
193             }
194         }
195
196         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen))
197         {
198             if (net_Subscribe (p_this, fd, ptr->ai_addr, ptr->ai_addrlen))
199             {
200                 net_Close (fd);
201                 continue;
202             }
203         }
204
205         /* Listen */
206         switch (ptr->ai_socktype)
207         {
208             case SOCK_STREAM:
209             case SOCK_RDM:
210             case SOCK_SEQPACKET:
211                 if (listen (fd, INT_MAX))
212                 {
213                     msg_Err (p_this, "socket listen error (%s)",
214                             net_strerror (net_errno));
215                     net_Close (fd);
216                     continue;
217                 }
218         }
219
220         int *nsockv = (int *)realloc (sockv, (sockc + 2) * sizeof (int));
221         if (nsockv != NULL)
222         {
223             nsockv[sockc++] = fd;
224             sockv = nsockv;
225         }
226         else
227             net_Close (fd);
228     }
229
230     vlc_freeaddrinfo (res);
231
232     if (sockv != NULL)
233         sockv[sockc] = -1;
234
235     return sockv;
236 }
237
238
239 int net_ListenSingle (vlc_object_t *obj, const char *host, int port,
240                       int family, int socktype, int protocol)
241 {
242     int *fdv = net_Listen (obj, host, port, family, socktype, protocol);
243     if (fdv == NULL)
244         return -1;
245
246     for (unsigned i = 1; fdv[i] != -1; i++)
247     {
248         msg_Warn (obj, "Multiple sockets opened. Dropping extra ones!");
249         net_Close (fdv[i]);
250     }
251
252     int fd = fdv[0];
253     assert (fd != -1);
254
255     free (fdv);
256     return fd;
257 }
258
259
260
261 /*****************************************************************************
262  * __net_Close:
263  *****************************************************************************
264  * Close a network handle
265  *****************************************************************************/
266 void net_Close (int fd)
267 {
268 #ifdef UNDER_CE
269     CloseHandle ((HANDLE)fd);
270 #elif defined (WIN32)
271     closesocket (fd);
272 #else
273     (void)close (fd);
274 #endif
275 }
276
277
278 static ssize_t
279 net_ReadInner( vlc_object_t *restrict p_this, unsigned fdc, const int *fdv,
280                const v_socket_t *const *restrict vsv,
281                uint8_t *restrict p_buf, size_t i_buflen,
282                int wait_ms, vlc_bool_t waitall )
283 {
284     size_t i_total = 0;
285
286     while (i_buflen > 0)
287     {
288         unsigned i;
289         ssize_t n;
290 #ifdef HAVE_POLL
291         struct pollfd ufd[fdc];
292 #else
293         int maxfd = -1;
294         fd_set set;
295 #endif
296
297         int delay_ms = 500;
298         if ((wait_ms != -1) && (wait_ms < 500))
299             delay_ms = wait_ms;
300
301         if (p_this->b_die)
302         {
303             errno = EINTR;
304             goto error;
305         }
306
307 #ifdef HAVE_POLL
308         memset (ufd, 0, sizeof (ufd));
309
310         for( i = 0; i < fdc; i++ )
311         {
312             ufd[i].fd = fdv[i];
313             ufd[i].events = POLLIN;
314         }
315
316         n = poll( ufd, fdc, delay_ms );
317 #else
318         FD_ZERO (&set);
319
320         for( i = 0; i < fdc; i++ )
321         {
322 #if !defined(WIN32) && !defined(UNDER_CE)
323             if( fdv[i] >= FD_SETSIZE )
324             {
325                 /* We don't want to overflow select() fd_set */
326                 msg_Err( p_this, "select set overflow" );
327                 return -1;
328             }
329 #endif
330             FD_SET( fdv[i], &set );
331             if( fdv[i] > maxfd )
332                 maxfd = fdv[i];
333         }
334
335         n = select( maxfd + 1, &set, NULL, NULL,
336                     (wait_ms == -1) ? NULL
337                                   : &(struct timeval){ 0, delay_ms * 1000 } );
338 #endif
339         if( n == -1 )
340             goto error;
341
342         assert ((unsigned)n <= fdc);
343
344         if (n == 0) // timeout
345             continue;
346
347         for (i = 0;; i++)
348         {
349 #ifdef HAVE_POLL
350             if ((i_total > 0) && (ufd[i].revents & POLLERR))
351                 return i_total; // error will be dequeued on next run
352
353             if ((ufd[i].revents & POLLIN) == 0)
354 #else
355             if (!FD_ISSET (fdv[i], &set))
356                 continue;
357 #endif
358             fdc = 1;
359             fdv += i;
360             vsv += i;
361             break;
362         }
363
364         if( (*vsv) != NULL )
365         {
366             n = (*vsv)->pf_recv( (*vsv)->p_sys, p_buf, i_buflen );
367         }
368         else
369         {
370 #if defined(WIN32) || defined(UNDER_CE)
371             n = recv( *fdv, p_buf, i_buflen, 0 );
372 #else
373             n = read( *fdv, p_buf, i_buflen );
374 #endif
375         }
376
377         if( n == -1 )
378         {
379 #if defined(WIN32) || defined(UNDER_CE)
380             switch( WSAGetLastError() )
381             {
382                 case WSAEWOULDBLOCK:
383                 /* only happens with vs != NULL (SSL) - not really an error */
384                     continue;
385
386                 case WSAEMSGSIZE:
387                 /* For UDP only */
388                 /* On Win32, recv() fails if the datagram doesn't fit inside
389                  * the passed buffer, even though the buffer will be filled
390                  * with the first part of the datagram. */
391                     msg_Err( p_this, "Receive error: "
392                                      "Increase the mtu size (--mtu option)" );
393                     i_total += i_buflen;
394                     return i_total;
395             }
396 #else
397             if( errno == EAGAIN ) /* spurious wake-up (sucks if fdc > 1) */
398                 continue;
399 #endif
400             goto error;
401         }
402
403         if (n == 0) // EOF
404             return i_total;
405
406         i_total += n;
407         p_buf += n;
408         i_buflen -= n;
409
410         if (!waitall)
411             return i_total;
412
413         if (wait_ms != -1)
414         {
415             wait_ms -= delay_ms;
416             if (wait_ms == 0)
417                 return i_total; // time's up!
418         }
419     }
420     return i_total;
421
422 error:
423     if( errno != EINTR )
424         msg_Err( p_this, "Read error: %s", net_strerror (net_errno) );
425     return i_total ? (ssize_t)i_total : -1;
426 }
427
428
429 /*****************************************************************************
430  * __net_Read:
431  *****************************************************************************
432  * Read from a network socket
433  * If b_retry is true, then we repeat until we have read the right amount of
434  * data
435  *****************************************************************************/
436 int __net_Read( vlc_object_t *restrict p_this, int fd,
437                 const v_socket_t *restrict p_vs,
438                 uint8_t *restrict p_data, int i_data, vlc_bool_t b_retry )
439 {
440     return net_ReadInner( p_this, 1, &(int){ fd },
441                           &(const v_socket_t *){ p_vs },
442                           p_data, i_data, -1, b_retry );
443 }
444
445
446 /*****************************************************************************
447  * __net_ReadNonBlock:
448  *****************************************************************************
449  * Read from a network socket, non blocking mode (with timeout)
450  *****************************************************************************/
451 int __net_ReadNonBlock( vlc_object_t *restrict p_this, int fd,
452                         const v_socket_t *restrict p_vs,
453                         uint8_t *restrict p_data, int i_data, mtime_t i_wait)
454 {
455     return net_ReadInner (p_this, 1, &(int){ fd },
456                           &(const v_socket_t *){ p_vs },
457                           p_data, i_data, i_wait / 1000, VLC_FALSE);
458 }
459
460
461 /*****************************************************************************
462  * __net_Select:
463  *****************************************************************************
464  * Read from several sockets (with timeout). Takes data from the first socket
465  * that has some.
466  *****************************************************************************/
467 int __net_Select( vlc_object_t *restrict p_this, const int *restrict pi_fd,
468                   const v_socket_t *const *restrict pp_vs,
469                   int i_fd, uint8_t *restrict p_data, int i_data,
470                   mtime_t i_wait )
471 {
472     if( pp_vs == NULL )
473     {
474         const v_socket_t *vsv[i_fd];
475         memset( vsv, 0, sizeof (vsv) );
476
477         return net_ReadInner( p_this, i_fd, pi_fd, vsv, p_data, i_data,
478                               i_wait / 1000, VLC_FALSE );
479     }
480
481     return net_ReadInner( p_this, i_fd, pi_fd, pp_vs, p_data, i_data,
482                           i_wait / 1000, VLC_FALSE );
483 }
484
485
486 /* Write exact amount requested */
487 int __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
488                  const uint8_t *p_data, int i_data )
489 {
490     size_t i_total = 0;
491
492     while( i_data > 0 )
493     {
494         if( p_this->b_die )
495             return i_total;
496
497 #ifdef HAVE_POLL
498         struct pollfd ufd[1];
499         memset (ufd, 0, sizeof (ufd));
500         ufd[0].fd = fd;
501         ufd[0].events = POLLOUT;
502
503         int val = poll (ufd, 1, 500);
504         if ((val > 0) && (ufd[0].revents & POLLERR) && (i_total > 0))
505             return i_total; // error will be dequeued separately on next call
506 #else
507         fd_set set;
508         FD_ZERO (&set);
509
510 #if !defined(WIN32) && !defined(UNDER_CE)
511         if (fd >= FD_SETSIZE)
512         {
513             /* We don't want to overflow select() fd_set */
514             msg_Err (p_this, "select set overflow");
515             return -1;
516         }
517 #endif
518         FD_SET (fd, &set);
519
520         int val = select (fd + 1, NULL, &set, NULL,
521                           &(struct timeval){ 0, 500000 });
522 #endif
523         switch (val)
524         {
525             case -1:
526                 if (errno != EINTR)
527                 {
528                     msg_Err (p_this, "Write error: %s",
529                              net_strerror (net_errno));
530                     return i_total ? (int)i_total : -1;
531                 }
532
533             case 0:
534                 continue;
535         }
536
537         if (p_vs != NULL)
538             val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
539         else
540 #if defined(WIN32) || defined(UNDER_CE)
541             val = send (fd, p_data, i_data, 0);
542 #else
543             val = write (fd, p_data, i_data);
544 #endif
545
546         if (val == -1)
547             return i_total ? (int)i_total : -1;
548         if (val == 0)
549             return i_total;
550
551         p_data += val;
552         i_data -= val;
553         i_total += val;
554     }
555
556     return i_total;
557 }
558
559 char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
560 {
561     char *psz_line = NULL, *ptr = NULL;
562     size_t  i_line = 0, i_max = 0;
563
564
565     for( ;; )
566     {
567         if( i_line == i_max )
568         {
569             i_max += 1024;
570             psz_line = realloc( psz_line, i_max );
571             ptr = psz_line + i_line;
572         }
573
574         if( net_Read( p_this, fd, p_vs, (uint8_t *)ptr, 1, VLC_TRUE ) != 1 )
575         {
576             if( i_line == 0 )
577             {
578                 free( psz_line );
579                 return NULL;
580             }
581             break;
582         }
583
584         if ( *ptr == '\n' )
585             break;
586
587         i_line++;
588         ptr++;
589     }
590
591     *ptr-- = '\0';
592
593     if( ( ptr >= psz_line ) && ( *ptr == '\r' ) )
594         *ptr = '\0';
595
596     return psz_line;
597 }
598
599 int net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
600                 const char *psz_fmt, ... )
601 {
602     int i_ret;
603     va_list args;
604     va_start( args, psz_fmt );
605     i_ret = net_vaPrintf( p_this, fd, p_vs, psz_fmt, args );
606     va_end( args );
607
608     return i_ret;
609 }
610
611 int __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
612                     const char *psz_fmt, va_list args )
613 {
614     char    *psz;
615     int     i_size, i_ret;
616
617     i_size = vasprintf( &psz, psz_fmt, args );
618     i_ret = __net_Write( p_this, fd, p_vs, (uint8_t *)psz, i_size ) < i_size
619         ? -1 : i_size;
620     free( psz );
621
622     return i_ret;
623 }
624
625
626 /*****************************************************************************
627  * inet_pton replacement for obsolete and/or crap operating systems
628  *****************************************************************************/
629 #ifndef HAVE_INET_PTON
630 int inet_pton(int af, const char *src, void *dst)
631 {
632 # ifdef WIN32
633     /* As we already know, Microsoft always go its own way, so even if they do
634      * provide IPv6, they don't provide the API. */
635     struct sockaddr_storage addr;
636     int len = sizeof( addr );
637
638     /* Damn it, they didn't even put LPCSTR for the firs parameter!!! */
639 #ifdef UNICODE
640     wchar_t *workaround_for_ill_designed_api =
641         malloc( MAX_PATH * sizeof(wchar_t) );
642     mbstowcs( workaround_for_ill_designed_api, src, MAX_PATH );
643     workaround_for_ill_designed_api[MAX_PATH-1] = 0;
644 #else
645     char *workaround_for_ill_designed_api = strdup( src );
646 #endif
647
648     if( !WSAStringToAddress( workaround_for_ill_designed_api, af, NULL,
649                              (LPSOCKADDR)&addr, &len ) )
650     {
651         free( workaround_for_ill_designed_api );
652         return -1;
653     }
654     free( workaround_for_ill_designed_api );
655
656     switch( af )
657     {
658         case AF_INET6:
659             memcpy( dst, &((struct sockaddr_in6 *)&addr)->sin6_addr, 16 );
660             break;
661
662         case AF_INET:
663             memcpy( dst, &((struct sockaddr_in *)&addr)->sin_addr, 4 );
664             break;
665
666         default:
667             WSASetLastError( WSAEAFNOSUPPORT );
668             return -1;
669     }
670 # else
671     /* Assume IPv6 is not supported. */
672     /* Would be safer and more simpler to use inet_aton() but it is most
673      * likely not provided either. */
674     uint32_t ipv4;
675
676     if( af != AF_INET )
677     {
678         errno = EAFNOSUPPORT;
679         return -1;
680     }
681
682     ipv4 = inet_addr( src );
683     if( ipv4 == INADDR_NONE )
684         return -1;
685
686     memcpy( dst, &ipv4, 4 );
687 # endif /* WIN32 */
688     return 0;
689 }
690 #endif /* HAVE_INET_PTON */