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