From: David Gibson <david@gibson.dropbear.id.au>
To: Laurent Vivier <lvivier@redhat.com>
Cc: qemu-devel@nongnu.org, "Jason Wang" <jasowang@redhat.com>,
"Greg Kurz" <groug@kaod.org>, "Thomas Huth" <thuth@redhat.com>,
"Eric Blake" <eblake@redhat.com>,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Markus Armbruster" <armbru@redhat.com>,
"Stefano Brivio" <sbrivio@redhat.com>
Subject: Re: [PATCH v9 11/16] net: dgram: add unix socket
Date: Wed, 28 Sep 2022 16:22:54 +1000 [thread overview]
Message-ID: <YzPoPttNJ9SotMEm@yekko> (raw)
In-Reply-To: <20220926195048.487915-12-lvivier@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 5720 bytes --]
On Mon, Sep 26, 2022 at 09:50:43PM +0200, Laurent Vivier wrote:
> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
> Reviewed-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Although one note below.
> ---
> net/dgram.c | 65 ++++++++++++++++++++++++++++++++++++++++++++++---
> qapi/net.json | 2 +-
> qemu-options.hx | 1 +
> 3 files changed, 64 insertions(+), 4 deletions(-)
>
> diff --git a/net/dgram.c b/net/dgram.c
> index 9fb01410304e..db631f6e2270 100644
> --- a/net/dgram.c
> +++ b/net/dgram.c
> @@ -84,8 +84,15 @@ static ssize_t net_dgram_receive_dgram(NetClientState *nc,
>
> do {
> if (s->dgram_dst) {
> - ret = sendto(s->fd, buf, size, 0, s->dgram_dst,
> - sizeof(struct sockaddr_in));
> + socklen_t len;
> +
> + if (s->dgram_dst->sa_family == AF_INET) {
> + len = sizeof(struct sockaddr_in);
> + } else {
> + len = sizeof(struct sockaddr_un);
> + }
It really seems like you're going to want a common helper for getting
the socklet, if not now, then pretty soon.
> + ret = sendto(s->fd, buf, size, 0, s->dgram_dst, len);
> } else {
> ret = send(s->fd, buf, size, 0);
> }
> @@ -450,7 +457,7 @@ static int net_dgram_init(NetClientState *peer,
> }
> } else {
> if (local->type != SOCKET_ADDRESS_TYPE_FD) {
> - error_setg(errp, "type=inet requires remote parameter");
> + error_setg(errp, "type=inet or unix require remote parameter");
> return -1;
> }
> }
> @@ -500,6 +507,58 @@ static int net_dgram_init(NetClientState *peer,
>
> break;
> }
> + case SOCKET_ADDRESS_TYPE_UNIX: {
> + struct sockaddr_un laddr_un, raddr_un;
> +
> + ret = unlink(local->u.q_unix.path);
> + if (ret < 0 && errno != ENOENT) {
> + error_setg_errno(errp, errno, "failed to unlink socket %s",
> + local->u.q_unix.path);
> + return -1;
> + }
> +
> + laddr_un.sun_family = PF_UNIX;
> + ret = snprintf(laddr_un.sun_path, sizeof(laddr_un.sun_path), "%s",
> + local->u.q_unix.path);
> + if (ret < 0 || ret >= sizeof(laddr_un.sun_path)) {
> + error_setg(errp, "UNIX socket path '%s' is too long",
> + local->u.q_unix.path);
> + error_append_hint(errp, "Path must be less than %zu bytes\n",
> + sizeof(laddr_un.sun_path));
> + }
> +
> + raddr_un.sun_family = PF_UNIX;
> + ret = snprintf(raddr_un.sun_path, sizeof(raddr_un.sun_path), "%s",
> + remote->u.q_unix.path);
> + if (ret < 0 || ret >= sizeof(raddr_un.sun_path)) {
> + error_setg(errp, "UNIX socket path '%s' is too long",
> + remote->u.q_unix.path);
> + error_append_hint(errp, "Path must be less than %zu bytes\n",
> + sizeof(raddr_un.sun_path));
> + }
> +
> + fd = qemu_socket(PF_UNIX, SOCK_DGRAM, 0);
> + if (fd < 0) {
> + error_setg_errno(errp, errno, "can't create datagram socket");
> + return -1;
> + }
> +
> + ret = bind(fd, (struct sockaddr *)&laddr_un, sizeof(laddr_un));
> + if (ret < 0) {
> + error_setg_errno(errp, errno, "can't bind unix=%s to socket",
> + laddr_un.sun_path);
> + closesocket(fd);
> + return -1;
> + }
> + qemu_socket_set_nonblock(fd);
> +
> + dgram_dst = g_malloc(sizeof(raddr_un));
> + memcpy(dgram_dst, &raddr_un, sizeof(raddr_un));
> +
> + info_str = g_strdup_printf("udp=%s:%s",
> + laddr_un.sun_path, raddr_un.sun_path);
> + break;
> + }
> case SOCKET_ADDRESS_TYPE_FD: {
> SocketAddress *sa;
> SocketAddressType sa_type;
> diff --git a/qapi/net.json b/qapi/net.json
> index bb96701a49a7..9cc4be7535bb 100644
> --- a/qapi/net.json
> +++ b/qapi/net.json
> @@ -600,7 +600,7 @@
> # @remote: remote address
> # @local: local address
> #
> -# Only SocketAddress types 'inet' and 'fd' are supported.
> +# Only SocketAddress types 'unix', 'inet' and 'fd' are supported.
> #
> # The code checks there is at least one of these options and reports an error
> # if not. If remote address is present and it's a multicast address, local
> diff --git a/qemu-options.hx b/qemu-options.hx
> index 7a34022ac651..5adb2e688c73 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -2744,6 +2744,7 @@ DEF("netdev", HAS_ARG, QEMU_OPTION_netdev,
> " configure a network backend to connect to a multicast maddr and port\n"
> " use ``local.host=addr`` to specify the host address to send packets from\n"
> "-netdev dgram,id=str,local.type=inet,local.host=addr,local.port=port[,remote.type=inet,remote.host=addr,remote.port=port]\n"
> + "-netdev dgram,id=str,local.type=unix,local.path=path[,remote.type=unix,remote.path=path]\n"
> "-netdev dgram,id=str,local.type=fd,local.str=h\n"
> " configure a network backend to connect to another network\n"
> " using an UDP tunnel\n"
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2022-09-28 6:43 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-26 19:50 [PATCH v9 00/16] qapi: net: add unix socket type support to netdev backend Laurent Vivier
2022-09-26 19:50 ` [PATCH v9 01/16] net: introduce convert_host_port() Laurent Vivier
2022-09-28 4:55 ` David Gibson
2022-09-26 19:50 ` [PATCH v9 02/16] net: remove the @errp argument of net_client_inits() Laurent Vivier
2022-09-26 19:50 ` [PATCH v9 03/16] net: simplify net_client_parse() error management Laurent Vivier
2022-09-28 4:56 ` David Gibson
2022-09-26 19:50 ` [PATCH v9 04/16] qapi: net: introduce a way to bypass qemu_opts_parse_noisily() Laurent Vivier
2022-09-26 19:50 ` [PATCH v9 05/16] qapi: net: add stream and dgram netdevs Laurent Vivier
2022-09-27 9:18 ` Markus Armbruster
2022-09-28 5:55 ` David Gibson
2022-10-05 10:08 ` Laurent Vivier
2022-10-06 0:37 ` David Gibson
2022-09-26 19:50 ` [PATCH v9 06/16] net: socket: Don't ignore EINVAL on netdev socket connection Laurent Vivier
2022-09-26 19:50 ` [PATCH v9 07/16] net: stream: " Laurent Vivier
2022-09-26 19:50 ` [PATCH v9 08/16] net: stream: add unix socket Laurent Vivier
2022-09-28 6:12 ` David Gibson
2022-10-05 13:38 ` Laurent Vivier
2022-10-06 0:39 ` David Gibson
2022-09-26 19:50 ` [PATCH v9 09/16] net: dgram: make dgram_dst generic Laurent Vivier
2022-09-28 6:17 ` David Gibson
2022-09-26 19:50 ` [PATCH v9 10/16] net: dgram: move mcast specific code from net_socket_fd_init_dgram() Laurent Vivier
2022-09-26 19:50 ` [PATCH v9 11/16] net: dgram: add unix socket Laurent Vivier
2022-09-28 6:22 ` David Gibson [this message]
2022-09-26 19:50 ` [PATCH v9 12/16] qemu-sockets: move and rename SocketAddress_to_str() Laurent Vivier
2022-09-26 19:50 ` [PATCH v9 13/16] qemu-sockets: update socket_uri() and socket_parse() to be consistent Laurent Vivier
2022-09-28 6:23 ` David Gibson
2022-09-26 19:50 ` [PATCH v9 14/16] net: stream: move to QIO to enable additional parameters Laurent Vivier
2022-09-26 19:50 ` [PATCH v9 15/16] tests/qtest: netdev: test stream and dgram backends Laurent Vivier
2022-09-27 10:01 ` Thomas Huth
2022-09-26 19:50 ` [PATCH v9 16/16] net: stream: add QAPI events to report connection state Laurent Vivier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YzPoPttNJ9SotMEm@yekko \
--to=david@gibson.dropbear.id.au \
--cc=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=dgilbert@redhat.com \
--cc=eblake@redhat.com \
--cc=groug@kaod.org \
--cc=jasowang@redhat.com \
--cc=lvivier@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=sbrivio@redhat.com \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.