]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/criu.c
c/r: remove extra \ns from logs
[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
24#include <assert.h>
9b945f13 25#include <inttypes.h>
e29fe1dd
TA
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
d8e48992 38#include "bdev.h"
e29fe1dd
TA
39#include "cgroup.h"
40#include "conf.h"
dc259399 41#include "commands.h"
e29fe1dd
TA
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
5f4e44a2
TA
49#if IS_BIONIC
50#include <../include/lxcmntent.h>
51#else
52#include <mntent.h>
53#endif
54
c33b0338 55#define CRIU_VERSION "2.0"
73d46752
TA
56
57#define CRIU_GITID_VERSION "2.0"
58#define CRIU_GITID_PATCHLEVEL 0
59
f1954503
AR
60#define CRIU_IN_FLIGHT_SUPPORT "2.4"
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
86 * different) on the target host. NULL if lxc.console = "none".
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
109 * the tty info. In this case they had to have lxc.console =
110 * none, so there's no problem restoring.
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
5f4e44a2
TA
332 mnts = write_mount_file(&opts->c->lxc_conf->mount_list);
333 if (!mnts)
334 goto err;
335
336 while (getmntent_r(mnts, &mntent, buf, sizeof(buf))) {
337 char *fmt, *key, *val;
338 char arg[2 * PATH_MAX + 2];
339
340 if (strcmp(opts->action, "dump") == 0) {
341 fmt = "/%s:%s";
342 key = mntent.mnt_dir;
343 val = mntent.mnt_dir;
344 } else {
345 fmt = "%s:%s";
346 key = mntent.mnt_dir;
347 val = mntent.mnt_fsname;
348 }
349
350 ret = snprintf(arg, sizeof(arg), fmt, key, val);
351 if (ret < 0 || ret >= sizeof(arg)) {
352 fclose(mnts);
353 ERROR("snprintf failed");
354 goto err;
355 }
356
357 DECLARE_ARG("--ext-mount-map");
358 DECLARE_ARG(arg);
359 }
360 fclose(mnts);
361
aef3d51e 362 if (strcmp(opts->action, "dump") == 0 || strcmp(opts->action, "pre-dump") == 0) {
dc259399 363 char pid[32], *freezer_relative;
e29fe1dd
TA
364
365 if (sprintf(pid, "%d", opts->c->init_pid(opts->c)) < 0)
366 goto err;
367
368 DECLARE_ARG("-t");
369 DECLARE_ARG(pid);
dc259399
TA
370
371 freezer_relative = lxc_cmd_get_cgroup_path(opts->c->name,
372 opts->c->config_path,
373 "freezer");
374 if (!freezer_relative) {
375 ERROR("failed getting freezer path");
376 goto err;
377 }
378
379 ret = snprintf(log, sizeof(log), "/sys/fs/cgroup/freezer/%s", freezer_relative);
380 if (ret < 0 || ret >= sizeof(log))
381 goto err;
382
f1954503
AR
383 if (!opts->user->disable_skip_in_flight &&
384 strcmp(opts->criu_version, CRIU_IN_FLIGHT_SUPPORT) >= 0)
385 DECLARE_ARG("--skip-in-flight");
386
dc259399
TA
387 DECLARE_ARG("--freeze-cgroup");
388 DECLARE_ARG(log);
389
4b54788e 390 if (opts->tty_id[0]) {
36d2096c
TA
391 DECLARE_ARG("--ext-mount-map");
392 DECLARE_ARG("/dev/console:console");
393
4b54788e
TA
394 DECLARE_ARG("--external");
395 DECLARE_ARG(opts->tty_id);
396 }
397
b2c3710f 398 if (opts->user->predump_dir) {
aef3d51e 399 DECLARE_ARG("--prev-images-dir");
b2c3710f 400 DECLARE_ARG(opts->user->predump_dir);
74eb576c 401 }
4c0c0319 402
b2c3710f 403 if (opts->user->pageserver_address && opts->user->pageserver_port) {
74eb576c
NE
404 DECLARE_ARG("--page-server");
405 DECLARE_ARG("--address");
b2c3710f 406 DECLARE_ARG(opts->user->pageserver_address);
74eb576c 407 DECLARE_ARG("--port");
b2c3710f 408 DECLARE_ARG(opts->user->pageserver_port);
74eb576c 409 }
aef3d51e 410
19d1509c
TA
411 if (!opts->user->preserves_inodes)
412 DECLARE_ARG("--force-irmap");
413
b2b7b0d2
TA
414 if (opts->user->ghost_limit) {
415 char ghost_limit[32];
416
9b945f13 417 ret = sprintf(ghost_limit, "%"PRIu64, opts->user->ghost_limit);
b2b7b0d2 418 if (ret < 0 || ret >= sizeof(ghost_limit)) {
9b945f13 419 ERROR("failed to print ghost limit %"PRIu64, opts->user->ghost_limit);
b2b7b0d2
TA
420 goto err;
421 }
422
423 DECLARE_ARG("--ghost-limit");
424 DECLARE_ARG(ghost_limit);
425 }
426
aef3d51e 427 /* only for final dump */
b2c3710f 428 if (strcmp(opts->action, "dump") == 0 && !opts->user->stop)
e29fe1dd
TA
429 DECLARE_ARG("--leave-running");
430 } else if (strcmp(opts->action, "restore") == 0) {
431 void *m;
432 int additional;
13389b29 433 struct lxc_conf *lxc_conf = opts->c->lxc_conf;
e29fe1dd
TA
434
435 DECLARE_ARG("--root");
436 DECLARE_ARG(opts->c->lxc_conf->rootfs.mount);
437 DECLARE_ARG("--restore-detached");
438 DECLARE_ARG("--restore-sibling");
e29fe1dd 439
4b54788e 440 if (tty_info[0]) {
97e4f1a9
TA
441 if (opts->console_fd < 0) {
442 ERROR("lxc.console configured on source host but not target");
443 goto err;
444 }
445
4b54788e
TA
446 ret = snprintf(buf, sizeof(buf), "fd[%d]:%s", opts->console_fd, tty_info);
447 if (ret < 0 || ret >= sizeof(buf))
448 goto err;
449
450 DECLARE_ARG("--inherit-fd");
451 DECLARE_ARG(buf);
452 }
453 if (opts->console_name) {
454 if (snprintf(buf, sizeof(buf), "console:%s", opts->console_name) < 0) {
455 SYSERROR("sprintf'd too many bytes");
456 }
457 DECLARE_ARG("--ext-mount-map");
458 DECLARE_ARG(buf);
459 }
460
13389b29
TA
461 if (lxc_conf->lsm_aa_profile || lxc_conf->lsm_se_context) {
462
463 if (lxc_conf->lsm_aa_profile)
464 ret = snprintf(buf, sizeof(buf), "apparmor:%s", lxc_conf->lsm_aa_profile);
465 else
466 ret = snprintf(buf, sizeof(buf), "selinux:%s", lxc_conf->lsm_se_context);
467
468 if (ret < 0 || ret >= sizeof(buf))
469 goto err;
470
471 DECLARE_ARG("--lsm-profile");
472 DECLARE_ARG(buf);
473 }
474
e29fe1dd
TA
475 additional = lxc_list_len(&opts->c->lxc_conf->network) * 2;
476
fa071249
TA
477 m = realloc(argv, (argc + additional + 1) * sizeof(*argv));
478 if (!m)
479 goto err;
e29fe1dd
TA
480 argv = m;
481
482 lxc_list_for_each(it, &opts->c->lxc_conf->network) {
483 char eth[128], *veth;
484 struct lxc_netdev *n = it->elem;
485
486 if (n->name) {
487 if (strlen(n->name) >= sizeof(eth))
488 goto err;
489 strncpy(eth, n->name, sizeof(eth));
796a109d
TA
490 } else {
491 ret = snprintf(eth, sizeof(eth), "eth%d", netnr);
492 if (ret < 0 || ret >= sizeof(eth))
493 goto err;
494 }
e29fe1dd 495
e2697330
TA
496 switch (n->type) {
497 case LXC_NET_VETH:
498 veth = n->priv.veth_attr.pair;
e29fe1dd 499
e2697330
TA
500 if (n->link)
501 ret = snprintf(buf, sizeof(buf), "veth[%s]:%s@%s", eth, veth, n->link);
502 else
503 ret = snprintf(buf, sizeof(buf), "veth[%s]:%s", eth, veth);
504 if (ret < 0 || ret >= sizeof(buf))
505 goto err;
506 break;
507 case LXC_NET_MACVLAN:
e2697330 508 if (!n->link) {
9f1f54b0 509 ERROR("no host interface for macvlan %s", n->name);
e2697330
TA
510 goto err;
511 }
512
513 ret = snprintf(buf, sizeof(buf), "macvlan[%s]:%s", eth, n->link);
514 if (ret < 0 || ret >= sizeof(buf))
515 goto err;
516 break;
517 case LXC_NET_NONE:
518 case LXC_NET_EMPTY:
519 break;
520 default:
521 /* we have screened for this earlier... */
9f1f54b0 522 ERROR("unexpected network type %d", n->type);
e29fe1dd 523 goto err;
e2697330 524 }
e29fe1dd 525
0f90d613 526 DECLARE_ARG("--external");
e29fe1dd 527 DECLARE_ARG(buf);
2f3fbc6b 528 netnr++;
e29fe1dd
TA
529 }
530
531 }
532
533 argv[argc] = NULL;
534
cf4b07a5 535 buf[0] = 0;
a17fa3c0 536 pos = 0;
72a30576 537
cf4b07a5 538 for (i = 0; argv[i]; i++) {
72a30576
NE
539 ret = snprintf(buf + pos, sizeof(buf) - pos, "%s ", argv[i]);
540 if (ret < 0 || ret >= sizeof(buf) - pos)
541 goto err;
542 else
543 pos += ret;
cf4b07a5
TA
544 }
545
546 INFO("execing: %s", buf);
547
5af85cb1
TA
548 /* before criu inits its log, it sometimes prints things to stdout/err;
549 * let's be sure we capture that.
550 */
551 if (dup2(opts->pipefd, STDOUT_FILENO) < 0) {
552 SYSERROR("dup2 stdout failed");
553 goto err;
554 }
555
556 if (dup2(opts->pipefd, STDERR_FILENO) < 0) {
557 SYSERROR("dup2 stderr failed");
558 goto err;
559 }
560
561 close(opts->pipefd);
562
e29fe1dd
TA
563#undef DECLARE_ARG
564 execv(argv[0], argv);
565err:
e29fe1dd
TA
566 for (i = 0; argv[i]; i++)
567 free(argv[i]);
568 free(argv);
569}
570
8ba5ced7
TA
571/*
572 * Check to see if the criu version is recent enough for all the features we
573 * use. This version allows either CRIU_VERSION or (CRIU_GITID_VERSION and
574 * CRIU_GITID_PATCHLEVEL) to work, enabling users building from git to c/r
575 * things potentially before a version is released with a particular feature.
576 *
577 * The intent is that when criu development slows down, we can drop this, but
578 * for now we shouldn't attempt to c/r with versions that we know won't work.
5407e2ab
CB
579 *
580 * Note: If version != NULL criu_version() stores the detected criu version in
581 * version. Allocates memory for version which must be freed by caller.
8ba5ced7 582 */
5407e2ab 583static bool criu_version_ok(char **version)
8ba5ced7
TA
584{
585 int pipes[2];
586 pid_t pid;
587
588 if (pipe(pipes) < 0) {
589 SYSERROR("pipe() failed");
590 return false;
591 }
592
593 pid = fork();
594 if (pid < 0) {
595 SYSERROR("fork() failed");
596 return false;
597 }
598
599 if (pid == 0) {
600 char *args[] = { "criu", "--version", NULL };
755fa453 601 char *path;
8ba5ced7
TA
602 close(pipes[0]);
603
604 close(STDERR_FILENO);
605 if (dup2(pipes[1], STDOUT_FILENO) < 0)
606 exit(1);
607
755fa453 608 path = on_path("criu", NULL);
d9b32b09
SH
609 if (!path)
610 exit(1);
611
755fa453 612 execv(path, args);
8ba5ced7
TA
613 exit(1);
614 } else {
615 FILE *f;
5407e2ab 616 char *tmp;
8ba5ced7
TA
617 int patch;
618
619 close(pipes[1]);
620 if (wait_for_pid(pid) < 0) {
621 close(pipes[0]);
4eae4051 622 SYSERROR("execing criu failed, is it installed?");
8ba5ced7
TA
623 return false;
624 }
625
626 f = fdopen(pipes[0], "r");
627 if (!f) {
628 close(pipes[0]);
629 return false;
630 }
631
5407e2ab
CB
632 tmp = malloc(1024);
633 if (!tmp) {
634 fclose(f);
635 return false;
636 }
637
638 if (fscanf(f, "Version: %1023[^\n]s", tmp) != 1)
8ba5ced7
TA
639 goto version_error;
640
641 if (fgetc(f) != '\n')
642 goto version_error;
643
5407e2ab 644 if (strcmp(tmp, CRIU_VERSION) >= 0)
8ba5ced7
TA
645 goto version_match;
646
5407e2ab 647 if (fscanf(f, "GitID: v%1023[^-]s", tmp) != 1)
8ba5ced7
TA
648 goto version_error;
649
650 if (fgetc(f) != '-')
651 goto version_error;
652
653 if (fscanf(f, "%d", &patch) != 1)
654 goto version_error;
655
5407e2ab 656 if (strcmp(tmp, CRIU_GITID_VERSION) < 0)
8ba5ced7
TA
657 goto version_error;
658
659 if (patch < CRIU_GITID_PATCHLEVEL)
660 goto version_error;
661
662version_match:
3158ab5b 663 fclose(f);
5407e2ab
CB
664 if (!version)
665 free(tmp);
666 else
667 *version = tmp;
8ba5ced7
TA
668 return true;
669
670version_error:
3158ab5b 671 fclose(f);
5407e2ab 672 free(tmp);
9f1f54b0 673 ERROR("must have criu " CRIU_VERSION " or greater to checkpoint/restore");
8ba5ced7
TA
674 return false;
675 }
676}
677
e29fe1dd
TA
678/* Check and make sure the container has a configuration that we know CRIU can
679 * dump. */
f1954503 680static bool criu_ok(struct lxc_container *c, char **criu_version)
e29fe1dd
TA
681{
682 struct lxc_list *it;
e29fe1dd 683
f1954503 684 if (!criu_version_ok(criu_version))
8ba5ced7
TA
685 return false;
686
e29fe1dd 687 if (geteuid()) {
9f1f54b0 688 ERROR("Must be root to checkpoint");
e29fe1dd
TA
689 return false;
690 }
691
692 /* We only know how to restore containers with veth networks. */
693 lxc_list_for_each(it, &c->lxc_conf->network) {
694 struct lxc_netdev *n = it->elem;
65b20221
TA
695 switch(n->type) {
696 case LXC_NET_VETH:
697 case LXC_NET_NONE:
698 case LXC_NET_EMPTY:
e2697330 699 case LXC_NET_MACVLAN:
65b20221
TA
700 break;
701 default:
9f1f54b0 702 ERROR("Found un-dumpable network: %s (%s)", lxc_net_type_to_str(n->type), n->name);
e29fe1dd
TA
703 return false;
704 }
705 }
706
e29fe1dd
TA
707 return true;
708}
709
e29fe1dd
TA
710static bool restore_net_info(struct lxc_container *c)
711{
712 struct lxc_list *it;
713 bool has_error = true;
714
715 if (container_mem_lock(c))
716 return false;
717
718 lxc_list_for_each(it, &c->lxc_conf->network) {
719 struct lxc_netdev *netdev = it->elem;
720 char template[IFNAMSIZ];
65b20221
TA
721
722 if (netdev->type != LXC_NET_VETH)
723 continue;
724
e29fe1dd
TA
725 snprintf(template, sizeof(template), "vethXXXXXX");
726
727 if (!netdev->priv.veth_attr.pair)
728 netdev->priv.veth_attr.pair = lxc_mkifname(template);
729
730 if (!netdev->priv.veth_attr.pair)
731 goto out_unlock;
732 }
733
734 has_error = false;
735
736out_unlock:
737 container_mem_unlock(c);
738 return !has_error;
739}
740
aef3d51e
TA
741// do_restore never returns, the calling process is used as the
742// monitor process. do_restore calls exit() if it fails.
c33b0338 743static void do_restore(struct lxc_container *c, int status_pipe, struct migrate_opts *opts, char *criu_version)
e29fe1dd
TA
744{
745 pid_t pid;
e29fe1dd 746 struct lxc_handler *handler;
a7fb6043 747 int status, fd;
9b1e2e6e 748 int pipes[2] = {-1, -1};
e29fe1dd 749
a7fb6043
TA
750 /* Try to detach from the current controlling tty if it exists.
751 * Othwerise, lxc_init (via lxc_console) will attach the container's
752 * console output to the current tty, which is probably not what any
753 * library user wants, and if they do, they can just manually configure
754 * it :)
755 */
756 fd = open("/dev/tty", O_RDWR);
757 if (fd >= 0) {
758 if (ioctl(fd, TIOCNOTTY, NULL) < 0)
759 SYSERROR("couldn't detach from tty");
760 close(fd);
761 }
762
e29fe1dd
TA
763 handler = lxc_init(c->name, c->lxc_conf, c->config_path);
764 if (!handler)
765 goto out;
766
767 if (!cgroup_init(handler)) {
768 ERROR("failed initing cgroups");
769 goto out_fini_handler;
770 }
771
772 if (!cgroup_create(handler)) {
773 ERROR("failed creating groups");
774 goto out_fini_handler;
775 }
776
777 if (!restore_net_info(c)) {
778 ERROR("failed restoring network info");
779 goto out_fini_handler;
780 }
781
782 resolve_clone_flags(handler);
783
3d9a5c85
TA
784 if (pipe(pipes) < 0) {
785 SYSERROR("pipe() failed");
786 goto out_fini_handler;
787 }
788
e29fe1dd
TA
789 pid = fork();
790 if (pid < 0)
791 goto out_fini_handler;
792
793 if (pid == 0) {
794 struct criu_opts os;
795 struct lxc_rootfs *rootfs;
4b54788e 796 int flags;
e29fe1dd 797
3d9a5c85
TA
798 close(status_pipe);
799 status_pipe = -1;
800
801 close(pipes[0]);
802 pipes[0] = -1;
e29fe1dd
TA
803
804 if (unshare(CLONE_NEWNS))
805 goto out_fini_handler;
806
807 /* CRIU needs the lxc root bind mounted so that it is the root of some
808 * mount. */
809 rootfs = &c->lxc_conf->rootfs;
810
811 if (rootfs_is_blockdev(c->lxc_conf)) {
812 if (do_rootfs_setup(c->lxc_conf, c->name, c->config_path) < 0)
813 goto out_fini_handler;
814 } else {
815 if (mkdir(rootfs->mount, 0755) < 0 && errno != EEXIST)
816 goto out_fini_handler;
817
818 if (mount(NULL, "/", NULL, MS_SLAVE | MS_REC, NULL) < 0) {
819 SYSERROR("remount / to private failed");
820 goto out_fini_handler;
821 }
822
823 if (mount(rootfs->path, rootfs->mount, NULL, MS_BIND, NULL) < 0) {
824 rmdir(rootfs->mount);
825 goto out_fini_handler;
826 }
827 }
828
5af85cb1 829 os.pipefd = pipes[1];
e29fe1dd 830 os.action = "restore";
b2c3710f 831 os.user = opts;
e29fe1dd 832 os.c = c;
4b54788e 833 os.console_fd = c->lxc_conf->console.slave;
f1954503 834 os.criu_version = criu_version;
0ab5703f 835 os.handler = handler;
4b54788e 836
97e4f1a9
TA
837 if (os.console_fd >= 0) {
838 /* Twiddle the FD_CLOEXEC bit. We want to pass this FD to criu
839 * via --inherit-fd, so we don't want it to close.
840 */
841 flags = fcntl(os.console_fd, F_GETFD);
842 if (flags < 0) {
843 SYSERROR("F_GETFD failed: %d", os.console_fd);
844 goto out_fini_handler;
845 }
4b54788e 846
97e4f1a9 847 flags &= ~FD_CLOEXEC;
4b54788e 848
97e4f1a9
TA
849 if (fcntl(os.console_fd, F_SETFD, flags) < 0) {
850 SYSERROR("F_SETFD failed");
851 goto out_fini_handler;
852 }
4b54788e
TA
853 }
854 os.console_name = c->lxc_conf->console.name;
e29fe1dd
TA
855
856 /* exec_criu() returning is an error */
7103fe6f 857 exec_criu(&os);
e29fe1dd
TA
858 umount(rootfs->mount);
859 rmdir(rootfs->mount);
860 goto out_fini_handler;
861 } else {
862 int ret;
863 char title[2048];
864
3d9a5c85
TA
865 close(pipes[1]);
866 pipes[1] = -1;
867
e29fe1dd
TA
868 pid_t w = waitpid(pid, &status, 0);
869 if (w == -1) {
870 SYSERROR("waitpid");
871 goto out_fini_handler;
872 }
873
e29fe1dd 874 if (WIFEXITED(status)) {
75d219f0
TA
875 char buf[4096];
876
e29fe1dd 877 if (WEXITSTATUS(status)) {
3d9a5c85
TA
878 int n;
879
880 n = read(pipes[0], buf, sizeof(buf));
881 if (n < 0) {
882 SYSERROR("failed reading from criu stderr");
883 goto out_fini_handler;
884 }
885
886 buf[n] = 0;
887
9f1f54b0 888 ERROR("criu process exited %d, output:\n%s", WEXITSTATUS(status), buf);
e29fe1dd
TA
889 goto out_fini_handler;
890 } else {
3eba9b49 891 ret = snprintf(buf, sizeof(buf), "/proc/self/task/%lu/children", (unsigned long)syscall(__NR_gettid));
75d219f0
TA
892 if (ret < 0 || ret >= sizeof(buf)) {
893 ERROR("snprintf'd too many characters: %d", ret);
894 goto out_fini_handler;
895 }
896
897 FILE *f = fopen(buf, "r");
e29fe1dd 898 if (!f) {
9f1f54b0 899 SYSERROR("couldn't read restore's children file %s", buf);
e29fe1dd
TA
900 goto out_fini_handler;
901 }
902
903 ret = fscanf(f, "%d", (int*) &handler->pid);
904 fclose(f);
905 if (ret != 1) {
906 ERROR("reading restore pid failed");
907 goto out_fini_handler;
908 }
909
f8a41688
TA
910 if (lxc_set_state(c->name, handler, RUNNING)) {
911 ERROR("error setting running state after restore");
e29fe1dd 912 goto out_fini_handler;
f8a41688 913 }
e29fe1dd
TA
914 }
915 } else {
9f1f54b0 916 ERROR("CRIU was killed with signal %d", WTERMSIG(status));
e29fe1dd
TA
917 goto out_fini_handler;
918 }
919
3d9a5c85
TA
920 close(pipes[0]);
921
f3886023
TA
922 ret = write(status_pipe, &status, sizeof(status));
923 close(status_pipe);
924 status_pipe = -1;
925
926 if (sizeof(status) != ret) {
927 SYSERROR("failed to write all of status");
928 goto out_fini_handler;
929 }
930
e29fe1dd
TA
931 /*
932 * See comment in lxcapi_start; we don't care if these
933 * fail because it's just a beauty thing. We just
934 * assign the return here to silence potential.
935 */
936 ret = snprintf(title, sizeof(title), "[lxc monitor] %s %s", c->config_path, c->name);
937 ret = setproctitle(title);
938
939 ret = lxc_poll(c->name, handler);
940 if (ret)
941 lxc_abort(c->name, handler);
942 lxc_fini(c->name, handler);
943 exit(ret);
944 }
945
946out_fini_handler:
3d9a5c85
TA
947 if (pipes[0] >= 0)
948 close(pipes[0]);
949 if (pipes[1] >= 0)
950 close(pipes[1]);
951
e29fe1dd
TA
952 lxc_fini(c->name, handler);
953
954out:
3d9a5c85 955 if (status_pipe >= 0) {
f3886023
TA
956 /* ensure getting here was a failure, e.g. if we failed to
957 * parse the child pid or something, even after a successful
958 * restore
959 */
960 if (!status)
961 status = 1;
3d9a5c85 962 if (write(status_pipe, &status, sizeof(status)) != sizeof(status)) {
e29fe1dd
TA
963 SYSERROR("writing status failed");
964 }
3d9a5c85 965 close(status_pipe);
e29fe1dd
TA
966 }
967
968 exit(1);
969}
aef3d51e 970
4b54788e
TA
971static int save_tty_major_minor(char *directory, struct lxc_container *c, char *tty_id, int len)
972{
973 FILE *f;
974 char path[PATH_MAX];
975 int ret;
976 struct stat sb;
977
978 if (c->lxc_conf->console.path && !strcmp(c->lxc_conf->console.path, "none")) {
979 tty_id[0] = 0;
980 return 0;
981 }
982
983 ret = snprintf(path, sizeof(path), "/proc/%d/root/dev/console", c->init_pid(c));
984 if (ret < 0 || ret >= sizeof(path)) {
985 ERROR("snprintf'd too many chacters: %d", ret);
986 return -1;
987 }
988
989 ret = stat(path, &sb);
990 if (ret < 0) {
991 SYSERROR("stat of %s failed", path);
992 return -1;
993 }
994
995 ret = snprintf(path, sizeof(path), "%s/tty.info", directory);
996 if (ret < 0 || ret >= sizeof(path)) {
997 ERROR("snprintf'd too many characters: %d", ret);
998 return -1;
999 }
1000
f03280a7
TA
1001 ret = snprintf(tty_id, len, "tty[%llx:%llx]",
1002 (long long unsigned) sb.st_rdev,
1003 (long long unsigned) sb.st_dev);
4b54788e
TA
1004 if (ret < 0 || ret >= sizeof(path)) {
1005 ERROR("snprintf'd too many characters: %d", ret);
1006 return -1;
1007 }
1008
1009 f = fopen(path, "w");
1010 if (!f) {
1011 SYSERROR("failed to open %s", path);
1012 return -1;
1013 }
1014
1015 ret = fprintf(f, "%s", tty_id);
1016 fclose(f);
1017 if (ret < 0)
1018 SYSERROR("failed to write to %s", path);
1019 return ret;
1020}
1021
aef3d51e 1022/* do one of either predump or a regular dump */
b2c3710f 1023static bool do_dump(struct lxc_container *c, char *mode, struct migrate_opts *opts)
aef3d51e
TA
1024{
1025 pid_t pid;
f1954503 1026 char *criu_version = NULL;
5af85cb1 1027 int criuout[2];
aef3d51e 1028
f1954503 1029 if (!criu_ok(c, &criu_version))
aef3d51e
TA
1030 return false;
1031
5af85cb1
TA
1032 if (pipe(criuout) < 0) {
1033 SYSERROR("pipe() failed");
aef3d51e 1034 return false;
5af85cb1
TA
1035 }
1036
1037 if (mkdir_p(opts->directory, 0700) < 0)
1038 goto fail;
aef3d51e
TA
1039
1040 pid = fork();
1041 if (pid < 0) {
1042 SYSERROR("fork failed");
5af85cb1 1043 goto fail;
aef3d51e
TA
1044 }
1045
1046 if (pid == 0) {
1047 struct criu_opts os;
0ab5703f
TA
1048 struct lxc_handler h;
1049
5af85cb1
TA
1050 close(criuout[0]);
1051
0ab5703f
TA
1052 h.name = c->name;
1053 if (!cgroup_init(&h)) {
1054 ERROR("failed to cgroup_init()");
1055 exit(1);
1056 }
aef3d51e 1057
5af85cb1 1058 os.pipefd = criuout[1];
aef3d51e 1059 os.action = mode;
b2c3710f 1060 os.user = opts;
aef3d51e 1061 os.c = c;
4b54788e 1062 os.console_name = c->lxc_conf->console.path;
f1954503 1063 os.criu_version = criu_version;
74eb576c 1064
b2c3710f 1065 if (save_tty_major_minor(opts->directory, c, os.tty_id, sizeof(os.tty_id)) < 0)
4b54788e 1066 exit(1);
aef3d51e
TA
1067
1068 /* exec_criu() returning is an error */
7103fe6f 1069 exec_criu(&os);
aef3d51e
TA
1070 exit(1);
1071 } else {
1072 int status;
5af85cb1
TA
1073 ssize_t n;
1074 char buf[4096];
1075 bool ret;
1076
1077 close(criuout[1]);
1078
aef3d51e
TA
1079 pid_t w = waitpid(pid, &status, 0);
1080 if (w == -1) {
1081 SYSERROR("waitpid");
5af85cb1 1082 close(criuout[0]);
aef3d51e
TA
1083 return false;
1084 }
1085
5af85cb1
TA
1086 n = read(criuout[0], buf, sizeof(buf));
1087 close(criuout[0]);
1088 if (n < 0) {
1089 SYSERROR("read");
1090 n = 0;
1091 }
1092 buf[n] = 0;
1093
aef3d51e
TA
1094 if (WIFEXITED(status)) {
1095 if (WEXITSTATUS(status)) {
9f1f54b0 1096 ERROR("dump failed with %d", WEXITSTATUS(status));
5af85cb1
TA
1097 ret = false;
1098 } else {
1099 ret = true;
aef3d51e 1100 }
aef3d51e 1101 } else if (WIFSIGNALED(status)) {
9f1f54b0 1102 ERROR("dump signaled with %d", WTERMSIG(status));
5af85cb1 1103 ret = false;
aef3d51e 1104 } else {
9f1f54b0 1105 ERROR("unknown dump exit %d", status);
5af85cb1 1106 ret = false;
aef3d51e 1107 }
5af85cb1
TA
1108
1109 if (!ret)
1110 ERROR("criu output: %s", buf);
1111 return ret;
aef3d51e 1112 }
5af85cb1
TA
1113fail:
1114 close(criuout[0]);
1115 close(criuout[1]);
1116 rmdir(opts->directory);
1117 return false;
aef3d51e
TA
1118}
1119
b2c3710f 1120bool __criu_pre_dump(struct lxc_container *c, struct migrate_opts *opts)
aef3d51e 1121{
b2c3710f 1122 return do_dump(c, "pre-dump", opts);
aef3d51e
TA
1123}
1124
b2c3710f 1125bool __criu_dump(struct lxc_container *c, struct migrate_opts *opts)
aef3d51e
TA
1126{
1127 char path[PATH_MAX];
1128 int ret;
1129
b2c3710f 1130 ret = snprintf(path, sizeof(path), "%s/inventory.img", opts->directory);
aef3d51e
TA
1131 if (ret < 0 || ret >= sizeof(path))
1132 return false;
1133
1134 if (access(path, F_OK) == 0) {
9f1f54b0 1135 ERROR("please use a fresh directory for the dump directory");
aef3d51e
TA
1136 return false;
1137 }
1138
b2c3710f 1139 return do_dump(c, "dump", opts);
aef3d51e
TA
1140}
1141
b2c3710f 1142bool __criu_restore(struct lxc_container *c, struct migrate_opts *opts)
aef3d51e
TA
1143{
1144 pid_t pid;
1145 int status, nread;
1146 int pipefd[2];
f1954503 1147 char *criu_version = NULL;
aef3d51e 1148
f1954503 1149 if (!criu_ok(c, &criu_version))
aef3d51e
TA
1150 return false;
1151
1152 if (geteuid()) {
9f1f54b0 1153 ERROR("Must be root to restore");
aef3d51e
TA
1154 return false;
1155 }
1156
1157 if (pipe(pipefd)) {
1158 ERROR("failed to create pipe");
1159 return false;
1160 }
1161
1162 pid = fork();
1163 if (pid < 0) {
1164 close(pipefd[0]);
1165 close(pipefd[1]);
1166 return false;
1167 }
1168
1169 if (pid == 0) {
1170 close(pipefd[0]);
1171 // this never returns
f1954503 1172 do_restore(c, pipefd[1], opts, criu_version);
aef3d51e
TA
1173 }
1174
1175 close(pipefd[1]);
1176
1177 nread = read(pipefd[0], &status, sizeof(status));
1178 close(pipefd[0]);
1179 if (sizeof(status) != nread) {
1180 ERROR("reading status from pipe failed");
1181 goto err_wait;
1182 }
1183
1184 // If the criu process was killed or exited nonzero, wait() for the
1185 // handler, since the restore process died. Otherwise, we don't need to
1186 // wait, since the child becomes the monitor process.
1187 if (!WIFEXITED(status) || WEXITSTATUS(status))
1188 goto err_wait;
1189 return true;
1190
1191err_wait:
1192 if (wait_for_pid(pid))
1193 ERROR("restore process died");
1194 return false;
1195}