io.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:15k
源码类别:

midi

开发平台:

Unix_Linux

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