]> git.sesse.net Git - vlc/blob - src/network/io.c
Compile fix
[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_UNISTD_H
48 #   include <unistd.h>
49 #endif
50 #ifdef HAVE_POLL
51 #   include <poll.h>
52 #endif
53
54 #include <vlc_network.h>
55
56 #ifndef INADDR_ANY
57 #   define INADDR_ANY  0x00000000
58 #endif
59 #ifndef INADDR_NONE
60 #   define INADDR_NONE 0xFFFFFFFF
61 #endif
62
63 #if defined(WIN32) || defined(UNDER_CE)
64 # undef EAFNOSUPPORT
65 # define EAFNOSUPPORT WSAEAFNOSUPPORT
66 #endif
67
68 #ifdef HAVE_LINUX_DCCP_H
69 /* TODO: use glibc instead of linux-kernel headers */
70 # include <linux/dccp.h>
71 # define SOL_DCCP 269
72 #endif
73
74 #include "libvlc.h" /* vlc_object_waitpipe */
75
76 extern int rootwrap_bind (int family, int socktype, int protocol,
77                           const struct sockaddr *addr, size_t alen);
78
79 int net_Socket (vlc_object_t *p_this, int family, int socktype,
80                 int protocol)
81 {
82     int fd = vlc_socket (family, socktype, protocol, true);
83     if (fd == -1)
84     {
85         if (net_errno != EAFNOSUPPORT)
86             msg_Err (p_this, "cannot create socket: %m");
87         return -1;
88     }
89
90     setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof (int));
91
92 #ifdef IPV6_V6ONLY
93     /*
94      * Accepts only IPv6 connections on IPv6 sockets.
95      * If possible, we should open two sockets, but it is not always possible.
96      */
97     if (family == AF_INET6)
98         setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 1 }, sizeof (int));
99 #endif
100
101 #if defined (WIN32) || defined (UNDER_CE)
102 # ifndef IPV6_PROTECTION_LEVEL
103 #  warning Please update your C library headers.
104 #  define IPV6_PROTECTION_LEVEL 23
105 #  define PROTECTION_LEVEL_UNRESTRICTED 10
106 # endif
107     if (family == AF_INET6)
108         setsockopt (fd, IPPROTO_IPV6, IPV6_PROTECTION_LEVEL,
109                     &(int){ PROTECTION_LEVEL_UNRESTRICTED }, sizeof (int));
110 #endif
111
112 #ifdef DCCP_SOCKOPT_SERVICE
113     if (socktype == SOL_DCCP)
114     {
115         char *dccps = var_CreateGetNonEmptyString (p_this, "dccp-service");
116         if (dccps != NULL)
117         {
118             setsockopt (fd, SOL_DCCP, DCCP_SOCKOPT_SERVICE, dccps,
119                         (strlen (dccps) + 3) & ~3);
120             free (dccps);
121         }
122     }
123 #endif
124
125     return fd;
126 }
127
128
129 int *net_Listen (vlc_object_t *p_this, const char *psz_host,
130                  int i_port, int protocol)
131 {
132     struct addrinfo hints, *res;
133
134     memset (&hints, 0, sizeof( hints ));
135     hints.ai_protocol = protocol;
136     hints.ai_flags = AI_PASSIVE;
137
138     msg_Dbg (p_this, "net: listening to %s port %d", psz_host, i_port);
139
140     int i_val = vlc_getaddrinfo (p_this, psz_host, i_port, &hints, &res);
141     if (i_val)
142     {
143         msg_Err (p_this, "Cannot resolve %s port %d : %s", psz_host, i_port,
144                  vlc_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     vlc_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         ufd[0].revents = ufd[1].revents = 0;
271
272         if (poll (ufd, sizeof (ufd) / sizeof (ufd[0]), -1) < 0)
273         {
274             if (errno != EINTR)
275                 goto error;
276             continue;
277         }
278
279 #ifndef POLLRDHUP /* This is nice but non-portable */
280 # define POLLRDHUP 0
281 #endif
282         if (i_total > 0)
283         {
284             /* Errors (-1) and EOF (0) will be returned on next call,
285              * otherwise we'd "hide" the error from the caller, which is a
286              * bad idea™. */
287             if (ufd[0].revents & (POLLERR|POLLNVAL|POLLRDHUP))
288                 break;
289             if (ufd[1].revents)
290                 break;
291         }
292         else
293         {
294             if (ufd[1].revents)
295             {
296                 assert (p_this->b_die);
297                 msg_Dbg (p_this, "socket %d polling interrupted", fd);
298 #if defined(WIN32) || defined(UNDER_CE)
299                 WSASetLastError (WSAEINTR);
300 #else
301                 errno = EINTR;
302 #endif
303                 goto silent;
304             }
305         }
306
307         assert (ufd[0].revents);
308
309         ssize_t n;
310         if (vs != NULL)
311         {
312             int canc = vlc_savecancel ();
313             n = vs->pf_recv (vs->p_sys, p_buf, i_buflen);
314             vlc_restorecancel (canc);
315         }
316         else
317         {
318 #ifdef WIN32
319             n = recv (fd, p_buf, i_buflen, 0);
320 #else
321             n = read (fd, p_buf, i_buflen);
322 #endif
323         }
324
325         if (n == -1)
326         {
327 #if defined(WIN32) || defined(UNDER_CE)
328             switch (WSAGetLastError ())
329             {
330                 case WSAEWOULDBLOCK:
331                 /* only happens with vs != NULL (TLS) - not really an error */
332                     continue;
333
334                 case WSAEMSGSIZE:
335                 /* For UDP only */
336                 /* On Win32, recv() fails if the datagram doesn't fit inside
337                  * the passed buffer, even though the buffer will be filled
338                  * with the first part of the datagram. */
339                     msg_Err (p_this, "Receive error: "
340                                      "Increase the mtu size (--mtu option)");
341                     n = i_buflen;
342                     break;
343             }
344 #else
345             switch (errno)
346             {
347                 case EAGAIN: /* spurious wakeup or no TLS data */
348 #if (EAGAIN != EWOULDBLOCK)
349                 case EWOULDBLOCK:
350 #endif
351                 case EINTR:  /* asynchronous signal */
352                     continue;
353             }
354 #endif
355             goto error;
356         }
357
358         if (n == 0)
359             /* For streams, this means end of file, and there will not be any
360              * further data ever on the stream. For datagram sockets, this
361              * means empty datagram, and there could be more data coming.
362              * However, it makes no sense to set <waitall> with datagrams in the
363              * first place.
364              */
365             break; // EOF
366
367         i_total += n;
368         p_buf = (char *)p_buf + n;
369         i_buflen -= n;
370
371         if (!waitall)
372             break;
373     }
374
375     return i_total;
376
377 error:
378     msg_Err (p_this, "Read error: %m");
379 silent:
380     return -1;
381 }
382
383 #undef net_Write
384 /**
385  * Writes data to a file descriptor.
386  * This blocks until all data is written or an error occurs.
387  *
388  * This function is a cancellation point if p_vs is NULL.
389  * This function is not cancellation-safe if p_vs is not NULL.
390  *
391  * @return the total number of bytes written, or -1 if an error occurs
392  * before any data is written.
393  */
394 ssize_t net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
395                    const void *restrict p_data, size_t i_data )
396 {
397     size_t i_total = 0;
398     struct pollfd ufd[2] = {
399         { .fd = fd,                           .events = POLLOUT },
400         { .fd = vlc_object_waitpipe (p_this), .events = POLLIN  },
401     };
402
403     if (unlikely(ufd[1].fd == -1))
404     {
405         vlc_testcancel ();
406         return -1;
407     }
408
409     while( i_data > 0 )
410     {
411         ssize_t val;
412
413         ufd[0].revents = ufd[1].revents = 0;
414
415         if (poll (ufd, sizeof (ufd) / sizeof (ufd[0]), -1) == -1)
416         {
417             if (errno == EINTR)
418                 continue;
419             msg_Err (p_this, "Polling error: %m");
420             return -1;
421         }
422
423         if (i_total > 0)
424         {   /* If POLLHUP resp. POLLERR|POLLNVAL occurs while we have already
425              * read some data, it is important that we first return the number
426              * of bytes read, and then return 0 resp. -1 on the NEXT call. */
427             if (ufd[0].revents & (POLLHUP|POLLERR|POLLNVAL))
428                 break;
429             if (ufd[1].revents) /* VLC object signaled */
430                 break;
431         }
432         else
433         {
434             if (ufd[1].revents)
435             {
436                 assert (p_this->b_die);
437                 errno = EINTR;
438                 goto error;
439             }
440         }
441
442         if (p_vs != NULL)
443             val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
444         else
445 #ifdef WIN32
446             val = send (fd, p_data, i_data, 0);
447 #else
448             val = write (fd, p_data, i_data);
449 #endif
450
451         if (val == -1)
452         {
453             if (errno == EINTR)
454                 continue;
455             msg_Err (p_this, "Write error: %m");
456             break;
457         }
458
459         p_data = (const char *)p_data + val;
460         i_data -= val;
461         i_total += val;
462     }
463
464     if (unlikely(i_data == 0))
465         vlc_testcancel (); /* corner case */
466
467     if ((i_total > 0) || (i_data == 0))
468         return i_total;
469
470 error:
471     return -1;
472 }
473
474 #undef net_Gets
475 /**
476  * Reads a line from a file descriptor.
477  * This function is not thread-safe; the same file descriptor I/O cannot be
478  * read by another thread at the same time (although it can be written to).
479  *
480  * @return nul-terminated heap-allocated string, or NULL on I/O error.
481  */
482 char *net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
483 {
484     char *psz_line = NULL, *ptr = NULL;
485     size_t  i_line = 0, i_max = 0;
486
487
488     for( ;; )
489     {
490         if( i_line == i_max )
491         {
492             i_max += 1024;
493             psz_line = xrealloc( psz_line, i_max );
494             ptr = psz_line + i_line;
495         }
496
497         if( net_Read( p_this, fd, p_vs, ptr, 1, true ) != 1 )
498         {
499             if( i_line == 0 )
500             {
501                 free( psz_line );
502                 return NULL;
503             }
504             break;
505         }
506
507         if ( *ptr == '\n' )
508             break;
509
510         i_line++;
511         ptr++;
512     }
513
514     *ptr-- = '\0';
515
516     if( ( ptr >= psz_line ) && ( *ptr == '\r' ) )
517         *ptr = '\0';
518
519     return psz_line;
520 }
521
522 #undef net_Printf
523 ssize_t net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
524                     const char *psz_fmt, ... )
525 {
526     int i_ret;
527     va_list args;
528     va_start( args, psz_fmt );
529     i_ret = net_vaPrintf( p_this, fd, p_vs, psz_fmt, args );
530     va_end( args );
531
532     return i_ret;
533 }
534
535 #undef net_vaPrintf
536 ssize_t net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
537                       const char *psz_fmt, va_list args )
538 {
539     char    *psz;
540     int      i_ret;
541
542     int i_size = vasprintf( &psz, psz_fmt, args );
543     if( i_size == -1 )
544         return -1;
545     i_ret = net_Write( p_this, fd, p_vs, psz, i_size ) < i_size
546         ? -1 : i_size;
547     free( psz );
548
549     return i_ret;
550 }