chiark / gitweb /
socket: allow configuration of socket/directory mode
[elogind.git] / execute.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifndef fooexecutehfoo
4 #define fooexecutehfoo
5
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
25 typedef struct ExecStatus ExecStatus;
26 typedef struct ExecCommand ExecCommand;
27 typedef 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>
34 #include <sched.h>
35
36 #include "list.h"
37 #include "util.h"
38
39 /* Abstract namespace! */
40 #define LOGGER_SOCKET "/org/freedesktop.org/systemd1/logger"
41
42 typedef enum ExecOutput {
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
49 } ExecOutput;
50
51 typedef enum ExecInput {
52         EXEC_INPUT_NULL,
53         EXEC_INPUT_CONSOLE,
54         _EXEC_INPUT_MAX,
55         _EXEC_INPUT_INVALID = -1
56 } ExecInput;
57
58 struct ExecStatus {
59         pid_t pid;
60         usec_t timestamp;
61         int code;     /* as in siginfo_t::si_code */
62         int status;   /* as in sigingo_t::si_status */
63 };
64
65 struct ExecCommand {
66         char *path;
67         char **argv;
68         ExecStatus exec_status;
69         LIST_FIELDS(ExecCommand, command); /* useful for chaining commands */
70 };
71
72 struct ExecContext {
73         char **environment;
74         mode_t umask;
75         struct rlimit *rlimit[RLIMIT_NLIMITS];
76         char *working_directory, *root_directory;
77         int oom_adjust;
78         int nice;
79         int ioprio;
80         int cpu_sched_policy;
81         int cpu_sched_priority;
82         cpu_set_t cpu_affinity;
83         unsigned long timer_slack_ns;
84
85         bool oom_adjust_set:1;
86         bool nice_set:1;
87         bool ioprio_set:1;
88         bool cpu_sched_set:1;
89         bool cpu_affinity_set:1;
90         bool timer_slack_ns_set:1;
91
92         bool cpu_sched_reset_on_fork;
93         bool non_blocking;
94
95         ExecInput input;
96         ExecOutput output;
97         int syslog_priority;
98         char *syslog_identifier;
99
100         /* FIXME: all privs related settings need to be enforced */
101         cap_t capabilities;
102         int secure_bits;
103         uint64_t capability_bounding_set_drop;
104
105         /* Since resolving these names might might involve socket
106          * connections and we don't want to deadlock ourselves these
107          * names are resolved on execution only and in the child
108          * process. */
109         char *user;
110         char *group;
111         char **supplementary_groups;
112 };
113
114 typedef 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,
136         EXIT_OOM_ADJUST,
137         EXIT_SIGNAL_MASK,
138         EXIT_INPUT,
139         EXIT_OUTPUT,
140         EXIT_CHROOT,
141         EXIT_PGID,
142         EXIT_IOPRIO,
143         EXIT_TIMERSLACK,
144         EXIT_SECUREBITS,
145         EXIT_SETSCHEDULER,
146         EXIT_CPUAFFINITY
147 } ExitStatus;
148
149 int exec_spawn(const ExecCommand *command, const ExecContext *context, int *fds, unsigned n_fds, pid_t *ret);
150
151 void exec_command_free_list(ExecCommand *c);
152 void exec_command_free_array(ExecCommand **c, unsigned n);
153
154 char *exec_command_line(ExecCommand *c);
155 void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix);
156 void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
157
158 void exec_context_init(ExecContext *c);
159 void exec_context_done(ExecContext *c);
160 void exec_context_dump(ExecContext *c, FILE* f, const char *prefix);
161
162 void exec_status_fill(ExecStatus *s, pid_t pid, int code, int status);
163
164 const char* exec_output_to_string(ExecOutput i);
165 int exec_output_from_string(const char *s);
166
167 const char* exec_input_to_string(ExecInput i);
168 int exec_input_from_string(const char *s);
169
170 #endif