hw/xen: Watches on XenStore transactions
Firing watches on the nodes that still exist is relatively easy; just walk the tree and look at the nodes with refcount of one. Firing watches on *deleted* nodes is more fun. We add 'modified_in_tx' and 'deleted_in_tx' flags to each node. Nodes with those flags cannot be shared, as they will always be unique to the transaction in which they were created. When xs_node_walk would need to *create* a node as scaffolding and it encounters a deleted_in_tx node, it can resurrect it simply by clearing its deleted_in_tx flag. If that node originally had any *data*, they're gone, and the modified_in_tx flag will have been set when it was first deleted. We then attempt to send appropriate watches when the transaction is committed, properly delete the deleted_in_tx nodes, and remove the modified_in_tx flag from the others. Signed-off-by: David Woodhouse <dwmw@amazon.co.uk> Reviewed-by: Paul Durrant <paul@xen.org>
This commit is contained in:
parent
7248b87cb0
commit
7cabbdb70d
2 changed files with 380 additions and 2 deletions
|
|
@ -347,7 +347,13 @@ static void do_test_xs_node_tx(bool fail, bool commit)
|
|||
} else {
|
||||
g_assert(!err);
|
||||
}
|
||||
g_assert(!watches->len);
|
||||
if (commit && !fail) {
|
||||
g_assert(!strcmp(watches->str,
|
||||
"some/relative/pathwatch"));
|
||||
g_string_truncate(watches, 0);
|
||||
} else {
|
||||
g_assert(!watches->len);
|
||||
}
|
||||
g_assert(s->nr_nodes == 7);
|
||||
|
||||
err = xs_impl_unwatch(s, DOMID_GUEST, "some", "watch",
|
||||
|
|
@ -386,6 +392,226 @@ static void test_xs_node_tx_succeed(void)
|
|||
do_test_xs_node_tx(false, true);
|
||||
}
|
||||
|
||||
static void test_xs_node_tx_rm(void)
|
||||
{
|
||||
XenstoreImplState *s = setup();
|
||||
GString *watches = g_string_new(NULL);
|
||||
GByteArray *data = g_byte_array_new();
|
||||
unsigned int tx_id = XBT_NULL;
|
||||
int err;
|
||||
|
||||
g_assert(s);
|
||||
|
||||
/* Set a watch */
|
||||
err = xs_impl_watch(s, DOMID_GUEST, "some", "watch",
|
||||
watch_cb, watches);
|
||||
g_assert(!err);
|
||||
g_assert(watches->len == strlen("somewatch"));
|
||||
g_assert(!strcmp(watches->str, "somewatch"));
|
||||
g_string_truncate(watches, 0);
|
||||
|
||||
/* Write something */
|
||||
err = write_str(s, DOMID_GUEST, XBT_NULL, "some/deep/dark/relative/path",
|
||||
"something");
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 9);
|
||||
g_assert(!strcmp(watches->str,
|
||||
"some/deep/dark/relative/pathwatch"));
|
||||
g_string_truncate(watches, 0);
|
||||
|
||||
/* Create a transaction */
|
||||
err = xs_impl_transaction_start(s, DOMID_GUEST, &tx_id);
|
||||
g_assert(!err);
|
||||
|
||||
/* Delete the tree in the transaction */
|
||||
err = xs_impl_rm(s, DOMID_GUEST, tx_id, "some/deep/dark");
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 9);
|
||||
g_assert(!watches->len);
|
||||
|
||||
err = xs_impl_read(s, DOMID_GUEST, XBT_NULL, "some/deep/dark/relative/path",
|
||||
data);
|
||||
g_assert(!err);
|
||||
g_assert(data->len == strlen("something"));
|
||||
g_assert(!memcmp(data->data, "something", data->len));
|
||||
g_byte_array_set_size(data, 0);
|
||||
|
||||
/* Commit the transaction */
|
||||
err = xs_impl_transaction_end(s, DOMID_GUEST, tx_id, true);
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 6);
|
||||
|
||||
g_assert(!strcmp(watches->str, "some/deep/darkwatch"));
|
||||
g_string_truncate(watches, 0);
|
||||
|
||||
/* Now the node is gone */
|
||||
err = xs_impl_read(s, DOMID_GUEST, XBT_NULL, "some/deep/dark/relative/path",
|
||||
data);
|
||||
g_assert(err == ENOENT);
|
||||
g_byte_array_unref(data);
|
||||
|
||||
err = xs_impl_unwatch(s, DOMID_GUEST, "some", "watch",
|
||||
watch_cb, watches);
|
||||
g_assert(!err);
|
||||
|
||||
g_string_free(watches, true);
|
||||
xs_impl_delete(s);
|
||||
}
|
||||
|
||||
static void test_xs_node_tx_resurrect(void)
|
||||
{
|
||||
XenstoreImplState *s = setup();
|
||||
GString *watches = g_string_new(NULL);
|
||||
GByteArray *data = g_byte_array_new();
|
||||
unsigned int tx_id = XBT_NULL;
|
||||
int err;
|
||||
|
||||
g_assert(s);
|
||||
|
||||
/* Write something */
|
||||
err = write_str(s, DOMID_GUEST, XBT_NULL, "some/deep/dark/relative/path",
|
||||
"something");
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 9);
|
||||
|
||||
/* This node will be wiped and resurrected */
|
||||
err = write_str(s, DOMID_GUEST, XBT_NULL, "some/deep/dark",
|
||||
"foo");
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 9);
|
||||
|
||||
/* Set a watch */
|
||||
err = xs_impl_watch(s, DOMID_GUEST, "some", "watch",
|
||||
watch_cb, watches);
|
||||
g_assert(!err);
|
||||
g_assert(watches->len == strlen("somewatch"));
|
||||
g_assert(!strcmp(watches->str, "somewatch"));
|
||||
g_string_truncate(watches, 0);
|
||||
|
||||
/* Create a transaction */
|
||||
err = xs_impl_transaction_start(s, DOMID_GUEST, &tx_id);
|
||||
g_assert(!err);
|
||||
|
||||
/* Delete the tree in the transaction */
|
||||
err = xs_impl_rm(s, DOMID_GUEST, tx_id, "some/deep");
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 9);
|
||||
g_assert(!watches->len);
|
||||
|
||||
/* Resurrect part of it */
|
||||
err = write_str(s, DOMID_GUEST, tx_id, "some/deep/dark/different/path",
|
||||
"something");
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 9);
|
||||
|
||||
/* Commit the transaction */
|
||||
err = xs_impl_transaction_end(s, DOMID_GUEST, tx_id, true);
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 9);
|
||||
|
||||
/* lost data */
|
||||
g_assert(strstr(watches->str, "some/deep/dark/different/pathwatch"));
|
||||
/* topmost deleted */
|
||||
g_assert(strstr(watches->str, "some/deep/dark/relativewatch"));
|
||||
/* lost data */
|
||||
g_assert(strstr(watches->str, "some/deep/darkwatch"));
|
||||
|
||||
g_string_truncate(watches, 0);
|
||||
|
||||
/* Now the node is gone */
|
||||
err = xs_impl_read(s, DOMID_GUEST, XBT_NULL, "some/deep/dark/relative/path",
|
||||
data);
|
||||
g_assert(err == ENOENT);
|
||||
g_byte_array_unref(data);
|
||||
|
||||
err = xs_impl_unwatch(s, DOMID_GUEST, "some", "watch",
|
||||
watch_cb, watches);
|
||||
g_assert(!err);
|
||||
|
||||
g_string_free(watches, true);
|
||||
xs_impl_delete(s);
|
||||
}
|
||||
|
||||
static void test_xs_node_tx_resurrect2(void)
|
||||
{
|
||||
XenstoreImplState *s = setup();
|
||||
GString *watches = g_string_new(NULL);
|
||||
GByteArray *data = g_byte_array_new();
|
||||
unsigned int tx_id = XBT_NULL;
|
||||
int err;
|
||||
|
||||
g_assert(s);
|
||||
|
||||
/* Write something */
|
||||
err = write_str(s, DOMID_GUEST, XBT_NULL, "some/deep/dark/relative/path",
|
||||
"something");
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 9);
|
||||
|
||||
/* Another node to remain shared */
|
||||
err = write_str(s, DOMID_GUEST, XBT_NULL, "some/place/safe", "keepme");
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 11);
|
||||
|
||||
/* This node will be wiped and resurrected */
|
||||
err = write_str(s, DOMID_GUEST, XBT_NULL, "some/deep/dark",
|
||||
"foo");
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 11);
|
||||
|
||||
/* Set a watch */
|
||||
err = xs_impl_watch(s, DOMID_GUEST, "some", "watch",
|
||||
watch_cb, watches);
|
||||
g_assert(!err);
|
||||
g_assert(watches->len == strlen("somewatch"));
|
||||
g_assert(!strcmp(watches->str, "somewatch"));
|
||||
g_string_truncate(watches, 0);
|
||||
|
||||
/* Create a transaction */
|
||||
err = xs_impl_transaction_start(s, DOMID_GUEST, &tx_id);
|
||||
g_assert(!err);
|
||||
|
||||
/* Delete the tree in the transaction */
|
||||
err = xs_impl_rm(s, DOMID_GUEST, tx_id, "some/deep");
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 11);
|
||||
g_assert(!watches->len);
|
||||
|
||||
/* Resurrect part of it */
|
||||
err = write_str(s, DOMID_GUEST, tx_id, "some/deep/dark/relative/path",
|
||||
"something");
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 11);
|
||||
|
||||
/* Commit the transaction */
|
||||
err = xs_impl_transaction_end(s, DOMID_GUEST, tx_id, true);
|
||||
g_assert(!err);
|
||||
g_assert(s->nr_nodes == 11);
|
||||
|
||||
/* lost data */
|
||||
g_assert(strstr(watches->str, "some/deep/dark/relative/pathwatch"));
|
||||
/* lost data */
|
||||
g_assert(strstr(watches->str, "some/deep/darkwatch"));
|
||||
|
||||
g_string_truncate(watches, 0);
|
||||
|
||||
/* Now the node is gone */
|
||||
err = xs_impl_read(s, DOMID_GUEST, XBT_NULL, "some/deep/dark/relative/path",
|
||||
data);
|
||||
g_assert(!err);
|
||||
g_assert(data->len == strlen("something"));
|
||||
g_assert(!memcmp(data->data, "something", data->len));
|
||||
|
||||
g_byte_array_unref(data);
|
||||
|
||||
err = xs_impl_unwatch(s, DOMID_GUEST, "some", "watch",
|
||||
watch_cb, watches);
|
||||
g_assert(!err);
|
||||
|
||||
g_string_free(watches, true);
|
||||
xs_impl_delete(s);
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
g_test_init(&argc, &argv, NULL);
|
||||
|
|
@ -395,6 +621,9 @@ int main(int argc, char **argv)
|
|||
g_test_add_func("/xs_node/tx_abort", test_xs_node_tx_abort);
|
||||
g_test_add_func("/xs_node/tx_fail", test_xs_node_tx_fail);
|
||||
g_test_add_func("/xs_node/tx_succeed", test_xs_node_tx_succeed);
|
||||
g_test_add_func("/xs_node/tx_rm", test_xs_node_tx_rm);
|
||||
g_test_add_func("/xs_node/tx_resurrect", test_xs_node_tx_resurrect);
|
||||
g_test_add_func("/xs_node/tx_resurrect2", test_xs_node_tx_resurrect2);
|
||||
|
||||
return g_test_run();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue