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