]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/commands.h
Merge pull request #3059 from brauner/2019-06-21/seccomp_notify
[mirror_lxc.git] / src / lxc / commands.h
1 /*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2009
5 *
6 * Authors:
7 * Daniel Lezcano <daniel.lezcano at free.fr>
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
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24 #ifndef __LXC_COMMANDS_H
25 #define __LXC_COMMANDS_H
26
27 #include <stdio.h>
28 #include <sys/types.h>
29 #include <unistd.h>
30
31 #include "lxccontainer.h"
32 #include "macro.h"
33 #include "state.h"
34
35 typedef enum {
36 LXC_CMD_CONSOLE,
37 LXC_CMD_TERMINAL_WINCH,
38 LXC_CMD_STOP,
39 LXC_CMD_GET_STATE,
40 LXC_CMD_GET_INIT_PID,
41 LXC_CMD_GET_CLONE_FLAGS,
42 LXC_CMD_GET_CGROUP,
43 LXC_CMD_GET_CONFIG_ITEM,
44 LXC_CMD_GET_NAME,
45 LXC_CMD_GET_LXCPATH,
46 LXC_CMD_ADD_STATE_CLIENT,
47 LXC_CMD_CONSOLE_LOG,
48 LXC_CMD_SERVE_STATE_CLIENTS,
49 LXC_CMD_SECCOMP_NOTIFY_ADD_LISTENER,
50 LXC_CMD_MAX,
51 } lxc_cmd_t;
52
53 struct lxc_cmd_req {
54 lxc_cmd_t cmd;
55 int datalen;
56 const void *data;
57 };
58
59 struct lxc_cmd_rsp {
60 int ret; /* 0 on success, -errno on failure */
61 int datalen;
62 void *data;
63 };
64
65 struct lxc_cmd_rr {
66 struct lxc_cmd_req req;
67 struct lxc_cmd_rsp rsp;
68 };
69
70 struct lxc_cmd_console_rsp_data {
71 int masterfd;
72 int ttynum;
73 };
74
75 struct lxc_cmd_console_log {
76 bool clear;
77 bool read;
78 uint64_t read_max;
79 bool write_logfile;
80
81 };
82
83 extern int lxc_cmd_terminal_winch(const char *name, const char *lxcpath);
84 extern int lxc_cmd_console(const char *name, int *ttynum, int *fd,
85 const char *lxcpath);
86 /*
87 * Get the 'real' cgroup path (as seen in /proc/self/cgroup) for a container
88 * for a particular subsystem
89 */
90 extern char *lxc_cmd_get_cgroup_path(const char *name, const char *lxcpath,
91 const char *subsystem);
92 extern int lxc_cmd_get_clone_flags(const char *name, const char *lxcpath);
93 extern char *lxc_cmd_get_config_item(const char *name, const char *item, const char *lxcpath);
94 extern char *lxc_cmd_get_name(const char *hashed_sock);
95 extern char *lxc_cmd_get_lxcpath(const char *hashed_sock);
96 extern pid_t lxc_cmd_get_init_pid(const char *name, const char *lxcpath);
97 extern int lxc_cmd_get_state(const char *name, const char *lxcpath);
98 extern int lxc_cmd_stop(const char *name, const char *lxcpath);
99
100 /* lxc_cmd_add_state_client Register a new state client fd in the container's
101 * in-memory handler.
102 *
103 * @param[in] name Name of container to connect to.
104 * @param[in] lxcpath The lxcpath in which the container is running.
105 * @param[in] states The states to wait for.
106 * @param[out] state_client_fd The state client fd from which the state can be
107 * received.
108 * @return Return < 0 on error
109 * == MAX_STATE when state needs to retrieved
110 * via socket fd
111 * < MAX_STATE current container state
112 */
113 extern int lxc_cmd_add_state_client(const char *name, const char *lxcpath,
114 lxc_state_t states[MAX_STATE],
115 int *state_client_fd);
116 extern int lxc_cmd_serve_state_clients(const char *name, const char *lxcpath,
117 lxc_state_t state);
118
119 struct lxc_epoll_descr;
120 struct lxc_handler;
121
122 extern int lxc_cmd_init(const char *name, const char *lxcpath, const char *suffix);
123 extern int lxc_cmd_mainloop_add(const char *name, struct lxc_epoll_descr *descr,
124 struct lxc_handler *handler);
125 extern int lxc_try_cmd(const char *name, const char *lxcpath);
126 extern int lxc_cmd_console_log(const char *name, const char *lxcpath,
127 struct lxc_console_log *log);
128 extern int lxc_cmd_seccomp_notify_add_listener(const char *name,
129 const char *lxcpath,
130 int fd,
131 /* unused */ unsigned int command,
132 /* unused */ unsigned int flags);
133
134 #endif /* __commands_h */