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