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