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