]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/execute.h
units: fix a typo in arch's rc-local.service unit file
[thirdparty/systemd.git] / src / execute.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
5cb5a6ff
LP
2
3#ifndef fooexecutehfoo
4#define fooexecutehfoo
5
a7334b09
LP
6/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
5cb5a6ff
LP
25typedef struct ExecStatus ExecStatus;
26typedef struct ExecCommand ExecCommand;
27typedef struct ExecContext ExecContext;
28
29#include <sys/time.h>
30#include <sys/resource.h>
31#include <sys/capability.h>
32#include <stdbool.h>
33#include <stdio.h>
94f04347 34#include <sched.h>
5cb5a6ff 35
8e274523
LP
36struct CGroupBonding;
37
5cb5a6ff 38#include "list.h"
034c6ed7 39#include "util.h"
5cb5a6ff 40
071830ff 41/* Abstract namespace! */
ebfaa158 42#define LOGGER_SOCKET "/org/freedesktop/systemd1/logger"
071830ff 43
9a34ec5f 44/* This doesn't really belong here, but I couldn't find a better place to put this. */
1b91d3e8 45#define SIGNALS_CRASH_HANDLER SIGSEGV,SIGILL,SIGFPE,SIGBUS,SIGQUIT,SIGABRT
9a34ec5f
LP
46#define SIGNALS_IGNORE SIGKILL,SIGPIPE
47
2e22afe9
LP
48typedef enum KillMode {
49 KILL_CONTROL_GROUP = 0,
50 KILL_PROCESS_GROUP,
51 KILL_PROCESS,
52 KILL_NONE,
53 _KILL_MODE_MAX,
54 _KILL_MODE_INVALID = -1
55} KillMode;
56
80876c20
LP
57typedef enum ExecInput {
58 EXEC_INPUT_NULL,
59 EXEC_INPUT_TTY,
60 EXEC_INPUT_TTY_FORCE,
61 EXEC_INPUT_TTY_FAIL,
4f2d528d 62 EXEC_INPUT_SOCKET,
80876c20
LP
63 _EXEC_INPUT_MAX,
64 _EXEC_INPUT_INVALID = -1
65} ExecInput;
66
071830ff 67typedef enum ExecOutput {
80876c20 68 EXEC_OUTPUT_INHERIT,
94f04347 69 EXEC_OUTPUT_NULL,
80876c20 70 EXEC_OUTPUT_TTY,
94f04347 71 EXEC_OUTPUT_SYSLOG,
9a6bca7a 72 EXEC_OUTPUT_KMSG,
4f2d528d 73 EXEC_OUTPUT_SOCKET,
94f04347
LP
74 _EXEC_OUTPUT_MAX,
75 _EXEC_OUTPUT_INVALID = -1
071830ff
LP
76} ExecOutput;
77
5cb5a6ff 78struct ExecStatus {
63983207
LP
79 dual_timestamp start_timestamp;
80 dual_timestamp exit_timestamp;
9d58f1db 81 pid_t pid;
9152c765
LP
82 int code; /* as in siginfo_t::si_code */
83 int status; /* as in sigingo_t::si_status */
5cb5a6ff
LP
84};
85
86struct ExecCommand {
87 char *path;
88 char **argv;
034c6ed7
LP
89 ExecStatus exec_status;
90 LIST_FIELDS(ExecCommand, command); /* useful for chaining commands */
7fab9d01 91 bool ignore;
5cb5a6ff
LP
92};
93
94struct ExecContext {
95 char **environment;
94f04347 96 struct rlimit *rlimit[RLIMIT_NLIMITS];
9eba9da4 97 char *working_directory, *root_directory;
9d58f1db
LP
98
99 mode_t umask;
5cb5a6ff
LP
100 int oom_adjust;
101 int nice;
9eba9da4 102 int ioprio;
94f04347
LP
103 int cpu_sched_policy;
104 int cpu_sched_priority;
9d58f1db 105
82c121a4
LP
106 cpu_set_t *cpuset;
107 unsigned cpuset_ncpus;
fb33a393 108
80876c20
LP
109 ExecInput std_input;
110 ExecOutput std_output;
111 ExecOutput std_error;
112
7fab9d01 113 unsigned long timer_slack_nsec;
071830ff 114
df1f0afe
LP
115 char *tcpwrap_name;
116
9d58f1db 117 char *tty_path;
5cb5a6ff 118
94f04347 119 /* Since resolving these names might might involve socket
5cb5a6ff 120 * connections and we don't want to deadlock ourselves these
94f04347
LP
121 * names are resolved on execution only and in the child
122 * process. */
5cb5a6ff
LP
123 char *user;
124 char *group;
125 char **supplementary_groups;
9d58f1db 126
5b6319dc
LP
127 char *pam_name;
128
15ae422b
LP
129 char **read_write_dirs, **read_only_dirs, **inaccessible_dirs;
130 unsigned long mount_flags;
131
9d58f1db
LP
132 uint64_t capability_bounding_set_drop;
133
7fab9d01
LP
134 /* Not relevant for spawning processes, just for killing */
135 KillMode kill_mode;
136 int kill_signal;
137
9d58f1db
LP
138 cap_t capabilities;
139 int secure_bits;
140
7fab9d01
LP
141 int syslog_priority;
142 char *syslog_identifier;
143 bool syslog_level_prefix;
144
9d58f1db
LP
145 bool cpu_sched_reset_on_fork;
146 bool non_blocking;
15ae422b 147 bool private_tmp;
9d58f1db 148
9d58f1db
LP
149 /* This is not exposed to the user but available
150 * internally. We need it to make sure that whenever we spawn
151 * /bin/mount it is run in the same process group as us so
152 * that the autofs logic detects that it belongs to us and we
153 * don't enter a trigger loop. */
74922904 154 bool same_pgrp;
2e22afe9 155
7fab9d01
LP
156 bool oom_adjust_set:1;
157 bool nice_set:1;
158 bool ioprio_set:1;
159 bool cpu_sched_set:1;
160 bool timer_slack_nsec_set:1;
5cb5a6ff
LP
161};
162
9fb86720 163int exec_spawn(ExecCommand *command,
9e2f7c11 164 char **argv,
81a2b7ce 165 const ExecContext *context,
c2748801 166 int fds[], unsigned n_fds,
1137a57c 167 char **environment,
81a2b7ce
LP
168 bool apply_permissions,
169 bool apply_chroot,
1e3ad081 170 bool apply_tty_stdin,
80876c20 171 bool confirm_spawn,
8e274523 172 struct CGroupBonding *cgroup_bondings,
81a2b7ce 173 pid_t *ret);
5cb5a6ff 174
43d0fcbd
LP
175void exec_command_done(ExecCommand *c);
176void exec_command_done_array(ExecCommand *c, unsigned n);
177
5cb5a6ff 178void exec_command_free_list(ExecCommand *c);
034c6ed7 179void exec_command_free_array(ExecCommand **c, unsigned n);
5cb5a6ff 180
9e2f7c11
LP
181char *exec_command_line(char **argv);
182
44d8db9e
LP
183void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix);
184void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
a6a80b4f 185void exec_command_append_list(ExecCommand **l, ExecCommand *e);
26fd040d 186int exec_command_set(ExecCommand *c, const char *path, ...);
44d8db9e 187
034c6ed7
LP
188void exec_context_init(ExecContext *c);
189void exec_context_done(ExecContext *c);
5cb5a6ff
LP
190void exec_context_dump(ExecContext *c, FILE* f, const char *prefix);
191
b58b4116
LP
192void exec_status_start(ExecStatus *s, pid_t pid);
193void exec_status_exit(ExecStatus *s, pid_t pid, int code, int status);
9fb86720 194void exec_status_dump(ExecStatus *s, FILE *f, const char *prefix);
5cb5a6ff 195
94f04347
LP
196const char* exec_output_to_string(ExecOutput i);
197int exec_output_from_string(const char *s);
198
199const char* exec_input_to_string(ExecInput i);
200int exec_input_from_string(const char *s);
201
5cb5a6ff 202#endif