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