]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/criu.c
Merge pull request #1221 from stgraber/master
[mirror_lxc.git] / src / lxc / criu.c
1 /*
2 * lxc: linux Container library
3 *
4 * Copyright © 2014-2015 Canonical Ltd.
5 *
6 * Authors:
7 * Tycho Andersen <tycho.andersen@canonical.com>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23 #define _GNU_SOURCE
24 #include <assert.h>
25 #include <inttypes.h>
26 #include <linux/limits.h>
27 #include <sched.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <sys/mount.h>
32 #include <sys/types.h>
33 #include <sys/wait.h>
34 #include <unistd.h>
35
36 #include "config.h"
37
38 #include "bdev.h"
39 #include "cgroup.h"
40 #include "conf.h"
41 #include "commands.h"
42 #include "criu.h"
43 #include "log.h"
44 #include "lxc.h"
45 #include "lxclock.h"
46 #include "network.h"
47 #include "utils.h"
48
49 #define CRIU_VERSION "2.0"
50
51 #define CRIU_GITID_VERSION "2.0"
52 #define CRIU_GITID_PATCHLEVEL 0
53
54 #define CRIU_IN_FLIGHT_SUPPORT "2.4"
55
56 lxc_log_define(lxc_criu, lxc);
57
58 struct criu_opts {
59 /* The type of criu invocation, one of "dump" or "restore" */
60 char *action;
61
62 /* the user-provided migrate options relevant to this action */
63 struct migrate_opts *user;
64
65 /* The container to dump */
66 struct lxc_container *c;
67
68 /* dump: stop the container or not after dumping? */
69 char tty_id[32]; /* the criu tty id for /dev/console, i.e. "tty[${rdev}:${dev}]" */
70
71 /* restore: the file to write the init process' pid into */
72 struct lxc_handler *handler;
73 int console_fd;
74 /* The path that is bind mounted from /dev/console, if any. We don't
75 * want to use `--ext-mount-map auto`'s result here because the pts
76 * device may have a different path (e.g. if the pty number is
77 * different) on the target host. NULL if lxc.console = "none".
78 */
79 char *console_name;
80
81 /* The detected version of criu */
82 char *criu_version;
83 };
84
85 static int load_tty_major_minor(char *directory, char *output, int len)
86 {
87 FILE *f;
88 char path[PATH_MAX];
89 int ret;
90
91 ret = snprintf(path, sizeof(path), "%s/tty.info", directory);
92 if (ret < 0 || ret >= sizeof(path)) {
93 ERROR("snprintf'd too many chacters: %d", ret);
94 return -1;
95 }
96
97 f = fopen(path, "r");
98 if (!f) {
99 /* This means we're coming from a liblxc which didn't export
100 * the tty info. In this case they had to have lxc.console =
101 * none, so there's no problem restoring.
102 */
103 if (errno == ENOENT)
104 return 0;
105
106 SYSERROR("couldn't open %s", path);
107 return -1;
108 }
109
110 if (!fgets(output, len, f)) {
111 fclose(f);
112 SYSERROR("couldn't read %s", path);
113 return -1;
114 }
115
116 fclose(f);
117 return 0;
118 }
119
120 static void exec_criu(struct criu_opts *opts)
121 {
122 char **argv, log[PATH_MAX];
123 int static_args = 23, argc = 0, i, ret;
124 int netnr = 0;
125 struct lxc_list *it;
126
127 char buf[4096], tty_info[32];
128 size_t pos;
129 /* If we are currently in a cgroup /foo/bar, and the container is in a
130 * cgroup /lxc/foo, lxcfs will give us an ENOENT if some task in the
131 * container has an open fd that points to one of the cgroup files
132 * (systemd always opens its "root" cgroup). So, let's escape to the
133 * /actual/ root cgroup so that lxcfs thinks criu has enough rights to
134 * see all cgroups.
135 */
136 if (!cgroup_escape()) {
137 ERROR("failed to escape cgroups");
138 return;
139 }
140
141 /* The command line always looks like:
142 * criu $(action) --tcp-established --file-locks --link-remap \
143 * --manage-cgroups=full --action-script foo.sh -D $(directory) \
144 * -o $(directory)/$(action).log --ext-mount-map auto
145 * --enable-external-sharing --enable-external-masters
146 * --enable-fs hugetlbfs --enable-fs tracefs --ext-mount-map console:/dev/pts/n
147 * +1 for final NULL */
148
149 if (strcmp(opts->action, "dump") == 0 || strcmp(opts->action, "pre-dump") == 0) {
150 /* -t pid --freeze-cgroup /lxc/ct */
151 static_args += 4;
152
153 /* --prev-images-dir <path-to-directory-A-relative-to-B> */
154 if (opts->user->predump_dir)
155 static_args += 2;
156
157 /* --page-server --address <address> --port <port> */
158 if (opts->user->pageserver_address && opts->user->pageserver_port)
159 static_args += 5;
160
161 /* --leave-running (only for final dump) */
162 if (strcmp(opts->action, "dump") == 0 && !opts->user->stop)
163 static_args++;
164
165 /* --external tty[88,4] */
166 if (opts->tty_id[0])
167 static_args += 2;
168
169 /* --force-irmap */
170 if (!opts->user->preserves_inodes)
171 static_args++;
172
173 /* --ghost-limit 1024 */
174 if (opts->user->ghost_limit)
175 static_args += 2;
176 } else if (strcmp(opts->action, "restore") == 0) {
177 /* --root $(lxc_mount_point) --restore-detached
178 * --restore-sibling
179 * --lsm-profile apparmor:whatever
180 */
181 static_args += 6;
182
183 tty_info[0] = 0;
184 if (load_tty_major_minor(opts->user->directory, tty_info, sizeof(tty_info)))
185 return;
186
187 /* --inherit-fd fd[%d]:tty[%s] */
188 if (tty_info[0])
189 static_args += 2;
190 } else {
191 return;
192 }
193
194 if (cgroup_num_hierarchies() > 0)
195 static_args += 2 * cgroup_num_hierarchies();
196
197 if (opts->user->verbose)
198 static_args++;
199
200 if (opts->user->action_script)
201 static_args += 2;
202
203 ret = snprintf(log, PATH_MAX, "%s/%s.log", opts->user->directory, opts->action);
204 if (ret < 0 || ret >= PATH_MAX) {
205 ERROR("logfile name too long\n");
206 return;
207 }
208
209 argv = malloc(static_args * sizeof(*argv));
210 if (!argv)
211 return;
212
213 memset(argv, 0, static_args * sizeof(*argv));
214
215 #define DECLARE_ARG(arg) \
216 do { \
217 if (arg == NULL) { \
218 ERROR("Got NULL argument for criu"); \
219 goto err; \
220 } \
221 argv[argc++] = strdup(arg); \
222 if (!argv[argc-1]) \
223 goto err; \
224 } while (0)
225
226 argv[argc++] = on_path("criu", NULL);
227 if (!argv[argc-1]) {
228 ERROR("Couldn't find criu binary\n");
229 goto err;
230 }
231
232 DECLARE_ARG(opts->action);
233 DECLARE_ARG("--tcp-established");
234 DECLARE_ARG("--file-locks");
235 DECLARE_ARG("--link-remap");
236 DECLARE_ARG("--manage-cgroups=full");
237 DECLARE_ARG("--ext-mount-map");
238 DECLARE_ARG("auto");
239 DECLARE_ARG("--enable-external-sharing");
240 DECLARE_ARG("--enable-external-masters");
241 DECLARE_ARG("--enable-fs");
242 DECLARE_ARG("hugetlbfs");
243 DECLARE_ARG("--enable-fs");
244 DECLARE_ARG("tracefs");
245 DECLARE_ARG("-D");
246 DECLARE_ARG(opts->user->directory);
247 DECLARE_ARG("-o");
248 DECLARE_ARG(log);
249
250 for (i = 0; i < cgroup_num_hierarchies(); i++) {
251 char **controllers = NULL, *fullname;
252 char *path;
253
254 if (!cgroup_get_hierarchies(i, &controllers)) {
255 ERROR("failed to get hierarchy %d", i);
256 goto err;
257 }
258
259 /* if we are in a dump, we have to ask the monitor process what
260 * the right cgroup is. if this is a restore, we can just use
261 * the handler the restore task created.
262 */
263 if (!strcmp(opts->action, "dump") || !strcmp(opts->action, "pre-dump")) {
264 path = lxc_cmd_get_cgroup_path(opts->c->name, opts->c->config_path, controllers[0]);
265 if (!path) {
266 ERROR("failed to get cgroup path for %s", controllers[0]);
267 goto err;
268 }
269 } else {
270 const char *p;
271
272 p = cgroup_get_cgroup(opts->handler, controllers[0]);
273 if (!p) {
274 ERROR("failed to get cgroup path for %s", controllers[0]);
275 goto err;
276 }
277
278 path = strdup(p);
279 if (!path) {
280 ERROR("strdup failed");
281 goto err;
282 }
283 }
284
285 if (!lxc_deslashify(&path)) {
286 ERROR("failed to deslashify %s", path);
287 free(path);
288 goto err;
289 }
290
291 fullname = lxc_string_join(",", (const char **) controllers, false);
292 if (!fullname) {
293 ERROR("failed to join controllers");
294 free(path);
295 goto err;
296 }
297
298 ret = sprintf(buf, "%s:%s", fullname, path);
299 free(path);
300 free(fullname);
301 if (ret < 0 || ret >= sizeof(buf)) {
302 ERROR("sprintf of cgroup root arg failed");
303 goto err;
304 }
305
306 DECLARE_ARG("--cgroup-root");
307 DECLARE_ARG(buf);
308 }
309
310 if (opts->user->verbose)
311 DECLARE_ARG("-vvvvvv");
312
313 if (opts->user->action_script) {
314 DECLARE_ARG("--action-script");
315 DECLARE_ARG(opts->user->action_script);
316 }
317
318 if (strcmp(opts->action, "dump") == 0 || strcmp(opts->action, "pre-dump") == 0) {
319 char pid[32], *freezer_relative;
320
321 if (sprintf(pid, "%d", opts->c->init_pid(opts->c)) < 0)
322 goto err;
323
324 DECLARE_ARG("-t");
325 DECLARE_ARG(pid);
326
327 freezer_relative = lxc_cmd_get_cgroup_path(opts->c->name,
328 opts->c->config_path,
329 "freezer");
330 if (!freezer_relative) {
331 ERROR("failed getting freezer path");
332 goto err;
333 }
334
335 ret = snprintf(log, sizeof(log), "/sys/fs/cgroup/freezer/%s", freezer_relative);
336 if (ret < 0 || ret >= sizeof(log))
337 goto err;
338
339 if (!opts->user->disable_skip_in_flight &&
340 strcmp(opts->criu_version, CRIU_IN_FLIGHT_SUPPORT) >= 0)
341 DECLARE_ARG("--skip-in-flight");
342
343 DECLARE_ARG("--freeze-cgroup");
344 DECLARE_ARG(log);
345
346 if (opts->tty_id[0]) {
347 DECLARE_ARG("--ext-mount-map");
348 DECLARE_ARG("/dev/console:console");
349
350 DECLARE_ARG("--external");
351 DECLARE_ARG(opts->tty_id);
352 }
353
354 if (opts->user->predump_dir) {
355 DECLARE_ARG("--prev-images-dir");
356 DECLARE_ARG(opts->user->predump_dir);
357 }
358
359 if (opts->user->pageserver_address && opts->user->pageserver_port) {
360 DECLARE_ARG("--page-server");
361 DECLARE_ARG("--address");
362 DECLARE_ARG(opts->user->pageserver_address);
363 DECLARE_ARG("--port");
364 DECLARE_ARG(opts->user->pageserver_port);
365 }
366
367 if (!opts->user->preserves_inodes)
368 DECLARE_ARG("--force-irmap");
369
370 if (opts->user->ghost_limit) {
371 char ghost_limit[32];
372
373 ret = sprintf(ghost_limit, "%"PRIu64, opts->user->ghost_limit);
374 if (ret < 0 || ret >= sizeof(ghost_limit)) {
375 ERROR("failed to print ghost limit %"PRIu64, opts->user->ghost_limit);
376 goto err;
377 }
378
379 DECLARE_ARG("--ghost-limit");
380 DECLARE_ARG(ghost_limit);
381 }
382
383 /* only for final dump */
384 if (strcmp(opts->action, "dump") == 0 && !opts->user->stop)
385 DECLARE_ARG("--leave-running");
386 } else if (strcmp(opts->action, "restore") == 0) {
387 void *m;
388 int additional;
389 struct lxc_conf *lxc_conf = opts->c->lxc_conf;
390
391 DECLARE_ARG("--root");
392 DECLARE_ARG(opts->c->lxc_conf->rootfs.mount);
393 DECLARE_ARG("--restore-detached");
394 DECLARE_ARG("--restore-sibling");
395
396 if (tty_info[0]) {
397 if (opts->console_fd < 0) {
398 ERROR("lxc.console configured on source host but not target");
399 goto err;
400 }
401
402 ret = snprintf(buf, sizeof(buf), "fd[%d]:%s", opts->console_fd, tty_info);
403 if (ret < 0 || ret >= sizeof(buf))
404 goto err;
405
406 DECLARE_ARG("--inherit-fd");
407 DECLARE_ARG(buf);
408 }
409 if (opts->console_name) {
410 if (snprintf(buf, sizeof(buf), "console:%s", opts->console_name) < 0) {
411 SYSERROR("sprintf'd too many bytes");
412 }
413 DECLARE_ARG("--ext-mount-map");
414 DECLARE_ARG(buf);
415 }
416
417 if (lxc_conf->lsm_aa_profile || lxc_conf->lsm_se_context) {
418
419 if (lxc_conf->lsm_aa_profile)
420 ret = snprintf(buf, sizeof(buf), "apparmor:%s", lxc_conf->lsm_aa_profile);
421 else
422 ret = snprintf(buf, sizeof(buf), "selinux:%s", lxc_conf->lsm_se_context);
423
424 if (ret < 0 || ret >= sizeof(buf))
425 goto err;
426
427 DECLARE_ARG("--lsm-profile");
428 DECLARE_ARG(buf);
429 }
430
431 additional = lxc_list_len(&opts->c->lxc_conf->network) * 2;
432
433 m = realloc(argv, (argc + additional + 1) * sizeof(*argv));
434 if (!m)
435 goto err;
436 argv = m;
437
438 lxc_list_for_each(it, &opts->c->lxc_conf->network) {
439 char eth[128], *veth;
440 struct lxc_netdev *n = it->elem;
441
442 if (n->type != LXC_NET_VETH)
443 continue;
444
445 if (n->name) {
446 if (strlen(n->name) >= sizeof(eth))
447 goto err;
448 strncpy(eth, n->name, sizeof(eth));
449 } else
450 sprintf(eth, "eth%d", netnr);
451
452 veth = n->priv.veth_attr.pair;
453
454 if (n->link)
455 ret = snprintf(buf, sizeof(buf), "%s=%s@%s", eth, veth, n->link);
456 else
457 ret = snprintf(buf, sizeof(buf), "%s=%s", eth, veth);
458 if (ret < 0 || ret >= sizeof(buf))
459 goto err;
460
461 DECLARE_ARG("--veth-pair");
462 DECLARE_ARG(buf);
463 }
464
465 }
466
467 argv[argc] = NULL;
468
469 buf[0] = 0;
470 pos = 0;
471
472 for (i = 0; argv[i]; i++) {
473 ret = snprintf(buf + pos, sizeof(buf) - pos, "%s ", argv[i]);
474 if (ret < 0 || ret >= sizeof(buf) - pos)
475 goto err;
476 else
477 pos += ret;
478 }
479
480 INFO("execing: %s", buf);
481
482 #undef DECLARE_ARG
483 execv(argv[0], argv);
484 err:
485 for (i = 0; argv[i]; i++)
486 free(argv[i]);
487 free(argv);
488 }
489
490 /*
491 * Check to see if the criu version is recent enough for all the features we
492 * use. This version allows either CRIU_VERSION or (CRIU_GITID_VERSION and
493 * CRIU_GITID_PATCHLEVEL) to work, enabling users building from git to c/r
494 * things potentially before a version is released with a particular feature.
495 *
496 * The intent is that when criu development slows down, we can drop this, but
497 * for now we shouldn't attempt to c/r with versions that we know won't work.
498 *
499 * Note: If version != NULL criu_version() stores the detected criu version in
500 * version. Allocates memory for version which must be freed by caller.
501 */
502 static bool criu_version_ok(char **version)
503 {
504 int pipes[2];
505 pid_t pid;
506
507 if (pipe(pipes) < 0) {
508 SYSERROR("pipe() failed");
509 return false;
510 }
511
512 pid = fork();
513 if (pid < 0) {
514 SYSERROR("fork() failed");
515 return false;
516 }
517
518 if (pid == 0) {
519 char *args[] = { "criu", "--version", NULL };
520 char *path;
521 close(pipes[0]);
522
523 close(STDERR_FILENO);
524 if (dup2(pipes[1], STDOUT_FILENO) < 0)
525 exit(1);
526
527 path = on_path("criu", NULL);
528 if (!path)
529 exit(1);
530
531 execv(path, args);
532 exit(1);
533 } else {
534 FILE *f;
535 char *tmp;
536 int patch;
537
538 close(pipes[1]);
539 if (wait_for_pid(pid) < 0) {
540 close(pipes[0]);
541 SYSERROR("execing criu failed, is it installed?");
542 return false;
543 }
544
545 f = fdopen(pipes[0], "r");
546 if (!f) {
547 close(pipes[0]);
548 return false;
549 }
550
551 tmp = malloc(1024);
552 if (!tmp) {
553 fclose(f);
554 return false;
555 }
556
557 if (fscanf(f, "Version: %1023[^\n]s", tmp) != 1)
558 goto version_error;
559
560 if (fgetc(f) != '\n')
561 goto version_error;
562
563 if (strcmp(tmp, CRIU_VERSION) >= 0)
564 goto version_match;
565
566 if (fscanf(f, "GitID: v%1023[^-]s", tmp) != 1)
567 goto version_error;
568
569 if (fgetc(f) != '-')
570 goto version_error;
571
572 if (fscanf(f, "%d", &patch) != 1)
573 goto version_error;
574
575 if (strcmp(tmp, CRIU_GITID_VERSION) < 0)
576 goto version_error;
577
578 if (patch < CRIU_GITID_PATCHLEVEL)
579 goto version_error;
580
581 version_match:
582 fclose(f);
583 if (!version)
584 free(tmp);
585 else
586 *version = tmp;
587 return true;
588
589 version_error:
590 fclose(f);
591 free(tmp);
592 ERROR("must have criu " CRIU_VERSION " or greater to checkpoint/restore\n");
593 return false;
594 }
595 }
596
597 /* Check and make sure the container has a configuration that we know CRIU can
598 * dump. */
599 static bool criu_ok(struct lxc_container *c, char **criu_version)
600 {
601 struct lxc_list *it;
602
603 if (!criu_version_ok(criu_version))
604 return false;
605
606 if (geteuid()) {
607 ERROR("Must be root to checkpoint\n");
608 return false;
609 }
610
611 /* We only know how to restore containers with veth networks. */
612 lxc_list_for_each(it, &c->lxc_conf->network) {
613 struct lxc_netdev *n = it->elem;
614 switch(n->type) {
615 case LXC_NET_VETH:
616 case LXC_NET_NONE:
617 case LXC_NET_EMPTY:
618 break;
619 default:
620 ERROR("Found network that is not VETH or NONE\n");
621 return false;
622 }
623 }
624
625 return true;
626 }
627
628 static bool restore_net_info(struct lxc_container *c)
629 {
630 struct lxc_list *it;
631 bool has_error = true;
632
633 if (container_mem_lock(c))
634 return false;
635
636 lxc_list_for_each(it, &c->lxc_conf->network) {
637 struct lxc_netdev *netdev = it->elem;
638 char template[IFNAMSIZ];
639
640 if (netdev->type != LXC_NET_VETH)
641 continue;
642
643 snprintf(template, sizeof(template), "vethXXXXXX");
644
645 if (!netdev->priv.veth_attr.pair)
646 netdev->priv.veth_attr.pair = lxc_mkifname(template);
647
648 if (!netdev->priv.veth_attr.pair)
649 goto out_unlock;
650 }
651
652 has_error = false;
653
654 out_unlock:
655 container_mem_unlock(c);
656 return !has_error;
657 }
658
659 // do_restore never returns, the calling process is used as the
660 // monitor process. do_restore calls exit() if it fails.
661 static void do_restore(struct lxc_container *c, int status_pipe, struct migrate_opts *opts, char *criu_version)
662 {
663 pid_t pid;
664 struct lxc_handler *handler;
665 int status, fd;
666 int pipes[2] = {-1, -1};
667
668 /* Try to detach from the current controlling tty if it exists.
669 * Othwerise, lxc_init (via lxc_console) will attach the container's
670 * console output to the current tty, which is probably not what any
671 * library user wants, and if they do, they can just manually configure
672 * it :)
673 */
674 fd = open("/dev/tty", O_RDWR);
675 if (fd >= 0) {
676 if (ioctl(fd, TIOCNOTTY, NULL) < 0)
677 SYSERROR("couldn't detach from tty");
678 close(fd);
679 }
680
681 handler = lxc_init(c->name, c->lxc_conf, c->config_path);
682 if (!handler)
683 goto out;
684
685 if (!cgroup_init(handler)) {
686 ERROR("failed initing cgroups");
687 goto out_fini_handler;
688 }
689
690 if (!cgroup_create(handler)) {
691 ERROR("failed creating groups");
692 goto out_fini_handler;
693 }
694
695 if (!restore_net_info(c)) {
696 ERROR("failed restoring network info");
697 goto out_fini_handler;
698 }
699
700 resolve_clone_flags(handler);
701
702 if (pipe(pipes) < 0) {
703 SYSERROR("pipe() failed");
704 goto out_fini_handler;
705 }
706
707 pid = fork();
708 if (pid < 0)
709 goto out_fini_handler;
710
711 if (pid == 0) {
712 struct criu_opts os;
713 struct lxc_rootfs *rootfs;
714 int flags;
715
716 close(status_pipe);
717 status_pipe = -1;
718
719 close(pipes[0]);
720 pipes[0] = -1;
721 if (dup2(pipes[1], STDERR_FILENO) < 0) {
722 SYSERROR("dup2 failed");
723 goto out_fini_handler;
724 }
725
726 if (dup2(pipes[1], STDOUT_FILENO) < 0) {
727 SYSERROR("dup2 failed");
728 goto out_fini_handler;
729 }
730
731 if (unshare(CLONE_NEWNS))
732 goto out_fini_handler;
733
734 /* CRIU needs the lxc root bind mounted so that it is the root of some
735 * mount. */
736 rootfs = &c->lxc_conf->rootfs;
737
738 if (rootfs_is_blockdev(c->lxc_conf)) {
739 if (do_rootfs_setup(c->lxc_conf, c->name, c->config_path) < 0)
740 goto out_fini_handler;
741 } else {
742 if (mkdir(rootfs->mount, 0755) < 0 && errno != EEXIST)
743 goto out_fini_handler;
744
745 if (mount(NULL, "/", NULL, MS_SLAVE | MS_REC, NULL) < 0) {
746 SYSERROR("remount / to private failed");
747 goto out_fini_handler;
748 }
749
750 if (mount(rootfs->path, rootfs->mount, NULL, MS_BIND, NULL) < 0) {
751 rmdir(rootfs->mount);
752 goto out_fini_handler;
753 }
754 }
755
756 os.action = "restore";
757 os.user = opts;
758 os.c = c;
759 os.console_fd = c->lxc_conf->console.slave;
760 os.criu_version = criu_version;
761 os.handler = handler;
762
763 if (os.console_fd >= 0) {
764 /* Twiddle the FD_CLOEXEC bit. We want to pass this FD to criu
765 * via --inherit-fd, so we don't want it to close.
766 */
767 flags = fcntl(os.console_fd, F_GETFD);
768 if (flags < 0) {
769 SYSERROR("F_GETFD failed: %d", os.console_fd);
770 goto out_fini_handler;
771 }
772
773 flags &= ~FD_CLOEXEC;
774
775 if (fcntl(os.console_fd, F_SETFD, flags) < 0) {
776 SYSERROR("F_SETFD failed");
777 goto out_fini_handler;
778 }
779 }
780 os.console_name = c->lxc_conf->console.name;
781
782 /* exec_criu() returning is an error */
783 exec_criu(&os);
784 umount(rootfs->mount);
785 rmdir(rootfs->mount);
786 goto out_fini_handler;
787 } else {
788 int ret;
789 char title[2048];
790
791 close(pipes[1]);
792 pipes[1] = -1;
793
794 pid_t w = waitpid(pid, &status, 0);
795 if (w == -1) {
796 SYSERROR("waitpid");
797 goto out_fini_handler;
798 }
799
800 if (WIFEXITED(status)) {
801 char buf[4096];
802
803 if (WEXITSTATUS(status)) {
804 int n;
805
806 n = read(pipes[0], buf, sizeof(buf));
807 if (n < 0) {
808 SYSERROR("failed reading from criu stderr");
809 goto out_fini_handler;
810 }
811
812 buf[n] = 0;
813
814 ERROR("criu process exited %d, output:\n%s\n", WEXITSTATUS(status), buf);
815 goto out_fini_handler;
816 } else {
817 ret = snprintf(buf, sizeof(buf), "/proc/self/task/%lu/children", (unsigned long)syscall(__NR_gettid));
818 if (ret < 0 || ret >= sizeof(buf)) {
819 ERROR("snprintf'd too many characters: %d", ret);
820 goto out_fini_handler;
821 }
822
823 FILE *f = fopen(buf, "r");
824 if (!f) {
825 SYSERROR("couldn't read restore's children file %s\n", buf);
826 goto out_fini_handler;
827 }
828
829 ret = fscanf(f, "%d", (int*) &handler->pid);
830 fclose(f);
831 if (ret != 1) {
832 ERROR("reading restore pid failed");
833 goto out_fini_handler;
834 }
835
836 if (lxc_set_state(c->name, handler, RUNNING)) {
837 ERROR("error setting running state after restore");
838 goto out_fini_handler;
839 }
840 }
841 } else {
842 ERROR("CRIU was killed with signal %d\n", WTERMSIG(status));
843 goto out_fini_handler;
844 }
845
846 close(pipes[0]);
847
848 ret = write(status_pipe, &status, sizeof(status));
849 close(status_pipe);
850 status_pipe = -1;
851
852 if (sizeof(status) != ret) {
853 SYSERROR("failed to write all of status");
854 goto out_fini_handler;
855 }
856
857 /*
858 * See comment in lxcapi_start; we don't care if these
859 * fail because it's just a beauty thing. We just
860 * assign the return here to silence potential.
861 */
862 ret = snprintf(title, sizeof(title), "[lxc monitor] %s %s", c->config_path, c->name);
863 ret = setproctitle(title);
864
865 ret = lxc_poll(c->name, handler);
866 if (ret)
867 lxc_abort(c->name, handler);
868 lxc_fini(c->name, handler);
869 exit(ret);
870 }
871
872 out_fini_handler:
873 if (pipes[0] >= 0)
874 close(pipes[0]);
875 if (pipes[1] >= 0)
876 close(pipes[1]);
877
878 lxc_fini(c->name, handler);
879
880 out:
881 if (status_pipe >= 0) {
882 /* ensure getting here was a failure, e.g. if we failed to
883 * parse the child pid or something, even after a successful
884 * restore
885 */
886 if (!status)
887 status = 1;
888 if (write(status_pipe, &status, sizeof(status)) != sizeof(status)) {
889 SYSERROR("writing status failed");
890 }
891 close(status_pipe);
892 }
893
894 exit(1);
895 }
896
897 static int save_tty_major_minor(char *directory, struct lxc_container *c, char *tty_id, int len)
898 {
899 FILE *f;
900 char path[PATH_MAX];
901 int ret;
902 struct stat sb;
903
904 if (c->lxc_conf->console.path && !strcmp(c->lxc_conf->console.path, "none")) {
905 tty_id[0] = 0;
906 return 0;
907 }
908
909 ret = snprintf(path, sizeof(path), "/proc/%d/root/dev/console", c->init_pid(c));
910 if (ret < 0 || ret >= sizeof(path)) {
911 ERROR("snprintf'd too many chacters: %d", ret);
912 return -1;
913 }
914
915 ret = stat(path, &sb);
916 if (ret < 0) {
917 SYSERROR("stat of %s failed", path);
918 return -1;
919 }
920
921 ret = snprintf(path, sizeof(path), "%s/tty.info", directory);
922 if (ret < 0 || ret >= sizeof(path)) {
923 ERROR("snprintf'd too many characters: %d", ret);
924 return -1;
925 }
926
927 ret = snprintf(tty_id, len, "tty[%llx:%llx]",
928 (long long unsigned) sb.st_rdev,
929 (long long unsigned) sb.st_dev);
930 if (ret < 0 || ret >= sizeof(path)) {
931 ERROR("snprintf'd too many characters: %d", ret);
932 return -1;
933 }
934
935 f = fopen(path, "w");
936 if (!f) {
937 SYSERROR("failed to open %s", path);
938 return -1;
939 }
940
941 ret = fprintf(f, "%s", tty_id);
942 fclose(f);
943 if (ret < 0)
944 SYSERROR("failed to write to %s", path);
945 return ret;
946 }
947
948 /* do one of either predump or a regular dump */
949 static bool do_dump(struct lxc_container *c, char *mode, struct migrate_opts *opts)
950 {
951 pid_t pid;
952 char *criu_version = NULL;
953
954 if (!criu_ok(c, &criu_version))
955 return false;
956
957 if (mkdir_p(opts->directory, 0700) < 0)
958 return false;
959
960 pid = fork();
961 if (pid < 0) {
962 SYSERROR("fork failed");
963 return false;
964 }
965
966 if (pid == 0) {
967 struct criu_opts os;
968 struct lxc_handler h;
969
970 h.name = c->name;
971 if (!cgroup_init(&h)) {
972 ERROR("failed to cgroup_init()");
973 exit(1);
974 }
975
976 os.action = mode;
977 os.user = opts;
978 os.c = c;
979 os.console_name = c->lxc_conf->console.path;
980 os.criu_version = criu_version;
981
982 if (save_tty_major_minor(opts->directory, c, os.tty_id, sizeof(os.tty_id)) < 0)
983 exit(1);
984
985 /* exec_criu() returning is an error */
986 exec_criu(&os);
987 exit(1);
988 } else {
989 int status;
990 pid_t w = waitpid(pid, &status, 0);
991 if (w == -1) {
992 SYSERROR("waitpid");
993 return false;
994 }
995
996 if (WIFEXITED(status)) {
997 if (WEXITSTATUS(status)) {
998 ERROR("dump failed with %d\n", WEXITSTATUS(status));
999 return false;
1000 }
1001
1002 return true;
1003 } else if (WIFSIGNALED(status)) {
1004 ERROR("dump signaled with %d\n", WTERMSIG(status));
1005 return false;
1006 } else {
1007 ERROR("unknown dump exit %d\n", status);
1008 return false;
1009 }
1010 }
1011 }
1012
1013 bool __criu_pre_dump(struct lxc_container *c, struct migrate_opts *opts)
1014 {
1015 return do_dump(c, "pre-dump", opts);
1016 }
1017
1018 bool __criu_dump(struct lxc_container *c, struct migrate_opts *opts)
1019 {
1020 char path[PATH_MAX];
1021 int ret;
1022
1023 ret = snprintf(path, sizeof(path), "%s/inventory.img", opts->directory);
1024 if (ret < 0 || ret >= sizeof(path))
1025 return false;
1026
1027 if (access(path, F_OK) == 0) {
1028 ERROR("please use a fresh directory for the dump directory\n");
1029 return false;
1030 }
1031
1032 return do_dump(c, "dump", opts);
1033 }
1034
1035 bool __criu_restore(struct lxc_container *c, struct migrate_opts *opts)
1036 {
1037 pid_t pid;
1038 int status, nread;
1039 int pipefd[2];
1040 char *criu_version = NULL;
1041
1042 if (!criu_ok(c, &criu_version))
1043 return false;
1044
1045 if (geteuid()) {
1046 ERROR("Must be root to restore\n");
1047 return false;
1048 }
1049
1050 if (pipe(pipefd)) {
1051 ERROR("failed to create pipe");
1052 return false;
1053 }
1054
1055 pid = fork();
1056 if (pid < 0) {
1057 close(pipefd[0]);
1058 close(pipefd[1]);
1059 return false;
1060 }
1061
1062 if (pid == 0) {
1063 close(pipefd[0]);
1064 // this never returns
1065 do_restore(c, pipefd[1], opts, criu_version);
1066 }
1067
1068 close(pipefd[1]);
1069
1070 nread = read(pipefd[0], &status, sizeof(status));
1071 close(pipefd[0]);
1072 if (sizeof(status) != nread) {
1073 ERROR("reading status from pipe failed");
1074 goto err_wait;
1075 }
1076
1077 // If the criu process was killed or exited nonzero, wait() for the
1078 // handler, since the restore process died. Otherwise, we don't need to
1079 // wait, since the child becomes the monitor process.
1080 if (!WIFEXITED(status) || WEXITSTATUS(status))
1081 goto err_wait;
1082 return true;
1083
1084 err_wait:
1085 if (wait_for_pid(pid))
1086 ERROR("restore process died");
1087 return false;
1088 }