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