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