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