]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/manager.h
dbus: make errors reported via D-Bus more useful
[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 */
7b97f477 163 DBusConnection *queued_message_connection; /* The connection to send the queued message on */
8e274523 164
05e343b7
LP
165 Hashmap *watch_bus; /* D-Bus names => Unit object n:1 */
166 int32_t name_data_slot;
a567261a 167 int32_t subscribed_data_slot;
05e343b7 168
9d58f1db
LP
169 /* Data specific to the Automount subsystem */
170 int dev_autofs_fd;
171
8e274523
LP
172 /* Data specific to the cgroup subsystem */
173 Hashmap *cgroup_bondings; /* path string => CGroupBonding object 1:n */
174 char *cgroup_controller;
33be102a 175 char *cgroup_mount_point;
8e274523 176 char *cgroup_hierarchy;
e537352b 177
701cc384 178 usec_t gc_queue_timestamp;
701cc384
LP
179 int gc_marker;
180 unsigned n_in_gc_queue;
181
33be102a
LP
182 /* Make sure the user cannot accidentaly unmount our cgroup
183 * file system */
184 int pin_cgroupfs_fd;
185
9d58f1db
LP
186 /* Flags */
187 ManagerRunningAs running_as;
188 ManagerExitCode exit_code:4;
41447faf 189
9d58f1db
LP
190 bool dispatching_load_queue:1;
191 bool dispatching_run_queue:1;
192 bool dispatching_dbus_queue:1;
193
9d58f1db
LP
194 bool utmp_reboot_written:1;
195
9e58ff9c 196 bool show_status;
f295f5c0 197 bool confirm_spawn;
60918275
LP
198};
199
9e58ff9c 200int manager_new(ManagerRunningAs running_as, Manager **m);
60918275
LP
201void manager_free(Manager *m);
202
a16e1123 203int manager_enumerate(Manager *m);
f50e0a01 204int manager_coldplug(Manager *m);
a16e1123 205int manager_startup(Manager *m, FILE *serialization, FDSet *fds);
f50e0a01 206
60918275 207Job *manager_get_job(Manager *m, uint32_t id);
87f0e418 208Unit *manager_get_unit(Manager *m, const char *name);
60918275 209
ea430986 210int manager_get_unit_from_dbus_path(Manager *m, const char *s, Unit **_u);
86fbf370 211int manager_get_job_from_dbus_path(Manager *m, const char *s, Job **_j);
ea430986 212
398ef8ba
LP
213int manager_load_unit_prepare(Manager *m, const char *name, const char *path, DBusError *e, Unit **_ret);
214int manager_load_unit(Manager *m, const char *name, const char *path, DBusError *e, Unit **_ret);
28247076 215
398ef8ba
LP
216int manager_add_job(Manager *m, JobType type, Unit *unit, JobMode mode, bool force, DBusError *e, Job **_ret);
217int manager_add_job_by_name(Manager *m, JobType type, const char *name, JobMode mode, bool force, DBusError *e, Job **_ret);
60918275 218
87f0e418 219void manager_dump_units(Manager *s, FILE *f, const char *prefix);
cea8e32e 220void manager_dump_jobs(Manager *s, FILE *f, const char *prefix);
a66d02c3 221
23a177ef 222void manager_transaction_unlink_job(Manager *m, Job *j, bool delete_dependencies);
e5b5ae50 223
7fad411c
LP
224void manager_clear_jobs(Manager *m);
225
c1e1601e
LP
226unsigned manager_dispatch_load_queue(Manager *m);
227unsigned manager_dispatch_run_queue(Manager *m);
228unsigned manager_dispatch_dbus_queue(Manager *m);
f50e0a01 229
9152c765 230int manager_loop(Manager *m);
83c60c9f 231
e537352b 232void manager_write_utmp_reboot(Manager *m);
e537352b
LP
233void manager_write_utmp_runlevel(Manager *m, Unit *t);
234
05e343b7
LP
235void manager_dispatch_bus_name_owner_changed(Manager *m, const char *name, const char* old_owner, const char *new_owner);
236void manager_dispatch_bus_query_pid_done(Manager *m, const char *name, pid_t pid);
237
a16e1123
LP
238int manager_open_serialization(FILE **_f);
239
240int manager_serialize(Manager *m, FILE *f, FDSet *fds);
241int manager_deserialize(Manager *m, FILE *f, FDSet *fds);
242
243int manager_reload(Manager *m);
244
9e58ff9c
LP
245bool manager_is_booting_or_shutting_down(Manager *m);
246
05e343b7
LP
247const char *manager_running_as_to_string(ManagerRunningAs i);
248ManagerRunningAs manager_running_as_from_string(const char *s);
249
60918275 250#endif