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