chiark / gitweb /
[Patch 3/3] Add cgroups initialization and handling
[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 #include <libudev.h>
26
27 #include "config.h"
28 #include "sd-event.h"
29 #include "sd-bus.h"
30 #include "cgroup-util.h"
31 #include "path-lookup.h"
32 #include "list.h"
33 #include "hashmap.h"
34 #include "set.h"
35
36 typedef struct Manager Manager;
37
38 #include "logind-device.h"
39 #include "logind-inhibit.h"
40 #include "logind-button.h"
41 #include "logind-action.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         unsigned n_autovts;
82
83         unsigned reserve_vt;
84         int reserve_vt_fd;
85
86         Seat *seat0;
87
88         char **kill_only_users, **kill_exclude_users;
89         bool kill_user_processes;
90
91         unsigned long session_counter;
92         unsigned long inhibit_counter;
93
94         Hashmap *session_units;
95         Hashmap *user_units;
96
97         usec_t inhibit_delay_max;
98
99         /* If an action is currently being executed or is delayed,
100          * this is != 0 and encodes what is being done */
101         InhibitWhat action_what;
102
103         /* If a shutdown/suspend was delayed due to a inhibitor this
104            contains the unit name we are supposed to start after the
105            delay is over */
106         const char *action_unit;
107
108         /* If a shutdown/suspend is currently executed, then this is
109          * the job of it */
110         char *action_job;
111         sd_event_source *inhibit_timeout_source;
112
113         char *scheduled_shutdown_type;
114         usec_t scheduled_shutdown_timeout;
115         sd_event_source *scheduled_shutdown_timeout_source;
116         uid_t scheduled_shutdown_uid;
117         char *scheduled_shutdown_tty;
118         sd_event_source *nologin_timeout_source;
119         bool unlink_nologin;
120
121         char *wall_message;
122         unsigned enable_wall_messages;
123         sd_event_source *wall_message_timeout_source;
124
125         sd_event_source *idle_action_event_source;
126         usec_t idle_action_usec;
127         usec_t idle_action_not_before_usec;
128         HandleAction idle_action;
129
130         HandleAction handle_power_key;
131         HandleAction handle_suspend_key;
132         HandleAction handle_hibernate_key;
133         HandleAction handle_lid_switch;
134         HandleAction handle_lid_switch_docked;
135
136         bool power_key_ignore_inhibited;
137         bool suspend_key_ignore_inhibited;
138         bool hibernate_key_ignore_inhibited;
139         bool lid_switch_ignore_inhibited;
140
141         bool remove_ipc;
142
143         Hashmap *polkit_registry;
144
145         usec_t holdoff_timeout_usec;
146         sd_event_source *lid_switch_ignore_event_source;
147
148         size_t runtime_dir_size;
149 };
150
151 int manager_add_device(Manager *m, const char *sysfs, bool master, Device **_device);
152 int manager_add_button(Manager *m, const char *name, Button **_button);
153 int manager_add_seat(Manager *m, const char *id, Seat **_seat);
154 int manager_add_session(Manager *m, const char *id, Session **_session);
155 int manager_add_user(Manager *m, uid_t uid, gid_t gid, const char *name, User **_user);
156 int manager_add_user_by_name(Manager *m, const char *name, User **_user);
157 int manager_add_user_by_uid(Manager *m, uid_t uid, User **_user);
158 int manager_add_inhibitor(Manager *m, const char* id, Inhibitor **_inhibitor);
159
160 int manager_process_seat_device(Manager *m, struct udev_device *d);
161 int manager_process_button_device(Manager *m, struct udev_device *d);
162
163 int manager_spawn_autovt(Manager *m, unsigned int vtnr);
164
165 bool manager_shall_kill(Manager *m, const char *user);
166
167 int manager_get_idle_hint(Manager *m, dual_timestamp *t);
168
169 int manager_get_user_by_pid(Manager *m, pid_t pid, User **user);
170 int manager_get_session_by_pid(Manager *m, pid_t pid, Session **session);
171
172 bool manager_is_docked(Manager *m);
173 int manager_count_displays(Manager *m);
174 bool manager_is_docked_or_multiple_displays(Manager *m);
175
176 extern const sd_bus_vtable manager_vtable[];
177
178 int match_job_removed(sd_bus_message *message, void *userdata, sd_bus_error *error);
179 int match_unit_removed(sd_bus_message *message, void *userdata, sd_bus_error *error);
180 int match_properties_changed(sd_bus_message *message, void *userdata, sd_bus_error *error);
181 int match_reloading(sd_bus_message *message, void *userdata, sd_bus_error *error);
182 int match_name_owner_changed(sd_bus_message *message, void *userdata, sd_bus_error *error);
183
184 int bus_manager_shutdown_or_sleep_now_or_later(Manager *m, const char *unit_name, InhibitWhat w, sd_bus_error *error);
185
186 int manager_send_changed(Manager *manager, const char *property, ...) _sentinel_;
187
188 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);
189 int manager_start_unit(Manager *manager, const char *unit, sd_bus_error *error, char **job);
190 int manager_stop_unit(Manager *manager, const char *unit, sd_bus_error *error, char **job);
191 int manager_abandon_scope(Manager *manager, const char *scope, sd_bus_error *error);
192 int manager_kill_unit(Manager *manager, const char *unit, KillWho who, int signo, sd_bus_error *error);
193 int manager_unit_is_active(Manager *manager, const char *unit);
194 int manager_job_is_active(Manager *manager, const char *path);
195
196 /* gperf lookup function */
197 const struct ConfigPerfItem* logind_gperf_lookup(const char *key, GPERF_LEN_TYPE length);
198
199 int manager_set_lid_switch_ignore(Manager *m, usec_t until);
200
201 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);
202
203 int manager_get_session_from_creds(Manager *m, sd_bus_message *message, const char *name, sd_bus_error *error, Session **ret);
204 int manager_get_user_from_creds(Manager *m, sd_bus_message *message, uid_t uid, sd_bus_error *error, User **ret);
205 int manager_get_seat_from_creds(Manager *m, sd_bus_message *message, const char *name, sd_bus_error *error, Seat **ret);
206
207 int manager_setup_wall_message_timer(Manager *m);
208 bool logind_wall_tty_filter(const char *tty, void *userdata);