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