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