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