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
8 * Authors: Laurent Aimar <fenrir@videolan.org>
9 * Rémi Denis-Courmont <rem # videolan.org>
10 * Christophe Mutricy <xtophe at videolan dot org>
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.
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.
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 *****************************************************************************/
27 /*****************************************************************************
29 *****************************************************************************/
43 #ifdef HAVE_SYS_TIME_H
44 # include <sys/time.h>
53 #include <vlc_network.h>
56 # define INADDR_ANY 0x00000000
59 # define INADDR_NONE 0xFFFFFFFF
62 #if defined(WIN32) || defined(UNDER_CE)
64 # define EAFNOSUPPORT WSAEAFNOSUPPORT
67 extern int rootwrap_bind (int family, int socktype, int protocol,
68 const struct sockaddr *addr, size_t alen);
70 int net_SetupSocket (int fd)
72 #if defined (WIN32) || defined (UNDER_CE)
73 ioctlsocket (fd, FIONBIO, &(unsigned long){ 1 });
75 fcntl (fd, F_SETFD, FD_CLOEXEC);
76 fcntl (fd, F_SETFL, fcntl (fd, F_GETFL, 0) | O_NONBLOCK);
79 setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof (int));
84 int net_Socket (vlc_object_t *p_this, int family, int socktype,
87 int fd = socket (family, socktype, protocol);
90 if (net_errno != EAFNOSUPPORT)
91 msg_Err (p_this, "cannot create socket: %s",
92 net_strerror (net_errno));
100 * Accepts only IPv6 connections on IPv6 sockets.
101 * If possible, we should open two sockets, but it is not always possible.
103 if (family == AF_INET6)
104 setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 1 }, sizeof (int));
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
113 if (family == AF_INET6)
114 setsockopt (fd, IPPROTO_IPV6, IPV6_PROTECTION_LEVEL,
115 &(int){ PROTECTION_LEVEL_UNRESTRICTED }, sizeof (int));
122 int *net_Listen (vlc_object_t *p_this, const char *psz_host,
123 int i_port, int family, int socktype, int protocol)
125 struct addrinfo hints, *res;
127 memset (&hints, 0, sizeof( hints ));
128 hints.ai_family = family;
129 hints.ai_socktype = socktype;
130 hints.ai_flags = AI_PASSIVE;
132 msg_Dbg (p_this, "net: listening to %s port %d", psz_host, i_port);
134 int i_val = vlc_getaddrinfo (p_this, psz_host, i_port, &hints, &res);
137 msg_Err (p_this, "Cannot resolve %s port %d : %s", psz_host, i_port,
138 vlc_gai_strerror (i_val));
145 for (struct addrinfo *ptr = res; ptr != NULL; ptr = ptr->ai_next)
147 int fd = net_Socket (p_this, ptr->ai_family, ptr->ai_socktype,
148 protocol ?: ptr->ai_protocol);
151 msg_Dbg (p_this, "socket error: %s", net_strerror (net_errno));
155 /* Bind the socket */
156 #if defined (WIN32) || defined (UNDER_CE)
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.
163 if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen)
164 && (sizeof (struct sockaddr_storage) >= ptr->ai_addrlen))
166 // This works for IPv4 too - don't worry!
167 struct sockaddr_in6 dumb =
169 .sin6_family = ptr->ai_addr->sa_family,
170 .sin6_port = ((struct sockaddr_in *)(ptr->ai_addr))->sin_port
173 bind (fd, (struct sockaddr *)&dumb, ptr->ai_addrlen);
177 if (bind (fd, ptr->ai_addr, ptr->ai_addrlen))
179 int saved_errno = net_errno;
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,
188 msg_Dbg (p_this, "got socket %d from rootwrap", fd);
193 msg_Err (p_this, "socket bind error (%s)",
194 net_strerror( saved_errno ) );
199 if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen))
201 if (net_Subscribe (p_this, fd, ptr->ai_addr, ptr->ai_addrlen))
209 switch (ptr->ai_socktype)
217 if (listen (fd, INT_MAX))
219 msg_Err (p_this, "socket listen error (%s)",
220 net_strerror (net_errno));
226 int *nsockv = (int *)realloc (sockv, (sockc + 2) * sizeof (int));
229 nsockv[sockc++] = fd;
236 vlc_freeaddrinfo (res);
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)
254 if( ( p_this->b_die ) || ( p_this->p_libvlc->b_die ) )
256 #if defined(WIN32) || defined(UNDER_CE)
257 WSASetLastError (WSAEINTR);
264 struct pollfd ufd[fdc];
266 for (unsigned i = 0; i < fdc; i++)
269 ufd[i].events = POLLIN;
273 switch (poll (ufd, fdc, 500))
282 for (unsigned i = 0;; i++)
284 assert (i < fdc); /* no events found = bug ! */
286 if (ufd[i].revents == 0)
289 #ifndef POLLRDHUP /* This is nice but non-portable */
294 // Errors (-1) and EOF (0) will be returned on next run
295 if (ufd[i].revents & (POLLERR|POLLNVAL|POLLRDHUP))
300 if (ufd[i].revents & POLLRDHUP)
301 return 0; // EOF, read() would yield 0
314 n = (*vsv)->pf_recv ((*vsv)->p_sys, p_buf, i_buflen);
319 n = recv (*fdv, p_buf, i_buflen, 0);
321 n = read (*fdv, p_buf, i_buflen);
327 #if defined(WIN32) || defined(UNDER_CE)
328 switch (WSAGetLastError ())
331 /* only happens with vs != NULL (SSL) - not really an error */
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)");
348 /* spurious wake-up or TLS did not yield any actual data */
359 if ((n == 0) || !waitall)
365 msg_Err (p_this, "Read error: %s", net_strerror (net_errno));
366 return i_total ? (ssize_t)i_total : -1;
370 /*****************************************************************************
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 )
381 return net_ReadInner( p_this, 1, &(int){ fd },
382 &(const v_socket_t *){ p_vs },
387 /*****************************************************************************
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 )
396 const v_socket_t *vsv[nfd];
397 memset( vsv, 0, sizeof (vsv) );
399 return net_ReadInner( p_this, nfd, fds, vsv,
400 buf, len, VLC_FALSE );
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 )
415 struct pollfd ufd[1];
416 memset (ufd, 0, sizeof (ufd));
418 ufd[0].events = POLLOUT;
420 int val = poll (ufd, 1, 500);
424 msg_Err (p_this, "Write error: %s", net_strerror (net_errno));
431 if ((ufd[0].revents & (POLLERR|POLLNVAL|POLLHUP)) && (i_total > 0))
432 return i_total; // error will be dequeued separately on next call
435 val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
438 val = send (fd, p_data, i_data, 0);
440 val = write (fd, p_data, i_data);
445 msg_Err (p_this, "Write error: %s", net_strerror (net_errno));
455 if ((i_total > 0) || (i_data == 0))
461 char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
463 char *psz_line = NULL, *ptr = NULL;
464 size_t i_line = 0, i_max = 0;
469 if( i_line == i_max )
472 psz_line = realloc( psz_line, i_max );
473 ptr = psz_line + i_line;
476 if( net_Read( p_this, fd, p_vs, (uint8_t *)ptr, 1, VLC_TRUE ) != 1 )
495 if( ( ptr >= psz_line ) && ( *ptr == '\r' ) )
501 ssize_t net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
502 const char *psz_fmt, ... )
506 va_start( args, psz_fmt );
507 i_ret = net_vaPrintf( p_this, fd, p_vs, psz_fmt, args );
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 )
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
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)
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 );
540 /* Damn it, they didn't even put LPCSTR for the firs parameter!!! */
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;
547 char *workaround_for_ill_designed_api = strdup( src );
550 if( !WSAStringToAddress( workaround_for_ill_designed_api, af, NULL,
551 (LPSOCKADDR)&addr, &len ) )
553 free( workaround_for_ill_designed_api );
556 free( workaround_for_ill_designed_api );
561 memcpy( dst, &((struct sockaddr_in6 *)&addr)->sin6_addr, 16 );
565 memcpy( dst, &((struct sockaddr_in *)&addr)->sin_addr, 4 );
569 WSASetLastError( WSAEAFNOSUPPORT );
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. */
580 errno = EAFNOSUPPORT;
584 ipv4 = inet_addr( src );
585 if( ipv4 == INADDR_NONE )
588 memcpy( dst, &ipv4, 4 );
592 #endif /* HAVE_INET_PTON */
594 #ifndef HAVE_INET_NTOP
596 const char *inet_ntop(int af, const void * src,
597 char * dst, socklen_t cnt)
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),
615 errno = WSAGetLastError();
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),
634 errno = WSAGetLastError();
639 errno = EAFNOSUPPORT;