* [PATCH] libxenlight: clone context to avoid GC corruption
@ 2009-12-02 22:09 Andres Lagar-Cavilla
2009-12-03 12:16 ` Stefano Stabellini
2009-12-03 15:11 ` Vincent Hanquez
0 siblings, 2 replies; 8+ messages in thread
From: Andres Lagar-Cavilla @ 2009-12-02 22:09 UTC (permalink / raw)
To: Stefano Stabellini, Vincent Hanquez,
xen-devel@lists.xensource.com
[-- Attachment #1: Type: text/plain, Size: 324 bytes --]
Provide a function to clone a context. This is necessary
because simply copying the structs will eventually
corrup the GC: maxsize is updated in the cloned context
but not in the originating one, yet they have the same
array of referenced pointers alloc_ptrs.
Signed-off-by: Andres Lagar-Cavilla <andres@lagarcavilla.com>
[-- Attachment #2: clone_context.patch --]
[-- Type: text/x-patch, Size: 4002 bytes --]
# HG changeset patch
# User Andres Lagar-Cavilla <andres@lagarcavilla.com>
# Date 1259791324 18000
# Node ID e8611d9965607659d2cb16864694983f35c2d83a
# Parent 684a4d0abc86dbded4ceda68f7b5e1b4806ff1d7
Provide a function to clone a context. This is necessary
because simply copying the structs will eventually
corrup the GC: maxsize is updated in the cloned context
but not in the originating one, yet they have the same
array of referenced pointers alloc_ptrs.
Signed-off-by: Andres Lagar-Cavilla <andres@lagarcavilla.com>
diff -r 684a4d0abc86 -r e8611d996560 libxl.c
--- a/libxl.c
+++ b/libxl.c
@@ -656,9 +656,16 @@ void dm_xenstore_record_pid(struct libxl
struct libxl_device_model_starting *starting = for_spawn;
struct libxl_ctx clone;
char *kvs[3];
- int rc;
+ int rc, cloned;
- clone = *ctx;
+ if (libxl_clone_context(ctx, &clone)) {
+ XL_LOG(ctx, XL_LOG_ERROR, "Out of memory when cloning context");
+ /* Throw a prayer fallback */
+ clone = *ctx;
+ cloned = 0;
+ } else {
+ cloned = 1;
+ }
clone.xsh = xs_daemon_open();
/* we mustn't use the parent's handle in the child */
@@ -669,6 +676,7 @@ void dm_xenstore_record_pid(struct libxl
if (rc) XL_LOG_ERRNO(&clone, XL_LOG_ERROR,
"Couldn't record device model pid %ld at %s/%s",
(unsigned long)innerchild, starting->dom_path, kvs);
+ if (cloned) libxl_discard_cloned_context(&clone);
xs_daemon_close(clone.xsh);
}
diff -r 684a4d0abc86 -r e8611d996560 libxl_device.c
--- a/libxl_device.c
+++ b/libxl_device.c
@@ -212,7 +212,12 @@ int libxl_devices_destroy(struct libxl_c
fd_set rfds;
struct timeval tv;
flexarray_t *toremove;
- struct libxl_ctx clone = *ctx;
+ struct libxl_ctx clone;
+
+ if (libxl_clone_context(ctx, &clone)) {
+ XL_LOG(ctx, XL_LOG_ERROR, "Out of memory when cloning context");
+ return ERROR_NOMEM;
+ }
clone.xsh = xs_daemon_open();
toremove = flexarray_make(16, 1);
@@ -220,6 +225,7 @@ int libxl_devices_destroy(struct libxl_c
l1 = libxl_xs_directory(&clone, XBT_NULL, path, &num1);
if (!l1) {
XL_LOG(&clone, XL_LOG_ERROR, "%s is empty", path);
+ libxl_discard_cloned_context(&clone);
xs_daemon_close(clone.xsh);
return -1;
}
@@ -269,6 +275,7 @@ int libxl_devices_destroy(struct libxl_c
xs_rm(clone.xsh, XBT_NULL, path);
}
flexarray_free(toremove);
+ libxl_discard_cloned_context(&clone);
xs_daemon_close(clone.xsh);
return 0;
}
diff -r 684a4d0abc86 -r e8611d996560 libxl_internal.c
--- a/libxl_internal.c
+++ b/libxl_internal.c
@@ -28,6 +28,28 @@ int libxl_error_set(struct libxl_ctx *ct
return 0;
}
+int libxl_clone_context(struct libxl_ctx *from, struct libxl_ctx *to)
+{
+ /* We could just copy the structs, but since
+ * maxsize is not a pointer we need to take care
+ * of our own GC. */
+ *to = *from;
+ to->alloc_ptrs = NULL;
+ to->alloc_maxsize = 256;
+ to->alloc_ptrs = calloc(to->alloc_maxsize, sizeof(void *));
+ if (!to->alloc_ptrs)
+ return ERROR_NOMEM;
+ return 0;
+}
+
+void libxl_discard_cloned_context(struct libxl_ctx *ctx)
+{
+ /* We only need to worry about GC-related fields */
+ (void)libxl_ctx_free(ctx);
+ if (ctx->alloc_ptrs)
+ free(ctx->alloc_ptrs);
+}
+
int libxl_ptr_add(struct libxl_ctx *ctx, void *ptr)
{
int i;
diff -r 684a4d0abc86 -r e8611d996560 libxl_internal.h
--- a/libxl_internal.h
+++ b/libxl_internal.h
@@ -63,6 +63,8 @@ typedef struct {
#define PRINTF_ATTRIBUTE(x, y) __attribute__((format(printf, x, y)))
/* memory allocation tracking/helpers */
+int libxl_clone_context(struct libxl_ctx *from, struct libxl_ctx *to);
+void libxl_discard_cloned_context(struct libxl_ctx *ctx);
int libxl_ptr_add(struct libxl_ctx *ctx, void *ptr);
int libxl_free(struct libxl_ctx *ctx, void *ptr);
int libxl_free_all(struct libxl_ctx *ctx);
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH] libxenlight: clone context to avoid GC corruption
2009-12-02 22:09 [PATCH] libxenlight: clone context to avoid GC corruption Andres Lagar-Cavilla
@ 2009-12-03 12:16 ` Stefano Stabellini
2009-12-03 12:20 ` Stefano Stabellini
2009-12-03 15:11 ` Vincent Hanquez
1 sibling, 1 reply; 8+ messages in thread
From: Stefano Stabellini @ 2009-12-03 12:16 UTC (permalink / raw)
To: Andres Lagar-Cavilla
Cc: xen-devel@lists.xensource.com, Vincent Hanquez,
Stefano Stabellini
On Wed, 2 Dec 2009, Andres Lagar-Cavilla wrote:
> Provide a function to clone a context. This is necessary
> because simply copying the structs will eventually
> corrup the GC: maxsize is updated in the cloned context
> but not in the originating one, yet they have the same
> array of referenced pointers alloc_ptrs.
>
> Signed-off-by: Andres Lagar-Cavilla <andres@lagarcavilla.com>
>
>
Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] libxenlight: clone context to avoid GC corruption
2009-12-03 12:16 ` Stefano Stabellini
@ 2009-12-03 12:20 ` Stefano Stabellini
2009-12-03 13:57 ` Andres Lagar-Cavilla
0 siblings, 1 reply; 8+ messages in thread
From: Stefano Stabellini @ 2009-12-03 12:20 UTC (permalink / raw)
To: Stefano Stabellini
Cc: Andres Lagar-Cavilla, xen-devel@lists.xensource.com,
Vincent Hanquez
On Thu, 3 Dec 2009, Stefano Stabellini wrote:
> On Wed, 2 Dec 2009, Andres Lagar-Cavilla wrote:
> > Provide a function to clone a context. This is necessary
> > because simply copying the structs will eventually
> > corrup the GC: maxsize is updated in the cloned context
> > but not in the originating one, yet they have the same
> > array of referenced pointers alloc_ptrs.
> >
> > Signed-off-by: Andres Lagar-Cavilla <andres@lagarcavilla.com>
> >
> >
>
> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
>
Actually I missed one thing: I think you should move
clone.xsh = xs_daemon_open();
into libxl_clone_context and
xs_daemon_close(clone.xsh);
into libxl_discard_cloned_context.
The rest is fine, thanks for finding and fixing this bug!
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] libxenlight: clone context to avoid GC corruption
2009-12-03 12:20 ` Stefano Stabellini
@ 2009-12-03 13:57 ` Andres Lagar-Cavilla
2009-12-03 14:34 ` Stefano Stabellini
0 siblings, 1 reply; 8+ messages in thread
From: Andres Lagar-Cavilla @ 2009-12-03 13:57 UTC (permalink / raw)
To: Stefano Stabellini; +Cc: xen-devel@lists.xensource.com
[-- Attachment #1: Type: text/plain, Size: 1160 bytes --]
All right, I cut this patch. There's a function to clone a context, and
there's a function to clone a context and open a new xenstore handle.
And there are the 'discard' counterparts.
Ack/Nack them and I'll resubmit the remaining two patches still in the
pipeline.
Thanks for reviewing everything else
Andres
Stefano Stabellini wrote:
> On Thu, 3 Dec 2009, Stefano Stabellini wrote:
>
>> On Wed, 2 Dec 2009, Andres Lagar-Cavilla wrote:
>>
>>> Provide a function to clone a context. This is necessary
>>> because simply copying the structs will eventually
>>> corrup the GC: maxsize is updated in the cloned context
>>> but not in the originating one, yet they have the same
>>> array of referenced pointers alloc_ptrs.
>>>
>>> Signed-off-by: Andres Lagar-Cavilla <andres@lagarcavilla.com>
>>>
>>>
>>>
>> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
>>
>>
>
> Actually I missed one thing: I think you should move
>
> clone.xsh = xs_daemon_open();
>
> into libxl_clone_context and
>
> xs_daemon_close(clone.xsh);
>
> into libxl_discard_cloned_context.
>
> The rest is fine, thanks for finding and fixing this bug!
>
[-- Attachment #2: clone_context.patch --]
[-- Type: text/x-patch, Size: 4693 bytes --]
# HG changeset patch
# User Andres Lagar-Cavilla <andres@lagarcavilla.com>
# Date 1259848013 18000
# Node ID eeb2f35cd9a7a5a6c4e38c1ec5995524035375fa
# Parent 684a4d0abc86dbded4ceda68f7b5e1b4806ff1d7
Provide a function to clone a context. This is necessary
because simply copying the structs will eventually
corrup the GC: maxsize is updated in the cloned context
but not in the originating, yet they have the same array
of referenced pointers alloc_ptrs.
Signed-off-by: Andres Lagar-Cavilla <andres@lagarcavilla.com>
diff -r 684a4d0abc86 -r eeb2f35cd9a7 libxl.c
--- a/libxl.c
+++ b/libxl.c
@@ -656,10 +656,17 @@ void dm_xenstore_record_pid(struct libxl
struct libxl_device_model_starting *starting = for_spawn;
struct libxl_ctx clone;
char *kvs[3];
- int rc;
+ int rc, cloned;
- clone = *ctx;
- clone.xsh = xs_daemon_open();
+ if (libxl_clone_context_xs(ctx, &clone)) {
+ XL_LOG(ctx, XL_LOG_ERROR, "Out of memory when cloning context");
+ /* Throw a prayer fallback */
+ clone = *ctx;
+ clone.xsh = xs_daemon_open();
+ cloned = 0;
+ } else {
+ cloned = 1;
+ }
/* we mustn't use the parent's handle in the child */
kvs[0] = "image/device-model-pid";
@@ -669,7 +676,11 @@ void dm_xenstore_record_pid(struct libxl
if (rc) XL_LOG_ERRNO(&clone, XL_LOG_ERROR,
"Couldn't record device model pid %ld at %s/%s",
(unsigned long)innerchild, starting->dom_path, kvs);
- xs_daemon_close(clone.xsh);
+ if (cloned) {
+ libxl_discard_cloned_context_xs(&clone);
+ } else {
+ xs_daemon_close(clone.xsh);
+ }
}
static int libxl_vfb_and_vkb_from_device_model_info(struct libxl_ctx *ctx,
diff -r 684a4d0abc86 -r eeb2f35cd9a7 libxl_device.c
--- a/libxl_device.c
+++ b/libxl_device.c
@@ -212,15 +212,19 @@ int libxl_devices_destroy(struct libxl_c
fd_set rfds;
struct timeval tv;
flexarray_t *toremove;
- struct libxl_ctx clone = *ctx;
+ struct libxl_ctx clone;
- clone.xsh = xs_daemon_open();
+ if (libxl_clone_context_xs(ctx, &clone)) {
+ XL_LOG(ctx, XL_LOG_ERROR, "Out of memory when cloning context");
+ return ERROR_NOMEM;
+ }
+
toremove = flexarray_make(16, 1);
path = libxl_sprintf(&clone, "/local/domain/%d/device", domid);
l1 = libxl_xs_directory(&clone, XBT_NULL, path, &num1);
if (!l1) {
XL_LOG(&clone, XL_LOG_ERROR, "%s is empty", path);
- xs_daemon_close(clone.xsh);
+ libxl_discard_cloned_context_xs(&clone);
return -1;
}
for (i = 0; i < num1; i++) {
@@ -269,7 +273,7 @@ int libxl_devices_destroy(struct libxl_c
xs_rm(clone.xsh, XBT_NULL, path);
}
flexarray_free(toremove);
- xs_daemon_close(clone.xsh);
+ libxl_discard_cloned_context_xs(&clone);
return 0;
}
diff -r 684a4d0abc86 -r eeb2f35cd9a7 libxl_internal.c
--- a/libxl_internal.c
+++ b/libxl_internal.c
@@ -28,6 +28,28 @@ int libxl_error_set(struct libxl_ctx *ct
return 0;
}
+int libxl_clone_context(struct libxl_ctx *from, struct libxl_ctx *to)
+{
+ /* We could just copy the structs, but since
+ * maxsize is not a pointer we need to take care
+ * of our own GC. */
+ *to = *from;
+ to->alloc_ptrs = NULL;
+ to->alloc_maxsize = 256;
+ to->alloc_ptrs = calloc(to->alloc_maxsize, sizeof(void *));
+ if (!to->alloc_ptrs)
+ return ERROR_NOMEM;
+ return 0;
+}
+
+void libxl_discard_cloned_context(struct libxl_ctx *ctx)
+{
+ /* We only need to worry about GC-related fields */
+ (void)libxl_ctx_free(ctx);
+ if (ctx->alloc_ptrs)
+ free(ctx->alloc_ptrs);
+}
+
int libxl_ptr_add(struct libxl_ctx *ctx, void *ptr)
{
int i;
diff -r 684a4d0abc86 -r eeb2f35cd9a7 libxl_internal.h
--- a/libxl_internal.h
+++ b/libxl_internal.h
@@ -63,6 +63,23 @@ typedef struct {
#define PRINTF_ATTRIBUTE(x, y) __attribute__((format(printf, x, y)))
/* memory allocation tracking/helpers */
+int libxl_clone_context(struct libxl_ctx *from, struct libxl_ctx *to);
+static inline int libxl_clone_context_xs(
+ struct libxl_ctx *from, struct libxl_ctx *to)
+{
+ int rc;
+ rc = libxl_clone_context(from, to);
+ if (rc) return rc;
+ to->xsh = xs_daemon_open();
+ return 0;
+}
+void libxl_discard_cloned_context(struct libxl_ctx *ctx);
+static inline void libxl_discard_cloned_context_xs(
+ struct libxl_ctx *ctx)
+{
+ libxl_discard_cloned_context(ctx);
+ xs_daemon_close(ctx->xsh);
+}
int libxl_ptr_add(struct libxl_ctx *ctx, void *ptr);
int libxl_free(struct libxl_ctx *ctx, void *ptr);
int libxl_free_all(struct libxl_ctx *ctx);
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH] libxenlight: clone context to avoid GC corruption
2009-12-03 13:57 ` Andres Lagar-Cavilla
@ 2009-12-03 14:34 ` Stefano Stabellini
0 siblings, 0 replies; 8+ messages in thread
From: Stefano Stabellini @ 2009-12-03 14:34 UTC (permalink / raw)
To: Andres Lagar-Cavilla; +Cc: xen-devel@lists.xensource.com, Stefano Stabellini
On Thu, 3 Dec 2009, Andres Lagar-Cavilla wrote:
> All right, I cut this patch. There's a function to clone a context, and
> there's a function to clone a context and open a new xenstore handle.
> And there are the 'discard' counterparts.
> Ack/Nack them and I'll resubmit the remaining two patches still in the
> pipeline.
Good job.
Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] libxenlight: clone context to avoid GC corruption
2009-12-02 22:09 [PATCH] libxenlight: clone context to avoid GC corruption Andres Lagar-Cavilla
2009-12-03 12:16 ` Stefano Stabellini
@ 2009-12-03 15:11 ` Vincent Hanquez
2009-12-03 15:18 ` Stefano Stabellini
2009-12-03 15:18 ` andres
1 sibling, 2 replies; 8+ messages in thread
From: Vincent Hanquez @ 2009-12-03 15:11 UTC (permalink / raw)
To: Andres Lagar-Cavilla
Cc: xen-devel@lists.xensource.com, Vincent Hanquez,
Stefano Stabellini
On Wed, Dec 02, 2009 at 10:09:10PM +0000, Andres Lagar-Cavilla wrote:
> Provide a function to clone a context. This is necessary
> because simply copying the structs will eventually
> corrup the GC: maxsize is updated in the cloned context
> but not in the originating one, yet they have the same
> array of referenced pointers alloc_ptrs.
I think this doesn't answer the question of why you need this function
at all. I don't think you should clone the context nor share it.
--
Vincent
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] libxenlight: clone context to avoid GC corruption
2009-12-03 15:11 ` Vincent Hanquez
@ 2009-12-03 15:18 ` Stefano Stabellini
2009-12-03 15:18 ` andres
1 sibling, 0 replies; 8+ messages in thread
From: Stefano Stabellini @ 2009-12-03 15:18 UTC (permalink / raw)
To: Vincent Hanquez
Cc: Andres Lagar-Cavilla, xen-devel@lists.xensource.com,
Stefano Stabellini
On Thu, 3 Dec 2009, Vincent Hanquez wrote:
> On Wed, Dec 02, 2009 at 10:09:10PM +0000, Andres Lagar-Cavilla wrote:
> > Provide a function to clone a context. This is necessary
> > because simply copying the structs will eventually
> > corrup the GC: maxsize is updated in the cloned context
> > but not in the originating one, yet they have the same
> > array of referenced pointers alloc_ptrs.
>
> I think this doesn't answer the question of why you need this function
> at all. I don't think you should clone the context nor share it.
>
At the moment we need to clone the context in few places to open a new
xenstore connection and add temporary watches on xenstore nodes to
synchronously wait for events.
It is a simple solution to avoid conflicts when reading watches and I
think is OK as long as we don't have too many of these temporary watches
(we only have two places right now).
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] libxenlight: clone context to avoid GC corruption
2009-12-03 15:11 ` Vincent Hanquez
2009-12-03 15:18 ` Stefano Stabellini
@ 2009-12-03 15:18 ` andres
1 sibling, 0 replies; 8+ messages in thread
From: andres @ 2009-12-03 15:18 UTC (permalink / raw)
To: Vincent Hanquez; +Cc: xen-devel@lists.xensource.com, Stefano Stabellini
Well. I'm just a humble contributor :)
But if you feel like nacking this patch, it'd be nice if you provided
either a new "GC", or an alternate way to keep using the old "GC" while
using a separate xenstore handle in functions like libxl_xs_read. Or an
alternate solution to the watch problem.
Thanks,
Andres
> On Wed, Dec 02, 2009 at 10:09:10PM +0000, Andres Lagar-Cavilla wrote:
>> Provide a function to clone a context. This is necessary
>> because simply copying the structs will eventually
>> corrup the GC: maxsize is updated in the cloned context
>> but not in the originating one, yet they have the same
>> array of referenced pointers alloc_ptrs.
>
> I think this doesn't answer the question of why you need this function
> at all. I don't think you should clone the context nor share it.
>
> --
> Vincent
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2009-12-03 15:18 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-02 22:09 [PATCH] libxenlight: clone context to avoid GC corruption Andres Lagar-Cavilla
2009-12-03 12:16 ` Stefano Stabellini
2009-12-03 12:20 ` Stefano Stabellini
2009-12-03 13:57 ` Andres Lagar-Cavilla
2009-12-03 14:34 ` Stefano Stabellini
2009-12-03 15:11 ` Vincent Hanquez
2009-12-03 15:18 ` Stefano Stabellini
2009-12-03 15:18 ` andres
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.