LXC
attach_options.h
Go to the documentation of this file.
1 
25 #ifndef __LXC_ATTACH_OPTIONS_H
26 #define __LXC_ATTACH_OPTIONS_H
27 
28 #include <sys/types.h>
29 
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33 
41 
42 enum {
43  /* The following are on by default: */
47  LXC_ATTACH_LSM_EXEC = 0x00000008,
49  /* The following are off by default: */
51  LXC_ATTACH_LSM_NOW = 0x00020000,
52  /* Set PR_SET_NO_NEW_PRIVS to block execve() gainable privileges. */
53  LXC_ATTACH_NO_NEW_PRIVS = 0x00040000,
54  LXC_ATTACH_TERMINAL = 0x00080000,
56  /* We have 16 bits for things that are on by default and 16 bits that
57  * are off by default, that should be sufficient to keep binary
58  * compatibility for a while
59  */
60  LXC_ATTACH_DEFAULT = 0x0000FFFF
61 };
62 
64 #define LXC_ATTACH_LSM (LXC_ATTACH_LSM_EXEC | LXC_ATTACH_LSM_NOW)
65 
74 typedef int (*lxc_attach_exec_t)(void* payload, int msg_fd);
75 
79 typedef struct lxc_attach_options_t {
82 
85 
91 
96  char* initial_cwd;
97 
103  uid_t uid;
104 
110  gid_t gid;
111 
114 
117 
122 
131  int stdin_fd;
132  int stdout_fd;
133  int stderr_fd;
137  int log_fd;
138 
139  char *init_fifo[3]; /* isulad: default fifos for the start */
140  int64_t timeout;/* isulad: Seconds for waiting on a container to attach/exec before it is killed*/
142 
144 #define LXC_ATTACH_OPTIONS_DEFAULT \
145  { \
146  /* .attach_flags = */ LXC_ATTACH_DEFAULT, \
147  /* .namespaces = */ -1, \
148  /* .personality = */ -1, \
149  /* .initial_cwd = */ NULL, \
150  /* .uid = */ (uid_t)-1, \
151  /* .gid = */ (gid_t)-1, \
152  /* .env_policy = */ LXC_ATTACH_KEEP_ENV, \
153  /* .extra_env_vars = */ NULL, \
154  /* .extra_keep_env = */ NULL, \
155  /* .stdin_fd = */ 0, \
156  /* .stdout_fd = */ 1, \
157  /* .stderr_fd = */ 2, \
158  /* .log_fd = */ -EBADF, \
159  /* .init_fifo = */ {NULL, NULL}, \
160  }
161 
165 typedef struct lxc_attach_command_t {
166  char* program;
167  char** argv;
169 
177 extern int lxc_attach_run_command(void* payload, int msg_fd);
178 
186 extern int lxc_attach_run_shell(void* payload, int msg_fd);
187 
188 #ifdef __cplusplus
189 }
190 #endif
191 
192 #endif
int stdin_fd
Definition: attach_options.h:131
int log_fd
Definition: attach_options.h:137
Definition: attach_options.h:165
Definition: attach_options.h:54
int namespaces
Definition: attach_options.h:84
int lxc_attach_run_shell(void *payload, int msg_fd)
Run a shell command in the container.
char * program
Definition: attach_options.h:166
uid_t uid
Definition: attach_options.h:103
Definition: attach_options.h:44
int stderr_fd
Definition: attach_options.h:133
char ** extra_env_vars
Definition: attach_options.h:116
Definition: attach_options.h:60
Definition: attach_options.h:38
lxc_attach_env_policy_t
Definition: attach_options.h:37
char ** extra_keep_env
Definition: attach_options.h:121
Definition: attach_options.h:51
int attach_flags
Definition: attach_options.h:81
int(* lxc_attach_exec_t)(void *payload, int msg_fd)
Definition: attach_options.h:74
struct lxc_attach_options_t lxc_attach_options_t
char ** argv
Definition: attach_options.h:167
Definition: attach_options.h:39
gid_t gid
Definition: attach_options.h:110
long personality
Definition: attach_options.h:90
int lxc_attach_run_command(void *payload, int msg_fd)
Run a command in the container.
Definition: attach_options.h:53
struct lxc_attach_command_t lxc_attach_command_t
Definition: attach_options.h:47
lxc_attach_env_policy_t env_policy
Definition: attach_options.h:113
Definition: attach_options.h:79
Definition: attach_options.h:50
Definition: attach_options.h:46
char * initial_cwd
Definition: attach_options.h:96
Definition: attach_options.h:45
int stdout_fd
Definition: attach_options.h:132