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