* ctx->pipe_child bug ?
@ 2011-01-21 7:39 Sukadev Bhattiprolu
[not found] ` <20110121073918.GA15385-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Sukadev Bhattiprolu @ 2011-01-21 7:39 UTC (permalink / raw)
To: Oren Laadan; +Cc: Containers
Oren,
In usercr commit 0dd3f9dacc0a08f5fb562e385a4e4244f453b41c we have the following
diff:
@@ -1868,10 +1902,16 @@ static int ckpt_fork_feeder(struct ckpt_ctx *ctx)
close(ctx->pipe_child[0]);
ctx->pipe_out = ctx->pipe_child[1];
+ ctx->pipe_child[0] = -1; /* mark unused */
+ ctx->pipe_child[1] = -1; /* mark unused */
---
ckpt_fork_feeder() creates the ->pipe_child[] pipe and clones the fork_feeder.
ckpt_do_feeder() does the following:
/* children pipe */
close(ctx->pipe_child[1]);
ctx->pipe_in = ctx->pipe_child[0];
/* feeder pipe */
close(ctx->pipe_feed[0]);
But if the fork_feeder process runs after the parent marks the fds unused, the
fork feeder would end up with a -1 in ctx->pipe_in right ?
The two threads don't share the fds but they do share the same VM and hence
changes to 'ctx' in one process is visible in the other right ?
Sukadev
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-01-22 18:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-21 7:39 ctx->pipe_child bug ? Sukadev Bhattiprolu
[not found] ` <20110121073918.GA15385-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2011-01-22 18:28 ` Oren Laadan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox