]> git.ipfire.org Git - thirdparty/systemd.git/blame - execute.h
log: rework logging subsystem to support syslog and kmsg output
[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;
38b48754 96
94f04347 97 ExecInput input;
071830ff
LP
98 ExecOutput output;
99 int syslog_priority;
100 char *syslog_identifier;
101
034c6ed7 102 cap_t capabilities;
94f04347
LP
103 int secure_bits;
104 uint64_t capability_bounding_set_drop;
5cb5a6ff 105
94f04347 106 /* Since resolving these names might might involve socket
5cb5a6ff 107 * connections and we don't want to deadlock ourselves these
94f04347
LP
108 * names are resolved on execution only and in the child
109 * process. */
5cb5a6ff
LP
110 char *user;
111 char *group;
112 char **supplementary_groups;
113};
114
034c6ed7
LP
115typedef enum ExitStatus {
116 /* EXIT_SUCCESS defined by libc */
117 /* EXIT_FAILURE defined by libc */
118 EXIT_INVALIDARGUMENT = 2,
119 EXIT_NOTIMPLEMENTED = 3,
120 EXIT_NOPERMISSION = 4,
121 EXIT_NOTINSTALLED = 5,
122 EXIT_NOTCONFIGURED = 6,
123 EXIT_NOTRUNNING = 7,
124
125 /* The LSB suggests that error codes >= 200 are "reserved". We
126 * use them here under the assumption that they hence are
127 * unused by init scripts.
128 *
129 * http://refspecs.freestandards.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic/iniscrptact.html */
130
131 EXIT_CHDIR = 200,
132 EXIT_NICE,
133 EXIT_FDS,
134 EXIT_EXEC,
135 EXIT_MEMORY,
136 EXIT_LIMITS,
309bff19 137 EXIT_OOM_ADJUST,
071830ff 138 EXIT_SIGNAL_MASK,
94f04347 139 EXIT_INPUT,
9eba9da4 140 EXIT_OUTPUT,
81a2b7ce 141 EXIT_CHROOT, /* 210 */
9eba9da4 142 EXIT_PGID,
94f04347
LP
143 EXIT_IOPRIO,
144 EXIT_TIMERSLACK,
145 EXIT_SECUREBITS,
146 EXIT_SETSCHEDULER,
81a2b7ce
LP
147 EXIT_CPUAFFINITY,
148 EXIT_GROUP,
149 EXIT_USER,
8e274523
LP
150 EXIT_CAPABILITIES,
151 EXIT_CGROUP
034c6ed7
LP
152} ExitStatus;
153
81a2b7ce
LP
154int exec_spawn(const ExecCommand *command,
155 const ExecContext *context,
156 int *fds, unsigned n_fds,
157 bool apply_permissions,
158 bool apply_chroot,
8e274523 159 struct CGroupBonding *cgroup_bondings,
81a2b7ce 160 pid_t *ret);
5cb5a6ff 161
5cb5a6ff 162void exec_command_free_list(ExecCommand *c);
034c6ed7 163void exec_command_free_array(ExecCommand **c, unsigned n);
5cb5a6ff 164
44d8db9e
LP
165char *exec_command_line(ExecCommand *c);
166void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix);
167void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
a6a80b4f 168void exec_command_append_list(ExecCommand **l, ExecCommand *e);
44d8db9e 169
034c6ed7
LP
170void exec_context_init(ExecContext *c);
171void exec_context_done(ExecContext *c);
5cb5a6ff
LP
172void exec_context_dump(ExecContext *c, FILE* f, const char *prefix);
173
034c6ed7 174void exec_status_fill(ExecStatus *s, pid_t pid, int code, int status);
5cb5a6ff 175
94f04347
LP
176const char* exec_output_to_string(ExecOutput i);
177int exec_output_from_string(const char *s);
178
179const char* exec_input_to_string(ExecInput i);
180int exec_input_from_string(const char *s);
181
5cb5a6ff 182#endif