]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/conf.h
confile: config_syslog()
[mirror_lxc.git] / src / lxc / conf.h
CommitLineData
0ad19a3f 1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
9afe19d6 7 * Daniel Lezcano <daniel.lezcano at free.fr>
0ad19a3f 8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
250b1eec 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0ad19a3f 22 */
f1a4a029
ÇO
23#ifndef __LXC_CONF_H
24#define __LXC_CONF_H
0ad19a3f 25
f424fa8f
SG
26#include "config.h"
27
9fc7f8c0 28#include <stdio.h>
0ad19a3f 29#include <netinet/in.h>
74a2b586 30#include <net/if.h>
b0a33c1e 31#include <sys/param.h>
8173e600 32#include <sys/types.h>
c6d09e15
WB
33#if HAVE_SYS_RESOURCE_H
34#include <sys/resource.h>
35#endif
19a26f82 36#include <stdbool.h>
0ad19a3f 37
f2363e38
ÇO
38#include "list.h"
39#include "start.h" /* for lxc_handler */
e3b4c4c4 40
769872f9
SH
41#if HAVE_SCMP_FILTER_CTX
42typedef void * scmp_filter_ctx;
43#endif
44
97e9cfa0
SH
45/* worth moving to configure.ac? */
46#define subuidfile "/etc/subuid"
47#define subgidfile "/etc/subgid"
48
13954cce 49enum {
24654103
DL
50 LXC_NET_EMPTY,
51 LXC_NET_VETH,
52 LXC_NET_MACVLAN,
53 LXC_NET_PHYS,
54 LXC_NET_VLAN,
26b797f3 55 LXC_NET_NONE,
24654103 56 LXC_NET_MAXCONFTYPE,
0ad19a3f 57};
58
59/*
60 * Defines the structure to configure an ipv4 address
61 * @address : ipv4 address
62 * @broadcast : ipv4 broadcast address
63 * @mask : network mask
64 */
65struct lxc_inetdev {
66 struct in_addr addr;
67 struct in_addr bcast;
1c633398 68 unsigned int prefix;
0ad19a3f 69};
70
71struct lxc_route {
72 struct in_addr addr;
73};
74
75/*
76 * Defines the structure to configure an ipv6 address
77 * @flags : set the address up
78 * @address : ipv6 address
79 * @broadcast : ipv6 broadcast address
80 * @mask : network mask
81 */
82struct lxc_inet6dev {
83 struct in6_addr addr;
0093bb8c 84 struct in6_addr mcast;
0ad19a3f 85 struct in6_addr acast;
1c633398 86 unsigned int prefix;
0ad19a3f 87};
88
89struct lxc_route6 {
90 struct in6_addr addr;
91};
26c39028 92
e892973e
DL
93struct ifla_veth {
94 char *pair; /* pair name */
74a2b586 95 char veth1[IFNAMSIZ]; /* needed for deconf */
e892973e
DL
96};
97
26c39028 98struct ifla_vlan {
85dce4a5
NC
99 unsigned int flags;
100 unsigned int fmask;
7c11d57a
SG
101 unsigned short vid;
102 unsigned short pad;
26c39028
JHS
103};
104
e892973e 105struct ifla_macvlan {
99854161 106 int mode; /* private, vepa, bridge, passthru */
e892973e
DL
107};
108
f6cc1de1 109union netdev_p {
e892973e 110 struct ifla_veth veth_attr;
f6cc1de1 111 struct ifla_vlan vlan_attr;
e892973e 112 struct ifla_macvlan macvlan_attr;
f6cc1de1
JHS
113};
114
0ad19a3f 115/*
116 * Defines a structure to configure a network device
e3b4c4c4
ST
117 * @link : lxc.network.link, name of bridge or host iface to attach if any
118 * @name : lxc.network.name, name of iface on the container side
119 * @flags : flag of the network device (IFF_UP, ... )
120 * @ipv4 : a list of ipv4 addresses to be set on the network device
121 * @ipv6 : a list of ipv6 addresses to be set on the network device
122 * @upscript : a script filename to be executed during interface configuration
74a2b586 123 * @downscript : a script filename to be executed during interface destruction
0ad19a3f 124 */
125struct lxc_netdev {
5f4535a3 126 int type;
0ad19a3f 127 int flags;
82d5ae15 128 int ifindex;
9d083402
MT
129 char *link;
130 char *name;
0ad19a3f 131 char *hwaddr;
442cbbe6 132 char *mtu;
f6cc1de1 133 union netdev_p priv;
0ad19a3f 134 struct lxc_list ipv4;
135 struct lxc_list ipv6;
f8fee0e2 136 struct in_addr *ipv4_gateway;
19a26f82 137 bool ipv4_gateway_auto;
f8fee0e2 138 struct in6_addr *ipv6_gateway;
19a26f82 139 bool ipv6_gateway_auto;
e3b4c4c4 140 char *upscript;
74a2b586 141 char *downscript;
0ad19a3f 142};
143
144/*
576f946d 145 * Defines a generic struct to configure the control group.
146 * It is up to the programmer to specify the right subsystem.
ec64264d 147 * @subsystem : the targeted subsystem
576f946d 148 * @value : the value to set
0ad19a3f 149 */
150struct lxc_cgroup {
576f946d 151 char *subsystem;
152 char *value;
0ad19a3f 153};
154
c6d09e15
WB
155#if !HAVE_SYS_RESOURCE_H
156# define RLIM_INFINITY ((unsigned long)-1)
157struct rlimit {
158 unsigned long rlim_cur;
159 unsigned long rlim_max;
160};
161#endif
162/*
163 * Defines a structure to configure resource limits to set via setrlimit().
164 * @resource : the resource name in lowercase without the RLIMIT_ prefix
165 * @limit : the limit to set
166 */
167struct lxc_limit {
168 char *resource;
169 struct rlimit limit;
170};
171
f6d3e3e4
SH
172enum idtype {
173 ID_TYPE_UID,
174 ID_TYPE_GID
175};
176
177/*
178 * id_map is an id map entry. Form in confile is:
251d0d2a
DE
179 * lxc.id_map = u 0 9800 100
180 * lxc.id_map = u 1000 9900 100
181 * lxc.id_map = g 0 9800 100
182 * lxc.id_map = g 1000 9900 100
183 * meaning the container can use uids and gids 0-99 and 1000-1099,
184 * with [ug]id 0 mapping to [ug]id 9800 on the host, and [ug]id 1000 to
185 * [ug]id 9900 on the host.
f6d3e3e4
SH
186 */
187struct id_map {
188 enum idtype idtype;
251d0d2a 189 unsigned long hostid, nsid, range;
f6d3e3e4
SH
190};
191
b0a33c1e 192/*
193 * Defines a structure containing a pty information for
194 * virtualizing a tty
195 * @name : the path name of the slave pty side
196 * @master : the file descriptor of the master
197 * @slave : the file descriptor of the slave
198 */
199struct lxc_pty_info {
200 char name[MAXPATHLEN];
201 int master;
202 int slave;
203 int busy;
204};
205
206/*
207 * Defines the number of tty configured and contains the
a589434e 208 * instantiated ptys
b0a33c1e 209 * @nbtty = number of configured ttys
210 */
211struct lxc_tty_info {
212 int nbtty;
213 struct lxc_pty_info *pty_info;
214};
215
b5159817
DE
216struct lxc_tty_state;
217
63376d7d
DL
218/*
219 * Defines the structure to store the console information
220 * @peer : the file descriptor put/get console traffic
221 * @name : the file name of the slave pty
222 */
223struct lxc_console {
224 int slave;
225 int master;
226 int peer;
b5159817
DE
227 struct lxc_pty_info peerpty;
228 struct lxc_epoll_descr *descr;
28a4b0e5 229 char *path;
596a818d
DE
230 char *log_path;
231 int log_fd;
63376d7d 232 char name[MAXPATHLEN];
e0dc0de7 233 struct termios *tios;
b5159817 234 struct lxc_tty_state *tty_state;
63376d7d
DL
235};
236
33fcb7a0
DL
237/*
238 * Defines a structure to store the rootfs location, the
239 * optionals pivot_root, rootfs mount paths
59bb8698
SH
240 * @path : the rootfs source (directory or device)
241 * @mount : where it is mounted
242 * @options : mount options
b3b8c97f 243 * @bev_type : optional backing store type
33fcb7a0
DL
244 */
245struct lxc_rootfs {
246 char *path;
23b7ea69 247 char *mount;
a17b1e65 248 char *options;
b3b8c97f 249 char *bdev_type;
33fcb7a0
DL
250};
251
368bbc02
CS
252/*
253 * Automatic mounts for LXC to perform inside the container
254 */
255enum {
b06b8511
CS
256 LXC_AUTO_PROC_RW = 0x001, /* /proc read-write */
257 LXC_AUTO_PROC_MIXED = 0x002, /* /proc/sys and /proc/sysrq-trigger read-only */
258 LXC_AUTO_PROC_MASK = 0x003,
259
260 LXC_AUTO_SYS_RW = 0x004, /* /sys */
261 LXC_AUTO_SYS_RO = 0x008, /* /sys read-only */
f24a52d5 262 LXC_AUTO_SYS_MIXED = 0x00C, /* /sys read-only and /sys/class/net read-write */
b06b8511
CS
263 LXC_AUTO_SYS_MASK = 0x00C,
264
265 LXC_AUTO_CGROUP_RO = 0x010, /* /sys/fs/cgroup (partial mount, read-only) */
266 LXC_AUTO_CGROUP_RW = 0x020, /* /sys/fs/cgroup (partial mount, read-write) */
267 LXC_AUTO_CGROUP_MIXED = 0x030, /* /sys/fs/cgroup (partial mount, paths r/o, cgroup r/w) */
268 LXC_AUTO_CGROUP_FULL_RO = 0x040, /* /sys/fs/cgroup (full mount, read-only) */
269 LXC_AUTO_CGROUP_FULL_RW = 0x050, /* /sys/fs/cgroup (full mount, read-write) */
270 LXC_AUTO_CGROUP_FULL_MIXED = 0x060, /* /sys/fs/cgroup (full mount, parent r/o, own r/w) */
0769b82a
CS
271 /* These are defined in such a way as to retain
272 * binary compatibility with earlier versions of
273 * this code. If the previous mask is applied,
274 * both of these will default back to the _MIXED
275 * variants, which is safe. */
276 LXC_AUTO_CGROUP_NOSPEC = 0x0B0, /* /sys/fs/cgroup (partial mount, r/w or mixed, depending on caps) */
277 LXC_AUTO_CGROUP_FULL_NOSPEC = 0x0E0, /* /sys/fs/cgroup (full mount, r/w or mixed, depending on caps) */
278 LXC_AUTO_CGROUP_MASK = 0x0F0,
b06b8511 279
0769b82a 280 LXC_AUTO_ALL_MASK = 0x0FF, /* all known settings */
368bbc02
CS
281};
282
571e6ec8
DL
283/*
284 * Defines the global container configuration
63376d7d
DL
285 * @rootfs : root directory to run the container
286 * @pivotdir : pivotdir path, if not set default will be used
287 * @mount : list of mount points
288 * @tty : numbers of tty
289 * @pts : new pts instance
290 * @mount_list : list of mount point (alternative to fstab file)
291 * @network : network configuration
292 * @utsname : container utsname
293 * @fstab : path to a fstab file format
1fb86a7c
SH
294 * @caps : list of the capabilities to drop
295 * @keepcaps : list of the capabilities to keep
63376d7d
DL
296 * @tty_info : tty data
297 * @console : console data
7c6ef2a2 298 * @ttydir : directory (under /dev) in which to create console and ttys
fe4de9a6
DE
299 * @lsm_aa_profile : apparmor profile to switch to or NULL
300 * @lsm_se_context : selinux type to switch to or NULL
571e6ec8 301 */
26ddeedd 302enum lxchooks {
f7bee6c6 303 LXCHOOK_PRESTART, LXCHOOK_PREMOUNT, LXCHOOK_MOUNT, LXCHOOK_AUTODEV,
52492063 304 LXCHOOK_START, LXCHOOK_STOP, LXCHOOK_POSTSTOP, LXCHOOK_CLONE, LXCHOOK_DESTROY,
37cf711b 305 NUM_LXC_HOOKS};
72d0e1cb
SG
306extern char *lxchook_names[NUM_LXC_HOOKS];
307
7b35f3d6
SH
308struct saved_nic {
309 int ifindex;
310 char *orig_name;
311};
312
571e6ec8 313struct lxc_conf {
37903589 314 int is_execute;
571e6ec8 315 char *fstab;
1c30b4ad 316 unsigned int tty;
17919969 317 unsigned int pts;
91480a0f 318 int reboot;
828695d9 319 int need_utmp_watch;
9b8e3c96 320 signed long personality;
571e6ec8
DL
321 struct utsname *utsname;
322 struct lxc_list cgroup;
f6d3e3e4 323 struct lxc_list id_map;
5f4535a3 324 struct lxc_list network;
7b35f3d6
SH
325 struct saved_nic *saved_nics;
326 int num_savednics;
368bbc02 327 int auto_mounts;
e7938e9e 328 struct lxc_list mount_list;
81810dd1 329 struct lxc_list caps;
1fb86a7c 330 struct lxc_list keepcaps;
571e6ec8 331 struct lxc_tty_info tty_info;
393903d1 332 char *pty_names; // comma-separated list of lxc.tty pty names
63376d7d 333 struct lxc_console console;
33fcb7a0 334 struct lxc_rootfs rootfs;
7c6ef2a2 335 char *ttydir;
b119f362 336 int close_all_fds;
26ddeedd 337 struct lxc_list hooks[NUM_LXC_HOOKS];
4a85ce2a 338
fe4de9a6 339 char *lsm_aa_profile;
a56e2df9 340 unsigned int lsm_aa_allow_incomplete;
fe4de9a6 341 char *lsm_se_context;
5112cd70 342 int tmp_umount_proc;
8f2c3a70 343 char *seccomp; // filename with the seccomp rules
769872f9 344#if HAVE_SCMP_FILTER_CTX
d58c6ad0 345 scmp_filter_ctx seccomp_ctx;
769872f9 346#endif
72d0e1cb 347 int maincmd_fd;
ff6cb4ed 348 unsigned int autodev; // if 1, mount and fill a /dev at start
f0f1d8c0 349 int haltsignal; // signal used to halt container
dd267776 350 int rebootsignal; // signal used to reboot container
f0f1d8c0 351 int stopsignal; // signal used to hard stop container
91863d36 352 unsigned int kmsg; // if 1, create /dev/kmsg symlink
f7bee6c6 353 char *rcfile; // Copy of the top level rcfile we read
b40a606e
SH
354
355 // Logfile and logleve can be set in a container config file.
356 // Those function as defaults. The defaults can be overriden
357 // by command line. However we don't want the command line
358 // specified values to be saved on c->save_config(). So we
359 // store the config file specified values here.
360 char *logfile; // the logfile as specifed in config
361 int loglevel; // loglevel as specifed in config (if any)
858377e4 362 int logfd;
9f30a190
MM
363
364 int inherit_ns_fd[LXC_NS_MAX];
ee1e7aa0 365
3590152f
CB
366 unsigned int start_auto;
367 unsigned int start_delay;
ee1e7aa0
SG
368 int start_order;
369 struct lxc_list groups;
76a26f55 370 int nbd_idx;
35120d9c 371
a8dfe4e0 372 /* unshare the mount namespace in the monitor */
226dc30e 373 unsigned int monitor_unshare;
a8dfe4e0 374
35120d9c
SH
375 /* set to true when rootfs has been setup */
376 bool rootfs_setup;
f979ac15
SH
377
378 /* list of included files */
379 struct lxc_list includes;
4184c3e1
SH
380 /* config entries which are not "lxc.*" are aliens */
381 struct lxc_list aliens;
7c661726
MP
382
383 /* list of environment variables we'll add to the container when
384 * started */
385 struct lxc_list environment;
6b0d5538
SH
386
387 /* text representation of the config file */
388 char *unexpanded_config;
389 size_t unexpanded_len, unexpanded_alloced;
67c660d0
SG
390
391 /* init command */
392 char *init_cmd;
56f8ff00 393
72bb04e4
PT
394 /* if running in a new user namespace, the UID/GID that init and COMMAND
395 * should run under when using lxc-execute */
c5cd20ce
PT
396 uid_t init_uid;
397 gid_t init_gid;
8796becf
CB
398
399 /* indicator if the container will be destroyed on shutdown */
66ffdb1a 400 unsigned int ephemeral;
76d0127f
CB
401
402 /* The facility to pass to syslog. Let's users establish as what type of
403 * program liblxc is supposed to write to the syslog. */
404 char *syslog;
5a46f283
CB
405
406 /* Whether PR_SET_NO_NEW_PRIVS will be set for the container. */
407 bool no_new_privs;
c6d09e15
WB
408
409 /* RLIMIT_* limits */
410 struct lxc_list limits;
571e6ec8
DL
411};
412
858377e4
SH
413#ifdef HAVE_TLS
414extern __thread struct lxc_conf *current_config;
415#else
416extern struct lxc_conf *current_config;
417#endif
418
283678ed
SH
419int run_lxc_hooks(const char *name, char *hook, struct lxc_conf *conf,
420 const char *lxcpath, char *argv[]);
26ddeedd 421
cc28d0b0
SH
422extern int detect_shared_rootfs(void);
423
089cd8b8
DL
424/*
425 * Initialize the lxc configuration structure
426 */
7b379ab3 427extern struct lxc_conf *lxc_conf_init(void);
8eb5694b 428extern void lxc_conf_free(struct lxc_conf *conf);
089cd8b8 429
0c547523
SH
430extern int pin_rootfs(const char *rootfs);
431
26b797f3 432extern int lxc_requests_empty_network(struct lxc_handler *handler);
e3b4c4c4 433extern int lxc_create_network(struct lxc_handler *handler);
358daf49 434extern bool lxc_delete_network(struct lxc_handler *handler);
c43cbc04
SH
435extern int lxc_assign_network(const char *lxcpath, char *lxcname,
436 struct lxc_list *networks, pid_t pid);
f6d3e3e4 437extern int lxc_map_ids(struct lxc_list *idmap, pid_t pid);
19a26f82 438extern int lxc_find_gateway_addresses(struct lxc_handler *handler);
0ad19a3f 439
5e4a62bf 440extern int lxc_create_tty(const char *name, struct lxc_conf *conf);
b0a33c1e 441extern void lxc_delete_tty(struct lxc_tty_info *tty_info);
442
72d0e1cb 443extern int lxc_clear_config_network(struct lxc_conf *c);
12a50cc6 444extern int lxc_clear_nic(struct lxc_conf *c, const char *key);
72d0e1cb 445extern int lxc_clear_config_caps(struct lxc_conf *c);
1fb86a7c 446extern int lxc_clear_config_keepcaps(struct lxc_conf *c);
12a50cc6 447extern int lxc_clear_cgroups(struct lxc_conf *c, const char *key);
72d0e1cb 448extern int lxc_clear_mount_entries(struct lxc_conf *c);
b099e9e9 449extern int lxc_clear_automounts(struct lxc_conf *c);
12a50cc6 450extern int lxc_clear_hooks(struct lxc_conf *c, const char *key);
7d0eb87e 451extern int lxc_clear_idmaps(struct lxc_conf *c);
ee1e7aa0 452extern int lxc_clear_groups(struct lxc_conf *c);
ab799c0b 453extern int lxc_clear_environment(struct lxc_conf *c);
c6d09e15 454extern int lxc_clear_limits(struct lxc_conf *c, const char *key);
f0d02950 455extern int lxc_delete_autodev(struct lxc_handler *handler);
78625a5e 456extern int lxc_clear_simple_config_item(struct lxc_conf *c, const char *key);
72d0e1cb 457
35120d9c
SH
458extern int do_rootfs_setup(struct lxc_conf *conf, const char *name,
459 const char *lxcpath);
460
0ad19a3f 461/*
462 * Configure the container from inside
463 */
88d5514d 464
368bbc02 465struct cgroup_process_info;
d4ef7c50 466extern int lxc_setup(struct lxc_handler *handler);
7b35f3d6 467
c6d09e15
WB
468extern int setup_resource_limits(struct lxc_list *limits, pid_t pid);
469
5610055a 470extern void lxc_restore_phys_nics_to_netns(int netnsfd, struct lxc_conf *conf);
cf3ef16d 471
2133f58c
SH
472extern int find_unmapped_nsuid(struct lxc_conf *conf, enum idtype idtype);
473extern int mapped_hostid(unsigned id, struct lxc_conf *conf, enum idtype idtype);
c4d10a05
SH
474extern int chown_mapped_root(char *path, struct lxc_conf *conf);
475extern int ttys_shift_ids(struct lxc_conf *c);
4355ab5f 476extern int userns_exec_1(struct lxc_conf *conf, int (*fn)(void *), void *data);
a17b1e65
SG
477extern int parse_mntopts(const char *mntopts, unsigned long *mntflags,
478 char **mntdata);
5112cd70 479extern void tmp_proc_unmount(struct lxc_conf *lxc_conf);
6a0c909a 480void remount_all_slave(void);
97e9cfa0 481extern void suggest_default_idmap(void);
5ef5c9a3 482FILE *make_anonymous_mount_file(struct lxc_list *mount);
aaf26830 483struct lxc_list *sort_cgroup_settings(struct lxc_list* cgroup_settings);
0ad19a3f 484#endif