qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2] net: fix multicast support with BSD (macOS) socket implem


From: Vitaly Cheptsov
Subject: Re: [PATCH v2] net: fix multicast support with BSD (macOS) socket implementations
Date: Wed, 18 May 2022 10:51:14 +0300

V2 version of the previous patch ensures to keep compatibility with non-Apple 
platforms to avoid any potential compatibility issues with e.g. Windows 
mentioned in the review.

> On 18 May 2022, at 10:39, Vitaly Cheptsov <cheptsov@ispras.ru> wrote:
> 
> Cc: Jason Wang <jasowang@redhat.com>
> Cc: Daniel P. Berrange <berrange@redhat.com>
> Cc: Philippe Mathieu-Daudé <f4bug@amsat.org>
> Signed-off-by: Vitaly Cheptsov <cheptsov@ispras.ru>
> ---
> net/socket.c | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
> 
> diff --git a/net/socket.c b/net/socket.c
> index bfd8596250..583f788a22 100644
> --- a/net/socket.c
> +++ b/net/socket.c
> @@ -239,6 +239,22 @@ static int net_socket_mcast_create(struct sockaddr_in 
> *mcastaddr,
>         return -1;
>     }
> 
> +#ifdef __APPLE__
> +    val = 1;
> +    ret = qemu_setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(val));
> +    if (ret < 0) {
> +        error_setg_errno(errp, errno,
> +                         "can't set socket option SO_REUSEPORT");
> +        goto fail;
> +    }
> +
> +    struct sockaddr_in bindaddr;
> +    memset(&bindaddr, 0, sizeof(bindaddr));
> +    bindaddr.sin_family = AF_INET;
> +    bindaddr.sin_addr.s_addr = htonl(INADDR_ANY);
> +    bindaddr.sin_port = mcastaddr->sin_port;
> +    ret = bind(fd, (struct sockaddr *)&bindaddr, sizeof(bindaddr));
> +#else
>     /* Allow multiple sockets to bind the same multicast ip and port by 
> setting
>      * SO_REUSEADDR. This is the only situation where SO_REUSEADDR should be 
> set
>      * on windows. Use socket_set_fast_reuse otherwise as it sets SO_REUSEADDR
> @@ -253,6 +269,8 @@ static int net_socket_mcast_create(struct sockaddr_in 
> *mcastaddr,
>     }
> 
>     ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
> +#endif
> +
>     if (ret < 0) {
>         error_setg_errno(errp, errno, "can't bind ip=%s to socket",
>                          inet_ntoa(mcastaddr->sin_addr));
> --
> 2.32.1 (Apple Git-133)
> 

Attachment: signature.asc
Description: Message signed with OpenPGP


reply via email to

[Prev in Thread] Current Thread [Next in Thread]