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