]> git.sesse.net Git - vlc/blob - src/network/io.c
7d7ce7163b8f314c9c5d52f24724293084a91436
[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 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <vlc/vlc.h>
36
37 #include <stdlib.h>
38 #include <stdio.h>
39 #include <limits.h>
40
41 #include <errno.h>
42 #include <assert.h>
43
44 #ifdef HAVE_FCNTL_H
45 #   include <fcntl.h>
46 #endif
47 #ifdef HAVE_SYS_TIME_H
48 #    include <sys/time.h>
49 #endif
50 #ifdef HAVE_UNISTD_H
51 #   include <unistd.h>
52 #endif
53 #ifdef HAVE_POLL
54 #   include <poll.h>
55 #endif
56
57 #include <vlc_common.h>
58 #include <vlc_network.h>
59
60 #ifndef INADDR_ANY
61 #   define INADDR_ANY  0x00000000
62 #endif
63 #ifndef INADDR_NONE
64 #   define INADDR_NONE 0xFFFFFFFF
65 #endif
66
67 #if defined(WIN32) || defined(UNDER_CE)
68 # undef EAFNOSUPPORT
69 # define EAFNOSUPPORT WSAEAFNOSUPPORT
70 #endif
71
72 #ifdef HAVE_LINUX_DCCP_H
73 /* TODO: use glibc instead of linux-kernel headers */
74 # include <linux/dccp.h>
75 # define SOL_DCCP 269
76 #endif
77
78 extern int rootwrap_bind (int family, int socktype, int protocol,
79                           const struct sockaddr *addr, size_t alen);
80
81 int net_SetupSocket (int fd)
82 {
83 #if defined (WIN32) || defined (UNDER_CE)
84     ioctlsocket (fd, FIONBIO, &(unsigned long){ 1 });
85 #else
86     fcntl (fd, F_SETFD, FD_CLOEXEC);
87     fcntl (fd, F_SETFL, fcntl (fd, F_GETFL, 0) | O_NONBLOCK);
88 #endif
89
90     setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof (int));
91     return 0;
92 }
93
94
95 int net_Socket (vlc_object_t *p_this, int family, int socktype,
96                 int protocol)
97 {
98     int fd = socket (family, socktype, protocol);
99     if (fd == -1)
100     {
101         if (net_errno != EAFNOSUPPORT)
102             msg_Err (p_this, "cannot create socket: %m");
103         return -1;
104     }
105
106     net_SetupSocket (fd);
107
108 #ifdef IPV6_V6ONLY
109     /*
110      * Accepts only IPv6 connections on IPv6 sockets.
111      * If possible, we should open two sockets, but it is not always possible.
112      */
113     if (family == AF_INET6)
114         setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 1 }, sizeof (int));
115 #endif
116
117 #if defined (WIN32) || defined (UNDER_CE)
118 # ifndef IPV6_PROTECTION_LEVEL
119 #  warning Please update your C library headers.
120 #  define IPV6_PROTECTION_LEVEL 23
121 #  define PROTECTION_LEVEL_UNRESTRICTED 10
122 # endif
123     if (family == AF_INET6)
124         setsockopt (fd, IPPROTO_IPV6, IPV6_PROTECTION_LEVEL,
125                     &(int){ PROTECTION_LEVEL_UNRESTRICTED }, sizeof (int));
126 #endif
127
128 #ifdef DCCP_SOCKOPT_SERVICE
129     char *dccps = var_CreateGetNonEmptyString (p_this, "dccp-service");
130     if (dccps != NULL)
131     {
132         setsockopt (fd, SOL_DCCP, DCCP_SOCKOPT_SERVICE, dccps,
133                     (strlen (dccps) + 3) & ~3);
134         free (dccps);
135     }
136 #endif
137
138     return fd;
139 }
140
141
142 int *net_Listen (vlc_object_t *p_this, const char *psz_host,
143                  int i_port, int protocol)
144 {
145     struct addrinfo hints, *res;
146     int socktype = SOCK_DGRAM;
147
148     switch( protocol )
149     {
150         case IPPROTO_TCP:
151             socktype = SOCK_STREAM;
152             break;
153         case 33: /* DCCP */
154 #ifdef __linux__
155 # ifndef SOCK_DCCP
156 #  define SOCK_DCCP 6
157 # endif
158             socktype = SOCK_DCCP;
159 #endif
160             break;
161     }
162
163     memset (&hints, 0, sizeof( hints ));
164     /* Since we use port numbers rather than service names, the socket type
165      * does not really matter. */
166     hints.ai_socktype = SOCK_DGRAM;
167     hints.ai_flags = AI_PASSIVE;
168
169     msg_Dbg (p_this, "net: listening to %s port %d", psz_host, i_port);
170
171     int i_val = vlc_getaddrinfo (p_this, psz_host, i_port, &hints, &res);
172     if (i_val)
173     {
174         msg_Err (p_this, "Cannot resolve %s port %d : %s", psz_host, i_port,
175                  vlc_gai_strerror (i_val));
176         return NULL;
177     }
178
179     int *sockv = NULL;
180     unsigned sockc = 0;
181
182     for (struct addrinfo *ptr = res; ptr != NULL; ptr = ptr->ai_next)
183     {
184         int fd = net_Socket (p_this, ptr->ai_family, socktype, protocol);
185         if (fd == -1)
186         {
187             msg_Dbg (p_this, "socket error: %m");
188             continue;
189         }
190
191         /* Bind the socket */
192 #if defined (WIN32) || defined (UNDER_CE)
193         /*
194          * Under Win32 and for multicasting, we bind to INADDR_ANY.
195          * This is of course a severe bug, since the socket would logically
196          * receive unicast traffic, and multicast traffic of groups subscribed
197          * to via other sockets.
198          */
199         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen)
200          && (sizeof (struct sockaddr_storage) >= ptr->ai_addrlen))
201         {
202             // This works for IPv4 too - don't worry!
203             struct sockaddr_in6 dumb =
204             {
205                 .sin6_family = ptr->ai_addr->sa_family,
206                 .sin6_port =  ((struct sockaddr_in *)(ptr->ai_addr))->sin_port
207             };
208
209             bind (fd, (struct sockaddr *)&dumb, ptr->ai_addrlen);
210         }
211         else
212 #endif
213         if (bind (fd, ptr->ai_addr, ptr->ai_addrlen))
214         {
215             net_Close (fd);
216 #if !defined(WIN32) && !defined(UNDER_CE)
217             fd = rootwrap_bind (ptr->ai_family, ptr->ai_socktype,
218                                 protocol ?: ptr->ai_protocol, ptr->ai_addr,
219                                 ptr->ai_addrlen);
220             if (fd != -1)
221             {
222                 msg_Dbg (p_this, "got socket %d from rootwrap", fd);
223             }
224             else
225 #endif
226             {
227                 msg_Err (p_this, "socket bind error (%m)");
228                 continue;
229             }
230         }
231
232         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen))
233         {
234             if (net_Subscribe (p_this, fd, ptr->ai_addr, ptr->ai_addrlen))
235             {
236                 net_Close (fd);
237                 continue;
238             }
239         }
240
241         /* Listen */
242         switch (socktype)
243         {
244             case SOCK_STREAM:
245             case SOCK_RDM:
246             case SOCK_SEQPACKET:
247 #ifdef SOCK_DCCP
248             case SOCK_DCCP:
249 #endif
250                 if (listen (fd, INT_MAX))
251                 {
252                     msg_Err (p_this, "socket listen error (%m)");
253                     net_Close (fd);
254                     continue;
255                 }
256         }
257
258         int *nsockv = (int *)realloc (sockv, (sockc + 2) * sizeof (int));
259         if (nsockv != NULL)
260         {
261             nsockv[sockc++] = fd;
262             sockv = nsockv;
263         }
264         else
265             net_Close (fd);
266     }
267
268     vlc_freeaddrinfo (res);
269
270     if (sockv != NULL)
271         sockv[sockc] = -1;
272
273     return sockv;
274 }
275
276
277 /*****************************************************************************
278  * __net_Read:
279  *****************************************************************************
280  * Reads from a network socket.
281  * If waitall is true, then we repeat until we have read the right amount of
282  * data; in that case, a short count means EOF has been reached or the VLC
283  * object has been signaled.
284  *****************************************************************************/
285 ssize_t
286 __net_Read (vlc_object_t *restrict p_this, int fd, const v_socket_t *vs,
287             uint8_t *restrict p_buf, size_t i_buflen, vlc_bool_t waitall)
288 {
289     size_t i_total = 0;
290     struct pollfd ufd[2] = {
291         { .fd = fd,                           .events = POLLIN },
292         { .fd = vlc_object_waitpipe (p_this), .events = POLLIN },
293     };
294
295     if (ufd[1].fd == -1)
296         return -1; /* vlc_object_waitpipe() sets errno */
297
298     while (i_buflen > 0)
299     {
300         ufd[0].revents = ufd[1].revents = 0;
301
302         if (poll (ufd, sizeof (ufd) / sizeof (ufd[0]), -1) < 0)
303         {
304             if (errno != EINTR)
305                 goto error;
306             continue;
307         }
308
309 #ifndef POLLRDHUP /* This is nice but non-portable */
310 # define POLLRDHUP 0
311 #endif
312         if (i_total > 0)
313         {
314             /* Errors (-1) and EOF (0) will be returned on next call,
315              * otherwise we'd "hide" the error from the caller, which is a
316              * bad idea™. */
317             if (ufd[0].revents & (POLLERR|POLLNVAL|POLLRDHUP))
318                 break;
319             if (ufd[1].revents)
320                 break;
321         }
322         else
323         {
324             if (ufd[1].revents)
325             {
326                 assert (p_this->b_die);
327                 msg_Dbg (p_this, "socket %d polling interrupted", fd);
328 #if defined(WIN32) || defined(UNDER_CE)
329                 WSASetLastError (WSAEINTR);
330 #else
331                 errno = EINTR;
332 #endif
333                 goto error;
334             }
335         }
336
337         assert (ufd[0].revents);
338
339         ssize_t n;
340         if (vs != NULL)
341         {
342             n = vs->pf_recv (vs->p_sys, p_buf, i_buflen);
343         }
344         else
345         {
346 #ifdef WIN32
347             n = recv (fd, p_buf, i_buflen, 0);
348 #else
349             n = read (fd, p_buf, i_buflen);
350 #endif
351         }
352
353         if (n == -1)
354         {
355 #if defined(WIN32) || defined(UNDER_CE)
356             switch (WSAGetLastError ())
357             {
358                 case WSAEWOULDBLOCK:
359                 /* only happens with vs != NULL (TLS) - not really an error */
360                     continue;
361
362                 case WSAEMSGSIZE:
363                 /* For UDP only */
364                 /* On Win32, recv() fails if the datagram doesn't fit inside
365                  * the passed buffer, even though the buffer will be filled
366                  * with the first part of the datagram. */
367                     msg_Err (p_this, "Receive error: "
368                                      "Increase the mtu size (--mtu option)");
369                     n = i_buflen;
370                     break;
371
372                 default:
373                     goto error;
374             }
375 #else
376             /* spurious wake-up or TLS did not yield any actual data */
377             if (errno == EAGAIN)
378                 continue;
379             goto error;
380 #endif
381         }
382
383         if (n == 0)
384             /* For streams, this means end of file, and there will not be any
385              * further data ever on the stream. For datagram sockets, this
386              * means empty datagram, and there could be more data coming.
387              * However, it makes no sense to set <waitall> with datagrams in the
388              * first place.
389              */
390             break; // EOF
391
392         i_total += n;
393         p_buf += n;
394         i_buflen -= n;
395
396         if (!waitall)
397             break;
398     }
399
400     return i_total;
401
402 error:
403     msg_Err (p_this, "Read error: %m");
404     return -1;
405 }
406
407
408 /* Write exact amount requested */
409 ssize_t __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
410                      const uint8_t *p_data, size_t i_data )
411 {
412     size_t i_total = 0;
413     struct pollfd ufd[2] = {
414         { .fd = fd,                           .events = POLLOUT },
415         { .fd = vlc_object_waitpipe (p_this), .events = POLLIN  },
416     };
417
418     if (ufd[1].fd == -1)
419         return -1;
420
421     while( i_data > 0 )
422     {
423         ssize_t val;
424
425         ufd[0].revents = ufd[1].revents = 0;
426
427         if (poll (ufd, 1, -1) == -1)
428         {
429             if (errno != EINTR)
430             {
431                 msg_Err (p_this, "Write error: %m");
432                 goto error;
433             }
434             continue;
435         }
436
437         if (i_total > 0)
438         {
439             /* Errors will be dequeued separately, upon next call. */
440             if (ufd[0].revents & (POLLERR|POLLNVAL|POLLHUP))
441                 break;
442             if (ufd[1].revents)
443                 break;
444         }
445         else
446         {
447             if (ufd[1].revents)
448             {
449                 assert (p_this->b_die);
450                 errno = EINTR;
451                 goto error;
452             }
453         }
454
455         if (p_vs != NULL)
456             val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
457         else
458 #ifdef WIN32
459             val = send (fd, p_data, i_data, 0);
460 #else
461             val = write (fd, p_data, i_data);
462 #endif
463
464         if (val == -1)
465         {
466             msg_Err (p_this, "Write error: %m");
467             break;
468         }
469
470         p_data += val;
471         i_data -= val;
472         i_total += val;
473     }
474
475     if ((i_total > 0) || (i_data == 0))
476         return i_total;
477
478 error:
479     return -1;
480 }
481
482 char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
483 {
484     char *psz_line = NULL, *ptr = NULL;
485     size_t  i_line = 0, i_max = 0;
486
487
488     for( ;; )
489     {
490         if( i_line == i_max )
491         {
492             i_max += 1024;
493             psz_line = realloc( psz_line, i_max );
494             ptr = psz_line + i_line;
495         }
496
497         if( net_Read( p_this, fd, p_vs, (uint8_t *)ptr, 1, VLC_TRUE ) != 1 )
498         {
499             if( i_line == 0 )
500             {
501                 free( psz_line );
502                 return NULL;
503             }
504             break;
505         }
506
507         if ( *ptr == '\n' )
508             break;
509
510         i_line++;
511         ptr++;
512     }
513
514     *ptr-- = '\0';
515
516     if( ( ptr >= psz_line ) && ( *ptr == '\r' ) )
517         *ptr = '\0';
518
519     return psz_line;
520 }
521
522 ssize_t net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
523                     const char *psz_fmt, ... )
524 {
525     int i_ret;
526     va_list args;
527     va_start( args, psz_fmt );
528     i_ret = net_vaPrintf( p_this, fd, p_vs, psz_fmt, args );
529     va_end( args );
530
531     return i_ret;
532 }
533
534 ssize_t __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
535                         const char *psz_fmt, va_list args )
536 {
537     char    *psz;
538     int     i_size, i_ret;
539
540     i_size = vasprintf( &psz, psz_fmt, args );
541     i_ret = __net_Write( p_this, fd, p_vs, (uint8_t *)psz, i_size ) < i_size
542         ? -1 : i_size;
543     free( psz );
544
545     return i_ret;
546 }
547
548
549 /*****************************************************************************
550  * inet_pton replacement for obsolete and/or crap operating systems
551  *****************************************************************************/
552 #ifndef HAVE_INET_PTON
553 int inet_pton(int af, const char *src, void *dst)
554 {
555 # ifdef WIN32
556     /* As we already know, Microsoft always go its own way, so even if they do
557      * provide IPv6, they don't provide the API. */
558     struct sockaddr_storage addr;
559     int len = sizeof( addr );
560
561     /* Damn it, they didn't even put LPCSTR for the firs parameter!!! */
562 #ifdef UNICODE
563     wchar_t *workaround_for_ill_designed_api =
564         malloc( MAX_PATH * sizeof(wchar_t) );
565     mbstowcs( workaround_for_ill_designed_api, src, MAX_PATH );
566     workaround_for_ill_designed_api[MAX_PATH-1] = 0;
567 #else
568     char *workaround_for_ill_designed_api = strdup( src );
569 #endif
570
571     if( !WSAStringToAddress( workaround_for_ill_designed_api, af, NULL,
572                              (LPSOCKADDR)&addr, &len ) )
573     {
574         free( workaround_for_ill_designed_api );
575         return -1;
576     }
577     free( workaround_for_ill_designed_api );
578
579     switch( af )
580     {
581         case AF_INET6:
582             memcpy( dst, &((struct sockaddr_in6 *)&addr)->sin6_addr, 16 );
583             break;
584
585         case AF_INET:
586             memcpy( dst, &((struct sockaddr_in *)&addr)->sin_addr, 4 );
587             break;
588
589         default:
590             WSASetLastError( WSAEAFNOSUPPORT );
591             return -1;
592     }
593 # else
594     /* Assume IPv6 is not supported. */
595     /* Would be safer and more simpler to use inet_aton() but it is most
596      * likely not provided either. */
597     uint32_t ipv4;
598
599     if( af != AF_INET )
600     {
601         errno = EAFNOSUPPORT;
602         return -1;
603     }
604
605     ipv4 = inet_addr( src );
606     if( ipv4 == INADDR_NONE )
607         return -1;
608
609     memcpy( dst, &ipv4, 4 );
610 # endif /* WIN32 */
611     return 0;
612 }
613 #endif /* HAVE_INET_PTON */
614
615 #ifndef HAVE_INET_NTOP
616 #ifdef WIN32
617 const char *inet_ntop(int af, const void * src,
618                                char * dst, socklen_t cnt)
619 {
620     switch( af )
621     {
622 #ifdef AF_INET6
623         case AF_INET6:
624             {
625                 struct sockaddr_in6 addr;
626                 memset(&addr, 0, sizeof(addr));
627                 addr.sin6_family = AF_INET6;
628                 addr.sin6_addr = *((struct in6_addr*)src);
629                 if( 0 == WSAAddressToStringA((LPSOCKADDR)&addr,
630                                              sizeof(struct sockaddr_in6),
631                                              NULL, dst, &cnt) )
632                 {
633                     dst[cnt] = '\0';
634                     return dst;
635                 }
636                 errno = WSAGetLastError();
637                 return NULL;
638
639             }
640
641 #endif
642         case AF_INET:
643             {
644                 struct sockaddr_in addr;
645                 memset(&addr, 0, sizeof(addr));
646                 addr.sin_family = AF_INET;
647                 addr.sin_addr = *((struct in_addr*)src);
648                 if( 0 == WSAAddressToStringA((LPSOCKADDR)&addr,
649                                              sizeof(struct sockaddr_in),
650                                              NULL, dst, &cnt) )
651                 {
652                     dst[cnt] = '\0';
653                     return dst;
654                 }
655                 errno = WSAGetLastError();
656                 return NULL;
657
658             }
659     }
660     errno = EAFNOSUPPORT;
661     return NULL;
662 }
663 #endif
664 #endif