]> git.proxmox.com Git - mirror_lxc.git/blobdiff - src/lxc/conf.h
refactor AppArmor into LSM backend, add SELinux support
[mirror_lxc.git] / src / lxc / conf.h
index b79dfe815111e316275c8e5f9a687939dcb64841..8c2dc4e8fc9ca81cc38a552fe07a333db6bac81d 100644 (file)
@@ -4,7 +4,7 @@
  * (C) Copyright IBM Corp. 2007, 2008
  *
  * Authors:
- * Daniel Lezcano <dlezcano at fr.ibm.com>
+ * Daniel Lezcano <daniel.lezcano at free.fr>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 #ifndef _conf_h
 #define _conf_h
 
+#include "config.h"
+
 #include <netinet/in.h>
+#include <net/if.h>
 #include <sys/param.h>
+#include <sys/types.h>
+#include <stdbool.h>
 
 #include <lxc/list.h>
 
+#include <lxc/start.h> /* for lxc_handler */
+
+#if HAVE_SCMP_FILTER_CTX
+typedef void * scmp_filter_ctx;
+#endif
+
 enum {
        LXC_NET_EMPTY,
        LXC_NET_VETH,
@@ -62,7 +73,7 @@ struct lxc_route {
  */
 struct lxc_inet6dev {
        struct in6_addr addr;
-       struct in6_addr bcast;
+       struct in6_addr mcast;
        struct in6_addr acast;
        int prefix;
 };
@@ -73,13 +84,14 @@ struct lxc_route6 {
 
 struct ifla_veth {
        char *pair; /* pair name */
+       char veth1[IFNAMSIZ]; /* needed for deconf */
 };
 
 struct ifla_vlan {
        uint   flags;
        uint   fmask;
-       ushort   vid;
-       ushort   pad;
+       unsigned short   vid;
+       unsigned short   pad;
 };
 
 struct ifla_macvlan {
@@ -94,11 +106,13 @@ union netdev_p {
 
 /*
  * Defines a structure to configure a network device
- * @link   : lxc.network.link, name of bridge or host iface to attach if any
- * @name   : lxc.network.name, name of iface on the container side
- * @flags  : flag of the network device (IFF_UP, ... )
- * @ipv4   : a list of ipv4 addresses to be set on the network device
- * @ipv6   : a list of ipv6 addresses to be set on the network device
+ * @link       : lxc.network.link, name of bridge or host iface to attach if any
+ * @name       : lxc.network.name, name of iface on the container side
+ * @flags      : flag of the network device (IFF_UP, ... )
+ * @ipv4       : a list of ipv4 addresses to be set on the network device
+ * @ipv6       : a list of ipv6 addresses to be set on the network device
+ * @upscript   : a script filename to be executed during interface configuration
+ * @downscript : a script filename to be executed during interface destruction
  */
 struct lxc_netdev {
        int type;
@@ -111,6 +125,12 @@ struct lxc_netdev {
        union netdev_p priv;
        struct lxc_list ipv4;
        struct lxc_list ipv6;
+       struct in_addr *ipv4_gateway;
+       bool ipv4_gateway_auto;
+       struct in6_addr *ipv6_gateway;
+       bool ipv6_gateway_auto;
+       char *upscript;
+       char *downscript;
 };
 
 /*
@@ -124,6 +144,26 @@ struct lxc_cgroup {
        char *value;
 };
 
+enum idtype {
+       ID_TYPE_UID,
+       ID_TYPE_GID
+};
+
+/*
+ * id_map is an id map entry.  Form in confile is:
+ * lxc.id_map = u 0    9800 100
+ * lxc.id_map = u 1000 9900 100
+ * lxc.id_map = g 0    9800 100
+ * lxc.id_map = g 1000 9900 100
+ * meaning the container can use uids and gids 0-99 and 1000-1099,
+ * with [ug]id 0 mapping to [ug]id 9800 on the host, and [ug]id 1000 to
+ * [ug]id 9900 on the host.
+ */
+struct id_map {
+       enum idtype idtype;
+       unsigned long hostid, nsid, range;
+};
+
 /*
  * Defines a structure containing a pty information for
  * virtualizing a tty
@@ -148,45 +188,164 @@ struct lxc_tty_info {
        struct lxc_pty_info *pty_info;
 };
 
+struct lxc_tty_state;
+
+/*
+ * Defines the structure to store the console information
+ * @peer   : the file descriptor put/get console traffic
+ * @name   : the file name of the slave pty
+ */
+struct lxc_console {
+       int slave;
+       int master;
+       int peer;
+       struct lxc_pty_info peerpty;
+       struct lxc_epoll_descr *descr;
+       char *path;
+       char *log_path;
+       int log_fd;
+       char name[MAXPATHLEN];
+       struct termios *tios;
+       struct lxc_tty_state *tty_state;
+};
+
+/*
+ * Defines a structure to store the rootfs location, the
+ * optionals pivot_root, rootfs mount paths
+ * @rootfs     : a path to the rootfs
+ * @pivot_root : a path to a pivot_root location to be used
+ */
+struct lxc_rootfs {
+       char *path;
+       char *mount;
+       char *pivot;
+};
+
+/*
+ * Automatic mounts for LXC to perform inside the container
+ */
+enum {
+       LXC_AUTO_PROC        = 0x01,   /* /proc */
+       LXC_AUTO_SYS         = 0x02,   /* /sys*/
+       LXC_AUTO_CGROUP      = 0x04,   /* /sys/fs/cgroup */
+       LXC_AUTO_PROC_SYSRQ  = 0x08,   /* /proc/sysrq-trigger over-bind-mounted with /dev/null */
+};
+
 /*
  * Defines the global container configuration
- * @rootfs  : the root directory to run the container
- * @mount   : the list of mount points
- * @network : the network configuration
- * @utsname : the container utsname
+ * @rootfs     : root directory to run the container
+ * @pivotdir   : pivotdir path, if not set default will be used
+ * @mount      : list of mount points
+ * @tty        : numbers of tty
+ * @pts        : new pts instance
+ * @mount_list : list of mount point (alternative to fstab file)
+ * @network    : network configuration
+ * @utsname    : container utsname
+ * @fstab      : path to a fstab file format
+ * @caps       : list of the capabilities to drop
+ * @keepcaps   : list of the capabilities to keep
+ * @tty_info   : tty data
+ * @console    : console data
+ * @ttydir     : directory (under /dev) in which to create console and ttys
+ * @lsm_aa_profile : apparmor profile to switch to or NULL
+ * @lsm_se_context : selinux type to switch to or NULL
  */
+enum lxchooks {
+       LXCHOOK_PRESTART, LXCHOOK_PREMOUNT, LXCHOOK_MOUNT, LXCHOOK_AUTODEV,
+       LXCHOOK_START, LXCHOOK_POSTSTOP, LXCHOOK_CLONE, NUM_LXC_HOOKS};
+extern char *lxchook_names[NUM_LXC_HOOKS];
+
+struct saved_nic {
+       int ifindex;
+       char *orig_name;
+};
+
 struct lxc_conf {
-       char *rootfs;
-       char *pivotdir;
+       int is_execute;
        char *fstab;
        int tty;
        int pts;
+       int reboot;
+       int need_utmp_watch;
+       int personality;
        struct utsname *utsname;
        struct lxc_list cgroup;
+       struct lxc_list id_map;
        struct lxc_list network;
+       struct saved_nic *saved_nics;
+       int num_savednics;
+       int auto_mounts;
        struct lxc_list mount_list;
        struct lxc_list caps;
+       struct lxc_list keepcaps;
        struct lxc_tty_info tty_info;
-       char console[MAXPATHLEN];
+       struct lxc_console console;
+       struct lxc_rootfs rootfs;
+       char *ttydir;
+       int close_all_fds;
+       struct lxc_list hooks[NUM_LXC_HOOKS];
+
+       char *lsm_aa_profile;
+       char *lsm_se_context;
+       int lsm_umount_proc;
+       char *seccomp;  // filename with the seccomp rules
+#if HAVE_SCMP_FILTER_CTX
+       scmp_filter_ctx *seccomp_ctx;
+#endif
+       int maincmd_fd;
+       int autodev;  // if 1, mount and fill a /dev at start
+       int stopsignal; // signal used to stop container
+       int kmsg;  // if 1, create /dev/kmsg symlink
+       char *rcfile;   // Copy of the top level rcfile we read
+
+       // Logfile and logleve can be set in a container config file.
+       // Those function as defaults.  The defaults can be overriden
+       // by command line.  However we don't want the command line
+       // specified values to be saved on c->save_config().  So we
+       // store the config file specified values here.
+       char *logfile;  // the logfile as specifed in config
+       int loglevel;   // loglevel as specifed in config (if any)
 };
 
+int run_lxc_hooks(const char *name, char *hook, struct lxc_conf *conf,
+                 const char *lxcpath, char *argv[]);
+
+extern int detect_shared_rootfs(void);
+
 /*
  * Initialize the lxc configuration structure
  */
 extern struct lxc_conf *lxc_conf_init(void);
+extern void lxc_conf_free(struct lxc_conf *conf);
+
+extern int pin_rootfs(const char *rootfs);
 
-extern int lxc_create_network(struct lxc_list *networks);
+extern int lxc_create_network(struct lxc_handler *handler);
+extern void lxc_delete_network(struct lxc_handler *handler);
 extern int lxc_assign_network(struct lxc_list *networks, pid_t pid);
+extern int lxc_map_ids(struct lxc_list *idmap, pid_t pid);
+extern int lxc_find_gateway_addresses(struct lxc_handler *handler);
 
 extern int lxc_create_tty(const char *name, struct lxc_conf *conf);
 extern void lxc_delete_tty(struct lxc_tty_info *tty_info);
 
+extern int lxc_clear_config_network(struct lxc_conf *c);
+extern int lxc_clear_nic(struct lxc_conf *c, const char *key);
+extern int lxc_clear_config_caps(struct lxc_conf *c);
+extern int lxc_clear_config_keepcaps(struct lxc_conf *c);
+extern int lxc_clear_cgroups(struct lxc_conf *c, const char *key);
+extern int lxc_clear_mount_entries(struct lxc_conf *c);
+extern int lxc_clear_hooks(struct lxc_conf *c, const char *key);
+
+extern int uid_shift_ttys(int pid, struct lxc_conf *conf);
+
 /*
  * Configure the container from inside
  */
 
-struct lxc_handler;
-
-extern int lxc_setup(const char *name, struct lxc_conf *lxc_conf);
+struct cgroup_process_info;
+extern int lxc_setup(const char *name, struct lxc_conf *lxc_conf,
+                       const char *lxcpath, struct cgroup_process_info *cgroup_info);
 
+extern void lxc_rename_phys_nics_on_shutdown(struct lxc_conf *conf);
 #endif