]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/lxccontainer.c
lxccontainer: lxcapi_startl()
[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 <dirent.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <grp.h>
26 #include <libgen.h>
27 #include <pthread.h>
28 #include <sched.h>
29 #include <stdarg.h>
30 #include <stdint.h>
31 #include <stdio.h>
32 #include <unistd.h>
33 #include <arpa/inet.h>
34 #include <sys/sysmacros.h>
35 #include <sys/mman.h>
36 #include <sys/mount.h>
37 #include <sys/syscall.h>
38 #include <sys/types.h>
39 #include <sys/wait.h>
40
41 #include "af_unix.h"
42 #include "attach.h"
43 #include "cgroup.h"
44 #include "conf.h"
45 #include "config.h"
46 #include "commands.h"
47 #include "commands_utils.h"
48 #include "confile.h"
49 #include "confile_utils.h"
50 #include "console.h"
51 #include "criu.h"
52 #include "error.h"
53 #include "initutils.h"
54 #include "log.h"
55 #include "lxc.h"
56 #include "lxccontainer.h"
57 #include "lxclock.h"
58 #include "monitor.h"
59 #include "namespace.h"
60 #include "network.h"
61 #include "parse.h"
62 #include "start.h"
63 #include "state.h"
64 #include "storage.h"
65 #include "storage_utils.h"
66 #include "storage/btrfs.h"
67 #include "storage/overlay.h"
68 #include "sync.h"
69 #include "utils.h"
70 #include "version.h"
71
72 /* major()/minor() */
73 #ifdef MAJOR_IN_MKDEV
74 #include <sys/mkdev.h>
75 #endif
76
77 #if HAVE_IFADDRS_H
78 #include <ifaddrs.h>
79 #else
80 #include <../include/ifaddrs.h>
81 #endif
82
83 #if IS_BIONIC
84 #include <../include/lxcmntent.h>
85 #else
86 #include <mntent.h>
87 #endif
88
89 /* Define faccessat() if missing from the C library */
90 #ifndef HAVE_FACCESSAT
91 static int faccessat(int __fd, const char *__file, int __type, int __flag)
92 {
93 #ifdef __NR_faccessat
94 return syscall(__NR_faccessat, __fd, __file, __type, __flag);
95 #else
96 errno = ENOSYS;
97 return -1;
98 #endif
99 }
100 #endif
101
102 lxc_log_define(lxc_container, lxc);
103
104 static bool do_lxcapi_destroy(struct lxc_container *c);
105 static const char *lxcapi_get_config_path(struct lxc_container *c);
106 #define do_lxcapi_get_config_path(c) lxcapi_get_config_path(c)
107 static bool do_lxcapi_set_config_item(struct lxc_container *c, const char *key, const char *v);
108 static bool container_destroy(struct lxc_container *c,
109 struct lxc_storage *storage);
110 static bool get_snappath_dir(struct lxc_container *c, char *snappath);
111 static bool lxcapi_snapshot_destroy_all(struct lxc_container *c);
112 static bool do_lxcapi_save_config(struct lxc_container *c, const char *alt_file);
113
114 static bool config_file_exists(const char *lxcpath, const char *cname)
115 {
116 int ret;
117 size_t len;
118 char *fname;
119
120 /* $lxcpath + '/' + $cname + '/config' + \0 */
121 len = strlen(lxcpath) + strlen(cname) + 9;
122 fname = alloca(len);
123 ret = snprintf(fname, len, "%s/%s/config", lxcpath, cname);
124 if (ret < 0 || (size_t)ret >= len)
125 return false;
126
127 return file_exists(fname);
128 }
129
130 /* A few functions to help detect when a container creation failed. If a
131 * container creation was killed partway through, then trying to actually start
132 * that container could harm the host. We detect this by creating a 'partial'
133 * file under the container directory, and keeping an advisory lock. When
134 * container creation completes, we remove that file. When we load or try to
135 * start a container, if we find that file, without a flock, we remove the
136 * container.
137 */
138 static int ongoing_create(struct lxc_container *c)
139 {
140 int fd, ret;
141 size_t len;
142 char *path;
143 struct flock lk;
144
145 len = strlen(c->config_path) + strlen(c->name) + 10;
146 path = alloca(len);
147 ret = snprintf(path, len, "%s/%s/partial", c->config_path, c->name);
148 if (ret < 0 || (size_t)ret >= len)
149 return -1;
150
151 if (!file_exists(path))
152 return 0;
153
154 fd = open(path, O_RDWR);
155 if (fd < 0)
156 return 0;
157
158 lk.l_type = F_WRLCK;
159 lk.l_whence = SEEK_SET;
160 lk.l_start = 0;
161 lk.l_len = 0;
162 lk.l_pid = -1;
163
164 ret = fcntl(fd, F_GETLK, &lk);
165 close(fd);
166 if (ret == 0 && lk.l_pid != -1) {
167 /* create is still ongoing */
168 return 1;
169 }
170
171 /* Create completed but partial is still there. */
172 return 2;
173 }
174
175 static int create_partial(struct lxc_container *c)
176 {
177 int fd, ret;
178 size_t len;
179 char *path;
180 struct flock lk;
181
182 /* $lxcpath + '/' + $name + '/partial' + \0 */
183 len = strlen(c->config_path) + strlen(c->name) + 10;
184 path = alloca(len);
185 ret = snprintf(path, len, "%s/%s/partial", c->config_path, c->name);
186 if (ret < 0 || (size_t)ret >= len)
187 return -1;
188
189 fd = open(path, O_RDWR | O_CREAT | O_EXCL, 0755);
190 if (fd < 0)
191 return -1;
192
193 lk.l_type = F_WRLCK;
194 lk.l_whence = SEEK_SET;
195 lk.l_start = 0;
196 lk.l_len = 0;
197
198 ret = fcntl(fd, F_SETLKW, &lk);
199 if (ret < 0) {
200 SYSERROR("Failed to lock partial file %s", path);
201 close(fd);
202 return -1;
203 }
204
205 return fd;
206 }
207
208 static void remove_partial(struct lxc_container *c, int fd)
209 {
210 int ret;
211 size_t len;
212 char *path;
213
214 close(fd);
215 /* $lxcpath + '/' + $name + '/partial' + \0 */
216 len = strlen(c->config_path) + strlen(c->name) + 10;
217 path = alloca(len);
218 ret = snprintf(path, len, "%s/%s/partial", c->config_path, c->name);
219 if (ret < 0 || (size_t)ret >= len)
220 return;
221
222 ret = unlink(path);
223 if (ret < 0)
224 SYSERROR("Failed to remove partial file %s", path);
225 }
226
227 /* LOCKING
228 * 1. container_mem_lock(c) protects the struct lxc_container from multiple threads.
229 * 2. container_disk_lock(c) protects the on-disk container data - in particular the
230 * container configuration file.
231 * The container_disk_lock also takes the container_mem_lock.
232 * 3. thread_mutex protects process data (ex: fd table) from multiple threads.
233 * NOTHING mutexes two independent programs with their own struct
234 * lxc_container for the same c->name, between API calls. For instance,
235 * c->config_read(); c->start(); Between those calls, data on disk
236 * could change (which shouldn't bother the caller unless for instance
237 * the rootfs get moved). c->config_read(); update; c->config_write();
238 * Two such updaters could race. The callers should therefore check their
239 * results. Trying to prevent that would necessarily expose us to deadlocks
240 * due to hung callers. So I prefer to keep the locks only within our own
241 * functions, not across functions.
242 *
243 * If you're going to clone while holding a lxccontainer, increment
244 * c->numthreads (under privlock) before forking. When deleting,
245 * decrement numthreads under privlock, then if it hits 0 you can delete.
246 * Do not ever use a lxccontainer whose numthreads you did not bump.
247 */
248
249 static void lxc_container_free(struct lxc_container *c)
250 {
251 if (!c)
252 return;
253
254 free(c->configfile);
255 c->configfile = NULL;
256
257 free(c->error_string);
258 c->error_string = NULL;
259
260 if (c->slock) {
261 lxc_putlock(c->slock);
262 c->slock = NULL;
263 }
264
265 if (c->privlock) {
266 lxc_putlock(c->privlock);
267 c->privlock = NULL;
268 }
269
270 free(c->name);
271 c->name = NULL;
272
273 if (c->lxc_conf) {
274 lxc_conf_free(c->lxc_conf);
275 c->lxc_conf = NULL;
276 }
277
278 free(c->config_path);
279 c->config_path = NULL;
280
281 free(c);
282 }
283
284 /* Consider the following case:
285 *
286 * |====================================================================|
287 * | freer | racing get()er |
288 * |====================================================================|
289 * | lxc_container_put() | lxc_container_get() |
290 * | \ lxclock(c->privlock) | c->numthreads < 1? (no) |
291 * | \ c->numthreads = 0 | \ lxclock(c->privlock) -> waits |
292 * | \ lxcunlock() | \ |
293 * | \ lxc_container_free() | \ lxclock() returns |
294 * | | \ c->numthreads < 1 -> return 0 |
295 * | \ \ (free stuff) | |
296 * | \ \ sem_destroy(privlock) | |
297 * |_______________________________|____________________________________|
298 *
299 * When the get()er checks numthreads the first time, one of the following
300 * is true:
301 * 1. freer has set numthreads = 0. get() returns 0
302 * 2. freer is between lxclock and setting numthreads to 0. get()er will
303 * sem_wait on privlock, get lxclock after freer() drops it, then see
304 * numthreads is 0 and exit without touching lxclock again..
305 * 3. freer has not yet locked privlock. If get()er runs first, then put()er
306 * will see --numthreads = 1 and not call lxc_container_free().
307 */
308
309 int lxc_container_get(struct lxc_container *c)
310 {
311 if (!c)
312 return 0;
313
314 /* If someone else has already started freeing the container, don't try
315 * to take the lock, which may be invalid.
316 */
317 if (c->numthreads < 1)
318 return 0;
319
320 if (container_mem_lock(c))
321 return 0;
322
323 /* Bail without trying to unlock, bc the privlock is now probably in
324 * freed memory.
325 */
326 if (c->numthreads < 1)
327 return 0;
328
329 c->numthreads++;
330 container_mem_unlock(c);
331
332 return 1;
333 }
334
335 int lxc_container_put(struct lxc_container *c)
336 {
337 if (!c)
338 return -1;
339
340 if (container_mem_lock(c))
341 return -1;
342
343 if (--c->numthreads < 1) {
344 container_mem_unlock(c);
345 lxc_container_free(c);
346 return 1;
347 }
348
349 container_mem_unlock(c);
350
351 return 0;
352 }
353
354 static bool do_lxcapi_is_defined(struct lxc_container *c)
355 {
356 int statret;
357 struct stat statbuf;
358 bool ret = false;
359
360 if (!c)
361 return false;
362
363 if (container_mem_lock(c))
364 return false;
365
366 if (!c->configfile)
367 goto on_error;
368
369 statret = stat(c->configfile, &statbuf);
370 if (statret != 0)
371 goto on_error;
372
373 ret = true;
374
375 on_error:
376 container_mem_unlock(c);
377
378 return ret;
379 }
380
381 #define WRAP_API(rettype, fnname) \
382 static rettype fnname(struct lxc_container *c) \
383 { \
384 rettype ret; \
385 bool reset_config = false; \
386 \
387 if (!current_config && c && c->lxc_conf) { \
388 current_config = c->lxc_conf; \
389 reset_config = true; \
390 } \
391 \
392 ret = do_##fnname(c); \
393 if (reset_config) \
394 current_config = NULL; \
395 \
396 return ret; \
397 }
398
399 #define WRAP_API_1(rettype, fnname, t1) \
400 static rettype fnname(struct lxc_container *c, t1 a1) \
401 { \
402 rettype ret; \
403 bool reset_config = false; \
404 \
405 if (!current_config && c && c->lxc_conf) { \
406 current_config = c->lxc_conf; \
407 reset_config = true; \
408 } \
409 \
410 ret = do_##fnname(c, a1); \
411 if (reset_config) \
412 current_config = NULL; \
413 \
414 return ret; \
415 }
416
417 #define WRAP_API_2(rettype, fnname, t1, t2) \
418 static rettype fnname(struct lxc_container *c, t1 a1, t2 a2) \
419 { \
420 rettype ret; \
421 bool reset_config = false; \
422 \
423 if (!current_config && c && c->lxc_conf) { \
424 current_config = c->lxc_conf; \
425 reset_config = true; \
426 } \
427 \
428 ret = do_##fnname(c, a1, a2); \
429 if (reset_config) \
430 current_config = NULL; \
431 \
432 return ret; \
433 }
434
435 #define WRAP_API_3(rettype, fnname, t1, t2, t3) \
436 static rettype fnname(struct lxc_container *c, t1 a1, t2 a2, t3 a3) \
437 { \
438 rettype ret; \
439 bool reset_config = false; \
440 \
441 if (!current_config && c && c->lxc_conf) { \
442 current_config = c->lxc_conf; \
443 reset_config = true; \
444 } \
445 \
446 ret = do_##fnname(c, a1, a2, a3); \
447 if (reset_config) \
448 current_config = NULL; \
449 \
450 return ret; \
451 }
452
453 WRAP_API(bool, lxcapi_is_defined)
454
455 static const char *do_lxcapi_state(struct lxc_container *c)
456 {
457 lxc_state_t s;
458
459 if (!c)
460 return NULL;
461
462 s = lxc_getstate(c->name, c->config_path);
463 return lxc_state2str(s);
464 }
465
466 WRAP_API(const char *, lxcapi_state)
467
468 static bool is_stopped(struct lxc_container *c)
469 {
470 lxc_state_t s;
471
472 s = lxc_getstate(c->name, c->config_path);
473 return (s == STOPPED);
474 }
475
476 static bool do_lxcapi_is_running(struct lxc_container *c)
477 {
478 const char *s;
479
480 if (!c)
481 return false;
482
483 s = do_lxcapi_state(c);
484 if (!s || strcmp(s, "STOPPED") == 0)
485 return false;
486
487 return true;
488 }
489
490 WRAP_API(bool, lxcapi_is_running)
491
492 static bool do_lxcapi_freeze(struct lxc_container *c)
493 {
494 int ret;
495
496 if (!c)
497 return false;
498
499 ret = lxc_freeze(c->name, c->config_path);
500 if (ret)
501 return false;
502
503 return true;
504 }
505
506 WRAP_API(bool, lxcapi_freeze)
507
508 static bool do_lxcapi_unfreeze(struct lxc_container *c)
509 {
510 int ret;
511
512 if (!c)
513 return false;
514
515 ret = lxc_unfreeze(c->name, c->config_path);
516 if (ret)
517 return false;
518
519 return true;
520 }
521
522 WRAP_API(bool, lxcapi_unfreeze)
523
524 static int do_lxcapi_console_getfd(struct lxc_container *c, int *ttynum, int *masterfd)
525 {
526 if (!c)
527 return -1;
528
529 return lxc_console_getfd(c, ttynum, masterfd);
530 }
531
532 WRAP_API_2(int, lxcapi_console_getfd, int *, int *)
533
534 static int lxcapi_console(struct lxc_container *c, int ttynum, int stdinfd,
535 int stdoutfd, int stderrfd, int escape)
536 {
537 int ret;
538
539 if (!c)
540 return -1;
541
542 current_config = c->lxc_conf;
543 ret = lxc_console(c, ttynum, stdinfd, stdoutfd, stderrfd, escape);
544 current_config = NULL;
545
546 return ret;
547 }
548
549 static int do_lxcapi_console_log(struct lxc_container *c, struct lxc_console_log *log)
550 {
551 int ret;
552
553 ret = lxc_cmd_console_log(c->name, do_lxcapi_get_config_path(c), log);
554 if (ret < 0) {
555 if (ret == -ENODATA)
556 NOTICE("The console log is empty");
557 else if (ret == -EFAULT)
558 NOTICE("The container does not keep a console log");
559 else if (ret == -ENOENT)
560 NOTICE("The container does not keep a console log file");
561 else if (ret == -EIO)
562 NOTICE("Failed to write console log to log file");
563 else
564 ERROR("Failed to retrieve console log");
565 }
566
567 return ret;
568 }
569
570 WRAP_API_1(int, lxcapi_console_log, struct lxc_console_log *)
571
572 static pid_t do_lxcapi_init_pid(struct lxc_container *c)
573 {
574 if (!c)
575 return -1;
576
577 return lxc_cmd_get_init_pid(c->name, c->config_path);
578 }
579
580 WRAP_API(pid_t, lxcapi_init_pid)
581
582 static bool load_config_locked(struct lxc_container *c, const char *fname)
583 {
584 if (!c->lxc_conf)
585 c->lxc_conf = lxc_conf_init();
586
587 if (!c->lxc_conf)
588 return false;
589
590 if (lxc_config_read(fname, c->lxc_conf, false) != 0)
591 return false;
592
593 return true;
594 }
595
596 static bool do_lxcapi_load_config(struct lxc_container *c, const char *alt_file)
597 {
598 int lret;
599 const char *fname;
600 bool need_disklock = false, ret = false;
601
602 if (!c)
603 return false;
604
605 fname = c->configfile;
606 if (alt_file)
607 fname = alt_file;
608 if (!fname)
609 return false;
610
611 /* If we're reading something other than the container's config, we only
612 * need to lock the in-memory container. If loading the container's
613 * config file, take the disk lock.
614 */
615 if (strcmp(fname, c->configfile) == 0)
616 need_disklock = true;
617
618 if (need_disklock)
619 lret = container_disk_lock(c);
620 else
621 lret = container_mem_lock(c);
622 if (lret)
623 return false;
624
625 ret = load_config_locked(c, fname);
626
627 if (need_disklock)
628 container_disk_unlock(c);
629 else
630 container_mem_unlock(c);
631
632 return ret;
633 }
634
635 WRAP_API_1(bool, lxcapi_load_config, const char *)
636
637 static bool do_lxcapi_want_daemonize(struct lxc_container *c, bool state)
638 {
639 if (!c || !c->lxc_conf)
640 return false;
641
642 if (container_mem_lock(c))
643 return false;
644
645 c->daemonize = state;
646 container_mem_unlock(c);
647
648 return true;
649 }
650
651 WRAP_API_1(bool, lxcapi_want_daemonize, bool)
652
653 static bool do_lxcapi_want_close_all_fds(struct lxc_container *c, bool state)
654 {
655 if (!c || !c->lxc_conf)
656 return false;
657
658 if (container_mem_lock(c))
659 return false;
660
661 c->lxc_conf->close_all_fds = state;
662 container_mem_unlock(c);
663
664 return true;
665 }
666
667 WRAP_API_1(bool, lxcapi_want_close_all_fds, bool)
668
669 static bool do_lxcapi_wait(struct lxc_container *c, const char *state,
670 int timeout)
671 {
672 int ret;
673
674 if (!c)
675 return false;
676
677 ret = lxc_wait(c->name, state, timeout, c->config_path);
678 return ret == 0;
679 }
680
681 WRAP_API_2(bool, lxcapi_wait, const char *, int)
682
683 static bool am_single_threaded(void)
684 {
685 struct dirent *direntp;
686 DIR *dir;
687 int count = 0;
688
689 dir = opendir("/proc/self/task");
690 if (!dir)
691 return false;
692
693 while ((direntp = readdir(dir))) {
694 if (!strcmp(direntp->d_name, "."))
695 continue;
696
697 if (!strcmp(direntp->d_name, ".."))
698 continue;
699
700 if (++count > 1)
701 break;
702 }
703 closedir(dir);
704
705 return count == 1;
706 }
707
708 static void push_arg(char ***argp, char *arg, int *nargs)
709 {
710 char *copy;
711 char **argv;
712
713 do {
714 copy = strdup(arg);
715 } while (!copy);
716
717 do {
718 argv = realloc(*argp, (*nargs + 2) * sizeof(char *));
719 } while (!argv);
720
721 *argp = argv;
722 argv[*nargs] = copy;
723 (*nargs)++;
724 argv[*nargs] = NULL;
725 }
726
727 static char **split_init_cmd(const char *incmd)
728 {
729 size_t len;
730 char *copy, *p;
731 char **argv;
732 int nargs = 0;
733 char *saveptr = NULL;
734
735 if (!incmd)
736 return NULL;
737
738 len = strlen(incmd) + 1;
739 copy = alloca(len);
740 strncpy(copy, incmd, len);
741 copy[len - 1] = '\0';
742
743 do {
744 argv = malloc(sizeof(char *));
745 } while (!argv);
746
747 argv[0] = NULL;
748 for (; (p = strtok_r(copy, " ", &saveptr)); copy = NULL)
749 push_arg(&argv, p, &nargs);
750
751 if (nargs == 0) {
752 free(argv);
753 return NULL;
754 }
755
756 return argv;
757 }
758
759 static void free_init_cmd(char **argv)
760 {
761 int i = 0;
762
763 if (!argv)
764 return;
765
766 while (argv[i])
767 free(argv[i++]);
768
769 free(argv);
770 }
771
772 static int lxc_rcv_status(int state_socket)
773 {
774 int ret;
775 int state = -1;
776
777 again:
778 /* Receive container state. */
779 ret = lxc_abstract_unix_rcv_credential(state_socket, &state,
780 sizeof(int));
781 if (ret <= 0) {
782 if (errno != EINTR)
783 return -1;
784 TRACE("Caught EINTR; retrying");
785 goto again;
786 }
787
788 return state;
789 }
790
791 static bool wait_on_daemonized_start(struct lxc_handler *handler, int pid)
792 {
793 int ret, state;
794
795 /* Close write end of the socket pair. */
796 close(handler->state_socket_pair[1]);
797 handler->state_socket_pair[1] = -1;
798
799 state = lxc_rcv_status(handler->state_socket_pair[0]);
800
801 /* Close read end of the socket pair. */
802 close(handler->state_socket_pair[0]);
803 handler->state_socket_pair[0] = -1;
804
805 /* The first child is going to fork() again and then exits. So we reap
806 * the first child here.
807 */
808 ret = wait_for_pid(pid);
809 if (ret < 0)
810 DEBUG("Failed waiting on first child %d", pid);
811 else
812 DEBUG("First child %d exited", pid);
813
814 if (state < 0) {
815 SYSERROR("Failed to receive the container state");
816 return false;
817 }
818
819 /* If we receive anything else then running we know that the container
820 * failed to start.
821 */
822 if (state != RUNNING) {
823 ERROR("Received container state \"%s\" instead of \"RUNNING\"",
824 lxc_state2str(state));
825 return false;
826 }
827
828 TRACE("Container is in \"RUNNING\" state");
829 return true;
830 }
831
832 static bool do_lxcapi_start(struct lxc_container *c, int useinit, char * const argv[])
833 {
834 int ret;
835 struct lxc_handler *handler;
836 struct lxc_conf *conf;
837 bool daemonize = false;
838 FILE *pid_fp = NULL;
839 char *default_args[] = {
840 "/sbin/init",
841 NULL,
842 };
843 char **init_cmd = NULL;
844 int keepfds[3] = {-1, -1, -1};
845
846 /* container does exist */
847 if (!c)
848 return false;
849
850 /* If anything fails before we set error_num, we want an error in there.
851 */
852 c->error_num = 1;
853
854 /* Container has not been setup. */
855 if (!c->lxc_conf)
856 return false;
857
858 ret = ongoing_create(c);
859 if (ret < 0) {
860 ERROR("Failed checking for incomplete container creation");
861 return false;
862 } else if (ret == 1) {
863 ERROR("Ongoing container creation detected");
864 return false;
865 } else if (ret == 2) {
866 ERROR("Failed to create container");
867 do_lxcapi_destroy(c);
868 return false;
869 }
870
871 if (container_mem_lock(c))
872 return false;
873 conf = c->lxc_conf;
874 daemonize = c->daemonize;
875
876 /* initialize handler */
877 handler = lxc_init_handler(c->name, conf, c->config_path, daemonize);
878 container_mem_unlock(c);
879 if (!handler)
880 return false;
881
882 if (!argv) {
883 if (useinit && conf->execute_cmd)
884 argv = init_cmd = split_init_cmd(conf->execute_cmd);
885 else
886 argv = init_cmd = split_init_cmd(conf->init_cmd);
887 }
888
889 /* ... otherwise use default_args. */
890 if (!argv) {
891 if (useinit) {
892 ERROR("No valid init detected");
893 lxc_free_handler(handler);
894 return false;
895 }
896 argv = default_args;
897 }
898
899 /* I'm not sure what locks we want here.Any? Is liblxc's locking enough
900 * here to protect the on disk container? We don't want to exclude
901 * things like lxc_info while the container is running.
902 */
903 if (daemonize) {
904 bool started;
905 char title[2048];
906 pid_t pid;
907
908 pid = fork();
909 if (pid < 0) {
910 free_init_cmd(init_cmd);
911 lxc_free_handler(handler);
912 return false;
913 }
914
915 /* first parent */
916 if (pid != 0) {
917 /* Set to NULL because we don't want father unlink
918 * the PID file, child will do the free and unlink.
919 */
920 c->pidfile = NULL;
921
922 /* Wait for container to tell us whether it started
923 * successfully.
924 */
925 started = wait_on_daemonized_start(handler, pid);
926
927 free_init_cmd(init_cmd);
928 lxc_free_handler(handler);
929 return started;
930 }
931
932 /* first child */
933
934 /* We don't really care if this doesn't print all the
935 * characters. All that it means is that the proctitle will be
936 * ugly. Similarly, we also don't care if setproctitle() fails.
937 * */
938 snprintf(title, sizeof(title), "[lxc monitor] %s %s", c->config_path, c->name);
939 INFO("Attempting to set proc title to %s", title);
940 setproctitle(title);
941
942 /* We fork() a second time to be reparented to init. Like
943 * POSIX's daemon() function we change to "/" and redirect
944 * std{in,out,err} to /dev/null.
945 */
946 pid = fork();
947 if (pid < 0) {
948 SYSERROR("Failed to fork first child process");
949 _exit(EXIT_FAILURE);
950 }
951
952 /* second parent */
953 if (pid != 0) {
954 free_init_cmd(init_cmd);
955 lxc_free_handler(handler);
956 _exit(EXIT_SUCCESS);
957 }
958
959 /* second child */
960
961 /* change to / directory */
962 ret = chdir("/");
963 if (ret < 0) {
964 SYSERROR("Failed to change to \"/\" directory");
965 _exit(EXIT_FAILURE);
966 }
967
968 keepfds[0] = handler->conf->maincmd_fd;
969 keepfds[1] = handler->state_socket_pair[0];
970 keepfds[2] = handler->state_socket_pair[1];
971 ret = lxc_check_inherited(conf, true, keepfds,
972 sizeof(keepfds) / sizeof(keepfds[0]));
973 if (ret < 0)
974 _exit(EXIT_FAILURE);
975
976 /* redirect std{in,out,err} to /dev/null */
977 ret = null_stdfds();
978 if (ret < 0) {
979 ERROR("Failed to redirect std{in,out,err} to /dev/null");
980 _exit(EXIT_FAILURE);
981 }
982
983 /* become session leader */
984 ret = setsid();
985 if (ret < 0)
986 TRACE("Process %d is already process group leader", lxc_raw_getpid());
987 } else {
988 if (!am_single_threaded()) {
989 ERROR("Cannot start non-daemonized container when threaded");
990 free_init_cmd(init_cmd);
991 lxc_free_handler(handler);
992 return false;
993 }
994 }
995
996 /* We need to write PID file after daemonize, so we always
997 * write the right PID.
998 */
999 if (c->pidfile) {
1000 pid_fp = fopen(c->pidfile, "w");
1001 if (pid_fp == NULL) {
1002 SYSERROR("Failed to create pidfile '%s' for '%s'",
1003 c->pidfile, c->name);
1004 free_init_cmd(init_cmd);
1005 lxc_free_handler(handler);
1006 if (daemonize)
1007 _exit(EXIT_FAILURE);
1008 return false;
1009 }
1010
1011 if (fprintf(pid_fp, "%d\n", lxc_raw_getpid()) < 0) {
1012 SYSERROR("Failed to write '%s'", c->pidfile);
1013 fclose(pid_fp);
1014 pid_fp = NULL;
1015 free_init_cmd(init_cmd);
1016 lxc_free_handler(handler);
1017 if (daemonize)
1018 _exit(EXIT_FAILURE);
1019 return false;
1020 }
1021
1022 fclose(pid_fp);
1023 pid_fp = NULL;
1024 }
1025
1026 conf->reboot = 0;
1027
1028 /* Unshare the mount namespace if requested */
1029 if (conf->monitor_unshare) {
1030 ret = unshare(CLONE_NEWNS);
1031 if (ret < 0) {
1032 SYSERROR("failed to unshare mount namespace");
1033 lxc_free_handler(handler);
1034 ret = 1;
1035 goto on_error;
1036 }
1037
1038 ret = mount(NULL, "/", NULL, MS_SLAVE|MS_REC, NULL);
1039 if (ret < 0) {
1040 SYSERROR("Failed to make / rslave at startup");
1041 lxc_free_handler(handler);
1042 ret = 1;
1043 goto on_error;
1044 }
1045 }
1046
1047 reboot:
1048 if (conf->reboot == 2) {
1049 /* initialize handler */
1050 handler = lxc_init_handler(c->name, conf, c->config_path, daemonize);
1051 if (!handler) {
1052 ret = 1;
1053 goto on_error;
1054 }
1055 }
1056
1057 keepfds[0] = handler->conf->maincmd_fd;
1058 keepfds[1] = handler->state_socket_pair[0];
1059 keepfds[2] = handler->state_socket_pair[1];
1060 ret = lxc_check_inherited(conf, daemonize, keepfds,
1061 sizeof(keepfds) / sizeof(keepfds[0]));
1062 if (ret < 0) {
1063 lxc_free_handler(handler);
1064 ret = 1;
1065 goto on_error;
1066 }
1067
1068 if (useinit)
1069 ret = lxc_execute(c->name, argv, 1, handler, c->config_path, daemonize);
1070 else
1071 ret = lxc_start(c->name, argv, handler, c->config_path, daemonize);
1072 c->error_num = handler->exit_status;
1073
1074 if (conf->reboot == 1) {
1075 INFO("Container requested reboot");
1076 conf->reboot = 2;
1077 goto reboot;
1078 }
1079
1080 on_error:
1081 if (c->pidfile) {
1082 unlink(c->pidfile);
1083 free(c->pidfile);
1084 c->pidfile = NULL;
1085 }
1086 free_init_cmd(init_cmd);
1087
1088 if (daemonize && ret != 0)
1089 _exit(EXIT_FAILURE);
1090 else if (daemonize)
1091 _exit(EXIT_SUCCESS);
1092
1093 if (ret != 0)
1094 return false;
1095
1096 return true;
1097 }
1098
1099 static bool lxcapi_start(struct lxc_container *c, int useinit,
1100 char *const argv[])
1101 {
1102 bool ret;
1103
1104 current_config = c ? c->lxc_conf : NULL;
1105 ret = do_lxcapi_start(c, useinit, argv);
1106 current_config = NULL;
1107
1108 return ret;
1109 }
1110
1111 /* Note, there MUST be an ending NULL. */
1112 static bool lxcapi_startl(struct lxc_container *c, int useinit, ...)
1113 {
1114 va_list ap;
1115 char **inargs = NULL;
1116 bool bret = false;
1117
1118 /* container exists */
1119 if (!c)
1120 return false;
1121
1122 current_config = c->lxc_conf;
1123
1124 va_start(ap, useinit);
1125 inargs = lxc_va_arg_list_to_argv(ap, 0, 1);
1126 va_end(ap);
1127 if (!inargs)
1128 goto on_error;
1129
1130 /* pass NULL if no arguments were supplied */
1131 bret = do_lxcapi_start(c, useinit, *inargs ? inargs : NULL);
1132
1133 on_error:
1134 if (inargs) {
1135 char **arg;
1136 for (arg = inargs; *arg; arg++)
1137 free(*arg);
1138 free(inargs);
1139 }
1140
1141 current_config = NULL;
1142
1143 return bret;
1144 }
1145
1146 static bool do_lxcapi_stop(struct lxc_container *c)
1147 {
1148 int ret;
1149
1150 if (!c)
1151 return false;
1152
1153 ret = lxc_cmd_stop(c->name, c->config_path);
1154
1155 return ret == 0;
1156 }
1157
1158 WRAP_API(bool, lxcapi_stop)
1159
1160 static int do_create_container_dir(const char *path, struct lxc_conf *conf)
1161 {
1162 int ret = -1, lasterr;
1163 char *p = alloca(strlen(path)+1);
1164 mode_t mask = umask(0002);
1165 ret = mkdir(path, 0770);
1166 lasterr = errno;
1167 umask(mask);
1168 errno = lasterr;
1169 if (ret) {
1170 if (errno == EEXIST)
1171 ret = 0;
1172 else {
1173 SYSERROR("failed to create container path %s", path);
1174 return -1;
1175 }
1176 }
1177 strcpy(p, path);
1178 if (!lxc_list_empty(&conf->id_map) && chown_mapped_root(p, conf) != 0) {
1179 ERROR("Failed to chown container dir");
1180 ret = -1;
1181 }
1182 return ret;
1183 }
1184
1185 /*
1186 * create the standard expected container dir
1187 */
1188 static bool create_container_dir(struct lxc_container *c)
1189 {
1190 char *s;
1191 int len, ret;
1192
1193 len = strlen(c->config_path) + strlen(c->name) + 2;
1194 s = malloc(len);
1195 if (!s)
1196 return false;
1197 ret = snprintf(s, len, "%s/%s", c->config_path, c->name);
1198 if (ret < 0 || ret >= len) {
1199 free(s);
1200 return false;
1201 }
1202 ret = do_create_container_dir(s, c->lxc_conf);
1203 free(s);
1204 return ret == 0;
1205 }
1206
1207 /* do_storage_create: thin wrapper around storage_create(). Like
1208 * storage_create(), it returns a mounted bdev on success, NULL on error.
1209 */
1210 static struct lxc_storage *do_storage_create(struct lxc_container *c,
1211 const char *type,
1212 struct bdev_specs *specs)
1213 {
1214 int ret;
1215 size_t len;
1216 char *dest;
1217 struct lxc_storage *bdev;
1218
1219 /* rootfs.path or lxcpath/lxcname/rootfs */
1220 if (c->lxc_conf->rootfs.path &&
1221 (access(c->lxc_conf->rootfs.path, F_OK) == 0)) {
1222 const char *rpath = c->lxc_conf->rootfs.path;
1223 len = strlen(rpath) + 1;
1224 dest = alloca(len);
1225 ret = snprintf(dest, len, "%s", rpath);
1226 } else {
1227 const char *lxcpath = do_lxcapi_get_config_path(c);
1228 len = strlen(c->name) + strlen(lxcpath) + 9;
1229 dest = alloca(len);
1230 ret = snprintf(dest, len, "%s/%s/rootfs", lxcpath, c->name);
1231 }
1232 if (ret < 0 || (size_t)ret >= len)
1233 return NULL;
1234
1235 bdev = storage_create(dest, type, c->name, specs);
1236 if (!bdev) {
1237 ERROR("Failed to create \"%s\" storage", type);
1238 return NULL;
1239 }
1240
1241 if (!c->set_config_item(c, "lxc.rootfs.path", bdev->src)) {
1242 ERROR("Failed to set \"lxc.rootfs.path = %s\"", bdev->src);
1243 return NULL;
1244 }
1245
1246 /* If we are not root, chown the rootfs dir to root in the target user
1247 * namespace.
1248 */
1249 ret = geteuid();
1250 if (ret != 0 || (c->lxc_conf && !lxc_list_empty(&c->lxc_conf->id_map))) {
1251 ret = chown_mapped_root(bdev->dest, c->lxc_conf);
1252 if (ret < 0) {
1253 ERROR("Error chowning \"%s\" to container root", bdev->dest);
1254 suggest_default_idmap();
1255 storage_put(bdev);
1256 return NULL;
1257 }
1258 }
1259
1260 return bdev;
1261 }
1262
1263 static char *lxcbasename(char *path)
1264 {
1265 char *p;
1266
1267 p = path + strlen(path) - 1;
1268 while (*p != '/' && p > path)
1269 p--;
1270
1271 return p;
1272 }
1273
1274 static bool create_run_template(struct lxc_container *c, char *tpath,
1275 bool need_null_stdfds, char *const argv[])
1276 {
1277 int ret;
1278 pid_t pid;
1279
1280 if (!tpath)
1281 return true;
1282
1283 pid = fork();
1284 if (pid < 0) {
1285 SYSERROR("Failed to fork task for container creation template");
1286 return false;
1287 }
1288
1289 if (pid == 0) { /* child */
1290 int i, len;
1291 char *namearg, *patharg, *rootfsarg;
1292 char **newargv;
1293 int nargs = 0;
1294 struct lxc_storage *bdev = NULL;
1295 struct lxc_conf *conf = c->lxc_conf;
1296 uid_t euid;
1297
1298 if (need_null_stdfds) {
1299 ret = null_stdfds();
1300 if (ret < 0)
1301 _exit(EXIT_FAILURE);
1302 }
1303
1304 bdev = storage_init(c->lxc_conf);
1305 if (!bdev) {
1306 ERROR("Failed to initialize storage");
1307 _exit(EXIT_FAILURE);
1308 }
1309
1310 euid = geteuid();
1311 if (euid == 0) {
1312 ret = unshare(CLONE_NEWNS);
1313 if (ret < 0) {
1314 ERROR("Failed to unshare CLONE_NEWNS");
1315 _exit(EXIT_FAILURE);
1316 }
1317
1318 ret = detect_shared_rootfs();
1319 if (ret == 1) {
1320 ret = mount(NULL, "/", NULL, MS_SLAVE | MS_REC, NULL);
1321 if (ret < 0) {
1322 SYSERROR("Failed to make \"/\" rslave");
1323 ERROR("Continuing...");
1324 }
1325 }
1326 }
1327
1328 if (strcmp(bdev->type, "dir") != 0 && strcmp(bdev->type, "btrfs") != 0) {
1329 if (euid != 0) {
1330 ERROR("Unprivileged users can only create "
1331 "btrfs and directory-backed containers");
1332 _exit(EXIT_FAILURE);
1333 }
1334
1335 if (strcmp(bdev->type, "overlay") == 0 ||
1336 strcmp(bdev->type, "overlayfs") == 0) {
1337 /* If we create an overlay container we need to
1338 * rsync the contents into
1339 * <container-path>/<container-name>/rootfs.
1340 * However, the overlay mount function will
1341 * mount will mount
1342 * <container-path>/<container-name>/delta0
1343 * over
1344 * <container-path>/<container-name>/rootfs
1345 * which means we would rsync the rootfs into
1346 * the delta directory. That doesn't make sense
1347 * since the delta directory only exists to
1348 * record the differences to
1349 * <container-path>/<container-name>/rootfs. So
1350 * let's simply bind-mount here and then rsync
1351 * directly into
1352 * <container-path>/<container-name>/rootfs.
1353 */
1354 char *src;
1355
1356 src = ovl_get_rootfs(bdev->src, &(size_t){0});
1357 if (!src) {
1358 ERROR("Failed to get rootfs");
1359 _exit(EXIT_FAILURE);
1360 }
1361
1362 ret = mount(src, bdev->dest, "bind", MS_BIND | MS_REC, NULL);
1363 if (ret < 0) {
1364 ERROR("Failed to mount rootfs");
1365 return -1;
1366 }
1367 } else {
1368 ret = bdev->ops->mount(bdev);
1369 if (ret < 0) {
1370 ERROR("Failed to mount rootfs");
1371 _exit(EXIT_FAILURE);
1372 }
1373 }
1374 } else { /* TODO come up with a better way here! */
1375 const char *src;
1376 free(bdev->dest);
1377 src = lxc_storage_get_path(bdev->src, bdev->type);
1378 bdev->dest = strdup(src);
1379 }
1380
1381 /* Create our new array, pre-pend the template name and base
1382 * args.
1383 */
1384 if (argv)
1385 for (nargs = 0; argv[nargs]; nargs++) {
1386 ;
1387 }
1388 /* template, path, rootfs and name args */
1389 nargs += 4;
1390
1391 newargv = malloc(nargs * sizeof(*newargv));
1392 if (!newargv)
1393 _exit(EXIT_FAILURE);
1394 newargv[0] = lxcbasename(tpath);
1395
1396 /* --path */
1397 len = strlen(c->config_path) + strlen(c->name) + strlen("--path=") + 2;
1398 patharg = malloc(len);
1399 if (!patharg)
1400 _exit(EXIT_FAILURE);
1401 ret = snprintf(patharg, len, "--path=%s/%s", c->config_path, c->name);
1402 if (ret < 0 || ret >= len)
1403 _exit(EXIT_FAILURE);
1404 newargv[1] = patharg;
1405
1406 /* --name */
1407 len = strlen("--name=") + strlen(c->name) + 1;
1408 namearg = malloc(len);
1409 if (!namearg)
1410 _exit(EXIT_FAILURE);
1411 ret = snprintf(namearg, len, "--name=%s", c->name);
1412 if (ret < 0 || ret >= len)
1413 _exit(EXIT_FAILURE);
1414 newargv[2] = namearg;
1415
1416 /* --rootfs */
1417 len = strlen("--rootfs=") + 1 + strlen(bdev->dest);
1418 rootfsarg = malloc(len);
1419 if (!rootfsarg)
1420 _exit(EXIT_FAILURE);
1421 ret = snprintf(rootfsarg, len, "--rootfs=%s", bdev->dest);
1422 if (ret < 0 || ret >= len)
1423 _exit(EXIT_FAILURE);
1424 newargv[3] = rootfsarg;
1425
1426 /* add passed-in args */
1427 if (argv)
1428 for (i = 4; i < nargs; i++)
1429 newargv[i] = argv[i - 4];
1430
1431 /* add trailing NULL */
1432 nargs++;
1433 newargv = realloc(newargv, nargs * sizeof(*newargv));
1434 if (!newargv)
1435 _exit(EXIT_FAILURE);
1436 newargv[nargs - 1] = NULL;
1437
1438 /* If we're running the template in a mapped userns, then we
1439 * prepend the template command with: lxc-usernsexec <-m map1>
1440 * ... <-m mapn> -- and we append "--mapped-uid x", where x is
1441 * the mapped uid for our geteuid()
1442 */
1443 if (!lxc_list_empty(&conf->id_map)) {
1444 int extraargs, hostuid_mapped, hostgid_mapped;
1445 char **n2;
1446 char txtuid[20], txtgid[20];
1447 struct lxc_list *it;
1448 struct id_map *map;
1449 int n2args = 1;
1450
1451 n2 = malloc(n2args * sizeof(*n2));
1452 if (!n2)
1453 _exit(EXIT_FAILURE);
1454
1455 newargv[0] = tpath;
1456 tpath = "lxc-usernsexec";
1457 n2[0] = "lxc-usernsexec";
1458 lxc_list_for_each(it, &conf->id_map) {
1459 map = it->elem;
1460 n2args += 2;
1461 n2 = realloc(n2, n2args * sizeof(char *));
1462 if (!n2)
1463 _exit(EXIT_FAILURE);
1464
1465 n2[n2args - 2] = "-m";
1466 n2[n2args - 1] = malloc(200);
1467 if (!n2[n2args - 1])
1468 _exit(EXIT_FAILURE);
1469
1470 ret = snprintf(n2[n2args - 1], 200, "%c:%lu:%lu:%lu",
1471 map->idtype == ID_TYPE_UID ? 'u' : 'g',
1472 map->nsid, map->hostid, map->range);
1473 if (ret < 0 || ret >= 200)
1474 _exit(EXIT_FAILURE);
1475 }
1476
1477 hostuid_mapped = mapped_hostid(geteuid(), conf, ID_TYPE_UID);
1478 extraargs = hostuid_mapped >= 0 ? 1 : 3;
1479 n2 = realloc(n2, (nargs + n2args + extraargs) * sizeof(char *));
1480 if (!n2)
1481 _exit(EXIT_FAILURE);
1482
1483 if (hostuid_mapped < 0) {
1484 hostuid_mapped = find_unmapped_nsid(conf, ID_TYPE_UID);
1485 n2[n2args++] = "-m";
1486 if (hostuid_mapped < 0) {
1487 ERROR("Failed to find free uid to map");
1488 _exit(EXIT_FAILURE);
1489 }
1490
1491 n2[n2args++] = malloc(200);
1492 if (!n2[n2args - 1]) {
1493 SYSERROR("out of memory");
1494 _exit(EXIT_FAILURE);
1495 }
1496 ret = snprintf(n2[n2args - 1], 200, "u:%d:%d:1",
1497 hostuid_mapped, geteuid());
1498 if (ret < 0 || ret >= 200)
1499 _exit(EXIT_FAILURE);
1500 }
1501
1502 hostgid_mapped = mapped_hostid(getegid(), conf, ID_TYPE_GID);
1503 extraargs = hostgid_mapped >= 0 ? 1 : 3;
1504 n2 = realloc(n2, (nargs + n2args + extraargs) * sizeof(char *));
1505 if (!n2)
1506 _exit(EXIT_FAILURE);
1507
1508 if (hostgid_mapped < 0) {
1509 hostgid_mapped = find_unmapped_nsid(conf, ID_TYPE_GID);
1510 n2[n2args++] = "-m";
1511 if (hostgid_mapped < 0) {
1512 ERROR("Failed to find free gid to map");
1513 _exit(EXIT_FAILURE);
1514 }
1515
1516 n2[n2args++] = malloc(200);
1517 if (!n2[n2args - 1]) {
1518 SYSERROR("out of memory");
1519 _exit(EXIT_FAILURE);
1520 }
1521
1522 ret = snprintf(n2[n2args - 1], 200, "g:%d:%d:1",
1523 hostgid_mapped, getegid());
1524 if (ret < 0 || ret >= 200)
1525 _exit(EXIT_FAILURE);
1526 }
1527 n2[n2args++] = "--";
1528 for (i = 0; i < nargs; i++)
1529 n2[i + n2args] = newargv[i];
1530 n2args += nargs;
1531
1532 /* Finally add "--mapped-uid $uid" to tell template what
1533 * to chown cached images to.
1534 */
1535 n2args += 4;
1536 n2 = realloc(n2, n2args * sizeof(char *));
1537 if (!n2)
1538 _exit(EXIT_FAILURE);
1539
1540 /* note n2[n2args-1] is NULL */
1541 n2[n2args - 5] = "--mapped-uid";
1542 snprintf(txtuid, 20, "%d", hostuid_mapped);
1543 n2[n2args - 4] = txtuid;
1544 n2[n2args - 3] = "--mapped-gid";
1545 snprintf(txtgid, 20, "%d", hostgid_mapped);
1546 n2[n2args - 2] = txtgid;
1547 n2[n2args - 1] = NULL;
1548 free(newargv);
1549 newargv = n2;
1550 }
1551
1552 execvp(tpath, newargv);
1553 SYSERROR("Failed to execute template %s", tpath);
1554 _exit(EXIT_FAILURE);
1555 }
1556
1557 ret = wait_for_pid(pid);
1558 if (ret != 0) {
1559 ERROR("Failed to create container from template");
1560 return false;
1561 }
1562
1563 return true;
1564 }
1565
1566 static bool prepend_lxc_header(char *path, const char *t, char *const argv[])
1567 {
1568 long flen;
1569 char *contents;
1570 FILE *f;
1571 int ret = -1;
1572 #if HAVE_LIBGNUTLS
1573 int i;
1574 unsigned char md_value[SHA_DIGEST_LENGTH];
1575 char *tpath;
1576 #endif
1577
1578 f = fopen(path, "r");
1579 if (f == NULL)
1580 return false;
1581
1582 if (fseek(f, 0, SEEK_END) < 0)
1583 goto out_error;
1584 if ((flen = ftell(f)) < 0)
1585 goto out_error;
1586 if (fseek(f, 0, SEEK_SET) < 0)
1587 goto out_error;
1588 if ((contents = malloc(flen + 1)) == NULL)
1589 goto out_error;
1590 if (fread(contents, 1, flen, f) != flen)
1591 goto out_free_contents;
1592
1593 contents[flen] = '\0';
1594 ret = fclose(f);
1595 f = NULL;
1596 if (ret < 0)
1597 goto out_free_contents;
1598
1599 #if HAVE_LIBGNUTLS
1600 tpath = get_template_path(t);
1601 if (!tpath) {
1602 ERROR("bad template: %s", t);
1603 goto out_free_contents;
1604 }
1605
1606 ret = sha1sum_file(tpath, md_value);
1607 if (ret < 0) {
1608 ERROR("Error getting sha1sum of %s", tpath);
1609 free(tpath);
1610 goto out_free_contents;
1611 }
1612 free(tpath);
1613 #endif
1614
1615 f = fopen(path, "w");
1616 if (f == NULL) {
1617 SYSERROR("reopening config for writing");
1618 free(contents);
1619 return false;
1620 }
1621 fprintf(f, "# Template used to create this container: %s\n", t);
1622 if (argv) {
1623 fprintf(f, "# Parameters passed to the template:");
1624 while (*argv) {
1625 fprintf(f, " %s", *argv);
1626 argv++;
1627 }
1628 fprintf(f, "\n");
1629 }
1630 #if HAVE_LIBGNUTLS
1631 fprintf(f, "# Template script checksum (SHA-1): ");
1632 for (i=0; i<SHA_DIGEST_LENGTH; i++)
1633 fprintf(f, "%02x", md_value[i]);
1634 fprintf(f, "\n");
1635 #endif
1636 fprintf(f, "# For additional config options, please look at lxc.container.conf(5)\n");
1637 fprintf(f, "\n# Uncomment the following line to support nesting containers:\n");
1638 fprintf(f, "#lxc.include = " LXCTEMPLATECONFIG "/nesting.conf\n");
1639 fprintf(f, "# (Be aware this has security implications)\n\n");
1640 if (fwrite(contents, 1, flen, f) != flen) {
1641 SYSERROR("Writing original contents");
1642 free(contents);
1643 fclose(f);
1644 return false;
1645 }
1646 ret = 0;
1647 out_free_contents:
1648 free(contents);
1649 out_error:
1650 if (f) {
1651 int newret;
1652 newret = fclose(f);
1653 if (ret == 0)
1654 ret = newret;
1655 }
1656 if (ret < 0) {
1657 SYSERROR("Error prepending header");
1658 return false;
1659 }
1660 return true;
1661 }
1662
1663 static void lxcapi_clear_config(struct lxc_container *c)
1664 {
1665 if (c) {
1666 if (c->lxc_conf) {
1667 lxc_conf_free(c->lxc_conf);
1668 c->lxc_conf = NULL;
1669 }
1670 }
1671 }
1672
1673 #define do_lxcapi_clear_config(c) lxcapi_clear_config(c)
1674
1675 /*
1676 * lxcapi_create:
1677 * create a container with the given parameters.
1678 * @c: container to be created. It has the lxcpath, name, and a starting
1679 * configuration already set
1680 * @t: the template to execute to instantiate the root filesystem and
1681 * adjust the configuration.
1682 * @bdevtype: backing store type to use. If NULL, dir will be used.
1683 * @specs: additional parameters for the backing store, i.e. LVM vg to
1684 * use.
1685 *
1686 * @argv: the arguments to pass to the template, terminated by NULL. If no
1687 * arguments, you can just pass NULL.
1688 */
1689 static bool do_lxcapi_create(struct lxc_container *c, const char *t,
1690 const char *bdevtype, struct bdev_specs *specs,
1691 int flags, char *const argv[])
1692 {
1693 int partial_fd;
1694 pid_t pid;
1695 bool ret = false;
1696 char *tpath = NULL;
1697
1698 if (!c)
1699 return false;
1700
1701 if (t) {
1702 tpath = get_template_path(t);
1703 if (!tpath) {
1704 ERROR("Unknown template \"%s\"", t);
1705 goto out;
1706 }
1707 }
1708
1709 /* If a template is passed in, and the rootfs already is defined in the
1710 * container config and exists, then the caller is trying to create an
1711 * existing container. Return an error, but do NOT delete the container.
1712 */
1713 if (do_lxcapi_is_defined(c) && c->lxc_conf && c->lxc_conf->rootfs.path &&
1714 access(c->lxc_conf->rootfs.path, F_OK) == 0 && tpath) {
1715 ERROR("Container \"%s\" already exists in \"%s\"", c->name,
1716 c->config_path);
1717 goto free_tpath;
1718 }
1719
1720 if (!c->lxc_conf) {
1721 if (!do_lxcapi_load_config(c, lxc_global_config_value("lxc.default_config"))) {
1722 ERROR("Error loading default configuration file %s",
1723 lxc_global_config_value("lxc.default_config"));
1724 goto free_tpath;
1725 }
1726 }
1727
1728 if (!create_container_dir(c))
1729 goto free_tpath;
1730
1731 /* If both template and rootfs.path are set, template is setup as
1732 * rootfs.path. The container is already created if we have a config and
1733 * rootfs.path is accessible
1734 */
1735 if (!c->lxc_conf->rootfs.path && !tpath) {
1736 /* No template passed in and rootfs does not exist. */
1737 if (!c->save_config(c, NULL)) {
1738 ERROR("Failed to save initial config for \"%s\"", c->name);
1739 goto out;
1740 }
1741 ret = true;
1742 goto out;
1743 }
1744
1745 /* Rootfs passed into configuration, but does not exist. */
1746 if (c->lxc_conf->rootfs.path && access(c->lxc_conf->rootfs.path, F_OK) != 0)
1747 goto out;
1748
1749 if (do_lxcapi_is_defined(c) && c->lxc_conf->rootfs.path && !tpath) {
1750 /* Rootfs already existed, user just wanted to save the loaded
1751 * configuration.
1752 */
1753 if (!c->save_config(c, NULL))
1754 ERROR("Failed to save initial config for \"%s\"", c->name);
1755 ret = true;
1756 goto out;
1757 }
1758
1759 /* Mark that this container is being created */
1760 partial_fd = create_partial(c);
1761 if (partial_fd < 0)
1762 goto out;
1763
1764 /* No need to get disk lock bc we have the partial lock. */
1765
1766 /* Create the storage.
1767 * Note we can't do this in the same task as we use to execute the
1768 * template because of the way zfs works.
1769 * After you 'zfs create', zfs mounts the fs only in the initial
1770 * namespace.
1771 */
1772 pid = fork();
1773 if (pid < 0) {
1774 SYSERROR("Failed to fork task for container creation template");
1775 goto out_unlock;
1776 }
1777
1778 if (pid == 0) { /* child */
1779 struct lxc_storage *bdev = NULL;
1780
1781 bdev = do_storage_create(c, bdevtype, specs);
1782 if (!bdev) {
1783 ERROR("Failed to create %s storage for %s",
1784 bdevtype ? bdevtype : "(none)", c->name);
1785 _exit(EXIT_FAILURE);
1786 }
1787
1788 /* Save config file again to store the new rootfs location. */
1789 if (!do_lxcapi_save_config(c, NULL)) {
1790 ERROR("Failed to save initial config for %s", c->name);
1791 /* Parent task won't see the storage driver in the
1792 * config so we delete it.
1793 */
1794 bdev->ops->umount(bdev);
1795 bdev->ops->destroy(bdev);
1796 _exit(EXIT_FAILURE);
1797 }
1798 _exit(EXIT_SUCCESS);
1799 }
1800 if (wait_for_pid(pid) != 0)
1801 goto out_unlock;
1802
1803 /* Reload config to get the rootfs. */
1804 lxc_conf_free(c->lxc_conf);
1805 c->lxc_conf = NULL;
1806 if (!load_config_locked(c, c->configfile))
1807 goto out_unlock;
1808
1809 if (!create_run_template(c, tpath, !!(flags & LXC_CREATE_QUIET), argv))
1810 goto out_unlock;
1811
1812 /* Now clear out the lxc_conf we have, reload from the created
1813 * container.
1814 */
1815 do_lxcapi_clear_config(c);
1816
1817 if (t) {
1818 if (!prepend_lxc_header(c->configfile, tpath, argv)) {
1819 ERROR("Failed to prepend header to config file");
1820 goto out_unlock;
1821 }
1822 }
1823 ret = load_config_locked(c, c->configfile);
1824
1825 out_unlock:
1826 if (partial_fd >= 0)
1827 remove_partial(c, partial_fd);
1828 out:
1829 if (!ret)
1830 container_destroy(c, NULL);
1831 free_tpath:
1832 free(tpath);
1833 return ret;
1834 }
1835
1836 static bool lxcapi_create(struct lxc_container *c, const char *t,
1837 const char *bdevtype, struct bdev_specs *specs,
1838 int flags, char *const argv[])
1839 {
1840 bool ret;
1841 current_config = c ? c->lxc_conf : NULL;
1842 ret = do_lxcapi_create(c, t, bdevtype, specs, flags, argv);
1843 current_config = NULL;
1844 return ret;
1845 }
1846
1847 static bool do_lxcapi_reboot(struct lxc_container *c)
1848 {
1849 pid_t pid;
1850 int rebootsignal = SIGINT;
1851
1852 if (!c)
1853 return false;
1854 if (!do_lxcapi_is_running(c))
1855 return false;
1856 pid = do_lxcapi_init_pid(c);
1857 if (pid <= 0)
1858 return false;
1859 if (c->lxc_conf && c->lxc_conf->rebootsignal)
1860 rebootsignal = c->lxc_conf->rebootsignal;
1861 if (kill(pid, rebootsignal) < 0) {
1862 WARN("Could not send signal %d to pid %d.", rebootsignal, pid);
1863 return false;
1864 }
1865 return true;
1866
1867 }
1868
1869 WRAP_API(bool, lxcapi_reboot)
1870
1871 static bool do_lxcapi_reboot2(struct lxc_container *c, int timeout)
1872 {
1873 int killret, ret;
1874 pid_t pid;
1875 int rebootsignal = SIGINT, state_client_fd = -1;
1876 lxc_state_t states[MAX_STATE] = {0};
1877
1878 if (!c)
1879 return false;
1880
1881 if (!do_lxcapi_is_running(c))
1882 return true;
1883
1884 pid = do_lxcapi_init_pid(c);
1885 if (pid <= 0)
1886 return true;
1887
1888 if (c->lxc_conf && c->lxc_conf->rebootsignal)
1889 rebootsignal = c->lxc_conf->rebootsignal;
1890
1891 /* Add a new state client before sending the shutdown signal so that we
1892 * don't miss a state.
1893 */
1894 if (timeout != 0) {
1895 states[RUNNING] = 2;
1896 ret = lxc_cmd_add_state_client(c->name, c->config_path, states,
1897 &state_client_fd);
1898 if (ret < 0)
1899 return false;
1900
1901 if (state_client_fd < 0)
1902 return false;
1903
1904 if (ret == RUNNING)
1905 return true;
1906
1907 if (ret < MAX_STATE)
1908 return false;
1909 }
1910
1911 /* Send reboot signal to container. */
1912 killret = kill(pid, rebootsignal);
1913 if (killret < 0) {
1914 WARN("Could not send signal %d to pid %d", rebootsignal, pid);
1915 if (state_client_fd >= 0)
1916 close(state_client_fd);
1917 return false;
1918 }
1919 TRACE("Sent signal %d to pid %d", rebootsignal, pid);
1920
1921 if (timeout == 0)
1922 return true;
1923
1924 ret = lxc_cmd_sock_rcv_state(state_client_fd, timeout);
1925 close(state_client_fd);
1926 if (ret < 0)
1927 return false;
1928
1929 TRACE("Received state \"%s\"", lxc_state2str(ret));
1930 if (ret != RUNNING)
1931 return false;
1932
1933 return true;
1934 }
1935
1936 WRAP_API_1(bool, lxcapi_reboot2, int)
1937
1938 static bool do_lxcapi_shutdown(struct lxc_container *c, int timeout)
1939 {
1940 int killret, ret;
1941 pid_t pid;
1942 int haltsignal = SIGPWR, state_client_fd = -1;
1943 lxc_state_t states[MAX_STATE] = {0};
1944
1945 if (!c)
1946 return false;
1947
1948 if (!do_lxcapi_is_running(c))
1949 return true;
1950
1951 pid = do_lxcapi_init_pid(c);
1952 if (pid <= 0)
1953 return true;
1954
1955 /* Detect whether we should send SIGRTMIN + 3 (e.g. systemd). */
1956 if (task_blocking_signal(pid, (SIGRTMIN + 3)))
1957 haltsignal = (SIGRTMIN + 3);
1958
1959 if (c->lxc_conf && c->lxc_conf->haltsignal)
1960 haltsignal = c->lxc_conf->haltsignal;
1961
1962 /* Add a new state client before sending the shutdown signal so that we
1963 * don't miss a state.
1964 */
1965 if (timeout != 0) {
1966 states[STOPPED] = 1;
1967 ret = lxc_cmd_add_state_client(c->name, c->config_path, states,
1968 &state_client_fd);
1969 if (ret < 0)
1970 return false;
1971
1972 if (state_client_fd < 0)
1973 return false;
1974
1975 if (ret == STOPPED)
1976 return true;
1977
1978 if (ret < MAX_STATE)
1979 return false;
1980 }
1981
1982 /* Send shutdown signal to container. */
1983 killret = kill(pid, haltsignal);
1984 if (killret < 0) {
1985 WARN("Could not send signal %d to pid %d", haltsignal, pid);
1986 if (state_client_fd >= 0)
1987 close(state_client_fd);
1988 return false;
1989 }
1990 TRACE("Sent signal %d to pid %d", haltsignal, pid);
1991
1992 if (timeout == 0)
1993 return true;
1994
1995 ret = lxc_cmd_sock_rcv_state(state_client_fd, timeout);
1996 close(state_client_fd);
1997 if (ret < 0)
1998 return false;
1999
2000 TRACE("Received state \"%s\"", lxc_state2str(ret));
2001 if (ret != STOPPED)
2002 return false;
2003
2004 return true;
2005 }
2006
2007 WRAP_API_1(bool, lxcapi_shutdown, int)
2008
2009 static bool lxcapi_createl(struct lxc_container *c, const char *t,
2010 const char *bdevtype, struct bdev_specs *specs, int flags, ...)
2011 {
2012 bool bret = false;
2013 char **args = NULL;
2014 va_list ap;
2015
2016 if (!c)
2017 return false;
2018
2019 current_config = c->lxc_conf;
2020
2021 /*
2022 * since we're going to wait for create to finish, I don't think we
2023 * need to get a copy of the arguments.
2024 */
2025 va_start(ap, flags);
2026 args = lxc_va_arg_list_to_argv(ap, 0, 0);
2027 va_end(ap);
2028 if (!args) {
2029 ERROR("Failed to allocate memory");
2030 goto out;
2031 }
2032
2033 bret = do_lxcapi_create(c, t, bdevtype, specs, flags, args);
2034
2035 out:
2036 free(args);
2037 current_config = NULL;
2038 return bret;
2039 }
2040
2041 static void do_clear_unexp_config_line(struct lxc_conf *conf, const char *key)
2042 {
2043 if (!strcmp(key, "lxc.cgroup"))
2044 return clear_unexp_config_line(conf, key, true);
2045
2046 if (!strcmp(key, "lxc.network"))
2047 return clear_unexp_config_line(conf, key, true);
2048
2049 if (!strcmp(key, "lxc.net"))
2050 return clear_unexp_config_line(conf, key, true);
2051
2052 /* Clear a network with a specific index. */
2053 if (!strncmp(key, "lxc.net.", 8)) {
2054 int ret;
2055 const char *idx;
2056
2057 idx = key + 8;
2058 ret = lxc_safe_uint(idx, &(unsigned int){0});
2059 if (!ret)
2060 return clear_unexp_config_line(conf, key, true);
2061 }
2062
2063 if (!strcmp(key, "lxc.hook"))
2064 return clear_unexp_config_line(conf, key, true);
2065
2066 return clear_unexp_config_line(conf, key, false);
2067 }
2068
2069 static bool do_lxcapi_clear_config_item(struct lxc_container *c,
2070 const char *key)
2071 {
2072 int ret = 1;
2073 struct lxc_config_t *config;
2074
2075 if (!c || !c->lxc_conf)
2076 return false;
2077
2078 if (container_mem_lock(c))
2079 return false;
2080
2081 config = lxc_get_config(key);
2082 /* Verify that the config key exists and that it has a callback
2083 * implemented.
2084 */
2085 if (config && config->clr)
2086 ret = config->clr(key, c->lxc_conf, NULL);
2087 if (!ret)
2088 do_clear_unexp_config_line(c->lxc_conf, key);
2089
2090 container_mem_unlock(c);
2091 return ret == 0;
2092 }
2093
2094 WRAP_API_1(bool, lxcapi_clear_config_item, const char *)
2095
2096 static inline bool enter_net_ns(struct lxc_container *c)
2097 {
2098 pid_t pid = do_lxcapi_init_pid(c);
2099
2100 if ((geteuid() != 0 || (c->lxc_conf && !lxc_list_empty(&c->lxc_conf->id_map))) && access("/proc/self/ns/user", F_OK) == 0) {
2101 if (!switch_to_ns(pid, "user"))
2102 return false;
2103 }
2104 return switch_to_ns(pid, "net");
2105 }
2106
2107 /* Used by qsort and bsearch functions for comparing names. */
2108 static inline int string_cmp(char **first, char **second)
2109 {
2110 return strcmp(*first, *second);
2111 }
2112
2113 /* Used by qsort and bsearch functions for comparing container names. */
2114 static inline int container_cmp(struct lxc_container **first,
2115 struct lxc_container **second)
2116 {
2117 return strcmp((*first)->name, (*second)->name);
2118 }
2119
2120 static bool add_to_array(char ***names, char *cname, int pos)
2121 {
2122 char **newnames = realloc(*names, (pos+1) * sizeof(char *));
2123 if (!newnames) {
2124 ERROR("Out of memory");
2125 return false;
2126 }
2127
2128 *names = newnames;
2129 newnames[pos] = strdup(cname);
2130 if (!newnames[pos])
2131 return false;
2132
2133 /* Sort the arrray as we will use binary search on it. */
2134 qsort(newnames, pos + 1, sizeof(char *),
2135 (int (*)(const void *, const void *))string_cmp);
2136
2137 return true;
2138 }
2139
2140 static bool add_to_clist(struct lxc_container ***list, struct lxc_container *c,
2141 int pos, bool sort)
2142 {
2143 struct lxc_container **newlist = realloc(*list, (pos + 1) * sizeof(struct lxc_container *));
2144 if (!newlist) {
2145 ERROR("Out of memory");
2146 return false;
2147 }
2148
2149 *list = newlist;
2150 newlist[pos] = c;
2151
2152 /* Sort the arrray as we will use binary search on it. */
2153 if (sort)
2154 qsort(newlist, pos + 1, sizeof(struct lxc_container *),
2155 (int (*)(const void *, const void *))container_cmp);
2156
2157 return true;
2158 }
2159
2160 static char** get_from_array(char ***names, char *cname, int size)
2161 {
2162 return (char **)bsearch(&cname, *names, size, sizeof(char *), (int (*)(const void *, const void *))string_cmp);
2163 }
2164
2165
2166 static bool array_contains(char ***names, char *cname, int size) {
2167 if(get_from_array(names, cname, size) != NULL)
2168 return true;
2169 return false;
2170 }
2171
2172 static bool remove_from_array(char ***names, char *cname, int size)
2173 {
2174 char **result = get_from_array(names, cname, size);
2175 if (result != NULL) {
2176 free(result);
2177 return true;
2178 }
2179 return false;
2180 }
2181
2182 static char ** do_lxcapi_get_interfaces(struct lxc_container *c)
2183 {
2184 pid_t pid;
2185 int i, count = 0, pipefd[2];
2186 char **interfaces = NULL;
2187 char interface[IFNAMSIZ];
2188
2189 if(pipe(pipefd) < 0) {
2190 SYSERROR("pipe failed");
2191 return NULL;
2192 }
2193
2194 pid = fork();
2195 if (pid < 0) {
2196 SYSERROR("failed to fork task to get interfaces information");
2197 close(pipefd[0]);
2198 close(pipefd[1]);
2199 return NULL;
2200 }
2201
2202 if (pid == 0) { /* child */
2203 int ret = 1, nbytes;
2204 struct ifaddrs *interfaceArray = NULL, *tempIfAddr = NULL;
2205
2206 /* close the read-end of the pipe */
2207 close(pipefd[0]);
2208
2209 if (!enter_net_ns(c)) {
2210 SYSERROR("failed to enter namespace");
2211 goto out;
2212 }
2213
2214 /* Grab the list of interfaces */
2215 if (getifaddrs(&interfaceArray)) {
2216 SYSERROR("failed to get interfaces list");
2217 goto out;
2218 }
2219
2220 /* Iterate through the interfaces */
2221 for (tempIfAddr = interfaceArray; tempIfAddr != NULL; tempIfAddr = tempIfAddr->ifa_next) {
2222 nbytes = write(pipefd[1], tempIfAddr->ifa_name, IFNAMSIZ);
2223 if (nbytes < 0) {
2224 ERROR("write failed");
2225 goto out;
2226 }
2227 count++;
2228 }
2229 ret = 0;
2230
2231 out:
2232 if (interfaceArray)
2233 freeifaddrs(interfaceArray);
2234
2235 /* close the write-end of the pipe, thus sending EOF to the reader */
2236 close(pipefd[1]);
2237 _exit(ret);
2238 }
2239
2240 /* close the write-end of the pipe */
2241 close(pipefd[1]);
2242
2243 while (read(pipefd[0], &interface, IFNAMSIZ) == IFNAMSIZ) {
2244 interface[IFNAMSIZ - 1] = '\0';
2245
2246 if (array_contains(&interfaces, interface, count))
2247 continue;
2248
2249 if(!add_to_array(&interfaces, interface, count))
2250 ERROR("Failed to add \"%s\" to array", interface);
2251
2252 count++;
2253 }
2254
2255 if (wait_for_pid(pid) != 0) {
2256 for(i=0;i<count;i++)
2257 free(interfaces[i]);
2258 free(interfaces);
2259 interfaces = NULL;
2260 }
2261
2262 /* close the read-end of the pipe */
2263 close(pipefd[0]);
2264
2265 /* Append NULL to the array */
2266 if(interfaces)
2267 interfaces = (char **)lxc_append_null_to_array((void **)interfaces, count);
2268
2269 return interfaces;
2270 }
2271
2272 WRAP_API(char **, lxcapi_get_interfaces)
2273
2274 static char** do_lxcapi_get_ips(struct lxc_container *c, const char* interface, const char* family, int scope)
2275 {
2276 pid_t pid;
2277 int i, count = 0, pipefd[2];
2278 char **addresses = NULL;
2279 char address[INET6_ADDRSTRLEN];
2280
2281 if(pipe(pipefd) < 0) {
2282 SYSERROR("pipe failed");
2283 return NULL;
2284 }
2285
2286 pid = fork();
2287 if (pid < 0) {
2288 SYSERROR("failed to fork task to get container ips");
2289 close(pipefd[0]);
2290 close(pipefd[1]);
2291 return NULL;
2292 }
2293
2294 if (pid == 0) { /* child */
2295 int ret = 1, nbytes;
2296 struct ifaddrs *interfaceArray = NULL, *tempIfAddr = NULL;
2297 char addressOutputBuffer[INET6_ADDRSTRLEN];
2298 void *tempAddrPtr = NULL;
2299 char *address = NULL;
2300
2301 /* close the read-end of the pipe */
2302 close(pipefd[0]);
2303
2304 if (!enter_net_ns(c)) {
2305 SYSERROR("failed to enter namespace");
2306 goto out;
2307 }
2308
2309 /* Grab the list of interfaces */
2310 if (getifaddrs(&interfaceArray)) {
2311 SYSERROR("failed to get interfaces list");
2312 goto out;
2313 }
2314
2315 /* Iterate through the interfaces */
2316 for (tempIfAddr = interfaceArray; tempIfAddr != NULL; tempIfAddr = tempIfAddr->ifa_next) {
2317 if (tempIfAddr->ifa_addr == NULL)
2318 continue;
2319
2320 if(tempIfAddr->ifa_addr->sa_family == AF_INET) {
2321 if (family && strcmp(family, "inet"))
2322 continue;
2323 tempAddrPtr = &((struct sockaddr_in *)tempIfAddr->ifa_addr)->sin_addr;
2324 }
2325 else {
2326 if (family && strcmp(family, "inet6"))
2327 continue;
2328
2329 if (((struct sockaddr_in6 *)tempIfAddr->ifa_addr)->sin6_scope_id != scope)
2330 continue;
2331
2332 tempAddrPtr = &((struct sockaddr_in6 *)tempIfAddr->ifa_addr)->sin6_addr;
2333 }
2334
2335 if (interface && strcmp(interface, tempIfAddr->ifa_name))
2336 continue;
2337 else if (!interface && strcmp("lo", tempIfAddr->ifa_name) == 0)
2338 continue;
2339
2340 address = (char *)inet_ntop(tempIfAddr->ifa_addr->sa_family,
2341 tempAddrPtr,
2342 addressOutputBuffer,
2343 sizeof(addressOutputBuffer));
2344 if (!address)
2345 continue;
2346
2347 nbytes = write(pipefd[1], address, INET6_ADDRSTRLEN);
2348 if (nbytes < 0) {
2349 ERROR("write failed");
2350 goto out;
2351 }
2352 count++;
2353 }
2354 ret = 0;
2355
2356 out:
2357 if(interfaceArray)
2358 freeifaddrs(interfaceArray);
2359
2360 /* close the write-end of the pipe, thus sending EOF to the reader */
2361 close(pipefd[1]);
2362 _exit(ret);
2363 }
2364
2365 /* close the write-end of the pipe */
2366 close(pipefd[1]);
2367
2368 while (read(pipefd[0], &address, INET6_ADDRSTRLEN) == INET6_ADDRSTRLEN) {
2369 if(!add_to_array(&addresses, address, count))
2370 ERROR("PARENT: add_to_array failed");
2371 count++;
2372 }
2373
2374 if (wait_for_pid(pid) != 0) {
2375 for(i=0;i<count;i++)
2376 free(addresses[i]);
2377 free(addresses);
2378 addresses = NULL;
2379 }
2380
2381 /* close the read-end of the pipe */
2382 close(pipefd[0]);
2383
2384 /* Append NULL to the array */
2385 if(addresses)
2386 addresses = (char **)lxc_append_null_to_array((void **)addresses, count);
2387
2388 return addresses;
2389 }
2390
2391 WRAP_API_3(char **, lxcapi_get_ips, const char *, const char *, int)
2392
2393 static int do_lxcapi_get_config_item(struct lxc_container *c, const char *key, char *retv, int inlen)
2394 {
2395 int ret = -1;
2396 struct lxc_config_t *config;
2397
2398 if (!c || !c->lxc_conf)
2399 return -1;
2400
2401 if (container_mem_lock(c))
2402 return -1;
2403
2404 config = lxc_get_config(key);
2405 /* Verify that the config key exists and that it has a callback
2406 * implemented.
2407 */
2408 if (config && config->get)
2409 ret = config->get(key, retv, inlen, c->lxc_conf, NULL);
2410
2411 container_mem_unlock(c);
2412 return ret;
2413 }
2414
2415 WRAP_API_3(int, lxcapi_get_config_item, const char *, char *, int)
2416
2417 static char* do_lxcapi_get_running_config_item(struct lxc_container *c, const char *key)
2418 {
2419 char *ret;
2420
2421 if (!c || !c->lxc_conf)
2422 return NULL;
2423 if (container_mem_lock(c))
2424 return NULL;
2425 ret = lxc_cmd_get_config_item(c->name, key, do_lxcapi_get_config_path(c));
2426 container_mem_unlock(c);
2427 return ret;
2428 }
2429
2430 WRAP_API_1(char *, lxcapi_get_running_config_item, const char *)
2431
2432 static int do_lxcapi_get_keys(struct lxc_container *c, const char *key, char *retv, int inlen)
2433 {
2434 int ret = -1;
2435
2436 /* List all config items. */
2437 if (!key)
2438 return lxc_list_config_items(retv, inlen);
2439
2440 if (!c || !c->lxc_conf)
2441 return -1;
2442
2443 if (container_mem_lock(c))
2444 return -1;
2445
2446 /* Support 'lxc.net.<idx>', i.e. 'lxc.net.0'
2447 * This is an intelligent result to show which keys are valid given the
2448 * type of nic it is.
2449 */
2450 if (strncmp(key, "lxc.net.", 8) == 0)
2451 ret = lxc_list_net(c->lxc_conf, key, retv, inlen);
2452 else
2453 ret = lxc_list_subkeys(c->lxc_conf, key, retv, inlen);
2454
2455 container_mem_unlock(c);
2456 return ret;
2457 }
2458
2459 WRAP_API_3(int, lxcapi_get_keys, const char *, char *, int)
2460
2461 static bool do_lxcapi_save_config(struct lxc_container *c, const char *alt_file)
2462 {
2463 int fd, lret;
2464 bool ret = false, need_disklock = false;
2465
2466 if (!alt_file)
2467 alt_file = c->configfile;
2468 if (!alt_file)
2469 return false;
2470
2471 /* If we haven't yet loaded a config, load the stock config. */
2472 if (!c->lxc_conf) {
2473 if (!do_lxcapi_load_config(c, lxc_global_config_value("lxc.default_config"))) {
2474 ERROR("Error loading default configuration file %s "
2475 "while saving %s",
2476 lxc_global_config_value("lxc.default_config"),
2477 c->name);
2478 return false;
2479 }
2480 }
2481
2482 if (!create_container_dir(c))
2483 return false;
2484
2485 /* If we're writing to the container's config file, take the disk lock.
2486 * Otherwise just take the memlock to protect the struct lxc_container
2487 * while we're traversing it.
2488 */
2489 if (strcmp(c->configfile, alt_file) == 0)
2490 need_disklock = true;
2491
2492 if (need_disklock)
2493 lret = container_disk_lock(c);
2494 else
2495 lret = container_mem_lock(c);
2496
2497 if (lret)
2498 return false;
2499
2500 fd = open(alt_file, O_WRONLY | O_CREAT | O_CLOEXEC,
2501 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
2502 if (fd < 0)
2503 goto on_error;
2504
2505 lret = write_config(fd, c->lxc_conf);
2506 close(fd);
2507 if (lret < 0)
2508 goto on_error;
2509
2510 ret = true;
2511
2512 on_error:
2513 if (need_disklock)
2514 container_disk_unlock(c);
2515 else
2516 container_mem_unlock(c);
2517
2518 return ret;
2519 }
2520
2521 WRAP_API_1(bool, lxcapi_save_config, const char *)
2522
2523
2524 static bool mod_rdep(struct lxc_container *c0, struct lxc_container *c, bool inc)
2525 {
2526 FILE *f1;
2527 struct stat fbuf;
2528 void *buf = NULL;
2529 char *del = NULL;
2530 char path[MAXPATHLEN];
2531 char newpath[MAXPATHLEN];
2532 int fd, ret, n = 0, v = 0;
2533 bool bret = false;
2534 size_t len = 0, bytes = 0;
2535
2536 if (container_disk_lock(c0))
2537 return false;
2538
2539 ret = snprintf(path, MAXPATHLEN, "%s/%s/lxc_snapshots", c0->config_path, c0->name);
2540 if (ret < 0 || ret > MAXPATHLEN)
2541 goto out;
2542 ret = snprintf(newpath, MAXPATHLEN, "%s\n%s\n", c->config_path, c->name);
2543 if (ret < 0 || ret > MAXPATHLEN)
2544 goto out;
2545
2546 /* If we find an lxc-snapshot file using the old format only listing the
2547 * number of snapshots we will keep using it. */
2548 f1 = fopen(path, "r");
2549 if (f1) {
2550 n = fscanf(f1, "%d", &v);
2551 fclose(f1);
2552 if (n == 1 && v == 0) {
2553 remove(path);
2554 n = 0;
2555 }
2556 }
2557 if (n == 1) {
2558 v += inc ? 1 : -1;
2559 f1 = fopen(path, "w");
2560 if (!f1)
2561 goto out;
2562 if (fprintf(f1, "%d\n", v) < 0) {
2563 ERROR("Error writing new snapshots value");
2564 fclose(f1);
2565 goto out;
2566 }
2567 ret = fclose(f1);
2568 if (ret != 0) {
2569 SYSERROR("Error writing to or closing snapshots file");
2570 goto out;
2571 }
2572 } else {
2573 /* Here we know that we have or can use an lxc-snapshot file
2574 * using the new format. */
2575 if (inc) {
2576 f1 = fopen(path, "a");
2577 if (!f1)
2578 goto out;
2579
2580 if (fprintf(f1, "%s", newpath) < 0) {
2581 ERROR("Error writing new snapshots entry");
2582 ret = fclose(f1);
2583 if (ret != 0)
2584 SYSERROR("Error writing to or closing snapshots file");
2585 goto out;
2586 }
2587
2588 ret = fclose(f1);
2589 if (ret != 0) {
2590 SYSERROR("Error writing to or closing snapshots file");
2591 goto out;
2592 }
2593 } else if (!inc) {
2594 if ((fd = open(path, O_RDWR | O_CLOEXEC)) < 0)
2595 goto out;
2596
2597 if (fstat(fd, &fbuf) < 0) {
2598 close(fd);
2599 goto out;
2600 }
2601
2602 if (fbuf.st_size != 0) {
2603
2604 buf = lxc_strmmap(NULL, fbuf.st_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
2605 if (buf == MAP_FAILED) {
2606 SYSERROR("Failed to create mapping %s", path);
2607 close(fd);
2608 goto out;
2609 }
2610
2611 len = strlen(newpath);
2612 while ((del = strstr((char *)buf, newpath))) {
2613 memmove(del, del + len, strlen(del) - len + 1);
2614 bytes += len;
2615 }
2616
2617 lxc_strmunmap(buf, fbuf.st_size);
2618 if (ftruncate(fd, fbuf.st_size - bytes) < 0) {
2619 SYSERROR("Failed to truncate file %s", path);
2620 close(fd);
2621 goto out;
2622 }
2623 }
2624 close(fd);
2625 }
2626
2627 /* If the lxc-snapshot file is empty, remove it. */
2628 if (stat(path, &fbuf) < 0)
2629 goto out;
2630 if (!fbuf.st_size) {
2631 remove(path);
2632 }
2633 }
2634
2635 bret = true;
2636
2637 out:
2638 container_disk_unlock(c0);
2639 return bret;
2640 }
2641
2642 static void strip_newline(char *p)
2643 {
2644 size_t len = strlen(p);
2645 if (len < 1)
2646 return;
2647 if (p[len-1] == '\n')
2648 p[len-1] = '\0';
2649 }
2650
2651 void mod_all_rdeps(struct lxc_container *c, bool inc)
2652 {
2653 struct lxc_container *p;
2654 char *lxcpath = NULL, *lxcname = NULL, path[MAXPATHLEN];
2655 size_t pathlen = 0, namelen = 0;
2656 FILE *f;
2657 int ret;
2658
2659 ret = snprintf(path, MAXPATHLEN, "%s/%s/lxc_rdepends",
2660 c->config_path, c->name);
2661 if (ret < 0 || ret >= MAXPATHLEN) {
2662 ERROR("Path name too long");
2663 return;
2664 }
2665 f = fopen(path, "r");
2666 if (f == NULL)
2667 return;
2668 while (getline(&lxcpath, &pathlen, f) != -1) {
2669 if (getline(&lxcname, &namelen, f) == -1) {
2670 ERROR("badly formatted file %s", path);
2671 goto out;
2672 }
2673 strip_newline(lxcpath);
2674 strip_newline(lxcname);
2675 if ((p = lxc_container_new(lxcname, lxcpath)) == NULL) {
2676 ERROR("Unable to find dependent container %s:%s",
2677 lxcpath, lxcname);
2678 continue;
2679 }
2680 if (!mod_rdep(p, c, inc))
2681 ERROR("Failed to update snapshots file for %s:%s",
2682 lxcpath, lxcname);
2683 lxc_container_put(p);
2684 }
2685 out:
2686 free(lxcpath);
2687 free(lxcname);
2688 fclose(f);
2689 }
2690
2691 static bool has_fs_snapshots(struct lxc_container *c)
2692 {
2693 FILE *f;
2694 char path[MAXPATHLEN];
2695 int ret, v;
2696 struct stat fbuf;
2697 bool bret = false;
2698
2699 ret = snprintf(path, MAXPATHLEN, "%s/%s/lxc_snapshots", c->config_path,
2700 c->name);
2701 if (ret < 0 || ret > MAXPATHLEN)
2702 goto out;
2703 /* If the file doesn't exist there are no snapshots. */
2704 if (stat(path, &fbuf) < 0)
2705 goto out;
2706 v = fbuf.st_size;
2707 if (v != 0) {
2708 f = fopen(path, "r");
2709 if (!f)
2710 goto out;
2711 ret = fscanf(f, "%d", &v);
2712 fclose(f);
2713 /* TODO: Figure out what to do with the return value of fscanf. */
2714 if (ret != 1)
2715 INFO("Container uses new lxc-snapshots format %s", path);
2716 }
2717 bret = v != 0;
2718
2719 out:
2720 return bret;
2721 }
2722
2723 static bool has_snapshots(struct lxc_container *c)
2724 {
2725 char path[MAXPATHLEN];
2726 struct dirent *direntp;
2727 int count=0;
2728 DIR *dir;
2729
2730 if (!get_snappath_dir(c, path))
2731 return false;
2732 dir = opendir(path);
2733 if (!dir)
2734 return false;
2735 while ((direntp = readdir(dir))) {
2736 if (!direntp)
2737 break;
2738
2739 if (!strcmp(direntp->d_name, "."))
2740 continue;
2741
2742 if (!strcmp(direntp->d_name, ".."))
2743 continue;
2744 count++;
2745 break;
2746 }
2747 closedir(dir);
2748 return count > 0;
2749 }
2750
2751 static bool do_destroy_container(struct lxc_conf *conf) {
2752 int ret;
2753
2754 if (am_guest_unpriv()) {
2755 ret = userns_exec_full(conf, storage_destroy_wrapper, conf,
2756 "storage_destroy_wrapper");
2757 if (ret < 0)
2758 return false;
2759
2760 return true;
2761 }
2762
2763 return storage_destroy(conf);
2764 }
2765
2766 static int lxc_rmdir_onedev_wrapper(void *data)
2767 {
2768 char *arg = (char *) data;
2769 return lxc_rmdir_onedev(arg, "snaps");
2770 }
2771
2772 static int lxc_unlink_exec_wrapper(void *data)
2773 {
2774 char *arg = data;
2775 return unlink(arg);
2776 }
2777
2778 static bool container_destroy(struct lxc_container *c,
2779 struct lxc_storage *storage)
2780 {
2781 const char *p1;
2782 size_t len;
2783 struct lxc_conf *conf;
2784 char *path = NULL;
2785 bool bret = false;
2786 int ret = 0;
2787
2788 if (!c || !do_lxcapi_is_defined(c))
2789 return false;
2790
2791 conf = c->lxc_conf;
2792 if (container_disk_lock(c))
2793 return false;
2794
2795 if (!is_stopped(c)) {
2796 /* We should queue some sort of error - in c->error_string? */
2797 ERROR("container %s is not stopped", c->name);
2798 goto out;
2799 }
2800
2801 if (conf && !lxc_list_empty(&conf->hooks[LXCHOOK_DESTROY])) {
2802 /* Start of environment variable setup for hooks */
2803 if (setenv("LXC_NAME", c->name, 1))
2804 SYSERROR("Failed to set environment variable for container name");
2805
2806 if (conf->rcfile && setenv("LXC_CONFIG_FILE", conf->rcfile, 1))
2807 SYSERROR("Failed to set environment variable for config path");
2808
2809 if (conf->rootfs.mount && setenv("LXC_ROOTFS_MOUNT", conf->rootfs.mount, 1))
2810 SYSERROR("Failed to set environment variable for rootfs mount");
2811
2812 if (conf->rootfs.path && setenv("LXC_ROOTFS_PATH", conf->rootfs.path, 1))
2813 SYSERROR("Failed to set environment variable for rootfs mount");
2814
2815 if (conf->console.path && setenv("LXC_CONSOLE", conf->console.path, 1))
2816 SYSERROR("Failed to set environment variable for console path");
2817
2818 if (conf->console.log_path && setenv("LXC_CONSOLE_LOGPATH", conf->console.log_path, 1))
2819 SYSERROR("Failed to set environment variable for console log");
2820 /* End of environment variable setup for hooks */
2821
2822 if (run_lxc_hooks(c->name, "destroy", conf, NULL)) {
2823 ERROR("Failed to execute clone hook for \"%s\"", c->name);
2824 goto out;
2825 }
2826 }
2827
2828 if (current_config && conf == current_config) {
2829 current_config = NULL;
2830 if (conf->logfd != -1) {
2831 close(conf->logfd);
2832 conf->logfd = -1;
2833 }
2834 }
2835
2836 if (conf && conf->rootfs.path && conf->rootfs.mount) {
2837 if (!do_destroy_container(conf)) {
2838 ERROR("Error destroying rootfs for %s", c->name);
2839 goto out;
2840 }
2841 INFO("Destroyed rootfs for %s", c->name);
2842 }
2843
2844 mod_all_rdeps(c, false);
2845
2846 p1 = do_lxcapi_get_config_path(c);
2847 /* strlen(p1)
2848 * +
2849 * /
2850 * +
2851 * strlen(c->name)
2852 * +
2853 * /
2854 * +
2855 * strlen("config") = 6
2856 * +
2857 * \0
2858 */
2859 len = strlen(p1) + 1 + strlen(c->name) + 1 + 6 + 1;
2860 path = malloc(len);
2861 if (!path) {
2862 ERROR("Failed to allocate memory");
2863 goto out;
2864 }
2865
2866 /* For an overlay container the rootfs is considered immutable and
2867 * cannot be removed when restoring from a snapshot.
2868 */
2869 if (storage && (!strcmp(storage->type, "overlay") ||
2870 !strcmp(storage->type, "overlayfs")) &&
2871 (storage->flags & LXC_STORAGE_INTERNAL_OVERLAY_RESTORE)) {
2872 ret = snprintf(path, len, "%s/%s/config", p1, c->name);
2873 if (ret < 0 || (size_t)ret >= len)
2874 goto out;
2875
2876 if (am_guest_unpriv())
2877 ret = userns_exec_1(conf, lxc_unlink_exec_wrapper, path,
2878 "lxc_unlink_exec_wrapper");
2879 else
2880 ret = unlink(path);
2881 if (ret < 0) {
2882 SYSERROR("Failed to destroy config file \"%s\" for \"%s\"",
2883 path, c->name);
2884 goto out;
2885 }
2886 INFO("Destroyed config file \"%s\" for \"%s\"", path, c->name);
2887
2888 bret = true;
2889 goto out;
2890 }
2891
2892 ret = snprintf(path, len, "%s/%s", p1, c->name);
2893 if (ret < 0 || (size_t)ret >= len)
2894 goto out;
2895 if (am_guest_unpriv())
2896 ret = userns_exec_full(conf, lxc_rmdir_onedev_wrapper, path,
2897 "lxc_rmdir_onedev_wrapper");
2898 else
2899 ret = lxc_rmdir_onedev(path, "snaps");
2900 if (ret < 0) {
2901 ERROR("Failed to destroy directory \"%s\" for \"%s\"", path,
2902 c->name);
2903 goto out;
2904 }
2905 INFO("Destroyed directory \"%s\" for \"%s\"", path, c->name);
2906
2907 bret = true;
2908
2909 out:
2910 if (path)
2911 free(path);
2912 container_disk_unlock(c);
2913 return bret;
2914 }
2915
2916 static bool do_lxcapi_destroy(struct lxc_container *c)
2917 {
2918 if (!c || !lxcapi_is_defined(c))
2919 return false;
2920 if (has_snapshots(c)) {
2921 ERROR("Container %s has snapshots; not removing", c->name);
2922 return false;
2923 }
2924
2925 if (has_fs_snapshots(c)) {
2926 ERROR("container %s has snapshots on its rootfs", c->name);
2927 return false;
2928 }
2929
2930 return container_destroy(c, NULL);
2931 }
2932
2933 WRAP_API(bool, lxcapi_destroy)
2934
2935 static bool do_lxcapi_destroy_with_snapshots(struct lxc_container *c)
2936 {
2937 if (!c || !lxcapi_is_defined(c))
2938 return false;
2939 if (!lxcapi_snapshot_destroy_all(c)) {
2940 ERROR("Error deleting all snapshots");
2941 return false;
2942 }
2943 return lxcapi_destroy(c);
2944 }
2945
2946 WRAP_API(bool, lxcapi_destroy_with_snapshots)
2947
2948 int lxc_set_config_item_locked(struct lxc_conf *conf, const char *key,
2949 const char *v)
2950 {
2951 int ret;
2952 struct lxc_config_t *config;
2953 bool bret = true;
2954
2955 config = lxc_get_config(key);
2956 if (!config)
2957 return -EINVAL;
2958
2959 ret = config->set(key, v, conf, NULL);
2960 if (ret < 0)
2961 return -EINVAL;
2962
2963 if (lxc_config_value_empty(v))
2964 do_clear_unexp_config_line(conf, key);
2965 else
2966 bret = do_append_unexp_config_line(conf, key, v);
2967 if (!bret)
2968 return -ENOMEM;
2969
2970 return 0;
2971 }
2972
2973 static bool do_set_config_item_locked(struct lxc_container *c, const char *key,
2974 const char *v)
2975 {
2976 int ret;
2977
2978 if (!c->lxc_conf)
2979 c->lxc_conf = lxc_conf_init();
2980
2981 if (!c->lxc_conf)
2982 return false;
2983
2984 ret = lxc_set_config_item_locked(c->lxc_conf, key, v);
2985 if (ret < 0)
2986 return false;
2987
2988 return true;
2989 }
2990
2991 static bool do_lxcapi_set_config_item(struct lxc_container *c, const char *key, const char *v)
2992 {
2993 bool b = false;
2994
2995 if (!c)
2996 return false;
2997
2998 if (container_mem_lock(c))
2999 return false;
3000
3001 b = do_set_config_item_locked(c, key, v);
3002
3003 container_mem_unlock(c);
3004 return b;
3005 }
3006
3007 WRAP_API_2(bool, lxcapi_set_config_item, const char *, const char *)
3008
3009 static char *lxcapi_config_file_name(struct lxc_container *c)
3010 {
3011 if (!c || !c->configfile)
3012 return NULL;
3013 return strdup(c->configfile);
3014 }
3015
3016 static const char *lxcapi_get_config_path(struct lxc_container *c)
3017 {
3018 if (!c || !c->config_path)
3019 return NULL;
3020 return (const char *)(c->config_path);
3021 }
3022
3023 /*
3024 * not for export
3025 * Just recalculate the c->configfile based on the
3026 * c->config_path, which must be set.
3027 * The lxc_container must be locked or not yet public.
3028 */
3029 static bool set_config_filename(struct lxc_container *c)
3030 {
3031 char *newpath;
3032 int len, ret;
3033
3034 if (!c->config_path)
3035 return false;
3036
3037 /* $lxc_path + "/" + c->name + "/" + "config" + '\0' */
3038 len = strlen(c->config_path) + strlen(c->name) + strlen("config") + 3;
3039 newpath = malloc(len);
3040 if (!newpath)
3041 return false;
3042
3043 ret = snprintf(newpath, len, "%s/%s/config", c->config_path, c->name);
3044 if (ret < 0 || ret >= len) {
3045 fprintf(stderr, "Error printing out config file name\n");
3046 free(newpath);
3047 return false;
3048 }
3049
3050 free(c->configfile);
3051 c->configfile = newpath;
3052
3053 return true;
3054 }
3055
3056 static bool do_lxcapi_set_config_path(struct lxc_container *c, const char *path)
3057 {
3058 char *p;
3059 bool b = false;
3060 char *oldpath = NULL;
3061
3062 if (!c)
3063 return b;
3064
3065 if (container_mem_lock(c))
3066 return b;
3067
3068 p = strdup(path);
3069 if (!p) {
3070 ERROR("Out of memory setting new lxc path");
3071 goto err;
3072 }
3073
3074 b = true;
3075 if (c->config_path)
3076 oldpath = c->config_path;
3077 c->config_path = p;
3078
3079 /* Since we've changed the config path, we have to change the
3080 * config file name too */
3081 if (!set_config_filename(c)) {
3082 ERROR("Out of memory setting new config filename");
3083 b = false;
3084 free(c->config_path);
3085 c->config_path = oldpath;
3086 oldpath = NULL;
3087 }
3088 err:
3089 free(oldpath);
3090 container_mem_unlock(c);
3091 return b;
3092 }
3093
3094 WRAP_API_1(bool, lxcapi_set_config_path, const char *)
3095
3096 static bool do_lxcapi_set_cgroup_item(struct lxc_container *c, const char *subsys, const char *value)
3097 {
3098 int ret;
3099
3100 if (!c)
3101 return false;
3102
3103 if (is_stopped(c))
3104 return false;
3105
3106 if (container_disk_lock(c))
3107 return false;
3108
3109 ret = lxc_cgroup_set(subsys, value, c->name, c->config_path);
3110
3111 container_disk_unlock(c);
3112 return ret == 0;
3113 }
3114
3115 WRAP_API_2(bool, lxcapi_set_cgroup_item, const char *, const char *)
3116
3117 static int do_lxcapi_get_cgroup_item(struct lxc_container *c, const char *subsys, char *retv, int inlen)
3118 {
3119 int ret;
3120
3121 if (!c)
3122 return -1;
3123
3124 if (is_stopped(c))
3125 return -1;
3126
3127 if (container_disk_lock(c))
3128 return -1;
3129
3130 ret = lxc_cgroup_get(subsys, retv, inlen, c->name, c->config_path);
3131
3132 container_disk_unlock(c);
3133 return ret;
3134 }
3135
3136 WRAP_API_3(int, lxcapi_get_cgroup_item, const char *, char *, int)
3137
3138 const char *lxc_get_global_config_item(const char *key)
3139 {
3140 return lxc_global_config_value(key);
3141 }
3142
3143 const char *lxc_get_version(void)
3144 {
3145 return LXC_VERSION;
3146 }
3147
3148 static int copy_file(const char *old, const char *new)
3149 {
3150 int in, out;
3151 ssize_t len, ret;
3152 char buf[8096];
3153 struct stat sbuf;
3154
3155 if (file_exists(new)) {
3156 ERROR("copy destination %s exists", new);
3157 return -1;
3158 }
3159 ret = stat(old, &sbuf);
3160 if (ret < 0) {
3161 INFO("Error stat'ing %s", old);
3162 return -1;
3163 }
3164
3165 in = open(old, O_RDONLY);
3166 if (in < 0) {
3167 SYSERROR("Error opening original file %s", old);
3168 return -1;
3169 }
3170 out = open(new, O_CREAT | O_EXCL | O_WRONLY, 0644);
3171 if (out < 0) {
3172 SYSERROR("Error opening new file %s", new);
3173 close(in);
3174 return -1;
3175 }
3176
3177 while (1) {
3178 len = read(in, buf, 8096);
3179 if (len < 0) {
3180 SYSERROR("Error reading old file %s", old);
3181 goto err;
3182 }
3183 if (len == 0)
3184 break;
3185 ret = write(out, buf, len);
3186 if (ret < len) { /* should we retry? */
3187 SYSERROR("Error: write to new file %s was interrupted", new);
3188 goto err;
3189 }
3190 }
3191 close(in);
3192 close(out);
3193
3194 /* We set mode, but not owner/group. */
3195 ret = chmod(new, sbuf.st_mode);
3196 if (ret) {
3197 SYSERROR("Error setting mode on %s", new);
3198 return -1;
3199 }
3200
3201 return 0;
3202
3203 err:
3204 close(in);
3205 close(out);
3206 return -1;
3207 }
3208
3209 static int copyhooks(struct lxc_container *oldc, struct lxc_container *c)
3210 {
3211 int i, len, ret;
3212 struct lxc_list *it;
3213 char *cpath;
3214
3215 len = strlen(oldc->config_path) + strlen(oldc->name) + 3;
3216 cpath = alloca(len);
3217 ret = snprintf(cpath, len, "%s/%s/", oldc->config_path, oldc->name);
3218 if (ret < 0 || ret >= len)
3219 return -1;
3220
3221 for (i=0; i<NUM_LXC_HOOKS; i++) {
3222 lxc_list_for_each(it, &c->lxc_conf->hooks[i]) {
3223 char *hookname = it->elem;
3224 char *fname = strrchr(hookname, '/');
3225 char tmppath[MAXPATHLEN];
3226 if (!fname) /* relative path - we don't support, but maybe we should */
3227 return 0;
3228 if (strncmp(hookname, cpath, len - 1) != 0) {
3229 /* this hook is public - ignore */
3230 continue;
3231 }
3232 /* copy the script, and change the entry in confile */
3233 ret = snprintf(tmppath, MAXPATHLEN, "%s/%s/%s",
3234 c->config_path, c->name, fname+1);
3235 if (ret < 0 || ret >= MAXPATHLEN)
3236 return -1;
3237 ret = copy_file(it->elem, tmppath);
3238 if (ret < 0)
3239 return -1;
3240 free(it->elem);
3241 it->elem = strdup(tmppath);
3242 if (!it->elem) {
3243 ERROR("out of memory copying hook path");
3244 return -1;
3245 }
3246 }
3247 }
3248
3249 if (!clone_update_unexp_hooks(c->lxc_conf, oldc->config_path,
3250 c->config_path, oldc->name, c->name)) {
3251 ERROR("Error saving new hooks in clone");
3252 return -1;
3253 }
3254 do_lxcapi_save_config(c, NULL);
3255 return 0;
3256 }
3257
3258
3259 static int copy_fstab(struct lxc_container *oldc, struct lxc_container *c)
3260 {
3261 char newpath[MAXPATHLEN];
3262 char *oldpath = oldc->lxc_conf->fstab;
3263 int ret;
3264
3265 if (!oldpath)
3266 return 0;
3267
3268 clear_unexp_config_line(c->lxc_conf, "lxc.mount.fstab", false);
3269
3270 char *p = strrchr(oldpath, '/');
3271 if (!p)
3272 return -1;
3273 ret = snprintf(newpath, MAXPATHLEN, "%s/%s%s",
3274 c->config_path, c->name, p);
3275 if (ret < 0 || ret >= MAXPATHLEN) {
3276 ERROR("error printing new path for %s", oldpath);
3277 return -1;
3278 }
3279 if (file_exists(newpath)) {
3280 ERROR("error: fstab file %s exists", newpath);
3281 return -1;
3282 }
3283
3284 if (copy_file(oldpath, newpath) < 0) {
3285 ERROR("error: copying %s to %s", oldpath, newpath);
3286 return -1;
3287 }
3288 free(c->lxc_conf->fstab);
3289 c->lxc_conf->fstab = strdup(newpath);
3290 if (!c->lxc_conf->fstab) {
3291 ERROR("error: allocating pathname");
3292 return -1;
3293 }
3294 if (!do_append_unexp_config_line(c->lxc_conf, "lxc.mount.fstab", newpath)) {
3295 ERROR("error saving new lxctab");
3296 return -1;
3297 }
3298
3299 return 0;
3300 }
3301
3302 static void copy_rdepends(struct lxc_container *c, struct lxc_container *c0)
3303 {
3304 char path0[MAXPATHLEN], path1[MAXPATHLEN];
3305 int ret;
3306
3307 ret = snprintf(path0, MAXPATHLEN, "%s/%s/lxc_rdepends", c0->config_path,
3308 c0->name);
3309 if (ret < 0 || ret >= MAXPATHLEN) {
3310 WARN("Error copying reverse dependencies");
3311 return;
3312 }
3313 ret = snprintf(path1, MAXPATHLEN, "%s/%s/lxc_rdepends", c->config_path,
3314 c->name);
3315 if (ret < 0 || ret >= MAXPATHLEN) {
3316 WARN("Error copying reverse dependencies");
3317 return;
3318 }
3319 if (copy_file(path0, path1) < 0) {
3320 INFO("Error copying reverse dependencies");
3321 return;
3322 }
3323 }
3324
3325 static bool add_rdepends(struct lxc_container *c, struct lxc_container *c0)
3326 {
3327 int ret;
3328 char path[MAXPATHLEN];
3329 FILE *f;
3330 bool bret;
3331
3332 ret = snprintf(path, MAXPATHLEN, "%s/%s/lxc_rdepends", c->config_path,
3333 c->name);
3334 if (ret < 0 || ret >= MAXPATHLEN)
3335 return false;
3336 f = fopen(path, "a");
3337 if (!f)
3338 return false;
3339 bret = true;
3340 /* If anything goes wrong, just return an error. */
3341 if (fprintf(f, "%s\n%s\n", c0->config_path, c0->name) < 0)
3342 bret = false;
3343 if (fclose(f) != 0)
3344 bret = false;
3345 return bret;
3346 }
3347
3348 /*
3349 * If the fs natively supports snapshot clones with no penalty,
3350 * then default to those even if not requested.
3351 * Currently we only do this for btrfs.
3352 */
3353 bool should_default_to_snapshot(struct lxc_container *c0,
3354 struct lxc_container *c1)
3355 {
3356 size_t l0 = strlen(c0->config_path) + strlen(c0->name) + 2;
3357 size_t l1 = strlen(c1->config_path) + strlen(c1->name) + 2;
3358 char *p0 = alloca(l0 + 1);
3359 char *p1 = alloca(l1 + 1);
3360 char *rootfs = c0->lxc_conf->rootfs.path;
3361
3362 snprintf(p0, l0, "%s/%s", c0->config_path, c0->name);
3363 snprintf(p1, l1, "%s/%s", c1->config_path, c1->name);
3364
3365 if (!is_btrfs_fs(p0) || !is_btrfs_fs(p1))
3366 return false;
3367
3368 if (is_btrfs_subvol(rootfs) <= 0)
3369 return false;
3370
3371 return btrfs_same_fs(p0, p1) == 0;
3372 }
3373
3374 static int copy_storage(struct lxc_container *c0, struct lxc_container *c,
3375 const char *newtype, int flags, const char *bdevdata,
3376 uint64_t newsize)
3377 {
3378 struct lxc_storage *bdev;
3379 bool need_rdep;
3380
3381 if (should_default_to_snapshot(c0, c))
3382 flags |= LXC_CLONE_SNAPSHOT;
3383
3384 bdev = storage_copy(c0, c->name, c->config_path, newtype, flags,
3385 bdevdata, newsize, &need_rdep);
3386 if (!bdev) {
3387 ERROR("Error copying storage.");
3388 return -1;
3389 }
3390
3391 /* Set new rootfs. */
3392 free(c->lxc_conf->rootfs.path);
3393 c->lxc_conf->rootfs.path = strdup(bdev->src);
3394 storage_put(bdev);
3395
3396 if (!c->lxc_conf->rootfs.path) {
3397 ERROR("Out of memory while setting storage path.");
3398 return -1;
3399 }
3400
3401 /* Append a new lxc.rootfs.path entry to the unexpanded config. */
3402 clear_unexp_config_line(c->lxc_conf, "lxc.rootfs.path", false);
3403 if (!do_append_unexp_config_line(c->lxc_conf, "lxc.rootfs.path",
3404 c->lxc_conf->rootfs.path)) {
3405 ERROR("Error saving new rootfs to cloned config.");
3406 return -1;
3407 }
3408
3409 if (flags & LXC_CLONE_SNAPSHOT)
3410 copy_rdepends(c, c0);
3411 if (need_rdep) {
3412 if (!add_rdepends(c, c0))
3413 WARN("Error adding reverse dependency from %s to %s",
3414 c->name, c0->name);
3415 }
3416
3417 mod_all_rdeps(c, true);
3418
3419 return 0;
3420 }
3421
3422 struct clone_update_data {
3423 struct lxc_container *c0;
3424 struct lxc_container *c1;
3425 int flags;
3426 char **hookargs;
3427 };
3428
3429 static int clone_update_rootfs(struct clone_update_data *data)
3430 {
3431 struct lxc_container *c0 = data->c0;
3432 struct lxc_container *c = data->c1;
3433 int flags = data->flags;
3434 char **hookargs = data->hookargs;
3435 int ret = -1;
3436 char path[MAXPATHLEN];
3437 struct lxc_storage *bdev;
3438 FILE *fout;
3439 struct lxc_conf *conf = c->lxc_conf;
3440
3441 /* update hostname in rootfs */
3442 /* we're going to mount, so run in a clean namespace to simplify cleanup */
3443
3444 if (setgid(0) < 0) {
3445 ERROR("Failed to setgid to 0");
3446 return -1;
3447 }
3448 if (setuid(0) < 0) {
3449 ERROR("Failed to setuid to 0");
3450 return -1;
3451 }
3452 if (setgroups(0, NULL) < 0)
3453 WARN("Failed to clear groups");
3454
3455 if (unshare(CLONE_NEWNS) < 0)
3456 return -1;
3457 bdev = storage_init(c->lxc_conf);
3458 if (!bdev)
3459 return -1;
3460 if (strcmp(bdev->type, "dir") != 0) {
3461 if (unshare(CLONE_NEWNS) < 0) {
3462 ERROR("error unsharing mounts");
3463 storage_put(bdev);
3464 return -1;
3465 }
3466 if (detect_shared_rootfs()) {
3467 if (mount(NULL, "/", NULL, MS_SLAVE|MS_REC, NULL)) {
3468 SYSERROR("Failed to make / rslave");
3469 ERROR("Continuing...");
3470 }
3471 }
3472 if (bdev->ops->mount(bdev) < 0) {
3473 storage_put(bdev);
3474 return -1;
3475 }
3476 } else { /* TODO come up with a better way */
3477 free(bdev->dest);
3478 bdev->dest = strdup(bdev->src);
3479 }
3480
3481 if (!lxc_list_empty(&conf->hooks[LXCHOOK_CLONE])) {
3482 /* Start of environment variable setup for hooks */
3483 if (c0->name && setenv("LXC_SRC_NAME", c0->name, 1)) {
3484 SYSERROR("failed to set environment variable for source container name");
3485 }
3486 if (setenv("LXC_NAME", c->name, 1)) {
3487 SYSERROR("failed to set environment variable for container name");
3488 }
3489 if (conf->rcfile && setenv("LXC_CONFIG_FILE", conf->rcfile, 1)) {
3490 SYSERROR("failed to set environment variable for config path");
3491 }
3492 if (bdev->dest && setenv("LXC_ROOTFS_MOUNT", bdev->dest, 1)) {
3493 SYSERROR("failed to set environment variable for rootfs mount");
3494 }
3495 if (conf->rootfs.path && setenv("LXC_ROOTFS_PATH", conf->rootfs.path, 1)) {
3496 SYSERROR("failed to set environment variable for rootfs mount");
3497 }
3498
3499 if (run_lxc_hooks(c->name, "clone", conf, hookargs)) {
3500 ERROR("Error executing clone hook for %s", c->name);
3501 storage_put(bdev);
3502 return -1;
3503 }
3504 }
3505
3506 if (!(flags & LXC_CLONE_KEEPNAME)) {
3507 ret = snprintf(path, MAXPATHLEN, "%s/etc/hostname", bdev->dest);
3508 storage_put(bdev);
3509
3510 if (ret < 0 || ret >= MAXPATHLEN)
3511 return -1;
3512 if (!file_exists(path))
3513 return 0;
3514 if (!(fout = fopen(path, "w"))) {
3515 SYSERROR("unable to open %s: ignoring", path);
3516 return 0;
3517 }
3518 if (fprintf(fout, "%s", c->name) < 0) {
3519 fclose(fout);
3520 return -1;
3521 }
3522 if (fclose(fout) < 0)
3523 return -1;
3524 } else {
3525 storage_put(bdev);
3526 }
3527
3528 return 0;
3529 }
3530
3531 static int clone_update_rootfs_wrapper(void *data)
3532 {
3533 struct clone_update_data *arg = (struct clone_update_data *) data;
3534 return clone_update_rootfs(arg);
3535 }
3536
3537 /*
3538 * We want to support:
3539 sudo lxc-clone -o o1 -n n1 -s -L|-fssize fssize -v|--vgname vgname \
3540 -p|--lvprefix lvprefix -t|--fstype fstype -B backingstore
3541
3542 -s [ implies overlay]
3543 -s -B overlay
3544 -s -B aufs
3545
3546 only rootfs gets converted (copied/snapshotted) on clone.
3547 */
3548
3549 static int create_file_dirname(char *path, struct lxc_conf *conf)
3550 {
3551 char *p = strrchr(path, '/');
3552 int ret = -1;
3553
3554 if (!p)
3555 return -1;
3556 *p = '\0';
3557 ret = do_create_container_dir(path, conf);
3558 *p = '/';
3559 return ret;
3560 }
3561
3562 static struct lxc_container *do_lxcapi_clone(struct lxc_container *c, const char *newname,
3563 const char *lxcpath, int flags,
3564 const char *bdevtype, const char *bdevdata, uint64_t newsize,
3565 char **hookargs)
3566 {
3567 char newpath[MAXPATHLEN];
3568 int fd, ret;
3569 struct clone_update_data data;
3570 size_t saved_unexp_len;
3571 pid_t pid;
3572 int storage_copied = 0;
3573 char *origroot = NULL, *saved_unexp_conf = NULL;
3574 struct lxc_container *c2 = NULL;
3575
3576 if (!c || !do_lxcapi_is_defined(c))
3577 return NULL;
3578
3579 if (container_mem_lock(c))
3580 return NULL;
3581
3582 if (!is_stopped(c)) {
3583 ERROR("error: Original container (%s) is running", c->name);
3584 goto out;
3585 }
3586
3587 /* Make sure the container doesn't yet exist. */
3588 if (!newname)
3589 newname = c->name;
3590 if (!lxcpath)
3591 lxcpath = do_lxcapi_get_config_path(c);
3592 ret = snprintf(newpath, MAXPATHLEN, "%s/%s/config", lxcpath, newname);
3593 if (ret < 0 || ret >= MAXPATHLEN) {
3594 SYSERROR("clone: failed making config pathname");
3595 goto out;
3596 }
3597
3598 if (file_exists(newpath)) {
3599 ERROR("error: clone: %s exists", newpath);
3600 goto out;
3601 }
3602
3603 ret = create_file_dirname(newpath, c->lxc_conf);
3604 if (ret < 0 && errno != EEXIST) {
3605 ERROR("Error creating container dir for %s", newpath);
3606 goto out;
3607 }
3608
3609 /* Copy the configuration. Tweak it as needed. */
3610 if (c->lxc_conf->rootfs.path) {
3611 origroot = c->lxc_conf->rootfs.path;
3612 c->lxc_conf->rootfs.path = NULL;
3613 }
3614
3615 fd = open(newpath, O_WRONLY | O_CREAT | O_CLOEXEC,
3616 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
3617 if (fd < 0) {
3618 SYSERROR("Failed to open \"%s\"", newpath);
3619 goto out;
3620 }
3621
3622 saved_unexp_conf = c->lxc_conf->unexpanded_config;
3623 saved_unexp_len = c->lxc_conf->unexpanded_len;
3624 c->lxc_conf->unexpanded_config = strdup(saved_unexp_conf);
3625 if (!c->lxc_conf->unexpanded_config) {
3626 close(fd);
3627 goto out;
3628 }
3629
3630 clear_unexp_config_line(c->lxc_conf, "lxc.rootfs.path", false);
3631 write_config(fd, c->lxc_conf);
3632 close(fd);
3633 c->lxc_conf->rootfs.path = origroot;
3634 free(c->lxc_conf->unexpanded_config);
3635 c->lxc_conf->unexpanded_config = saved_unexp_conf;
3636 saved_unexp_conf = NULL;
3637 c->lxc_conf->unexpanded_len = saved_unexp_len;
3638
3639 ret = snprintf(newpath, MAXPATHLEN, "%s/%s/rootfs", lxcpath, newname);
3640 if (ret < 0 || ret >= MAXPATHLEN) {
3641 SYSERROR("clone: failed making rootfs pathname");
3642 goto out;
3643 }
3644
3645 ret = mkdir(newpath, 0755);
3646 if (ret < 0) {
3647 /* For an overlay container the rootfs is considered immutable
3648 * and will not have been removed when restoring from a
3649 * snapshot.
3650 */
3651 if (errno != ENOENT &&
3652 !(flags & LXC_STORAGE_INTERNAL_OVERLAY_RESTORE)) {
3653 SYSERROR("Failed to create directory \"%s\"", newpath);
3654 goto out;
3655 }
3656 }
3657
3658 if (am_guest_unpriv()) {
3659 if (chown_mapped_root(newpath, c->lxc_conf) < 0) {
3660 ERROR("Error chowning %s to container root", newpath);
3661 goto out;
3662 }
3663 }
3664
3665 c2 = lxc_container_new(newname, lxcpath);
3666 if (!c2) {
3667 ERROR("clone: failed to create new container (%s %s)", newname,
3668 lxcpath);
3669 goto out;
3670 }
3671
3672 /* copy/snapshot rootfs's */
3673 ret = copy_storage(c, c2, bdevtype, flags, bdevdata, newsize);
3674 if (ret < 0)
3675 goto out;
3676
3677
3678 /* update utsname */
3679 if (!(flags & LXC_CLONE_KEEPNAME)) {
3680 clear_unexp_config_line(c2->lxc_conf, "lxc.utsname", false);
3681 clear_unexp_config_line(c2->lxc_conf, "lxc.uts.name", false);
3682
3683 if (!do_set_config_item_locked(c2, "lxc.uts.name", newname)) {
3684 ERROR("Error setting new hostname");
3685 goto out;
3686 }
3687 }
3688
3689 /* copy hooks */
3690 ret = copyhooks(c, c2);
3691 if (ret < 0) {
3692 ERROR("error copying hooks");
3693 goto out;
3694 }
3695
3696 if (copy_fstab(c, c2) < 0) {
3697 ERROR("error copying fstab");
3698 goto out;
3699 }
3700
3701 /* update macaddrs */
3702 if (!(flags & LXC_CLONE_KEEPMACADDR)) {
3703 if (!network_new_hwaddrs(c2->lxc_conf)) {
3704 ERROR("Error updating mac addresses");
3705 goto out;
3706 }
3707 }
3708
3709 /* Update absolute paths for overlay mount directories. */
3710 if (ovl_update_abs_paths(c2->lxc_conf, c->config_path, c->name, lxcpath, newname) < 0)
3711 goto out;
3712
3713 /* We've now successfully created c2's storage, so clear it out if we
3714 * fail after this.
3715 */
3716 storage_copied = 1;
3717
3718 if (!c2->save_config(c2, NULL))
3719 goto out;
3720
3721 if ((pid = fork()) < 0) {
3722 SYSERROR("fork");
3723 goto out;
3724 }
3725 if (pid > 0) {
3726 ret = wait_for_pid(pid);
3727 if (ret)
3728 goto out;
3729 container_mem_unlock(c);
3730 return c2;
3731 }
3732 data.c0 = c;
3733 data.c1 = c2;
3734 data.flags = flags;
3735 data.hookargs = hookargs;
3736 if (am_guest_unpriv())
3737 ret = userns_exec_full(c->lxc_conf, clone_update_rootfs_wrapper,
3738 &data, "clone_update_rootfs_wrapper");
3739 else
3740 ret = clone_update_rootfs(&data);
3741 if (ret < 0)
3742 _exit(EXIT_FAILURE);
3743
3744 container_mem_unlock(c);
3745 _exit(EXIT_SUCCESS);
3746
3747 out:
3748 container_mem_unlock(c);
3749 if (c2) {
3750 if (!storage_copied)
3751 c2->lxc_conf->rootfs.path = NULL;
3752 c2->destroy(c2);
3753 lxc_container_put(c2);
3754 }
3755
3756 return NULL;
3757 }
3758
3759 static struct lxc_container *lxcapi_clone(struct lxc_container *c, const char *newname,
3760 const char *lxcpath, int flags,
3761 const char *bdevtype, const char *bdevdata, uint64_t newsize,
3762 char **hookargs)
3763 {
3764 struct lxc_container * ret;
3765 current_config = c ? c->lxc_conf : NULL;
3766 ret = do_lxcapi_clone(c, newname, lxcpath, flags, bdevtype, bdevdata, newsize, hookargs);
3767 current_config = NULL;
3768 return ret;
3769 }
3770
3771 static bool do_lxcapi_rename(struct lxc_container *c, const char *newname)
3772 {
3773 struct lxc_storage *bdev;
3774 struct lxc_container *newc;
3775
3776 if (!c || !c->name || !c->config_path || !c->lxc_conf)
3777 return false;
3778
3779 if (has_fs_snapshots(c) || has_snapshots(c)) {
3780 ERROR("Renaming a container with snapshots is not supported");
3781 return false;
3782 }
3783 bdev = storage_init(c->lxc_conf);
3784 if (!bdev) {
3785 ERROR("Failed to find original backing store type");
3786 return false;
3787 }
3788
3789 newc = lxcapi_clone(c, newname, c->config_path, LXC_CLONE_KEEPMACADDR, NULL, bdev->type, 0, NULL);
3790 storage_put(bdev);
3791 if (!newc) {
3792 lxc_container_put(newc);
3793 return false;
3794 }
3795
3796 if (newc && lxcapi_is_defined(newc))
3797 lxc_container_put(newc);
3798
3799 if (!container_destroy(c, NULL)) {
3800 ERROR("Could not destroy existing container %s", c->name);
3801 return false;
3802 }
3803 return true;
3804 }
3805
3806 WRAP_API_1(bool, lxcapi_rename, const char *)
3807
3808 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)
3809 {
3810 int ret;
3811
3812 if (!c)
3813 return -1;
3814
3815 current_config = c->lxc_conf;
3816
3817 ret = lxc_attach(c->name, c->config_path, exec_function, exec_payload, options, attached_process);
3818 current_config = NULL;
3819 return ret;
3820 }
3821
3822 static int do_lxcapi_attach_run_wait(struct lxc_container *c, lxc_attach_options_t *options, const char *program, const char * const argv[])
3823 {
3824 lxc_attach_command_t command;
3825 pid_t pid;
3826 int r;
3827
3828 if (!c)
3829 return -1;
3830
3831 command.program = (char*)program;
3832 command.argv = (char**)argv;
3833 r = lxc_attach(c->name, c->config_path, lxc_attach_run_command, &command, options, &pid);
3834 if (r < 0) {
3835 ERROR("ups");
3836 return r;
3837 }
3838 return lxc_wait_for_pid_status(pid);
3839 }
3840
3841 static int lxcapi_attach_run_wait(struct lxc_container *c, lxc_attach_options_t *options, const char *program, const char * const argv[])
3842 {
3843 int ret;
3844 current_config = c ? c->lxc_conf : NULL;
3845 ret = do_lxcapi_attach_run_wait(c, options, program, argv);
3846 current_config = NULL;
3847 return ret;
3848 }
3849
3850 static int get_next_index(const char *lxcpath, char *cname)
3851 {
3852 char *fname;
3853 struct stat sb;
3854 int i = 0, ret;
3855
3856 fname = alloca(strlen(lxcpath) + 20);
3857 while (1) {
3858 sprintf(fname, "%s/snap%d", lxcpath, i);
3859 ret = stat(fname, &sb);
3860 if (ret != 0)
3861 return i;
3862 i++;
3863 }
3864 }
3865
3866 static bool get_snappath_dir(struct lxc_container *c, char *snappath)
3867 {
3868 int ret;
3869 /*
3870 * If the old style snapshot path exists, use it
3871 * /var/lib/lxc -> /var/lib/lxcsnaps
3872 */
3873 ret = snprintf(snappath, MAXPATHLEN, "%ssnaps", c->config_path);
3874 if (ret < 0 || ret >= MAXPATHLEN)
3875 return false;
3876 if (dir_exists(snappath)) {
3877 ret = snprintf(snappath, MAXPATHLEN, "%ssnaps/%s", c->config_path, c->name);
3878 if (ret < 0 || ret >= MAXPATHLEN)
3879 return false;
3880 return true;
3881 }
3882
3883 /*
3884 * Use the new style path
3885 * /var/lib/lxc -> /var/lib/lxc + c->name + /snaps + \0
3886 */
3887 ret = snprintf(snappath, MAXPATHLEN, "%s/%s/snaps", c->config_path, c->name);
3888 if (ret < 0 || ret >= MAXPATHLEN)
3889 return false;
3890 return true;
3891 }
3892
3893 static int do_lxcapi_snapshot(struct lxc_container *c, const char *commentfile)
3894 {
3895 int i, flags, ret;
3896 struct lxc_container *c2;
3897 char snappath[MAXPATHLEN], newname[20];
3898
3899 if (!c || !lxcapi_is_defined(c))
3900 return -1;
3901
3902 if (!storage_can_backup(c->lxc_conf)) {
3903 ERROR("%s's backing store cannot be backed up.", c->name);
3904 ERROR("Your container must use another backing store type.");
3905 return -1;
3906 }
3907
3908 if (!get_snappath_dir(c, snappath))
3909 return -1;
3910
3911 i = get_next_index(snappath, c->name);
3912
3913 if (mkdir_p(snappath, 0755) < 0) {
3914 ERROR("Failed to create snapshot directory %s", snappath);
3915 return -1;
3916 }
3917
3918 ret = snprintf(newname, 20, "snap%d", i);
3919 if (ret < 0 || ret >= 20)
3920 return -1;
3921
3922 /*
3923 * We pass LXC_CLONE_SNAPSHOT to make sure that a rdepends file entry is
3924 * created in the original container
3925 */
3926 flags = LXC_CLONE_SNAPSHOT | LXC_CLONE_KEEPMACADDR | LXC_CLONE_KEEPNAME |
3927 LXC_CLONE_KEEPBDEVTYPE | LXC_CLONE_MAYBE_SNAPSHOT;
3928 if (storage_is_dir(c->lxc_conf)) {
3929 ERROR("Snapshot of directory-backed container requested.");
3930 ERROR("Making a copy-clone. If you do want snapshots, then");
3931 ERROR("please create an aufs or overlay clone first, snapshot that");
3932 ERROR("and keep the original container pristine.");
3933 flags &= ~LXC_CLONE_SNAPSHOT | LXC_CLONE_MAYBE_SNAPSHOT;
3934 }
3935 c2 = do_lxcapi_clone(c, newname, snappath, flags, NULL, NULL, 0, NULL);
3936 if (!c2) {
3937 ERROR("clone of %s:%s failed", c->config_path, c->name);
3938 return -1;
3939 }
3940
3941 lxc_container_put(c2);
3942
3943 /* Now write down the creation time. */
3944 time_t timer;
3945 char buffer[25];
3946 struct tm* tm_info;
3947 FILE *f;
3948
3949 time(&timer);
3950 tm_info = localtime(&timer);
3951
3952 strftime(buffer, 25, "%Y:%m:%d %H:%M:%S", tm_info);
3953
3954 char *dfnam = alloca(strlen(snappath) + strlen(newname) + 5);
3955 sprintf(dfnam, "%s/%s/ts", snappath, newname);
3956 f = fopen(dfnam, "w");
3957 if (!f) {
3958 ERROR("Failed to open %s", dfnam);
3959 return -1;
3960 }
3961 if (fprintf(f, "%s", buffer) < 0) {
3962 SYSERROR("Writing timestamp");
3963 fclose(f);
3964 return -1;
3965 }
3966 ret = fclose(f);
3967 if (ret != 0) {
3968 SYSERROR("Writing timestamp");
3969 return -1;
3970 }
3971
3972 if (commentfile) {
3973 /* $p / $name / comment \0 */
3974 int len = strlen(snappath) + strlen(newname) + 10;
3975 char *path = alloca(len);
3976 sprintf(path, "%s/%s/comment", snappath, newname);
3977 return copy_file(commentfile, path) < 0 ? -1 : i;
3978 }
3979
3980 return i;
3981 }
3982
3983 WRAP_API_1(int, lxcapi_snapshot, const char *)
3984
3985 static void lxcsnap_free(struct lxc_snapshot *s)
3986 {
3987 free(s->name);
3988 free(s->comment_pathname);
3989 free(s->timestamp);
3990 free(s->lxcpath);
3991 }
3992
3993 static char *get_snapcomment_path(char* snappath, char *name)
3994 {
3995 /* $snappath/$name/comment */
3996 int ret, len = strlen(snappath) + strlen(name) + 10;
3997 char *s = malloc(len);
3998
3999 if (s) {
4000 ret = snprintf(s, len, "%s/%s/comment", snappath, name);
4001 if (ret < 0 || ret >= len) {
4002 free(s);
4003 s = NULL;
4004 }
4005 }
4006 return s;
4007 }
4008
4009 static char *get_timestamp(char* snappath, char *name)
4010 {
4011 char path[MAXPATHLEN], *s = NULL;
4012 int ret, len;
4013 FILE *fin;
4014
4015 ret = snprintf(path, MAXPATHLEN, "%s/%s/ts", snappath, name);
4016 if (ret < 0 || ret >= MAXPATHLEN)
4017 return NULL;
4018 fin = fopen(path, "r");
4019 if (!fin)
4020 return NULL;
4021 (void) fseek(fin, 0, SEEK_END);
4022 len = ftell(fin);
4023 (void) fseek(fin, 0, SEEK_SET);
4024 if (len > 0) {
4025 s = malloc(len+1);
4026 if (s) {
4027 s[len] = '\0';
4028 if (fread(s, 1, len, fin) != len) {
4029 SYSERROR("reading timestamp");
4030 free(s);
4031 s = NULL;
4032 }
4033 }
4034 }
4035 fclose(fin);
4036 return s;
4037 }
4038
4039 static int do_lxcapi_snapshot_list(struct lxc_container *c, struct lxc_snapshot **ret_snaps)
4040 {
4041 char snappath[MAXPATHLEN], path2[MAXPATHLEN];
4042 int count = 0, ret;
4043 struct dirent *direntp;
4044 struct lxc_snapshot *snaps =NULL, *nsnaps;
4045 DIR *dir;
4046
4047 if (!c || !lxcapi_is_defined(c))
4048 return -1;
4049
4050 if (!get_snappath_dir(c, snappath)) {
4051 ERROR("path name too long");
4052 return -1;
4053 }
4054 dir = opendir(snappath);
4055 if (!dir) {
4056 INFO("failed to open %s - assuming no snapshots", snappath);
4057 return 0;
4058 }
4059
4060 while ((direntp = readdir(dir))) {
4061 if (!direntp)
4062 break;
4063
4064 if (!strcmp(direntp->d_name, "."))
4065 continue;
4066
4067 if (!strcmp(direntp->d_name, ".."))
4068 continue;
4069
4070 ret = snprintf(path2, MAXPATHLEN, "%s/%s/config", snappath, direntp->d_name);
4071 if (ret < 0 || ret >= MAXPATHLEN) {
4072 ERROR("pathname too long");
4073 goto out_free;
4074 }
4075 if (!file_exists(path2))
4076 continue;
4077 nsnaps = realloc(snaps, (count + 1)*sizeof(*snaps));
4078 if (!nsnaps) {
4079 SYSERROR("Out of memory");
4080 goto out_free;
4081 }
4082 snaps = nsnaps;
4083 snaps[count].free = lxcsnap_free;
4084 snaps[count].name = strdup(direntp->d_name);
4085 if (!snaps[count].name)
4086 goto out_free;
4087 snaps[count].lxcpath = strdup(snappath);
4088 if (!snaps[count].lxcpath) {
4089 free(snaps[count].name);
4090 goto out_free;
4091 }
4092 snaps[count].comment_pathname = get_snapcomment_path(snappath, direntp->d_name);
4093 snaps[count].timestamp = get_timestamp(snappath, direntp->d_name);
4094 count++;
4095 }
4096
4097 if (closedir(dir))
4098 WARN("failed to close directory");
4099
4100 *ret_snaps = snaps;
4101 return count;
4102
4103 out_free:
4104 if (snaps) {
4105 int i;
4106 for (i=0; i<count; i++)
4107 lxcsnap_free(&snaps[i]);
4108 free(snaps);
4109 }
4110 if (closedir(dir))
4111 WARN("failed to close directory");
4112 return -1;
4113 }
4114
4115 WRAP_API_1(int, lxcapi_snapshot_list, struct lxc_snapshot **)
4116
4117 static bool do_lxcapi_snapshot_restore(struct lxc_container *c, const char *snapname, const char *newname)
4118 {
4119 char clonelxcpath[MAXPATHLEN];
4120 int flags = 0;
4121 struct lxc_container *snap, *rest;
4122 struct lxc_storage *bdev;
4123 bool b = false;
4124
4125 if (!c || !c->name || !c->config_path)
4126 return false;
4127
4128 if (has_fs_snapshots(c)) {
4129 ERROR("container rootfs has dependent snapshots");
4130 return false;
4131 }
4132
4133 bdev = storage_init(c->lxc_conf);
4134 if (!bdev) {
4135 ERROR("Failed to find original backing store type");
4136 return false;
4137 }
4138
4139 /* For an overlay container the rootfs is considered immutable
4140 * and cannot be removed when restoring from a snapshot. We pass this
4141 * internal flag along to communicate this to various parts of the
4142 * codebase.
4143 */
4144 if (!strcmp(bdev->type, "overlay") || !strcmp(bdev->type, "overlayfs"))
4145 bdev->flags |= LXC_STORAGE_INTERNAL_OVERLAY_RESTORE;
4146
4147 if (!newname)
4148 newname = c->name;
4149
4150 if (!get_snappath_dir(c, clonelxcpath)) {
4151 storage_put(bdev);
4152 return false;
4153 }
4154 /* how should we lock this? */
4155
4156 snap = lxc_container_new(snapname, clonelxcpath);
4157 if (!snap || !lxcapi_is_defined(snap)) {
4158 ERROR("Could not open snapshot %s", snapname);
4159 if (snap)
4160 lxc_container_put(snap);
4161 storage_put(bdev);
4162 return false;
4163 }
4164
4165 if (!strcmp(c->name, newname)) {
4166 if (!container_destroy(c, bdev)) {
4167 ERROR("Could not destroy existing container %s", newname);
4168 lxc_container_put(snap);
4169 storage_put(bdev);
4170 return false;
4171 }
4172 }
4173
4174 if (strcmp(bdev->type, "dir") != 0 && strcmp(bdev->type, "loop") != 0)
4175 flags = LXC_CLONE_SNAPSHOT | LXC_CLONE_MAYBE_SNAPSHOT;
4176
4177 if (!strcmp(bdev->type, "overlay") || !strcmp(bdev->type, "overlayfs"))
4178 flags |= LXC_STORAGE_INTERNAL_OVERLAY_RESTORE;
4179 rest = lxcapi_clone(snap, newname, c->config_path, flags, bdev->type,
4180 NULL, 0, NULL);
4181 storage_put(bdev);
4182 if (rest && lxcapi_is_defined(rest))
4183 b = true;
4184 if (rest)
4185 lxc_container_put(rest);
4186
4187 lxc_container_put(snap);
4188 return b;
4189 }
4190
4191 WRAP_API_2(bool, lxcapi_snapshot_restore, const char *, const char *)
4192
4193 static bool do_snapshot_destroy(const char *snapname, const char *clonelxcpath)
4194 {
4195 struct lxc_container *snap = NULL;
4196 bool bret = false;
4197
4198 snap = lxc_container_new(snapname, clonelxcpath);
4199 if (!snap) {
4200 ERROR("Could not find snapshot %s", snapname);
4201 goto err;
4202 }
4203
4204 if (!do_lxcapi_destroy(snap)) {
4205 ERROR("Could not destroy snapshot %s", snapname);
4206 goto err;
4207 }
4208 bret = true;
4209
4210 err:
4211 if (snap)
4212 lxc_container_put(snap);
4213 return bret;
4214 }
4215
4216 static bool remove_all_snapshots(const char *path)
4217 {
4218 DIR *dir;
4219 struct dirent *direntp;
4220 bool bret = true;
4221
4222 dir = opendir(path);
4223 if (!dir) {
4224 SYSERROR("opendir on snapshot path %s", path);
4225 return false;
4226 }
4227 while ((direntp = readdir(dir))) {
4228 if (!strcmp(direntp->d_name, "."))
4229 continue;
4230 if (!strcmp(direntp->d_name, ".."))
4231 continue;
4232 if (!do_snapshot_destroy(direntp->d_name, path)) {
4233 bret = false;
4234 continue;
4235 }
4236 }
4237
4238 closedir(dir);
4239
4240 if (rmdir(path))
4241 SYSERROR("Error removing directory %s", path);
4242
4243 return bret;
4244 }
4245
4246 static bool do_lxcapi_snapshot_destroy(struct lxc_container *c, const char *snapname)
4247 {
4248 char clonelxcpath[MAXPATHLEN];
4249
4250 if (!c || !c->name || !c->config_path || !snapname)
4251 return false;
4252
4253 if (!get_snappath_dir(c, clonelxcpath))
4254 return false;
4255
4256 return do_snapshot_destroy(snapname, clonelxcpath);
4257 }
4258
4259 WRAP_API_1(bool, lxcapi_snapshot_destroy, const char *)
4260
4261 static bool do_lxcapi_snapshot_destroy_all(struct lxc_container *c)
4262 {
4263 char clonelxcpath[MAXPATHLEN];
4264
4265 if (!c || !c->name || !c->config_path)
4266 return false;
4267
4268 if (!get_snappath_dir(c, clonelxcpath))
4269 return false;
4270
4271 return remove_all_snapshots(clonelxcpath);
4272 }
4273
4274 WRAP_API(bool, lxcapi_snapshot_destroy_all)
4275
4276 static bool do_lxcapi_may_control(struct lxc_container *c)
4277 {
4278 return lxc_try_cmd(c->name, c->config_path) == 0;
4279 }
4280
4281 WRAP_API(bool, lxcapi_may_control)
4282
4283 static bool do_add_remove_node(pid_t init_pid, const char *path, bool add,
4284 struct stat *st)
4285 {
4286 int ret;
4287 char *tmp;
4288 pid_t pid;
4289 char chrootpath[MAXPATHLEN];
4290 char *directory_path = NULL;
4291
4292 pid = fork();
4293 if (pid < 0) {
4294 SYSERROR("Failed to fork()");
4295 return false;
4296 }
4297
4298 if (pid) {
4299 ret = wait_for_pid(pid);
4300 if (ret != 0) {
4301 ERROR("Failed to create device node");
4302 return false;
4303 }
4304
4305 return true;
4306 }
4307
4308 /* prepare the path */
4309 ret = snprintf(chrootpath, MAXPATHLEN, "/proc/%d/root", init_pid);
4310 if (ret < 0 || ret >= MAXPATHLEN)
4311 return false;
4312
4313 ret = chroot(chrootpath);
4314 if (ret < 0)
4315 _exit(EXIT_FAILURE);
4316
4317 ret = chdir("/");
4318 if (ret < 0)
4319 _exit(EXIT_FAILURE);
4320
4321 /* remove path if it exists */
4322 ret = faccessat(AT_FDCWD, path, F_OK, AT_SYMLINK_NOFOLLOW);
4323 if(ret == 0) {
4324 ret = unlink(path);
4325 if (ret < 0) {
4326 ERROR("%s - Failed to remove \"%s\"", strerror(errno), path);
4327 _exit(EXIT_FAILURE);
4328 }
4329 }
4330
4331 if (!add)
4332 _exit(EXIT_SUCCESS);
4333
4334 /* create any missing directories */
4335 tmp = strdup(path);
4336 if (!tmp)
4337 _exit(EXIT_FAILURE);
4338
4339 directory_path = dirname(tmp);
4340 ret = mkdir_p(directory_path, 0755);
4341 if (ret < 0 && errno != EEXIST) {
4342 ERROR("%s - Failed to create path \"%s\"", strerror(errno), directory_path);
4343 free(tmp);
4344 _exit(EXIT_FAILURE);
4345 }
4346
4347 /* create the device node */
4348 ret = mknod(path, st->st_mode, st->st_rdev);
4349 free(tmp);
4350 if (ret < 0) {
4351 ERROR("%s - Failed to create device node at \"%s\"", strerror(errno), path);
4352 _exit(EXIT_FAILURE);
4353 }
4354
4355 _exit(EXIT_SUCCESS);
4356 }
4357
4358 static bool add_remove_device_node(struct lxc_container *c, const char *src_path, const char *dest_path, bool add)
4359 {
4360 int ret;
4361 struct stat st;
4362 char value[LXC_MAX_BUFFER];
4363 const char *p;
4364
4365 /* make sure container is running */
4366 if (!do_lxcapi_is_running(c)) {
4367 ERROR("container is not running");
4368 return false;
4369 }
4370
4371 /* use src_path if dest_path is NULL otherwise use dest_path */
4372 p = dest_path ? dest_path : src_path;
4373
4374 /* make sure we can access p */
4375 if(access(p, F_OK) < 0 || stat(p, &st) < 0)
4376 return false;
4377
4378 /* continue if path is character device or block device */
4379 if (S_ISCHR(st.st_mode))
4380 ret = snprintf(value, LXC_MAX_BUFFER, "c %d:%d rwm", major(st.st_rdev), minor(st.st_rdev));
4381 else if (S_ISBLK(st.st_mode))
4382 ret = snprintf(value, LXC_MAX_BUFFER, "b %d:%d rwm", major(st.st_rdev), minor(st.st_rdev));
4383 else
4384 return false;
4385
4386 /* check snprintf return code */
4387 if (ret < 0 || ret >= LXC_MAX_BUFFER)
4388 return false;
4389
4390 if (!do_add_remove_node(do_lxcapi_init_pid(c), p, add, &st))
4391 return false;
4392
4393 /* add or remove device to/from cgroup access list */
4394 if (add) {
4395 if (!do_lxcapi_set_cgroup_item(c, "devices.allow", value)) {
4396 ERROR("set_cgroup_item failed while adding the device node");
4397 return false;
4398 }
4399 } else {
4400 if (!do_lxcapi_set_cgroup_item(c, "devices.deny", value)) {
4401 ERROR("set_cgroup_item failed while removing the device node");
4402 return false;
4403 }
4404 }
4405
4406 return true;
4407 }
4408
4409 static bool do_lxcapi_add_device_node(struct lxc_container *c, const char *src_path, const char *dest_path)
4410 {
4411 // cannot mknod if we're not privileged wrt init_user_ns
4412 if (am_host_unpriv()) {
4413 ERROR(LXC_UNPRIV_EOPNOTSUPP, __FUNCTION__);
4414 return false;
4415 }
4416 return add_remove_device_node(c, src_path, dest_path, true);
4417 }
4418
4419 WRAP_API_2(bool, lxcapi_add_device_node, const char *, const char *)
4420
4421 static bool do_lxcapi_remove_device_node(struct lxc_container *c, const char *src_path, const char *dest_path)
4422 {
4423 if (am_guest_unpriv()) {
4424 ERROR(LXC_UNPRIV_EOPNOTSUPP, __FUNCTION__);
4425 return false;
4426 }
4427 return add_remove_device_node(c, src_path, dest_path, false);
4428 }
4429
4430 WRAP_API_2(bool, lxcapi_remove_device_node, const char *, const char *)
4431
4432 static bool do_lxcapi_attach_interface(struct lxc_container *c,
4433 const char *ifname,
4434 const char *dst_ifname)
4435 {
4436 pid_t init_pid;
4437 int ret = 0;
4438
4439 if (am_guest_unpriv()) {
4440 ERROR(LXC_UNPRIV_EOPNOTSUPP, __FUNCTION__);
4441 return false;
4442 }
4443
4444 if (!ifname) {
4445 ERROR("No source interface name given");
4446 return false;
4447 }
4448
4449 ret = lxc_netdev_isup(ifname);
4450 if (ret > 0) {
4451 /* netdev of ifname is up. */
4452 ret = lxc_netdev_down(ifname);
4453 if (ret)
4454 goto err;
4455 }
4456
4457 init_pid = do_lxcapi_init_pid(c);
4458 ret = lxc_netdev_move_by_name(ifname, init_pid, dst_ifname);
4459 if (ret)
4460 goto err;
4461
4462 INFO("Moved network device \"%s\" to network namespace of %d", ifname, init_pid);
4463 return true;
4464
4465 err:
4466 return false;
4467 }
4468
4469 WRAP_API_2(bool, lxcapi_attach_interface, const char *, const char *)
4470
4471 static bool do_lxcapi_detach_interface(struct lxc_container *c,
4472 const char *ifname,
4473 const char *dst_ifname)
4474 {
4475 int ret;
4476 pid_t pid, pid_outside;
4477
4478 /*
4479 * TODO - if this is a physical device, then we need am_host_unpriv.
4480 * But for other types guest privilege suffices.
4481 */
4482 if (am_guest_unpriv()) {
4483 ERROR(LXC_UNPRIV_EOPNOTSUPP, __FUNCTION__);
4484 return false;
4485 }
4486
4487 if (!ifname) {
4488 ERROR("No source interface name given");
4489 return false;
4490 }
4491
4492 pid_outside = lxc_raw_getpid();
4493 pid = fork();
4494 if (pid < 0) {
4495 ERROR("Failed to fork");
4496 return false;
4497 }
4498
4499 if (pid == 0) { /* child */
4500 pid_t init_pid;
4501
4502 init_pid = do_lxcapi_init_pid(c);
4503 if (!switch_to_ns(init_pid, "net")) {
4504 ERROR("Failed to enter network namespace");
4505 _exit(EXIT_FAILURE);
4506 }
4507
4508 ret = lxc_netdev_isup(ifname);
4509 if (ret < 0) {
4510 ERROR("Failed to determine whether network device \"%s\" is up", ifname);
4511 _exit(EXIT_FAILURE);
4512 }
4513
4514 /* netdev of ifname is up. */
4515 if (ret) {
4516 ret = lxc_netdev_down(ifname);
4517 if (ret) {
4518 ERROR("Failed to set network device \"%s\" down", ifname);
4519 _exit(EXIT_FAILURE);
4520 }
4521 }
4522
4523 ret = lxc_netdev_move_by_name(ifname, pid_outside, dst_ifname);
4524 /* -EINVAL means there is no netdev named as ifname. */
4525 if (ret < 0) {
4526 if (ret == -EINVAL)
4527 ERROR("Network device \"%s\" not found", ifname);
4528 else
4529 ERROR("Failed to remove network device \"%s\"", ifname);
4530 _exit(EXIT_FAILURE);
4531 }
4532
4533 _exit(EXIT_SUCCESS);
4534 }
4535
4536 ret = wait_for_pid(pid);
4537 if (ret != 0)
4538 return false;
4539
4540 INFO("Moved network device \"%s\" to network namespace of %d", ifname, pid_outside);
4541 return true;
4542 }
4543
4544 WRAP_API_2(bool, lxcapi_detach_interface, const char *, const char *)
4545
4546 static int do_lxcapi_migrate(struct lxc_container *c, unsigned int cmd,
4547 struct migrate_opts *opts, unsigned int size)
4548 {
4549 int ret = -1;
4550 struct migrate_opts *valid_opts = opts;
4551 uint64_t features_to_check = 0;
4552
4553 /* If the caller has a bigger (newer) struct migrate_opts, let's make
4554 * sure that the stuff on the end is zero, i.e. that they didn't ask us
4555 * to do anything special.
4556 */
4557 if (size > sizeof(*opts)) {
4558 unsigned char *addr;
4559 unsigned char *end;
4560
4561 addr = (void *)opts + sizeof(*opts);
4562 end = (void *)opts + size;
4563 for (; addr < end; addr++) {
4564 if (*addr) {
4565 return -E2BIG;
4566 }
4567 }
4568 }
4569
4570 /* If the caller has a smaller struct, let's zero out the end for them
4571 * so we don't accidentally use bits of it that they didn't know about
4572 * to initialize.
4573 */
4574 if (size < sizeof(*opts)) {
4575 valid_opts = malloc(sizeof(*opts));
4576 if (!valid_opts)
4577 return -ENOMEM;
4578
4579 memset(valid_opts, 0, sizeof(*opts));
4580 memcpy(valid_opts, opts, size);
4581 }
4582
4583 switch (cmd) {
4584 case MIGRATE_PRE_DUMP:
4585 if (!do_lxcapi_is_running(c)) {
4586 ERROR("container is not running");
4587 goto on_error;
4588 }
4589 ret = !__criu_pre_dump(c, valid_opts);
4590 break;
4591 case MIGRATE_DUMP:
4592 if (!do_lxcapi_is_running(c)) {
4593 ERROR("container is not running");
4594 goto on_error;
4595 }
4596 ret = !__criu_dump(c, valid_opts);
4597 break;
4598 case MIGRATE_RESTORE:
4599 if (do_lxcapi_is_running(c)) {
4600 ERROR("container is already running");
4601 goto on_error;
4602 }
4603 ret = !__criu_restore(c, valid_opts);
4604 break;
4605 case MIGRATE_FEATURE_CHECK:
4606 features_to_check = valid_opts->features_to_check;
4607 ret = !__criu_check_feature(&features_to_check);
4608 if (ret) {
4609 /* Something went wrong. Let's let the caller
4610 * know which feature checks failed. */
4611 valid_opts->features_to_check = features_to_check;
4612 }
4613 break;
4614 default:
4615 ERROR("invalid migrate command %u", cmd);
4616 ret = -EINVAL;
4617 }
4618
4619 on_error:
4620 if (size < sizeof(*opts))
4621 free(valid_opts);
4622
4623 return ret;
4624 }
4625
4626 WRAP_API_3(int, lxcapi_migrate, unsigned int, struct migrate_opts *, unsigned int)
4627
4628 static bool do_lxcapi_checkpoint(struct lxc_container *c, char *directory, bool stop, bool verbose)
4629 {
4630 struct migrate_opts opts;
4631
4632 memset(&opts, 0, sizeof(opts));
4633
4634 opts.directory = directory;
4635 opts.stop = stop;
4636 opts.verbose = verbose;
4637
4638 return !do_lxcapi_migrate(c, MIGRATE_DUMP, &opts, sizeof(opts));
4639 }
4640
4641 WRAP_API_3(bool, lxcapi_checkpoint, char *, bool, bool)
4642
4643 static bool do_lxcapi_restore(struct lxc_container *c, char *directory, bool verbose)
4644 {
4645 struct migrate_opts opts;
4646
4647 memset(&opts, 0, sizeof(opts));
4648
4649 opts.directory = directory;
4650 opts.verbose = verbose;
4651
4652 return !do_lxcapi_migrate(c, MIGRATE_RESTORE, &opts, sizeof(opts));
4653 }
4654
4655 WRAP_API_2(bool, lxcapi_restore, char *, bool)
4656
4657 static int lxcapi_attach_run_waitl(struct lxc_container *c, lxc_attach_options_t *options, const char *program, const char *arg, ...)
4658 {
4659 va_list ap;
4660 const char **argv;
4661 int ret;
4662
4663 if (!c)
4664 return -1;
4665
4666 current_config = c->lxc_conf;
4667
4668 va_start(ap, arg);
4669 argv = lxc_va_arg_list_to_argv_const(ap, 1);
4670 va_end(ap);
4671
4672 if (!argv) {
4673 ERROR("Memory allocation error.");
4674 ret = -1;
4675 goto out;
4676 }
4677 argv[0] = arg;
4678
4679 ret = do_lxcapi_attach_run_wait(c, options, program, (const char * const *)argv);
4680 free((void*)argv);
4681 out:
4682 current_config = NULL;
4683 return ret;
4684 }
4685
4686 struct lxc_container *lxc_container_new(const char *name, const char *configpath)
4687 {
4688 struct lxc_container *c;
4689
4690 if (!name)
4691 return NULL;
4692
4693 c = malloc(sizeof(*c));
4694 if (!c) {
4695 fprintf(stderr, "Failed to allocate memory for %s\n", name);
4696 return NULL;
4697 }
4698 memset(c, 0, sizeof(*c));
4699
4700 if (configpath)
4701 c->config_path = strdup(configpath);
4702 else
4703 c->config_path = strdup(lxc_global_config_value("lxc.lxcpath"));
4704
4705 if (!c->config_path) {
4706 fprintf(stderr, "Failed to allocate memory for %s\n", name);
4707 goto err;
4708 }
4709
4710 remove_trailing_slashes(c->config_path);
4711 c->name = malloc(strlen(name)+1);
4712 if (!c->name) {
4713 fprintf(stderr, "Failed to allocate memory for %s\n", name);
4714 goto err;
4715 }
4716 strcpy(c->name, name);
4717
4718 c->numthreads = 1;
4719 c->slock = lxc_newlock(c->config_path, name);
4720 if (!c->slock) {
4721 fprintf(stderr, "Failed to create lock for %s\n", name);
4722 goto err;
4723 }
4724
4725 c->privlock = lxc_newlock(NULL, NULL);
4726 if (!c->privlock) {
4727 fprintf(stderr, "Failed to create private lock for %s\n", name);
4728 goto err;
4729 }
4730
4731 if (!set_config_filename(c)) {
4732 fprintf(stderr, "Failed to create config file name for %s\n", name);
4733 goto err;
4734 }
4735
4736 if (file_exists(c->configfile) && !lxcapi_load_config(c, NULL)) {
4737 fprintf(stderr, "Failed to load config for %s\n", name);
4738 goto err;
4739 }
4740
4741 if (ongoing_create(c) == 2) {
4742 ERROR("Failed to complete container creation for %s", c->name);
4743 container_destroy(c, NULL);
4744 lxcapi_clear_config(c);
4745 }
4746 c->daemonize = true;
4747 c->pidfile = NULL;
4748
4749 /* Assign the member functions. */
4750 c->is_defined = lxcapi_is_defined;
4751 c->state = lxcapi_state;
4752 c->is_running = lxcapi_is_running;
4753 c->freeze = lxcapi_freeze;
4754 c->unfreeze = lxcapi_unfreeze;
4755 c->console = lxcapi_console;
4756 c->console_getfd = lxcapi_console_getfd;
4757 c->init_pid = lxcapi_init_pid;
4758 c->load_config = lxcapi_load_config;
4759 c->want_daemonize = lxcapi_want_daemonize;
4760 c->want_close_all_fds = lxcapi_want_close_all_fds;
4761 c->start = lxcapi_start;
4762 c->startl = lxcapi_startl;
4763 c->stop = lxcapi_stop;
4764 c->config_file_name = lxcapi_config_file_name;
4765 c->wait = lxcapi_wait;
4766 c->set_config_item = lxcapi_set_config_item;
4767 c->destroy = lxcapi_destroy;
4768 c->destroy_with_snapshots = lxcapi_destroy_with_snapshots;
4769 c->rename = lxcapi_rename;
4770 c->save_config = lxcapi_save_config;
4771 c->get_keys = lxcapi_get_keys;
4772 c->create = lxcapi_create;
4773 c->createl = lxcapi_createl;
4774 c->shutdown = lxcapi_shutdown;
4775 c->reboot = lxcapi_reboot;
4776 c->reboot2 = lxcapi_reboot2;
4777 c->clear_config = lxcapi_clear_config;
4778 c->clear_config_item = lxcapi_clear_config_item;
4779 c->get_config_item = lxcapi_get_config_item;
4780 c->get_running_config_item = lxcapi_get_running_config_item;
4781 c->get_cgroup_item = lxcapi_get_cgroup_item;
4782 c->set_cgroup_item = lxcapi_set_cgroup_item;
4783 c->get_config_path = lxcapi_get_config_path;
4784 c->set_config_path = lxcapi_set_config_path;
4785 c->clone = lxcapi_clone;
4786 c->get_interfaces = lxcapi_get_interfaces;
4787 c->get_ips = lxcapi_get_ips;
4788 c->attach = lxcapi_attach;
4789 c->attach_run_wait = lxcapi_attach_run_wait;
4790 c->attach_run_waitl = lxcapi_attach_run_waitl;
4791 c->snapshot = lxcapi_snapshot;
4792 c->snapshot_list = lxcapi_snapshot_list;
4793 c->snapshot_restore = lxcapi_snapshot_restore;
4794 c->snapshot_destroy = lxcapi_snapshot_destroy;
4795 c->snapshot_destroy_all = lxcapi_snapshot_destroy_all;
4796 c->may_control = lxcapi_may_control;
4797 c->add_device_node = lxcapi_add_device_node;
4798 c->remove_device_node = lxcapi_remove_device_node;
4799 c->attach_interface = lxcapi_attach_interface;
4800 c->detach_interface = lxcapi_detach_interface;
4801 c->checkpoint = lxcapi_checkpoint;
4802 c->restore = lxcapi_restore;
4803 c->migrate = lxcapi_migrate;
4804 c->console_log = lxcapi_console_log;
4805
4806 return c;
4807
4808 err:
4809 lxc_container_free(c);
4810 return NULL;
4811 }
4812
4813 int lxc_get_wait_states(const char **states)
4814 {
4815 int i;
4816
4817 if (states)
4818 for (i=0; i<MAX_STATE; i++)
4819 states[i] = lxc_state2str(i);
4820 return MAX_STATE;
4821 }
4822
4823 /*
4824 * These next two could probably be done smarter with reusing a common function
4825 * with different iterators and tests...
4826 */
4827 int list_defined_containers(const char *lxcpath, char ***names, struct lxc_container ***cret)
4828 {
4829 DIR *dir;
4830 int i, cfound = 0, nfound = 0;
4831 struct dirent *direntp;
4832 struct lxc_container *c;
4833
4834 if (!lxcpath)
4835 lxcpath = lxc_global_config_value("lxc.lxcpath");
4836
4837 dir = opendir(lxcpath);
4838 if (!dir) {
4839 SYSERROR("opendir on lxcpath");
4840 return -1;
4841 }
4842
4843 if (cret)
4844 *cret = NULL;
4845 if (names)
4846 *names = NULL;
4847
4848 while ((direntp = readdir(dir))) {
4849 if (!direntp)
4850 break;
4851
4852 /* Ignore '.', '..' and any hidden directory. */
4853 if (!strncmp(direntp->d_name, ".", 1))
4854 continue;
4855
4856 if (!config_file_exists(lxcpath, direntp->d_name))
4857 continue;
4858
4859 if (names) {
4860 if (!add_to_array(names, direntp->d_name, cfound))
4861 goto free_bad;
4862 }
4863 cfound++;
4864
4865 if (!cret) {
4866 nfound++;
4867 continue;
4868 }
4869
4870 c = lxc_container_new(direntp->d_name, lxcpath);
4871 if (!c) {
4872 INFO("Container %s:%s has a config but could not be loaded",
4873 lxcpath, direntp->d_name);
4874 if (names)
4875 if(!remove_from_array(names, direntp->d_name, cfound--))
4876 goto free_bad;
4877 continue;
4878 }
4879 if (!do_lxcapi_is_defined(c)) {
4880 INFO("Container %s:%s has a config but is not defined",
4881 lxcpath, direntp->d_name);
4882 if (names)
4883 if(!remove_from_array(names, direntp->d_name, cfound--))
4884 goto free_bad;
4885 lxc_container_put(c);
4886 continue;
4887 }
4888
4889 if (!add_to_clist(cret, c, nfound, true)) {
4890 lxc_container_put(c);
4891 goto free_bad;
4892 }
4893 nfound++;
4894 }
4895
4896 closedir(dir);
4897 return nfound;
4898
4899 free_bad:
4900 if (names && *names) {
4901 for (i=0; i<cfound; i++)
4902 free((*names)[i]);
4903 free(*names);
4904 }
4905 if (cret && *cret) {
4906 for (i=0; i<nfound; i++)
4907 lxc_container_put((*cret)[i]);
4908 free(*cret);
4909 }
4910 closedir(dir);
4911 return -1;
4912 }
4913
4914 int list_active_containers(const char *lxcpath, char ***nret,
4915 struct lxc_container ***cret)
4916 {
4917 int i, ret = -1, cret_cnt = 0, ct_name_cnt = 0;
4918 int lxcpath_len;
4919 char *line = NULL;
4920 char **ct_name = NULL;
4921 size_t len = 0;
4922 struct lxc_container *c = NULL;
4923 bool is_hashed;
4924
4925 if (!lxcpath)
4926 lxcpath = lxc_global_config_value("lxc.lxcpath");
4927 lxcpath_len = strlen(lxcpath);
4928
4929 if (cret)
4930 *cret = NULL;
4931 if (nret)
4932 *nret = NULL;
4933
4934 FILE *f = fopen("/proc/net/unix", "r");
4935 if (!f)
4936 return -1;
4937
4938 while (getline(&line, &len, f) != -1) {
4939
4940 char *p = strrchr(line, ' '), *p2;
4941 if (!p)
4942 continue;
4943 p++;
4944 if (*p != 0x40)
4945 continue;
4946 p++;
4947
4948 is_hashed = false;
4949 if (strncmp(p, lxcpath, lxcpath_len) == 0) {
4950 p += lxcpath_len;
4951 } else if (strncmp(p, "lxc/", 4) == 0) {
4952 p += 4;
4953 is_hashed = true;
4954 } else {
4955 continue;
4956 }
4957
4958 while (*p == '/')
4959 p++;
4960
4961 /* Now p is the start of lxc_name. */
4962 p2 = strchr(p, '/');
4963 if (!p2 || strncmp(p2, "/command", 8) != 0)
4964 continue;
4965 *p2 = '\0';
4966
4967 if (is_hashed) {
4968 char *recvpath = lxc_cmd_get_lxcpath(p);
4969 if (!recvpath)
4970 continue;
4971 if (strncmp(lxcpath, recvpath, lxcpath_len) != 0)
4972 continue;
4973 p = lxc_cmd_get_name(p);
4974 if (!p)
4975 continue;
4976 }
4977
4978 if (array_contains(&ct_name, p, ct_name_cnt))
4979 continue;
4980
4981 if (!add_to_array(&ct_name, p, ct_name_cnt))
4982 goto free_cret_list;
4983
4984 ct_name_cnt++;
4985
4986 if (!cret)
4987 continue;
4988
4989 c = lxc_container_new(p, lxcpath);
4990 if (!c) {
4991 INFO("Container %s:%s is running but could not be loaded",
4992 lxcpath, p);
4993 remove_from_array(&ct_name, p, ct_name_cnt--);
4994 continue;
4995 }
4996
4997 /*
4998 * If this is an anonymous container, then is_defined *can*
4999 * return false. So we don't do that check. Count on the
5000 * fact that the command socket exists.
5001 */
5002
5003 if (!add_to_clist(cret, c, cret_cnt, true)) {
5004 lxc_container_put(c);
5005 goto free_cret_list;
5006 }
5007 cret_cnt++;
5008 }
5009
5010 if (nret && cret && cret_cnt != ct_name_cnt) {
5011 if (c)
5012 lxc_container_put(c);
5013 goto free_cret_list;
5014 }
5015
5016 ret = ct_name_cnt;
5017 if (nret)
5018 *nret = ct_name;
5019 else
5020 goto free_ct_name;
5021 goto out;
5022
5023 free_cret_list:
5024 if (cret && *cret) {
5025 for (i = 0; i < cret_cnt; i++)
5026 lxc_container_put((*cret)[i]);
5027 free(*cret);
5028 }
5029
5030 free_ct_name:
5031 if (ct_name) {
5032 for (i = 0; i < ct_name_cnt; i++)
5033 free(ct_name[i]);
5034 free(ct_name);
5035 }
5036
5037 out:
5038 free(line);
5039
5040 fclose(f);
5041 return ret;
5042 }
5043
5044 int list_all_containers(const char *lxcpath, char ***nret,
5045 struct lxc_container ***cret)
5046 {
5047 int i, ret, active_cnt, ct_cnt, ct_list_cnt;
5048 char **active_name;
5049 char **ct_name;
5050 struct lxc_container **ct_list = NULL;
5051
5052 ct_cnt = list_defined_containers(lxcpath, &ct_name, NULL);
5053 if (ct_cnt < 0)
5054 return ct_cnt;
5055
5056 active_cnt = list_active_containers(lxcpath, &active_name, NULL);
5057 if (active_cnt < 0) {
5058 ret = active_cnt;
5059 goto free_ct_name;
5060 }
5061
5062 for (i = 0; i < active_cnt; i++) {
5063 if (!array_contains(&ct_name, active_name[i], ct_cnt)) {
5064 if (!add_to_array(&ct_name, active_name[i], ct_cnt)) {
5065 ret = -1;
5066 goto free_active_name;
5067 }
5068 ct_cnt++;
5069 }
5070 free(active_name[i]);
5071 active_name[i] = NULL;
5072 }
5073 free(active_name);
5074 active_name = NULL;
5075 active_cnt = 0;
5076
5077 for (i = 0, ct_list_cnt = 0; i < ct_cnt && cret; i++) {
5078 struct lxc_container *c;
5079
5080 c = lxc_container_new(ct_name[i], lxcpath);
5081 if (!c) {
5082 WARN("Container %s:%s could not be loaded", lxcpath, ct_name[i]);
5083 remove_from_array(&ct_name, ct_name[i], ct_cnt--);
5084 continue;
5085 }
5086
5087 if (!add_to_clist(&ct_list, c, ct_list_cnt, false)) {
5088 lxc_container_put(c);
5089 ret = -1;
5090 goto free_ct_list;
5091 }
5092 ct_list_cnt++;
5093 }
5094
5095 if (cret)
5096 *cret = ct_list;
5097
5098 if (nret)
5099 *nret = ct_name;
5100 else {
5101 ret = ct_cnt;
5102 goto free_ct_name;
5103 }
5104 return ct_cnt;
5105
5106 free_ct_list:
5107 for (i = 0; i < ct_list_cnt; i++) {
5108 lxc_container_put(ct_list[i]);
5109 }
5110 free(ct_list);
5111
5112 free_active_name:
5113 for (i = 0; i < active_cnt; i++) {
5114 free(active_name[i]);
5115 }
5116 free(active_name);
5117
5118 free_ct_name:
5119 for (i = 0; i < ct_cnt; i++) {
5120 free(ct_name[i]);
5121 }
5122 free(ct_name);
5123 return ret;
5124 }
5125
5126 bool lxc_config_item_is_supported(const char *key)
5127 {
5128 return !!lxc_get_config(key);
5129 }