]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/service.h
Merge pull request #10221 from lucaswerkmeister/bash-completion
[thirdparty/systemd.git] / src / core / service.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 typedef struct Service Service;
5 typedef struct ServiceFDStore ServiceFDStore;
6
7 #include "exit-status.h"
8 #include "kill.h"
9 #include "path.h"
10 #include "ratelimit.h"
11 #include "socket.h"
12 #include "unit.h"
13
14 typedef enum ServiceRestart {
15 SERVICE_RESTART_NO,
16 SERVICE_RESTART_ON_SUCCESS,
17 SERVICE_RESTART_ON_FAILURE,
18 SERVICE_RESTART_ON_ABNORMAL,
19 SERVICE_RESTART_ON_WATCHDOG,
20 SERVICE_RESTART_ON_ABORT,
21 SERVICE_RESTART_ALWAYS,
22 _SERVICE_RESTART_MAX,
23 _SERVICE_RESTART_INVALID = -1
24 } ServiceRestart;
25
26 typedef enum ServiceType {
27 SERVICE_SIMPLE, /* we fork and go on right-away (i.e. modern socket activated daemons) */
28 SERVICE_FORKING, /* forks by itself (i.e. traditional daemons) */
29 SERVICE_ONESHOT, /* we fork and wait until the program finishes (i.e. programs like fsck which run and need to finish before we continue) */
30 SERVICE_DBUS, /* we fork and wait until a specific D-Bus name appears on the bus */
31 SERVICE_NOTIFY, /* we fork and wait until a daemon sends us a ready message with sd_notify() */
32 SERVICE_IDLE, /* much like simple, but delay exec() until all jobs are dispatched. */
33 SERVICE_EXEC, /* we fork and wait until we execute exec() (this means our own setup is waited for) */
34 _SERVICE_TYPE_MAX,
35 _SERVICE_TYPE_INVALID = -1
36 } ServiceType;
37
38 typedef enum ServiceExecCommand {
39 SERVICE_EXEC_START_PRE,
40 SERVICE_EXEC_START,
41 SERVICE_EXEC_START_POST,
42 SERVICE_EXEC_RELOAD,
43 SERVICE_EXEC_STOP,
44 SERVICE_EXEC_STOP_POST,
45 _SERVICE_EXEC_COMMAND_MAX,
46 _SERVICE_EXEC_COMMAND_INVALID = -1
47 } ServiceExecCommand;
48
49 typedef enum NotifyState {
50 NOTIFY_UNKNOWN,
51 NOTIFY_READY,
52 NOTIFY_RELOADING,
53 NOTIFY_STOPPING,
54 _NOTIFY_STATE_MAX,
55 _NOTIFY_STATE_INVALID = -1
56 } NotifyState;
57
58 /* The values of this enum are referenced in man/systemd.exec.xml and src/shared/bus-unit-util.c.
59 * Update those sources for each change to this enum. */
60 typedef enum ServiceResult {
61 SERVICE_SUCCESS,
62 SERVICE_FAILURE_RESOURCES, /* a bit of a misnomer, just our catch-all error for errnos we didn't expect */
63 SERVICE_FAILURE_PROTOCOL,
64 SERVICE_FAILURE_TIMEOUT,
65 SERVICE_FAILURE_EXIT_CODE,
66 SERVICE_FAILURE_SIGNAL,
67 SERVICE_FAILURE_CORE_DUMP,
68 SERVICE_FAILURE_WATCHDOG,
69 SERVICE_FAILURE_START_LIMIT_HIT,
70 _SERVICE_RESULT_MAX,
71 _SERVICE_RESULT_INVALID = -1
72 } ServiceResult;
73
74 struct ServiceFDStore {
75 Service *service;
76
77 int fd;
78 char *fdname;
79 sd_event_source *event_source;
80
81 LIST_FIELDS(ServiceFDStore, fd_store);
82 };
83
84 struct Service {
85 Unit meta;
86
87 ServiceType type;
88 ServiceRestart restart;
89 ExitStatusSet restart_prevent_status;
90 ExitStatusSet restart_force_status;
91 ExitStatusSet success_status;
92
93 /* If set we'll read the main daemon PID from this file */
94 char *pid_file;
95
96 usec_t restart_usec;
97 usec_t timeout_start_usec;
98 usec_t timeout_stop_usec;
99 usec_t runtime_max_usec;
100
101 dual_timestamp watchdog_timestamp;
102 usec_t watchdog_usec; /* the requested watchdog timeout in the unit file */
103 usec_t watchdog_original_usec; /* the watchdog timeout that was in effect when the unit was started, i.e. the timeout the forked off processes currently see */
104 usec_t watchdog_override_usec; /* the watchdog timeout requested by the service itself through sd_notify() */
105 bool watchdog_override_enable;
106 sd_event_source *watchdog_event_source;
107
108 ExecCommand* exec_command[_SERVICE_EXEC_COMMAND_MAX];
109
110 ExecContext exec_context;
111 KillContext kill_context;
112 CGroupContext cgroup_context;
113
114 ServiceState state, deserialized_state;
115
116 /* The exit status of the real main process */
117 ExecStatus main_exec_status;
118
119 /* The currently executed control process */
120 ExecCommand *control_command;
121
122 /* The currently executed main process, which may be NULL if
123 * the main process got started via forking mode and not by
124 * us */
125 ExecCommand *main_command;
126
127 /* The ID of the control command currently being executed */
128 ServiceExecCommand control_command_id;
129
130 /* Runtime data of the execution context */
131 ExecRuntime *exec_runtime;
132 DynamicCreds dynamic_creds;
133
134 pid_t main_pid, control_pid;
135 int socket_fd;
136 SocketPeer *peer;
137 bool socket_fd_selinux_context_net;
138
139 bool permissions_start_only;
140 bool root_directory_start_only;
141 bool remain_after_exit;
142 bool guess_main_pid;
143
144 /* If we shut down, remember why */
145 ServiceResult result;
146 ServiceResult reload_result;
147
148 bool main_pid_known:1;
149 bool main_pid_alien:1;
150 bool bus_name_good:1;
151 bool forbid_restart:1;
152 /* Keep restart intention between UNIT_FAILED and UNIT_ACTIVATING */
153 bool will_auto_restart:1;
154 bool start_timeout_defined:1;
155
156 char *bus_name;
157 char *bus_name_owner; /* unique name of the current owner */
158
159 char *status_text;
160 int status_errno;
161
162 UnitRef accept_socket;
163
164 sd_event_source *timer_event_source;
165 PathSpec *pid_file_pathspec;
166
167 NotifyAccess notify_access;
168 NotifyState notify_state;
169
170 sd_event_source *exec_fd_event_source;
171
172 ServiceFDStore *fd_store;
173 size_t n_fd_store;
174 unsigned n_fd_store_max;
175 unsigned n_keep_fd_store;
176
177 char *usb_function_descriptors;
178 char *usb_function_strings;
179
180 int stdin_fd;
181 int stdout_fd;
182 int stderr_fd;
183
184 unsigned n_restarts;
185 bool flush_n_restarts;
186 bool exec_fd_hot;
187 };
188
189 extern const UnitVTable service_vtable;
190
191 int service_set_socket_fd(Service *s, int fd, struct Socket *socket, bool selinux_context_net);
192 void service_close_socket_fd(Service *s);
193
194 const char* service_restart_to_string(ServiceRestart i) _const_;
195 ServiceRestart service_restart_from_string(const char *s) _pure_;
196
197 const char* service_type_to_string(ServiceType i) _const_;
198 ServiceType service_type_from_string(const char *s) _pure_;
199
200 const char* service_exec_command_to_string(ServiceExecCommand i) _const_;
201 ServiceExecCommand service_exec_command_from_string(const char *s) _pure_;
202
203 const char* notify_state_to_string(NotifyState i) _const_;
204 NotifyState notify_state_from_string(const char *s) _pure_;
205
206 const char* service_result_to_string(ServiceResult i) _const_;
207 ServiceResult service_result_from_string(const char *s) _pure_;
208
209 DEFINE_CAST(SERVICE, Service);
210
211 #define STATUS_TEXT_MAX (16U*1024U)