From: Julien Grall <julien.grall@citrix.com>
To: xen-devel@lists.xen.org
Cc: Julien Grall <julien.grall@citrix.com>, Ian.Jackson@eu.citrix.com
Subject: [PATCH] libxenstore: filter watch events in libxenstore when we unwatch
Date: Wed, 19 Sep 2012 11:05:47 +0100 [thread overview]
Message-ID: <1348049147-16752-1-git-send-email-julien.grall@citrix.com> (raw)
XenStore puts in queued watch events via a thread and notifies the user.
Sometimes xs_unwatch is called before all related message is read. The use
case is non-threaded libevent, we have two event A and B:
- Event A will destroy something and call xs_unwatch;
- Event B is used to notify that a node has changed in XenStore.
As the event is called one by one, event A can be handled before event B.
So on next xs_watch_read the user could retrieve an unwatch token and
a segfault occured if the token store the pointer of the structure
(ie: "backend:0xcafe").
Signed-off-by: Julien Grall <julien.grall@citrix.com>
---
tools/xenstore/xs.c | 41 ++++++++++++++++++++++++++++++++++++++++-
1 files changed, 40 insertions(+), 1 deletions(-)
diff --git a/tools/xenstore/xs.c b/tools/xenstore/xs.c
index b951015..31aad14 100644
--- a/tools/xenstore/xs.c
+++ b/tools/xenstore/xs.c
@@ -855,14 +855,53 @@ char **xs_read_watch(struct xs_handle *h, unsigned int *num)
bool xs_unwatch(struct xs_handle *h, const char *path, const char *token)
{
struct iovec iov[2];
+ struct xs_stored_msg *msg, *tmsg;
+ bool res;
+ char *strings;
+ unsigned int num_strings, i;
+ char c;
iov[0].iov_base = (char *)path;
iov[0].iov_len = strlen(path) + 1;
iov[1].iov_base = (char *)token;
iov[1].iov_len = strlen(token) + 1;
- return xs_bool(xs_talkv(h, XBT_NULL, XS_UNWATCH, iov,
+ res = xs_bool(xs_talkv(h, XBT_NULL, XS_UNWATCH, iov,
ARRAY_SIZE(iov), NULL));
+
+ /* Filter the watch list to remove potential message */
+ mutex_lock(&h->watch_mutex);
+
+ if (list_empty(&h->watch_list)) {
+ mutex_unlock(&h->watch_mutex);
+ return res;
+ }
+
+ list_for_each_entry_safe(msg, tmsg, &h->watch_list, list) {
+ assert(msg->hdr.type == XS_WATCH_EVENT);
+
+ strings = msg->body;
+ num_strings = xs_count_strings(strings, msg->hdr.len);
+
+ for (i = 0; i < num_strings; i++) {
+ if (i == XS_WATCH_TOKEN && !strcmp (token, strings)) {
+ list_del(&msg->list);
+ free(msg);
+ break;
+ }
+ strings = strings + strlen (strings) + 1;
+ }
+ }
+
+ /* Clear the pipe token if there are no more pending watches. */
+ if (list_empty(&h->watch_list) && (h->watch_pipe[0] != -1)) {
+ while (read(h->watch_pipe[0], &c, 1) != 1)
+ continue;
+ }
+
+ mutex_unlock(&h->watch_mutex);
+
+ return res;
}
/* Start a transaction: changes by others will not be seen during this
--
Julien Grall
next reply other threads:[~2012-09-19 10:05 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-19 10:05 Julien Grall [this message]
2012-09-21 15:45 ` [PATCH] libxenstore: filter watch events in libxenstore when we unwatch Ian Jackson
2012-09-21 16:21 ` Julien Grall
2012-09-21 16:28 ` Ian Jackson
2012-09-22 17:11 ` Julien Grall
2012-09-24 11:11 ` Ian Jackson
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=1348049147-16752-1-git-send-email-julien.grall@citrix.com \
--to=julien.grall@citrix.com \
--cc=Ian.Jackson@eu.citrix.com \
--cc=xen-devel@lists.xen.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).