]> git.ipfire.org Git - thirdparty/systemd.git/blame - execute.h
hostname: set hostname early during boottime
[thirdparty/systemd.git] / execute.h
CommitLineData
5cb5a6ff
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
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
LP
43
44typedef enum ExecOutput {
94f04347
LP
45 EXEC_OUTPUT_CONSOLE,
46 EXEC_OUTPUT_NULL,
47 EXEC_OUTPUT_SYSLOG,
48 EXEC_OUTPUT_KERNEL,
49 _EXEC_OUTPUT_MAX,
50 _EXEC_OUTPUT_INVALID = -1
071830ff
LP
51} ExecOutput;
52
94f04347
LP
53typedef enum ExecInput {
54 EXEC_INPUT_NULL,
55 EXEC_INPUT_CONSOLE,
56 _EXEC_INPUT_MAX,
57 _EXEC_INPUT_INVALID = -1
58} ExecInput;
59
5cb5a6ff
LP
60struct ExecStatus {
61 pid_t pid;
034c6ed7 62 usec_t timestamp;
9152c765
LP
63 int code; /* as in siginfo_t::si_code */
64 int status; /* as in sigingo_t::si_status */
5cb5a6ff
LP
65};
66
67struct ExecCommand {
68 char *path;
69 char **argv;
034c6ed7
LP
70 ExecStatus exec_status;
71 LIST_FIELDS(ExecCommand, command); /* useful for chaining commands */
5cb5a6ff
LP
72};
73
74struct ExecContext {
75 char **environment;
76 mode_t umask;
94f04347 77 struct rlimit *rlimit[RLIMIT_NLIMITS];
9eba9da4 78 char *working_directory, *root_directory;
5cb5a6ff
LP
79 int oom_adjust;
80 int nice;
9eba9da4 81 int ioprio;
94f04347
LP
82 int cpu_sched_policy;
83 int cpu_sched_priority;
84 cpu_set_t cpu_affinity;
85 unsigned long timer_slack_ns;
fb33a393
LP
86
87 bool oom_adjust_set:1;
88 bool nice_set:1;
9eba9da4 89 bool ioprio_set:1;
94f04347
LP
90 bool cpu_sched_set:1;
91 bool cpu_affinity_set:1;
92 bool timer_slack_ns_set:1;
034c6ed7 93
38b48754 94 bool cpu_sched_reset_on_fork;
451a074f 95 bool non_blocking;
ee2b4894 96 bool new_session;
38b48754 97
94f04347 98 ExecInput input;
071830ff
LP
99 ExecOutput output;
100 int syslog_priority;
101 char *syslog_identifier;
102
034c6ed7 103 cap_t capabilities;
94f04347
LP
104 int secure_bits;
105 uint64_t capability_bounding_set_drop;
5cb5a6ff 106
94f04347 107 /* Since resolving these names might might involve socket
5cb5a6ff 108 * connections and we don't want to deadlock ourselves these
94f04347
LP
109 * names are resolved on execution only and in the child
110 * process. */
5cb5a6ff
LP
111 char *user;
112 char *group;
113 char **supplementary_groups;
114};
115
034c6ed7
LP
116typedef enum ExitStatus {
117 /* EXIT_SUCCESS defined by libc */
118 /* EXIT_FAILURE defined by libc */
119 EXIT_INVALIDARGUMENT = 2,
120 EXIT_NOTIMPLEMENTED = 3,
121 EXIT_NOPERMISSION = 4,
122 EXIT_NOTINSTALLED = 5,
123 EXIT_NOTCONFIGURED = 6,
124 EXIT_NOTRUNNING = 7,
125
126 /* The LSB suggests that error codes >= 200 are "reserved". We
127 * use them here under the assumption that they hence are
128 * unused by init scripts.
129 *
130 * http://refspecs.freestandards.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic/iniscrptact.html */
131
132 EXIT_CHDIR = 200,
133 EXIT_NICE,
134 EXIT_FDS,
135 EXIT_EXEC,
136 EXIT_MEMORY,
137 EXIT_LIMITS,
309bff19 138 EXIT_OOM_ADJUST,
071830ff 139 EXIT_SIGNAL_MASK,
94f04347 140 EXIT_INPUT,
9eba9da4 141 EXIT_OUTPUT,
81a2b7ce 142 EXIT_CHROOT, /* 210 */
9eba9da4 143 EXIT_PGID,
94f04347
LP
144 EXIT_IOPRIO,
145 EXIT_TIMERSLACK,
146 EXIT_SECUREBITS,
147 EXIT_SETSCHEDULER,
81a2b7ce
LP
148 EXIT_CPUAFFINITY,
149 EXIT_GROUP,
150 EXIT_USER,
8e274523 151 EXIT_CAPABILITIES,
ee2b4894
LP
152 EXIT_CGROUP, /* 220 */
153 EXIT_SETSID
034c6ed7
LP
154} ExitStatus;
155
81a2b7ce
LP
156int exec_spawn(const ExecCommand *command,
157 const ExecContext *context,
158 int *fds, unsigned n_fds,
159 bool apply_permissions,
160 bool apply_chroot,
8e274523 161 struct CGroupBonding *cgroup_bondings,
81a2b7ce 162 pid_t *ret);
5cb5a6ff 163
5cb5a6ff 164void exec_command_free_list(ExecCommand *c);
034c6ed7 165void exec_command_free_array(ExecCommand **c, unsigned n);
5cb5a6ff 166
44d8db9e
LP
167char *exec_command_line(ExecCommand *c);
168void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix);
169void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
a6a80b4f 170void exec_command_append_list(ExecCommand **l, ExecCommand *e);
44d8db9e 171
034c6ed7
LP
172void exec_context_init(ExecContext *c);
173void exec_context_done(ExecContext *c);
5cb5a6ff
LP
174void exec_context_dump(ExecContext *c, FILE* f, const char *prefix);
175
034c6ed7 176void exec_status_fill(ExecStatus *s, pid_t pid, int code, int status);
5cb5a6ff 177
94f04347
LP
178const char* exec_output_to_string(ExecOutput i);
179int exec_output_from_string(const char *s);
180
181const char* exec_input_to_string(ExecInput i);
182int exec_input_from_string(const char *s);
183
5cb5a6ff 184#endif