]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/lxccontainer.h
tree-wide: use lxc_drop_groups() instead of lxc_setgroups(0, NULL)
[mirror_lxc.git] / src / lxc / lxccontainer.h
CommitLineData
cc73685d 1/* SPDX-License-Identifier: LGPL-2.1+ */
250b1eec 2
9be53773
SH
3#ifndef __LXC_CONTAINER_H
4#define __LXC_CONTAINER_H
d38dd64a 5
72d0e1cb 6#include <malloc.h>
95ee490b 7#include <semaphore.h>
72d0e1cb 8#include <stdbool.h>
d659597e 9#include <stdint.h>
d38dd64a 10#include <stdlib.h>
72d0e1cb 11
f2363e38
ÇO
12#include <lxc/attach_options.h>
13
579e783e
AM
14#ifdef __cplusplus
15extern "C" {
16#endif
17
953e611c 18#define LXC_CLONE_KEEPNAME (1 << 0) /*!< Do not edit the rootfs to change the hostname */
619256b5
ÇO
19#define LXC_CLONE_KEEPMACADDR (1 << 1) /*!< Do not change the MAC address on network interfaces */
20#define LXC_CLONE_SNAPSHOT (1 << 2) /*!< Snapshot the original filesystem(s) */
0a83cbbb
SH
21#define LXC_CLONE_KEEPBDEVTYPE (1 << 3) /*!< Use the same bdev type */
22#define LXC_CLONE_MAYBE_SNAPSHOT (1 << 4) /*!< Snapshot only if bdev supports it, else copy */
23#define LXC_CLONE_MAXFLAGS (1 << 5) /*!< Number of \c LXC_CLONE_* flags */
754076f5 24#define LXC_CLONE_ALLOW_RUNNING (1 << 6) /*!< allow snapshot creation even if source container is running */
953e611c
JH
25#define LXC_CREATE_QUIET (1 << 0) /*!< Redirect \c stdin to \c /dev/zero and \c stdout and \c stderr to \c /dev/null */
26#define LXC_CREATE_MAXFLAGS (1 << 1) /*!< Number of \c LXC_CREATE* flags */
29df56cd 27#define LXC_MOUNT_API_V1 1
dc23c1c8 28
1897e3bc
SH
29struct bdev_specs;
30
f5dd1d53
SH
31struct lxc_snapshot;
32
95ee490b
SG
33struct lxc_lock;
34
aef3d51e
TA
35struct migrate_opts;
36
191d43cc
CB
37struct lxc_console_log;
38
29df56cd
LT
39struct lxc_mount {
40 int version;
41};
42
953e611c
JH
43/*!
44 * An LXC container.
e2ae7f6d
SH
45 *
46 * Note that changing the order of struct members is an API change, as callers
47 * will end up having the wrong offset when calling a function. So when making
48 * changes, whenever possible stick to simply appending new members.
953e611c 49 */
72d0e1cb 50struct lxc_container {
1a0e70ac 51 /* private fields */
953e611c
JH
52 /*!
53 * \private
54 * Name of container.
55 */
72d0e1cb 56 char *name;
953e611c
JH
57
58 /*!
59 * \private
60 * Full path to configuration file.
61 */
72d0e1cb 62 char *configfile;
953e611c 63
72cf75fa
QH
64 /*!
65 * \private
66 * File to store pid.
67 */
68 char *pidfile;
69
953e611c
JH
70 /*!
71 * \private
72 * Container semaphore lock.
73 */
df271a59 74 struct lxc_lock *slock;
953e611c
JH
75
76 /*!
77 * \private
78 * Container private lock.
79 */
df271a59 80 struct lxc_lock *privlock;
953e611c
JH
81
82 /*!
83 * \private
84 * Number of references to this container.
85 * \note protected by privlock.
86 */
87 int numthreads;
88
89 /*!
90 * \private
91 * Container configuration.
92 *
50e3e83d 93 * \internal TODO: do we want the whole lxc_handler?
953e611c
JH
94 */
95 struct lxc_conf *lxc_conf;
72d0e1cb 96
1a0e70ac 97 /* public fields */
953e611c 98 /*! Human-readable string representing last error */
72d0e1cb 99 char *error_string;
953e611c
JH
100
101 /*! Last error number */
72d0e1cb 102 int error_num;
953e611c
JH
103
104 /*! Whether container wishes to be daemonized */
540f932a 105 bool daemonize;
72d0e1cb 106
953e611c 107 /*! Full path to configuration file */
2a59a681
SH
108 char *config_path;
109
953e611c
JH
110 /*!
111 * \brief Determine if \c /var/lib/lxc/$name/config exists.
112 *
113 * \param c Container.
114 *
115 * \return \c true if container is defined, else \c false.
116 */
117 bool (*is_defined)(struct lxc_container *c);
118
119 /*!
120 * \brief Determine state of container.
121 *
122 * \param c Container.
123 *
124 * \return Static upper-case string representing state of container.
125 *
126 * \note Returned string must not be freed.
127 */
72d0e1cb 128 const char *(*state)(struct lxc_container *c);
953e611c
JH
129
130 /*!
131 * \brief Determine if container is running.
132 *
133 * \param c Container.
134 *
135 * \return \c true on success, else \c false.
136 */
137 bool (*is_running)(struct lxc_container *c);
138
139 /*!
140 * \brief Freeze running container.
141 *
142 * \param c Container.
143 *
144 * \return \c true on success, else \c false.
145 */
72d0e1cb 146 bool (*freeze)(struct lxc_container *c);
953e611c
JH
147
148 /*!
149 * \brief Thaw a frozen container.
150 *
151 * \param c Container.
152 *
153 * \return \c true on success, else \c false.
154 */
72d0e1cb 155 bool (*unfreeze)(struct lxc_container *c);
953e611c
JH
156
157 /*!
158 * \brief Determine process ID of the containers init process.
159 *
160 * \param c Container.
f7f1ba77 161 *
953e611c
JH
162 * \return pid of init process as seen from outside the
163 * container.
164 */
72d0e1cb 165 pid_t (*init_pid)(struct lxc_container *c);
953e611c
JH
166
167 /*!
168 * \brief Load the specified configuration for the container.
169 *
170 * \param c Container.
171 * \param alt_file Full path to alternate configuration file, or
172 * \c NULL to use the default configuration file.
173 *
174 * \return \c true on success, else \c false.
175 */
12a50cc6 176 bool (*load_config)(struct lxc_container *c, const char *alt_file);
953e611c
JH
177
178 /*!
179 * \brief Start the container.
180 *
181 * \param c Container.
182 * \param useinit Use lxcinit rather than \c /sbin/init.
183 * \param argv Array of arguments to pass to init.
184 *
185 * \return \c true on success, else \c false.
186 */
12a50cc6 187 bool (*start)(struct lxc_container *c, int useinit, char * const argv[]);
953e611c
JH
188
189 /*!
190 * \brief Start the container (list variant).
191 *
192 * \param c Container.
193 * \param useinit Use lxcinit rather than \c /sbin/init.
194 * \param ... Command-line to pass to init (must end in \c NULL).
195 *
196 * \return \c true on success, else \c false.
197 *
198 * \note Identical to \ref start except that that the init
199 * arguments are specified via a list rather than an array of
200 * pointers.
201 */
72d0e1cb 202 bool (*startl)(struct lxc_container *c, int useinit, ...);
953e611c
JH
203
204 /*!
205 * \brief Stop the container.
206 *
207 * \param c Container.
208 *
209 * \return \c true on success, else \c false.
210 */
72d0e1cb 211 bool (*stop)(struct lxc_container *c);
953e611c
JH
212
213 /*!
289cdc73 214 * \brief Change whether the container wants to run disconnected
953e611c
JH
215 * from the terminal.
216 *
217 * \param c Container.
c9d845b5 218 * \param state Value for the daemonize bit (0 or 1).
953e611c 219 *
289cdc73 220 * \return \c true on success, else \c false.
953e611c 221 */
540f932a 222 bool (*want_daemonize)(struct lxc_container *c, bool state);
953e611c
JH
223
224 /*!
289cdc73 225 * \brief Change whether the container wishes all file descriptors
953e611c
JH
226 * to be closed on startup.
227 *
228 * \param c Container.
c9d845b5 229 * \param state Value for the close_all_fds bit (0 or 1).
953e611c 230 *
289cdc73 231 * \return \c true on success, else \c false.
953e611c 232 */
540f932a 233 bool (*want_close_all_fds)(struct lxc_container *c, bool state);
953e611c
JH
234
235 /*!
236 * \brief Return current config file name.
237 *
238 * \param c Container.
239 *
240 * \return config file name, or \c NULL on error.
241 *
242 * \note The result is allocated, so the caller must free the result.
243 */
72d0e1cb 244 char *(*config_file_name)(struct lxc_container *c);
953e611c
JH
245
246 /*!
247 * \brief Wait for container to reach a particular state.
248 *
249 * \param c Container.
250 * \param state State to wait for.
251 * \param timeout Timeout in seconds.
252 *
253 * \return \c true if state reached within \p timeout, else \c false.
254 *
255 * \note A \p timeout of \c -1 means wait forever. A \p timeout
256 * of \c 0 means do not wait.
257 */
12a50cc6 258 bool (*wait)(struct lxc_container *c, const char *state, int timeout);
953e611c
JH
259
260 /*!
261 * \brief Set a key/value configuration option.
262 *
263 * \param c Container.
264 * \param key Name of option to set.
265 * \param value Value of \p name to set.
266 *
267 * \return \c true on success, else \c false.
268 */
12a50cc6 269 bool (*set_config_item)(struct lxc_container *c, const char *key, const char *value);
953e611c
JH
270
271 /*!
272 * \brief Delete the container.
273 *
274 * \param c Container.
275 *
276 * \return \c true on success, else \c false.
277 *
278 * \note Container must be stopped and have no dependent snapshots.
279 */
72d0e1cb 280 bool (*destroy)(struct lxc_container *c);
953e611c
JH
281
282 /*!
056da80e 283 * \brief Save configuration to a file.
953e611c
JH
284 *
285 * \param c Container.
286 * \param alt_file Full path to file to save configuration in.
287 *
288 * \return \c true on success, else \c false.
289 */
12a50cc6 290 bool (*save_config)(struct lxc_container *c, const char *alt_file);
953e611c
JH
291
292 /*!
293 * \brief Create a container.
294 *
295 * \param c Container (with lxcpath, name and a starting
296 * configuration set).
297 * \param t Template to execute to instantiate the root
298 * filesystem and adjust the configuration.
299 * \param bdevtype Backing store type to use (if \c NULL, \c dir will be used).
300 * \param specs Additional parameters for the backing store (for
301 * example LVM volume group to use).
302 * \param flags \c LXC_CREATE_* options (currently only \ref
303 * LXC_CREATE_QUIET is supported).
304 * \param argv Arguments to pass to the template, terminated by \c NULL (if no
305 * arguments are required, just pass \c NULL).
306 *
307 * \return \c true on success, else \c false.
308 */
1897e3bc 309 bool (*create)(struct lxc_container *c, const char *t, const char *bdevtype,
dc23c1c8 310 struct bdev_specs *specs, int flags, char *const argv[]);
953e611c
JH
311
312 /*!
313 * \brief Create a container (list variant).
314 *
315 * \param c Container (with lxcpath, name and a starting
316 * configuration set).
317 * \param t Template to execute to instantiate the root
318 * filesystem and adjust the configuration.
319 * \param bdevtype Backing store type to use (if \c NULL, \c dir will be used).
320 * \param specs Additional parameters for the backing store (for
321 * example LVM volume group to use).
322 * \param flags \c LXC_CREATE_* options (currently only \ref
323 * LXC_CREATE_QUIET is supported).
324 * \param ... Command-line to pass to init (must end in \c NULL).
325 *
326 * \return \c true on success, else \c false.
327 *
328 * \note Identical to \ref create except that the template
329 * arguments are specified as a list rather than an array of
330 * pointers.
331 */
1897e3bc 332 bool (*createl)(struct lxc_container *c, const char *t, const char *bdevtype,
dc23c1c8 333 struct bdev_specs *specs, int flags, ...);
953e611c 334
06e5650e
ÇO
335 /*!
336 * \brief Rename a container
337 *
338 * \param c Container.
339 * \param newname New name to be used for the container.
340 *
341 * \return \c true on success, else \c false.
342 */
343 bool (*rename)(struct lxc_container *c, const char *newname);
344
953e611c
JH
345 /*!
346 * \brief Request the container reboot by sending it \c SIGINT.
347 *
348 * \param c Container.
349 *
350 * \return \c true if reboot request successful, else \c false.
351 */
3e625e2d 352 bool (*reboot)(struct lxc_container *c);
953e611c
JH
353
354 /*!
355 * \brief Request the container shutdown by sending it \c
356 * SIGPWR.
357 *
358 * \param c Container.
0464b881
SG
359 * \param timeout Seconds to wait before returning false.
360 * (-1 to wait forever, 0 to avoid waiting).
953e611c 361 *
0464b881 362 * \return \c true if the container was shutdown successfully, else \c false.
953e611c 363 */
72d0e1cb 364 bool (*shutdown)(struct lxc_container *c, int timeout);
953e611c
JH
365
366 /*!
367 * \brief Completely clear the containers in-memory configuration.
368 *
369 * \param c Container.
370 */
4df7f012 371 void (*clear_config)(struct lxc_container *c);
953e611c
JH
372
373 /*!
374 * \brief Clear a configuration item.
375 *
376 * \param c Container.
377 * \param key Name of option to clear.
378 *
379 * \return \c true on success, else \c false.
380 *
381 * \note Analog of \ref set_config_item.
382 */
12a50cc6 383 bool (*clear_config_item)(struct lxc_container *c, const char *key);
953e611c
JH
384
385 /*!
386 * \brief Retrieve the value of a config item.
387 *
388 * \param c Container.
389 * \param key Name of option to get.
390 * \param[out] retv Caller-allocated buffer to write value of \p key
391 * into (or \c NULL to determine length of value).
392 * \param inlen Length of \p retv (may be zero).
393 *
394 * \return Length of config items value, or < 0 on error.
395 *
396 * \note The caller can (and should) determine how large a buffer to allocate for
397 * \p retv by initially passing its value as \c NULL and considering the return value.
398 * This function can then be called again passing a newly-allocated suitably-sized buffer.
399 * \note If \p retv is NULL, \p inlen is ignored.
13a4215b 400 * \note If \p inlen is smaller than required, nothing will be written to \p retv and still return
401 * the length of config item value.
953e611c 402 */
12a50cc6 403 int (*get_config_item)(struct lxc_container *c, const char *key, char *retv, int inlen);
953e611c 404
8ac18377
ÇO
405
406 /*!
407 * \brief Retrieve the value of a config item from running container.
408 *
409 * \param c Container.
410 * \param key Name of option to get.
411 *
412 * \return the item or NULL on error.
413 *
414 * \note Returned string must be freed by the caller.
415 */
416 char* (*get_running_config_item)(struct lxc_container *c, const char *key);
417
953e611c
JH
418 /*!
419 * \brief Retrieve a list of config item keys given a key
420 * prefix.
421 *
422 * \param c Container.
423 * \param key Name of option to get.
424 * \param[out] retv Caller-allocated buffer to write list of keys to
425 * (or \c NULL to determine overall length of keys list).
426 * \param inlen Length of \p retv (may be zero).
427 *
428 * \return Length of keys list, or < 0 on error.
429 *
430 * \note The list values written to \p retv are separated by
431 * a newline character ('\\n').
432 * \note The caller can (and should) determine how large a buffer to allocate for
433 * \p retv by initially passing its value as \c NULL and considering the return value.
434 * This function can then be called again passing a newly-allocated suitably-sized buffer.
435 * \note If \p retv is NULL, \p inlen is ignored.
436 * \note If \p inlen is smaller than required, the value written
437 * to \p retv will be truncated.
438 */
12a50cc6 439 int (*get_keys)(struct lxc_container *c, const char *key, char *retv, int inlen);
953e611c
JH
440
441 /*!
442 * \brief Obtain a list of network interfaces.
443 * \param c Container.
444 *
445 * \return Newly-allocated array of network interfaces, or \c
446 * NULL on error.
447 *
448 * \note The returned array is allocated, so the caller must free it.
449 * \note The returned array is terminated with a \c NULL entry.
450 */
799f29ab 451 char** (*get_interfaces)(struct lxc_container *c);
953e611c
JH
452
453 /*!
454 * \brief Determine the list of container IP addresses.
455 *
456 * \param c Container.
457 * \param interface Network interface name to consider.
458 * \param family Network family (for example "inet", "inet6").
459 * \param scope IPv6 scope id (ignored if \p family is not "inet6").
460 *
461 * \return Newly-allocated array of network interfaces, or \c
462 * NULL on error.
463 *
464 * \note The returned array is allocated, so the caller must free it.
465 * \note The returned array is terminated with a \c NULL entry.
466 */
f0ca2726 467 char** (*get_ips)(struct lxc_container *c, const char* interface, const char* family, int scope);
953e611c
JH
468
469 /*!
470 * \brief Retrieve the specified cgroup subsystem value for the container.
471 *
472 * \param c Container.
473 * \param subsys cgroup subsystem to retrieve.
474 * \param[out] retv Caller-allocated buffer to write value of \p
475 * subsys into (or \c NULL to determine length of value).
476 * \param inlen length of \p retv (may be zero).
477 *
478 * \return Length of \p subsys value, or < 0 on error.
479 *
480 * \note If \p retv is \c NULL, \p inlen is ignored.
481 * \note If \p inlen is smaller than required, the value written
482 * to \p retv will be truncated.
794dd120
SH
483 */
484 int (*get_cgroup_item)(struct lxc_container *c, const char *subsys, char *retv, int inlen);
953e611c
JH
485
486 /*!
487 * \brief Set the specified cgroup subsystem value for the container.
488 *
489 * \param c Container.
490 * \param subsys cgroup subsystem to consider.
491 * \param value Value to set for \p subsys.
492 *
493 * \return \c true on success, else \c false.
494 */
794dd120 495 bool (*set_cgroup_item)(struct lxc_container *c, const char *subsys, const char *value);
72d0e1cb 496
953e611c
JH
497 /*!
498 * \brief Determine full path to the containers configuration file.
499 * Each container can have a custom configuration path. However
500 * by default it will be set to either the \c LXCPATH configure
501 * variable, or the lxcpath value in the \c LXC_GLOBAL_CONF configuration
502 * file (i.e. \c /etc/lxc/lxc.conf).
503 * The value for a specific container can be changed using
504 * \ref set_config_path. There is no other way to specify this in general at the moment.
505 *
506 * \param c Container.
507 *
508 * \return Static string representing full path to configuration
509 * file.
510 *
511 * \note Returned string must not be freed.
2a59a681
SH
512 */
513 const char *(*get_config_path)(struct lxc_container *c);
953e611c
JH
514
515 /*!
516 * \brief Set the full path to the containers configuration
517 * file.
518 *
519 * \param c Container.
520 * \param path Full path to configuration file.
521 *
522 * \return \c true on success, else \c false.
523 */
2a59a681
SH
524 bool (*set_config_path)(struct lxc_container *c, const char *path);
525
953e611c
JH
526 /*!
527 * \brief Copy a stopped container.
528 *
529 * \param c Original container.
530 * \param newname New name for the container. If \c NULL, the same
531 * name is used and a new lxcpath MUST be specified.
532 * \param lxcpath lxcpath in which to create the new container. If
533 * \c NULL, the original container's lxcpath will be used.
534 * (XXX: should we use the default instead?)
535 * \param flags Additional \c LXC_CLONE* flags to change the cloning behaviour:
536 * - \ref LXC_CLONE_KEEPNAME
953e611c
JH
537 * - \ref LXC_CLONE_KEEPMACADDR
538 * - \ref LXC_CLONE_SNAPSHOT
539 * \param bdevtype Optionally force the cloned bdevtype to a specified plugin.
540 * By default the original is used (subject to snapshot requirements).
541 * \param bdevdata Information about how to create the new storage
542 * (i.e. fstype and fsdata).
cf642e10 543 * \param newsize In case of a block device backing store, an
953e611c
JH
544 * optional size. If \c 0, the original backing store's size will
545 * be used if possible. Note this only applies to the rootfs. For
546 * any other filesystems, the original size will be duplicated.
547 * \param hookargs Additional arguments to pass to the clone hook script.
548 *
549 * \return Newly-allocated copy of container \p c, or \p NULL on
550 * error.
551 *
552 * \note If devtype was not specified, and \p flags contains \ref
553 * LXC_CLONE_SNAPSHOT then use the native \p bdevtype if possible,
554 * else use an overlayfs.
9be53773
SH
555 */
556 struct lxc_container *(*clone)(struct lxc_container *c, const char *newname,
953e611c 557 const char *lxcpath, int flags, const char *bdevtype,
d659597e 558 const char *bdevdata, uint64_t newsize, char **hookargs);
9be53773 559
953e611c
JH
560 /*!
561 * \brief Allocate a console tty for the container.
0115f8fd 562 *
953e611c
JH
563 * \param c Container.
564 * \param[in,out] ttynum Terminal number to attempt to allocate,
565 * or \c -1 to allocate the first available tty.
36a94ce8 566 * \param[out] ptxfd File descriptor referring to the ptx side of the pty.
0115f8fd 567 *
953e611c
JH
568 * \return tty file descriptor number on success, or \c -1 on
569 * failure.
570 *
571 * \note On successful return, \p ttynum will contain the tty number
572 * that was allocated.
573 * \note The returned file descriptor is used to keep the tty
574 * allocated. The caller should call close(2) on the returned file
575 * descriptor when no longer required so that it may be allocated
576 * by another caller.
0115f8fd 577 */
36a94ce8 578 int (*console_getfd)(struct lxc_container *c, int *ttynum, int *ptxfd);
b5159817 579
953e611c
JH
580 /*!
581 * \brief Allocate and run a console tty.
582 *
583 * \param c Container.
584 * \param ttynum Terminal number to attempt to allocate, \c -1 to
585 * allocate the first available tty or \c 0 to allocate the
586 * console.
587 * \param stdinfd File descriptor to read input from.
588 * \param stdoutfd File descriptor to write output to.
589 * \param stderrfd File descriptor to write error output to.
590 * \param escape The escape character (1 == 'a', 2 == 'b', ...).
b5159817 591 *
953e611c 592 * \return \c 0 on success, \c -1 on failure.
b5159817 593 *
953e611c
JH
594 * \note This function will not return until the console has been
595 * exited by the user.
b5159817
DE
596 */
597 int (*console)(struct lxc_container *c, int ttynum,
953e611c 598 int stdinfd, int stdoutfd, int stderrfd, int escape);
0115f8fd 599
953e611c
JH
600 /*!
601 * \brief Create a sub-process attached to a container and run
602 * a function inside it.
603 *
604 * \param c Container.
605 * \param exec_function Function to run.
606 * \param exec_payload Data to pass to \p exec_function.
607 * \param options \ref lxc_attach_options_t.
608 * \param[out] attached_process Process ID of process running inside
609 * container \p c that is running \p exec_function.
610 *
611 * \return \c 0 on success, \c -1 on error.
612 */
613 int (*attach)(struct lxc_container *c, lxc_attach_exec_t exec_function,
614 void *exec_payload, lxc_attach_options_t *options, pid_t *attached_process);
a0e93eeb 615
953e611c
JH
616 /*!
617 * \brief Run a program inside a container and wait for it to exit.
618 *
619 * \param c Container.
620 * \param options See \ref attach options.
621 * \param program Full path inside container of program to run.
622 * \param argv Array of arguments to pass to \p program.
623 *
624 * \return \c waitpid(2) status of exited process that ran \p
625 * program, or \c -1 on error.
626 */
a0e93eeb 627 int (*attach_run_wait)(struct lxc_container *c, lxc_attach_options_t *options, const char *program, const char * const argv[]);
f5dd1d53 628
953e611c
JH
629 /*!
630 * \brief Run a program inside a container and wait for it to exit (list variant).
631 *
632 * \param c Container.
633 * \param options See \ref attach options.
634 * \param program Full path inside container of program to run.
635 * \param ... Command-line to pass to \p program (must end in \c NULL).
636 *
637 * \return \c waitpid(2) status of exited process that ran \p
638 * program, or \c -1 on error.
639 */
640 int (*attach_run_waitl)(struct lxc_container *c, lxc_attach_options_t *options, const char *program, const char *arg, ...);
f5dd1d53 641
953e611c
JH
642 /*!
643 * \brief Create a container snapshot.
644 *
645 * Assuming default paths, snapshots will be created as
18aa217b 646 * \c /var/lib/lxc/\<c\>/snaps/snap\<n\>
953e611c
JH
647 * where \c \<c\> represents the container name and \c \<n\>
648 * represents the zero-based snapshot number.
649 *
650 * \param c Container.
651 * \param commentfile Full path to file containing a description
652 * of the snapshot.
653 *
654 * \return -1 on error, or zero-based snapshot number.
f5dd1d53 655 *
953e611c 656 * \note \p commentfile may be \c NULL but this is discouraged.
f5dd1d53 657 */
f0ca2726 658 int (*snapshot)(struct lxc_container *c, const char *commentfile);
f5dd1d53 659
953e611c
JH
660 /*!
661 * \brief Obtain a list of container snapshots.
662 *
663 * \param c Container.
664 * \param[out] snapshots Dynamically-allocated Array of lxc_snapshot's.
f5dd1d53 665 *
953e611c 666 * \return Number of snapshots.
f5dd1d53 667 *
953e611c
JH
668 * \note The array returned in \p snapshots is allocated, so the caller must free it.
669 * \note To free an individual snapshot as returned in \p
670 * snapshots, call the snapshots \c free function (see \c src/tests/snapshot.c for an example).
671 */
672 int (*snapshot_list)(struct lxc_container *c, struct lxc_snapshot **snapshots);
673
674 /*!
675 * \brief Create a new container based on a snapshot.
f5dd1d53 676 *
953e611c
JH
677 * The restored container will be a copy (not snapshot) of the snapshot,
678 * and restored in the lxcpath of the original container.
679 * \param c Container.
680 * \param snapname Name of snapshot.
681 * \param newname Name to be used for the restored snapshot.
682 * \return \c true on success, else \c false.
683 * \warning If \p newname is the same as the current container
684 * name, the container will be destroyed. However, this will
1f92162d 685 * fail if the snapshot is overlay-based, since the snapshots
953e611c
JH
686 * will pin the original container.
687 * \note As an example, if the container exists as \c /var/lib/lxc/c1, snapname might be \c 'snap0'
18aa217b 688 * (representing \c /var/lib/lxc/c1/snaps/snap0). If \p newname is \p c2,
953e611c 689 * then \c snap0 will be copied to \c /var/lib/lxc/c2.
f5dd1d53 690 */
f0ca2726 691 bool (*snapshot_restore)(struct lxc_container *c, const char *snapname, const char *newname);
b494d2dd 692
953e611c
JH
693 /*!
694 * \brief Destroy the specified snapshot.
771d96b3 695 *
953e611c
JH
696 * \param c Container.
697 * \param snapname Name of snapshot.
698 *
699 * \return \c true on success, else \c false.
771d96b3 700 */
f0ca2726 701 bool (*snapshot_destroy)(struct lxc_container *c, const char *snapname);
771d96b3 702
953e611c
JH
703 /*!
704 * \brief Determine if the caller may control the container.
705 *
706 * \param c Container.
707 *
708 * \return \c false if there is a control socket for the
709 * container monitor and the caller may not access it, otherwise
710 * returns \c true.
b494d2dd
SH
711 */
712 bool (*may_control)(struct lxc_container *c);
a9a0ed90 713
953e611c
JH
714 /*!
715 * \brief Add specified device to the container.
a9a0ed90 716 *
953e611c
JH
717 * \param c Container.
718 * \param src_path Full path of the device.
719 * \param dest_path Alternate path in the container (or \p NULL
720 * to use \p src_path).
721 *
722 * \return \c true on success, else \c false.
a9a0ed90 723 */
f0ca2726 724 bool (*add_device_node)(struct lxc_container *c, const char *src_path, const char *dest_path);
953e611c
JH
725
726 /*!
727 * \brief Remove specified device from the container.
a9a0ed90 728 *
953e611c
JH
729 * \param c Container.
730 * \param src_path Full path of the device.
731 * \param dest_path Alternate path in the container (or \p NULL
732 * to use \p src_path).
733 *
734 * \return \c true on success, else \c false.
a9a0ed90 735 */
f0ca2726 736 bool (*remove_device_node)(struct lxc_container *c, const char *src_path, const char *dest_path);
735f2c6e 737
d24095e4
SG
738 /* Post LXC-1.0 additions */
739
51d0854c
DY
740 /*!
741 * \brief Add specified netdev to the container.
742 *
743 * \param c Container.
744 * \param dev name of net device.
745 *
746 * \return \c true on success, else \c false.
747 */
748 bool (*attach_interface)(struct lxc_container *c, const char *dev, const char *dst_dev);
749
750 /*!
751 * \brief Remove specified netdev from the container.
752 *
753 * \param c Container.
754 * \param dev name of net device.
755 *
756 * \return \c true on success, else \c false.
757 */
758 bool (*detach_interface)(struct lxc_container *c, const char *dev, const char *dst_dev);
735f2c6e
TA
759 /*!
760 * \brief Checkpoint a container.
761 *
762 * \param c Container.
763 * \param directory The directory to dump the container to.
764 * \param stop Whether or not to stop the container after checkpointing.
765 * \param verbose Enable criu's verbose logs.
766 *
767 * \return \c true on success, else \c false.
768 * present at compile time).
769 */
770 bool (*checkpoint)(struct lxc_container *c, char *directory, bool stop, bool verbose);
771
772 /*!
773 * \brief Restore a container from a checkpoint.
774 *
775 * \param c Container.
776 * \param directory The directory to restore the container from.
777 * \param verbose Enable criu's verbose logs.
778 *
779 * \return \c true on success, else \c false.
780 *
781 */
782 bool (*restore)(struct lxc_container *c, char *directory, bool verbose);
d24095e4
SG
783
784 /*!
785 * \brief Delete the container and all its snapshots.
786 *
787 * \param c Container.
788 *
789 * \return \c true on success, else \c false.
790 *
791 * \note Container must be stopped.
792 */
793 bool (*destroy_with_snapshots)(struct lxc_container *c);
794
795 /*!
796 * \brief Destroy all the container's snapshot.
797 *
798 * \param c Container.
799 *
800 * \return \c true on success, else \c false.
801 */
802 bool (*snapshot_destroy_all)(struct lxc_container *c);
803
804 /* Post LXC-1.1 additions */
aef3d51e
TA
805 /*!
806 * \brief An API call to perform various migration operations
807 *
c0125e79 808 * \param cmd One of the MIGRATE_ constants.
aef3d51e
TA
809 * \param opts A migrate_opts struct filled with relevant options.
810 * \param size The size of the migrate_opts struct, i.e. sizeof(struct migrate_opts).
811 *
812 * \return \c 0 on success, nonzero on failure.
813 */
814 int (*migrate)(struct lxc_container *c, unsigned int cmd, struct migrate_opts *opts, unsigned int size);
dcf33b94 815
191d43cc
CB
816 /*!
817 * \brief Query the console log of a container.
818 *
819 * \param c Container.
820 * \param opts A lxc_console_log struct filled with relevant options.
821 *
822 * \return \c 0 on success, nonzero on failure.
823 */
824 int (*console_log)(struct lxc_container *c, struct lxc_console_log *log);
d39b10eb
CB
825
826 /*!
827 * \brief Request the container reboot by sending it \c SIGINT.
828 *
829 * \param c Container.
830 * \param timeout Seconds to wait before returning false.
831 * (-1 to wait forever, 0 to avoid waiting).
832 *
833 * \return \c true if the container was rebooted successfully, else \c false.
834 */
835 bool (*reboot2)(struct lxc_container *c, int timeout);
29df56cd
LT
836
837 /*!
838 * \brief Mount the host's path `source` onto the container's path `target`.
839 */
095b5c7d
CB
840 int (*mount)(struct lxc_container *c, const char *source,
841 const char *target, const char *filesystemtype,
842 unsigned long mountflags, const void *data,
843 struct lxc_mount *mnt);
d83da817
LT
844
845 /*!
846 * \brief Unmount the container's path `target`.
847 */
848 int (*umount)(struct lxc_container *c, const char *target,
095b5c7d 849 unsigned long mountflags, struct lxc_mount *mnt);
cdb2a47f 850
890ecf08
CB
851 /*!
852 * \brief Retrieve a file descriptor for the container's seccomp filter.
853 *
854 * \param c Container
855 *
856 * \return file descriptor for container's seccomp filter
857 */
679289bf 858 int (*seccomp_notify_fd)(struct lxc_container *c);
21405769
CB
859
860 /*!
861 * \brief Retrieve a file descriptor for the running container's seccomp filter.
862 *
863 * \param c Container
864 *
865 * \return file descriptor for the running container's seccomp filter
866 */
867 int (*seccomp_notify_fd_active)(struct lxc_container *c);
fa3621ea
CB
868
869 /*!
870 * \brief Retrieve a pidfd for the container's init process.
871 *
872 * \param c Container.
873 *
874 * \return pidfd of init process of the container.
875 */
876 int (*init_pidfd)(struct lxc_container *c);
f797f05e
CB
877
878 /*!
879 * \brief Retrieve a mount fd for the container's devpts instance.
880 *
881 * \param c Container.
882 *
883 * \return Mount fd of the container's devpts instance.
884 */
885 int (*devpts_fd)(struct lxc_container *c);
f5dd1d53
SH
886};
887
953e611c
JH
888/*!
889 * \brief An LXC container snapshot.
890 */
f5dd1d53 891struct lxc_snapshot {
953e611c
JH
892 char *name; /*!< Name of snapshot */
893 char *comment_pathname; /*!< Full path to snapshots comment file (may be \c NULL) */
894 char *timestamp; /*!< Time snapshot was created */
895 char *lxcpath; /*!< Full path to LXCPATH for snapshot */
896
897 /*!
898 * \brief De-allocate the snapshot.
899 * \param s snapshot.
900 */
901 void (*free)(struct lxc_snapshot *s);
72d0e1cb
SG
902};
903
f49ad558
ÇO
904
905/*!
906 * \brief Specifications for how to create a new backing store
907 */
908struct bdev_specs {
d028235d
SG
909 char *fstype; /*!< Filesystem type */
910 uint64_t fssize; /*!< Filesystem size in bytes */
911 struct {
912 char *zfsroot; /*!< ZFS root path */
913 } zfs;
914 struct {
915 char *vg; /*!< LVM Volume Group name */
916 char *lv; /*!< LVM Logical Volume name */
917 char *thinpool; /*!< LVM thin pool to use, if any */
918 } lvm;
7ed52ec6 919 char *dir; /*!< Directory path */
7da812df
LB
920 struct {
921 char *rbdname; /*!< RBD image name */
922 char *rbdpool; /*!< Ceph pool name */
923 } rbd;
f49ad558
ÇO
924};
925
aef3d51e
TA
926/*!
927 * \brief Commands for the migrate API call.
928 */
929enum {
930 MIGRATE_PRE_DUMP,
931 MIGRATE_DUMP,
932 MIGRATE_RESTORE,
b5b12b9e 933 MIGRATE_FEATURE_CHECK,
aef3d51e
TA
934};
935
b5b12b9e
AR
936/*!
937 * \brief Available feature checks.
938 */
939#define FEATURE_MEM_TRACK (1ULL << 0)
940#define FEATURE_LAZY_PAGES (1ULL << 1)
941
aef3d51e
TA
942/*!
943 * \brief Options for the migrate API call.
944 */
945struct migrate_opts {
946 /* new members should be added at the end */
947 char *directory;
948 bool verbose;
949
950 bool stop; /* stop the container after dump? */
951 char *predump_dir; /* relative to directory above */
74eb576c
NE
952 char *pageserver_address; /* where should memory pages be send? */
953 char *pageserver_port;
19d1509c
TA
954
955 /* This flag indicates whether or not the container's rootfs will have
956 * the same inodes on checkpoint and restore. In the case of e.g. zfs
957 * send or btrfs send, or an LVM snapshot, this will be true, but it
958 * won't if e.g. you rsync the filesystems between two machines.
959 */
960 bool preserves_inodes;
b9ee6643
TA
961
962 /* Path to an executable script that will be registered as a criu
963 * "action script"
964 */
965 char *action_script;
f1954503
AR
966
967 /* If CRIU >= 2.4 is detected the option to skip in-flight connections
968 * will be enabled by default. The flag 'disable_skip_in_flight' will
969 * unconditionally disable this feature. In-flight connections are
970 * not fully established TCP connections: SYN, SYN-ACK */
971 bool disable_skip_in_flight;
b2b7b0d2
TA
972
973 /* This is the maximum file size for deleted files (which CRIU calls
974 * "ghost" files) that will be handled. 0 indicates the CRIU default,
975 * which at this time is 1MB.
976 */
977 uint64_t ghost_limit;
b5b12b9e
AR
978
979 /* Some features cannot be checked by comparing the CRIU version.
980 * Features like dirty page tracking or userfaultfd depend on
981 * the architecture/kernel/criu combination. This is a bitmask
982 * in which the desired feature checks can be encoded.
983 */
984 uint64_t features_to_check;
aef3d51e
TA
985};
986
191d43cc
CB
987struct lxc_console_log {
988 /* Clear the console log. */
989 bool clear;
990
991 /* Retrieve the console log. */
992 bool read;
993
994 /* This specifies the maximum size to read from the ringbuffer. Setting
995 * it to 0 means that the a read can be as big as the whole ringbuffer.
996 * On return callers can check how many bytes were actually read.
997 * If "read" and "clear" are set to false and a non-zero value is
998 * specified then up to "read_max" bytes of data will be discarded from
999 * the ringbuffer.
1000 */
1001 uint64_t *read_max;
1002
1003 /* Data that was read from the ringbuffer. If "read_max" is 0 on return
1004 * "data" is invalid.
1005 */
1006 char *data;
1007};
1008
953e611c
JH
1009/*!
1010 * \brief Create a new container.
1011 *
1012 * \param name Name to use for container.
1013 * \param configpath Full path to configuration file to use.
1014 *
1015 * \return Newly-allocated container, or \c NULL on error.
1016 */
afeecbba 1017struct lxc_container *lxc_container_new(const char *name, const char *configpath);
953e611c
JH
1018
1019/*!
1020 * \brief Add a reference to the specified container.
1021 *
1022 * \param c Container.
1023 *
1024 * \return \c true on success, \c false on error.
1025 */
72d0e1cb 1026int lxc_container_get(struct lxc_container *c);
953e611c
JH
1027
1028/*!
1029 * \brief Drop a reference to the specified container.
1030 *
1031 * \param c Container.
1032 *
1033 * \return \c 0 on success, \c 1 if reference was successfully dropped
1034 * and container has been freed, and \c -1 on error.
1035 *
1036 * \warning If \c 1 is returned, \p c is no longer valid.
1037 */
72d0e1cb 1038int lxc_container_put(struct lxc_container *c);
953e611c
JH
1039
1040/*!
1041 * \brief Obtain a list of all container states.
1042 * \param[out] states Caller-allocated array to hold all states (may be \c NULL).
1043 *
1044 * \return Number of container states.
1045 *
1046 * \note Passing \c NULL for \p states allows the caller to first
1047 * calculate how many states there are before calling the function again, the second time
1048 * providing a suitably-sized array to store the static string pointers
1049 * in.
1050 * \note The \p states array should be freed by the caller, but not the strings the elements point to.
1051 */
4a7c7daa 1052int lxc_get_wait_states(const char **states);
953e611c 1053
dbfa7128 1054/*!
593e8478 1055 * \brief Get the value for a global config key
953e611c 1056 *
593e8478 1057 * \param key The name of the config key
953e611c 1058 *
593e8478 1059 * \return String representing the current value for the key.
953e611c 1060 */
593e8478 1061const char *lxc_get_global_config_item(const char *key);
953e611c
JH
1062
1063/*!
1064 * \brief Determine version of LXC.
1065 * \return Static string representing version of LXC in use.
1066 *
1067 * \note Returned string must not be freed.
1068 */
b6b918a1 1069const char *lxc_get_version(void);
72d0e1cb 1070
953e611c
JH
1071/*!
1072 * \brief Get a list of defined containers in a lxcpath.
a41f104b 1073 *
953e611c
JH
1074 * \param lxcpath lxcpath under which to look.
1075 * \param names If not \c NULL, then a list of container names will be returned here.
1076 * \param cret If not \c NULL, then a list of lxc_containers will be returned here.
1077 *
1078 * \return Number of containers found, or \c -1 on error.
1079 *
1080 * \note Values returned in \p cret are sorted by container name.
a41f104b
SH
1081 */
1082int list_defined_containers(const char *lxcpath, char ***names, struct lxc_container ***cret);
1083
953e611c
JH
1084/*!
1085 * \brief Get a list of active containers for a given lxcpath.
1086 *
1087 * \param lxcpath Full \c LXCPATH path to consider.
1088 * \param[out] names Dynamically-allocated array of container names.
1089 * \param[out] cret Dynamically-allocated list of containers.
1090 *
1091 * \return Number of containers found, or -1 on error.
a41f104b 1092 *
953e611c
JH
1093 * \note Some of the containers may not be "defined".
1094 * \note Values returned in \p cret are sorted by container name.
1095 * \note \p names and \p cret may both (or either) be specified as \c NULL.
1096 * \note \p names and \p cret must be freed by the caller.
a41f104b
SH
1097 */
1098int list_active_containers(const char *lxcpath, char ***names, struct lxc_container ***cret);
1099
953e611c
JH
1100/*!
1101 * \brief Get a complete list of all containers for a given lxcpath.
2871830a 1102 *
953e611c
JH
1103 * \param lxcpath Full \c LXCPATH path to consider.
1104 * \param[out] names Dynamically-allocated array of container name.
1105 * \param[out] cret Dynamically-allocated list of containers.
1106 *
1107 * \return Number of containers, or -1 on error.
1108 *
1109 * \note Some of the containers may not be "defined".
1110 * \note Values returned in \p cret are sorted by container name.
1111 * \note \p names and \p cret may both (or either) be specified as \c NULL.
1112 * \note \p names and \p cret must be freed by the caller.
2871830a
DE
1113 */
1114int list_all_containers(const char *lxcpath, char ***names, struct lxc_container ***cret);
1115
73b910a3 1116struct lxc_log {
1117 const char *name;
1118 const char *lxcpath;
1119 const char *file;
4b73005c 1120 const char *level;
73b910a3 1121 const char *prefix;
1122 bool quiet;
1123};
1124
1125/*!
1126 *\brief Initialize the log
1127 *
1128 *\param log lxc log configuration.
1129 */
1130int lxc_log_init(struct lxc_log *log);
1131
36eaa694
DE
1132/*!
1133 * \brief Close log file.
1134 */
1135void lxc_log_close(void);
1136
12461428
CB
1137/*!
1138 * \brief Check if the configuration item is supported by this LXC instance.
1139 *
1140 * \param key Configuration item to check for.
1141 */
1142bool lxc_config_item_is_supported(const char *key);
1143
aafa5f96
CB
1144/*!
1145 * \brief Check if an API extension is supported by this LXC instance.
1146 *
1147 * \param extension API extension to check for.
1148 */
1149bool lxc_has_api_extension(const char *extension);
1150
579e783e
AM
1151#ifdef __cplusplus
1152}
1153#endif
1154
9be53773 1155#endif