]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/lxccontainer.c
Fix a file descriptor leak in the daemonization
[mirror_lxc.git] / src / lxc / lxccontainer.c
1 /* liblxcapi
2 *
3 * Copyright © 2012 Serge Hallyn <serge.hallyn@ubuntu.com>.
4 * Copyright © 2012 Canonical Ltd.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #define _GNU_SOURCE
22 #include <assert.h>
23 #include <stdarg.h>
24 #include <pthread.h>
25 #include <unistd.h>
26 #include <sys/types.h>
27 #include <sys/wait.h>
28 #include <sys/mount.h>
29 #include <errno.h>
30 #include <fcntl.h>
31 #include <sched.h>
32 #include <dirent.h>
33 #include <sched.h>
34 #include <arpa/inet.h>
35 #include <libgen.h>
36 #include <stdint.h>
37 #include <grp.h>
38 #include <sys/syscall.h>
39
40 #include <lxc/lxccontainer.h>
41 #include <lxc/version.h>
42
43 #include "config.h"
44 #include "lxc.h"
45 #include "state.h"
46 #include "conf.h"
47 #include "confile.h"
48 #include "console.h"
49 #include "cgroup.h"
50 #include "commands.h"
51 #include "log.h"
52 #include "bdev.h"
53 #include "utils.h"
54 #include "attach.h"
55 #include "monitor.h"
56 #include "namespace.h"
57 #include "lxclock.h"
58
59 #if HAVE_IFADDRS_H
60 #include <ifaddrs.h>
61 #else
62 #include <../include/ifaddrs.h>
63 #endif
64
65 #define MAX_BUFFER 4096
66
67 #define NOT_SUPPORTED_ERROR "the requested function %s is not currently supported with unprivileged containers"
68
69 /* Define faccessat() if missing from the C library */
70 #ifndef HAVE_FACCESSAT
71 static int faccessat(int __fd, const char *__file, int __type, int __flag)
72 {
73 #ifdef __NR_faccessat
74 return syscall(__NR_faccessat, __fd, __file, __type, __flag);
75 #else
76 errno = ENOSYS;
77 return -1;
78 #endif
79 }
80 #endif
81
82
83 lxc_log_define(lxc_container, lxc);
84
85 static bool config_file_exists(const char *lxcpath, const char *cname)
86 {
87 /* $lxcpath + '/' + $cname + '/config' + \0 */
88 int ret, len = strlen(lxcpath) + strlen(cname) + 9;
89 char *fname = alloca(len);
90
91 ret = snprintf(fname, len, "%s/%s/config", lxcpath, cname);
92 if (ret < 0 || ret >= len)
93 return false;
94
95 return file_exists(fname);
96 }
97
98 /*
99 * A few functions to help detect when a container creation failed.
100 * If a container creation was killed partway through, then trying
101 * to actually start that container could harm the host. We detect
102 * this by creating a 'partial' file under the container directory,
103 * and keeping an advisory lock. When container creation completes,
104 * we remove that file. When we load or try to start a container, if
105 * we find that file, without a flock, we remove the container.
106 */
107 static int ongoing_create(struct lxc_container *c)
108 {
109 int len = strlen(c->config_path) + strlen(c->name) + 10;
110 char *path = alloca(len);
111 int fd, ret;
112 struct flock lk;
113
114 ret = snprintf(path, len, "%s/%s/partial", c->config_path, c->name);
115 if (ret < 0 || ret >= len) {
116 ERROR("Error writing partial pathname");
117 return -1;
118 }
119
120 if (!file_exists(path))
121 return 0;
122 fd = open(path, O_RDWR);
123 if (fd < 0) {
124 // give benefit of the doubt
125 SYSERROR("Error opening partial file");
126 return 0;
127 }
128 lk.l_type = F_WRLCK;
129 lk.l_whence = SEEK_SET;
130 lk.l_start = 0;
131 lk.l_len = 0;
132 lk.l_pid = -1;
133 if (fcntl(fd, F_GETLK, &lk) == 0 && lk.l_pid != -1) {
134 // create is still ongoing
135 close(fd);
136 return 1;
137 }
138 // create completed but partial is still there.
139 close(fd);
140 return 2;
141 }
142
143 static int create_partial(struct lxc_container *c)
144 {
145 // $lxcpath + '/' + $name + '/partial' + \0
146 int len = strlen(c->config_path) + strlen(c->name) + 10;
147 char *path = alloca(len);
148 int fd, ret;
149 struct flock lk;
150
151 ret = snprintf(path, len, "%s/%s/partial", c->config_path, c->name);
152 if (ret < 0 || ret >= len) {
153 ERROR("Error writing partial pathname");
154 return -1;
155 }
156 if ((fd=open(path, O_RDWR | O_CREAT | O_EXCL, 0755)) < 0) {
157 SYSERROR("Erorr creating partial file");
158 return -1;
159 }
160 lk.l_type = F_WRLCK;
161 lk.l_whence = SEEK_SET;
162 lk.l_start = 0;
163 lk.l_len = 0;
164 if (fcntl(fd, F_SETLKW, &lk) < 0) {
165 SYSERROR("Error locking partial file %s", path);
166 close(fd);
167 return -1;
168 }
169
170 return fd;
171 }
172
173 static void remove_partial(struct lxc_container *c, int fd)
174 {
175 // $lxcpath + '/' + $name + '/partial' + \0
176 int len = strlen(c->config_path) + strlen(c->name) + 10;
177 char *path = alloca(len);
178 int ret;
179
180 close(fd);
181 ret = snprintf(path, len, "%s/%s/partial", c->config_path, c->name);
182 if (ret < 0 || ret >= len) {
183 ERROR("Error writing partial pathname");
184 return;
185 }
186 if (unlink(path) < 0)
187 SYSERROR("Error unlink partial file %s", path);
188 }
189
190 /* LOCKING
191 * 1. container_mem_lock(c) protects the struct lxc_container from multiple threads.
192 * 2. container_disk_lock(c) protects the on-disk container data - in particular the
193 * container configuration file.
194 * The container_disk_lock also takes the container_mem_lock.
195 * 3. thread_mutex protects process data (ex: fd table) from multiple threads.
196 * NOTHING mutexes two independent programs with their own struct
197 * lxc_container for the same c->name, between API calls. For instance,
198 * c->config_read(); c->start(); Between those calls, data on disk
199 * could change (which shouldn't bother the caller unless for instance
200 * the rootfs get moved). c->config_read(); update; c->config_write();
201 * Two such updaters could race. The callers should therefore check their
202 * results. Trying to prevent that would necessarily expose us to deadlocks
203 * due to hung callers. So I prefer to keep the locks only within our own
204 * functions, not across functions.
205 *
206 * If you're going to clone while holding a lxccontainer, increment
207 * c->numthreads (under privlock) before forking. When deleting,
208 * decrement numthreads under privlock, then if it hits 0 you can delete.
209 * Do not ever use a lxccontainer whose numthreads you did not bump.
210 */
211
212 static void lxc_container_free(struct lxc_container *c)
213 {
214 if (!c)
215 return;
216
217 if (c->configfile) {
218 free(c->configfile);
219 c->configfile = NULL;
220 }
221 if (c->error_string) {
222 free(c->error_string);
223 c->error_string = NULL;
224 }
225 if (c->slock) {
226 lxc_putlock(c->slock);
227 c->slock = NULL;
228 }
229 if (c->privlock) {
230 lxc_putlock(c->privlock);
231 c->privlock = NULL;
232 }
233 if (c->name) {
234 free(c->name);
235 c->name = NULL;
236 }
237 if (c->lxc_conf) {
238 lxc_conf_free(c->lxc_conf);
239 c->lxc_conf = NULL;
240 }
241 if (c->config_path) {
242 free(c->config_path);
243 c->config_path = NULL;
244 }
245
246 free(c);
247 }
248
249 /*
250 * Consider the following case:
251 freer | racing get()er
252 ==================================================================
253 lxc_container_put() | lxc_container_get()
254 \ lxclock(c->privlock) | c->numthreads < 1? (no)
255 \ c->numthreads = 0 | \ lxclock(c->privlock) -> waits
256 \ lxcunlock() | \
257 \ lxc_container_free() | \ lxclock() returns
258 | \ c->numthreads < 1 -> return 0
259 \ \ (free stuff) |
260 \ \ sem_destroy(privlock) |
261
262 * When the get()er checks numthreads the first time, one of the following
263 * is true:
264 * 1. freer has set numthreads = 0. get() returns 0
265 * 2. freer is between lxclock and setting numthreads to 0. get()er will
266 * sem_wait on privlock, get lxclock after freer() drops it, then see
267 * numthreads is 0 and exit without touching lxclock again..
268 * 3. freer has not yet locked privlock. If get()er runs first, then put()er
269 * will see --numthreads = 1 and not call lxc_container_free().
270 */
271
272 int lxc_container_get(struct lxc_container *c)
273 {
274 if (!c)
275 return 0;
276
277 // if someone else has already started freeing the container, don't
278 // try to take the lock, which may be invalid
279 if (c->numthreads < 1)
280 return 0;
281
282 if (container_mem_lock(c))
283 return 0;
284 if (c->numthreads < 1) {
285 // bail without trying to unlock, bc the privlock is now probably
286 // in freed memory
287 return 0;
288 }
289 c->numthreads++;
290 container_mem_unlock(c);
291 return 1;
292 }
293
294 int lxc_container_put(struct lxc_container *c)
295 {
296 if (!c)
297 return -1;
298 if (container_mem_lock(c))
299 return -1;
300 if (--c->numthreads < 1) {
301 container_mem_unlock(c);
302 lxc_container_free(c);
303 return 1;
304 }
305 container_mem_unlock(c);
306 return 0;
307 }
308
309 static bool lxcapi_is_defined(struct lxc_container *c)
310 {
311 struct stat statbuf;
312 bool ret = false;
313 int statret;
314
315 if (!c)
316 return false;
317
318 if (container_mem_lock(c))
319 return false;
320 if (!c->configfile)
321 goto out;
322 statret = stat(c->configfile, &statbuf);
323 if (statret != 0)
324 goto out;
325 ret = true;
326
327 out:
328 container_mem_unlock(c);
329 return ret;
330 }
331
332 static const char *lxcapi_state(struct lxc_container *c)
333 {
334 lxc_state_t s;
335
336 if (!c)
337 return NULL;
338 s = lxc_getstate(c->name, c->config_path);
339 return lxc_state2str(s);
340 }
341
342 static bool is_stopped(struct lxc_container *c)
343 {
344 lxc_state_t s;
345 s = lxc_getstate(c->name, c->config_path);
346 return (s == STOPPED);
347 }
348
349 static bool lxcapi_is_running(struct lxc_container *c)
350 {
351 const char *s;
352
353 if (!c)
354 return false;
355 s = lxcapi_state(c);
356 if (!s || strcmp(s, "STOPPED") == 0)
357 return false;
358 return true;
359 }
360
361 static bool lxcapi_freeze(struct lxc_container *c)
362 {
363 int ret;
364 if (!c)
365 return false;
366
367 ret = lxc_freeze(c->name, c->config_path);
368 if (ret)
369 return false;
370 return true;
371 }
372
373 static bool lxcapi_unfreeze(struct lxc_container *c)
374 {
375 int ret;
376 if (!c)
377 return false;
378
379 ret = lxc_unfreeze(c->name, c->config_path);
380 if (ret)
381 return false;
382 return true;
383 }
384
385 static int lxcapi_console_getfd(struct lxc_container *c, int *ttynum, int *masterfd)
386 {
387 int ttyfd;
388 if (!c)
389 return -1;
390
391 ttyfd = lxc_console_getfd(c, ttynum, masterfd);
392 return ttyfd;
393 }
394
395 static int lxcapi_console(struct lxc_container *c, int ttynum, int stdinfd,
396 int stdoutfd, int stderrfd, int escape)
397 {
398 return lxc_console(c, ttynum, stdinfd, stdoutfd, stderrfd, escape);
399 }
400
401 static pid_t lxcapi_init_pid(struct lxc_container *c)
402 {
403 if (!c)
404 return -1;
405
406 return lxc_cmd_get_init_pid(c->name, c->config_path);
407 }
408
409 static bool load_config_locked(struct lxc_container *c, const char *fname)
410 {
411 if (!c->lxc_conf)
412 c->lxc_conf = lxc_conf_init();
413 if (!c->lxc_conf)
414 return false;
415 if (!lxc_config_read(fname, c->lxc_conf, false))
416 return true;
417 return false;
418 }
419
420 static bool lxcapi_load_config(struct lxc_container *c, const char *alt_file)
421 {
422 bool ret = false, need_disklock = false;
423 int lret;
424 const char *fname;
425 if (!c)
426 return false;
427
428 fname = c->configfile;
429 if (alt_file)
430 fname = alt_file;
431 if (!fname)
432 return false;
433 /*
434 * If we're reading something other than the container's config,
435 * we only need to lock the in-memory container. If loading the
436 * container's config file, take the disk lock.
437 */
438 if (strcmp(fname, c->configfile) == 0)
439 need_disklock = true;
440
441 if (need_disklock)
442 lret = container_disk_lock(c);
443 else
444 lret = container_mem_lock(c);
445 if (lret)
446 return false;
447
448 ret = load_config_locked(c, fname);
449
450 if (need_disklock)
451 container_disk_unlock(c);
452 else
453 container_mem_unlock(c);
454 return ret;
455 }
456
457 static bool lxcapi_want_daemonize(struct lxc_container *c, bool state)
458 {
459 if (!c || !c->lxc_conf)
460 return false;
461 if (container_mem_lock(c)) {
462 ERROR("Error getting mem lock");
463 return false;
464 }
465 c->daemonize = state;
466 /* daemonize implies close_all_fds so set it */
467 if (state == 1)
468 c->lxc_conf->close_all_fds = 1;
469 container_mem_unlock(c);
470 return true;
471 }
472
473 static bool lxcapi_want_close_all_fds(struct lxc_container *c, bool state)
474 {
475 if (!c || !c->lxc_conf)
476 return false;
477 if (container_mem_lock(c)) {
478 ERROR("Error getting mem lock");
479 return false;
480 }
481 c->lxc_conf->close_all_fds = state;
482 container_mem_unlock(c);
483 return true;
484 }
485
486 static bool lxcapi_wait(struct lxc_container *c, const char *state, int timeout)
487 {
488 int ret;
489
490 if (!c)
491 return false;
492
493 ret = lxc_wait(c->name, state, timeout, c->config_path);
494 return ret == 0;
495 }
496
497
498 static bool wait_on_daemonized_start(struct lxc_container *c, int pid)
499 {
500 /* we'll probably want to make this timeout configurable? */
501 int timeout = 5, ret, status;
502
503 /*
504 * our child is going to fork again, then exit. reap the
505 * child
506 */
507 ret = waitpid(pid, &status, 0);
508 if (ret == -1 || !WIFEXITED(status) || WEXITSTATUS(status) != 0)
509 DEBUG("failed waiting for first dual-fork child");
510 return lxcapi_wait(c, "RUNNING", timeout);
511 }
512
513 static bool am_single_threaded(void)
514 {
515 struct dirent dirent, *direntp;
516 DIR *dir;
517 int count=0;
518
519 dir = opendir("/proc/self/task");
520 if (!dir) {
521 INFO("failed to open /proc/self/task");
522 return false;
523 }
524
525 while (!readdir_r(dir, &dirent, &direntp)) {
526 if (!direntp)
527 break;
528
529 if (!strcmp(direntp->d_name, "."))
530 continue;
531
532 if (!strcmp(direntp->d_name, ".."))
533 continue;
534 if (++count > 1)
535 break;
536 }
537 closedir(dir);
538 return count == 1;
539 }
540
541 /*
542 * I can't decide if it'd be more convenient for callers if we accept '...',
543 * or a null-terminated array (i.e. execl vs execv)
544 */
545 static bool lxcapi_start(struct lxc_container *c, int useinit, char * const argv[])
546 {
547 int ret;
548 struct lxc_conf *conf;
549 bool daemonize = false;
550 FILE *pid_fp = NULL;
551 char *default_args[] = {
552 "/sbin/init",
553 NULL,
554 };
555
556 /* container exists */
557 if (!c)
558 return false;
559 /* container has been setup */
560 if (!c->lxc_conf)
561 return false;
562
563 if ((ret = ongoing_create(c)) < 0) {
564 ERROR("Error checking for incomplete creation");
565 return false;
566 }
567 if (ret == 2) {
568 ERROR("Error: %s creation was not completed", c->name);
569 c->destroy(c);
570 return false;
571 } else if (ret == 1) {
572 ERROR("Error: creation of %s is ongoing", c->name);
573 return false;
574 }
575
576 /* is this app meant to be run through lxcinit, as in lxc-execute? */
577 if (useinit && !argv)
578 return false;
579
580 if (container_mem_lock(c))
581 return false;
582 conf = c->lxc_conf;
583 daemonize = c->daemonize;
584 container_mem_unlock(c);
585
586 if (useinit) {
587 ret = lxc_execute(c->name, argv, 1, conf, c->config_path);
588 return ret == 0 ? true : false;
589 }
590
591 if (!argv)
592 argv = default_args;
593
594 /*
595 * say, I'm not sure - what locks do we want here? Any?
596 * Is liblxc's locking enough here to protect the on disk
597 * container? We don't want to exclude things like lxc_info
598 * while container is running...
599 */
600 if (daemonize) {
601 lxc_monitord_spawn(c->config_path);
602
603 pid_t pid = fork();
604 if (pid < 0)
605 return false;
606
607 if (pid != 0) {
608 /* Set to NULL because we don't want father unlink
609 * the PID file, child will do the free and unlink.
610 */
611 c->pidfile = NULL;
612 return wait_on_daemonized_start(c, pid);
613 }
614
615 /* second fork to be reparented by init */
616 pid = fork();
617 if (pid < 0) {
618 SYSERROR("Error doing dual-fork");
619 return false;
620 }
621 if (pid != 0)
622 exit(0);
623 /* like daemon(), chdir to / and redirect 0,1,2 to /dev/null */
624 if (chdir("/")) {
625 SYSERROR("Error chdir()ing to /.");
626 return false;
627 }
628 lxc_check_inherited(conf, -1);
629 close(0);
630 close(1);
631 close(2);
632 open("/dev/zero", O_RDONLY);
633 open("/dev/null", O_RDWR);
634 open("/dev/null", O_RDWR);
635 setsid();
636 } else {
637 if (!am_single_threaded()) {
638 ERROR("Cannot start non-daemonized container when threaded");
639 return false;
640 }
641 }
642
643 /* We need to write PID file after daeminize, so we always
644 * write the right PID.
645 */
646 if (c->pidfile) {
647 pid_fp = fopen(c->pidfile, "w");
648 if (pid_fp == NULL) {
649 SYSERROR("Failed to create pidfile '%s' for '%s'",
650 c->pidfile, c->name);
651 return false;
652 }
653
654 if (fprintf(pid_fp, "%d\n", getpid()) < 0) {
655 SYSERROR("Failed to write '%s'", c->pidfile);
656 fclose(pid_fp);
657 pid_fp = NULL;
658 return false;
659 }
660
661 fclose(pid_fp);
662 pid_fp = NULL;
663 }
664
665 reboot:
666 conf->reboot = 0;
667 ret = lxc_start(c->name, argv, conf, c->config_path);
668 c->error_num = ret;
669
670 if (conf->reboot) {
671 INFO("container requested reboot");
672 conf->reboot = 0;
673 goto reboot;
674 }
675
676 if (c->pidfile) {
677 unlink(c->pidfile);
678 free(c->pidfile);
679 c->pidfile = NULL;
680 }
681
682 if (daemonize)
683 exit (ret == 0 ? true : false);
684 else
685 return (ret == 0 ? true : false);
686 }
687
688 /*
689 * note there MUST be an ending NULL
690 */
691 static bool lxcapi_startl(struct lxc_container *c, int useinit, ...)
692 {
693 va_list ap;
694 char **inargs = NULL;
695 bool bret = false;
696
697 /* container exists */
698 if (!c)
699 return false;
700
701 va_start(ap, useinit);
702 inargs = lxc_va_arg_list_to_argv(ap, 0, 1);
703 va_end(ap);
704
705 if (!inargs) {
706 ERROR("Memory allocation error.");
707 goto out;
708 }
709
710 /* pass NULL if no arguments were supplied */
711 bret = lxcapi_start(c, useinit, *inargs ? inargs : NULL);
712
713 out:
714 if (inargs) {
715 char **arg;
716 for (arg = inargs; *arg; arg++)
717 free(*arg);
718 free(inargs);
719 }
720
721 return bret;
722 }
723
724 static bool lxcapi_stop(struct lxc_container *c)
725 {
726 int ret;
727
728 if (!c)
729 return false;
730
731 ret = lxc_cmd_stop(c->name, c->config_path);
732
733 return ret == 0;
734 }
735
736 /*
737 * create the standard expected container dir
738 */
739 static bool create_container_dir(struct lxc_container *c)
740 {
741 char *s;
742 int len, ret;
743
744 len = strlen(c->config_path) + strlen(c->name) + 2;
745 s = malloc(len);
746 if (!s)
747 return false;
748 ret = snprintf(s, len, "%s/%s", c->config_path, c->name);
749 if (ret < 0 || ret >= len) {
750 free(s);
751 return false;
752 }
753 ret = mkdir(s, 0755);
754 if (ret) {
755 if (errno == EEXIST)
756 ret = 0;
757 else
758 SYSERROR("failed to create container path for %s", c->name);
759 }
760 free(s);
761 return ret == 0;
762 }
763
764 static const char *lxcapi_get_config_path(struct lxc_container *c);
765 static bool lxcapi_set_config_item(struct lxc_container *c, const char *key, const char *v);
766
767 /*
768 * do_bdev_create: thin wrapper around bdev_create(). Like bdev_create(),
769 * it returns a mounted bdev on success, NULL on error.
770 */
771 static struct bdev *do_bdev_create(struct lxc_container *c, const char *type,
772 struct bdev_specs *specs)
773 {
774 char *dest;
775 size_t len;
776 struct bdev *bdev;
777 int ret;
778
779 /* rootfs.path or lxcpath/lxcname/rootfs */
780 if (c->lxc_conf->rootfs.path && access(c->lxc_conf->rootfs.path, F_OK) == 0) {
781 const char *rpath = c->lxc_conf->rootfs.path;
782 len = strlen(rpath) + 1;
783 dest = alloca(len);
784 ret = snprintf(dest, len, "%s", rpath);
785 } else {
786 const char *lxcpath = lxcapi_get_config_path(c);
787 len = strlen(c->name) + strlen(lxcpath) + 9;
788 dest = alloca(len);
789 ret = snprintf(dest, len, "%s/%s/rootfs", lxcpath, c->name);
790 }
791 if (ret < 0 || ret >= len)
792 return NULL;
793
794 bdev = bdev_create(dest, type, c->name, specs);
795 if (!bdev) {
796 ERROR("Failed to create backing store type %s", type);
797 return NULL;
798 }
799
800 lxcapi_set_config_item(c, "lxc.rootfs", bdev->src);
801
802 /* if we are not root, chown the rootfs dir to root in the
803 * target uidmap */
804
805 if (geteuid() != 0 || (c->lxc_conf && !lxc_list_empty(&c->lxc_conf->id_map))) {
806 if (chown_mapped_root(bdev->dest, c->lxc_conf) < 0) {
807 ERROR("Error chowning %s to container root", bdev->dest);
808 suggest_default_idmap();
809 bdev_put(bdev);
810 return NULL;
811 }
812 }
813
814 return bdev;
815 }
816
817 /*
818 * Given the '-t' template option to lxc-create, figure out what to
819 * do. If the template is a full executable path, use that. If it
820 * is something like 'sshd', then return $templatepath/lxc-sshd.
821 * On success return the template, on error return NULL.
822 */
823 static char *get_template_path(const char *t)
824 {
825 int ret, len;
826 char *tpath;
827
828 if (t[0] == '/' && access(t, X_OK) == 0) {
829 tpath = strdup(t);
830 return tpath;
831 }
832
833 len = strlen(LXCTEMPLATEDIR) + strlen(t) + strlen("/lxc-") + 1;
834 tpath = malloc(len);
835 if (!tpath)
836 return NULL;
837 ret = snprintf(tpath, len, "%s/lxc-%s", LXCTEMPLATEDIR, t);
838 if (ret < 0 || ret >= len) {
839 free(tpath);
840 return NULL;
841 }
842 if (access(tpath, X_OK) < 0) {
843 SYSERROR("bad template: %s", t);
844 free(tpath);
845 return NULL;
846 }
847
848 return tpath;
849 }
850
851 static char *lxcbasename(char *path)
852 {
853 char *p = path + strlen(path) - 1;
854 while (*p != '/' && p > path)
855 p--;
856 return p;
857 }
858
859 static bool create_run_template(struct lxc_container *c, char *tpath, bool quiet,
860 char *const argv[])
861 {
862 pid_t pid;
863
864 if (!tpath)
865 return true;
866
867 pid = fork();
868 if (pid < 0) {
869 SYSERROR("failed to fork task for container creation template");
870 return false;
871 }
872
873 if (pid == 0) { // child
874 char *patharg, *namearg, *rootfsarg, *src;
875 struct bdev *bdev = NULL;
876 int i;
877 int ret, len, nargs = 0;
878 char **newargv;
879 struct lxc_conf *conf = c->lxc_conf;
880
881 if (quiet) {
882 close(0);
883 close(1);
884 close(2);
885 open("/dev/zero", O_RDONLY);
886 open("/dev/null", O_RDWR);
887 open("/dev/null", O_RDWR);
888 }
889
890 src = c->lxc_conf->rootfs.path;
891 /*
892 * for an overlay create, what the user wants is the template to fill
893 * in what will become the readonly lower layer. So don't mount for
894 * the template
895 */
896 if (strncmp(src, "overlayfs:", 10) == 0)
897 src = overlay_getlower(src+10);
898 if (strncmp(src, "aufs:", 5) == 0)
899 src = overlay_getlower(src+5);
900
901 bdev = bdev_init(c->lxc_conf, src, c->lxc_conf->rootfs.mount, NULL);
902 if (!bdev) {
903 ERROR("Error opening rootfs");
904 exit(1);
905 }
906
907 if (geteuid() == 0) {
908 if (unshare(CLONE_NEWNS) < 0) {
909 ERROR("error unsharing mounts");
910 exit(1);
911 }
912 if (detect_shared_rootfs()) {
913 if (mount(NULL, "/", NULL, MS_SLAVE|MS_REC, NULL)) {
914 SYSERROR("Failed to make / rslave to run template");
915 ERROR("Continuing...");
916 }
917 }
918 }
919 if (strcmp(bdev->type, "dir") && strcmp(bdev->type, "btrfs")) {
920 if (geteuid() != 0) {
921 ERROR("non-root users can only create btrfs and directory-backed containers");
922 exit(1);
923 }
924 if (bdev->ops->mount(bdev) < 0) {
925 ERROR("Error mounting rootfs");
926 exit(1);
927 }
928 } else { // TODO come up with a better way here!
929 if (bdev->dest)
930 free(bdev->dest);
931 bdev->dest = strdup(bdev->src);
932 }
933
934 /*
935 * create our new array, pre-pend the template name and
936 * base args
937 */
938 if (argv)
939 for (nargs = 0; argv[nargs]; nargs++) ;
940 nargs += 4; // template, path, rootfs and name args
941
942 newargv = malloc(nargs * sizeof(*newargv));
943 if (!newargv)
944 exit(1);
945 newargv[0] = lxcbasename(tpath);
946
947 len = strlen(c->config_path) + strlen(c->name) + strlen("--path=") + 2;
948 patharg = malloc(len);
949 if (!patharg)
950 exit(1);
951 ret = snprintf(patharg, len, "--path=%s/%s", c->config_path, c->name);
952 if (ret < 0 || ret >= len)
953 exit(1);
954 newargv[1] = patharg;
955 len = strlen("--name=") + strlen(c->name) + 1;
956 namearg = malloc(len);
957 if (!namearg)
958 exit(1);
959 ret = snprintf(namearg, len, "--name=%s", c->name);
960 if (ret < 0 || ret >= len)
961 exit(1);
962 newargv[2] = namearg;
963
964 len = strlen("--rootfs=") + 1 + strlen(bdev->dest);
965 rootfsarg = malloc(len);
966 if (!rootfsarg)
967 exit(1);
968 ret = snprintf(rootfsarg, len, "--rootfs=%s", bdev->dest);
969 if (ret < 0 || ret >= len)
970 exit(1);
971 newargv[3] = rootfsarg;
972
973 /* add passed-in args */
974 if (argv)
975 for (i = 4; i < nargs; i++)
976 newargv[i] = argv[i-4];
977
978 /* add trailing NULL */
979 nargs++;
980 newargv = realloc(newargv, nargs * sizeof(*newargv));
981 if (!newargv)
982 exit(1);
983 newargv[nargs - 1] = NULL;
984
985 /*
986 * If we're running the template in a mapped userns, then
987 * we prepend the template command with:
988 * lxc-usernsexec <-m map1> ... <-m mapn> --
989 * and we append "--mapped-uid x", where x is the mapped uid
990 * for our geteuid()
991 */
992 if (!lxc_list_empty(&conf->id_map)) {
993 int n2args = 1;
994 char txtuid[20];
995 char txtgid[20];
996 char **n2 = malloc(n2args * sizeof(*n2));
997 struct lxc_list *it;
998 struct id_map *map;
999
1000 if (!n2) {
1001 SYSERROR("out of memory");
1002 exit(1);
1003 }
1004 newargv[0] = tpath;
1005 tpath = "lxc-usernsexec";
1006 n2[0] = "lxc-usernsexec";
1007 lxc_list_for_each(it, &conf->id_map) {
1008 map = it->elem;
1009 n2args += 2;
1010 n2 = realloc(n2, n2args * sizeof(char *));
1011 if (!n2)
1012 exit(1);
1013 n2[n2args-2] = "-m";
1014 n2[n2args-1] = malloc(200);
1015 if (!n2[n2args-1])
1016 exit(1);
1017 ret = snprintf(n2[n2args-1], 200, "%c:%lu:%lu:%lu",
1018 map->idtype == ID_TYPE_UID ? 'u' : 'g',
1019 map->nsid, map->hostid, map->range);
1020 if (ret < 0 || ret >= 200)
1021 exit(1);
1022 }
1023 int hostid_mapped = mapped_hostid(geteuid(), conf, ID_TYPE_UID);
1024 int extraargs = hostid_mapped >= 0 ? 1 : 3;
1025 n2 = realloc(n2, (nargs + n2args + extraargs) * sizeof(char *));
1026 if (!n2)
1027 exit(1);
1028 if (hostid_mapped < 0) {
1029 hostid_mapped = find_unmapped_nsuid(conf, ID_TYPE_UID);
1030 n2[n2args++] = "-m";
1031 if (hostid_mapped < 0) {
1032 ERROR("Could not find free uid to map");
1033 exit(1);
1034 }
1035 n2[n2args++] = malloc(200);
1036 if (!n2[n2args-1]) {
1037 SYSERROR("out of memory");
1038 exit(1);
1039 }
1040 ret = snprintf(n2[n2args-1], 200, "u:%d:%d:1",
1041 hostid_mapped, geteuid());
1042 if (ret < 0 || ret >= 200) {
1043 ERROR("string too long");
1044 exit(1);
1045 }
1046 }
1047 int hostgid_mapped = mapped_hostid(getegid(), conf, ID_TYPE_GID);
1048 extraargs = hostgid_mapped >= 0 ? 1 : 3;
1049 n2 = realloc(n2, (nargs + n2args + extraargs) * sizeof(char *));
1050 if (!n2)
1051 exit(1);
1052 if (hostgid_mapped < 0) {
1053 hostgid_mapped = find_unmapped_nsuid(conf, ID_TYPE_GID);
1054 n2[n2args++] = "-m";
1055 if (hostgid_mapped < 0) {
1056 ERROR("Could not find free uid to map");
1057 exit(1);
1058 }
1059 n2[n2args++] = malloc(200);
1060 if (!n2[n2args-1]) {
1061 SYSERROR("out of memory");
1062 exit(1);
1063 }
1064 ret = snprintf(n2[n2args-1], 200, "g:%d:%d:1",
1065 hostgid_mapped, getegid());
1066 if (ret < 0 || ret >= 200) {
1067 ERROR("string too long");
1068 exit(1);
1069 }
1070 }
1071 n2[n2args++] = "--";
1072 for (i = 0; i < nargs; i++)
1073 n2[i + n2args] = newargv[i];
1074 n2args += nargs;
1075 // Finally add "--mapped-uid $uid" to tell template what to chown
1076 // cached images to
1077 n2args += 4;
1078 n2 = realloc(n2, n2args * sizeof(char *));
1079 if (!n2) {
1080 SYSERROR("out of memory");
1081 exit(1);
1082 }
1083 // note n2[n2args-1] is NULL
1084 n2[n2args-5] = "--mapped-uid";
1085 snprintf(txtuid, 20, "%d", hostid_mapped);
1086 n2[n2args-4] = txtuid;
1087 n2[n2args-3] = "--mapped-gid";
1088 snprintf(txtgid, 20, "%d", hostgid_mapped);
1089 n2[n2args-2] = txtgid;
1090 n2[n2args-1] = NULL;
1091 free(newargv);
1092 newargv = n2;
1093 }
1094 /* execute */
1095 execvp(tpath, newargv);
1096 SYSERROR("failed to execute template %s", tpath);
1097 exit(1);
1098 }
1099
1100 if (wait_for_pid(pid) != 0) {
1101 ERROR("container creation template for %s failed", c->name);
1102 return false;
1103 }
1104
1105 return true;
1106 }
1107
1108 static bool prepend_lxc_header(char *path, const char *t, char *const argv[])
1109 {
1110 long flen;
1111 char *contents;
1112 FILE *f;
1113 int ret = -1;
1114 #if HAVE_LIBGNUTLS
1115 int i;
1116 unsigned char md_value[SHA_DIGEST_LENGTH];
1117 char *tpath;
1118 #endif
1119
1120 f = fopen(path, "r");
1121 if (f == NULL)
1122 return false;
1123
1124 if (fseek(f, 0, SEEK_END) < 0)
1125 goto out_error;
1126 if ((flen = ftell(f)) < 0)
1127 goto out_error;
1128 if (fseek(f, 0, SEEK_SET) < 0)
1129 goto out_error;
1130 if ((contents = malloc(flen + 1)) == NULL)
1131 goto out_error;
1132 if (fread(contents, 1, flen, f) != flen)
1133 goto out_free_contents;
1134
1135 contents[flen] = '\0';
1136 ret = fclose(f);
1137 f = NULL;
1138 if (ret < 0)
1139 goto out_free_contents;
1140
1141 #if HAVE_LIBGNUTLS
1142 tpath = get_template_path(t);
1143 if (!tpath) {
1144 ERROR("bad template: %s", t);
1145 goto out_free_contents;
1146 }
1147
1148 ret = sha1sum_file(tpath, md_value);
1149 if (ret < 0) {
1150 ERROR("Error getting sha1sum of %s", tpath);
1151 free(tpath);
1152 goto out_free_contents;
1153 }
1154 free(tpath);
1155 #endif
1156
1157 f = fopen(path, "w");
1158 if (f == NULL) {
1159 SYSERROR("reopening config for writing");
1160 free(contents);
1161 return false;
1162 }
1163 fprintf(f, "# Template used to create this container: %s\n", t);
1164 if (argv) {
1165 fprintf(f, "# Parameters passed to the template:");
1166 while (*argv) {
1167 fprintf(f, " %s", *argv);
1168 argv++;
1169 }
1170 fprintf(f, "\n");
1171 }
1172 #if HAVE_LIBGNUTLS
1173 fprintf(f, "# Template script checksum (SHA-1): ");
1174 for (i=0; i<SHA_DIGEST_LENGTH; i++)
1175 fprintf(f, "%02x", md_value[i]);
1176 fprintf(f, "\n");
1177 #endif
1178 fprintf(f, "# For additional config options, please look at lxc.container.conf(5)\n");
1179 if (fwrite(contents, 1, flen, f) != flen) {
1180 SYSERROR("Writing original contents");
1181 free(contents);
1182 fclose(f);
1183 return false;
1184 }
1185 ret = 0;
1186 out_free_contents:
1187 free(contents);
1188 out_error:
1189 if (f) {
1190 int newret;
1191 newret = fclose(f);
1192 if (ret == 0)
1193 ret = newret;
1194 }
1195 if (ret < 0) {
1196 SYSERROR("Error prepending header");
1197 return false;
1198 }
1199 return true;
1200 }
1201
1202 static void lxcapi_clear_config(struct lxc_container *c)
1203 {
1204 if (c) {
1205 if (c->lxc_conf) {
1206 lxc_conf_free(c->lxc_conf);
1207 c->lxc_conf = NULL;
1208 }
1209 }
1210 }
1211
1212 static bool lxcapi_destroy(struct lxc_container *c);
1213 static bool container_destroy(struct lxc_container *c);
1214 static bool get_snappath_dir(struct lxc_container *c, char *snappath);
1215 /*
1216 * lxcapi_create:
1217 * create a container with the given parameters.
1218 * @c: container to be created. It has the lxcpath, name, and a starting
1219 * configuration already set
1220 * @t: the template to execute to instantiate the root filesystem and
1221 * adjust the configuration.
1222 * @bdevtype: backing store type to use. If NULL, dir will be used.
1223 * @specs: additional parameters for the backing store, i.e. LVM vg to
1224 * use.
1225 *
1226 * @argv: the arguments to pass to the template, terminated by NULL. If no
1227 * arguments, you can just pass NULL.
1228 */
1229 static bool lxcapi_create(struct lxc_container *c, const char *t,
1230 const char *bdevtype, struct bdev_specs *specs, int flags,
1231 char *const argv[])
1232 {
1233 bool ret = false;
1234 pid_t pid;
1235 char *tpath = NULL;
1236 int partial_fd;
1237
1238 if (!c)
1239 return false;
1240
1241 if (t) {
1242 tpath = get_template_path(t);
1243 if (!tpath) {
1244 ERROR("bad template: %s", t);
1245 goto out;
1246 }
1247 }
1248
1249 /*
1250 * If a template is passed in, and the rootfs already is defined in
1251 * the container config and exists, then * caller is trying to create
1252 * an existing container. Return an error, but do NOT delete the
1253 * container.
1254 */
1255 if (lxcapi_is_defined(c) && c->lxc_conf && c->lxc_conf->rootfs.path &&
1256 access(c->lxc_conf->rootfs.path, F_OK) == 0 && tpath) {
1257 ERROR("Container %s:%s already exists", c->config_path, c->name);
1258 goto free_tpath;
1259 }
1260
1261 if (!c->lxc_conf) {
1262 if (!c->load_config(c, lxc_global_config_value("lxc.default_config"))) {
1263 ERROR("Error loading default configuration file %s", lxc_global_config_value("lxc.default_config"));
1264 goto free_tpath;
1265 }
1266 }
1267
1268 if (!create_container_dir(c))
1269 goto free_tpath;
1270
1271 /*
1272 * either template or rootfs.path should be set.
1273 * if both template and rootfs.path are set, template is setup as rootfs.path.
1274 * container is already created if we have a config and rootfs.path is accessible
1275 */
1276 if (!c->lxc_conf->rootfs.path && !tpath)
1277 /* no template passed in and rootfs does not exist: error */
1278 goto out;
1279 if (c->lxc_conf->rootfs.path && access(c->lxc_conf->rootfs.path, F_OK) != 0)
1280 /* rootfs passed into configuration, but does not exist: error */
1281 goto out;
1282 if (lxcapi_is_defined(c) && c->lxc_conf->rootfs.path && !tpath) {
1283 /* Rootfs already existed, user just wanted to save the
1284 * loaded configuration */
1285 ret = true;
1286 goto out;
1287 }
1288
1289 /* Mark that this container is being created */
1290 if ((partial_fd = create_partial(c)) < 0)
1291 goto out;
1292
1293 /* no need to get disk lock bc we have the partial locked */
1294
1295 /*
1296 * Create the backing store
1297 * Note we can't do this in the same task as we use to execute the
1298 * template because of the way zfs works.
1299 * After you 'zfs create', zfs mounts the fs only in the initial
1300 * namespace.
1301 */
1302 pid = fork();
1303 if (pid < 0) {
1304 SYSERROR("failed to fork task for container creation template");
1305 goto out_unlock;
1306 }
1307
1308 if (pid == 0) { // child
1309 struct bdev *bdev = NULL;
1310
1311 if (!(bdev = do_bdev_create(c, bdevtype, specs))) {
1312 ERROR("Error creating backing store type %s for %s",
1313 bdevtype ? bdevtype : "(none)", c->name);
1314 exit(1);
1315 }
1316
1317 /* save config file again to store the new rootfs location */
1318 if (!c->save_config(c, NULL)) {
1319 ERROR("failed to save starting configuration for %s", c->name);
1320 // parent task won't see bdev in config so we delete it
1321 bdev->ops->umount(bdev);
1322 bdev->ops->destroy(bdev);
1323 exit(1);
1324 }
1325 exit(0);
1326 }
1327 if (wait_for_pid(pid) != 0)
1328 goto out_unlock;
1329
1330 /* reload config to get the rootfs */
1331 lxc_conf_free(c->lxc_conf);
1332 c->lxc_conf = NULL;
1333 if (!load_config_locked(c, c->configfile))
1334 goto out_unlock;
1335
1336 if (!create_run_template(c, tpath, !!(flags & LXC_CREATE_QUIET), argv))
1337 goto out_unlock;
1338
1339 // now clear out the lxc_conf we have, reload from the created
1340 // container
1341 lxcapi_clear_config(c);
1342
1343 if (t) {
1344 if (!prepend_lxc_header(c->configfile, tpath, argv)) {
1345 ERROR("Error prepending header to configuration file");
1346 goto out_unlock;
1347 }
1348 }
1349 ret = load_config_locked(c, c->configfile);
1350
1351 out_unlock:
1352 if (partial_fd >= 0)
1353 remove_partial(c, partial_fd);
1354 out:
1355 if (!ret && c)
1356 container_destroy(c);
1357 free_tpath:
1358 if (tpath)
1359 free(tpath);
1360 return ret;
1361 }
1362
1363 static bool lxcapi_reboot(struct lxc_container *c)
1364 {
1365 pid_t pid;
1366
1367 if (!c)
1368 return false;
1369 if (!c->is_running(c))
1370 return false;
1371 pid = c->init_pid(c);
1372 if (pid <= 0)
1373 return false;
1374 if (kill(pid, SIGINT) < 0)
1375 return false;
1376 return true;
1377
1378 }
1379
1380 static bool lxcapi_shutdown(struct lxc_container *c, int timeout)
1381 {
1382 bool retv;
1383 pid_t pid;
1384 int haltsignal = SIGPWR;
1385
1386 if (!c)
1387 return false;
1388
1389 if (!c->is_running(c))
1390 return true;
1391 pid = c->init_pid(c);
1392 if (pid <= 0)
1393 return true;
1394 if (c->lxc_conf && c->lxc_conf->haltsignal)
1395 haltsignal = c->lxc_conf->haltsignal;
1396 kill(pid, haltsignal);
1397 retv = c->wait(c, "STOPPED", timeout);
1398 return retv;
1399 }
1400
1401 static bool lxcapi_createl(struct lxc_container *c, const char *t,
1402 const char *bdevtype, struct bdev_specs *specs, int flags, ...)
1403 {
1404 bool bret = false;
1405 char **args = NULL;
1406 va_list ap;
1407
1408 if (!c)
1409 return false;
1410
1411 /*
1412 * since we're going to wait for create to finish, I don't think we
1413 * need to get a copy of the arguments.
1414 */
1415 va_start(ap, flags);
1416 args = lxc_va_arg_list_to_argv(ap, 0, 0);
1417 va_end(ap);
1418 if (!args) {
1419 ERROR("Memory allocation error.");
1420 goto out;
1421 }
1422
1423 bret = c->create(c, t, bdevtype, specs, flags, args);
1424
1425 out:
1426 free(args);
1427 return bret;
1428 }
1429
1430 static void do_clear_unexp_config_line(struct lxc_conf *conf, const char *key)
1431 {
1432 if (strcmp(key, "lxc.cgroup") == 0)
1433 clear_unexp_config_line(conf, key, true);
1434 else if (strcmp(key, "lxc.network") == 0)
1435 clear_unexp_config_line(conf, key, true);
1436 else if (strcmp(key, "lxc.hook") == 0)
1437 clear_unexp_config_line(conf, key, true);
1438 else
1439 clear_unexp_config_line(conf, key, false);
1440 if (!do_append_unexp_config_line(conf, key, ""))
1441 WARN("Error clearing configuration for %s", key);
1442 }
1443
1444 static bool lxcapi_clear_config_item(struct lxc_container *c, const char *key)
1445 {
1446 int ret;
1447
1448 if (!c || !c->lxc_conf)
1449 return false;
1450 if (container_mem_lock(c))
1451 return false;
1452 ret = lxc_clear_config_item(c->lxc_conf, key);
1453 if (!ret)
1454 do_clear_unexp_config_line(c->lxc_conf, key);
1455 container_mem_unlock(c);
1456 return ret == 0;
1457 }
1458
1459 static inline bool enter_to_ns(struct lxc_container *c) {
1460 int netns, userns, ret = 0, init_pid = 0;;
1461 char new_netns_path[MAXPATHLEN];
1462 char new_userns_path[MAXPATHLEN];
1463
1464 if (!c->is_running(c))
1465 goto out;
1466
1467 init_pid = c->init_pid(c);
1468
1469 /* Switch to new userns */
1470 if ((geteuid() != 0 || (c->lxc_conf && !lxc_list_empty(&c->lxc_conf->id_map))) && access("/proc/self/ns/user", F_OK) == 0) {
1471 ret = snprintf(new_userns_path, MAXPATHLEN, "/proc/%d/ns/user", init_pid);
1472 if (ret < 0 || ret >= MAXPATHLEN)
1473 goto out;
1474
1475 userns = open(new_userns_path, O_RDONLY);
1476 if (userns < 0) {
1477 SYSERROR("failed to open %s", new_userns_path);
1478 goto out;
1479 }
1480
1481 if (setns(userns, CLONE_NEWUSER)) {
1482 SYSERROR("failed to setns for CLONE_NEWUSER");
1483 close(userns);
1484 goto out;
1485 }
1486 close(userns);
1487 }
1488
1489 /* Switch to new netns */
1490 ret = snprintf(new_netns_path, MAXPATHLEN, "/proc/%d/ns/net", init_pid);
1491 if (ret < 0 || ret >= MAXPATHLEN)
1492 goto out;
1493
1494 netns = open(new_netns_path, O_RDONLY);
1495 if (netns < 0) {
1496 SYSERROR("failed to open %s", new_netns_path);
1497 goto out;
1498 }
1499
1500 if (setns(netns, CLONE_NEWNET)) {
1501 SYSERROR("failed to setns for CLONE_NEWNET");
1502 close(netns);
1503 goto out;
1504 }
1505 close(netns);
1506 return true;
1507 out:
1508 return false;
1509 }
1510
1511 // used by qsort and bsearch functions for comparing names
1512 static inline int string_cmp(char **first, char **second)
1513 {
1514 return strcmp(*first, *second);
1515 }
1516
1517 // used by qsort and bsearch functions for comparing container names
1518 static inline int container_cmp(struct lxc_container **first, struct lxc_container **second)
1519 {
1520 return strcmp((*first)->name, (*second)->name);
1521 }
1522
1523 static bool add_to_array(char ***names, char *cname, int pos)
1524 {
1525 char **newnames = realloc(*names, (pos+1) * sizeof(char *));
1526 if (!newnames) {
1527 ERROR("Out of memory");
1528 return false;
1529 }
1530
1531 *names = newnames;
1532 newnames[pos] = strdup(cname);
1533 if (!newnames[pos])
1534 return false;
1535
1536 // sort the arrray as we will use binary search on it
1537 qsort(newnames, pos + 1, sizeof(char *), (int (*)(const void *,const void *))string_cmp);
1538
1539 return true;
1540 }
1541
1542 static bool add_to_clist(struct lxc_container ***list, struct lxc_container *c, int pos, bool sort)
1543 {
1544 struct lxc_container **newlist = realloc(*list, (pos+1) * sizeof(struct lxc_container *));
1545 if (!newlist) {
1546 ERROR("Out of memory");
1547 return false;
1548 }
1549
1550 *list = newlist;
1551 newlist[pos] = c;
1552
1553 // sort the arrray as we will use binary search on it
1554 if (sort)
1555 qsort(newlist, pos + 1, sizeof(struct lxc_container *), (int (*)(const void *,const void *))container_cmp);
1556
1557 return true;
1558 }
1559
1560 static char** get_from_array(char ***names, char *cname, int size)
1561 {
1562 return (char **)bsearch(&cname, *names, size, sizeof(char *), (int (*)(const void *, const void *))string_cmp);
1563 }
1564
1565
1566 static bool array_contains(char ***names, char *cname, int size) {
1567 if(get_from_array(names, cname, size) != NULL)
1568 return true;
1569 return false;
1570 }
1571
1572 static bool remove_from_array(char ***names, char *cname, int size)
1573 {
1574 char **result = get_from_array(names, cname, size);
1575 if (result != NULL) {
1576 free(result);
1577 return true;
1578 }
1579 return false;
1580 }
1581
1582 static char** lxcapi_get_interfaces(struct lxc_container *c)
1583 {
1584 pid_t pid;
1585 int i, count = 0, pipefd[2];
1586 char **interfaces = NULL;
1587 char interface[IFNAMSIZ];
1588
1589 if(pipe(pipefd) < 0) {
1590 SYSERROR("pipe failed");
1591 return NULL;
1592 }
1593
1594 pid = fork();
1595 if (pid < 0) {
1596 SYSERROR("failed to fork task to get interfaces information");
1597 close(pipefd[0]);
1598 close(pipefd[1]);
1599 return NULL;
1600 }
1601
1602 if (pid == 0) { // child
1603 int ret = 1, nbytes;
1604 struct ifaddrs *interfaceArray = NULL, *tempIfAddr = NULL;
1605
1606 /* close the read-end of the pipe */
1607 close(pipefd[0]);
1608
1609 if (!enter_to_ns(c)) {
1610 SYSERROR("failed to enter namespace");
1611 goto out;
1612 }
1613
1614 /* Grab the list of interfaces */
1615 if (getifaddrs(&interfaceArray)) {
1616 SYSERROR("failed to get interfaces list");
1617 goto out;
1618 }
1619
1620 /* Iterate through the interfaces */
1621 for (tempIfAddr = interfaceArray; tempIfAddr != NULL; tempIfAddr = tempIfAddr->ifa_next) {
1622 nbytes = write(pipefd[1], tempIfAddr->ifa_name, IFNAMSIZ);
1623 if (nbytes < 0) {
1624 ERROR("write failed");
1625 goto out;
1626 }
1627 count++;
1628 }
1629 ret = 0;
1630
1631 out:
1632 if (interfaceArray)
1633 freeifaddrs(interfaceArray);
1634
1635 /* close the write-end of the pipe, thus sending EOF to the reader */
1636 close(pipefd[1]);
1637 exit(ret);
1638 }
1639
1640 /* close the write-end of the pipe */
1641 close(pipefd[1]);
1642
1643 while (read(pipefd[0], &interface, IFNAMSIZ) == IFNAMSIZ) {
1644 if (array_contains(&interfaces, interface, count))
1645 continue;
1646
1647 if(!add_to_array(&interfaces, interface, count))
1648 ERROR("PARENT: add_to_array failed");
1649 count++;
1650 }
1651
1652 if (wait_for_pid(pid) != 0) {
1653 for(i=0;i<count;i++)
1654 free(interfaces[i]);
1655 free(interfaces);
1656 interfaces = NULL;
1657 }
1658
1659 /* close the read-end of the pipe */
1660 close(pipefd[0]);
1661
1662 /* Append NULL to the array */
1663 if(interfaces)
1664 interfaces = (char **)lxc_append_null_to_array((void **)interfaces, count);
1665
1666 return interfaces;
1667 }
1668
1669 static char** lxcapi_get_ips(struct lxc_container *c, const char* interface, const char* family, int scope)
1670 {
1671 pid_t pid;
1672 int i, count = 0, pipefd[2];
1673 char **addresses = NULL;
1674 char address[INET6_ADDRSTRLEN];
1675
1676 if(pipe(pipefd) < 0) {
1677 SYSERROR("pipe failed");
1678 return NULL;
1679 }
1680
1681 pid = fork();
1682 if (pid < 0) {
1683 SYSERROR("failed to fork task to get container ips");
1684 close(pipefd[0]);
1685 close(pipefd[1]);
1686 return NULL;
1687 }
1688
1689 if (pid == 0) { // child
1690 int ret = 1, nbytes;
1691 struct ifaddrs *interfaceArray = NULL, *tempIfAddr = NULL;
1692 char addressOutputBuffer[INET6_ADDRSTRLEN];
1693 void *tempAddrPtr = NULL;
1694 char *address = NULL;
1695
1696 /* close the read-end of the pipe */
1697 close(pipefd[0]);
1698
1699 if (!enter_to_ns(c)) {
1700 SYSERROR("failed to enter namespace");
1701 goto out;
1702 }
1703
1704 /* Grab the list of interfaces */
1705 if (getifaddrs(&interfaceArray)) {
1706 SYSERROR("failed to get interfaces list");
1707 goto out;
1708 }
1709
1710 /* Iterate through the interfaces */
1711 for (tempIfAddr = interfaceArray; tempIfAddr != NULL; tempIfAddr = tempIfAddr->ifa_next) {
1712 if (tempIfAddr->ifa_addr == NULL)
1713 continue;
1714
1715 if(tempIfAddr->ifa_addr->sa_family == AF_INET) {
1716 if (family && strcmp(family, "inet"))
1717 continue;
1718 tempAddrPtr = &((struct sockaddr_in *)tempIfAddr->ifa_addr)->sin_addr;
1719 }
1720 else {
1721 if (family && strcmp(family, "inet6"))
1722 continue;
1723
1724 if (((struct sockaddr_in6 *)tempIfAddr->ifa_addr)->sin6_scope_id != scope)
1725 continue;
1726
1727 tempAddrPtr = &((struct sockaddr_in6 *)tempIfAddr->ifa_addr)->sin6_addr;
1728 }
1729
1730 if (interface && strcmp(interface, tempIfAddr->ifa_name))
1731 continue;
1732 else if (!interface && strcmp("lo", tempIfAddr->ifa_name) == 0)
1733 continue;
1734
1735 address = (char *)inet_ntop(tempIfAddr->ifa_addr->sa_family,
1736 tempAddrPtr,
1737 addressOutputBuffer,
1738 sizeof(addressOutputBuffer));
1739 if (!address)
1740 continue;
1741
1742 nbytes = write(pipefd[1], address, INET6_ADDRSTRLEN);
1743 if (nbytes < 0) {
1744 ERROR("write failed");
1745 goto out;
1746 }
1747 count++;
1748 }
1749 ret = 0;
1750
1751 out:
1752 if(interfaceArray)
1753 freeifaddrs(interfaceArray);
1754
1755 /* close the write-end of the pipe, thus sending EOF to the reader */
1756 close(pipefd[1]);
1757 exit(ret);
1758 }
1759
1760 /* close the write-end of the pipe */
1761 close(pipefd[1]);
1762
1763 while (read(pipefd[0], &address, INET6_ADDRSTRLEN) == INET6_ADDRSTRLEN) {
1764 if(!add_to_array(&addresses, address, count))
1765 ERROR("PARENT: add_to_array failed");
1766 count++;
1767 }
1768
1769 if (wait_for_pid(pid) != 0) {
1770 for(i=0;i<count;i++)
1771 free(addresses[i]);
1772 free(addresses);
1773 addresses = NULL;
1774 }
1775
1776 /* close the read-end of the pipe */
1777 close(pipefd[0]);
1778
1779 /* Append NULL to the array */
1780 if(addresses)
1781 addresses = (char **)lxc_append_null_to_array((void **)addresses, count);
1782
1783 return addresses;
1784 }
1785
1786 static int lxcapi_get_config_item(struct lxc_container *c, const char *key, char *retv, int inlen)
1787 {
1788 int ret;
1789
1790 if (!c || !c->lxc_conf)
1791 return -1;
1792 if (container_mem_lock(c))
1793 return -1;
1794 ret = lxc_get_config_item(c->lxc_conf, key, retv, inlen);
1795 container_mem_unlock(c);
1796 return ret;
1797 }
1798
1799 static char* lxcapi_get_running_config_item(struct lxc_container *c, const char *key)
1800 {
1801 char *ret;
1802
1803 if (!c || !c->lxc_conf)
1804 return NULL;
1805 if (container_mem_lock(c))
1806 return NULL;
1807 ret = lxc_cmd_get_config_item(c->name, key, c->get_config_path(c));
1808 container_mem_unlock(c);
1809 return ret;
1810 }
1811
1812 static int lxcapi_get_keys(struct lxc_container *c, const char *key, char *retv, int inlen)
1813 {
1814 if (!key)
1815 return lxc_listconfigs(retv, inlen);
1816 /*
1817 * Support 'lxc.network.<idx>', i.e. 'lxc.network.0'
1818 * This is an intelligent result to show which keys are valid given
1819 * the type of nic it is
1820 */
1821 if (!c || !c->lxc_conf)
1822 return -1;
1823 if (container_mem_lock(c))
1824 return -1;
1825 int ret = -1;
1826 if (strncmp(key, "lxc.network.", 12) == 0)
1827 ret = lxc_list_nicconfigs(c->lxc_conf, key, retv, inlen);
1828 container_mem_unlock(c);
1829 return ret;
1830 }
1831
1832 static bool lxcapi_save_config(struct lxc_container *c, const char *alt_file)
1833 {
1834 FILE *fout;
1835 bool ret = false, need_disklock = false;
1836 int lret;
1837
1838 if (!alt_file)
1839 alt_file = c->configfile;
1840 if (!alt_file)
1841 return false; // should we write to stdout if no file is specified?
1842
1843 // If we haven't yet loaded a config, load the stock config
1844 if (!c->lxc_conf) {
1845 if (!c->load_config(c, lxc_global_config_value("lxc.default_config"))) {
1846 ERROR("Error loading default configuration file %s while saving %s", lxc_global_config_value("lxc.default_config"), c->name);
1847 return false;
1848 }
1849 }
1850
1851 if (!create_container_dir(c))
1852 return false;
1853
1854 /*
1855 * If we're writing to the container's config file, take the
1856 * disk lock. Otherwise just take the memlock to protect the
1857 * struct lxc_container while we're traversing it.
1858 */
1859 if (strcmp(c->configfile, alt_file) == 0)
1860 need_disklock = true;
1861
1862 if (need_disklock)
1863 lret = container_disk_lock(c);
1864 else
1865 lret = container_mem_lock(c);
1866
1867 if (lret)
1868 return false;
1869
1870 fout = fopen(alt_file, "w");
1871 if (!fout)
1872 goto out;
1873 write_config(fout, c->lxc_conf);
1874 fclose(fout);
1875 ret = true;
1876
1877 out:
1878 if (need_disklock)
1879 container_disk_unlock(c);
1880 else
1881 container_mem_unlock(c);
1882 return ret;
1883 }
1884
1885 static bool mod_rdep(struct lxc_container *c, bool inc)
1886 {
1887 char path[MAXPATHLEN];
1888 int ret, v = 0;
1889 FILE *f;
1890 bool bret = false;
1891
1892 if (container_disk_lock(c))
1893 return false;
1894 ret = snprintf(path, MAXPATHLEN, "%s/%s/lxc_snapshots", c->config_path,
1895 c->name);
1896 if (ret < 0 || ret > MAXPATHLEN)
1897 goto out;
1898 f = fopen(path, "r");
1899 if (f) {
1900 ret = fscanf(f, "%d", &v);
1901 fclose(f);
1902 if (ret != 1) {
1903 ERROR("Corrupted file %s", path);
1904 goto out;
1905 }
1906 }
1907 v += inc ? 1 : -1;
1908 f = fopen(path, "w");
1909 if (!f)
1910 goto out;
1911 if (fprintf(f, "%d\n", v) < 0) {
1912 ERROR("Error writing new snapshots value");
1913 fclose(f);
1914 goto out;
1915 }
1916 ret = fclose(f);
1917 if (ret != 0) {
1918 SYSERROR("Error writing to or closing snapshots file");
1919 goto out;
1920 }
1921
1922 bret = true;
1923
1924 out:
1925 container_disk_unlock(c);
1926 return bret;
1927 }
1928
1929 static void strip_newline(char *p)
1930 {
1931 size_t len = strlen(p);
1932 if (len < 1)
1933 return;
1934 if (p[len-1] == '\n')
1935 p[len-1] = '\0';
1936 }
1937
1938 static void mod_all_rdeps(struct lxc_container *c, bool inc)
1939 {
1940 struct lxc_container *p;
1941 char *lxcpath = NULL, *lxcname = NULL, path[MAXPATHLEN];
1942 size_t pathlen = 0, namelen = 0;
1943 FILE *f;
1944 int ret;
1945
1946 ret = snprintf(path, MAXPATHLEN, "%s/%s/lxc_rdepends",
1947 c->config_path, c->name);
1948 if (ret < 0 || ret >= MAXPATHLEN) {
1949 ERROR("Path name too long");
1950 return;
1951 }
1952 f = fopen(path, "r");
1953 if (f == NULL)
1954 return;
1955 while (getline(&lxcpath, &pathlen, f) != -1) {
1956 if (getline(&lxcname, &namelen, f) == -1) {
1957 ERROR("badly formatted file %s", path);
1958 goto out;
1959 }
1960 strip_newline(lxcpath);
1961 strip_newline(lxcname);
1962 if ((p = lxc_container_new(lxcname, lxcpath)) == NULL) {
1963 ERROR("Unable to find dependent container %s:%s",
1964 lxcpath, lxcname);
1965 continue;
1966 }
1967 if (!mod_rdep(p, inc))
1968 ERROR("Failed to increase numsnapshots for %s:%s",
1969 lxcpath, lxcname);
1970 lxc_container_put(p);
1971 }
1972 out:
1973 if (lxcpath) free(lxcpath);
1974 if (lxcname) free(lxcname);
1975 fclose(f);
1976 }
1977
1978 static bool has_fs_snapshots(struct lxc_container *c)
1979 {
1980 char path[MAXPATHLEN];
1981 int ret, v;
1982 FILE *f;
1983 bool bret = false;
1984
1985 ret = snprintf(path, MAXPATHLEN, "%s/%s/lxc_snapshots", c->config_path,
1986 c->name);
1987 if (ret < 0 || ret > MAXPATHLEN)
1988 goto out;
1989 f = fopen(path, "r");
1990 if (!f)
1991 goto out;
1992 ret = fscanf(f, "%d", &v);
1993 fclose(f);
1994 if (ret != 1)
1995 goto out;
1996 bret = v != 0;
1997
1998 out:
1999 return bret;
2000 }
2001
2002 static bool has_snapshots(struct lxc_container *c)
2003 {
2004 char path[MAXPATHLEN];
2005 struct dirent dirent, *direntp;
2006 int count=0;
2007 DIR *dir;
2008
2009 if (!get_snappath_dir(c, path))
2010 return false;
2011 dir = opendir(path);
2012 if (!dir)
2013 return false;
2014 while (!readdir_r(dir, &dirent, &direntp)) {
2015 if (!direntp)
2016 break;
2017
2018 if (!strcmp(direntp->d_name, "."))
2019 continue;
2020
2021 if (!strcmp(direntp->d_name, ".."))
2022 continue;
2023 count++;
2024 break;
2025 }
2026 closedir(dir);
2027 return count > 0;
2028 }
2029
2030 static int lxc_rmdir_onedev_wrapper(void *data)
2031 {
2032 char *arg = (char *) data;
2033 return lxc_rmdir_onedev(arg, "snaps");
2034 }
2035
2036 static int do_bdev_destroy(struct lxc_conf *conf)
2037 {
2038 struct bdev *r;
2039 int ret = 0;
2040
2041 r = bdev_init(conf, conf->rootfs.path, conf->rootfs.mount, NULL);
2042 if (!r)
2043 return -1;
2044
2045 if (r->ops->destroy(r) < 0)
2046 ret = -1;
2047 bdev_put(r);
2048 return ret;
2049 }
2050
2051 static int bdev_destroy_wrapper(void *data)
2052 {
2053 struct lxc_conf *conf = data;
2054
2055 if (setgid(0) < 0) {
2056 ERROR("Failed to setgid to 0");
2057 return -1;
2058 }
2059 if (setgroups(0, NULL) < 0)
2060 WARN("Failed to clear groups");
2061 if (setuid(0) < 0) {
2062 ERROR("Failed to setuid to 0");
2063 return -1;
2064 }
2065 return do_bdev_destroy(conf);
2066 }
2067
2068 static bool container_destroy(struct lxc_container *c)
2069 {
2070 bool bret = false;
2071 int ret;
2072
2073 if (!c || !lxcapi_is_defined(c))
2074 return false;
2075
2076 if (container_disk_lock(c))
2077 return false;
2078
2079 if (!is_stopped(c)) {
2080 // we should queue some sort of error - in c->error_string?
2081 ERROR("container %s is not stopped", c->name);
2082 goto out;
2083 }
2084
2085 if (c->lxc_conf && c->lxc_conf->rootfs.path && c->lxc_conf->rootfs.mount) {
2086 if (am_unpriv())
2087 ret = userns_exec_1(c->lxc_conf, bdev_destroy_wrapper, c->lxc_conf);
2088 else
2089 ret = do_bdev_destroy(c->lxc_conf);
2090 if (ret < 0) {
2091 ERROR("Error destroying rootfs for %s", c->name);
2092 goto out;
2093 }
2094 }
2095
2096 mod_all_rdeps(c, false);
2097
2098 const char *p1 = lxcapi_get_config_path(c);
2099 char *path = alloca(strlen(p1) + strlen(c->name) + 2);
2100 sprintf(path, "%s/%s", p1, c->name);
2101 if (am_unpriv())
2102 ret = userns_exec_1(c->lxc_conf, lxc_rmdir_onedev_wrapper, path);
2103 else
2104 ret = lxc_rmdir_onedev(path, "snaps");
2105 if (ret < 0) {
2106 ERROR("Error destroying container directory for %s", c->name);
2107 goto out;
2108 }
2109 bret = true;
2110
2111 out:
2112 container_disk_unlock(c);
2113 return bret;
2114 }
2115
2116 static bool lxcapi_destroy(struct lxc_container *c)
2117 {
2118 if (!c || !lxcapi_is_defined(c))
2119 return false;
2120 if (has_snapshots(c)) {
2121 ERROR("Container %s has snapshots; not removing", c->name);
2122 return false;
2123 }
2124
2125 if (has_fs_snapshots(c)) {
2126 ERROR("container %s has snapshots on its rootfs", c->name);
2127 return false;
2128 }
2129
2130 return container_destroy(c);
2131 }
2132
2133 static bool lxcapi_snapshot_destroy_all(struct lxc_container *c);
2134
2135 static bool lxcapi_destroy_with_snapshots(struct lxc_container *c)
2136 {
2137 if (!c || !lxcapi_is_defined(c))
2138 return false;
2139 if (!lxcapi_snapshot_destroy_all(c)) {
2140 ERROR("Error deleting all snapshots");
2141 return false;
2142 }
2143 return lxcapi_destroy(c);
2144 }
2145
2146 static bool set_config_item_locked(struct lxc_container *c, const char *key, const char *v)
2147 {
2148 struct lxc_config_t *config;
2149
2150 if (!c->lxc_conf)
2151 c->lxc_conf = lxc_conf_init();
2152 if (!c->lxc_conf)
2153 return false;
2154 config = lxc_getconfig(key);
2155 if (!config)
2156 return false;
2157 if (config->cb(key, v, c->lxc_conf) != 0)
2158 return false;
2159 return do_append_unexp_config_line(c->lxc_conf, key, v);
2160 }
2161
2162 static bool lxcapi_set_config_item(struct lxc_container *c, const char *key, const char *v)
2163 {
2164 bool b = false;
2165
2166 if (!c)
2167 return false;
2168
2169 if (container_mem_lock(c))
2170 return false;
2171
2172 b = set_config_item_locked(c, key, v);
2173
2174 container_mem_unlock(c);
2175 return b;
2176 }
2177
2178 static char *lxcapi_config_file_name(struct lxc_container *c)
2179 {
2180 if (!c || !c->configfile)
2181 return NULL;
2182 return strdup(c->configfile);
2183 }
2184
2185 static const char *lxcapi_get_config_path(struct lxc_container *c)
2186 {
2187 if (!c || !c->config_path)
2188 return NULL;
2189 return (const char *)(c->config_path);
2190 }
2191
2192 /*
2193 * not for export
2194 * Just recalculate the c->configfile based on the
2195 * c->config_path, which must be set.
2196 * The lxc_container must be locked or not yet public.
2197 */
2198 static bool set_config_filename(struct lxc_container *c)
2199 {
2200 char *newpath;
2201 int len, ret;
2202
2203 if (!c->config_path)
2204 return false;
2205
2206 /* $lxc_path + "/" + c->name + "/" + "config" + '\0' */
2207 len = strlen(c->config_path) + strlen(c->name) + strlen("config") + 3;
2208 newpath = malloc(len);
2209 if (!newpath)
2210 return false;
2211
2212 ret = snprintf(newpath, len, "%s/%s/config", c->config_path, c->name);
2213 if (ret < 0 || ret >= len) {
2214 fprintf(stderr, "Error printing out config file name\n");
2215 free(newpath);
2216 return false;
2217 }
2218
2219 if (c->configfile)
2220 free(c->configfile);
2221 c->configfile = newpath;
2222
2223 return true;
2224 }
2225
2226 static bool lxcapi_set_config_path(struct lxc_container *c, const char *path)
2227 {
2228 char *p;
2229 bool b = false;
2230 char *oldpath = NULL;
2231
2232 if (!c)
2233 return b;
2234
2235 if (container_mem_lock(c))
2236 return b;
2237
2238 p = strdup(path);
2239 if (!p) {
2240 ERROR("Out of memory setting new lxc path");
2241 goto err;
2242 }
2243
2244 b = true;
2245 if (c->config_path)
2246 oldpath = c->config_path;
2247 c->config_path = p;
2248
2249 /* Since we've changed the config path, we have to change the
2250 * config file name too */
2251 if (!set_config_filename(c)) {
2252 ERROR("Out of memory setting new config filename");
2253 b = false;
2254 free(c->config_path);
2255 c->config_path = oldpath;
2256 oldpath = NULL;
2257 }
2258 err:
2259 if (oldpath)
2260 free(oldpath);
2261 container_mem_unlock(c);
2262 return b;
2263 }
2264
2265
2266 static bool lxcapi_set_cgroup_item(struct lxc_container *c, const char *subsys, const char *value)
2267 {
2268 int ret;
2269
2270 if (!c)
2271 return false;
2272
2273 if (is_stopped(c))
2274 return false;
2275
2276 if (container_disk_lock(c))
2277 return false;
2278
2279 ret = lxc_cgroup_set(subsys, value, c->name, c->config_path);
2280
2281 container_disk_unlock(c);
2282 return ret == 0;
2283 }
2284
2285 static int lxcapi_get_cgroup_item(struct lxc_container *c, const char *subsys, char *retv, int inlen)
2286 {
2287 int ret;
2288
2289 if (!c)
2290 return -1;
2291
2292 if (is_stopped(c))
2293 return -1;
2294
2295 if (container_disk_lock(c))
2296 return -1;
2297
2298 ret = lxc_cgroup_get(subsys, retv, inlen, c->name, c->config_path);
2299
2300 container_disk_unlock(c);
2301 return ret;
2302 }
2303
2304 const char *lxc_get_global_config_item(const char *key)
2305 {
2306 return lxc_global_config_value(key);
2307 }
2308
2309 const char *lxc_get_version(void)
2310 {
2311 return LXC_VERSION;
2312 }
2313
2314 static int copy_file(const char *old, const char *new)
2315 {
2316 int in, out;
2317 ssize_t len, ret;
2318 char buf[8096];
2319 struct stat sbuf;
2320
2321 if (file_exists(new)) {
2322 ERROR("copy destination %s exists", new);
2323 return -1;
2324 }
2325 ret = stat(old, &sbuf);
2326 if (ret < 0) {
2327 INFO("Error stat'ing %s", old);
2328 return -1;
2329 }
2330
2331 in = open(old, O_RDONLY);
2332 if (in < 0) {
2333 SYSERROR("Error opening original file %s", old);
2334 return -1;
2335 }
2336 out = open(new, O_CREAT | O_EXCL | O_WRONLY, 0644);
2337 if (out < 0) {
2338 SYSERROR("Error opening new file %s", new);
2339 close(in);
2340 return -1;
2341 }
2342
2343 while (1) {
2344 len = read(in, buf, 8096);
2345 if (len < 0) {
2346 SYSERROR("Error reading old file %s", old);
2347 goto err;
2348 }
2349 if (len == 0)
2350 break;
2351 ret = write(out, buf, len);
2352 if (ret < len) { // should we retry?
2353 SYSERROR("Error: write to new file %s was interrupted", new);
2354 goto err;
2355 }
2356 }
2357 close(in);
2358 close(out);
2359
2360 // we set mode, but not owner/group
2361 ret = chmod(new, sbuf.st_mode);
2362 if (ret) {
2363 SYSERROR("Error setting mode on %s", new);
2364 return -1;
2365 }
2366
2367 return 0;
2368
2369 err:
2370 close(in);
2371 close(out);
2372 return -1;
2373 }
2374
2375 static int copyhooks(struct lxc_container *oldc, struct lxc_container *c)
2376 {
2377 int i, len, ret;
2378 struct lxc_list *it;
2379 char *cpath;
2380
2381 len = strlen(oldc->config_path) + strlen(oldc->name) + 3;
2382 cpath = alloca(len);
2383 ret = snprintf(cpath, len, "%s/%s/", oldc->config_path, oldc->name);
2384 if (ret < 0 || ret >= len)
2385 return -1;
2386
2387 for (i=0; i<NUM_LXC_HOOKS; i++) {
2388 lxc_list_for_each(it, &c->lxc_conf->hooks[i]) {
2389 char *hookname = it->elem;
2390 char *fname = strrchr(hookname, '/');
2391 char tmppath[MAXPATHLEN];
2392 if (!fname) // relative path - we don't support, but maybe we should
2393 return 0;
2394 if (strncmp(hookname, cpath, len - 1) != 0) {
2395 // this hook is public - ignore
2396 continue;
2397 }
2398 // copy the script, and change the entry in confile
2399 ret = snprintf(tmppath, MAXPATHLEN, "%s/%s/%s",
2400 c->config_path, c->name, fname+1);
2401 if (ret < 0 || ret >= MAXPATHLEN)
2402 return -1;
2403 ret = copy_file(it->elem, tmppath);
2404 if (ret < 0)
2405 return -1;
2406 free(it->elem);
2407 it->elem = strdup(tmppath);
2408 if (!it->elem) {
2409 ERROR("out of memory copying hook path");
2410 return -1;
2411 }
2412 }
2413 }
2414
2415 if (!clone_update_unexp_hooks(c->lxc_conf)) {
2416 ERROR("Error saving new hooks in clone");
2417 return -1;
2418 }
2419 c->save_config(c, NULL);
2420 return 0;
2421 }
2422
2423 static void new_hwaddr(char *hwaddr)
2424 {
2425 FILE *f;
2426 f = fopen("/dev/urandom", "r");
2427 if (f) {
2428 unsigned int seed;
2429 int ret = fread(&seed, sizeof(seed), 1, f);
2430 if (ret != 1)
2431 seed = time(NULL);
2432 fclose(f);
2433 srand(seed);
2434 } else
2435 srand(time(NULL));
2436 snprintf(hwaddr, 18, "00:16:3e:%02x:%02x:%02x",
2437 rand() % 255, rand() % 255, rand() % 255);
2438 }
2439
2440 static void network_new_hwaddrs(struct lxc_container *c)
2441 {
2442 struct lxc_list *it;
2443
2444 lxc_list_for_each(it, &c->lxc_conf->network) {
2445 struct lxc_netdev *n = it->elem;
2446 if (n->hwaddr)
2447 new_hwaddr(n->hwaddr);
2448 }
2449 }
2450
2451 static int copy_fstab(struct lxc_container *oldc, struct lxc_container *c)
2452 {
2453 char newpath[MAXPATHLEN];
2454 char *oldpath = oldc->lxc_conf->fstab;
2455 int ret;
2456
2457 if (!oldpath)
2458 return 0;
2459
2460 clear_unexp_config_line(c->lxc_conf, "lxc.mount", false);
2461
2462 char *p = strrchr(oldpath, '/');
2463 if (!p)
2464 return -1;
2465 ret = snprintf(newpath, MAXPATHLEN, "%s/%s%s",
2466 c->config_path, c->name, p);
2467 if (ret < 0 || ret >= MAXPATHLEN) {
2468 ERROR("error printing new path for %s", oldpath);
2469 return -1;
2470 }
2471 if (file_exists(newpath)) {
2472 ERROR("error: fstab file %s exists", newpath);
2473 return -1;
2474 }
2475
2476 if (copy_file(oldpath, newpath) < 0) {
2477 ERROR("error: copying %s to %s", oldpath, newpath);
2478 return -1;
2479 }
2480 free(c->lxc_conf->fstab);
2481 c->lxc_conf->fstab = strdup(newpath);
2482 if (!c->lxc_conf->fstab) {
2483 ERROR("error: allocating pathname");
2484 return -1;
2485 }
2486 if (!do_append_unexp_config_line(c->lxc_conf, "lxc.mount", newpath)) {
2487 ERROR("error saving new lxctab");
2488 return -1;
2489 }
2490
2491 return 0;
2492 }
2493
2494 static void copy_rdepends(struct lxc_container *c, struct lxc_container *c0)
2495 {
2496 char path0[MAXPATHLEN], path1[MAXPATHLEN];
2497 int ret;
2498
2499 ret = snprintf(path0, MAXPATHLEN, "%s/%s/lxc_rdepends", c0->config_path,
2500 c0->name);
2501 if (ret < 0 || ret >= MAXPATHLEN) {
2502 WARN("Error copying reverse dependencies");
2503 return;
2504 }
2505 ret = snprintf(path1, MAXPATHLEN, "%s/%s/lxc_rdepends", c->config_path,
2506 c->name);
2507 if (ret < 0 || ret >= MAXPATHLEN) {
2508 WARN("Error copying reverse dependencies");
2509 return;
2510 }
2511 if (copy_file(path0, path1) < 0) {
2512 INFO("Error copying reverse dependencies");
2513 return;
2514 }
2515 }
2516
2517 static bool add_rdepends(struct lxc_container *c, struct lxc_container *c0)
2518 {
2519 int ret;
2520 char path[MAXPATHLEN];
2521 FILE *f;
2522 bool bret;
2523
2524 ret = snprintf(path, MAXPATHLEN, "%s/%s/lxc_rdepends", c->config_path,
2525 c->name);
2526 if (ret < 0 || ret >= MAXPATHLEN)
2527 return false;
2528 f = fopen(path, "a");
2529 if (!f)
2530 return false;
2531 bret = true;
2532 // if anything goes wrong, just return an error
2533 if (fprintf(f, "%s\n%s\n", c0->config_path, c0->name) < 0)
2534 bret = false;
2535 if (fclose(f) != 0)
2536 bret = false;
2537 return bret;
2538 }
2539
2540 static int copy_storage(struct lxc_container *c0, struct lxc_container *c,
2541 const char *newtype, int flags, const char *bdevdata, uint64_t newsize)
2542 {
2543 struct bdev *bdev;
2544 int need_rdep;
2545
2546 bdev = bdev_copy(c0, c->name, c->config_path, newtype, flags,
2547 bdevdata, newsize, &need_rdep);
2548 if (!bdev) {
2549 ERROR("Error copying storage");
2550 return -1;
2551 }
2552 free(c->lxc_conf->rootfs.path);
2553 c->lxc_conf->rootfs.path = strdup(bdev->src);
2554 bdev_put(bdev);
2555 if (!c->lxc_conf->rootfs.path) {
2556 ERROR("Out of memory while setting storage path");
2557 return -1;
2558 }
2559 // We will simply append a new lxc.rootfs entry to the unexpanded config
2560 clear_unexp_config_line(c->lxc_conf, "lxc.rootfs", false);
2561 if (!do_append_unexp_config_line(c->lxc_conf, "lxc.rootfs", c->lxc_conf->rootfs.path)) {
2562 ERROR("Error saving new rootfs to cloend config");
2563 return -1;
2564 }
2565 if (flags & LXC_CLONE_SNAPSHOT)
2566 copy_rdepends(c, c0);
2567 if (need_rdep) {
2568 if (!add_rdepends(c, c0))
2569 WARN("Error adding reverse dependency from %s to %s",
2570 c->name, c0->name);
2571 }
2572
2573 mod_all_rdeps(c, true);
2574
2575 return 0;
2576 }
2577
2578 struct clone_update_data {
2579 struct lxc_container *c0;
2580 struct lxc_container *c1;
2581 int flags;
2582 char **hookargs;
2583 };
2584
2585 static int clone_update_rootfs(struct clone_update_data *data)
2586 {
2587 struct lxc_container *c0 = data->c0;
2588 struct lxc_container *c = data->c1;
2589 int flags = data->flags;
2590 char **hookargs = data->hookargs;
2591 int ret = -1;
2592 char path[MAXPATHLEN];
2593 struct bdev *bdev;
2594 FILE *fout;
2595 struct lxc_conf *conf = c->lxc_conf;
2596
2597 /* update hostname in rootfs */
2598 /* we're going to mount, so run in a clean namespace to simplify cleanup */
2599
2600 if (setgid(0) < 0) {
2601 ERROR("Failed to setgid to 0");
2602 return -1;
2603 }
2604 if (setuid(0) < 0) {
2605 ERROR("Failed to setuid to 0");
2606 return -1;
2607 }
2608 if (setgroups(0, NULL) < 0)
2609 WARN("Failed to clear groups");
2610
2611 if (unshare(CLONE_NEWNS) < 0)
2612 return -1;
2613 bdev = bdev_init(c->lxc_conf, c->lxc_conf->rootfs.path, c->lxc_conf->rootfs.mount, NULL);
2614 if (!bdev)
2615 return -1;
2616 if (strcmp(bdev->type, "dir") != 0) {
2617 if (unshare(CLONE_NEWNS) < 0) {
2618 ERROR("error unsharing mounts");
2619 bdev_put(bdev);
2620 return -1;
2621 }
2622 if (detect_shared_rootfs()) {
2623 if (mount(NULL, "/", NULL, MS_SLAVE|MS_REC, NULL)) {
2624 SYSERROR("Failed to make / rslave");
2625 ERROR("Continuing...");
2626 }
2627 }
2628 if (bdev->ops->mount(bdev) < 0) {
2629 bdev_put(bdev);
2630 return -1;
2631 }
2632 } else { // TODO come up with a better way
2633 if (bdev->dest)
2634 free(bdev->dest);
2635 bdev->dest = strdup(bdev->src);
2636 }
2637
2638 if (!lxc_list_empty(&conf->hooks[LXCHOOK_CLONE])) {
2639 /* Start of environment variable setup for hooks */
2640 if (setenv("LXC_SRC_NAME", c0->name, 1)) {
2641 SYSERROR("failed to set environment variable for source container name");
2642 }
2643 if (setenv("LXC_NAME", c->name, 1)) {
2644 SYSERROR("failed to set environment variable for container name");
2645 }
2646 if (setenv("LXC_CONFIG_FILE", conf->rcfile, 1)) {
2647 SYSERROR("failed to set environment variable for config path");
2648 }
2649 if (setenv("LXC_ROOTFS_MOUNT", bdev->dest, 1)) {
2650 SYSERROR("failed to set environment variable for rootfs mount");
2651 }
2652 if (setenv("LXC_ROOTFS_PATH", conf->rootfs.path, 1)) {
2653 SYSERROR("failed to set environment variable for rootfs mount");
2654 }
2655
2656 if (run_lxc_hooks(c->name, "clone", conf, c->get_config_path(c), hookargs)) {
2657 ERROR("Error executing clone hook for %s", c->name);
2658 bdev_put(bdev);
2659 return -1;
2660 }
2661 }
2662
2663 if (!(flags & LXC_CLONE_KEEPNAME)) {
2664 ret = snprintf(path, MAXPATHLEN, "%s/etc/hostname", bdev->dest);
2665 bdev_put(bdev);
2666
2667 if (ret < 0 || ret >= MAXPATHLEN)
2668 return -1;
2669 if (!file_exists(path))
2670 return 0;
2671 if (!(fout = fopen(path, "w"))) {
2672 SYSERROR("unable to open %s: ignoring", path);
2673 return 0;
2674 }
2675 if (fprintf(fout, "%s", c->name) < 0) {
2676 fclose(fout);
2677 return -1;
2678 }
2679 if (fclose(fout) < 0)
2680 return -1;
2681 }
2682 else
2683 bdev_put(bdev);
2684
2685 return 0;
2686 }
2687
2688 static int clone_update_rootfs_wrapper(void *data)
2689 {
2690 struct clone_update_data *arg = (struct clone_update_data *) data;
2691 return clone_update_rootfs(arg);
2692 }
2693
2694 /*
2695 * We want to support:
2696 sudo lxc-clone -o o1 -n n1 -s -L|-fssize fssize -v|--vgname vgname \
2697 -p|--lvprefix lvprefix -t|--fstype fstype -B backingstore
2698
2699 -s [ implies overlayfs]
2700 -s -B overlayfs
2701 -s -B aufs
2702
2703 only rootfs gets converted (copied/snapshotted) on clone.
2704 */
2705
2706 static int create_file_dirname(char *path)
2707 {
2708 char *p = strrchr(path, '/');
2709 int ret;
2710
2711 if (!p)
2712 return -1;
2713 *p = '\0';
2714 ret = mkdir(path, 0755);
2715 if (ret && errno != EEXIST)
2716 SYSERROR("creating container path %s", path);
2717 *p = '/';
2718 return ret;
2719 }
2720
2721 static struct lxc_container *lxcapi_clone(struct lxc_container *c, const char *newname,
2722 const char *lxcpath, int flags,
2723 const char *bdevtype, const char *bdevdata, uint64_t newsize,
2724 char **hookargs)
2725 {
2726 struct lxc_container *c2 = NULL;
2727 char newpath[MAXPATHLEN];
2728 int ret, storage_copied = 0;
2729 const char *n, *l;
2730 char *origroot = NULL;
2731 struct clone_update_data data;
2732 FILE *fout;
2733 pid_t pid;
2734
2735 if (!c || !c->is_defined(c))
2736 return NULL;
2737
2738 if (container_mem_lock(c))
2739 return NULL;
2740
2741 if (!is_stopped(c)) {
2742 ERROR("error: Original container (%s) is running", c->name);
2743 goto out;
2744 }
2745
2746 // Make sure the container doesn't yet exist.
2747 n = newname ? newname : c->name;
2748 l = lxcpath ? lxcpath : c->get_config_path(c);
2749 ret = snprintf(newpath, MAXPATHLEN, "%s/%s/config", l, n);
2750 if (ret < 0 || ret >= MAXPATHLEN) {
2751 SYSERROR("clone: failed making config pathname");
2752 goto out;
2753 }
2754 if (file_exists(newpath)) {
2755 ERROR("error: clone: %s exists", newpath);
2756 goto out;
2757 }
2758
2759 ret = create_file_dirname(newpath);
2760 if (ret < 0 && errno != EEXIST) {
2761 ERROR("Error creating container dir for %s", newpath);
2762 goto out;
2763 }
2764
2765 // copy the configuration, tweak it as needed,
2766 if (c->lxc_conf->rootfs.path) {
2767 origroot = c->lxc_conf->rootfs.path;
2768 c->lxc_conf->rootfs.path = NULL;
2769 }
2770 fout = fopen(newpath, "w");
2771 if (!fout) {
2772 SYSERROR("open %s", newpath);
2773 goto out;
2774 }
2775 write_config(fout, c->lxc_conf);
2776 fclose(fout);
2777 c->lxc_conf->rootfs.path = origroot;
2778
2779 sprintf(newpath, "%s/%s/rootfs", l, n);
2780 if (mkdir(newpath, 0755) < 0) {
2781 SYSERROR("error creating %s", newpath);
2782 goto out;
2783 }
2784
2785 if (am_unpriv()) {
2786 if (chown_mapped_root(newpath, c->lxc_conf) < 0) {
2787 ERROR("Error chowning %s to container root", newpath);
2788 goto out;
2789 }
2790 }
2791
2792 c2 = lxc_container_new(n, l);
2793 if (!c2) {
2794 ERROR("clone: failed to create new container (%s %s)", n, l);
2795 goto out;
2796 }
2797
2798 // copy/snapshot rootfs's
2799 ret = copy_storage(c, c2, bdevtype, flags, bdevdata, newsize);
2800 if (ret < 0)
2801 goto out;
2802
2803 clear_unexp_config_line(c2->lxc_conf, "lxc.utsname", false);
2804
2805 // update utsname
2806 if (!set_config_item_locked(c2, "lxc.utsname", newname)) {
2807 ERROR("Error setting new hostname");
2808 goto out;
2809 }
2810
2811 // copy hooks
2812 ret = copyhooks(c, c2);
2813 if (ret < 0) {
2814 ERROR("error copying hooks");
2815 goto out;
2816 }
2817
2818 if (copy_fstab(c, c2) < 0) {
2819 ERROR("error copying fstab");
2820 goto out;
2821 }
2822
2823 // update macaddrs
2824 if (!(flags & LXC_CLONE_KEEPMACADDR)) {
2825 network_new_hwaddrs(c2);
2826 if (!clone_update_unexp_network(c2->lxc_conf)) {
2827 ERROR("Error updating network for clone");
2828 goto out;
2829 }
2830 }
2831
2832 // We've now successfully created c2's storage, so clear it out if we
2833 // fail after this
2834 storage_copied = 1;
2835
2836 if (!c2->save_config(c2, NULL))
2837 goto out;
2838
2839 if ((pid = fork()) < 0) {
2840 SYSERROR("fork");
2841 goto out;
2842 }
2843 if (pid > 0) {
2844 ret = wait_for_pid(pid);
2845 if (ret)
2846 goto out;
2847 container_mem_unlock(c);
2848 return c2;
2849 }
2850 data.c0 = c;
2851 data.c1 = c2;
2852 data.flags = flags;
2853 data.hookargs = hookargs;
2854 if (am_unpriv())
2855 ret = userns_exec_1(c->lxc_conf, clone_update_rootfs_wrapper,
2856 &data);
2857 else
2858 ret = clone_update_rootfs(&data);
2859 if (ret < 0)
2860 exit(1);
2861
2862 container_mem_unlock(c);
2863 exit(0);
2864
2865 out:
2866 container_mem_unlock(c);
2867 if (c2) {
2868 if (!storage_copied)
2869 c2->lxc_conf->rootfs.path = NULL;
2870 c2->destroy(c2);
2871 lxc_container_put(c2);
2872 }
2873
2874 return NULL;
2875 }
2876
2877 static bool lxcapi_rename(struct lxc_container *c, const char *newname)
2878 {
2879 struct bdev *bdev;
2880 struct lxc_container *newc;
2881
2882 if (!c || !c->name || !c->config_path || !c->lxc_conf)
2883 return false;
2884
2885 if (has_fs_snapshots(c) || has_snapshots(c)) {
2886 ERROR("Renaming a container with snapshots is not supported");
2887 return false;
2888 }
2889 bdev = bdev_init(c->lxc_conf, c->lxc_conf->rootfs.path, c->lxc_conf->rootfs.mount, NULL);
2890 if (!bdev) {
2891 ERROR("Failed to find original backing store type");
2892 return false;
2893 }
2894
2895 newc = lxcapi_clone(c, newname, c->config_path, LXC_CLONE_KEEPMACADDR, NULL, bdev->type, 0, NULL);
2896 bdev_put(bdev);
2897 if (!newc) {
2898 lxc_container_put(newc);
2899 return false;
2900 }
2901
2902 if (newc && lxcapi_is_defined(newc))
2903 lxc_container_put(newc);
2904
2905 if (!container_destroy(c)) {
2906 ERROR("Could not destroy existing container %s", c->name);
2907 return false;
2908 }
2909 return true;
2910 }
2911
2912 static int lxcapi_attach(struct lxc_container *c, lxc_attach_exec_t exec_function, void *exec_payload, lxc_attach_options_t *options, pid_t *attached_process)
2913 {
2914 if (!c)
2915 return -1;
2916
2917 return lxc_attach(c->name, c->config_path, exec_function, exec_payload, options, attached_process);
2918 }
2919
2920 static int lxcapi_attach_run_wait(struct lxc_container *c, lxc_attach_options_t *options, const char *program, const char * const argv[])
2921 {
2922 lxc_attach_command_t command;
2923 pid_t pid;
2924 int r;
2925
2926 if (!c)
2927 return -1;
2928
2929 command.program = (char*)program;
2930 command.argv = (char**)argv;
2931 r = lxc_attach(c->name, c->config_path, lxc_attach_run_command, &command, options, &pid);
2932 if (r < 0) {
2933 ERROR("ups");
2934 return r;
2935 }
2936 return lxc_wait_for_pid_status(pid);
2937 }
2938
2939 static int get_next_index(const char *lxcpath, char *cname)
2940 {
2941 char *fname;
2942 struct stat sb;
2943 int i = 0, ret;
2944
2945 fname = alloca(strlen(lxcpath) + 20);
2946 while (1) {
2947 sprintf(fname, "%s/snap%d", lxcpath, i);
2948 ret = stat(fname, &sb);
2949 if (ret != 0)
2950 return i;
2951 i++;
2952 }
2953 }
2954
2955 static bool get_snappath_dir(struct lxc_container *c, char *snappath)
2956 {
2957 int ret;
2958 /*
2959 * If the old style snapshot path exists, use it
2960 * /var/lib/lxc -> /var/lib/lxcsnaps
2961 */
2962 ret = snprintf(snappath, MAXPATHLEN, "%ssnaps", c->config_path);
2963 if (ret < 0 || ret >= MAXPATHLEN)
2964 return false;
2965 if (dir_exists(snappath)) {
2966 ret = snprintf(snappath, MAXPATHLEN, "%ssnaps/%s", c->config_path, c->name);
2967 if (ret < 0 || ret >= MAXPATHLEN)
2968 return false;
2969 return true;
2970 }
2971
2972 /*
2973 * Use the new style path
2974 * /var/lib/lxc -> /var/lib/lxc + c->name + /snaps + \0
2975 */
2976 ret = snprintf(snappath, MAXPATHLEN, "%s/%s/snaps", c->config_path, c->name);
2977 if (ret < 0 || ret >= MAXPATHLEN)
2978 return false;
2979 return true;
2980 }
2981
2982 static int lxcapi_snapshot(struct lxc_container *c, const char *commentfile)
2983 {
2984 int i, flags, ret;
2985 struct lxc_container *c2;
2986 char snappath[MAXPATHLEN], newname[20];
2987
2988 if (!c || !lxcapi_is_defined(c))
2989 return -1;
2990
2991 if (!bdev_can_backup(c->lxc_conf)) {
2992 ERROR("%s's backing store cannot be backed up.", c->name);
2993 ERROR("Your container must use another backing store type.");
2994 return -1;
2995 }
2996
2997 if (!get_snappath_dir(c, snappath))
2998 return -1;
2999
3000 i = get_next_index(snappath, c->name);
3001
3002 if (mkdir_p(snappath, 0755) < 0) {
3003 ERROR("Failed to create snapshot directory %s", snappath);
3004 return -1;
3005 }
3006
3007 ret = snprintf(newname, 20, "snap%d", i);
3008 if (ret < 0 || ret >= 20)
3009 return -1;
3010
3011 /*
3012 * We pass LXC_CLONE_SNAPSHOT to make sure that a rdepends file entry is
3013 * created in the original container
3014 */
3015 flags = LXC_CLONE_SNAPSHOT | LXC_CLONE_KEEPMACADDR | LXC_CLONE_KEEPNAME |
3016 LXC_CLONE_KEEPBDEVTYPE | LXC_CLONE_MAYBE_SNAPSHOT;
3017 if (bdev_is_dir(c->lxc_conf, c->lxc_conf->rootfs.path)) {
3018 ERROR("Snapshot of directory-backed container requested.");
3019 ERROR("Making a copy-clone. If you do want snapshots, then");
3020 ERROR("please create an aufs or overlayfs clone first, snapshot that");
3021 ERROR("and keep the original container pristine.");
3022 flags &= ~LXC_CLONE_SNAPSHOT | LXC_CLONE_MAYBE_SNAPSHOT;
3023 }
3024 c2 = c->clone(c, newname, snappath, flags, NULL, NULL, 0, NULL);
3025 if (!c2) {
3026 ERROR("clone of %s:%s failed", c->config_path, c->name);
3027 return -1;
3028 }
3029
3030 lxc_container_put(c2);
3031
3032 // Now write down the creation time
3033 time_t timer;
3034 char buffer[25];
3035 struct tm* tm_info;
3036 FILE *f;
3037
3038 time(&timer);
3039 tm_info = localtime(&timer);
3040
3041 strftime(buffer, 25, "%Y:%m:%d %H:%M:%S", tm_info);
3042
3043 char *dfnam = alloca(strlen(snappath) + strlen(newname) + 5);
3044 sprintf(dfnam, "%s/%s/ts", snappath, newname);
3045 f = fopen(dfnam, "w");
3046 if (!f) {
3047 ERROR("Failed to open %s", dfnam);
3048 return -1;
3049 }
3050 if (fprintf(f, "%s", buffer) < 0) {
3051 SYSERROR("Writing timestamp");
3052 fclose(f);
3053 return -1;
3054 }
3055 ret = fclose(f);
3056 if (ret != 0) {
3057 SYSERROR("Writing timestamp");
3058 return -1;
3059 }
3060
3061 if (commentfile) {
3062 // $p / $name / comment \0
3063 int len = strlen(snappath) + strlen(newname) + 10;
3064 char *path = alloca(len);
3065 sprintf(path, "%s/%s/comment", snappath, newname);
3066 return copy_file(commentfile, path) < 0 ? -1 : i;
3067 }
3068
3069 return i;
3070 }
3071
3072 static void lxcsnap_free(struct lxc_snapshot *s)
3073 {
3074 if (s->name)
3075 free(s->name);
3076 if (s->comment_pathname)
3077 free(s->comment_pathname);
3078 if (s->timestamp)
3079 free(s->timestamp);
3080 if (s->lxcpath)
3081 free(s->lxcpath);
3082 }
3083
3084 static char *get_snapcomment_path(char* snappath, char *name)
3085 {
3086 // $snappath/$name/comment
3087 int ret, len = strlen(snappath) + strlen(name) + 10;
3088 char *s = malloc(len);
3089
3090 if (s) {
3091 ret = snprintf(s, len, "%s/%s/comment", snappath, name);
3092 if (ret < 0 || ret >= len) {
3093 free(s);
3094 s = NULL;
3095 }
3096 }
3097 return s;
3098 }
3099
3100 static char *get_timestamp(char* snappath, char *name)
3101 {
3102 char path[MAXPATHLEN], *s = NULL;
3103 int ret, len;
3104 FILE *fin;
3105
3106 ret = snprintf(path, MAXPATHLEN, "%s/%s/ts", snappath, name);
3107 if (ret < 0 || ret >= MAXPATHLEN)
3108 return NULL;
3109 fin = fopen(path, "r");
3110 if (!fin)
3111 return NULL;
3112 (void) fseek(fin, 0, SEEK_END);
3113 len = ftell(fin);
3114 (void) fseek(fin, 0, SEEK_SET);
3115 if (len > 0) {
3116 s = malloc(len+1);
3117 if (s) {
3118 s[len] = '\0';
3119 if (fread(s, 1, len, fin) != len) {
3120 SYSERROR("reading timestamp");
3121 free(s);
3122 s = NULL;
3123 }
3124 }
3125 }
3126 fclose(fin);
3127 return s;
3128 }
3129
3130 static int lxcapi_snapshot_list(struct lxc_container *c, struct lxc_snapshot **ret_snaps)
3131 {
3132 char snappath[MAXPATHLEN], path2[MAXPATHLEN];
3133 int count = 0, ret;
3134 struct dirent dirent, *direntp;
3135 struct lxc_snapshot *snaps =NULL, *nsnaps;
3136 DIR *dir;
3137
3138 if (!c || !lxcapi_is_defined(c))
3139 return -1;
3140
3141 if (!get_snappath_dir(c, snappath)) {
3142 ERROR("path name too long");
3143 return -1;
3144 }
3145 dir = opendir(snappath);
3146 if (!dir) {
3147 INFO("failed to open %s - assuming no snapshots", snappath);
3148 return 0;
3149 }
3150
3151 while (!readdir_r(dir, &dirent, &direntp)) {
3152 if (!direntp)
3153 break;
3154
3155 if (!strcmp(direntp->d_name, "."))
3156 continue;
3157
3158 if (!strcmp(direntp->d_name, ".."))
3159 continue;
3160
3161 ret = snprintf(path2, MAXPATHLEN, "%s/%s/config", snappath, direntp->d_name);
3162 if (ret < 0 || ret >= MAXPATHLEN) {
3163 ERROR("pathname too long");
3164 goto out_free;
3165 }
3166 if (!file_exists(path2))
3167 continue;
3168 nsnaps = realloc(snaps, (count + 1)*sizeof(*snaps));
3169 if (!nsnaps) {
3170 SYSERROR("Out of memory");
3171 goto out_free;
3172 }
3173 snaps = nsnaps;
3174 snaps[count].free = lxcsnap_free;
3175 snaps[count].name = strdup(direntp->d_name);
3176 if (!snaps[count].name)
3177 goto out_free;
3178 snaps[count].lxcpath = strdup(snappath);
3179 if (!snaps[count].lxcpath) {
3180 free(snaps[count].name);
3181 goto out_free;
3182 }
3183 snaps[count].comment_pathname = get_snapcomment_path(snappath, direntp->d_name);
3184 snaps[count].timestamp = get_timestamp(snappath, direntp->d_name);
3185 count++;
3186 }
3187
3188 if (closedir(dir))
3189 WARN("failed to close directory");
3190
3191 *ret_snaps = snaps;
3192 return count;
3193
3194 out_free:
3195 if (snaps) {
3196 int i;
3197 for (i=0; i<count; i++)
3198 lxcsnap_free(&snaps[i]);
3199 free(snaps);
3200 }
3201 if (closedir(dir))
3202 WARN("failed to close directory");
3203 return -1;
3204 }
3205
3206 static bool lxcapi_snapshot_restore(struct lxc_container *c, const char *snapname, const char *newname)
3207 {
3208 char clonelxcpath[MAXPATHLEN];
3209 int flags = 0;
3210 struct lxc_container *snap, *rest;
3211 struct bdev *bdev;
3212 bool b = false;
3213
3214 if (!c || !c->name || !c->config_path)
3215 return false;
3216
3217 if (has_fs_snapshots(c)) {
3218 ERROR("container rootfs has dependent snapshots");
3219 return false;
3220 }
3221
3222 bdev = bdev_init(c->lxc_conf, c->lxc_conf->rootfs.path, c->lxc_conf->rootfs.mount, NULL);
3223 if (!bdev) {
3224 ERROR("Failed to find original backing store type");
3225 return false;
3226 }
3227
3228 if (!newname)
3229 newname = c->name;
3230
3231 if (!get_snappath_dir(c, clonelxcpath)) {
3232 bdev_put(bdev);
3233 return false;
3234 }
3235 // how should we lock this?
3236
3237 snap = lxc_container_new(snapname, clonelxcpath);
3238 if (!snap || !lxcapi_is_defined(snap)) {
3239 ERROR("Could not open snapshot %s", snapname);
3240 if (snap) lxc_container_put(snap);
3241 bdev_put(bdev);
3242 return false;
3243 }
3244
3245 if (strcmp(c->name, newname) == 0) {
3246 if (!container_destroy(c)) {
3247 ERROR("Could not destroy existing container %s", newname);
3248 lxc_container_put(snap);
3249 bdev_put(bdev);
3250 return false;
3251 }
3252 }
3253
3254 if (strcmp(bdev->type, "dir") != 0 && strcmp(bdev->type, "loop") != 0)
3255 flags = LXC_CLONE_SNAPSHOT | LXC_CLONE_MAYBE_SNAPSHOT;
3256 rest = lxcapi_clone(snap, newname, c->config_path, flags,
3257 bdev->type, NULL, 0, NULL);
3258 bdev_put(bdev);
3259 if (rest && lxcapi_is_defined(rest))
3260 b = true;
3261 if (rest)
3262 lxc_container_put(rest);
3263 lxc_container_put(snap);
3264 return b;
3265 }
3266
3267 static bool do_snapshot_destroy(const char *snapname, const char *clonelxcpath)
3268 {
3269 struct lxc_container *snap = NULL;
3270 bool bret = false;
3271
3272 snap = lxc_container_new(snapname, clonelxcpath);
3273 if (!snap) {
3274 ERROR("Could not find snapshot %s", snapname);
3275 goto err;
3276 }
3277
3278 if (!lxcapi_destroy(snap)) {
3279 ERROR("Could not destroy snapshot %s", snapname);
3280 goto err;
3281 }
3282 bret = true;
3283
3284 err:
3285 if (snap)
3286 lxc_container_put(snap);
3287 return bret;
3288 }
3289
3290 static bool remove_all_snapshots(const char *path)
3291 {
3292 DIR *dir;
3293 struct dirent dirent, *direntp;
3294 bool bret = true;
3295
3296 dir = opendir(path);
3297 if (!dir) {
3298 SYSERROR("opendir on snapshot path %s", path);
3299 return false;
3300 }
3301 while (!readdir_r(dir, &dirent, &direntp)) {
3302 if (!direntp)
3303 break;
3304 if (!strcmp(direntp->d_name, "."))
3305 continue;
3306 if (!strcmp(direntp->d_name, ".."))
3307 continue;
3308 if (!do_snapshot_destroy(direntp->d_name, path)) {
3309 bret = false;
3310 continue;
3311 }
3312 }
3313
3314 closedir(dir);
3315
3316 if (rmdir(path))
3317 SYSERROR("Error removing directory %s", path);
3318
3319 return bret;
3320 }
3321
3322 static bool lxcapi_snapshot_destroy(struct lxc_container *c, const char *snapname)
3323 {
3324 char clonelxcpath[MAXPATHLEN];
3325
3326 if (!c || !c->name || !c->config_path || !snapname)
3327 return false;
3328
3329 if (!get_snappath_dir(c, clonelxcpath))
3330 return false;
3331
3332 return do_snapshot_destroy(snapname, clonelxcpath);
3333 }
3334
3335 static bool lxcapi_snapshot_destroy_all(struct lxc_container *c)
3336 {
3337 char clonelxcpath[MAXPATHLEN];
3338
3339 if (!c || !c->name || !c->config_path)
3340 return false;
3341
3342 if (!get_snappath_dir(c, clonelxcpath))
3343 return false;
3344
3345 return remove_all_snapshots(clonelxcpath);
3346 }
3347
3348 static bool lxcapi_may_control(struct lxc_container *c)
3349 {
3350 return lxc_try_cmd(c->name, c->config_path) == 0;
3351 }
3352
3353 static bool do_add_remove_node(pid_t init_pid, const char *path, bool add,
3354 struct stat *st)
3355 {
3356 char chrootpath[MAXPATHLEN];
3357 char *directory_path = NULL;
3358 pid_t pid;
3359 int ret;
3360
3361 if ((pid = fork()) < 0) {
3362 SYSERROR("failed to fork a child helper");
3363 return false;
3364 }
3365 if (pid) {
3366 if (wait_for_pid(pid) != 0) {
3367 ERROR("Failed to create note in guest");
3368 return false;
3369 }
3370 return true;
3371 }
3372
3373 /* prepare the path */
3374 ret = snprintf(chrootpath, MAXPATHLEN, "/proc/%d/root", init_pid);
3375 if (ret < 0 || ret >= MAXPATHLEN)
3376 return false;
3377
3378 if (chroot(chrootpath) < 0)
3379 exit(1);
3380 if (chdir("/") < 0)
3381 exit(1);
3382 /* remove path if it exists */
3383 if(faccessat(AT_FDCWD, path, F_OK, AT_SYMLINK_NOFOLLOW) == 0) {
3384 if (unlink(path) < 0) {
3385 ERROR("unlink failed");
3386 exit(1);
3387 }
3388 }
3389 if (!add)
3390 exit(0);
3391
3392 /* create any missing directories */
3393 directory_path = dirname(strdup(path));
3394 if (mkdir_p(directory_path, 0755) < 0 && errno != EEXIST) {
3395 ERROR("failed to create directory");
3396 exit(1);
3397 }
3398
3399 /* create the device node */
3400 if (mknod(path, st->st_mode, st->st_rdev) < 0) {
3401 ERROR("mknod failed");
3402 exit(1);
3403 }
3404
3405 exit(0);
3406 }
3407
3408 static bool add_remove_device_node(struct lxc_container *c, const char *src_path, const char *dest_path, bool add)
3409 {
3410 int ret;
3411 struct stat st;
3412 char value[MAX_BUFFER];
3413 const char *p;
3414
3415 /* make sure container is running */
3416 if (!c->is_running(c)) {
3417 ERROR("container is not running");
3418 return false;
3419 }
3420
3421 /* use src_path if dest_path is NULL otherwise use dest_path */
3422 p = dest_path ? dest_path : src_path;
3423
3424 /* make sure we can access p */
3425 if(access(p, F_OK) < 0 || stat(p, &st) < 0)
3426 return false;
3427
3428 /* continue if path is character device or block device */
3429 if (S_ISCHR(st.st_mode))
3430 ret = snprintf(value, MAX_BUFFER, "c %d:%d rwm", major(st.st_rdev), minor(st.st_rdev));
3431 else if (S_ISBLK(st.st_mode))
3432 ret = snprintf(value, MAX_BUFFER, "b %d:%d rwm", major(st.st_rdev), minor(st.st_rdev));
3433 else
3434 return false;
3435
3436 /* check snprintf return code */
3437 if (ret < 0 || ret >= MAX_BUFFER)
3438 return false;
3439
3440 if (!do_add_remove_node(c->init_pid(c), p, add, &st))
3441 return false;
3442
3443 /* add or remove device to/from cgroup access list */
3444 if (add) {
3445 if (!c->set_cgroup_item(c, "devices.allow", value)) {
3446 ERROR("set_cgroup_item failed while adding the device node");
3447 return false;
3448 }
3449 } else {
3450 if (!c->set_cgroup_item(c, "devices.deny", value)) {
3451 ERROR("set_cgroup_item failed while removing the device node");
3452 return false;
3453 }
3454 }
3455
3456 return true;
3457 }
3458
3459 static bool lxcapi_add_device_node(struct lxc_container *c, const char *src_path, const char *dest_path)
3460 {
3461 if (am_unpriv()) {
3462 ERROR(NOT_SUPPORTED_ERROR, __FUNCTION__);
3463 return false;
3464 }
3465 return add_remove_device_node(c, src_path, dest_path, true);
3466 }
3467
3468 static bool lxcapi_remove_device_node(struct lxc_container *c, const char *src_path, const char *dest_path)
3469 {
3470 if (am_unpriv()) {
3471 ERROR(NOT_SUPPORTED_ERROR, __FUNCTION__);
3472 return false;
3473 }
3474 return add_remove_device_node(c, src_path, dest_path, false);
3475 }
3476
3477 static int lxcapi_attach_run_waitl(struct lxc_container *c, lxc_attach_options_t *options, const char *program, const char *arg, ...)
3478 {
3479 va_list ap;
3480 const char **argv;
3481 int ret;
3482
3483 if (!c)
3484 return -1;
3485
3486 va_start(ap, arg);
3487 argv = lxc_va_arg_list_to_argv_const(ap, 1);
3488 va_end(ap);
3489
3490 if (!argv) {
3491 ERROR("Memory allocation error.");
3492 return -1;
3493 }
3494 argv[0] = arg;
3495
3496 ret = lxcapi_attach_run_wait(c, options, program, (const char * const *)argv);
3497 free((void*)argv);
3498 return ret;
3499 }
3500
3501 struct lxc_container *lxc_container_new(const char *name, const char *configpath)
3502 {
3503 struct lxc_container *c;
3504
3505 if (!name)
3506 return NULL;
3507
3508 c = malloc(sizeof(*c));
3509 if (!c) {
3510 fprintf(stderr, "failed to malloc lxc_container\n");
3511 return NULL;
3512 }
3513 memset(c, 0, sizeof(*c));
3514
3515 if (configpath)
3516 c->config_path = strdup(configpath);
3517 else
3518 c->config_path = strdup(lxc_global_config_value("lxc.lxcpath"));
3519
3520 if (!c->config_path) {
3521 fprintf(stderr, "Out of memory\n");
3522 goto err;
3523 }
3524
3525 remove_trailing_slashes(c->config_path);
3526 c->name = malloc(strlen(name)+1);
3527 if (!c->name) {
3528 fprintf(stderr, "Error allocating lxc_container name\n");
3529 goto err;
3530 }
3531 strcpy(c->name, name);
3532
3533 c->numthreads = 1;
3534 if (!(c->slock = lxc_newlock(c->config_path, name))) {
3535 fprintf(stderr, "failed to create lock\n");
3536 goto err;
3537 }
3538
3539 if (!(c->privlock = lxc_newlock(NULL, NULL))) {
3540 fprintf(stderr, "failed to alloc privlock\n");
3541 goto err;
3542 }
3543
3544 if (!set_config_filename(c)) {
3545 fprintf(stderr, "Error allocating config file pathname\n");
3546 goto err;
3547 }
3548
3549 if (file_exists(c->configfile) && !lxcapi_load_config(c, NULL))
3550 goto err;
3551
3552 if (ongoing_create(c) == 2) {
3553 ERROR("Error: %s creation was not completed", c->name);
3554 container_destroy(c);
3555 lxcapi_clear_config(c);
3556 }
3557 c->daemonize = true;
3558 c->pidfile = NULL;
3559
3560 // assign the member functions
3561 c->is_defined = lxcapi_is_defined;
3562 c->state = lxcapi_state;
3563 c->is_running = lxcapi_is_running;
3564 c->freeze = lxcapi_freeze;
3565 c->unfreeze = lxcapi_unfreeze;
3566 c->console = lxcapi_console;
3567 c->console_getfd = lxcapi_console_getfd;
3568 c->init_pid = lxcapi_init_pid;
3569 c->load_config = lxcapi_load_config;
3570 c->want_daemonize = lxcapi_want_daemonize;
3571 c->want_close_all_fds = lxcapi_want_close_all_fds;
3572 c->start = lxcapi_start;
3573 c->startl = lxcapi_startl;
3574 c->stop = lxcapi_stop;
3575 c->config_file_name = lxcapi_config_file_name;
3576 c->wait = lxcapi_wait;
3577 c->set_config_item = lxcapi_set_config_item;
3578 c->destroy = lxcapi_destroy;
3579 c->destroy_with_snapshots = lxcapi_destroy_with_snapshots;
3580 c->rename = lxcapi_rename;
3581 c->save_config = lxcapi_save_config;
3582 c->get_keys = lxcapi_get_keys;
3583 c->create = lxcapi_create;
3584 c->createl = lxcapi_createl;
3585 c->shutdown = lxcapi_shutdown;
3586 c->reboot = lxcapi_reboot;
3587 c->clear_config = lxcapi_clear_config;
3588 c->clear_config_item = lxcapi_clear_config_item;
3589 c->get_config_item = lxcapi_get_config_item;
3590 c->get_running_config_item = lxcapi_get_running_config_item;
3591 c->get_cgroup_item = lxcapi_get_cgroup_item;
3592 c->set_cgroup_item = lxcapi_set_cgroup_item;
3593 c->get_config_path = lxcapi_get_config_path;
3594 c->set_config_path = lxcapi_set_config_path;
3595 c->clone = lxcapi_clone;
3596 c->get_interfaces = lxcapi_get_interfaces;
3597 c->get_ips = lxcapi_get_ips;
3598 c->attach = lxcapi_attach;
3599 c->attach_run_wait = lxcapi_attach_run_wait;
3600 c->attach_run_waitl = lxcapi_attach_run_waitl;
3601 c->snapshot = lxcapi_snapshot;
3602 c->snapshot_list = lxcapi_snapshot_list;
3603 c->snapshot_restore = lxcapi_snapshot_restore;
3604 c->snapshot_destroy = lxcapi_snapshot_destroy;
3605 c->snapshot_destroy_all = lxcapi_snapshot_destroy_all;
3606 c->may_control = lxcapi_may_control;
3607 c->add_device_node = lxcapi_add_device_node;
3608 c->remove_device_node = lxcapi_remove_device_node;
3609
3610 /* we'll allow the caller to update these later */
3611 if (lxc_log_init(NULL, "none", NULL, "lxc_container", 0, c->config_path)) {
3612 fprintf(stderr, "failed to open log\n");
3613 goto err;
3614 }
3615
3616 return c;
3617
3618 err:
3619 lxc_container_free(c);
3620 return NULL;
3621 }
3622
3623 int lxc_get_wait_states(const char **states)
3624 {
3625 int i;
3626
3627 if (states)
3628 for (i=0; i<MAX_STATE; i++)
3629 states[i] = lxc_state2str(i);
3630 return MAX_STATE;
3631 }
3632
3633 /*
3634 * These next two could probably be done smarter with reusing a common function
3635 * with different iterators and tests...
3636 */
3637 int list_defined_containers(const char *lxcpath, char ***names, struct lxc_container ***cret)
3638 {
3639 DIR *dir;
3640 int i, cfound = 0, nfound = 0;
3641 struct dirent dirent, *direntp;
3642 struct lxc_container *c;
3643
3644 if (!lxcpath)
3645 lxcpath = lxc_global_config_value("lxc.lxcpath");
3646
3647 dir = opendir(lxcpath);
3648 if (!dir) {
3649 SYSERROR("opendir on lxcpath");
3650 return -1;
3651 }
3652
3653 if (cret)
3654 *cret = NULL;
3655 if (names)
3656 *names = NULL;
3657
3658 while (!readdir_r(dir, &dirent, &direntp)) {
3659 if (!direntp)
3660 break;
3661 if (!strcmp(direntp->d_name, "."))
3662 continue;
3663 if (!strcmp(direntp->d_name, ".."))
3664 continue;
3665
3666 if (!config_file_exists(lxcpath, direntp->d_name))
3667 continue;
3668
3669 if (names) {
3670 if (!add_to_array(names, direntp->d_name, cfound))
3671 goto free_bad;
3672 }
3673 cfound++;
3674
3675 if (!cret) {
3676 nfound++;
3677 continue;
3678 }
3679
3680 c = lxc_container_new(direntp->d_name, lxcpath);
3681 if (!c) {
3682 INFO("Container %s:%s has a config but could not be loaded",
3683 lxcpath, direntp->d_name);
3684 if (names)
3685 if(!remove_from_array(names, direntp->d_name, cfound--))
3686 goto free_bad;
3687 continue;
3688 }
3689 if (!lxcapi_is_defined(c)) {
3690 INFO("Container %s:%s has a config but is not defined",
3691 lxcpath, direntp->d_name);
3692 if (names)
3693 if(!remove_from_array(names, direntp->d_name, cfound--))
3694 goto free_bad;
3695 lxc_container_put(c);
3696 continue;
3697 }
3698
3699 if (!add_to_clist(cret, c, nfound, true)) {
3700 lxc_container_put(c);
3701 goto free_bad;
3702 }
3703 nfound++;
3704 }
3705
3706 closedir(dir);
3707 return nfound;
3708
3709 free_bad:
3710 if (names && *names) {
3711 for (i=0; i<cfound; i++)
3712 free((*names)[i]);
3713 free(*names);
3714 }
3715 if (cret && *cret) {
3716 for (i=0; i<nfound; i++)
3717 lxc_container_put((*cret)[i]);
3718 free(*cret);
3719 }
3720 closedir(dir);
3721 return -1;
3722 }
3723
3724 int list_active_containers(const char *lxcpath, char ***nret,
3725 struct lxc_container ***cret)
3726 {
3727 int i, ret = -1, cret_cnt = 0, ct_name_cnt = 0;
3728 int lxcpath_len;
3729 char *line = NULL;
3730 char **ct_name = NULL;
3731 size_t len = 0;
3732 struct lxc_container *c;
3733
3734 if (!lxcpath)
3735 lxcpath = lxc_global_config_value("lxc.lxcpath");
3736 lxcpath_len = strlen(lxcpath);
3737
3738 if (cret)
3739 *cret = NULL;
3740 if (nret)
3741 *nret = NULL;
3742
3743 FILE *f = fopen("/proc/net/unix", "r");
3744 if (!f)
3745 return -1;
3746
3747 while (getline(&line, &len, f) != -1) {
3748 char *p = strrchr(line, ' '), *p2;
3749 if (!p)
3750 continue;
3751 p++;
3752 if (*p != 0x40)
3753 continue;
3754 p++;
3755 if (strncmp(p, lxcpath, lxcpath_len) != 0)
3756 continue;
3757 p += lxcpath_len;
3758 while (*p == '/')
3759 p++;
3760
3761 // Now p is the start of lxc_name
3762 p2 = index(p, '/');
3763 if (!p2 || strncmp(p2, "/command", 8) != 0)
3764 continue;
3765 *p2 = '\0';
3766
3767 if (array_contains(&ct_name, p, ct_name_cnt))
3768 continue;
3769
3770 if (!add_to_array(&ct_name, p, ct_name_cnt))
3771 goto free_cret_list;
3772
3773 ct_name_cnt++;
3774
3775 if (!cret)
3776 continue;
3777
3778 c = lxc_container_new(p, lxcpath);
3779 if (!c) {
3780 INFO("Container %s:%s is running but could not be loaded",
3781 lxcpath, p);
3782 remove_from_array(&ct_name, p, ct_name_cnt--);
3783 continue;
3784 }
3785
3786 /*
3787 * If this is an anonymous container, then is_defined *can*
3788 * return false. So we don't do that check. Count on the
3789 * fact that the command socket exists.
3790 */
3791
3792 if (!add_to_clist(cret, c, cret_cnt, true)) {
3793 lxc_container_put(c);
3794 goto free_cret_list;
3795 }
3796 cret_cnt++;
3797 }
3798
3799 assert(!nret || !cret || cret_cnt == ct_name_cnt);
3800 ret = ct_name_cnt;
3801 if (nret)
3802 *nret = ct_name;
3803 else
3804 goto free_ct_name;
3805 goto out;
3806
3807 free_cret_list:
3808 if (cret && *cret) {
3809 for (i = 0; i < cret_cnt; i++)
3810 lxc_container_put((*cret)[i]);
3811 free(*cret);
3812 }
3813
3814 free_ct_name:
3815 if (ct_name) {
3816 for (i = 0; i < ct_name_cnt; i++)
3817 free(ct_name[i]);
3818 free(ct_name);
3819 }
3820
3821 out:
3822 if (line)
3823 free(line);
3824
3825 fclose(f);
3826 return ret;
3827 }
3828
3829 int list_all_containers(const char *lxcpath, char ***nret,
3830 struct lxc_container ***cret)
3831 {
3832 int i, ret, active_cnt, ct_cnt, ct_list_cnt;
3833 char **active_name;
3834 char **ct_name;
3835 struct lxc_container **ct_list = NULL;
3836
3837 ct_cnt = list_defined_containers(lxcpath, &ct_name, NULL);
3838 if (ct_cnt < 0)
3839 return ct_cnt;
3840
3841 active_cnt = list_active_containers(lxcpath, &active_name, NULL);
3842 if (active_cnt < 0) {
3843 ret = active_cnt;
3844 goto free_ct_name;
3845 }
3846
3847 for (i = 0; i < active_cnt; i++) {
3848 if (!array_contains(&ct_name, active_name[i], ct_cnt)) {
3849 if (!add_to_array(&ct_name, active_name[i], ct_cnt)) {
3850 ret = -1;
3851 goto free_active_name;
3852 }
3853 ct_cnt++;
3854 }
3855 free(active_name[i]);
3856 active_name[i] = NULL;
3857 }
3858 free(active_name);
3859 active_name = NULL;
3860 active_cnt = 0;
3861
3862 for (i = 0, ct_list_cnt = 0; i < ct_cnt && cret; i++) {
3863 struct lxc_container *c;
3864
3865 c = lxc_container_new(ct_name[i], lxcpath);
3866 if (!c) {
3867 WARN("Container %s:%s could not be loaded", lxcpath, ct_name[i]);
3868 remove_from_array(&ct_name, ct_name[i], ct_cnt--);
3869 continue;
3870 }
3871
3872 if (!add_to_clist(&ct_list, c, ct_list_cnt, false)) {
3873 lxc_container_put(c);
3874 ret = -1;
3875 goto free_ct_list;
3876 }
3877 ct_list_cnt++;
3878 }
3879
3880 if (cret)
3881 *cret = ct_list;
3882
3883 if (nret)
3884 *nret = ct_name;
3885 else {
3886 ret = ct_cnt;
3887 goto free_ct_name;
3888 }
3889 return ct_cnt;
3890
3891 free_ct_list:
3892 for (i = 0; i < ct_list_cnt; i++) {
3893 lxc_container_put(ct_list[i]);
3894 }
3895 if (ct_list)
3896 free(ct_list);
3897
3898 free_active_name:
3899 for (i = 0; i < active_cnt; i++) {
3900 if (active_name[i])
3901 free(active_name[i]);
3902 }
3903 if (active_name)
3904 free(active_name);
3905
3906 free_ct_name:
3907 for (i = 0; i < ct_cnt; i++) {
3908 free(ct_name[i]);
3909 }
3910 free(ct_name);
3911 return ret;
3912 }