]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/login/logind.h
vxlan: fix assert
[thirdparty/systemd.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 #include <libudev.h>
26
27 #include "sd-event.h"
28 #include "sd-bus.h"
29 #include "list.h"
30 #include "hashmap.h"
31 #include "set.h"
32
33 typedef struct Manager Manager;
34
35 #include "logind-device.h"
36 #include "logind-inhibit.h"
37 #include "logind-button.h"
38 #include "logind-action.h"
39
40 struct Manager {
41 sd_event *event;
42 sd_bus *bus;
43
44 Hashmap *devices;
45 Hashmap *seats;
46 Hashmap *sessions;
47 Hashmap *users;
48 Hashmap *inhibitors;
49 Hashmap *buttons;
50
51 LIST_HEAD(Seat, seat_gc_queue);
52 LIST_HEAD(Session, session_gc_queue);
53 LIST_HEAD(User, user_gc_queue);
54
55 struct udev *udev;
56 struct udev_monitor *udev_seat_monitor, *udev_device_monitor, *udev_vcsa_monitor, *udev_button_monitor;
57
58 sd_event_source *console_active_event_source;
59 sd_event_source *udev_seat_event_source;
60 sd_event_source *udev_device_event_source;
61 sd_event_source *udev_vcsa_event_source;
62 sd_event_source *udev_button_event_source;
63
64 int console_active_fd;
65
66 unsigned n_autovts;
67
68 unsigned reserve_vt;
69 int reserve_vt_fd;
70
71 Seat *seat0;
72
73 char **kill_only_users, **kill_exclude_users;
74 bool kill_user_processes;
75
76 unsigned long session_counter;
77 unsigned long inhibit_counter;
78
79 Hashmap *session_units;
80 Hashmap *user_units;
81
82 usec_t inhibit_delay_max;
83
84 /* If an action is currently being executed or is delayed,
85 * this is != 0 and encodes what is being done */
86 InhibitWhat action_what;
87
88 /* If a shutdown/suspend was delayed due to a inhibitor this
89 contains the unit name we are supposed to start after the
90 delay is over */
91 const char *action_unit;
92
93 /* If a shutdown/suspend is currently executed, then this is
94 * the job of it */
95 char *action_job;
96 sd_event_source *inhibit_timeout_source;
97
98 char *scheduled_shutdown_type;
99 usec_t scheduled_shutdown_timeout;
100 sd_event_source *scheduled_shutdown_timeout_source;
101 uid_t scheduled_shutdown_uid;
102 char *scheduled_shutdown_tty;
103 sd_event_source *nologin_timeout_source;
104 bool unlink_nologin;
105
106 char *wall_message;
107 unsigned enable_wall_messages;
108 sd_event_source *wall_message_timeout_source;
109
110 bool shutdown_dry_run;
111
112 sd_event_source *idle_action_event_source;
113 usec_t idle_action_usec;
114 usec_t idle_action_not_before_usec;
115 HandleAction idle_action;
116
117 HandleAction handle_power_key;
118 HandleAction handle_suspend_key;
119 HandleAction handle_hibernate_key;
120 HandleAction handle_lid_switch;
121 HandleAction handle_lid_switch_docked;
122
123 bool power_key_ignore_inhibited;
124 bool suspend_key_ignore_inhibited;
125 bool hibernate_key_ignore_inhibited;
126 bool lid_switch_ignore_inhibited;
127
128 bool remove_ipc;
129
130 Hashmap *polkit_registry;
131
132 usec_t holdoff_timeout_usec;
133 sd_event_source *lid_switch_ignore_event_source;
134
135 size_t runtime_dir_size;
136 };
137
138 int manager_add_device(Manager *m, const char *sysfs, bool master, Device **_device);
139 int manager_add_button(Manager *m, const char *name, Button **_button);
140 int manager_add_seat(Manager *m, const char *id, Seat **_seat);
141 int manager_add_session(Manager *m, const char *id, Session **_session);
142 int manager_add_user(Manager *m, uid_t uid, gid_t gid, const char *name, User **_user);
143 int manager_add_user_by_name(Manager *m, const char *name, User **_user);
144 int manager_add_user_by_uid(Manager *m, uid_t uid, User **_user);
145 int manager_add_inhibitor(Manager *m, const char* id, Inhibitor **_inhibitor);
146
147 int manager_process_seat_device(Manager *m, struct udev_device *d);
148 int manager_process_button_device(Manager *m, struct udev_device *d);
149
150 int manager_spawn_autovt(Manager *m, unsigned int vtnr);
151
152 bool manager_shall_kill(Manager *m, const char *user);
153
154 int manager_get_idle_hint(Manager *m, dual_timestamp *t);
155
156 int manager_get_user_by_pid(Manager *m, pid_t pid, User **user);
157 int manager_get_session_by_pid(Manager *m, pid_t pid, Session **session);
158
159 bool manager_is_docked_or_external_displays(Manager *m);
160
161 extern const sd_bus_vtable manager_vtable[];
162
163 int match_job_removed(sd_bus_message *message, void *userdata, sd_bus_error *error);
164 int match_unit_removed(sd_bus_message *message, void *userdata, sd_bus_error *error);
165 int match_properties_changed(sd_bus_message *message, void *userdata, sd_bus_error *error);
166 int match_reloading(sd_bus_message *message, void *userdata, sd_bus_error *error);
167 int match_name_owner_changed(sd_bus_message *message, void *userdata, sd_bus_error *error);
168
169 int bus_manager_shutdown_or_sleep_now_or_later(Manager *m, const char *unit_name, InhibitWhat w, sd_bus_error *error);
170
171 int manager_send_changed(Manager *manager, const char *property, ...) _sentinel_;
172
173 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);
174 int manager_start_unit(Manager *manager, const char *unit, sd_bus_error *error, char **job);
175 int manager_stop_unit(Manager *manager, const char *unit, sd_bus_error *error, char **job);
176 int manager_abandon_scope(Manager *manager, const char *scope, sd_bus_error *error);
177 int manager_kill_unit(Manager *manager, const char *unit, KillWho who, int signo, sd_bus_error *error);
178 int manager_unit_is_active(Manager *manager, const char *unit);
179 int manager_job_is_active(Manager *manager, const char *path);
180
181 /* gperf lookup function */
182 const struct ConfigPerfItem* logind_gperf_lookup(const char *key, unsigned length);
183
184 int manager_set_lid_switch_ignore(Manager *m, usec_t until);
185
186 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);
187
188 int manager_get_session_from_creds(Manager *m, sd_bus_message *message, const char *name, sd_bus_error *error, Session **ret);
189 int manager_get_user_from_creds(Manager *m, sd_bus_message *message, uid_t uid, sd_bus_error *error, User **ret);
190 int manager_get_seat_from_creds(Manager *m, sd_bus_message *message, const char *name, sd_bus_error *error, Seat **ret);
191
192 int manager_setup_wall_message_timer(Manager *m);
193 bool logind_wall_tty_filter(const char *tty, void *userdata);
194
195 int manager_dispatch_delayed(Manager *manager, bool timeout);