]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/manager.h
unit: when reading description from LSB prefer short over long description
[thirdparty/systemd.git] / src / manager.h
CommitLineData
60918275
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3#ifndef foomanagerhfoo
4#define foomanagerhfoo
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
60918275
LP
25#include <stdbool.h>
26#include <inttypes.h>
a66d02c3 27#include <stdio.h>
ea430986
LP
28#include <dbus/dbus.h>
29
a16e1123
LP
30#include "fdset.h"
31
4f0f902f
LP
32/* Enforce upper limit how many names we allow */
33#define MANAGER_MAX_NAMES 2048
34
60918275 35typedef struct Manager Manager;
acbb0225
LP
36typedef enum WatchType WatchType;
37typedef struct Watch Watch;
38
a16e1123
LP
39typedef enum ManagerExitCode {
40 MANAGER_RUNNING,
41 MANAGER_EXIT,
42 MANAGER_RELOAD,
43 MANAGER_REEXECUTE,
44 _MANAGER_EXIT_CODE_MAX,
45 _MANAGER_EXIT_CODE_INVALID = -1
46} ManagerExitCode;
47
dfcd764e 48typedef enum ManagerRunningAs {
a3d4e06d
LP
49 MANAGER_SYSTEM,
50 MANAGER_SESSION,
dfcd764e
LP
51 _MANAGER_RUNNING_AS_MAX,
52 _MANAGER_RUNNING_AS_INVALID = -1
53} ManagerRunningAs;
54
acbb0225
LP
55enum WatchType {
56 WATCH_INVALID,
ef734fd6 57 WATCH_SIGNAL,
8c47c732 58 WATCH_NOTIFY,
acbb0225 59 WATCH_FD,
ef734fd6 60 WATCH_TIMER,
f94ea366 61 WATCH_MOUNT,
ea430986
LP
62 WATCH_UDEV,
63 WATCH_DBUS_WATCH,
64 WATCH_DBUS_TIMEOUT
acbb0225
LP
65};
66
67struct Watch {
68 int fd;
69 WatchType type;
ea430986
LP
70 union {
71 union Unit *unit;
72 DBusWatch *bus_watch;
73 DBusTimeout *bus_timeout;
74 } data;
cabab516
LP
75 bool fd_is_dupped:1;
76 bool socket_accept:1;
acbb0225 77};
60918275 78
87f0e418 79#include "unit.h"
60918275
LP
80#include "job.h"
81#include "hashmap.h"
82#include "list.h"
83#include "set.h"
ea430986 84#include "dbus.h"
84e3543e 85#include "path-lookup.h"
60918275
LP
86
87struct Manager {
88 uint32_t current_job_id;
89
87f0e418 90 /* Note that the set of units we know of is allowed to be
87d1515d
LP
91 * incosistent. However the subset of it that is loaded may
92 * not, and the list of jobs may neither. */
93
87f0e418
LP
94 /* Active jobs and units */
95 Hashmap *units; /* name string => Unit object n:1 */
60918275
LP
96 Hashmap *jobs; /* job id => Job object 1:1 */
97
ef734fd6
LP
98 /* To make it easy to iterate through the units of a specific
99 * type we maintain a per type linked list */
100 LIST_HEAD(Meta, units_per_type[_UNIT_TYPE_MAX]);
101
87f0e418 102 /* Units that need to be loaded */
60918275
LP
103 LIST_HEAD(Meta, load_queue); /* this is actually more a stack than a queue, but uh. */
104
034c6ed7
LP
105 /* Jobs that need to be run */
106 LIST_HEAD(Job, run_queue); /* more a stack than a queue, too */
107
c1e1601e
LP
108 /* Units and jobs that have not yet been announced via
109 * D-Bus. When something about a job changes it is added here
110 * if it is not in there yet. This allows easy coalescing of
111 * D-Bus change signals. */
112 LIST_HEAD(Meta, dbus_unit_queue);
113 LIST_HEAD(Job, dbus_job_queue);
114
701cc384 115 /* Units to remove */
23a177ef
LP
116 LIST_HEAD(Meta, cleanup_queue);
117
701cc384
LP
118 /* Units to check when doing GC */
119 LIST_HEAD(Meta, gc_queue);
120
e5b5ae50 121 /* Jobs to be added */
87f0e418 122 Hashmap *transaction_jobs; /* Unit object => Job object list 1:1 */
e5b5ae50 123 JobDependency *transaction_anchor;
223dabab 124
87f0e418 125 Hashmap *watch_pids; /* pid => Unit object n:1 */
9152c765 126
c952c6ec
LP
127 char *notify_socket;
128
8c47c732 129 Watch notify_watch;
9d58f1db
LP
130 Watch signal_watch;
131
9152c765 132 int epoll_fd;
acbb0225 133
9d58f1db 134 unsigned n_snapshots;
ce578209 135
84e3543e 136 LookupPaths lookup_paths;
036643a2 137
1137a57c
LP
138 char **environment;
139
63983207 140 dual_timestamp startup_timestamp;
8d567588 141
ef734fd6 142 /* Data specific to the device subsystem */
25ac040b 143 struct udev* udev;
f94ea366
LP
144 struct udev_monitor* udev_monitor;
145 Watch udev_watch;
ef734fd6
LP
146
147 /* Data specific to the mount subsystem */
148 FILE *proc_self_mountinfo;
149 Watch mount_watch;
ea430986 150
07b0b134
ML
151 /* Data specific to the swap filesystem */
152 FILE *proc_swaps;
153
ea430986 154 /* Data specific to the D-Bus subsystem */
f278026d 155 DBusConnection *api_bus, *system_bus;
5e8d1c9a
LP
156 DBusServer *private_bus;
157 Set *bus_connections, *bus_connections_for_dispatch;
158
a16e1123
LP
159 DBusMessage *queued_message; /* This is used during reloading:
160 * before the reload we queue the
161 * reply message here, and
162 * afterwards we send it */
8e274523 163
05e343b7
LP
164 Hashmap *watch_bus; /* D-Bus names => Unit object n:1 */
165 int32_t name_data_slot;
a567261a 166 int32_t subscribed_data_slot;
05e343b7 167
9d58f1db
LP
168 /* Data specific to the Automount subsystem */
169 int dev_autofs_fd;
170
8e274523
LP
171 /* Data specific to the cgroup subsystem */
172 Hashmap *cgroup_bondings; /* path string => CGroupBonding object 1:n */
173 char *cgroup_controller;
33be102a 174 char *cgroup_mount_point;
8e274523 175 char *cgroup_hierarchy;
e537352b 176
701cc384 177 usec_t gc_queue_timestamp;
701cc384
LP
178 int gc_marker;
179 unsigned n_in_gc_queue;
180
33be102a
LP
181 /* Make sure the user cannot accidentaly unmount our cgroup
182 * file system */
183 int pin_cgroupfs_fd;
184
9d58f1db
LP
185 /* Flags */
186 ManagerRunningAs running_as;
187 ManagerExitCode exit_code:4;
41447faf 188
9d58f1db
LP
189 bool dispatching_load_queue:1;
190 bool dispatching_run_queue:1;
191 bool dispatching_dbus_queue:1;
192
9d58f1db
LP
193 bool utmp_reboot_written:1;
194
9e58ff9c 195 bool show_status;
f295f5c0 196 bool confirm_spawn;
60918275
LP
197};
198
9e58ff9c 199int manager_new(ManagerRunningAs running_as, Manager **m);
60918275
LP
200void manager_free(Manager *m);
201
a16e1123 202int manager_enumerate(Manager *m);
f50e0a01 203int manager_coldplug(Manager *m);
a16e1123 204int manager_startup(Manager *m, FILE *serialization, FDSet *fds);
f50e0a01 205
60918275 206Job *manager_get_job(Manager *m, uint32_t id);
87f0e418 207Unit *manager_get_unit(Manager *m, const char *name);
60918275 208
ea430986 209int manager_get_unit_from_dbus_path(Manager *m, const char *s, Unit **_u);
86fbf370 210int manager_get_job_from_dbus_path(Manager *m, const char *s, Job **_j);
ea430986 211
db06e3b6 212int manager_load_unit_prepare(Manager *m, const char *name, const char *path, Unit **_ret);
9e2f7c11 213int manager_load_unit(Manager *m, const char *name, const char *path, Unit **_ret);
28247076 214
87f0e418 215int manager_add_job(Manager *m, JobType type, Unit *unit, JobMode mode, bool force, Job **_ret);
28247076 216int manager_add_job_by_name(Manager *m, JobType type, const char *name, JobMode mode, bool force, Job **_ret);
60918275 217
87f0e418 218void manager_dump_units(Manager *s, FILE *f, const char *prefix);
cea8e32e 219void manager_dump_jobs(Manager *s, FILE *f, const char *prefix);
a66d02c3 220
23a177ef 221void manager_transaction_unlink_job(Manager *m, Job *j, bool delete_dependencies);
e5b5ae50 222
7fad411c
LP
223void manager_clear_jobs(Manager *m);
224
c1e1601e
LP
225unsigned manager_dispatch_load_queue(Manager *m);
226unsigned manager_dispatch_run_queue(Manager *m);
227unsigned manager_dispatch_dbus_queue(Manager *m);
f50e0a01 228
9152c765 229int manager_loop(Manager *m);
83c60c9f 230
e537352b 231void manager_write_utmp_reboot(Manager *m);
e537352b
LP
232void manager_write_utmp_runlevel(Manager *m, Unit *t);
233
05e343b7
LP
234void manager_dispatch_bus_name_owner_changed(Manager *m, const char *name, const char* old_owner, const char *new_owner);
235void manager_dispatch_bus_query_pid_done(Manager *m, const char *name, pid_t pid);
236
a16e1123
LP
237int manager_open_serialization(FILE **_f);
238
239int manager_serialize(Manager *m, FILE *f, FDSet *fds);
240int manager_deserialize(Manager *m, FILE *f, FDSet *fds);
241
242int manager_reload(Manager *m);
243
9e58ff9c
LP
244bool manager_is_booting_or_shutting_down(Manager *m);
245
05e343b7
LP
246const char *manager_running_as_to_string(ManagerRunningAs i);
247ManagerRunningAs manager_running_as_from_string(const char *s);
248
60918275 249#endif