]> git.sesse.net Git - vlc/blob - src/network/io.c
d5b854bbf623c7ac3b7af86512619ffb03953393
[vlc] / src / network / io.c
1 /*****************************************************************************
2  * io.c: network I/O functions
3  *****************************************************************************
4  * Copyright (C) 2004-2005, 2007 VLC authors and VideoLAN
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 it
13  * under the terms of the GNU Lesser General Public License as published by
14  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public License
23  * along with this program; if not, write to the Free Software Foundation,
24  * 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_common.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 #include <fcntl.h>
45 #ifdef HAVE_UNISTD_H
46 #   include <unistd.h>
47 #endif
48 #ifdef HAVE_POLL
49 #   include <poll.h>
50 #endif
51
52 #include <vlc_network.h>
53
54 #ifndef INADDR_ANY
55 #   define INADDR_ANY  0x00000000
56 #endif
57 #ifndef INADDR_NONE
58 #   define INADDR_NONE 0xFFFFFFFF
59 #endif
60
61 #if defined(WIN32) || defined(UNDER_CE)
62 # undef EAFNOSUPPORT
63 # define EAFNOSUPPORT WSAEAFNOSUPPORT
64 #endif
65
66 #ifdef HAVE_LINUX_DCCP_H
67 /* TODO: use glibc instead of linux-kernel headers */
68 # include <linux/dccp.h>
69 # define SOL_DCCP 269
70 #endif
71
72 #include "libvlc.h" /* vlc_object_waitpipe */
73
74 extern int rootwrap_bind (int family, int socktype, int protocol,
75                           const struct sockaddr *addr, size_t alen);
76
77 int net_Socket (vlc_object_t *p_this, int family, int socktype,
78                 int protocol)
79 {
80     int fd = vlc_socket (family, socktype, protocol, true);
81     if (fd == -1)
82     {
83         if (net_errno != EAFNOSUPPORT)
84             msg_Err (p_this, "cannot create socket: %m");
85         return -1;
86     }
87
88     setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof (int));
89
90 #ifdef IPV6_V6ONLY
91     /*
92      * Accepts only IPv6 connections on IPv6 sockets.
93      * If possible, we should open two sockets, but it is not always possible.
94      */
95     if (family == AF_INET6)
96         setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 1 }, sizeof (int));
97 #endif
98
99 #if defined (WIN32) || defined (UNDER_CE)
100 # ifndef IPV6_PROTECTION_LEVEL
101 #  warning Please update your C library headers.
102 #  define IPV6_PROTECTION_LEVEL 23
103 #  define PROTECTION_LEVEL_UNRESTRICTED 10
104 # endif
105     if (family == AF_INET6)
106         setsockopt (fd, IPPROTO_IPV6, IPV6_PROTECTION_LEVEL,
107                     &(int){ PROTECTION_LEVEL_UNRESTRICTED }, sizeof (int));
108 #endif
109
110 #ifdef DCCP_SOCKOPT_SERVICE
111     if (socktype == SOL_DCCP)
112     {
113         char *dccps = var_InheritString (p_this, "dccp-service");
114         if (dccps != NULL)
115         {
116             setsockopt (fd, SOL_DCCP, DCCP_SOCKOPT_SERVICE, dccps,
117                         (strlen (dccps) + 3) & ~3);
118             free (dccps);
119         }
120     }
121 #endif
122
123     return fd;
124 }
125
126
127 int *net_Listen (vlc_object_t *p_this, const char *psz_host,
128                  int i_port, int type, int protocol)
129 {
130     struct addrinfo hints = {
131         .ai_socktype = type,
132         .ai_protocol = protocol,
133         .ai_flags = AI_PASSIVE | AI_NUMERICSERV,
134     }, *res;
135
136     msg_Dbg (p_this, "net: listening to %s port %d",
137              (psz_host != NULL) ? psz_host : "*", i_port);
138
139     int i_val = vlc_getaddrinfo (psz_host, i_port, &hints, &res);
140     if (i_val)
141     {
142         msg_Err (p_this, "Cannot resolve %s port %d : %s",
143                  (psz_host != NULL) ? psz_host : "", i_port,
144                  gai_strerror (i_val));
145         return NULL;
146     }
147
148     int *sockv = NULL;
149     unsigned sockc = 0;
150
151     for (struct addrinfo *ptr = res; ptr != NULL; ptr = ptr->ai_next)
152     {
153         int fd = net_Socket (p_this, ptr->ai_family, ptr->ai_socktype,
154                              ptr->ai_protocol);
155         if (fd == -1)
156         {
157             msg_Dbg (p_this, "socket error: %m");
158             continue;
159         }
160
161         /* Bind the socket */
162 #if defined (WIN32) || defined (UNDER_CE)
163         /*
164          * Under Win32 and for multicasting, we bind to INADDR_ANY.
165          * This is of course a severe bug, since the socket would logically
166          * receive unicast traffic, and multicast traffic of groups subscribed
167          * to via other sockets.
168          */
169         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen)
170          && (sizeof (struct sockaddr_storage) >= ptr->ai_addrlen))
171         {
172             // This works for IPv4 too - don't worry!
173             struct sockaddr_in6 dumb =
174             {
175                 .sin6_family = ptr->ai_addr->sa_family,
176                 .sin6_port =  ((struct sockaddr_in *)(ptr->ai_addr))->sin_port
177             };
178
179             bind (fd, (struct sockaddr *)&dumb, ptr->ai_addrlen);
180         }
181         else
182 #endif
183         if (bind (fd, ptr->ai_addr, ptr->ai_addrlen))
184         {
185             net_Close (fd);
186 #if !defined(WIN32) && !defined(UNDER_CE)
187             fd = rootwrap_bind (ptr->ai_family, ptr->ai_socktype,
188                                 ptr->ai_protocol,
189                                 ptr->ai_addr, ptr->ai_addrlen);
190             if (fd != -1)
191             {
192                 msg_Dbg (p_this, "got socket %d from rootwrap", fd);
193             }
194             else
195 #endif
196             {
197                 msg_Err (p_this, "socket bind error (%m)");
198                 continue;
199             }
200         }
201
202         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen))
203         {
204             if (net_Subscribe (p_this, fd, ptr->ai_addr, ptr->ai_addrlen))
205             {
206                 net_Close (fd);
207                 continue;
208             }
209         }
210
211         /* Listen */
212         switch (ptr->ai_socktype)
213         {
214             case SOCK_STREAM:
215             case SOCK_RDM:
216             case SOCK_SEQPACKET:
217 #ifdef SOCK_DCCP
218             case SOCK_DCCP:
219 #endif
220                 if (listen (fd, INT_MAX))
221                 {
222                     msg_Err (p_this, "socket listen error (%m)");
223                     net_Close (fd);
224                     continue;
225                 }
226         }
227
228         int *nsockv = (int *)realloc (sockv, (sockc + 2) * sizeof (int));
229         if (nsockv != NULL)
230         {
231             nsockv[sockc++] = fd;
232             sockv = nsockv;
233         }
234         else
235             net_Close (fd);
236     }
237
238     freeaddrinfo (res);
239
240     if (sockv != NULL)
241         sockv[sockc] = -1;
242
243     return sockv;
244 }
245
246 #undef net_Read
247 /*****************************************************************************
248  * net_Read:
249  *****************************************************************************
250  * Reads from a network socket. Cancellation point.
251  * If waitall is true, then we repeat until we have read the right amount of
252  * data; in that case, a short count means EOF has been reached or the VLC
253  * object has been signaled.
254  *****************************************************************************/
255 ssize_t
256 net_Read (vlc_object_t *restrict p_this, int fd, const v_socket_t *vs,
257           void *restrict p_buf, size_t i_buflen, bool waitall)
258 {
259     size_t i_total = 0;
260     struct pollfd ufd[2] = {
261         { .fd = fd,                           .events = POLLIN },
262         { .fd = vlc_object_waitpipe (p_this), .events = POLLIN },
263     };
264
265     if (ufd[1].fd == -1)
266         return -1; /* vlc_object_waitpipe() sets errno */
267
268     while (i_buflen > 0)
269     {
270         if (poll (ufd, sizeof (ufd) / sizeof (ufd[0]), -1) < 0)
271         {
272             if (errno != EINTR)
273                 goto error;
274             continue;
275         }
276
277         if (i_total > 0)
278         {
279             /* Errors (-1) and EOF (0) will be returned on next call,
280              * otherwise we'd "hide" the error from the caller, which is a
281              * bad idea™. */
282             if (ufd[0].revents & (POLLERR|POLLNVAL))
283                 break;
284             if (ufd[1].revents)
285                 break;
286         }
287         else
288         {
289             if (ufd[1].revents)
290             {
291                 assert (p_this->b_die);
292                 msg_Dbg (p_this, "socket %d polling interrupted", fd);
293 #if defined(WIN32) || defined(UNDER_CE)
294                 WSASetLastError (WSAEINTR);
295 #else
296                 errno = EINTR;
297 #endif
298                 goto silent;
299             }
300         }
301
302         assert (ufd[0].revents);
303
304         ssize_t n;
305 #if defined(WIN32) || defined(UNDER_CE)
306         int error;
307 #endif
308         if (vs != NULL)
309         {
310             int canc = vlc_savecancel ();
311             n = vs->pf_recv (vs->p_sys, p_buf, i_buflen);
312 #if defined(WIN32) || defined(UNDER_CE)
313             /* We must read last error immediately, because vlc_restorecancel()
314              * access thread local storage, and TlsGetValue() will call
315              * SetLastError() to indicate that the function succeeded, thus
316              * overwriting the error code coming from pf_recv().
317              * WSAGetLastError is just an alias for GetLastError these days.
318              */
319             error = WSAGetLastError();
320 #endif
321             vlc_restorecancel (canc);
322         }
323         else
324         {
325 #ifdef WIN32
326             n = recv (fd, p_buf, i_buflen, 0);
327             error = WSAGetLastError();
328 #else
329             n = read (fd, p_buf, i_buflen);
330 #endif
331         }
332
333         if (n == -1)
334         {
335 #if defined(WIN32) || defined(UNDER_CE)
336             switch (error)
337             {
338                 case WSAEWOULDBLOCK:
339                 case WSAEINTR:
340                 /* only happens with vs != NULL (TLS) - not really an error */
341                     continue;
342
343                 case WSAEMSGSIZE:
344                 /* For UDP only */
345                 /* On Win32, recv() fails if the datagram doesn't fit inside
346                  * the passed buffer, even though the buffer will be filled
347                  * with the first part of the datagram. */
348                     msg_Err (p_this, "Receive error: "
349                                      "Increase the mtu size (--mtu option)");
350                     n = i_buflen;
351                     break;
352             }
353 #else
354             switch (errno)
355             {
356                 case EAGAIN: /* spurious wakeup or no TLS data */
357 #if (EAGAIN != EWOULDBLOCK)
358                 case EWOULDBLOCK:
359 #endif
360                 case EINTR:  /* asynchronous signal */
361                     continue;
362             }
363 #endif
364             goto error;
365         }
366
367         if (n == 0)
368             /* For streams, this means end of file, and there will not be any
369              * further data ever on the stream. For datagram sockets, this
370              * means empty datagram, and there could be more data coming.
371              * However, it makes no sense to set <waitall> with datagrams in the
372              * first place.
373              */
374             break; // EOF
375
376         i_total += n;
377         p_buf = (char *)p_buf + n;
378         i_buflen -= n;
379
380         if (!waitall)
381             break;
382     }
383
384     return i_total;
385
386 error:
387     msg_Err (p_this, "Read error: %m");
388 silent:
389     return -1;
390 }
391
392 #undef net_Write
393 /**
394  * Writes data to a file descriptor.
395  * This blocks until all data is written or an error occurs.
396  *
397  * This function is a cancellation point if p_vs is NULL.
398  * This function is not cancellation-safe if p_vs is not NULL.
399  *
400  * @return the total number of bytes written, or -1 if an error occurs
401  * before any data is written.
402  */
403 ssize_t net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
404                    const void *restrict p_data, size_t i_data )
405 {
406     size_t i_total = 0;
407     struct pollfd ufd[2] = {
408         { .fd = fd,                           .events = POLLOUT },
409         { .fd = vlc_object_waitpipe (p_this), .events = POLLIN  },
410     };
411
412     if (unlikely(ufd[1].fd == -1))
413     {
414         vlc_testcancel ();
415         return -1;
416     }
417
418     while( i_data > 0 )
419     {
420         ssize_t val;
421
422         ufd[0].revents = ufd[1].revents = 0;
423
424         if (poll (ufd, sizeof (ufd) / sizeof (ufd[0]), -1) == -1)
425         {
426             if (errno == EINTR)
427                 continue;
428             msg_Err (p_this, "Polling error: %m");
429             return -1;
430         }
431
432         if (i_total > 0)
433         {   /* If POLLHUP resp. POLLERR|POLLNVAL occurs while we have already
434              * read some data, it is important that we first return the number
435              * of bytes read, and then return 0 resp. -1 on the NEXT call. */
436             if (ufd[0].revents & (POLLHUP|POLLERR|POLLNVAL))
437                 break;
438             if (ufd[1].revents) /* VLC object signaled */
439                 break;
440         }
441         else
442         {
443             if (ufd[1].revents)
444             {
445                 assert (p_this->b_die);
446                 errno = EINTR;
447                 goto error;
448             }
449         }
450
451         if (p_vs != NULL)
452             val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
453         else
454 #ifdef WIN32
455             val = send (fd, p_data, i_data, 0);
456 #else
457             val = write (fd, p_data, i_data);
458 #endif
459
460         if (val == -1)
461         {
462             if (errno == EINTR)
463                 continue;
464             msg_Err (p_this, "Write error: %m");
465             break;
466         }
467
468         p_data = (const char *)p_data + val;
469         i_data -= val;
470         i_total += val;
471     }
472
473     if (unlikely(i_data == 0))
474         vlc_testcancel (); /* corner case */
475
476     if ((i_total > 0) || (i_data == 0))
477         return i_total;
478
479 error:
480     return -1;
481 }
482
483 #undef net_Gets
484 /**
485  * Reads a line from a file descriptor.
486  * This function is not thread-safe; the same file descriptor I/O cannot be
487  * read by another thread at the same time (although it can be written to).
488  *
489  * @return nul-terminated heap-allocated string, or NULL on I/O error.
490  */
491 char *net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
492 {
493     char *psz_line = NULL, *ptr = NULL;
494     size_t  i_line = 0, i_max = 0;
495
496
497     for( ;; )
498     {
499         if( i_line == i_max )
500         {
501             i_max += 1024;
502             psz_line = xrealloc( psz_line, i_max );
503             ptr = psz_line + i_line;
504         }
505
506         if( net_Read( p_this, fd, p_vs, ptr, 1, true ) != 1 )
507         {
508             if( i_line == 0 )
509             {
510                 free( psz_line );
511                 return NULL;
512             }
513             break;
514         }
515
516         if ( *ptr == '\n' )
517             break;
518
519         i_line++;
520         ptr++;
521     }
522
523     *ptr-- = '\0';
524
525     if( ( ptr >= psz_line ) && ( *ptr == '\r' ) )
526         *ptr = '\0';
527
528     return psz_line;
529 }
530
531 #undef net_Printf
532 ssize_t net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
533                     const char *psz_fmt, ... )
534 {
535     int i_ret;
536     va_list args;
537     va_start( args, psz_fmt );
538     i_ret = net_vaPrintf( p_this, fd, p_vs, psz_fmt, args );
539     va_end( args );
540
541     return i_ret;
542 }
543
544 #undef net_vaPrintf
545 ssize_t net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
546                       const char *psz_fmt, va_list args )
547 {
548     char    *psz;
549     int      i_ret;
550
551     int i_size = vasprintf( &psz, psz_fmt, args );
552     if( i_size == -1 )
553         return -1;
554     i_ret = net_Write( p_this, fd, p_vs, psz, i_size ) < i_size
555         ? -1 : i_size;
556     free( psz );
557
558     return i_ret;
559 }