]> git.sesse.net Git - vlc/blob - src/network/io.c
win32 replacement for inet_ntop()
[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_Socket (vlc_object_t *p_this, int family, int socktype,
71                 int protocol)
72 {
73     int fd = socket (family, socktype, protocol);
74     if (fd == -1)
75     {
76         if (net_errno != EAFNOSUPPORT)
77             msg_Err (p_this, "cannot create socket: %s",
78                      net_strerror (net_errno));
79         return -1;
80     }
81
82 #if defined (WIN32) || defined (UNDER_CE)
83     ioctlsocket (fd, FIONBIO, &(unsigned long){ 1 });
84 #else
85     fcntl (fd, F_SETFD, FD_CLOEXEC);
86     fcntl (fd, F_SETFL, fcntl (fd, F_GETFL, 0) | O_NONBLOCK);
87 #endif
88
89     setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof (int));
90
91 #ifdef IPV6_V6ONLY
92     /*
93      * Accepts only IPv6 connections on IPv6 sockets
94      * (and open an IPv4 socket later as well if needed).
95      * Only Linux and FreeBSD can map IPv4 connections on IPv6 sockets,
96      * so this allows for more uniform handling across platforms. Besides,
97      * it makes sure that IPv4 addresses will be printed as w.x.y.z rather
98      * than ::ffff:w.x.y.z
99      */
100     if (family == AF_INET6)
101         setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 1 }, sizeof (int));
102 #endif
103
104 #if defined (WIN32) || defined (UNDER_CE)
105 # ifndef IPV6_PROTECTION_LEVEL
106 #  warning Please update your C library headers.
107 #  define IPV6_PROTECTION_LEVEL 23
108 #  define PROTECTION_LEVEL_UNRESTRICTED 10
109 # endif
110     if (family == AF_INET6)
111         setsockopt (fd, IPPROTO_IPV6, IPV6_PROTECTION_LEVEL,
112                     &(int){ PROTECTION_LEVEL_UNRESTRICTED }, sizeof (int));
113 #endif
114
115     return fd;
116 }
117
118
119 int *net_Listen (vlc_object_t *p_this, const char *psz_host,
120                  int i_port, int family, int socktype, int protocol)
121 {
122     struct addrinfo hints, *res;
123
124     memset (&hints, 0, sizeof( hints ));
125     hints.ai_family = family;
126     hints.ai_socktype = socktype;
127     hints.ai_flags = AI_PASSIVE;
128
129     msg_Dbg (p_this, "net: listening to %s port %d", psz_host, i_port);
130
131     int i_val = vlc_getaddrinfo (p_this, psz_host, i_port, &hints, &res);
132     if (i_val)
133     {
134         msg_Err (p_this, "Cannot resolve %s port %d : %s", psz_host, i_port,
135                  vlc_gai_strerror (i_val));
136         return NULL;
137     }
138
139     int *sockv = NULL;
140     unsigned sockc = 0;
141
142     for (struct addrinfo *ptr = res; ptr != NULL; ptr = ptr->ai_next)
143     {
144         int fd = net_Socket (p_this, ptr->ai_family, ptr->ai_socktype,
145                              protocol ?: ptr->ai_protocol);
146         if (fd == -1)
147         {
148             msg_Dbg (p_this, "socket error: %s", net_strerror (net_errno));
149             continue;
150         }
151
152         /* Bind the socket */
153 #if defined (WIN32) || defined (UNDER_CE)
154         /*
155          * Under Win32 and for multicasting, we bind to INADDR_ANY.
156          * This is of course a severe bug, since the socket would logically
157          * receive unicast traffic, and multicast traffic of groups subscribed
158          * to via other sockets.
159          */
160         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen)
161          && (sizeof (struct sockaddr_storage) >= ptr->ai_addrlen))
162         {
163             // This works for IPv4 too - don't worry!
164             struct sockaddr_in6 dumb =
165             {
166                 .sin6_family = ptr->ai_addr->sa_family,
167                 .sin6_port =  ((struct sockaddr_in *)(ptr->ai_addr))->sin_port
168             };
169
170             bind (fd, (struct sockaddr *)&dumb, ptr->ai_addrlen);
171         }
172         else
173 #endif
174         if (bind (fd, ptr->ai_addr, ptr->ai_addrlen))
175         {
176             int saved_errno = net_errno;
177
178             net_Close (fd);
179 #if !defined(WIN32) && !defined(UNDER_CE)
180             fd = rootwrap_bind (ptr->ai_family, ptr->ai_socktype,
181                                 protocol ?: ptr->ai_protocol, ptr->ai_addr,
182                                 ptr->ai_addrlen);
183             if (fd != -1)
184             {
185                 msg_Dbg (p_this, "got socket %d from rootwrap", fd);
186             }
187             else
188 #endif
189             {
190                 msg_Err (p_this, "socket bind error (%s)",
191                          net_strerror( saved_errno ) );
192                 continue;
193             }
194         }
195
196         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen))
197         {
198             if (net_Subscribe (p_this, fd, ptr->ai_addr, ptr->ai_addrlen))
199             {
200                 net_Close (fd);
201                 continue;
202             }
203         }
204
205         /* Listen */
206         switch (ptr->ai_socktype)
207         {
208             case SOCK_STREAM:
209             case SOCK_RDM:
210             case SOCK_SEQPACKET:
211                 if (listen (fd, INT_MAX))
212                 {
213                     msg_Err (p_this, "socket listen error (%s)",
214                             net_strerror (net_errno));
215                     net_Close (fd);
216                     continue;
217                 }
218         }
219
220         int *nsockv = (int *)realloc (sockv, (sockc + 2) * sizeof (int));
221         if (nsockv != NULL)
222         {
223             nsockv[sockc++] = fd;
224             sockv = nsockv;
225         }
226         else
227             net_Close (fd);
228     }
229
230     vlc_freeaddrinfo (res);
231
232     if (sockv != NULL)
233         sockv[sockc] = -1;
234
235     return sockv;
236 }
237
238
239 int net_ListenSingle (vlc_object_t *obj, const char *host, int port,
240                       int family, int socktype, int protocol)
241 {
242     int *fdv = net_Listen (obj, host, port, family, socktype, protocol);
243     if (fdv == NULL)
244         return -1;
245
246     for (unsigned i = 1; fdv[i] != -1; i++)
247     {
248         msg_Warn (obj, "Multiple sockets opened. Dropping extra ones!");
249         net_Close (fdv[i]);
250     }
251
252     int fd = fdv[0];
253     assert (fd != -1);
254
255     free (fdv);
256     return fd;
257 }
258
259
260
261 /*****************************************************************************
262  * __net_Close:
263  *****************************************************************************
264  * Close a network handle
265  *****************************************************************************/
266 void net_Close (int fd)
267 {
268 #ifdef UNDER_CE
269     CloseHandle ((HANDLE)fd);
270 #elif defined (WIN32)
271     closesocket (fd);
272 #else
273     (void)close (fd);
274 #endif
275 }
276
277
278 static ssize_t
279 net_ReadInner( vlc_object_t *restrict p_this, unsigned fdc, const int *fdv,
280                const v_socket_t *const *restrict vsv,
281                uint8_t *restrict p_buf, size_t i_buflen,
282                int wait_ms, vlc_bool_t waitall )
283 {
284     size_t i_total = 0;
285
286     while (i_buflen > 0)
287     {
288         unsigned i;
289         ssize_t n;
290         struct pollfd ufd[fdc];
291
292         int delay_ms = 500;
293         if ((wait_ms != -1) && (wait_ms < 500))
294             delay_ms = wait_ms;
295
296         if (p_this->b_die)
297         {
298             errno = EINTR;
299             goto error;
300         }
301
302         memset (ufd, 0, sizeof (ufd));
303
304         for( i = 0; i < fdc; i++ )
305         {
306             ufd[i].fd = fdv[i];
307             ufd[i].events = POLLIN;
308         }
309
310         n = poll( ufd, fdc, delay_ms );
311         if( n == -1 )
312             goto error;
313
314         assert ((unsigned)n <= fdc);
315
316         if (n == 0) // timeout
317             continue;
318
319         for (i = 0;; i++)
320         {
321             if ((i_total > 0) && (ufd[i].revents & POLLERR))
322                 return i_total; // error will be dequeued on next run
323
324             if ((ufd[i].revents & POLLIN) == 0)
325                 continue;
326
327             fdc = 1;
328             fdv += i;
329             vsv += i;
330             break;
331         }
332
333         if( (*vsv) != NULL )
334         {
335             n = (*vsv)->pf_recv( (*vsv)->p_sys, p_buf, i_buflen );
336         }
337         else
338         {
339 #if defined(WIN32) || defined(UNDER_CE)
340             n = recv( *fdv, p_buf, i_buflen, 0 );
341 #else
342             n = read( *fdv, p_buf, i_buflen );
343 #endif
344         }
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                     i_total += i_buflen;
363                     return i_total;
364             }
365 #else
366             if( errno == EAGAIN ) /* spurious wake-up (sucks if fdc > 1) */
367                 continue;
368 #endif
369             goto error;
370         }
371
372         if (n == 0) // EOF
373             return i_total;
374
375         i_total += n;
376         p_buf += n;
377         i_buflen -= n;
378
379         if (!waitall)
380             return i_total;
381
382         if (wait_ms != -1)
383         {
384             wait_ms -= delay_ms;
385             if (wait_ms == 0)
386                 return i_total; // time's up!
387         }
388     }
389     return i_total;
390
391 error:
392     if( errno != EINTR )
393         msg_Err( p_this, "Read error: %s", net_strerror (net_errno) );
394     return i_total ? (ssize_t)i_total : -1;
395 }
396
397
398 /*****************************************************************************
399  * __net_Read:
400  *****************************************************************************
401  * Read from a network socket
402  * If b_retry is true, then we repeat until we have read the right amount of
403  * data
404  *****************************************************************************/
405 int __net_Read( vlc_object_t *restrict p_this, int fd,
406                 const v_socket_t *restrict p_vs,
407                 uint8_t *restrict p_data, int i_data, vlc_bool_t b_retry )
408 {
409     return net_ReadInner( p_this, 1, &(int){ fd },
410                           &(const v_socket_t *){ p_vs },
411                           p_data, i_data, -1, b_retry );
412 }
413
414
415 /*****************************************************************************
416  * __net_ReadNonBlock:
417  *****************************************************************************
418  * Read from a network socket, non blocking mode (with timeout)
419  *****************************************************************************/
420 int __net_ReadNonBlock( vlc_object_t *restrict p_this, int fd,
421                         const v_socket_t *restrict p_vs,
422                         uint8_t *restrict p_data, int i_data, mtime_t i_wait)
423 {
424     return net_ReadInner (p_this, 1, &(int){ fd },
425                           &(const v_socket_t *){ p_vs },
426                           p_data, i_data, i_wait / 1000, VLC_FALSE);
427 }
428
429
430 /*****************************************************************************
431  * __net_Select:
432  *****************************************************************************
433  * Read from several sockets (with timeout). Takes data from the first socket
434  * that has some.
435  *****************************************************************************/
436 int __net_Select( vlc_object_t *restrict p_this, const int *restrict pi_fd,
437                   int i_fd, uint8_t *restrict p_data, int i_data,
438                   mtime_t i_wait )
439 {
440     const v_socket_t *vsv[i_fd];
441     memset( vsv, 0, sizeof (vsv) );
442
443     return net_ReadInner( p_this, i_fd, pi_fd, vsv, p_data, i_data,
444                           i_wait / 1000, VLC_FALSE );
445 }
446
447
448 /* Write exact amount requested */
449 int __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
450                  const uint8_t *p_data, int i_data )
451 {
452     size_t i_total = 0;
453
454     while( i_data > 0 )
455     {
456         if( p_this->b_die )
457             return i_total;
458
459 #ifdef HAVE_POLL
460         struct pollfd ufd[1];
461         memset (ufd, 0, sizeof (ufd));
462         ufd[0].fd = fd;
463         ufd[0].events = POLLOUT;
464
465         int val = poll (ufd, 1, 500);
466         if ((val > 0) && (ufd[0].revents & POLLERR) && (i_total > 0))
467             return i_total; // error will be dequeued separately on next call
468 #else
469         fd_set set;
470         FD_ZERO (&set);
471
472 #if !defined(WIN32) && !defined(UNDER_CE)
473         if (fd >= FD_SETSIZE)
474         {
475             /* We don't want to overflow select() fd_set */
476             msg_Err (p_this, "select set overflow");
477             return -1;
478         }
479 #endif
480         FD_SET (fd, &set);
481
482         int val = select (fd + 1, NULL, &set, NULL,
483                           &(struct timeval){ 0, 500000 });
484 #endif
485         switch (val)
486         {
487             case -1:
488                 if (errno != EINTR)
489                 {
490                     msg_Err (p_this, "Write error: %s",
491                              net_strerror (net_errno));
492                     return i_total ? (int)i_total : -1;
493                 }
494
495             case 0:
496                 continue;
497         }
498
499         if (p_vs != NULL)
500             val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
501         else
502 #if defined(WIN32) || defined(UNDER_CE)
503             val = send (fd, p_data, i_data, 0);
504 #else
505             val = write (fd, p_data, i_data);
506 #endif
507
508         if (val == -1)
509             return i_total ? (int)i_total : -1;
510         if (val == 0)
511             return i_total;
512
513         p_data += val;
514         i_data -= val;
515         i_total += val;
516     }
517
518     return i_total;
519 }
520
521 char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
522 {
523     char *psz_line = NULL, *ptr = NULL;
524     size_t  i_line = 0, i_max = 0;
525
526
527     for( ;; )
528     {
529         if( i_line == i_max )
530         {
531             i_max += 1024;
532             psz_line = realloc( psz_line, i_max );
533             ptr = psz_line + i_line;
534         }
535
536         if( net_Read( p_this, fd, p_vs, (uint8_t *)ptr, 1, VLC_TRUE ) != 1 )
537         {
538             if( i_line == 0 )
539             {
540                 free( psz_line );
541                 return NULL;
542             }
543             break;
544         }
545
546         if ( *ptr == '\n' )
547             break;
548
549         i_line++;
550         ptr++;
551     }
552
553     *ptr-- = '\0';
554
555     if( ( ptr >= psz_line ) && ( *ptr == '\r' ) )
556         *ptr = '\0';
557
558     return psz_line;
559 }
560
561 int net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
562                 const char *psz_fmt, ... )
563 {
564     int i_ret;
565     va_list args;
566     va_start( args, psz_fmt );
567     i_ret = net_vaPrintf( p_this, fd, p_vs, psz_fmt, args );
568     va_end( args );
569
570     return i_ret;
571 }
572
573 int __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
574                     const char *psz_fmt, va_list args )
575 {
576     char    *psz;
577     int     i_size, i_ret;
578
579     i_size = vasprintf( &psz, psz_fmt, args );
580     i_ret = __net_Write( p_this, fd, p_vs, (uint8_t *)psz, i_size ) < i_size
581         ? -1 : i_size;
582     free( psz );
583
584     return i_ret;
585 }
586
587
588 /*****************************************************************************
589  * inet_pton replacement for obsolete and/or crap operating systems
590  *****************************************************************************/
591 #ifndef HAVE_INET_PTON
592 int inet_pton(int af, const char *src, void *dst)
593 {
594 # ifdef WIN32
595     /* As we already know, Microsoft always go its own way, so even if they do
596      * provide IPv6, they don't provide the API. */
597     struct sockaddr_storage addr;
598     int len = sizeof( addr );
599
600     /* Damn it, they didn't even put LPCSTR for the firs parameter!!! */
601 #ifdef UNICODE
602     wchar_t *workaround_for_ill_designed_api =
603         malloc( MAX_PATH * sizeof(wchar_t) );
604     mbstowcs( workaround_for_ill_designed_api, src, MAX_PATH );
605     workaround_for_ill_designed_api[MAX_PATH-1] = 0;
606 #else
607     char *workaround_for_ill_designed_api = strdup( src );
608 #endif
609
610     if( !WSAStringToAddress( workaround_for_ill_designed_api, af, NULL,
611                              (LPSOCKADDR)&addr, &len ) )
612     {
613         free( workaround_for_ill_designed_api );
614         return -1;
615     }
616     free( workaround_for_ill_designed_api );
617
618     switch( af )
619     {
620         case AF_INET6:
621             memcpy( dst, &((struct sockaddr_in6 *)&addr)->sin6_addr, 16 );
622             break;
623
624         case AF_INET:
625             memcpy( dst, &((struct sockaddr_in *)&addr)->sin_addr, 4 );
626             break;
627
628         default:
629             WSASetLastError( WSAEAFNOSUPPORT );
630             return -1;
631     }
632 # else
633     /* Assume IPv6 is not supported. */
634     /* Would be safer and more simpler to use inet_aton() but it is most
635      * likely not provided either. */
636     uint32_t ipv4;
637
638     if( af != AF_INET )
639     {
640         errno = EAFNOSUPPORT;
641         return -1;
642     }
643
644     ipv4 = inet_addr( src );
645     if( ipv4 == INADDR_NONE )
646         return -1;
647
648     memcpy( dst, &ipv4, 4 );
649 # endif /* WIN32 */
650     return 0;
651 }
652 #endif /* HAVE_INET_PTON */
653
654 #ifndef HAVE_INET_NTOP
655 #ifdef WIN32
656 const char *inet_ntop(int af, const void * src,
657                                char * dst, socklen_t cnt)
658 {
659     switch( af )
660     {
661 #ifdef AF_INET6
662         case AF_INET6:
663             {
664                 struct sockaddr_in6 addr;
665                 memset(&addr, 0, sizeof(addr));
666                 addr.sin6_family = AF_INET6;
667                 addr.sin6_addr = *((struct in6_addr*)src);
668                 if( 0 == WSAAddressToStringA((LPSOCKADDR)&addr, 
669                                              sizeof(struct sockaddr_in6), 
670                                              NULL, dst, &cnt) )
671                 {
672                     dst[cnt] = '\0';
673                     return dst;
674                 }
675                 errno = WSAGetLastError();
676                 return NULL;
677
678             }
679
680 #endif
681         case AF_INET:
682             {
683                 struct sockaddr_in addr;
684                 memset(&addr, 0, sizeof(addr));
685                 addr.sin_family = AF_INET;
686                 addr.sin_addr = *((struct in_addr*)src);
687                 if( 0 == WSAAddressToStringA((LPSOCKADDR)&addr,
688                                              sizeof(struct sockaddr_in),
689                                              NULL, dst, &cnt) )
690                 {
691                     dst[cnt] = '\0';
692                     return dst;
693                 }
694                 errno = WSAGetLastError();
695                 return NULL;
696
697             }
698     }
699     errno = EAFNOSUPPORT;
700     return NULL;
701 }
702 #endif
703 #endif