chiark / gitweb /
logind: relax udev rules matching devices logind watches for
[elogind.git] / src / login / logind.h
1 #pragma once
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2011 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <stdbool.h>
23
24 #if 0 /// elogind needs the systems udev header
25 #include "libudev.h"
26 #else
27 #include <libudev.h>
28 #endif // 0
29 #include "sd-bus.h"
30 #include "sd-event.h"
31
32 #include "hashmap.h"
33 #include "list.h"
34 #include "set.h"
35
36 typedef struct Manager Manager;
37
38 #include "logind-action.h"
39 #include "logind-button.h"
40 #include "logind-device.h"
41 #include "logind-inhibit.h"
42
43 /// Additional includes needed by elogind
44 #include "cgroup-util.h"
45
46 #if 1 /// elogind has to ident itself
47 #define MANAGER_IS_SYSTEM(m) ((m)->is_system)
48 #define MANAGER_IS_USER(m) (!((m)->is_system))
49 #endif // 1
50 struct Manager {
51         sd_event *event;
52         sd_bus *bus;
53
54         Hashmap *devices;
55         Hashmap *seats;
56         Hashmap *sessions;
57         Hashmap *users;
58         Hashmap *inhibitors;
59         Hashmap *buttons;
60
61         LIST_HEAD(Seat, seat_gc_queue);
62         LIST_HEAD(Session, session_gc_queue);
63         LIST_HEAD(User, user_gc_queue);
64
65         struct udev *udev;
66         struct udev_monitor *udev_seat_monitor, *udev_device_monitor, *udev_vcsa_monitor, *udev_button_monitor;
67
68         sd_event_source *console_active_event_source;
69         sd_event_source *udev_seat_event_source;
70         sd_event_source *udev_device_event_source;
71         sd_event_source *udev_vcsa_event_source;
72         sd_event_source *udev_button_event_source;
73
74 #if 0 /// elogind does not support autospawning of vts
75         int console_active_fd;
76
77         unsigned n_autovts;
78
79         unsigned reserve_vt;
80         int reserve_vt_fd;
81 #else
82         /* Make sure the user cannot accidentally unmount our cgroup
83          * file system */
84         int pin_cgroupfs_fd;
85
86         /* fd for handling cgroup socket if elogind is its own cgroups manager */
87         int cgroups_agent_fd;
88         sd_event_source *cgroups_agent_event_source;
89
90         /* Flags */
91         bool test_run:1;
92         bool is_system:1; /* true if elogind is its own cgroups manager */
93
94         /* Data specific to the cgroup subsystem */
95         CGroupMask cgroup_supported;
96         char *cgroup_root;
97
98         int console_active_fd;
99 #endif // 0
100
101         Seat *seat0;
102
103         char **kill_only_users, **kill_exclude_users;
104         bool kill_user_processes;
105
106         unsigned long session_counter;
107         unsigned long inhibit_counter;
108
109         Hashmap *session_units;
110         Hashmap *user_units;
111
112         usec_t inhibit_delay_max;
113
114         /* If an action is currently being executed or is delayed,
115          * this is != 0 and encodes what is being done */
116         InhibitWhat action_what;
117
118 #if 0 /// elogind does all relevant actions on its own. No systemd jobs and units.
119         /* If a shutdown/suspend was delayed due to a inhibitor this
120            contains the unit name we are supposed to start after the
121            delay is over */
122         const char *action_unit;
123
124         /* If a shutdown/suspend is currently executed, then this is
125          * the job of it */
126         char *action_job;
127 #else
128         /* If a shutdown/suspend was delayed due to a inhibitor this
129            contains the action we are supposed to perform after the
130            delay is over */
131         HandleAction pending_action;
132
133         char **suspend_state,      **suspend_mode;
134         char **hibernate_state,    **hibernate_mode;
135         char **hybrid_sleep_state, **hybrid_sleep_mode;
136
137 #endif // 0
138         sd_event_source *inhibit_timeout_source;
139
140         char *scheduled_shutdown_type;
141         usec_t scheduled_shutdown_timeout;
142         sd_event_source *scheduled_shutdown_timeout_source;
143         uid_t scheduled_shutdown_uid;
144         char *scheduled_shutdown_tty;
145         sd_event_source *nologin_timeout_source;
146         bool unlink_nologin;
147
148         char *wall_message;
149         unsigned enable_wall_messages;
150         sd_event_source *wall_message_timeout_source;
151
152         bool shutdown_dry_run;
153
154         sd_event_source *idle_action_event_source;
155         usec_t idle_action_usec;
156         usec_t idle_action_not_before_usec;
157         HandleAction idle_action;
158
159         HandleAction handle_power_key;
160         HandleAction handle_suspend_key;
161         HandleAction handle_hibernate_key;
162         HandleAction handle_lid_switch;
163         HandleAction handle_lid_switch_docked;
164
165         bool power_key_ignore_inhibited;
166         bool suspend_key_ignore_inhibited;
167         bool hibernate_key_ignore_inhibited;
168         bool lid_switch_ignore_inhibited;
169
170         bool remove_ipc;
171
172         Hashmap *polkit_registry;
173
174         usec_t holdoff_timeout_usec;
175         sd_event_source *lid_switch_ignore_event_source;
176
177         size_t runtime_dir_size;
178         uint64_t user_tasks_max;
179         uint64_t sessions_max;
180         uint64_t inhibitors_max;
181 };
182
183 int manager_add_device(Manager *m, const char *sysfs, bool master, Device **_device);
184 int manager_add_button(Manager *m, const char *name, Button **_button);
185 int manager_add_seat(Manager *m, const char *id, Seat **_seat);
186 int manager_add_session(Manager *m, const char *id, Session **_session);
187 int manager_add_user(Manager *m, uid_t uid, gid_t gid, const char *name, User **_user);
188 int manager_add_user_by_name(Manager *m, const char *name, User **_user);
189 int manager_add_user_by_uid(Manager *m, uid_t uid, User **_user);
190 int manager_add_inhibitor(Manager *m, const char* id, Inhibitor **_inhibitor);
191
192 int manager_process_seat_device(Manager *m, struct udev_device *d);
193 int manager_process_button_device(Manager *m, struct udev_device *d);
194
195 #if 0 /// UNNEEDED by elogind
196 int manager_spawn_autovt(Manager *m, unsigned int vtnr);
197 #endif // 0
198
199 bool manager_shall_kill(Manager *m, const char *user);
200
201 int manager_get_idle_hint(Manager *m, dual_timestamp *t);
202
203 int manager_get_user_by_pid(Manager *m, pid_t pid, User **user);
204 int manager_get_session_by_pid(Manager *m, pid_t pid, Session **session);
205
206 bool manager_is_docked_or_external_displays(Manager *m);
207
208 extern const sd_bus_vtable manager_vtable[];
209
210 #if 0 /// UNNEEDED by elogind
211 int match_job_removed(sd_bus_message *message, void *userdata, sd_bus_error *error);
212 int match_unit_removed(sd_bus_message *message, void *userdata, sd_bus_error *error);
213 int match_properties_changed(sd_bus_message *message, void *userdata, sd_bus_error *error);
214 int match_reloading(sd_bus_message *message, void *userdata, sd_bus_error *error);
215 int match_name_owner_changed(sd_bus_message *message, void *userdata, sd_bus_error *error);
216
217 int bus_manager_shutdown_or_sleep_now_or_later(Manager *m, const char *unit_name, InhibitWhat w, sd_bus_error *error);
218 #else
219 /// eloginds own version does the action itself
220 int bus_manager_shutdown_or_sleep_now_or_later(Manager *m, HandleAction action, InhibitWhat w, sd_bus_error *error);
221 #endif // 0
222
223 int manager_send_changed(Manager *manager, const char *property, ...) _sentinel_;
224
225 #if 0 /// UNNEEDED by elogind
226 int manager_start_slice(Manager *manager, const char *slice, const char *description, const char *after, const char *after2, uint64_t tasks_max, sd_bus_error *error, char **job);
227 int manager_start_scope(Manager *manager, const char *scope, pid_t pid, const char *slice, const char *description, const char *after, const char *after2, uint64_t tasks_max, sd_bus_error *error, char **job);
228 int manager_start_unit(Manager *manager, const char *unit, sd_bus_error *error, char **job);
229 int manager_stop_unit(Manager *manager, const char *unit, sd_bus_error *error, char **job);
230 int manager_abandon_scope(Manager *manager, const char *scope, sd_bus_error *error);
231 int manager_kill_unit(Manager *manager, const char *unit, KillWho who, int signo, sd_bus_error *error);
232 int manager_unit_is_active(Manager *manager, const char *unit);
233 int manager_job_is_active(Manager *manager, const char *path);
234 #endif // 0
235
236 /* gperf lookup function */
237 const struct ConfigPerfItem* logind_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
238
239 int manager_set_lid_switch_ignore(Manager *m, usec_t until);
240
241 int config_parse_tmpfs_size(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
242 int config_parse_user_tasks_max(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
243
244 int manager_get_session_from_creds(Manager *m, sd_bus_message *message, const char *name, sd_bus_error *error, Session **ret);
245 int manager_get_user_from_creds(Manager *m, sd_bus_message *message, uid_t uid, sd_bus_error *error, User **ret);
246 int manager_get_seat_from_creds(Manager *m, sd_bus_message *message, const char *name, sd_bus_error *error, Seat **ret);
247
248 int manager_setup_wall_message_timer(Manager *m);
249 bool logind_wall_tty_filter(const char *tty, void *userdata);
250
251 int manager_dispatch_delayed(Manager *manager, bool timeout);