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