]> git.sesse.net Git - vlc/blob - src/network/io.c
Re-disable v6 only for better handling of udp://@ on dual-stack systems
[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                 if( errno == EINTR )
296                     continue;
297                 goto error;
298
299             case 0: // timeout
300                 continue;
301         }
302
303         for (unsigned i = 0;; i++)
304         {
305             assert (i < fdc); /* no events found = bug ! */
306
307             if (ufd[i].revents == 0)
308                 continue;
309
310 #ifndef POLLRDHUP /* This is nice but non-portable */
311 # define POLLRDHUP 0
312 #endif
313             if (i_total > 0)
314             {
315                 // Errors (-1) and EOF (0) will be returned on next run
316                 if (ufd[i].revents & (POLLERR|POLLNVAL|POLLRDHUP))
317                     return i_total;
318             }
319             else
320             {
321                 if (ufd[i].revents & POLLRDHUP)
322                     return 0; // EOF, read() would yield 0
323             }
324
325             fdc = 1;
326             fdv += i;
327             vsv += i;
328
329             break;
330         }
331
332         ssize_t n;
333         if (*vsv != NULL)
334         {
335             n = (*vsv)->pf_recv ((*vsv)->p_sys, p_buf, i_buflen);
336         }
337         else
338         {
339 #ifdef WIN32
340             n = recv (*fdv, p_buf, i_buflen, 0);
341 #else
342             n = read (*fdv, p_buf, i_buflen);
343 #endif
344         }
345
346         if (n == -1)
347         {
348 #if defined(WIN32) || defined(UNDER_CE)
349             switch (WSAGetLastError ())
350             {
351                 case WSAEWOULDBLOCK:
352                 /* only happens with vs != NULL (SSL) - not really an error */
353                     continue;
354
355                 case WSAEMSGSIZE:
356                 /* For UDP only */
357                 /* On Win32, recv() fails if the datagram doesn't fit inside
358                  * the passed buffer, even though the buffer will be filled
359                  * with the first part of the datagram. */
360                     msg_Err (p_this, "Receive error: "
361                                      "Increase the mtu size (--mtu option)");
362                     n = i_buflen;
363                     break;
364
365                 default:
366                     goto error;
367             }
368 #else
369             /* spurious wake-up or TLS did not yield any actual data */
370             if (errno == EAGAIN)
371                 continue;
372             goto error;
373 #endif
374         }
375
376         i_total += n;
377         p_buf += n;
378         i_buflen -= n;
379
380         if ((n == 0) || !waitall)
381             break;
382     }
383     return i_total;
384
385 error:
386     msg_Err (p_this, "Read error: %s", net_strerror (net_errno));
387     return i_total ? (ssize_t)i_total : -1;
388 }
389
390
391 /*****************************************************************************
392  * __net_Read:
393  *****************************************************************************
394  * Read from a network socket
395  * If b_retry is true, then we repeat until we have read the right amount of
396  * data; in that case, a short count means EOF has been reached.
397  *****************************************************************************/
398 ssize_t __net_Read( vlc_object_t *restrict p_this, int fd,
399                     const v_socket_t *restrict p_vs,
400                     uint8_t *restrict buf, size_t len, vlc_bool_t b_retry )
401 {
402     return net_ReadInner( p_this, 1, &(int){ fd },
403                           &(const v_socket_t *){ p_vs },
404                           buf, len, b_retry );
405 }
406
407
408 /*****************************************************************************
409  * __net_Select:
410  *****************************************************************************
411  * Read from several sockets. Takes data from the first socket that has some.
412  *****************************************************************************/
413 ssize_t __net_Select( vlc_object_t *restrict p_this,
414                       const int *restrict fds, int nfd,
415                       uint8_t *restrict buf, size_t len )
416 {
417     const v_socket_t *vsv[nfd];
418     memset( vsv, 0, sizeof (vsv) );
419
420     return net_ReadInner( p_this, nfd, fds, vsv,
421                           buf, len, VLC_FALSE );
422 }
423
424
425 /* Write exact amount requested */
426 ssize_t __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
427                      const uint8_t *p_data, size_t i_data )
428 {
429     size_t i_total = 0;
430
431     while( i_data > 0 )
432     {
433         if( p_this->b_die )
434             break;
435
436         struct pollfd ufd[1];
437         memset (ufd, 0, sizeof (ufd));
438         ufd[0].fd = fd;
439         ufd[0].events = POLLOUT;
440
441         int val = poll (ufd, 1, 500);
442         switch (val)
443         {
444             case -1:
445                 if( errno == EINTR )
446                     continue;
447                msg_Err (p_this, "Write error: %s", net_strerror (net_errno));
448                goto out;
449
450             case 0:
451                 continue;
452         }
453
454         if ((ufd[0].revents & (POLLERR|POLLNVAL|POLLHUP)) && (i_total > 0))
455             return i_total; // error will be dequeued separately on next call
456
457         if (p_vs != NULL)
458             val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
459         else
460 #ifdef WIN32
461             val = send (fd, p_data, i_data, 0);
462 #else
463             val = write (fd, p_data, i_data);
464 #endif
465
466         if (val == -1)
467         {
468             msg_Err (p_this, "Write error: %s", net_strerror (net_errno));
469             break;
470         }
471
472         p_data += val;
473         i_data -= val;
474         i_total += val;
475     }
476
477 out:
478     if ((i_total > 0) || (i_data == 0))
479         return i_total;
480
481     return -1;
482 }
483
484 char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
485 {
486     char *psz_line = NULL, *ptr = NULL;
487     size_t  i_line = 0, i_max = 0;
488
489
490     for( ;; )
491     {
492         if( i_line == i_max )
493         {
494             i_max += 1024;
495             psz_line = realloc( psz_line, i_max );
496             ptr = psz_line + i_line;
497         }
498
499         if( net_Read( p_this, fd, p_vs, (uint8_t *)ptr, 1, VLC_TRUE ) != 1 )
500         {
501             if( i_line == 0 )
502             {
503                 free( psz_line );
504                 return NULL;
505             }
506             break;
507         }
508
509         if ( *ptr == '\n' )
510             break;
511
512         i_line++;
513         ptr++;
514     }
515
516     *ptr-- = '\0';
517
518     if( ( ptr >= psz_line ) && ( *ptr == '\r' ) )
519         *ptr = '\0';
520
521     return psz_line;
522 }
523
524 ssize_t net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
525                     const char *psz_fmt, ... )
526 {
527     int i_ret;
528     va_list args;
529     va_start( args, psz_fmt );
530     i_ret = net_vaPrintf( p_this, fd, p_vs, psz_fmt, args );
531     va_end( args );
532
533     return i_ret;
534 }
535
536 ssize_t __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
537                         const char *psz_fmt, va_list args )
538 {
539     char    *psz;
540     int     i_size, i_ret;
541
542     i_size = vasprintf( &psz, psz_fmt, args );
543     i_ret = __net_Write( p_this, fd, p_vs, (uint8_t *)psz, i_size ) < i_size
544         ? -1 : i_size;
545     free( psz );
546
547     return i_ret;
548 }
549
550
551 /*****************************************************************************
552  * inet_pton replacement for obsolete and/or crap operating systems
553  *****************************************************************************/
554 #ifndef HAVE_INET_PTON
555 int inet_pton(int af, const char *src, void *dst)
556 {
557 # ifdef WIN32
558     /* As we already know, Microsoft always go its own way, so even if they do
559      * provide IPv6, they don't provide the API. */
560     struct sockaddr_storage addr;
561     int len = sizeof( addr );
562
563     /* Damn it, they didn't even put LPCSTR for the firs parameter!!! */
564 #ifdef UNICODE
565     wchar_t *workaround_for_ill_designed_api =
566         malloc( MAX_PATH * sizeof(wchar_t) );
567     mbstowcs( workaround_for_ill_designed_api, src, MAX_PATH );
568     workaround_for_ill_designed_api[MAX_PATH-1] = 0;
569 #else
570     char *workaround_for_ill_designed_api = strdup( src );
571 #endif
572
573     if( !WSAStringToAddress( workaround_for_ill_designed_api, af, NULL,
574                              (LPSOCKADDR)&addr, &len ) )
575     {
576         free( workaround_for_ill_designed_api );
577         return -1;
578     }
579     free( workaround_for_ill_designed_api );
580
581     switch( af )
582     {
583         case AF_INET6:
584             memcpy( dst, &((struct sockaddr_in6 *)&addr)->sin6_addr, 16 );
585             break;
586
587         case AF_INET:
588             memcpy( dst, &((struct sockaddr_in *)&addr)->sin_addr, 4 );
589             break;
590
591         default:
592             WSASetLastError( WSAEAFNOSUPPORT );
593             return -1;
594     }
595 # else
596     /* Assume IPv6 is not supported. */
597     /* Would be safer and more simpler to use inet_aton() but it is most
598      * likely not provided either. */
599     uint32_t ipv4;
600
601     if( af != AF_INET )
602     {
603         errno = EAFNOSUPPORT;
604         return -1;
605     }
606
607     ipv4 = inet_addr( src );
608     if( ipv4 == INADDR_NONE )
609         return -1;
610
611     memcpy( dst, &ipv4, 4 );
612 # endif /* WIN32 */
613     return 0;
614 }
615 #endif /* HAVE_INET_PTON */
616
617 #ifndef HAVE_INET_NTOP
618 #ifdef WIN32
619 const char *inet_ntop(int af, const void * src,
620                                char * dst, socklen_t cnt)
621 {
622     switch( af )
623     {
624 #ifdef AF_INET6
625         case AF_INET6:
626             {
627                 struct sockaddr_in6 addr;
628                 memset(&addr, 0, sizeof(addr));
629                 addr.sin6_family = AF_INET6;
630                 addr.sin6_addr = *((struct in6_addr*)src);
631                 if( 0 == WSAAddressToStringA((LPSOCKADDR)&addr, 
632                                              sizeof(struct sockaddr_in6), 
633                                              NULL, dst, &cnt) )
634                 {
635                     dst[cnt] = '\0';
636                     return dst;
637                 }
638                 errno = WSAGetLastError();
639                 return NULL;
640
641             }
642
643 #endif
644         case AF_INET:
645             {
646                 struct sockaddr_in addr;
647                 memset(&addr, 0, sizeof(addr));
648                 addr.sin_family = AF_INET;
649                 addr.sin_addr = *((struct in_addr*)src);
650                 if( 0 == WSAAddressToStringA((LPSOCKADDR)&addr,
651                                              sizeof(struct sockaddr_in),
652                                              NULL, dst, &cnt) )
653                 {
654                     dst[cnt] = '\0';
655                     return dst;
656                 }
657                 errno = WSAGetLastError();
658                 return NULL;
659
660             }
661     }
662     errno = EAFNOSUPPORT;
663     return NULL;
664 }
665 #endif
666 #endif