All work (process tree creation and process state restore) now can be
done in kernel.

Task structure in image file is extended with 2 fields to make in-kernel
process creation more easy.

Signed-off-by: Andrey Mirkin <[EMAIL PROTECTED]>
---
 checkpoint/checkpoint.c        |   17 ++++
 checkpoint/restart.c           |    4 +-
 checkpoint/rstr_process.c      |  201 +++++++++++++++++++++++++++++++++++++++-
 include/linux/checkpoint.h     |    2 +
 include/linux/checkpoint_hdr.h |    2 +
 5 files changed, 223 insertions(+), 3 deletions(-)

diff --git a/checkpoint/checkpoint.c b/checkpoint/checkpoint.c
index 04b0c4a..ae3326e 100644
--- a/checkpoint/checkpoint.c
+++ b/checkpoint/checkpoint.c
@@ -173,6 +173,21 @@ static int cr_write_tail(struct cr_ctx *ctx)
        return ret;
 }
 
+static int cr_count_children(struct cr_ctx *ctx, struct task_struct *tsk)
+{
+       int num = 0;
+       struct task_struct *child;
+
+       read_lock(&tasklist_lock);
+       list_for_each_entry(child, &tsk->children, sibling) {
+               if (child->parent != tsk)
+                       continue;
+               num++;
+       }
+       read_unlock(&tasklist_lock);
+       return num;
+}
+
 /* dump the task_struct of a given task */
 static int cr_write_task_struct(struct cr_ctx *ctx, struct task_struct *t)
 {
@@ -189,6 +204,8 @@ static int cr_write_task_struct(struct cr_ctx *ctx, struct 
task_struct *t)
        hh->exit_code = t->exit_code;
        hh->exit_signal = t->exit_signal;
 
+       hh->vpid = task_pid_nr_ns(t, ctx->root_nsproxy->pid_ns);
+       hh->children_nr = cr_count_children(ctx, t);
        hh->task_comm_len = TASK_COMM_LEN;
 
        /* FIXME: save remaining relevant task_struct fields */
diff --git a/checkpoint/restart.c b/checkpoint/restart.c
index 9259622..9f668f1 100644
--- a/checkpoint/restart.c
+++ b/checkpoint/restart.c
@@ -118,7 +118,7 @@ struct file *cr_read_open_fname(struct cr_ctx *ctx, int 
flags, int mode)
 }
 
 /* read the checkpoint header */
-static int cr_read_head(struct cr_ctx *ctx)
+int cr_read_head(struct cr_ctx *ctx)
 {
        struct cr_hdr_head *hh = cr_hbuf_get(ctx, sizeof(*hh));
        int parent, ret = -EINVAL;
@@ -150,7 +150,7 @@ static int cr_read_head(struct cr_ctx *ctx)
 }
 
 /* read the checkpoint trailer */
-static int cr_read_tail(struct cr_ctx *ctx)
+int cr_read_tail(struct cr_ctx *ctx)
 {
        struct cr_hdr_tail *hh = cr_hbuf_get(ctx, sizeof(*hh));
        int parent, ret = -EINVAL;
diff --git a/checkpoint/rstr_process.c b/checkpoint/rstr_process.c
index ec9e51b..c34378f 100644
--- a/checkpoint/rstr_process.c
+++ b/checkpoint/rstr_process.c
@@ -12,9 +12,208 @@
  *
  */
 
+#include <linux/version.h>
+#include <linux/sched.h>
+#include <linux/wait.h>
+#include <linux/file.h>
+#include <linux/magic.h>
 #include <linux/checkpoint.h>
+#include <linux/checkpoint_hdr.h>
+
+#include "checkpoint_arch.h"
+
+struct thr_context {
+       struct completion complete;
+       int error;
+       struct cr_ctx *ctx;
+       struct cr_hdr_task *ht;
+};
+
+static int cr_restart_process(struct cr_ctx *ctx);
+
+static int cr_kernel_thread(int (*fn)(void *), void * arg,
+               unsigned long flags, pid_t pid)
+{
+       if (current->fs == NULL) {
+               /* do_fork() hates processes without fs, oopses. */
+               cr_debug("local_kernel_thread: current->fs==NULL\n");
+               return -EINVAL;
+       }
+       return kernel_thread(fn, arg, flags);
+}
+
+static int cr_rstr_task_struct(struct cr_ctx *ctx, struct cr_hdr_task *ht)
+{
+       struct task_struct *t = current;
+       char *buf;
+       int ret = -EINVAL;
+
+       /* upper limit for task_comm_len to prevent DoS */
+       if (ht->task_comm_len < 0 || ht->task_comm_len > PAGE_SIZE)
+               goto out;
+
+       buf = kmalloc(ht->task_comm_len, GFP_KERNEL);
+       if (!buf)
+               goto out;
+       ret = cr_read_string(ctx, buf, ht->task_comm_len);
+       if (!ret) {
+               /* if t->comm is too long, silently truncate */
+               memset(t->comm, 0, TASK_COMM_LEN);
+               memcpy(t->comm, buf, min(ht->task_comm_len, TASK_COMM_LEN));
+       }
+       kfree(buf);
+
+       /* FIXME: restore remaining relevant task_struct fields */
+out:
+       return ret;
+}
+static int restart_thread(void *arg)
+{
+       struct thr_context *thr_ctx = arg;
+       struct cr_ctx *ctx;
+       struct cr_hdr_task *ht;
+       int ret;
+       int i;
+
+       current->state = TASK_UNINTERRUPTIBLE;
+
+       ctx = thr_ctx->ctx;
+       ht = thr_ctx->ht;
+
+       if (ht->vpid == 1) {
+               ctx->root_task = current;
+               ctx->root_nsproxy = current->nsproxy;
+
+               get_task_struct(ctx->root_task);
+               get_nsproxy(ctx->root_nsproxy);
+       }
+
+       ret = cr_rstr_task_struct(ctx, ht);
+       cr_debug("rstr_task_struct: ret %d\n", ret);
+       if (ret < 0)
+               goto out;
+       ret = cr_read_mm(ctx);
+       cr_debug("memory: ret %d\n", ret);
+       if (ret < 0)
+               goto out;
+       ret = cr_read_files(ctx);
+       cr_debug("files: ret %d\n", ret);
+       if (ret < 0)
+               goto out;
+       ret = cr_read_thread(ctx);
+       cr_debug("thread: ret %d\n", ret);
+       if (ret < 0)
+               goto out;
+       ret = cr_read_cpu(ctx);
+       cr_debug("cpu: ret %d\n", ret);
+
+       for (i = 0; i < ht->children_nr; i++) {
+               ret = cr_restart_process(ctx);
+               if (ret < 0)
+                       break;
+       }
+
+out:
+       thr_ctx->error = ret;
+       complete(&thr_ctx->complete);
+
+       if (!ret && (ht->state & (EXIT_ZOMBIE|EXIT_DEAD))) {
+               do_exit(ht->exit_code);
+       } else {
+               __set_current_state(TASK_UNINTERRUPTIBLE);
+       }
+       schedule();
+
+       cr_debug("leaked %d/%d %p\n", task_pid_nr(current), 
task_pid_vnr(current), current->mm);
+
+       complete_and_exit(NULL, 0);
+       return ret;
+}
+
+static int cr_restart_process(struct cr_ctx *ctx)
+{
+       struct thr_context thr_ctx;
+       struct task_struct *tsk;
+       struct cr_hdr_task *ht = cr_hbuf_get(ctx, sizeof(*ht));
+       int pid, parent, ret = -EINVAL;
+
+       thr_ctx.ctx = ctx;
+       thr_ctx.error = 0;
+       init_completion(&thr_ctx.complete);
+
+       parent = cr_read_obj_type(ctx, ht, sizeof(*ht), CR_HDR_TASK);
+       if (parent < 0) {
+               ret = parent;
+               goto out;
+       } else if (parent != 0)
+               goto out;
+
+       thr_ctx.ht = ht;
+
+       if (ht->vpid == 1) {
+               /* We should also create container here */
+               pid = cr_kernel_thread(restart_thread, &thr_ctx,
+                               CLONE_NEWNS | CLONE_NEWUTS | CLONE_NEWIPC |
+                               CLONE_NEWUSER | CLONE_NEWPID | CLONE_NEWNET, 0);
+       } else {
+               /* We should fork here a child with saved pid and
+                  correct flags */
+               pid = cr_kernel_thread(restart_thread, &thr_ctx, 0, ht->vpid);
+       }
+       if (pid < 0) {
+               ret = pid;
+               goto out;
+       }
+       read_lock(&tasklist_lock);
+       tsk = find_task_by_vpid(pid);
+       if (tsk)
+               get_task_struct(tsk);
+       read_unlock(&tasklist_lock);
+       if (tsk == NULL) {
+               ret = -ESRCH;
+               goto out;
+       }
+
+       wait_for_completion(&thr_ctx.complete);
+       wait_task_inactive(tsk, 0);
+       ret = thr_ctx.error;
+       put_task_struct(tsk);
+
+out:
+       cr_hbuf_put(ctx, sizeof(*ht));
+       return ret;
+}
+
 
 int do_restart_in_kernel(struct cr_ctx *ctx)
 {
-       return -ENOSYS;
+       int ret, size, parent;
+       struct cr_hdr_tree *hh = cr_hbuf_get(ctx, sizeof(*hh));
+
+       ret = cr_read_head(ctx);
+       if (ret < 0)
+               goto out;
+
+       ret = -EINVAL;
+       parent = cr_read_obj_type(ctx, hh, sizeof(*hh), CR_HDR_TREE);
+       if (parent < 0) {
+               ret = parent;
+               goto out;
+       } else if (parent != 0)
+               goto out;
+
+       size = sizeof(*ctx->pids_arr) * hh->tasks_nr;
+       if (size < 0)
+               goto out;
+       ctx->file->f_pos += size;
+
+       ret = cr_restart_process(ctx);
+       if (ret < 0)
+               goto out;
+
+       ret = cr_read_tail(ctx);
+
+out:
+       cr_hbuf_put(ctx, sizeof(*hh));
+       return ret;
 }
diff --git a/include/linux/checkpoint.h b/include/linux/checkpoint.h
index 947469a..7a189ac 100644
--- a/include/linux/checkpoint.h
+++ b/include/linux/checkpoint.h
@@ -109,10 +109,12 @@ extern int do_checkpoint(struct cr_ctx *ctx, pid_t pid);
 extern int cr_write_mm(struct cr_ctx *ctx, struct task_struct *t);
 extern int cr_write_files(struct cr_ctx *ctx, struct task_struct *t);
 
+extern int cr_read_head(struct cr_ctx *ctx);
 extern int do_restart(struct cr_ctx *ctx, pid_t pid);
 extern int do_restart_in_kernel(struct cr_ctx *ctx);
 extern int cr_read_mm(struct cr_ctx *ctx);
 extern int cr_read_files(struct cr_ctx *ctx);
+extern int cr_read_tail(struct cr_ctx *ctx);
 
 #define cr_debug(fmt, args...)  \
        pr_debug("[%d:c/r:%s] " fmt, task_pid_vnr(current), __func__, ## args)
diff --git a/include/linux/checkpoint_hdr.h b/include/linux/checkpoint_hdr.h
index 5114bdd..3d11254 100644
--- a/include/linux/checkpoint_hdr.h
+++ b/include/linux/checkpoint_hdr.h
@@ -88,6 +88,8 @@ struct cr_hdr_task {
        __u32 exit_code;
        __u32 exit_signal;
 
+       __u32 vpid;
+       __u32 children_nr;
        __s32 task_comm_len;
 } __attribute__((aligned(8)));
 
-- 
1.5.6

_______________________________________________
Containers mailing list
[EMAIL PROTECTED]
https://lists.linux-foundation.org/mailman/listinfo/containers

_______________________________________________
Devel mailing list
[email protected]
https://openvz.org/mailman/listinfo/devel

Reply via email to