]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/lxccontainer.h
tree-wide: s/ptmx/ptx/g
[mirror_lxc.git] / src / lxc / lxccontainer.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #ifndef __LXC_CONTAINER_H
4 #define __LXC_CONTAINER_H
5
6 #include <malloc.h>
7 #include <semaphore.h>
8 #include <stdbool.h>
9 #include <stdint.h>
10 #include <stdlib.h>
11
12 #include <lxc/attach_options.h>
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17
18 #define LXC_CLONE_KEEPNAME (1 << 0) /*!< Do not edit the rootfs to change the hostname */
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) */
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 */
24 #define LXC_CLONE_ALLOW_RUNNING (1 << 6) /*!< allow snapshot creation even if source container is running */
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 */
27 #define LXC_MOUNT_API_V1 1
28
29 struct bdev_specs;
30
31 struct lxc_snapshot;
32
33 struct lxc_lock;
34
35 struct migrate_opts;
36
37 struct lxc_console_log;
38
39 struct lxc_mount {
40 int version;
41 };
42
43 /*!
44 * An LXC container.
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.
49 */
50 struct lxc_container {
51 /* private fields */
52 /*!
53 * \private
54 * Name of container.
55 */
56 char *name;
57
58 /*!
59 * \private
60 * Full path to configuration file.
61 */
62 char *configfile;
63
64 /*!
65 * \private
66 * File to store pid.
67 */
68 char *pidfile;
69
70 /*!
71 * \private
72 * Container semaphore lock.
73 */
74 struct lxc_lock *slock;
75
76 /*!
77 * \private
78 * Container private lock.
79 */
80 struct lxc_lock *privlock;
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 *
93 * \internal TODO: do we want the whole lxc_handler?
94 */
95 struct lxc_conf *lxc_conf;
96
97 /* public fields */
98 /*! Human-readable string representing last error */
99 char *error_string;
100
101 /*! Last error number */
102 int error_num;
103
104 /*! Whether container wishes to be daemonized */
105 bool daemonize;
106
107 /*! Full path to configuration file */
108 char *config_path;
109
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 */
128 const char *(*state)(struct lxc_container *c);
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 */
146 bool (*freeze)(struct lxc_container *c);
147
148 /*!
149 * \brief Thaw a frozen container.
150 *
151 * \param c Container.
152 *
153 * \return \c true on success, else \c false.
154 */
155 bool (*unfreeze)(struct lxc_container *c);
156
157 /*!
158 * \brief Determine process ID of the containers init process.
159 *
160 * \param c Container.
161 *
162 * \return pid of init process as seen from outside the
163 * container.
164 */
165 pid_t (*init_pid)(struct lxc_container *c);
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 */
176 bool (*load_config)(struct lxc_container *c, const char *alt_file);
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 */
187 bool (*start)(struct lxc_container *c, int useinit, char * const argv[]);
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 */
202 bool (*startl)(struct lxc_container *c, int useinit, ...);
203
204 /*!
205 * \brief Stop the container.
206 *
207 * \param c Container.
208 *
209 * \return \c true on success, else \c false.
210 */
211 bool (*stop)(struct lxc_container *c);
212
213 /*!
214 * \brief Change whether the container wants to run disconnected
215 * from the terminal.
216 *
217 * \param c Container.
218 * \param state Value for the daemonize bit (0 or 1).
219 *
220 * \return \c true on success, else \c false.
221 */
222 bool (*want_daemonize)(struct lxc_container *c, bool state);
223
224 /*!
225 * \brief Change whether the container wishes all file descriptors
226 * to be closed on startup.
227 *
228 * \param c Container.
229 * \param state Value for the close_all_fds bit (0 or 1).
230 *
231 * \return \c true on success, else \c false.
232 */
233 bool (*want_close_all_fds)(struct lxc_container *c, bool state);
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 */
244 char *(*config_file_name)(struct lxc_container *c);
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 */
258 bool (*wait)(struct lxc_container *c, const char *state, int timeout);
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 */
269 bool (*set_config_item)(struct lxc_container *c, const char *key, const char *value);
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 */
280 bool (*destroy)(struct lxc_container *c);
281
282 /*!
283 * \brief Save configuration to a file.
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 */
290 bool (*save_config)(struct lxc_container *c, const char *alt_file);
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 */
309 bool (*create)(struct lxc_container *c, const char *t, const char *bdevtype,
310 struct bdev_specs *specs, int flags, char *const argv[]);
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 */
332 bool (*createl)(struct lxc_container *c, const char *t, const char *bdevtype,
333 struct bdev_specs *specs, int flags, ...);
334
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
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 */
352 bool (*reboot)(struct lxc_container *c);
353
354 /*!
355 * \brief Request the container shutdown by sending it \c
356 * SIGPWR.
357 *
358 * \param c Container.
359 * \param timeout Seconds to wait before returning false.
360 * (-1 to wait forever, 0 to avoid waiting).
361 *
362 * \return \c true if the container was shutdown successfully, else \c false.
363 */
364 bool (*shutdown)(struct lxc_container *c, int timeout);
365
366 /*!
367 * \brief Completely clear the containers in-memory configuration.
368 *
369 * \param c Container.
370 */
371 void (*clear_config)(struct lxc_container *c);
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 */
383 bool (*clear_config_item)(struct lxc_container *c, const char *key);
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.
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.
402 */
403 int (*get_config_item)(struct lxc_container *c, const char *key, char *retv, int inlen);
404
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
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 */
439 int (*get_keys)(struct lxc_container *c, const char *key, char *retv, int inlen);
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 */
451 char** (*get_interfaces)(struct lxc_container *c);
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 */
467 char** (*get_ips)(struct lxc_container *c, const char* interface, const char* family, int scope);
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.
483 */
484 int (*get_cgroup_item)(struct lxc_container *c, const char *subsys, char *retv, int inlen);
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 */
495 bool (*set_cgroup_item)(struct lxc_container *c, const char *subsys, const char *value);
496
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.
512 */
513 const char *(*get_config_path)(struct lxc_container *c);
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 */
524 bool (*set_config_path)(struct lxc_container *c, const char *path);
525
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
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).
543 * \param newsize In case of a block device backing store, an
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.
555 */
556 struct lxc_container *(*clone)(struct lxc_container *c, const char *newname,
557 const char *lxcpath, int flags, const char *bdevtype,
558 const char *bdevdata, uint64_t newsize, char **hookargs);
559
560 /*!
561 * \brief Allocate a console tty for the container.
562 *
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.
566 * \param[out] ptxfd File descriptor referring to the ptx side of the pty.
567 *
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.
577 */
578 int (*console_getfd)(struct lxc_container *c, int *ttynum, int *ptxfd);
579
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', ...).
591 *
592 * \return \c 0 on success, \c -1 on failure.
593 *
594 * \note This function will not return until the console has been
595 * exited by the user.
596 */
597 int (*console)(struct lxc_container *c, int ttynum,
598 int stdinfd, int stdoutfd, int stderrfd, int escape);
599
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);
615
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 */
627 int (*attach_run_wait)(struct lxc_container *c, lxc_attach_options_t *options, const char *program, const char * const argv[]);
628
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, ...);
641
642 /*!
643 * \brief Create a container snapshot.
644 *
645 * Assuming default paths, snapshots will be created as
646 * \c /var/lib/lxc/\<c\>/snaps/snap\<n\>
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.
655 *
656 * \note \p commentfile may be \c NULL but this is discouraged.
657 */
658 int (*snapshot)(struct lxc_container *c, const char *commentfile);
659
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.
665 *
666 * \return Number of snapshots.
667 *
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.
676 *
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
685 * fail if the snapshot is overlay-based, since the snapshots
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'
688 * (representing \c /var/lib/lxc/c1/snaps/snap0). If \p newname is \p c2,
689 * then \c snap0 will be copied to \c /var/lib/lxc/c2.
690 */
691 bool (*snapshot_restore)(struct lxc_container *c, const char *snapname, const char *newname);
692
693 /*!
694 * \brief Destroy the specified snapshot.
695 *
696 * \param c Container.
697 * \param snapname Name of snapshot.
698 *
699 * \return \c true on success, else \c false.
700 */
701 bool (*snapshot_destroy)(struct lxc_container *c, const char *snapname);
702
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.
711 */
712 bool (*may_control)(struct lxc_container *c);
713
714 /*!
715 * \brief Add specified device to the container.
716 *
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.
723 */
724 bool (*add_device_node)(struct lxc_container *c, const char *src_path, const char *dest_path);
725
726 /*!
727 * \brief Remove specified device from the container.
728 *
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.
735 */
736 bool (*remove_device_node)(struct lxc_container *c, const char *src_path, const char *dest_path);
737
738 /* Post LXC-1.0 additions */
739
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);
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);
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 */
805 /*!
806 * \brief An API call to perform various migration operations
807 *
808 * \param cmd One of the MIGRATE_ constants.
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);
815
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);
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);
836
837 /*!
838 * \brief Mount the host's path `source` onto the container's path `target`.
839 */
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);
844
845 /*!
846 * \brief Unmount the container's path `target`.
847 */
848 int (*umount)(struct lxc_container *c, const char *target,
849 unsigned long mountflags, struct lxc_mount *mnt);
850
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 */
858 int (*seccomp_notify_fd)(struct lxc_container *c);
859
860 /*!
861 * \brief Retrieve a pidfd for the container's init process.
862 *
863 * \param c Container.
864 *
865 * \return pidfd of init process of the container.
866 */
867 int (*init_pidfd)(struct lxc_container *c);
868 };
869
870 /*!
871 * \brief An LXC container snapshot.
872 */
873 struct lxc_snapshot {
874 char *name; /*!< Name of snapshot */
875 char *comment_pathname; /*!< Full path to snapshots comment file (may be \c NULL) */
876 char *timestamp; /*!< Time snapshot was created */
877 char *lxcpath; /*!< Full path to LXCPATH for snapshot */
878
879 /*!
880 * \brief De-allocate the snapshot.
881 * \param s snapshot.
882 */
883 void (*free)(struct lxc_snapshot *s);
884 };
885
886
887 /*!
888 * \brief Specifications for how to create a new backing store
889 */
890 struct bdev_specs {
891 char *fstype; /*!< Filesystem type */
892 uint64_t fssize; /*!< Filesystem size in bytes */
893 struct {
894 char *zfsroot; /*!< ZFS root path */
895 } zfs;
896 struct {
897 char *vg; /*!< LVM Volume Group name */
898 char *lv; /*!< LVM Logical Volume name */
899 char *thinpool; /*!< LVM thin pool to use, if any */
900 } lvm;
901 char *dir; /*!< Directory path */
902 struct {
903 char *rbdname; /*!< RBD image name */
904 char *rbdpool; /*!< Ceph pool name */
905 } rbd;
906 };
907
908 /*!
909 * \brief Commands for the migrate API call.
910 */
911 enum {
912 MIGRATE_PRE_DUMP,
913 MIGRATE_DUMP,
914 MIGRATE_RESTORE,
915 MIGRATE_FEATURE_CHECK,
916 };
917
918 /*!
919 * \brief Available feature checks.
920 */
921 #define FEATURE_MEM_TRACK (1ULL << 0)
922 #define FEATURE_LAZY_PAGES (1ULL << 1)
923
924 /*!
925 * \brief Options for the migrate API call.
926 */
927 struct migrate_opts {
928 /* new members should be added at the end */
929 char *directory;
930 bool verbose;
931
932 bool stop; /* stop the container after dump? */
933 char *predump_dir; /* relative to directory above */
934 char *pageserver_address; /* where should memory pages be send? */
935 char *pageserver_port;
936
937 /* This flag indicates whether or not the container's rootfs will have
938 * the same inodes on checkpoint and restore. In the case of e.g. zfs
939 * send or btrfs send, or an LVM snapshot, this will be true, but it
940 * won't if e.g. you rsync the filesystems between two machines.
941 */
942 bool preserves_inodes;
943
944 /* Path to an executable script that will be registered as a criu
945 * "action script"
946 */
947 char *action_script;
948
949 /* If CRIU >= 2.4 is detected the option to skip in-flight connections
950 * will be enabled by default. The flag 'disable_skip_in_flight' will
951 * unconditionally disable this feature. In-flight connections are
952 * not fully established TCP connections: SYN, SYN-ACK */
953 bool disable_skip_in_flight;
954
955 /* This is the maximum file size for deleted files (which CRIU calls
956 * "ghost" files) that will be handled. 0 indicates the CRIU default,
957 * which at this time is 1MB.
958 */
959 uint64_t ghost_limit;
960
961 /* Some features cannot be checked by comparing the CRIU version.
962 * Features like dirty page tracking or userfaultfd depend on
963 * the architecture/kernel/criu combination. This is a bitmask
964 * in which the desired feature checks can be encoded.
965 */
966 uint64_t features_to_check;
967 };
968
969 struct lxc_console_log {
970 /* Clear the console log. */
971 bool clear;
972
973 /* Retrieve the console log. */
974 bool read;
975
976 /* This specifies the maximum size to read from the ringbuffer. Setting
977 * it to 0 means that the a read can be as big as the whole ringbuffer.
978 * On return callers can check how many bytes were actually read.
979 * If "read" and "clear" are set to false and a non-zero value is
980 * specified then up to "read_max" bytes of data will be discarded from
981 * the ringbuffer.
982 */
983 uint64_t *read_max;
984
985 /* Data that was read from the ringbuffer. If "read_max" is 0 on return
986 * "data" is invalid.
987 */
988 char *data;
989 };
990
991 /*!
992 * \brief Create a new container.
993 *
994 * \param name Name to use for container.
995 * \param configpath Full path to configuration file to use.
996 *
997 * \return Newly-allocated container, or \c NULL on error.
998 */
999 struct lxc_container *lxc_container_new(const char *name, const char *configpath);
1000
1001 /*!
1002 * \brief Add a reference to the specified container.
1003 *
1004 * \param c Container.
1005 *
1006 * \return \c true on success, \c false on error.
1007 */
1008 int lxc_container_get(struct lxc_container *c);
1009
1010 /*!
1011 * \brief Drop a reference to the specified container.
1012 *
1013 * \param c Container.
1014 *
1015 * \return \c 0 on success, \c 1 if reference was successfully dropped
1016 * and container has been freed, and \c -1 on error.
1017 *
1018 * \warning If \c 1 is returned, \p c is no longer valid.
1019 */
1020 int lxc_container_put(struct lxc_container *c);
1021
1022 /*!
1023 * \brief Obtain a list of all container states.
1024 * \param[out] states Caller-allocated array to hold all states (may be \c NULL).
1025 *
1026 * \return Number of container states.
1027 *
1028 * \note Passing \c NULL for \p states allows the caller to first
1029 * calculate how many states there are before calling the function again, the second time
1030 * providing a suitably-sized array to store the static string pointers
1031 * in.
1032 * \note The \p states array should be freed by the caller, but not the strings the elements point to.
1033 */
1034 int lxc_get_wait_states(const char **states);
1035
1036 /*!
1037 * \brief Get the value for a global config key
1038 *
1039 * \param key The name of the config key
1040 *
1041 * \return String representing the current value for the key.
1042 */
1043 const char *lxc_get_global_config_item(const char *key);
1044
1045 /*!
1046 * \brief Determine version of LXC.
1047 * \return Static string representing version of LXC in use.
1048 *
1049 * \note Returned string must not be freed.
1050 */
1051 const char *lxc_get_version(void);
1052
1053 /*!
1054 * \brief Get a list of defined containers in a lxcpath.
1055 *
1056 * \param lxcpath lxcpath under which to look.
1057 * \param names If not \c NULL, then a list of container names will be returned here.
1058 * \param cret If not \c NULL, then a list of lxc_containers will be returned here.
1059 *
1060 * \return Number of containers found, or \c -1 on error.
1061 *
1062 * \note Values returned in \p cret are sorted by container name.
1063 */
1064 int list_defined_containers(const char *lxcpath, char ***names, struct lxc_container ***cret);
1065
1066 /*!
1067 * \brief Get a list of active containers for a given lxcpath.
1068 *
1069 * \param lxcpath Full \c LXCPATH path to consider.
1070 * \param[out] names Dynamically-allocated array of container names.
1071 * \param[out] cret Dynamically-allocated list of containers.
1072 *
1073 * \return Number of containers found, or -1 on error.
1074 *
1075 * \note Some of the containers may not be "defined".
1076 * \note Values returned in \p cret are sorted by container name.
1077 * \note \p names and \p cret may both (or either) be specified as \c NULL.
1078 * \note \p names and \p cret must be freed by the caller.
1079 */
1080 int list_active_containers(const char *lxcpath, char ***names, struct lxc_container ***cret);
1081
1082 /*!
1083 * \brief Get a complete list of all containers for a given lxcpath.
1084 *
1085 * \param lxcpath Full \c LXCPATH path to consider.
1086 * \param[out] names Dynamically-allocated array of container name.
1087 * \param[out] cret Dynamically-allocated list of containers.
1088 *
1089 * \return Number of containers, or -1 on error.
1090 *
1091 * \note Some of the containers may not be "defined".
1092 * \note Values returned in \p cret are sorted by container name.
1093 * \note \p names and \p cret may both (or either) be specified as \c NULL.
1094 * \note \p names and \p cret must be freed by the caller.
1095 */
1096 int list_all_containers(const char *lxcpath, char ***names, struct lxc_container ***cret);
1097
1098 struct lxc_log {
1099 const char *name;
1100 const char *lxcpath;
1101 const char *file;
1102 const char *level;
1103 const char *prefix;
1104 bool quiet;
1105 };
1106
1107 /*!
1108 *\brief Initialize the log
1109 *
1110 *\param log lxc log configuration.
1111 */
1112 int lxc_log_init(struct lxc_log *log);
1113
1114 /*!
1115 * \brief Close log file.
1116 */
1117 void lxc_log_close(void);
1118
1119 /*!
1120 * \brief Check if the configuration item is supported by this LXC instance.
1121 *
1122 * \param key Configuration item to check for.
1123 */
1124 bool lxc_config_item_is_supported(const char *key);
1125
1126 /*!
1127 * \brief Check if an API extension is supported by this LXC instance.
1128 *
1129 * \param extension API extension to check for.
1130 */
1131 bool lxc_has_api_extension(const char *extension);
1132
1133 #ifdef __cplusplus
1134 }
1135 #endif
1136
1137 #endif