From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 18/30] nbd: Less allocation during NBD_OPT_LIST
Date: Tue, 1 Nov 2016 17:29:31 +0100 [thread overview]
Message-ID: <1478017783-7703-19-git-send-email-pbonzini@redhat.com> (raw)
In-Reply-To: <1478017783-7703-1-git-send-email-pbonzini@redhat.com>
From: Eric Blake <eblake@redhat.com>
Since we know that the maximum name we are willing to accept
is small enough to stack-allocate, rework the iteration over
NBD_OPT_LIST responses to reuse a stack buffer rather than
allocating every time. Furthermore, we don't even have to
allocate if we know the server's length doesn't match what
we are searching for.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1476469998-28592-12-git-send-email-eblake@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
nbd/client.c | 139 ++++++++++++++++++++++++++++-------------------------------
1 file changed, 67 insertions(+), 72 deletions(-)
diff --git a/nbd/client.c b/nbd/client.c
index 5d94e34..0afb8be 100644
--- a/nbd/client.c
+++ b/nbd/client.c
@@ -254,19 +254,28 @@ static int nbd_handle_reply_err(QIOChannel *ioc, nbd_opt_reply *reply,
return result;
}
-static int nbd_receive_list(QIOChannel *ioc, char **name, Error **errp)
+/* Process another portion of the NBD_OPT_LIST reply. Set *@match if
+ * the current reply matches @want or if the server does not support
+ * NBD_OPT_LIST, otherwise leave @match alone. Return 0 if iteration
+ * is complete, positive if more replies are expected, or negative
+ * with @errp set if an unrecoverable error occurred. */
+static int nbd_receive_list(QIOChannel *ioc, const char *want, bool *match,
+ Error **errp)
{
nbd_opt_reply reply;
uint32_t len;
uint32_t namelen;
+ char name[NBD_MAX_NAME_SIZE + 1];
int error;
- *name = NULL;
if (nbd_receive_option_reply(ioc, NBD_OPT_LIST, &reply, errp) < 0) {
return -1;
}
error = nbd_handle_reply_err(ioc, &reply, errp);
if (error <= 0) {
+ /* The server did not support NBD_OPT_LIST, so set *match on
+ * the assumption that any name will be accepted. */
+ *match = true;
return error;
}
len = reply.length;
@@ -277,105 +286,91 @@ static int nbd_receive_list(QIOChannel *ioc, char **name, Error **errp)
nbd_send_opt_abort(ioc);
return -1;
}
- } else if (reply.type == NBD_REP_SERVER) {
- if (len < sizeof(namelen) || len > NBD_MAX_BUFFER_SIZE) {
- error_setg(errp, "incorrect option length %" PRIu32, len);
- nbd_send_opt_abort(ioc);
- return -1;
- }
- if (read_sync(ioc, &namelen, sizeof(namelen)) != sizeof(namelen)) {
- error_setg(errp, "failed to read option name length");
- nbd_send_opt_abort(ioc);
- return -1;
- }
- namelen = be32_to_cpu(namelen);
- len -= sizeof(namelen);
- if (len < namelen) {
- error_setg(errp, "incorrect option name length");
- nbd_send_opt_abort(ioc);
- return -1;
- }
- if (namelen > NBD_MAX_NAME_SIZE) {
- error_setg(errp, "export name length too long %" PRIu32, namelen);
- nbd_send_opt_abort(ioc);
- return -1;
- }
+ return 0;
+ } else if (reply.type != NBD_REP_SERVER) {
+ error_setg(errp, "Unexpected reply type %" PRIx32 " expected %x",
+ reply.type, NBD_REP_SERVER);
+ nbd_send_opt_abort(ioc);
+ return -1;
+ }
- *name = g_new0(char, namelen + 1);
- if (read_sync(ioc, *name, namelen) != namelen) {
- error_setg(errp, "failed to read export name");
- g_free(*name);
- *name = NULL;
- nbd_send_opt_abort(ioc);
- return -1;
- }
- (*name)[namelen] = '\0';
- len -= namelen;
+ if (len < sizeof(namelen) || len > NBD_MAX_BUFFER_SIZE) {
+ error_setg(errp, "incorrect option length %" PRIu32, len);
+ nbd_send_opt_abort(ioc);
+ return -1;
+ }
+ if (read_sync(ioc, &namelen, sizeof(namelen)) != sizeof(namelen)) {
+ error_setg(errp, "failed to read option name length");
+ nbd_send_opt_abort(ioc);
+ return -1;
+ }
+ namelen = be32_to_cpu(namelen);
+ len -= sizeof(namelen);
+ if (len < namelen) {
+ error_setg(errp, "incorrect option name length");
+ nbd_send_opt_abort(ioc);
+ return -1;
+ }
+ if (namelen != strlen(want)) {
if (drop_sync(ioc, len) != len) {
- error_setg(errp, "failed to read export description");
- g_free(*name);
- *name = NULL;
+ error_setg(errp, "failed to skip export name with wrong length");
nbd_send_opt_abort(ioc);
return -1;
}
- } else {
- error_setg(errp, "Unexpected reply type %" PRIx32 " expected %x",
- reply.type, NBD_REP_SERVER);
+ return 1;
+ }
+
+ assert(namelen < sizeof(name));
+ if (read_sync(ioc, name, namelen) != namelen) {
+ error_setg(errp, "failed to read export name");
+ nbd_send_opt_abort(ioc);
+ return -1;
+ }
+ name[namelen] = '\0';
+ len -= namelen;
+ if (drop_sync(ioc, len) != len) {
+ error_setg(errp, "failed to read export description");
nbd_send_opt_abort(ioc);
return -1;
}
+ if (!strcmp(name, want)) {
+ *match = true;
+ }
return 1;
}
+/* Return -1 on failure, 0 if wantname is an available export. */
static int nbd_receive_query_exports(QIOChannel *ioc,
const char *wantname,
Error **errp)
{
bool foundExport = false;
- TRACE("Querying export list");
+ TRACE("Querying export list for '%s'", wantname);
if (nbd_send_option_request(ioc, NBD_OPT_LIST, 0, NULL, errp) < 0) {
return -1;
}
TRACE("Reading available export names");
while (1) {
- char *name = NULL;
- int ret = nbd_receive_list(ioc, &name, errp);
+ int ret = nbd_receive_list(ioc, wantname, &foundExport, errp);
if (ret < 0) {
- g_free(name);
- name = NULL;
+ /* Server gave unexpected reply */
return -1;
+ } else if (ret == 0) {
+ /* Done iterating. */
+ if (!foundExport) {
+ error_setg(errp, "No export with name '%s' available",
+ wantname);
+ nbd_send_opt_abort(ioc);
+ return -1;
+ }
+ TRACE("Found desired export name '%s'", wantname);
+ return 0;
}
- if (ret == 0) {
- /* Server doesn't support export listing, so
- * we will just assume an export with our
- * wanted name exists */
- foundExport = true;
- break;
- }
- if (name == NULL) {
- TRACE("End of export name list");
- break;
- }
- if (g_str_equal(name, wantname)) {
- foundExport = true;
- TRACE("Found desired export name '%s'", name);
- } else {
- TRACE("Ignored export name '%s'", name);
- }
- g_free(name);
}
-
- if (!foundExport) {
- error_setg(errp, "No export with name '%s' available", wantname);
- nbd_send_opt_abort(ioc);
- return -1;
- }
-
- return 0;
}
static QIOChannel *nbd_receive_starttls(QIOChannel *ioc,
--
2.7.4
next prev parent reply other threads:[~2016-11-01 16:30 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-01 16:29 [Qemu-devel] [PULL v2 00/30] Misc patches for 2016-10-31 Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 01/30] checkpatch: tweak "struct should normally be const" warning Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 02/30] nbd: Use CoQueue for free_sema instead of CoMutex Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 03/30] qemu-error: remove dependency of stubs on monitor Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 04/30] tests: send error_report to test log Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 05/30] exec.c: ensure all AddressSpaceDispatch updates under RCU Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 06/30] exec.c: do not truncate non-empty memory backend file Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 07/30] exec.c: check memory backend file size with 'size' option Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 08/30] nbd: Add qemu-nbd -D for human-readable description Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 09/30] nbd: Treat flags vs. command type as separate fields Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 10/30] nbd: Rename NBDRequest to NBDRequestData Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 11/30] nbd: Rename NbdClientSession to NBDClientSession Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 12/30] nbd: Rename struct nbd_request and nbd_reply Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 13/30] nbd: Share common reply-sending code in server Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 14/30] nbd: Send message along with server NBD_REP_ERR errors Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 15/30] nbd: Share common option-sending code in client Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 16/30] nbd: Let server know when client gives up negotiation Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 17/30] nbd: Let client skip portions of server reply Paolo Bonzini
2016-11-01 16:29 ` Paolo Bonzini [this message]
2016-11-01 16:29 ` [Qemu-devel] [PULL 19/30] nbd: Support shorter handshake Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 20/30] nbd: Refactor conversion to errno to silence checkpatch Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 21/30] nbd: Improve server handling of shutdown requests Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 22/30] nbd: Implement NBD_CMD_WRITE_ZEROES on server Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 23/30] nbd: Implement NBD_CMD_WRITE_ZEROES on client Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 24/30] qemu-char: do not forward events through the mux until QEMU has started Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 25/30] slirp: fix CharDriver breakage Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 26/30] x86: add AVX512_4VNNIW and AVX512_4FMAPS features Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 27/30] checkpatch: allow spaces before parenthesis for 'coroutine_fn' Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 28/30] vl: exit qemu on guest panic if -no-shutdown is not set Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 29/30] docs/rcu.txt: Fix minor typo Paolo Bonzini
2016-11-01 16:29 ` [Qemu-devel] [PULL 30/30] main-loop: Suppress I/O thread warning under qtest Paolo Bonzini
2016-11-01 17:39 ` [Qemu-devel] [PULL v2 00/30] Misc patches for 2016-10-31 no-reply
2016-11-01 18:09 ` Peter Maydell
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=1478017783-7703-19-git-send-email-pbonzini@redhat.com \
--to=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).