* [PATCH] Don't crash if we are self-checkpointing with a child
@ 2011-02-22 19:16 Dan Smith
[not found] ` <1298402216-3786-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Dan Smith @ 2011-02-22 19:16 UTC (permalink / raw)
To: containers-qjLDD68F18O7TbgM5vRIOg
If we are doing a self-checkpoint, we will not be frozen and the
get_freezer_task() will return NULL. If we have children, then
may_checkpoint_task() will attempt to make sure that they are in the
same cgroup as the freezer task, which will attempt to lock a NULL
task pointer (and thus go boom).
This patch just inserts a check before in_same_cgroup_freezer() call
to make sure we have a freezer task. The existing check is aimed to
determine if a task is not frozen alongside the root, so this addition
catches the case where it is impossible.
Signed-off-by: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
---
kernel/checkpoint/checkpoint.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/kernel/checkpoint/checkpoint.c b/kernel/checkpoint/checkpoint.c
index 0f46acf..33f53e9 100644
--- a/kernel/checkpoint/checkpoint.c
+++ b/kernel/checkpoint/checkpoint.c
@@ -262,8 +262,12 @@ static int may_checkpoint_task(struct ckpt_ctx *ctx, struct task_struct *t)
if (t->exit_state)
return 0;
- /* verify that all tasks belongs to same freezer cgroup */
- if (t != current && !in_same_cgroup_freezer(t, ctx->root_freezer)) {
+ /*
+ * verify that we have a freezer cgroup and that all tasks
+ * belong to the same one
+ */
+ if (t != current && (!ctx->root_freezer ||
+ !in_same_cgroup_freezer(t, ctx->root_freezer))) {
_ckpt_err(ctx, -EBUSY, "%(T)Not frozen or wrong cgroup\n");
return -EBUSY;
}
--
1.7.2.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Don't crash if we are self-checkpointing with a child
[not found] ` <1298402216-3786-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2011-02-25 15:46 ` Oren Laadan
0 siblings, 0 replies; 2+ messages in thread
From: Oren Laadan @ 2011-02-25 15:46 UTC (permalink / raw)
To: Dan Smith; +Cc: containers-qjLDD68F18O7TbgM5vRIOg
Thanks -- queued for v23-rc2.
Oren.
On 02/22/2011 02:16 PM, Dan Smith wrote:
> If we are doing a self-checkpoint, we will not be frozen and the
> get_freezer_task() will return NULL. If we have children, then
> may_checkpoint_task() will attempt to make sure that they are in the
> same cgroup as the freezer task, which will attempt to lock a NULL
> task pointer (and thus go boom).
>
> This patch just inserts a check before in_same_cgroup_freezer() call
> to make sure we have a freezer task. The existing check is aimed to
> determine if a task is not frozen alongside the root, so this addition
> catches the case where it is impossible.
>
> Signed-off-by: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
> ---
> kernel/checkpoint/checkpoint.c | 8 ++++++--
> 1 files changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/checkpoint/checkpoint.c b/kernel/checkpoint/checkpoint.c
> index 0f46acf..33f53e9 100644
> --- a/kernel/checkpoint/checkpoint.c
> +++ b/kernel/checkpoint/checkpoint.c
> @@ -262,8 +262,12 @@ static int may_checkpoint_task(struct ckpt_ctx *ctx, struct task_struct *t)
> if (t->exit_state)
> return 0;
>
> - /* verify that all tasks belongs to same freezer cgroup */
> - if (t != current && !in_same_cgroup_freezer(t, ctx->root_freezer)) {
> + /*
> + * verify that we have a freezer cgroup and that all tasks
> + * belong to the same one
> + */
> + if (t != current && (!ctx->root_freezer ||
> + !in_same_cgroup_freezer(t, ctx->root_freezer))) {
> _ckpt_err(ctx, -EBUSY, "%(T)Not frozen or wrong cgroup\n");
> return -EBUSY;
> }
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-02-25 15:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-22 19:16 [PATCH] Don't crash if we are self-checkpointing with a child Dan Smith
[not found] ` <1298402216-3786-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2011-02-25 15:46 ` Oren Laadan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox