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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * udp.c:
  3.  *****************************************************************************
  4.  * Copyright (C) 2004-2006 the VideoLAN team
  5.  * Copyright © 2006-2007 Rémi Denis-Courmont
  6.  *
  7.  * $Id: 2bbf4a127de2b557c5a4417fa142c1e34e300463 $
  8.  *
  9.  * Authors: Laurent Aimar <fenrir@videolan.org>
  10.  *          Rémi Denis-Courmont <rem # videolan.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 <errno.h>
  34. #ifdef HAVE_SYS_TIME_H
  35. #    include <sys/time.h>
  36. #endif
  37. #include <vlc_network.h>
  38. #ifdef WIN32
  39. #   if defined(UNDER_CE)
  40. #       undef IP_MULTICAST_TTL
  41. #       define IP_MULTICAST_TTL 3
  42. #       undef IP_ADD_MEMBERSHIP
  43. #       define IP_ADD_MEMBERSHIP 5
  44. #   endif
  45. #   define EAFNOSUPPORT WSAEAFNOSUPPORT
  46. #   define if_nametoindex( str ) atoi( str )
  47. #else
  48. #   include <unistd.h>
  49. #   ifdef HAVE_NET_IF_H
  50. #       include <net/if.h>
  51. #   endif
  52. #endif
  53. #ifdef HAVE_LINUX_DCCP_H
  54. # include <linux/dccp.h>
  55. # ifndef SOCK_DCCP /* provisional API */
  56. #  define SOCK_DCCP 6
  57. # endif
  58. #endif
  59. #ifndef SOL_IP
  60. # define SOL_IP IPPROTO_IP
  61. #endif
  62. #ifndef SOL_IPV6
  63. # define SOL_IPV6 IPPROTO_IPV6
  64. #endif
  65. #ifndef IPPROTO_IPV6
  66. # define IPPROTO_IPV6 41 /* IANA */
  67. #endif
  68. #ifndef SOL_DCCP
  69. # define SOL_DCCP IPPROTO_DCCP
  70. #endif
  71. #ifndef IPPROTO_DCCP
  72. # define IPPROTO_DCCP 33 /* IANA */
  73. #endif
  74. #ifndef SOL_UDPLITE
  75. # define SOL_UDPLITE IPPROTO_UDPLITE
  76. #endif
  77. #ifndef IPPROTO_UDPLITE
  78. # define IPPROTO_UDPLITE 136 /* IANA */
  79. #endif
  80. #if defined (HAVE_NETINET_UDPLITE_H)
  81. # include <netinet/udplite.h>
  82. #elif defined (__linux__)
  83. /* still missing from glibc 2.6 */
  84. # define UDPLITE_SEND_CSCOV     10
  85. # define UDPLITE_RECV_CSCOV     11
  86. #endif
  87. extern int net_Socket( vlc_object_t *p_this, int i_family, int i_socktype,
  88.                        int i_protocol );
  89. /* */
  90. static int net_SetupDgramSocket( vlc_object_t *p_obj, int fd, const struct addrinfo *ptr )
  91. {
  92. #ifdef SO_REUSEPORT
  93.     setsockopt (fd, SOL_SOCKET, SO_REUSEPORT, &(int){ 1 }, sizeof (int));
  94. #endif
  95. #ifdef SO_RCVBUF
  96.     /* Increase the receive buffer size to 1/2MB (8Mb/s during 1/2s)
  97.      * to avoid packet loss caused in case of scheduling hiccups */
  98.     setsockopt (fd, SOL_SOCKET, SO_RCVBUF,
  99.                 (void *)&(int){ 0x80000 }, sizeof (int));
  100.     setsockopt (fd, SOL_SOCKET, SO_SNDBUF,
  101.                 (void *)&(int){ 0x80000 }, sizeof (int));
  102. #endif
  103. #if defined (WIN32) || defined (UNDER_CE)
  104.     if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen)
  105.      && (sizeof (struct sockaddr_storage) >= ptr->ai_addrlen))
  106.     {
  107.         // This works for IPv4 too - don't worry!
  108.         struct sockaddr_in6 dumb =
  109.         {
  110.             .sin6_family = ptr->ai_addr->sa_family,
  111.             .sin6_port =  ((struct sockaddr_in *)(ptr->ai_addr))->sin_port
  112.         };
  113.         bind (fd, (struct sockaddr *)&dumb, ptr->ai_addrlen);
  114.     }
  115.     else
  116. #endif
  117.     if (bind (fd, ptr->ai_addr, ptr->ai_addrlen))
  118.     {
  119.         msg_Err( p_obj, "socket bind error (%m)" );
  120.         net_Close (fd);
  121.         return -1;
  122.     }
  123.     return fd;
  124. }
  125. /* */
  126. static int net_ListenSingle (vlc_object_t *obj, const char *host, int port,
  127.                              int family, int protocol)
  128. {
  129.     struct addrinfo hints, *res;
  130.     memset (&hints, 0, sizeof( hints ));
  131.     hints.ai_family = family;
  132.     hints.ai_socktype = SOCK_DGRAM;
  133.     hints.ai_flags = AI_PASSIVE;
  134.     if (host && !*host)
  135.         host = NULL;
  136.     msg_Dbg (obj, "net: opening %s datagram port %d",
  137.              host ? host : "any", port);
  138.     int val = vlc_getaddrinfo (obj, host, port, &hints, &res);
  139.     if (val)
  140.     {
  141.         msg_Err (obj, "Cannot resolve %s port %d : %s", host, port,
  142.                  vlc_gai_strerror (val));
  143.         return -1;
  144.     }
  145.     val = -1;
  146.     int fd6 = -1;
  147.     for (const struct addrinfo *ptr = res; ptr != NULL; ptr = ptr->ai_next)
  148.     {
  149.         int fd = net_Socket (obj, ptr->ai_family, ptr->ai_socktype,
  150.                              protocol ? protocol : ptr->ai_protocol);
  151.         if (fd == -1)
  152.         {
  153.             msg_Dbg (obj, "socket error: %m");
  154.             continue;
  155.         }
  156. #ifdef IPV6_V6ONLY
  157.         /* If IPv6 was forced, set IPv6-only mode.
  158.          * If IPv4 was forced, do nothing extraordinary.
  159.          * If nothing was forced, try dual-mode IPv6. */
  160.         if (ptr->ai_family == AF_INET6)
  161.         {
  162.             int on = (family == AF_INET6);
  163.             setsockopt (fd, SOL_IPV6, IPV6_V6ONLY, &on, sizeof (on));
  164.         }
  165.         else if (ptr->ai_family == AF_INET && family == AF_UNSPEC)
  166.         {
  167.             for (const struct addrinfo *p = ptr; p != NULL; p = p->ai_next)
  168.                 if (p->ai_family == AF_INET6)
  169.                 {
  170.                     net_Close (fd);
  171.                     fd = -1;
  172.                     break;
  173.                 }
  174.             if (fd == -1)
  175.                 continue;
  176.         }
  177. #else
  178.         if (family == AF_UNSPEC && ptr->ai_next != NULL)
  179.         {
  180.             msg_Warn (obj, "ambiguous network protocol specification");
  181.             msg_Warn (obj, "please select IP version explicitly");
  182.         }
  183. #endif
  184.         fd = net_SetupDgramSocket( obj, fd, ptr );
  185.         if( fd == -1 )
  186.             continue;
  187.         if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen)
  188.          && net_Subscribe (obj, fd, ptr->ai_addr, ptr->ai_addrlen))
  189.         {
  190.             net_Close (fd);
  191.             continue;
  192.         }
  193.         val = fd;
  194.         break;
  195.     }
  196.     vlc_freeaddrinfo (res);
  197.     return val;
  198. }
  199. static int net_SetMcastHopLimit( vlc_object_t *p_this,
  200.                                  int fd, int family, int hlim )
  201. {
  202.     int proto, cmd;
  203.     /* There is some confusion in the world whether IP_MULTICAST_TTL
  204.      * takes a byte or an int as an argument.
  205.      * BSD seems to indicate byte so we are going with that and use
  206.      * int as a fallback to be safe */
  207.     switch( family )
  208.     {
  209. #ifdef IP_MULTICAST_TTL
  210.         case AF_INET:
  211.             proto = SOL_IP;
  212.             cmd = IP_MULTICAST_TTL;
  213.             break;
  214. #endif
  215. #ifdef IPV6_MULTICAST_HOPS
  216.         case AF_INET6:
  217.             proto = SOL_IPV6;
  218.             cmd = IPV6_MULTICAST_HOPS;
  219.             break;
  220. #endif
  221.         default:
  222.             errno = EAFNOSUPPORT;
  223.             msg_Warn( p_this, "%m" );
  224.             return VLC_EGENERIC;
  225.     }
  226.     if( setsockopt( fd, proto, cmd, &hlim, sizeof( hlim ) ) < 0 )
  227.     {
  228.         /* BSD compatibility */
  229.         unsigned char buf;
  230.         buf = (unsigned char)(( hlim > 255 ) ? 255 : hlim);
  231.         if( setsockopt( fd, proto, cmd, &buf, sizeof( buf ) ) )
  232.             return VLC_EGENERIC;
  233.     }
  234.     return VLC_SUCCESS;
  235. }
  236. static int net_SetMcastOutIface (int fd, int family, int scope)
  237. {
  238.     switch (family)
  239.     {
  240. #ifdef IPV6_MULTICAST_IF
  241.         case AF_INET6:
  242.             return setsockopt (fd, SOL_IPV6, IPV6_MULTICAST_IF,
  243.                                &scope, sizeof (scope));
  244. #endif
  245. #ifdef __linux__
  246.         case AF_INET:
  247.         {
  248.             struct ip_mreqn req = { .imr_ifindex = scope };
  249.             return setsockopt (fd, SOL_IP, IP_MULTICAST_IF, &req,
  250.                                sizeof (req));
  251.         }
  252. #endif
  253.     }
  254.     errno = EAFNOSUPPORT;
  255.     return -1;
  256. }
  257. static inline int net_SetMcastOutIPv4 (int fd, struct in_addr ipv4)
  258. {
  259. #ifdef IP_MULTICAST_IF
  260.     return setsockopt( fd, SOL_IP, IP_MULTICAST_IF, &ipv4, sizeof (ipv4));
  261. #else
  262.     errno = EAFNOSUPPORT;
  263.     return -1;
  264. #endif
  265. }
  266. static int net_SetMcastOut (vlc_object_t *p_this, int fd, int family,
  267.                             const char *iface, const char *addr)
  268. {
  269.     if (iface != NULL)
  270.     {
  271.         int scope = if_nametoindex (iface);
  272.         if (scope == 0)
  273.         {
  274.             msg_Err (p_this, "invalid multicast interface: %s", iface);
  275.             return -1;
  276.         }
  277.         if (net_SetMcastOutIface (fd, family, scope) == 0)
  278.             return 0;
  279.         msg_Err (p_this, "%s: %m", iface);
  280.     }
  281.     if (addr != NULL)
  282.     {
  283.         if (family == AF_INET)
  284.         {
  285.             struct in_addr ipv4;
  286.             if (inet_pton (AF_INET, addr, &ipv4) <= 0)
  287.             {
  288.                 msg_Err (p_this, "invalid IPv4 address for multicast: %s",
  289.                          addr);
  290.                 return -1;
  291.             }
  292.             if (net_SetMcastOutIPv4 (fd, ipv4) == 0)
  293.                 return 0;
  294.             msg_Err (p_this, "%s: %m", addr);
  295.         }
  296.     }
  297.     return -1;
  298. }
  299. /**
  300.  * Old-style any-source multicast join.
  301.  * In use on Windows XP/2003 and older.
  302.  */
  303. static int
  304. net_IPv4Join (vlc_object_t *obj, int fd,
  305.               const struct sockaddr_in *src, const struct sockaddr_in *grp)
  306. {
  307. #ifdef IP_ADD_MEMBERSHIP
  308.     union
  309.     {
  310.         struct ip_mreq gr4;
  311. # ifdef IP_ADD_SOURCE_MEMBERSHIP
  312.         struct ip_mreq_source gsr4;
  313. # endif
  314.     } opt;
  315.     int cmd;
  316.     struct in_addr id = { .s_addr = INADDR_ANY };
  317.     socklen_t optlen;
  318.     /* Multicast interface IPv4 address */
  319.     char *iface = var_CreateGetNonEmptyString (obj, "miface-addr");
  320.     if ((iface != NULL)
  321.      && (inet_pton (AF_INET, iface, &id) <= 0))
  322.     {
  323.         msg_Err (obj, "invalid multicast interface address %s", iface);
  324.         free (iface);
  325.         goto error;
  326.     }
  327.     free (iface);
  328.     memset (&opt, 0, sizeof (opt));
  329.     if (src != NULL)
  330.     {
  331. # ifdef IP_ADD_SOURCE_MEMBERSHIP
  332.         cmd = IP_ADD_SOURCE_MEMBERSHIP;
  333.         opt.gsr4.imr_multiaddr = grp->sin_addr;
  334.         opt.gsr4.imr_sourceaddr = src->sin_addr;
  335.         opt.gsr4.imr_interface = id;
  336.         optlen = sizeof (opt.gsr4);
  337. # else
  338.         errno = ENOSYS;
  339.         goto error;
  340. # endif
  341.     }
  342.     else
  343.     {
  344.         cmd = IP_ADD_MEMBERSHIP;
  345.         opt.gr4.imr_multiaddr = grp->sin_addr;
  346.         opt.gr4.imr_interface = id;
  347.         optlen = sizeof (opt.gr4);
  348.     }
  349.     msg_Dbg (obj, "IP_ADD_%sMEMBERSHIP multicast request",
  350.              (src != NULL) ? "SOURCE_" : "");
  351.     if (setsockopt (fd, SOL_IP, cmd, &opt, optlen) == 0)
  352.         return 0;
  353. error:
  354. #endif
  355.     msg_Err (obj, "cannot join IPv4 multicast group (%m)");
  356.     return -1;
  357. }
  358. static int
  359. net_IPv6Join (vlc_object_t *obj, int fd, const struct sockaddr_in6 *src)
  360. {
  361. #ifdef IPV6_JOIN_GROUP
  362.     struct ipv6_mreq gr6;
  363.     memset (&gr6, 0, sizeof (gr6));
  364.     gr6.ipv6mr_interface = src->sin6_scope_id;
  365.     memcpy (&gr6.ipv6mr_multiaddr, &src->sin6_addr, 16);
  366.     msg_Dbg (obj, "IPV6_JOIN_GROUP multicast request");
  367.     if (!setsockopt (fd, SOL_IPV6, IPV6_JOIN_GROUP, &gr6, sizeof (gr6)))
  368.         return 0;
  369. #else
  370.     errno = ENOSYS;
  371. #endif
  372.     msg_Err (obj, "cannot join IPv6 any-source multicast group (%m)");
  373.     return -1;
  374. }
  375. #if defined (WIN32) && !defined (MCAST_JOIN_SOURCE_GROUP)
  376. /*
  377.  * I hate manual definitions: Error-prone. Portability hell.
  378.  * Developers shall use UP-TO-DATE compilers. Full point.
  379.  * If you remove the warning, you remove the whole ifndef.
  380.  */
  381. #  warning Your C headers are out-of-date. Please update.
  382. #  define MCAST_JOIN_GROUP 41
  383. struct group_req
  384. {
  385.     ULONG gr_interface;
  386.     struct sockaddr_storage gr_group;
  387. };
  388. #  define MCAST_JOIN_SOURCE_GROUP 45 /* from <ws2ipdef.h> */
  389. struct group_source_req
  390. {
  391.     uint32_t gsr_interface;
  392.     struct sockaddr_storage gsr_group;
  393.     struct sockaddr_storage gsr_source;
  394. };
  395. #endif
  396. /**
  397.  * IP-agnostic multicast join,
  398.  * with fallback to old APIs, and fallback from SSM to ASM.
  399.  */
  400. static int
  401. net_SourceSubscribe (vlc_object_t *obj, int fd,
  402.                      const struct sockaddr *src, socklen_t srclen,
  403.                      const struct sockaddr *grp, socklen_t grplen)
  404. {
  405.     int level, iid = 0;
  406.     char *iface = var_CreateGetNonEmptyString (obj, "miface");
  407.     if (iface != NULL)
  408.     {
  409.         iid = if_nametoindex (iface);
  410.         if (iid == 0)
  411.         {
  412.             msg_Err (obj, "invalid multicast interface: %s", iface);
  413.             free (iface);
  414.             return -1;
  415.         }
  416.         free (iface);
  417.     }
  418.     switch (grp->sa_family)
  419.     {
  420. #ifdef AF_INET6
  421.         case AF_INET6:
  422.             level = SOL_IPV6;
  423.             if (((const struct sockaddr_in6 *)grp)->sin6_scope_id)
  424.                 iid = ((const struct sockaddr_in6 *)grp)->sin6_scope_id;
  425.             break;
  426. #endif
  427.         case AF_INET:
  428.             level = SOL_IP;
  429.             break;
  430.         default:
  431.             errno = EAFNOSUPPORT;
  432.             return -1;
  433.     }
  434.     if (src != NULL)
  435.         switch (src->sa_family)
  436.         {
  437. #ifdef AF_INET6
  438.             case AF_INET6:
  439.                 if (memcmp (&((const struct sockaddr_in6 *)src)->sin6_addr,
  440.                             &in6addr_any, sizeof (in6addr_any)) == 0)
  441.                     src = NULL;
  442.             break;
  443. #endif
  444.             case AF_INET:
  445.                 if (((const struct sockaddr_in *)src)->sin_addr.s_addr
  446.                      == INADDR_ANY)
  447.                     src = NULL;
  448.                 break;
  449.         }
  450.     /* Agnostic ASM/SSM multicast join */
  451. #ifdef MCAST_JOIN_SOURCE_GROUP
  452.     union
  453.     {
  454.         struct group_req gr;
  455.         struct group_source_req gsr;
  456.     } opt;
  457.     socklen_t optlen;
  458.     memset (&opt, 0, sizeof (opt));
  459.     if (src != NULL)
  460.     {
  461.         if ((grplen > sizeof (opt.gsr.gsr_group))
  462.          || (srclen > sizeof (opt.gsr.gsr_source)))
  463.             return -1;
  464.         opt.gsr.gsr_interface = iid;
  465.         memcpy (&opt.gsr.gsr_source, src, srclen);
  466.         memcpy (&opt.gsr.gsr_group,  grp, grplen);
  467.         optlen = sizeof (opt.gsr);
  468.     }
  469.     else
  470.     {
  471.         if (grplen > sizeof (opt.gr.gr_group))
  472.             return -1;
  473.         opt.gr.gr_interface = iid;
  474.         memcpy (&opt.gr.gr_group, grp, grplen);
  475.         optlen = sizeof (opt.gr);
  476.     }
  477.     msg_Dbg (obj, "Multicast %sgroup join request", src ? "source " : "");
  478.     if (setsockopt (fd, level,
  479.                     src ? MCAST_JOIN_SOURCE_GROUP : MCAST_JOIN_GROUP,
  480.                     (void *)&opt, optlen) == 0)
  481.         return 0;
  482. #endif
  483.     /* Fallback to IPv-specific APIs */
  484.     if ((src != NULL) && (src->sa_family != grp->sa_family))
  485.         return -1;
  486.     switch (grp->sa_family)
  487.     {
  488.         case AF_INET:
  489.             if ((grplen < sizeof (struct sockaddr_in))
  490.              || ((src != NULL) && (srclen < sizeof (struct sockaddr_in))))
  491.                 return -1;
  492.             if (net_IPv4Join (obj, fd, (const struct sockaddr_in *)src,
  493.                               (const struct sockaddr_in *)grp) == 0)
  494.                 return 0;
  495.             break;
  496. #ifdef AF_INET6
  497.         case AF_INET6:
  498.             if ((grplen < sizeof (struct sockaddr_in6))
  499.              || ((src != NULL) && (srclen < sizeof (struct sockaddr_in6))))
  500.                 return -1;
  501.             /* IPv6-specific SSM API does not exist. So if we're here
  502.              * it means IPv6 SSM is not supported on this OS and we
  503.              * directly fallback to ASM */
  504.             if (net_IPv6Join (obj, fd, (const struct sockaddr_in6 *)grp) == 0)
  505.                 return 0;
  506.             break;
  507. #endif
  508.     }
  509.     msg_Err (obj, "Multicast group join error (%m)");
  510.     if (src != NULL)
  511.     {
  512.         msg_Warn (obj, "Trying ASM instead of SSM...");
  513.         return net_Subscribe (obj, fd, grp, grplen);
  514.     }
  515.     msg_Err (obj, "Multicast not supported");
  516.     return -1;
  517. }
  518. int net_Subscribe (vlc_object_t *obj, int fd,
  519.                    const struct sockaddr *addr, socklen_t addrlen)
  520. {
  521.     return net_SourceSubscribe (obj, fd, NULL, 0, addr, addrlen);
  522. }
  523. static int net_SetDSCP( int fd, uint8_t dscp )
  524. {
  525.     struct sockaddr_storage addr;
  526.     if( getsockname( fd, (struct sockaddr *)&addr, &(socklen_t){ sizeof (addr) }) )
  527.         return -1;
  528.     int level, cmd;
  529.     switch( addr.ss_family )
  530.     {
  531. #ifdef IPV6_TCLASS
  532.         case AF_INET6:
  533.             level = SOL_IPV6;
  534.             cmd = IPV6_TCLASS;
  535.             break;
  536. #endif
  537.         case AF_INET:
  538.             level = SOL_IP;
  539.             cmd = IP_TOS;
  540.             break;
  541.         default:
  542. #ifdef ENOPROTOOPT
  543.             errno = ENOPROTOOPT;
  544. #endif
  545.             return -1;
  546.     }
  547.     return setsockopt( fd, level, cmd, &(int){ dscp }, sizeof (int));
  548. }
  549. /*****************************************************************************
  550.  * __net_ConnectDgram:
  551.  *****************************************************************************
  552.  * Open a datagram socket to send data to a defined destination, with an
  553.  * optional hop limit.
  554.  *****************************************************************************/
  555. int __net_ConnectDgram( vlc_object_t *p_this, const char *psz_host, int i_port,
  556.                         int i_hlim, int proto )
  557. {
  558.     struct addrinfo hints, *res, *ptr;
  559.     int             i_val, i_handle = -1;
  560.     bool      b_unreach = false;
  561.     if( i_hlim < 0 )
  562.         i_hlim = var_CreateGetInteger( p_this, "ttl" );
  563.     memset( &hints, 0, sizeof( hints ) );
  564.     hints.ai_socktype = SOCK_DGRAM;
  565.     msg_Dbg( p_this, "net: connecting to [%s]:%d", psz_host, i_port );
  566.     i_val = vlc_getaddrinfo( p_this, psz_host, i_port, &hints, &res );
  567.     if( i_val )
  568.     {
  569.         msg_Err( p_this, "cannot resolve [%s]:%d : %s", psz_host, i_port,
  570.                  vlc_gai_strerror( i_val ) );
  571.         return -1;
  572.     }
  573.     for( ptr = res; ptr != NULL; ptr = ptr->ai_next )
  574.     {
  575.         char *str;
  576.         int fd = net_Socket (p_this, ptr->ai_family, ptr->ai_socktype,
  577.                              proto ? proto : ptr->ai_protocol);
  578.         if (fd == -1)
  579.             continue;
  580. #if !defined( SYS_BEOS )
  581.         /* Increase the receive buffer size to 1/2MB (8Mb/s during 1/2s)
  582.         * to avoid packet loss caused by scheduling problems */
  583.         setsockopt (fd, SOL_SOCKET, SO_RCVBUF, &(int){ 0x80000 }, sizeof (int));
  584.         setsockopt (fd, SOL_SOCKET, SO_SNDBUF, &(int){ 0x80000 }, sizeof (int));
  585.         /* Allow broadcast sending */
  586.         setsockopt (fd, SOL_SOCKET, SO_BROADCAST, &(int){ 1 }, sizeof (int));
  587. #endif
  588.         if( i_hlim >= 0 )
  589.             net_SetMcastHopLimit( p_this, fd, ptr->ai_family, i_hlim );
  590.         str = var_CreateGetNonEmptyString (p_this, "miface");
  591.         if (str != NULL)
  592.         {
  593.             net_SetMcastOut (p_this, fd, ptr->ai_family, str, NULL);
  594.             free (str);
  595.         }
  596.         str = var_CreateGetNonEmptyString (p_this, "miface-addr");
  597.         if (str != NULL)
  598.         {
  599.             net_SetMcastOut (p_this, fd, ptr->ai_family, NULL, str);
  600.             free (str);
  601.         }
  602.         net_SetDSCP (fd, var_CreateGetInteger (p_this, "dscp"));
  603.         if( connect( fd, ptr->ai_addr, ptr->ai_addrlen ) == 0 )
  604.         {
  605.             /* success */
  606.             i_handle = fd;
  607.             break;
  608.         }
  609. #if defined( WIN32 ) || defined( UNDER_CE )
  610.         if( WSAGetLastError () == WSAENETUNREACH )
  611. #else
  612.         if( errno == ENETUNREACH )
  613. #endif
  614.             b_unreach = true;
  615.         else
  616.         {
  617.             msg_Warn( p_this, "%s port %d : %m", psz_host, i_port);
  618.             net_Close( fd );
  619.             continue;
  620.         }
  621.     }
  622.     vlc_freeaddrinfo( res );
  623.     if( i_handle == -1 )
  624.     {
  625.         if( b_unreach )
  626.             msg_Err( p_this, "Host %s port %d is unreachable", psz_host,
  627.                      i_port );
  628.         return -1;
  629.     }
  630.     return i_handle;
  631. }
  632. /*****************************************************************************
  633.  * __net_OpenDgram:
  634.  *****************************************************************************
  635.  * OpenDgram a datagram socket and return a handle
  636.  *****************************************************************************/
  637. int __net_OpenDgram( vlc_object_t *obj, const char *psz_bind, int i_bind,
  638.                      const char *psz_server, int i_server,
  639.                      int family, int protocol )
  640. {
  641.     if ((psz_server == NULL) || (psz_server[0] == ''))
  642.         return net_ListenSingle (obj, psz_bind, i_bind, family, protocol);
  643.     msg_Dbg (obj, "net: connecting to [%s]:%d from [%s]:%d",
  644.              psz_server, i_server, psz_bind, i_bind);
  645.     struct addrinfo hints, *loc, *rem;
  646.     int val;
  647.     memset (&hints, 0, sizeof (hints));
  648.     hints.ai_family = family;
  649.     hints.ai_socktype = SOCK_DGRAM;
  650.     val = vlc_getaddrinfo (obj, psz_server, i_server, &hints, &rem);
  651.     if (val)
  652.     {
  653.         msg_Err (obj, "cannot resolve %s port %d : %s", psz_bind, i_bind,
  654.                  vlc_gai_strerror (val));
  655.         return -1;
  656.     }
  657.     hints.ai_flags = AI_PASSIVE;
  658.     val = vlc_getaddrinfo (obj, psz_bind, i_bind, &hints, &loc);
  659.     if (val)
  660.     {
  661.         msg_Err (obj, "cannot resolve %s port %d : %s", psz_bind, i_bind,
  662.                  vlc_gai_strerror (val));
  663.         vlc_freeaddrinfo (rem);
  664.         return -1;
  665.     }
  666.     for (struct addrinfo *ptr = loc; ptr != NULL; ptr = ptr->ai_next)
  667.     {
  668.         int fd = net_Socket (obj, ptr->ai_family, ptr->ai_socktype,
  669.                              protocol ? protocol : ptr->ai_protocol);
  670.         if (fd == -1)
  671.             continue; // usually, address family not supported
  672.         fd = net_SetupDgramSocket( obj, fd, ptr );
  673.         if( fd == -1 )
  674.             continue;
  675.         val = -1;
  676.         for (struct addrinfo *ptr2 = rem; ptr2 != NULL; ptr2 = ptr2->ai_next)
  677.         {
  678.             if ((ptr2->ai_family != ptr->ai_family)
  679.              || (ptr2->ai_socktype != ptr->ai_socktype)
  680.              || (ptr2->ai_protocol != ptr->ai_protocol))
  681.                 continue;
  682.             if (net_SockAddrIsMulticast (ptr->ai_addr, ptr->ai_addrlen)
  683.               ? net_SourceSubscribe (obj, fd,
  684.                                      ptr2->ai_addr, ptr2->ai_addrlen,
  685.                                      ptr->ai_addr, ptr->ai_addrlen)
  686.               : connect (fd, ptr2->ai_addr, ptr2->ai_addrlen))
  687.             {
  688.                 msg_Err (obj, "cannot connect to %s port %d: %m",
  689.                          psz_server, i_server);
  690.                 continue;
  691.             }
  692.             val = fd;
  693.             break;
  694.         }
  695.         if (val != -1)
  696.             break;
  697.         net_Close (fd);
  698.     }
  699.     vlc_freeaddrinfo (rem);
  700.     vlc_freeaddrinfo (loc);
  701.     return val;
  702. }
  703. /**
  704.  * net_SetCSCov:
  705.  * Sets the send and receive checksum coverage of a socket:
  706.  * @param fd socket
  707.  * @param sendcov payload coverage of sent packets (bytes), -1 for full
  708.  * @param recvcov minimum payload coverage of received packets, -1 for full
  709.  */
  710. int net_SetCSCov (int fd, int sendcov, int recvcov)
  711. {
  712.     int type;
  713.     if (getsockopt (fd, SOL_SOCKET, SO_TYPE,
  714.                     &type, &(socklen_t){ sizeof (type) }))
  715.         return VLC_EGENERIC;
  716.     switch (type)
  717.     {
  718. #ifdef UDPLITE_RECV_CSCOV
  719.         case SOCK_DGRAM: /* UDP-Lite */
  720.             if (sendcov == -1)
  721.                 sendcov = 0;
  722.             else
  723.                 sendcov += 8; /* partial */
  724.             if (setsockopt (fd, SOL_UDPLITE, UDPLITE_SEND_CSCOV, &sendcov,
  725.                             sizeof (sendcov)))
  726.                 return VLC_EGENERIC;
  727.             if (recvcov == -1)
  728.                 recvcov = 0;
  729.             else
  730.                 recvcov += 8;
  731.             if (setsockopt (fd, SOL_UDPLITE, UDPLITE_RECV_CSCOV,
  732.                             &recvcov, sizeof (recvcov)))
  733.                 return VLC_EGENERIC;
  734.             return VLC_SUCCESS;
  735. #endif
  736. #ifdef DCCP_SOCKOPT_SEND_CSCOV
  737.         case SOCK_DCCP: /* DCCP and its ill-named socket type */
  738.             if ((sendcov == -1) || (sendcov > 56))
  739.                 sendcov = 0;
  740.             else
  741.                 sendcov = (sendcov + 3) / 4;
  742.             if (setsockopt (fd, SOL_DCCP, DCCP_SOCKOPT_SEND_CSCOV,
  743.                             &sendcov, sizeof (sendcov)))
  744.                 return VLC_EGENERIC;
  745.             if ((recvcov == -1) || (recvcov > 56))
  746.                 recvcov = 0;
  747.             else
  748.                 recvcov = (recvcov + 3) / 4;
  749.             if (setsockopt (fd, SOL_DCCP, DCCP_SOCKOPT_RECV_CSCOV,
  750.                             &recvcov, sizeof (recvcov)))
  751.                 return VLC_EGENERIC;
  752.             return VLC_SUCCESS;
  753. #endif
  754.     }
  755. #if !defined( UDPLITE_RECV_CSCOV ) && !defined( DCCP_SOCKOPT_SEND_CSCOV )
  756.     VLC_UNUSED(sendcov);
  757.     VLC_UNUSED(recvcov);
  758. #endif
  759.     return VLC_EGENERIC;
  760. }