From: Laurent Vivier <lvivier@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-devel@nongnu.org,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
"Jason Wang" <jasowang@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Eric Blake" <eblake@redhat.com>,
"Daniel P. Berrangé" <berrange@redhat.com>
Subject: Re: [RFC PATCH v4 10/11] qemu-sockets: introduce socket_uri()
Date: Fri, 1 Jul 2022 11:36:45 +0200 [thread overview]
Message-ID: <6656b169-b2f2-930f-0638-d8304732f17d@redhat.com> (raw)
In-Reply-To: <871qv7hfsm.fsf@pond.sub.org>
On 29/06/2022 13:26, Markus Armbruster wrote:
> Laurent Vivier <lvivier@redhat.com> writes:
>
>> Format a string URI from a SocketAddress.
>>
>> Original code from hmp-cmds.c:SocketAddress_to_str()
>>
>> Replace 'tcp:' by 'inet:' (because 'inet' can be also 'udp').
>
> This one's merely misleading.
>
>> Replace 'tcp:' by 'vsock:' with vsock socket type.
>
> This one's positively wrong: it makes a vsock address look like an inet
> address with CID misinterpreted as host. Goes back to commit 9aca82ba31
> "migration: Create socket-address parameter"
>
>> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
>> ---
>> include/qemu/sockets.h | 2 +-
>> monitor/hmp-cmds.c | 23 +----------------------
>> util/qemu-sockets.c | 20 ++++++++++++++++++++
>> 3 files changed, 22 insertions(+), 23 deletions(-)
>>
>> diff --git a/include/qemu/sockets.h b/include/qemu/sockets.h
>> index 47194b9732f8..3e2ae7e21705 100644
>> --- a/include/qemu/sockets.h
>> +++ b/include/qemu/sockets.h
>> @@ -41,6 +41,7 @@ int unix_listen(const char *path, Error **errp);
>> int unix_connect(const char *path, Error **errp);
>>
>> SocketAddress *socket_parse(const char *str, Error **errp);
>> +char *socket_uri(SocketAddress *addr);
>> int socket_connect(SocketAddress *addr, Error **errp);
>> int socket_listen(SocketAddress *addr, int num, Error **errp);
>> void socket_listen_cleanup(int fd, Error **errp);
>> @@ -123,5 +124,4 @@ SocketAddress *socket_address_flatten(SocketAddressLegacy *addr);
>> * Return 0 on success.
>> */
>> int socket_address_parse_named_fd(SocketAddress *addr, Error **errp);
>> -
>> #endif /* QEMU_SOCKETS_H */
>> diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c
>> index 47a27326eef7..eb0fe0a293b8 100644
>> --- a/monitor/hmp-cmds.c
>> +++ b/monitor/hmp-cmds.c
>> @@ -197,27 +197,6 @@ void hmp_info_mice(Monitor *mon, const QDict *qdict)
>> qapi_free_MouseInfoList(mice_list);
>> }
>>
>> -static char *SocketAddress_to_str(SocketAddress *addr)
>> -{
>> - switch (addr->type) {
>> - case SOCKET_ADDRESS_TYPE_INET:
>> - return g_strdup_printf("tcp:%s:%s",
>> - addr->u.inet.host,
>> - addr->u.inet.port);
>> - case SOCKET_ADDRESS_TYPE_UNIX:
>> - return g_strdup_printf("unix:%s",
>> - addr->u.q_unix.path);
>> - case SOCKET_ADDRESS_TYPE_FD:
>> - return g_strdup_printf("fd:%s", addr->u.fd.str);
>> - case SOCKET_ADDRESS_TYPE_VSOCK:
>> - return g_strdup_printf("tcp:%s:%s",
>> - addr->u.vsock.cid,
>> - addr->u.vsock.port);
>> - default:
>> - return g_strdup("unknown address type");
>> - }
>> -}
>> -
>> void hmp_info_migrate(Monitor *mon, const QDict *qdict)
>> {
>> MigrationInfo *info;
>> @@ -375,7 +354,7 @@ void hmp_info_migrate(Monitor *mon, const QDict *qdict)
>> monitor_printf(mon, "socket address: [\n");
>>
>> for (addr = info->socket_address; addr; addr = addr->next) {
>> - char *s = SocketAddress_to_str(addr->value);
>> + char *s = socket_uri(addr->value);
>> monitor_printf(mon, "\t%s\n", s);
>> g_free(s);
>> }
>> diff --git a/util/qemu-sockets.c b/util/qemu-sockets.c
>> index 13b5b197f9ea..4efc2ce8b074 100644
>> --- a/util/qemu-sockets.c
>> +++ b/util/qemu-sockets.c
>> @@ -1098,6 +1098,26 @@ int unix_connect(const char *path, Error **errp)
>> return sock;
>> }
>>
>> +char *socket_uri(SocketAddress *addr)
>> +{
>> + switch (addr->type) {
>> + case SOCKET_ADDRESS_TYPE_INET:
>> + return g_strdup_printf("inet:%s:%s",
>> + addr->u.inet.host,
>> + addr->u.inet.port);
>> + case SOCKET_ADDRESS_TYPE_UNIX:
>> + return g_strdup_printf("unix:%s",
>> + addr->u.q_unix.path);
>> + case SOCKET_ADDRESS_TYPE_FD:
>> + return g_strdup_printf("fd:%s", addr->u.fd.str);
>> + case SOCKET_ADDRESS_TYPE_VSOCK:
>> + return g_strdup_printf("vsock:%s:%s",
>> + addr->u.vsock.cid,
>> + addr->u.vsock.port);
>> + default:
>> + return g_strdup("unknown address type");
>> + }
>> +}
>>
>> SocketAddress *socket_parse(const char *str, Error **errp)
>> {
>
> Why do you move and rename? I'm not objecting, I just want to know the
> reason :)
I missed your comment before sending the v5.
I move and rename because this function is the counterpart for socket_parse(), so make the
name similar and put the function in the same place.
Perhaps it should also be improved to display all the options ("keep-alive", "mptcp", ...)
that socket_parse() is able to decode?
Thanks,
Laurent
next prev parent reply other threads:[~2022-07-01 9:41 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-23 15:53 [RFC PATCH v4 00/11] qapi: net: add unix socket type support to netdev backend Laurent Vivier
2022-06-23 15:53 ` [RFC PATCH v4 01/11] net: introduce convert_host_port() Laurent Vivier
2022-06-23 15:53 ` [RFC PATCH v4 02/11] net: remove the @errp argument of net_client_inits() Laurent Vivier
2022-06-23 15:53 ` [RFC PATCH v4 03/11] qapi: net: introduce a way to bypass qemu_opts_parse_noisily() Laurent Vivier
2022-06-24 8:45 ` Markus Armbruster
2022-06-23 15:53 ` [RFC PATCH v4 04/11] qapi: net: add stream and dgram netdevs Laurent Vivier
2022-06-24 9:41 ` Markus Armbruster
2022-06-27 14:36 ` Laurent Vivier
2022-06-29 11:13 ` Markus Armbruster
2022-06-24 9:53 ` Markus Armbruster
2022-06-23 15:53 ` [RFC PATCH v4 05/11] net: stream: Don't ignore EINVAL on netdev socket connection Laurent Vivier
2022-06-23 15:53 ` [RFC PATCH v4 06/11] net: stream: add unix socket Laurent Vivier
2022-06-23 15:53 ` [RFC PATCH v4 07/11] net: dgram: make dgram_dst generic Laurent Vivier
2022-06-23 15:53 ` [RFC PATCH v4 08/11] net: dgram: move mcast specific code from net_socket_fd_init_dgram() Laurent Vivier
2022-06-23 15:53 ` [RFC PATCH v4 09/11] net: dgram: add unix socket Laurent Vivier
2022-06-23 15:53 ` [RFC PATCH v4 10/11] qemu-sockets: introduce socket_uri() Laurent Vivier
2022-06-29 11:26 ` Markus Armbruster
2022-07-01 9:36 ` Laurent Vivier [this message]
2022-07-04 5:08 ` Markus Armbruster
2022-06-23 15:53 ` [RFC PATCH v4 11/11] net: stream: move to QIO 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=6656b169-b2f2-930f-0638-d8304732f17d@redhat.com \
--to=lvivier@redhat.com \
--cc=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=dgilbert@redhat.com \
--cc=eblake@redhat.com \
--cc=jasowang@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).